blob: 4defbb6682a15e84b9d0acec89b1797aabd890e5 [file] [log] [blame]
Ed Tanousc3ee5222018-05-01 12:58:27 -07001#pragma once
2
Ed Tanous04e438c2020-10-03 08:06:26 -07003#include <app.hpp>
Ed Tanousc3ee5222018-05-01 12:58:27 -07004#include <boost/uuid/uuid.hpp>
5#include <boost/uuid/uuid_generators.hpp>
6#include <boost/uuid/uuid_io.hpp>
Ed Tanous1abe55e2018-09-05 08:30:59 -07007#include <dbus_singleton.hpp>
Ed Tanous168e20c2021-12-13 14:39:53 -08008#include <dbus_utility.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -05009
10#include <cstdio>
Ed Tanous1abe55e2018-09-05 08:30:59 -070011#include <fstream>
12#include <memory>
Ed Tanousc3ee5222018-05-01 12:58:27 -070013
Ed Tanous1abe55e2018-09-05 08:30:59 -070014namespace crow
15{
16namespace image_upload
17{
Ed Tanousc3ee5222018-05-01 12:58:27 -070018
Patrick Williams59d494e2022-07-22 19:26:55 -050019static std::unique_ptr<sdbusplus::bus::match_t> fwUpdateMatcher;
Ed Tanousc3ee5222018-05-01 12:58:27 -070020
zhanghch058d1b46d2021-04-01 11:18:24 +080021inline void
22 uploadImageHandler(const crow::Request& req,
23 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanous1abe55e2018-09-05 08:30:59 -070024{
25 // Only allow one FW update at a time
26 if (fwUpdateMatcher != nullptr)
27 {
zhanghch058d1b46d2021-04-01 11:18:24 +080028 asyncResp->res.addHeader("Retry-After", "30");
29 asyncResp->res.result(boost::beast::http::status::service_unavailable);
Ed Tanous1abe55e2018-09-05 08:30:59 -070030 return;
31 }
32 // Make this const static so it survives outside this method
Ed Tanous271584a2019-07-09 16:24:22 -070033 static boost::asio::steady_timer timeout(*req.ioService,
34 std::chrono::seconds(5));
Ed Tanous1abe55e2018-09-05 08:30:59 -070035
Ed Tanous271584a2019-07-09 16:24:22 -070036 timeout.expires_after(std::chrono::seconds(15));
Ed Tanous1abe55e2018-09-05 08:30:59 -070037
zhanghch058d1b46d2021-04-01 11:18:24 +080038 auto timeoutHandler = [asyncResp](const boost::system::error_code& ec) {
Ed Tanousc3ee5222018-05-01 12:58:27 -070039 fwUpdateMatcher = nullptr;
Ed Tanous23e64202020-09-15 19:21:30 -070040 if (ec == boost::asio::error::operation_aborted)
Ed Tanous1abe55e2018-09-05 08:30:59 -070041 {
42 // expected, we were canceled before the timer completed.
43 return;
44 }
Matt Spinlerc9008502019-01-21 12:21:25 -060045 BMCWEB_LOG_ERROR << "Timed out waiting for Version interface";
Ed Tanousc3ee5222018-05-01 12:58:27 -070046
Ed Tanous1abe55e2018-09-05 08:30:59 -070047 if (ec)
48 {
49 BMCWEB_LOG_ERROR << "Async_wait failed " << ec;
50 return;
51 }
52
zhanghch058d1b46d2021-04-01 11:18:24 +080053 asyncResp->res.result(boost::beast::http::status::bad_request);
Ed Tanous14766872022-03-15 10:44:42 -070054 asyncResp->res.jsonValue["data"]["description"] =
55 "Version already exists or failed to be extracted";
56 asyncResp->res.jsonValue["message"] = "400 Bad Request";
57 asyncResp->res.jsonValue["status"] = "error";
Lei YU9f898f82019-03-08 16:52:10 +080058 };
Ed Tanous1abe55e2018-09-05 08:30:59 -070059
Patrick Williams59d494e2022-07-22 19:26:55 -050060 std::function<void(sdbusplus::message_t&)> callback =
61 [asyncResp](sdbusplus::message_t& m) {
Ed Tanous002d39b2022-05-31 08:59:27 -070062 BMCWEB_LOG_DEBUG << "Match fired";
Ed Tanous1abe55e2018-09-05 08:30:59 -070063
Ed Tanous002d39b2022-05-31 08:59:27 -070064 sdbusplus::message::object_path path;
65 dbus::utility::DBusInteracesMap interfaces;
66 m.read(path, interfaces);
Matt Spinlerc9008502019-01-21 12:21:25 -060067
Ed Tanous002d39b2022-05-31 08:59:27 -070068 if (std::find_if(interfaces.begin(), interfaces.end(),
69 [](const auto& i) {
70 return i.first == "xyz.openbmc_project.Software.Version";
71 }) != interfaces.end())
72 {
73 timeout.cancel();
74 std::string leaf = path.filename();
75 if (leaf.empty())
Ed Tanous1abe55e2018-09-05 08:30:59 -070076 {
Ed Tanous002d39b2022-05-31 08:59:27 -070077 leaf = path.str;
Ed Tanous1abe55e2018-09-05 08:30:59 -070078 }
Ed Tanous002d39b2022-05-31 08:59:27 -070079
80 asyncResp->res.jsonValue["data"] = leaf;
81 asyncResp->res.jsonValue["message"] = "200 OK";
82 asyncResp->res.jsonValue["status"] = "ok";
83 BMCWEB_LOG_DEBUG << "ending response";
84 fwUpdateMatcher = nullptr;
85 }
86 };
Patrick Williams59d494e2022-07-22 19:26:55 -050087 fwUpdateMatcher = std::make_unique<sdbusplus::bus::match_t>(
Ed Tanous1abe55e2018-09-05 08:30:59 -070088 *crow::connections::systemBus,
89 "interface='org.freedesktop.DBus.ObjectManager',type='signal',"
Matt Spinlerc9008502019-01-21 12:21:25 -060090 "member='InterfacesAdded',path='/xyz/openbmc_project/software'",
Ed Tanous1abe55e2018-09-05 08:30:59 -070091 callback);
92
93 std::string filepath(
94 "/tmp/images/" +
95 boost::uuids::to_string(boost::uuids::random_generator()()));
96 BMCWEB_LOG_DEBUG << "Writing file to " << filepath;
97 std::ofstream out(filepath, std::ofstream::out | std::ofstream::binary |
98 std::ofstream::trunc);
99 out << req.body;
100 out.close();
Lei YU9f898f82019-03-08 16:52:10 +0800101 timeout.async_wait(timeoutHandler);
Ed Tanousc3ee5222018-05-01 12:58:27 -0700102}
103
Ed Tanous23a21a12020-07-25 04:45:05 +0000104inline void requestRoutes(App& app)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700105{
106 BMCWEB_ROUTE(app, "/upload/image/<str>")
Ed Tanous432a8902021-06-14 15:28:56 -0700107 .privileges({{"ConfigureComponents", "ConfigureManager"}})
Ed Tanousb41187f2019-10-24 16:30:02 -0700108 .methods(boost::beast::http::verb::post, boost::beast::http::verb::put)(
zhanghch058d1b46d2021-04-01 11:18:24 +0800109 [](const crow::Request& req,
110 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
111 const std::string&) { uploadImageHandler(req, asyncResp); });
Ed Tanousc3ee5222018-05-01 12:58:27 -0700112
Ed Tanous1abe55e2018-09-05 08:30:59 -0700113 BMCWEB_ROUTE(app, "/upload/image")
Ed Tanous432a8902021-06-14 15:28:56 -0700114 .privileges({{"ConfigureComponents", "ConfigureManager"}})
Ed Tanousb41187f2019-10-24 16:30:02 -0700115 .methods(boost::beast::http::verb::post, boost::beast::http::verb::put)(
zhanghch058d1b46d2021-04-01 11:18:24 +0800116 [](const crow::Request& req,
117 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700118 uploadImageHandler(req, asyncResp);
119 });
Ed Tanousc3ee5222018-05-01 12:58:27 -0700120}
Ed Tanous1abe55e2018-09-05 08:30:59 -0700121} // namespace image_upload
122} // namespace crow