Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [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 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 18 | #include <app.hpp> |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 19 | #include <boost/container/flat_map.hpp> |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 20 | #include <boost/process/async_pipe.hpp> |
| 21 | #include <boost/type_traits/has_dereference.hpp> |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 22 | #include <utils/json_utils.hpp> |
| 23 | // for GetObjectType and ManagedObjectType |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 24 | |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 25 | #include <account_service.hpp> |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 26 | #include <boost/url/url_view.hpp> |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 27 | #include <registries/privilege_registry.hpp> |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 28 | |
| 29 | namespace redfish |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 30 | { |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 31 | /** |
| 32 | * @brief Function extracts transfer protocol name from URI. |
| 33 | */ |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 34 | inline std::string getTransferProtocolTypeFromUri(const std::string& imageUri) |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 35 | { |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 36 | boost::urls::error_code ec; |
| 37 | boost::urls::url_view url = |
| 38 | boost::urls::parse_uri(boost::string_view(imageUri), ec); |
| 39 | if (ec) |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 40 | { |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 41 | return "None"; |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 42 | } |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 43 | boost::string_view scheme = url.scheme(); |
| 44 | if (scheme == "smb") |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 45 | { |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 46 | return "CIFS"; |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 47 | } |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 48 | if (scheme == "https") |
| 49 | { |
| 50 | return "HTTPS"; |
| 51 | } |
| 52 | |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 53 | return "None"; |
| 54 | } |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 55 | |
| 56 | /** |
| 57 | * @brief Read all known properties from VM object interfaces |
| 58 | */ |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 59 | inline void |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 60 | vmParseInterfaceObject(const dbus::utility::DBusInteracesMap& interface, |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 61 | const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 62 | { |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 63 | for (const auto& [interface, values] : interface) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 64 | { |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 65 | if (interface == "xyz.openbmc_project.VirtualMedia.MountPoint") |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 66 | { |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 67 | for (const auto& [property, value] : values) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 68 | { |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 69 | if (property == "EndpointId") |
| 70 | { |
| 71 | const std::string* endpointIdValue = |
| 72 | std::get_if<std::string>(&value); |
| 73 | if (endpointIdValue == nullptr) |
| 74 | { |
| 75 | continue; |
| 76 | } |
| 77 | if (!endpointIdValue->empty()) |
| 78 | { |
| 79 | // Proxy mode |
| 80 | aResp->res |
| 81 | .jsonValue["Oem"]["OpenBMC"]["WebSocketEndpoint"] = |
| 82 | *endpointIdValue; |
| 83 | aResp->res.jsonValue["TransferProtocolType"] = "OEM"; |
| 84 | } |
| 85 | } |
| 86 | if (property == "ImageURL") |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 87 | { |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 88 | const std::string* imageUrlValue = |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 89 | std::get_if<std::string>(&value); |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 90 | if (imageUrlValue && !imageUrlValue->empty()) |
Przemyslaw Czarnowski | da4784d | 2020-11-06 09:58:25 +0100 | [diff] [blame] | 91 | { |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 92 | std::filesystem::path filePath = *imageUrlValue; |
| 93 | if (!filePath.has_filename()) |
| 94 | { |
| 95 | // this will handle https share, which not |
| 96 | // necessarily has to have filename given. |
| 97 | aResp->res.jsonValue["ImageName"] = ""; |
| 98 | } |
| 99 | else |
| 100 | { |
| 101 | aResp->res.jsonValue["ImageName"] = |
| 102 | filePath.filename(); |
| 103 | } |
Przemyslaw Czarnowski | da4784d | 2020-11-06 09:58:25 +0100 | [diff] [blame] | 104 | |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 105 | aResp->res.jsonValue["Image"] = *imageUrlValue; |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 106 | aResp->res.jsonValue["TransferProtocolType"] = |
| 107 | getTransferProtocolTypeFromUri(*imageUrlValue); |
| 108 | |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 109 | aResp->res.jsonValue["ConnectedVia"] = "URI"; |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 110 | } |
| 111 | } |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 112 | if (property == "WriteProtected") |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 113 | { |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 114 | const bool* writeProtectedValue = std::get_if<bool>(&value); |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 115 | if (writeProtectedValue) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 116 | { |
Anna Platash | 9e319cf | 2020-11-17 10:18:31 +0100 | [diff] [blame] | 117 | aResp->res.jsonValue["WriteProtected"] = |
| 118 | *writeProtectedValue; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 119 | } |
| 120 | } |
| 121 | } |
| 122 | } |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 123 | if (interface == "xyz.openbmc_project.VirtualMedia.Process") |
| 124 | { |
| 125 | for (const auto& [property, value] : values) |
| 126 | { |
| 127 | if (property == "Active") |
| 128 | { |
| 129 | const bool* activeValue = std::get_if<bool>(&value); |
| 130 | if (!activeValue) |
| 131 | { |
| 132 | BMCWEB_LOG_DEBUG << "Value Active not found"; |
| 133 | return; |
| 134 | } |
| 135 | aResp->res.jsonValue["Inserted"] = *activeValue; |
| 136 | |
| 137 | if (*activeValue == true) |
| 138 | { |
| 139 | aResp->res.jsonValue["ConnectedVia"] = "Applet"; |
| 140 | } |
| 141 | } |
| 142 | } |
| 143 | } |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * @brief Fill template for Virtual Media Item. |
| 149 | */ |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 150 | inline nlohmann::json vmItemTemplate(const std::string& name, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 151 | const std::string& resName) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 152 | { |
| 153 | nlohmann::json item; |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 154 | |
| 155 | std::string id = "/redfish/v1/Managers/"; |
| 156 | id += name; |
| 157 | id += "/VirtualMedia/"; |
| 158 | id += resName; |
| 159 | item["@odata.id"] = std::move(id); |
| 160 | |
Przemyslaw Czarnowski | d04ba32 | 2020-01-21 12:41:56 +0100 | [diff] [blame] | 161 | item["@odata.type"] = "#VirtualMedia.v1_3_0.VirtualMedia"; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 162 | item["Name"] = "Virtual Removable Media"; |
| 163 | item["Id"] = resName; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 164 | item["WriteProtected"] = true; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 165 | item["MediaTypes"] = {"CD", "USBStick"}; |
| 166 | item["TransferMethod"] = "Stream"; |
Przemyslaw Czarnowski | d04ba32 | 2020-01-21 12:41:56 +0100 | [diff] [blame] | 167 | item["Oem"]["OpenBMC"]["@odata.type"] = |
| 168 | "#OemVirtualMedia.v1_0_0.VirtualMedia"; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 169 | |
| 170 | return item; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * @brief Fills collection data |
| 175 | */ |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 176 | inline void getVmResourceList(std::shared_ptr<bmcweb::AsyncResp> aResp, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 177 | const std::string& service, |
| 178 | const std::string& name) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 179 | { |
| 180 | BMCWEB_LOG_DEBUG << "Get available Virtual Media resources."; |
| 181 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 182 | [name, |
| 183 | aResp{std::move(aResp)}](const boost::system::error_code ec, |
| 184 | dbus::utility::ManagedObjectType& subtree) { |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 185 | if (ec) |
| 186 | { |
| 187 | BMCWEB_LOG_DEBUG << "DBUS response error"; |
| 188 | return; |
| 189 | } |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 190 | nlohmann::json& members = aResp->res.jsonValue["Members"]; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 191 | members = nlohmann::json::array(); |
| 192 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 193 | for (const auto& object : subtree) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 194 | { |
| 195 | nlohmann::json item; |
Ed Tanous | 2dfd18e | 2020-12-18 00:41:31 +0000 | [diff] [blame] | 196 | std::string path = object.first.filename(); |
| 197 | if (path.empty()) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 198 | { |
| 199 | continue; |
| 200 | } |
| 201 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 202 | std::string id = "/redfish/v1/Managers/"; |
| 203 | id += name; |
| 204 | id += "/VirtualMedia/"; |
| 205 | id += path; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 206 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 207 | item["@odata.id"] = std::move(id); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 208 | members.emplace_back(std::move(item)); |
| 209 | } |
| 210 | aResp->res.jsonValue["Members@odata.count"] = members.size(); |
| 211 | }, |
| 212 | service, "/xyz/openbmc_project/VirtualMedia", |
| 213 | "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * @brief Fills data for specific resource |
| 218 | */ |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 219 | inline void getVmData(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 220 | const std::string& service, const std::string& name, |
| 221 | const std::string& resName) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 222 | { |
| 223 | BMCWEB_LOG_DEBUG << "Get Virtual Media resource data."; |
| 224 | |
| 225 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 914e2d5 | 2022-01-07 11:38:34 -0800 | [diff] [blame] | 226 | [resName, name, |
| 227 | aResp](const boost::system::error_code ec, |
| 228 | const dbus::utility::ManagedObjectType& subtree) { |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 229 | if (ec) |
| 230 | { |
| 231 | BMCWEB_LOG_DEBUG << "DBUS response error"; |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 232 | |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 233 | return; |
| 234 | } |
| 235 | |
Ed Tanous | 914e2d5 | 2022-01-07 11:38:34 -0800 | [diff] [blame] | 236 | for (const auto& item : subtree) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 237 | { |
Ed Tanous | 2dfd18e | 2020-12-18 00:41:31 +0000 | [diff] [blame] | 238 | std::string thispath = item.first.filename(); |
| 239 | if (thispath.empty()) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 240 | { |
| 241 | continue; |
| 242 | } |
| 243 | |
Ed Tanous | 2dfd18e | 2020-12-18 00:41:31 +0000 | [diff] [blame] | 244 | if (thispath != resName) |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 245 | { |
| 246 | continue; |
| 247 | } |
| 248 | |
Przemyslaw Czarnowski | 1a6258d | 2021-04-14 11:02:46 +0200 | [diff] [blame] | 249 | // "Legacy"/"Proxy" |
| 250 | auto mode = item.first.parent_path(); |
| 251 | // "VirtualMedia" |
| 252 | auto type = mode.parent_path(); |
| 253 | if (mode.filename().empty() || type.filename().empty()) |
| 254 | { |
| 255 | continue; |
| 256 | } |
| 257 | |
| 258 | if (type.filename() != "VirtualMedia") |
| 259 | { |
| 260 | continue; |
| 261 | } |
| 262 | |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 263 | aResp->res.jsonValue = vmItemTemplate(name, resName); |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 264 | std::string actionsId = "/redfish/v1/Managers/"; |
| 265 | actionsId += name; |
| 266 | actionsId += "/VirtualMedia/"; |
| 267 | actionsId += resName; |
| 268 | actionsId += "/Actions"; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 269 | |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 270 | // Check if dbus path is Legacy type |
Przemyslaw Czarnowski | 1a6258d | 2021-04-14 11:02:46 +0200 | [diff] [blame] | 271 | if (mode.filename() == "Legacy") |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 272 | { |
| 273 | aResp->res.jsonValue["Actions"]["#VirtualMedia.InsertMedia"] |
| 274 | ["target"] = |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 275 | actionsId + "/VirtualMedia.InsertMedia"; |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 278 | vmParseInterfaceObject(item.second, aResp); |
| 279 | |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 280 | aResp->res.jsonValue["Actions"]["#VirtualMedia.EjectMedia"] |
| 281 | ["target"] = |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 282 | actionsId + "/VirtualMedia.EjectMedia"; |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 283 | |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 284 | return; |
| 285 | } |
| 286 | |
| 287 | messages::resourceNotFound( |
Przemyslaw Czarnowski | d04ba32 | 2020-01-21 12:41:56 +0100 | [diff] [blame] | 288 | aResp->res, "#VirtualMedia.v1_3_0.VirtualMedia", resName); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 289 | }, |
| 290 | service, "/xyz/openbmc_project/VirtualMedia", |
| 291 | "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); |
| 292 | } |
| 293 | |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 294 | /** |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 295 | * @brief Transfer protocols supported for InsertMedia action. |
| 296 | * |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 297 | */ |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 298 | enum class TransferProtocol |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 299 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 300 | https, |
| 301 | smb, |
| 302 | invalid |
| 303 | }; |
| 304 | |
| 305 | /** |
| 306 | * @brief Function extracts transfer protocol type from URI. |
| 307 | * |
| 308 | */ |
| 309 | inline std::optional<TransferProtocol> |
| 310 | getTransferProtocolFromUri(const std::string& imageUri) |
| 311 | { |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 312 | boost::urls::error_code ec; |
| 313 | boost::urls::url_view url = |
| 314 | boost::urls::parse_uri(boost::string_view(imageUri), ec); |
| 315 | if (ec) |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 316 | { |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 317 | return {}; |
Agata Olender | c6f4e01 | 2020-03-11 15:19:07 +0100 | [diff] [blame] | 318 | } |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 319 | |
| 320 | boost::string_view scheme = url.scheme(); |
| 321 | if (scheme == "smb") |
Agata Olender | c6f4e01 | 2020-03-11 15:19:07 +0100 | [diff] [blame] | 322 | { |
Ed Tanous | d32c4fa | 2021-09-14 13:16:51 -0700 | [diff] [blame] | 323 | return TransferProtocol::smb; |
| 324 | } |
| 325 | if (scheme == "https") |
| 326 | { |
| 327 | return TransferProtocol::https; |
| 328 | } |
| 329 | if (!scheme.empty()) |
| 330 | { |
| 331 | return TransferProtocol::invalid; |
Agata Olender | c6f4e01 | 2020-03-11 15:19:07 +0100 | [diff] [blame] | 332 | } |
| 333 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 334 | return {}; |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * @brief Function convert transfer protocol from string param. |
| 339 | * |
| 340 | */ |
| 341 | inline std::optional<TransferProtocol> getTransferProtocolFromParam( |
| 342 | const std::optional<std::string>& transferProtocolType) |
| 343 | { |
| 344 | if (transferProtocolType == std::nullopt) |
Agata Olender | c6f4e01 | 2020-03-11 15:19:07 +0100 | [diff] [blame] | 345 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 346 | return {}; |
Agata Olender | c6f4e01 | 2020-03-11 15:19:07 +0100 | [diff] [blame] | 347 | } |
| 348 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 349 | if (*transferProtocolType == "CIFS") |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 350 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 351 | return TransferProtocol::smb; |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 352 | } |
| 353 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 354 | if (*transferProtocolType == "HTTPS") |
| 355 | { |
| 356 | return TransferProtocol::https; |
| 357 | } |
| 358 | |
| 359 | return TransferProtocol::invalid; |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * @brief Function extends URI with transfer protocol type. |
| 364 | * |
| 365 | */ |
| 366 | inline std::string |
| 367 | getUriWithTransferProtocol(const std::string& imageUri, |
| 368 | const TransferProtocol& transferProtocol) |
| 369 | { |
| 370 | if (transferProtocol == TransferProtocol::smb) |
| 371 | { |
| 372 | return "smb://" + imageUri; |
| 373 | } |
| 374 | |
| 375 | if (transferProtocol == TransferProtocol::https) |
| 376 | { |
| 377 | return "https://" + imageUri; |
| 378 | } |
| 379 | |
| 380 | return imageUri; |
| 381 | } |
| 382 | |
| 383 | /** |
| 384 | * @brief Function validate parameters of insert media request. |
| 385 | * |
| 386 | */ |
| 387 | inline bool |
| 388 | validateParams(crow::Response& res, std::string& imageUrl, |
| 389 | const std::optional<bool>& inserted, |
| 390 | const std::optional<std::string>& transferMethod, |
| 391 | const std::optional<std::string>& transferProtocolType) |
| 392 | { |
| 393 | BMCWEB_LOG_DEBUG << "Validation started"; |
| 394 | // required param imageUrl must not be empty |
| 395 | if (imageUrl.empty()) |
| 396 | { |
| 397 | BMCWEB_LOG_ERROR << "Request action parameter Image is empty."; |
| 398 | |
| 399 | messages::propertyValueFormatError(res, "<empty>", "Image"); |
| 400 | |
| 401 | return false; |
| 402 | } |
| 403 | |
| 404 | // optional param inserted must be true |
| 405 | if ((inserted != std::nullopt) && (*inserted != true)) |
| 406 | { |
| 407 | BMCWEB_LOG_ERROR |
| 408 | << "Request action optional parameter Inserted must be true."; |
| 409 | |
| 410 | messages::actionParameterNotSupported(res, "Inserted", "InsertMedia"); |
| 411 | |
| 412 | return false; |
| 413 | } |
| 414 | |
| 415 | // optional param transferMethod must be stream |
| 416 | if ((transferMethod != std::nullopt) && (*transferMethod != "Stream")) |
| 417 | { |
| 418 | BMCWEB_LOG_ERROR << "Request action optional parameter " |
| 419 | "TransferMethod must be Stream."; |
| 420 | |
| 421 | messages::actionParameterNotSupported(res, "TransferMethod", |
| 422 | "InsertMedia"); |
| 423 | |
| 424 | return false; |
| 425 | } |
| 426 | |
| 427 | std::optional<TransferProtocol> uriTransferProtocolType = |
| 428 | getTransferProtocolFromUri(imageUrl); |
| 429 | |
| 430 | std::optional<TransferProtocol> paramTransferProtocolType = |
| 431 | getTransferProtocolFromParam(transferProtocolType); |
| 432 | |
| 433 | // ImageUrl does not contain valid protocol type |
| 434 | if (*uriTransferProtocolType == TransferProtocol::invalid) |
| 435 | { |
| 436 | BMCWEB_LOG_ERROR << "Request action parameter ImageUrl must " |
| 437 | "contain specified protocol type from list: " |
| 438 | "(smb, https)."; |
| 439 | |
| 440 | messages::resourceAtUriInUnknownFormat(res, imageUrl); |
| 441 | |
| 442 | return false; |
| 443 | } |
| 444 | |
| 445 | // transferProtocolType should contain value from list |
| 446 | if (*paramTransferProtocolType == TransferProtocol::invalid) |
| 447 | { |
| 448 | BMCWEB_LOG_ERROR << "Request action parameter TransferProtocolType " |
| 449 | "must be provided with value from list: " |
| 450 | "(CIFS, HTTPS)."; |
| 451 | |
| 452 | messages::propertyValueNotInList(res, *transferProtocolType, |
| 453 | "TransferProtocolType"); |
| 454 | return false; |
| 455 | } |
| 456 | |
| 457 | // valid transfer protocol not provided either with URI nor param |
| 458 | if ((uriTransferProtocolType == std::nullopt) && |
| 459 | (paramTransferProtocolType == std::nullopt)) |
| 460 | { |
| 461 | BMCWEB_LOG_ERROR << "Request action parameter ImageUrl must " |
| 462 | "contain specified protocol type or param " |
| 463 | "TransferProtocolType must be provided."; |
| 464 | |
| 465 | messages::resourceAtUriInUnknownFormat(res, imageUrl); |
| 466 | |
| 467 | return false; |
| 468 | } |
| 469 | |
| 470 | // valid transfer protocol provided both with URI and param |
| 471 | if ((paramTransferProtocolType != std::nullopt) && |
| 472 | (uriTransferProtocolType != std::nullopt)) |
| 473 | { |
| 474 | // check if protocol is the same for URI and param |
| 475 | if (*paramTransferProtocolType != *uriTransferProtocolType) |
| 476 | { |
| 477 | BMCWEB_LOG_ERROR << "Request action parameter " |
| 478 | "TransferProtocolType must contain the " |
| 479 | "same protocol type as protocol type " |
| 480 | "provided with param imageUrl."; |
| 481 | |
| 482 | messages::actionParameterValueTypeError(res, *transferProtocolType, |
| 483 | "TransferProtocolType", |
| 484 | "InsertMedia"); |
| 485 | |
| 486 | return false; |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | // validation passed |
| 491 | // add protocol to URI if needed |
| 492 | if (uriTransferProtocolType == std::nullopt) |
| 493 | { |
| 494 | imageUrl = |
| 495 | getUriWithTransferProtocol(imageUrl, *paramTransferProtocolType); |
| 496 | } |
| 497 | |
| 498 | return true; |
| 499 | } |
| 500 | |
| 501 | template <typename T> |
| 502 | static void secureCleanup(T& value) |
| 503 | { |
| 504 | auto raw = const_cast<typename T::value_type*>(value.data()); |
| 505 | explicit_bzero(raw, value.size() * sizeof(*raw)); |
| 506 | } |
| 507 | |
| 508 | class Credentials |
| 509 | { |
| 510 | public: |
| 511 | Credentials(std::string&& user, std::string&& password) : |
| 512 | userBuf(std::move(user)), passBuf(std::move(password)) |
| 513 | {} |
| 514 | |
| 515 | ~Credentials() |
| 516 | { |
| 517 | secureCleanup(userBuf); |
| 518 | secureCleanup(passBuf); |
| 519 | } |
| 520 | |
| 521 | const std::string& user() |
| 522 | { |
| 523 | return userBuf; |
| 524 | } |
| 525 | |
| 526 | const std::string& password() |
| 527 | { |
| 528 | return passBuf; |
| 529 | } |
| 530 | |
| 531 | Credentials() = delete; |
| 532 | Credentials(const Credentials&) = delete; |
| 533 | Credentials& operator=(const Credentials&) = delete; |
Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame^] | 534 | Credentials(Credentials&&) = delete; |
| 535 | Credentials& operator=(Credentials&&) = delete; |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 536 | |
| 537 | private: |
| 538 | std::string userBuf; |
| 539 | std::string passBuf; |
| 540 | }; |
| 541 | |
| 542 | class CredentialsProvider |
| 543 | { |
| 544 | public: |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 545 | template <typename T> |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 546 | struct Deleter |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 547 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 548 | void operator()(T* buff) const |
| 549 | { |
| 550 | if (buff) |
| 551 | { |
| 552 | secureCleanup(*buff); |
| 553 | delete buff; |
| 554 | } |
| 555 | } |
| 556 | }; |
| 557 | |
| 558 | using Buffer = std::vector<char>; |
| 559 | using SecureBuffer = std::unique_ptr<Buffer, Deleter<Buffer>>; |
| 560 | // Using explicit definition instead of std::function to avoid implicit |
| 561 | // conversions eg. stack copy instead of reference |
| 562 | using FormatterFunc = void(const std::string& username, |
| 563 | const std::string& password, Buffer& dest); |
| 564 | |
| 565 | CredentialsProvider(std::string&& user, std::string&& password) : |
| 566 | credentials(std::move(user), std::move(password)) |
| 567 | {} |
| 568 | |
| 569 | const std::string& user() |
| 570 | { |
| 571 | return credentials.user(); |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 572 | } |
| 573 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 574 | const std::string& password() |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 575 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 576 | return credentials.password(); |
| 577 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 578 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 579 | SecureBuffer pack(FormatterFunc formatter) |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 580 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 581 | SecureBuffer packed{new Buffer{}}; |
| 582 | if (formatter) |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 583 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 584 | formatter(credentials.user(), credentials.password(), *packed); |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 585 | } |
| 586 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 587 | return packed; |
| 588 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 589 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 590 | private: |
| 591 | Credentials credentials; |
| 592 | }; |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 593 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 594 | // Wrapper for boost::async_pipe ensuring proper pipe cleanup |
| 595 | template <typename Buffer> |
| 596 | class Pipe |
| 597 | { |
| 598 | public: |
| 599 | using unix_fd = sdbusplus::message::unix_fd; |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 600 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 601 | Pipe(boost::asio::io_context& io, Buffer&& buffer) : |
| 602 | impl(io), buffer{std::move(buffer)} |
| 603 | {} |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 604 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 605 | ~Pipe() |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 606 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 607 | // Named pipe needs to be explicitly removed |
| 608 | impl.close(); |
| 609 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 610 | |
Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame^] | 611 | Pipe(const Pipe&) = delete; |
| 612 | Pipe(Pipe&&) = delete; |
| 613 | Pipe& operator=(const Pipe&) = delete; |
| 614 | Pipe& operator=(Pipe&&) = delete; |
| 615 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 616 | unix_fd fd() |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 617 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 618 | return unix_fd{impl.native_source()}; |
| 619 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 620 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 621 | template <typename WriteHandler> |
| 622 | void asyncWrite(WriteHandler&& handler) |
| 623 | { |
| 624 | impl.async_write_some(data(), std::forward<WriteHandler>(handler)); |
| 625 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 626 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 627 | private: |
| 628 | // Specialization for pointer types |
| 629 | template <typename B = Buffer> |
| 630 | typename std::enable_if<boost::has_dereference<B>::value, |
| 631 | boost::asio::const_buffer>::type |
| 632 | data() |
| 633 | { |
| 634 | return boost::asio::buffer(*buffer); |
| 635 | } |
| 636 | |
| 637 | template <typename B = Buffer> |
| 638 | typename std::enable_if<!boost::has_dereference<B>::value, |
| 639 | boost::asio::const_buffer>::type |
| 640 | data() |
| 641 | { |
| 642 | return boost::asio::buffer(buffer); |
| 643 | } |
| 644 | |
| 645 | const std::string name; |
| 646 | boost::process::async_pipe impl; |
| 647 | Buffer buffer; |
| 648 | }; |
| 649 | |
| 650 | /** |
| 651 | * @brief Function transceives data with dbus directly. |
| 652 | * |
| 653 | * All BMC state properties will be retrieved before sending reset request. |
| 654 | */ |
| 655 | inline void doMountVmLegacy(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 656 | const std::string& service, const std::string& name, |
| 657 | const std::string& imageUrl, const bool rw, |
| 658 | std::string&& userName, std::string&& password) |
| 659 | { |
| 660 | using SecurePipe = Pipe<CredentialsProvider::SecureBuffer>; |
| 661 | constexpr const size_t secretLimit = 1024; |
| 662 | |
| 663 | std::shared_ptr<SecurePipe> secretPipe; |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 664 | dbus::utility::DbusVariantType unixFd = -1; |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 665 | |
| 666 | if (!userName.empty() || !password.empty()) |
| 667 | { |
| 668 | // Encapsulate in safe buffer |
| 669 | CredentialsProvider credentials(std::move(userName), |
| 670 | std::move(password)); |
| 671 | |
| 672 | // Payload must contain data + NULL delimiters |
| 673 | if (credentials.user().size() + credentials.password().size() + 2 > |
| 674 | secretLimit) |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 675 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 676 | BMCWEB_LOG_ERROR << "Credentials too long to handle"; |
| 677 | messages::unrecognizedRequestBody(asyncResp->res); |
| 678 | return; |
| 679 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 680 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 681 | // Pack secret |
| 682 | auto secret = credentials.pack( |
| 683 | [](const auto& user, const auto& pass, auto& buff) { |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 684 | std::copy(user.begin(), user.end(), std::back_inserter(buff)); |
| 685 | buff.push_back('\0'); |
| 686 | std::copy(pass.begin(), pass.end(), std::back_inserter(buff)); |
| 687 | buff.push_back('\0'); |
| 688 | }); |
| 689 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 690 | // Open pipe |
| 691 | secretPipe = std::make_shared<SecurePipe>( |
| 692 | crow::connections::systemBus->get_io_context(), std::move(secret)); |
| 693 | unixFd = secretPipe->fd(); |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 694 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 695 | // Pass secret over pipe |
| 696 | secretPipe->asyncWrite( |
| 697 | [asyncResp](const boost::system::error_code& ec, std::size_t) { |
| 698 | if (ec) |
| 699 | { |
| 700 | BMCWEB_LOG_ERROR << "Failed to pass secret: " << ec; |
| 701 | messages::internalError(asyncResp->res); |
| 702 | } |
| 703 | }); |
| 704 | } |
Adrian Ambrożewicz | 988fb7b | 2020-01-13 18:52:46 +0100 | [diff] [blame] | 705 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 706 | crow::connections::systemBus->async_method_call( |
| 707 | [asyncResp, secretPipe](const boost::system::error_code ec, |
| 708 | bool success) { |
| 709 | if (ec) |
| 710 | { |
| 711 | BMCWEB_LOG_ERROR << "Bad D-Bus request error: " << ec; |
| 712 | messages::internalError(asyncResp->res); |
| 713 | } |
| 714 | else if (!success) |
| 715 | { |
| 716 | BMCWEB_LOG_ERROR << "Service responded with error"; |
| 717 | messages::generalError(asyncResp->res); |
| 718 | } |
| 719 | }, |
| 720 | service, "/xyz/openbmc_project/VirtualMedia/Legacy/" + name, |
| 721 | "xyz.openbmc_project.VirtualMedia.Legacy", "Mount", imageUrl, rw, |
| 722 | unixFd); |
| 723 | } |
| 724 | |
| 725 | /** |
| 726 | * @brief Function transceives data with dbus directly. |
| 727 | * |
| 728 | * All BMC state properties will be retrieved before sending reset request. |
| 729 | */ |
| 730 | inline void doVmAction(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 731 | const std::string& service, const std::string& name, |
| 732 | bool legacy) |
| 733 | { |
| 734 | |
| 735 | // Legacy mount requires parameter with image |
| 736 | if (legacy) |
| 737 | { |
Adrian Ambrożewicz | d6da5be | 2020-01-13 18:31:01 +0100 | [diff] [blame] | 738 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 739 | [asyncResp](const boost::system::error_code ec) { |
Adrian Ambrożewicz | d6da5be | 2020-01-13 18:31:01 +0100 | [diff] [blame] | 740 | if (ec) |
| 741 | { |
| 742 | BMCWEB_LOG_ERROR << "Bad D-Bus request error: " << ec; |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 743 | |
Adrian Ambrożewicz | d6da5be | 2020-01-13 18:31:01 +0100 | [diff] [blame] | 744 | messages::internalError(asyncResp->res); |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 745 | return; |
Adrian Ambrożewicz | d6da5be | 2020-01-13 18:31:01 +0100 | [diff] [blame] | 746 | } |
| 747 | }, |
| 748 | service, "/xyz/openbmc_project/VirtualMedia/Legacy/" + name, |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 749 | "xyz.openbmc_project.VirtualMedia.Legacy", "Unmount"); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 750 | } |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 751 | else // proxy |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 752 | { |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 753 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 754 | [asyncResp](const boost::system::error_code ec) { |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 755 | if (ec) |
| 756 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 757 | BMCWEB_LOG_ERROR << "Bad D-Bus request error: " << ec; |
| 758 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 759 | messages::internalError(asyncResp->res); |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 760 | return; |
| 761 | } |
| 762 | }, |
| 763 | service, "/xyz/openbmc_project/VirtualMedia/Proxy/" + name, |
| 764 | "xyz.openbmc_project.VirtualMedia.Proxy", "Unmount"); |
| 765 | } |
| 766 | } |
| 767 | |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 768 | struct InsertMediaActionParams |
| 769 | { |
| 770 | std::string imageUrl; |
| 771 | std::optional<std::string> userName; |
| 772 | std::optional<std::string> password; |
| 773 | std::optional<std::string> transferMethod; |
| 774 | std::optional<std::string> transferProtocolType; |
| 775 | std::optional<bool> writeProtected = true; |
| 776 | std::optional<bool> inserted; |
| 777 | }; |
| 778 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 779 | inline void requestNBDVirtualMediaRoutes(App& app) |
| 780 | { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 781 | BMCWEB_ROUTE( |
| 782 | app, |
| 783 | "/redfish/v1/Managers/<str>/VirtualMedia/<str>/Actions/VirtualMedia.InsertMedia") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 784 | .privileges(redfish::privileges::postVirtualMedia) |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 785 | .methods(boost::beast::http::verb::post)( |
| 786 | [](const crow::Request& req, |
| 787 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 788 | const std::string& name, const std::string& resName) { |
| 789 | if (name != "bmc") |
| 790 | { |
| 791 | messages::resourceNotFound(asyncResp->res, |
| 792 | "VirtualMedia.Insert", resName); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 793 | |
| 794 | return; |
| 795 | } |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 796 | InsertMediaActionParams actionParams; |
| 797 | |
| 798 | // Read obligatory parameters (url of |
| 799 | // image) |
| 800 | if (!json_util::readJson( |
| 801 | req, asyncResp->res, "Image", actionParams.imageUrl, |
| 802 | "WriteProtected", actionParams.writeProtected, |
| 803 | "UserName", actionParams.userName, "Password", |
| 804 | actionParams.password, "Inserted", |
| 805 | actionParams.inserted, "TransferMethod", |
| 806 | actionParams.transferMethod, "TransferProtocolType", |
| 807 | actionParams.transferProtocolType)) |
| 808 | { |
| 809 | BMCWEB_LOG_DEBUG << "Image is not provided"; |
| 810 | return; |
| 811 | } |
| 812 | |
| 813 | bool paramsValid = validateParams( |
| 814 | asyncResp->res, actionParams.imageUrl, |
| 815 | actionParams.inserted, actionParams.transferMethod, |
| 816 | actionParams.transferProtocolType); |
| 817 | |
| 818 | if (paramsValid == false) |
| 819 | { |
| 820 | return; |
| 821 | } |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 822 | |
| 823 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 824 | [asyncResp, actionParams, |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 825 | resName](const boost::system::error_code ec, |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 826 | const GetObjectType& getObjectType) mutable { |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 827 | if (ec) |
| 828 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 829 | BMCWEB_LOG_ERROR |
| 830 | << "ObjectMapper::GetObject call failed: " |
| 831 | << ec; |
| 832 | messages::internalError(asyncResp->res); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 833 | |
| 834 | return; |
| 835 | } |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 836 | std::string service = getObjectType.begin()->first; |
| 837 | BMCWEB_LOG_DEBUG << "GetObjectType: " << service; |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 838 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 839 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 840 | [service, resName, actionParams, |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 841 | asyncResp](const boost::system::error_code ec, |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 842 | dbus::utility::ManagedObjectType& |
| 843 | subtree) mutable { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 844 | if (ec) |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 845 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 846 | BMCWEB_LOG_DEBUG << "DBUS response error"; |
| 847 | |
| 848 | return; |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 849 | } |
| 850 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 851 | for (const auto& object : subtree) |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 852 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 853 | const std::string& path = |
| 854 | static_cast<const std::string&>( |
| 855 | object.first); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 856 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 857 | std::size_t lastIndex = path.rfind('/'); |
| 858 | if (lastIndex == std::string::npos) |
| 859 | { |
| 860 | continue; |
| 861 | } |
| 862 | |
| 863 | lastIndex += 1; |
| 864 | |
| 865 | if (path.substr(lastIndex) == resName) |
| 866 | { |
| 867 | lastIndex = path.rfind("Proxy"); |
| 868 | if (lastIndex != std::string::npos) |
| 869 | { |
| 870 | // Not possible in proxy mode |
| 871 | BMCWEB_LOG_DEBUG |
| 872 | << "InsertMedia not " |
| 873 | "allowed in proxy mode"; |
| 874 | messages::resourceNotFound( |
| 875 | asyncResp->res, |
| 876 | "VirtualMedia.InsertMedia", |
| 877 | resName); |
| 878 | |
| 879 | return; |
| 880 | } |
| 881 | |
| 882 | lastIndex = path.rfind("Legacy"); |
| 883 | if (lastIndex == std::string::npos) |
| 884 | { |
| 885 | continue; |
| 886 | } |
| 887 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 888 | // manager is irrelevant for |
| 889 | // VirtualMedia dbus calls |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 890 | doMountVmLegacy( |
| 891 | asyncResp, service, resName, |
| 892 | actionParams.imageUrl, |
| 893 | !(*actionParams.writeProtected), |
| 894 | std::move(*actionParams.userName), |
| 895 | std::move(*actionParams.password)); |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 896 | |
| 897 | return; |
| 898 | } |
| 899 | } |
| 900 | BMCWEB_LOG_DEBUG << "Parent item not found"; |
| 901 | messages::resourceNotFound( |
| 902 | asyncResp->res, "VirtualMedia", resName); |
| 903 | }, |
| 904 | service, "/xyz/openbmc_project/VirtualMedia", |
| 905 | "org.freedesktop.DBus.ObjectManager", |
| 906 | "GetManagedObjects"); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 907 | }, |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 908 | "xyz.openbmc_project.ObjectMapper", |
| 909 | "/xyz/openbmc_project/object_mapper", |
| 910 | "xyz.openbmc_project.ObjectMapper", "GetObject", |
| 911 | "/xyz/openbmc_project/VirtualMedia", |
| 912 | std::array<const char*, 0>()); |
| 913 | }); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 914 | |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 915 | BMCWEB_ROUTE( |
| 916 | app, |
| 917 | "/redfish/v1/Managers/<str>/VirtualMedia/<str>/Actions/VirtualMedia.EjectMedia") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 918 | .privileges(redfish::privileges::postVirtualMedia) |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 919 | .methods(boost::beast::http::verb::post)( |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 920 | [](const crow::Request&, |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 921 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 922 | const std::string& name, const std::string& resName) { |
| 923 | if (name != "bmc") |
| 924 | { |
| 925 | messages::resourceNotFound(asyncResp->res, |
| 926 | "VirtualMedia.Eject", resName); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 927 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 928 | return; |
| 929 | } |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 930 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 931 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 932 | [asyncResp, resName](const boost::system::error_code ec, |
| 933 | const GetObjectType& getObjectType) { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 934 | if (ec) |
| 935 | { |
| 936 | BMCWEB_LOG_ERROR |
| 937 | << "ObjectMapper::GetObject call failed: " |
| 938 | << ec; |
| 939 | messages::internalError(asyncResp->res); |
| 940 | |
| 941 | return; |
| 942 | } |
| 943 | std::string service = getObjectType.begin()->first; |
| 944 | BMCWEB_LOG_DEBUG << "GetObjectType: " << service; |
| 945 | |
| 946 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 98be3e3 | 2021-09-16 15:05:36 -0700 | [diff] [blame] | 947 | [resName, service, asyncResp{asyncResp}]( |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 948 | const boost::system::error_code ec, |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 949 | dbus::utility::ManagedObjectType& subtree) { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 950 | if (ec) |
| 951 | { |
| 952 | BMCWEB_LOG_DEBUG << "DBUS response error"; |
| 953 | |
| 954 | return; |
| 955 | } |
| 956 | |
| 957 | for (const auto& object : subtree) |
| 958 | { |
| 959 | const std::string& path = |
| 960 | static_cast<const std::string&>( |
| 961 | object.first); |
| 962 | |
| 963 | std::size_t lastIndex = path.rfind('/'); |
| 964 | if (lastIndex == std::string::npos) |
| 965 | { |
| 966 | continue; |
| 967 | } |
| 968 | |
| 969 | lastIndex += 1; |
| 970 | |
| 971 | if (path.substr(lastIndex) == resName) |
| 972 | { |
| 973 | lastIndex = path.rfind("Proxy"); |
| 974 | if (lastIndex != std::string::npos) |
| 975 | { |
| 976 | // Proxy mode |
| 977 | doVmAction(asyncResp, service, |
| 978 | resName, false); |
| 979 | } |
| 980 | |
| 981 | lastIndex = path.rfind("Legacy"); |
| 982 | if (lastIndex != std::string::npos) |
| 983 | { |
| 984 | // Legacy mode |
| 985 | doVmAction(asyncResp, service, |
| 986 | resName, true); |
| 987 | } |
| 988 | |
| 989 | return; |
| 990 | } |
| 991 | } |
| 992 | BMCWEB_LOG_DEBUG << "Parent item not found"; |
| 993 | messages::resourceNotFound( |
| 994 | asyncResp->res, "VirtualMedia", resName); |
| 995 | }, |
| 996 | service, "/xyz/openbmc_project/VirtualMedia", |
| 997 | "org.freedesktop.DBus.ObjectManager", |
| 998 | "GetManagedObjects"); |
| 999 | }, |
| 1000 | "xyz.openbmc_project.ObjectMapper", |
| 1001 | "/xyz/openbmc_project/object_mapper", |
| 1002 | "xyz.openbmc_project.ObjectMapper", "GetObject", |
| 1003 | "/xyz/openbmc_project/VirtualMedia", |
| 1004 | std::array<const char*, 0>()); |
| 1005 | }); |
| 1006 | BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/VirtualMedia/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 1007 | .privileges(redfish::privileges::getVirtualMediaCollection) |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1008 | .methods(boost::beast::http::verb::get)( |
| 1009 | [](const crow::Request& /* req */, |
| 1010 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 1011 | const std::string& name) { |
| 1012 | if (name != "bmc") |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1013 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1014 | messages::resourceNotFound(asyncResp->res, "VirtualMedia", |
| 1015 | name); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1016 | |
| 1017 | return; |
| 1018 | } |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1019 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1020 | asyncResp->res.jsonValue["@odata.type"] = |
| 1021 | "#VirtualMediaCollection.VirtualMediaCollection"; |
| 1022 | asyncResp->res.jsonValue["Name"] = "Virtual Media Services"; |
| 1023 | asyncResp->res.jsonValue["@odata.id"] = |
| 1024 | "/redfish/v1/Managers/" + name + "/VirtualMedia"; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1025 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1026 | crow::connections::systemBus->async_method_call( |
| 1027 | [asyncResp, name](const boost::system::error_code ec, |
| 1028 | const GetObjectType& getObjectType) { |
| 1029 | if (ec) |
| 1030 | { |
| 1031 | BMCWEB_LOG_ERROR |
| 1032 | << "ObjectMapper::GetObject call failed: " |
| 1033 | << ec; |
| 1034 | messages::internalError(asyncResp->res); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1035 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1036 | return; |
| 1037 | } |
| 1038 | std::string service = getObjectType.begin()->first; |
| 1039 | BMCWEB_LOG_DEBUG << "GetObjectType: " << service; |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1040 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1041 | getVmResourceList(asyncResp, service, name); |
| 1042 | }, |
| 1043 | "xyz.openbmc_project.ObjectMapper", |
| 1044 | "/xyz/openbmc_project/object_mapper", |
| 1045 | "xyz.openbmc_project.ObjectMapper", "GetObject", |
| 1046 | "/xyz/openbmc_project/VirtualMedia", |
| 1047 | std::array<const char*, 0>()); |
| 1048 | }); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1049 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1050 | BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/VirtualMedia/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 1051 | .privileges(redfish::privileges::getVirtualMedia) |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1052 | .methods(boost::beast::http::verb::get)( |
| 1053 | [](const crow::Request& /* req */, |
| 1054 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 1055 | const std::string& name, const std::string& resName) { |
| 1056 | if (name != "bmc") |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1057 | { |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1058 | messages::resourceNotFound(asyncResp->res, "VirtualMedia", |
| 1059 | resName); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1060 | |
| 1061 | return; |
| 1062 | } |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1063 | |
Ed Tanous | 22db172 | 2021-06-09 10:53:51 -0700 | [diff] [blame] | 1064 | crow::connections::systemBus->async_method_call( |
| 1065 | [asyncResp, name, |
| 1066 | resName](const boost::system::error_code ec, |
| 1067 | const GetObjectType& getObjectType) { |
| 1068 | if (ec) |
| 1069 | { |
| 1070 | BMCWEB_LOG_ERROR |
| 1071 | << "ObjectMapper::GetObject call failed: " |
| 1072 | << ec; |
| 1073 | messages::internalError(asyncResp->res); |
| 1074 | |
| 1075 | return; |
| 1076 | } |
| 1077 | std::string service = getObjectType.begin()->first; |
| 1078 | BMCWEB_LOG_DEBUG << "GetObjectType: " << service; |
| 1079 | |
| 1080 | getVmData(asyncResp, service, name, resName); |
| 1081 | }, |
| 1082 | "xyz.openbmc_project.ObjectMapper", |
| 1083 | "/xyz/openbmc_project/object_mapper", |
| 1084 | "xyz.openbmc_project.ObjectMapper", "GetObject", |
| 1085 | "/xyz/openbmc_project/VirtualMedia", |
| 1086 | std::array<const char*, 0>()); |
| 1087 | }); |
| 1088 | } |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 1089 | |
| 1090 | } // namespace redfish |