blob: 867d1bc66f324fde1d5e32438d24091199a9cc04 [file] [log] [blame]
Ed Tanousc3ee5222018-05-01 12:58:27 -07001#pragma once
2
Ed Tanousc3ee5222018-05-01 12:58:27 -07003#include <crow/app.h>
Ed Tanous1abe55e2018-09-05 08:30:59 -07004
Ed Tanousc3ee5222018-05-01 12:58:27 -07005#include <boost/uuid/uuid.hpp>
6#include <boost/uuid/uuid_generators.hpp>
7#include <boost/uuid/uuid_io.hpp>
Ed Tanous1abe55e2018-09-05 08:30:59 -07008#include <cstdio>
9#include <dbus_singleton.hpp>
10#include <fstream>
11#include <memory>
Ed Tanousc3ee5222018-05-01 12:58:27 -070012
Ed Tanous1abe55e2018-09-05 08:30:59 -070013namespace crow
14{
15namespace image_upload
16{
Ed Tanousc3ee5222018-05-01 12:58:27 -070017
18std::unique_ptr<sdbusplus::bus::match::match> fwUpdateMatcher;
19
Ed Tanous55c7b7a2018-05-22 15:27:24 -070020inline void uploadImageHandler(const crow::Request& req, crow::Response& res,
Ed Tanous1abe55e2018-09-05 08:30:59 -070021 const std::string& filename)
22{
23 // Only allow one FW update at a time
24 if (fwUpdateMatcher != nullptr)
25 {
26 res.addHeader("Retry-After", "30");
27 res.result(boost::beast::http::status::service_unavailable);
Ed Tanousc3ee5222018-05-01 12:58:27 -070028 res.end();
Ed Tanous1abe55e2018-09-05 08:30:59 -070029 return;
30 }
31 // Make this const static so it survives outside this method
32 static boost::asio::deadline_timer timeout(*req.ioService,
33 boost::posix_time::seconds(5));
34
Lei YU9f898f82019-03-08 16:52:10 +080035 timeout.expires_from_now(boost::posix_time::seconds(15));
Ed Tanous1abe55e2018-09-05 08:30:59 -070036
Lei YU9f898f82019-03-08 16:52:10 +080037 auto timeoutHandler = [&res](const boost::system::error_code& ec) {
Ed Tanousc3ee5222018-05-01 12:58:27 -070038 fwUpdateMatcher = nullptr;
Ed Tanous1abe55e2018-09-05 08:30:59 -070039 if (ec == asio::error::operation_aborted)
40 {
41 // expected, we were canceled before the timer completed.
42 return;
43 }
Matt Spinlerc9008502019-01-21 12:21:25 -060044 BMCWEB_LOG_ERROR << "Timed out waiting for Version interface";
Ed Tanousc3ee5222018-05-01 12:58:27 -070045
Ed Tanous1abe55e2018-09-05 08:30:59 -070046 if (ec)
47 {
48 BMCWEB_LOG_ERROR << "Async_wait failed " << ec;
49 return;
50 }
51
Matt Spinlerc9008502019-01-21 12:21:25 -060052 res.result(boost::beast::http::status::bad_request);
53 res.jsonValue = {
54 {"data",
55 {{"description",
56 "Version already exists or failed to be extracted"}}},
57 {"message", "400 Bad Request"},
58 {"status", "error"}};
Ed Tanous1abe55e2018-09-05 08:30:59 -070059 res.end();
Lei YU9f898f82019-03-08 16:52:10 +080060 };
Ed Tanous1abe55e2018-09-05 08:30:59 -070061
62 std::function<void(sdbusplus::message::message&)> callback =
63 [&res](sdbusplus::message::message& m) {
64 BMCWEB_LOG_DEBUG << "Match fired";
Ed Tanous1abe55e2018-09-05 08:30:59 -070065
Matt Spinlerc9008502019-01-21 12:21:25 -060066 sdbusplus::message::object_path path;
67 std::vector<std::pair<
68 std::string,
Ed Tanousabf2add2019-01-22 16:40:12 -080069 std::vector<std::pair<std::string, std::variant<std::string>>>>>
Matt Spinlerc9008502019-01-21 12:21:25 -060070 interfaces;
71 m.read(path, interfaces);
72
73 if (std::find_if(interfaces.begin(), interfaces.end(),
74 [](const auto& i) {
75 return i.first ==
76 "xyz.openbmc_project.Software.Version";
77 }) != interfaces.end())
Ed Tanous1abe55e2018-09-05 08:30:59 -070078 {
Matt Spinlerc9008502019-01-21 12:21:25 -060079 boost::system::error_code ec;
80 timeout.cancel(ec);
81 if (ec)
82 {
83 BMCWEB_LOG_ERROR << "error canceling timer " << ec;
84 }
85
86 std::size_t index = path.str.rfind('/');
87 if (index != std::string::npos)
88 {
89 path.str.erase(0, index + 1);
90 }
91 res.jsonValue = {{"data", std::move(path.str)},
92 {"message", "200 OK"},
93 {"status", "ok"}};
94 BMCWEB_LOG_DEBUG << "ending response";
95 res.end();
96 fwUpdateMatcher = nullptr;
Ed Tanous1abe55e2018-09-05 08:30:59 -070097 }
Ed Tanous1abe55e2018-09-05 08:30:59 -070098 };
99 fwUpdateMatcher = std::make_unique<sdbusplus::bus::match::match>(
100 *crow::connections::systemBus,
101 "interface='org.freedesktop.DBus.ObjectManager',type='signal',"
Matt Spinlerc9008502019-01-21 12:21:25 -0600102 "member='InterfacesAdded',path='/xyz/openbmc_project/software'",
Ed Tanous1abe55e2018-09-05 08:30:59 -0700103 callback);
104
105 std::string filepath(
106 "/tmp/images/" +
107 boost::uuids::to_string(boost::uuids::random_generator()()));
108 BMCWEB_LOG_DEBUG << "Writing file to " << filepath;
109 std::ofstream out(filepath, std::ofstream::out | std::ofstream::binary |
110 std::ofstream::trunc);
111 out << req.body;
112 out.close();
Lei YU9f898f82019-03-08 16:52:10 +0800113 timeout.async_wait(timeoutHandler);
Ed Tanousc3ee5222018-05-01 12:58:27 -0700114}
115
Ed Tanous1abe55e2018-09-05 08:30:59 -0700116template <typename... Middlewares> void requestRoutes(Crow<Middlewares...>& app)
117{
118 BMCWEB_ROUTE(app, "/upload/image/<str>")
119 .methods("POST"_method,
120 "PUT"_method)([](const crow::Request& req, crow::Response& res,
121 const std::string& filename) {
122 uploadImageHandler(req, res, filename);
123 });
Ed Tanousc3ee5222018-05-01 12:58:27 -0700124
Ed Tanous1abe55e2018-09-05 08:30:59 -0700125 BMCWEB_ROUTE(app, "/upload/image")
126 .methods("POST"_method, "PUT"_method)(
127 [](const crow::Request& req, crow::Response& res) {
128 uploadImageHandler(req, res, "");
129 });
Ed Tanousc3ee5222018-05-01 12:58:27 -0700130}
Ed Tanous1abe55e2018-09-05 08:30:59 -0700131} // namespace image_upload
132} // namespace crow