| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 1 | #pragma once | 
|  | 2 |  | 
| Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 3 | #include "app.hpp" | 
|  | 4 | #include "dbus_singleton.hpp" | 
|  | 5 | #include "dbus_utility.hpp" | 
| Ed Tanous | 2c6ffdb | 2023-06-28 11:28:38 -0700 | [diff] [blame] | 6 | #include "ossl_random.hpp" | 
| Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 7 |  | 
| Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 8 | #include <sdbusplus/bus/match.hpp> | 
| Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 9 |  | 
|  | 10 | #include <cstdio> | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 11 | #include <fstream> | 
|  | 12 | #include <memory> | 
| Ed Tanous | 3544d2a | 2023-08-06 18:12:20 -0700 | [diff] [blame] | 13 | #include <ranges> | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 14 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 15 | namespace crow | 
|  | 16 | { | 
|  | 17 | namespace image_upload | 
|  | 18 | { | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 19 |  | 
| Ed Tanous | cf9e417 | 2022-12-21 09:30:16 -0800 | [diff] [blame] | 20 | // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) | 
| Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 21 | static std::unique_ptr<sdbusplus::bus::match_t> fwUpdateMatcher; | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 22 |  | 
| zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 23 | inline void | 
|  | 24 | uploadImageHandler(const crow::Request& req, | 
|  | 25 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 26 | { | 
|  | 27 | // Only allow one FW update at a time | 
|  | 28 | if (fwUpdateMatcher != nullptr) | 
|  | 29 | { | 
| zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 30 | asyncResp->res.addHeader("Retry-After", "30"); | 
|  | 31 | asyncResp->res.result(boost::beast::http::status::service_unavailable); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 32 | return; | 
|  | 33 | } | 
|  | 34 | // Make this const static so it survives outside this method | 
| Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 35 | static boost::asio::steady_timer timeout(*req.ioService, | 
|  | 36 | std::chrono::seconds(5)); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 37 |  | 
| Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 38 | timeout.expires_after(std::chrono::seconds(15)); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 39 |  | 
| zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 40 | auto timeoutHandler = [asyncResp](const boost::system::error_code& ec) { | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 41 | fwUpdateMatcher = nullptr; | 
| Ed Tanous | 23e6420 | 2020-09-15 19:21:30 -0700 | [diff] [blame] | 42 | if (ec == boost::asio::error::operation_aborted) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 43 | { | 
|  | 44 | // expected, we were canceled before the timer completed. | 
|  | 45 | return; | 
|  | 46 | } | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 47 | BMCWEB_LOG_ERROR("Timed out waiting for Version interface"); | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 48 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 49 | if (ec) | 
|  | 50 | { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 51 | BMCWEB_LOG_ERROR("Async_wait failed {}", ec); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 52 | return; | 
|  | 53 | } | 
|  | 54 |  | 
| zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 55 | asyncResp->res.result(boost::beast::http::status::bad_request); | 
| Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 56 | asyncResp->res.jsonValue["data"]["description"] = | 
|  | 57 | "Version already exists or failed to be extracted"; | 
|  | 58 | asyncResp->res.jsonValue["message"] = "400 Bad Request"; | 
|  | 59 | asyncResp->res.jsonValue["status"] = "error"; | 
| Lei YU | 9f898f8 | 2019-03-08 16:52:10 +0800 | [diff] [blame] | 60 | }; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 61 |  | 
| Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 62 | std::function<void(sdbusplus::message_t&)> callback = | 
|  | 63 | [asyncResp](sdbusplus::message_t& m) { | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 64 | BMCWEB_LOG_DEBUG("Match fired"); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 65 |  | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 66 | sdbusplus::message::object_path path; | 
| Michael Shen | 80f79a4 | 2023-08-24 13:41:53 +0000 | [diff] [blame] | 67 | dbus::utility::DBusInterfacesMap interfaces; | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 68 | m.read(path, interfaces); | 
| Matt Spinler | c900850 | 2019-01-21 12:21:25 -0600 | [diff] [blame] | 69 |  | 
| Ed Tanous | 3544d2a | 2023-08-06 18:12:20 -0700 | [diff] [blame] | 70 | if (std::ranges::find_if(interfaces, [](const auto& i) { | 
|  | 71 | return i.first == "xyz.openbmc_project.Software.Version"; | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 72 | }) != interfaces.end()) | 
|  | 73 | { | 
|  | 74 | timeout.cancel(); | 
|  | 75 | std::string leaf = path.filename(); | 
|  | 76 | if (leaf.empty()) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 77 | { | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 78 | leaf = path.str; | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 79 | } | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 80 |  | 
|  | 81 | asyncResp->res.jsonValue["data"] = leaf; | 
|  | 82 | asyncResp->res.jsonValue["message"] = "200 OK"; | 
|  | 83 | asyncResp->res.jsonValue["status"] = "ok"; | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 84 | BMCWEB_LOG_DEBUG("ending response"); | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 85 | fwUpdateMatcher = nullptr; | 
|  | 86 | } | 
|  | 87 | }; | 
| Patrick Williams | 59d494e | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 88 | fwUpdateMatcher = std::make_unique<sdbusplus::bus::match_t>( | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 89 | *crow::connections::systemBus, | 
|  | 90 | "interface='org.freedesktop.DBus.ObjectManager',type='signal'," | 
| Matt Spinler | c900850 | 2019-01-21 12:21:25 -0600 | [diff] [blame] | 91 | "member='InterfacesAdded',path='/xyz/openbmc_project/software'", | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 92 | callback); | 
|  | 93 |  | 
| Ed Tanous | 2c6ffdb | 2023-06-28 11:28:38 -0700 | [diff] [blame] | 94 | std::string filepath("/tmp/images/" + bmcweb::getRandomUUID()); | 
| Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 95 | BMCWEB_LOG_DEBUG("Writing file to {}", filepath); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 96 | std::ofstream out(filepath, std::ofstream::out | std::ofstream::binary | | 
|  | 97 | std::ofstream::trunc); | 
| Ed Tanous | 33c6b58 | 2023-02-14 15:05:48 -0800 | [diff] [blame] | 98 | out << req.body(); | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 99 | out.close(); | 
| Lei YU | 9f898f8 | 2019-03-08 16:52:10 +0800 | [diff] [blame] | 100 | timeout.async_wait(timeoutHandler); | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 101 | } | 
|  | 102 |  | 
| Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 103 | inline void requestRoutes(App& app) | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 104 | { | 
|  | 105 | BMCWEB_ROUTE(app, "/upload/image/<str>") | 
| Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 106 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) | 
| Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 107 | .methods(boost::beast::http::verb::post, boost::beast::http::verb::put)( | 
| zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 108 | [](const crow::Request& req, | 
|  | 109 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, | 
|  | 110 | const std::string&) { uploadImageHandler(req, asyncResp); }); | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 111 |  | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 112 | BMCWEB_ROUTE(app, "/upload/image") | 
| Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 113 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) | 
| Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 114 | .methods(boost::beast::http::verb::post, boost::beast::http::verb::put)( | 
| zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 115 | [](const crow::Request& req, | 
|  | 116 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { | 
| Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 117 | uploadImageHandler(req, asyncResp); | 
|  | 118 | }); | 
| Ed Tanous | c3ee522 | 2018-05-01 12:58:27 -0700 | [diff] [blame] | 119 | } | 
| Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 120 | } // namespace image_upload | 
|  | 121 | } // namespace crow |