Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Nan Zhou | e796c26 | 2022-08-02 19:56:29 +0000 | [diff] [blame] | 3 | #include "bmcweb_config.h" |
| 4 | |
| 5 | #include "app.hpp" |
| 6 | #include "async_resp.hpp" |
| 7 | #include "error_messages.hpp" |
| 8 | #include "http_request.hpp" |
| 9 | #include "http_response.hpp" |
| 10 | #include "logging.hpp" |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 11 | #include "utils/query_param.hpp" |
| 12 | |
Nan Zhou | e796c26 | 2022-08-02 19:56:29 +0000 | [diff] [blame] | 13 | #include <boost/beast/http/verb.hpp> |
| 14 | #include <boost/url/params_view.hpp> |
| 15 | #include <boost/url/url_view.hpp> |
| 16 | |
| 17 | #include <functional> |
| 18 | #include <memory> |
Nan Zhou | e796c26 | 2022-08-02 19:56:29 +0000 | [diff] [blame] | 19 | #include <optional> |
| 20 | #include <string> |
| 21 | #include <string_view> |
| 22 | #include <type_traits> |
| 23 | #include <utility> |
| 24 | |
| 25 | // IWYU pragma: no_forward_declare crow::App |
| 26 | // IWYU pragma: no_include <boost/url/impl/params_view.hpp> |
| 27 | // IWYU pragma: no_include <boost/url/impl/url_view.hpp> |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 28 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 29 | #include "redfish_aggregator.hpp" |
Carson Labrado | 05916ce | 2022-08-01 19:38:18 +0000 | [diff] [blame] | 30 | |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 31 | namespace redfish |
| 32 | { |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 33 | inline void afterIfMatchRequest( |
| 34 | crow::App& app, const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 35 | const std::shared_ptr<crow::Request>& req, const std::string& ifMatchHeader, |
| 36 | const crow::Response& resIn) |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 37 | { |
| 38 | std::string computedEtag = resIn.computeEtag(); |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 39 | BMCWEB_LOG_DEBUG("User provided if-match etag {} computed etag {}", |
| 40 | ifMatchHeader, computedEtag); |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 41 | if (computedEtag != ifMatchHeader) |
| 42 | { |
| 43 | messages::preconditionFailed(asyncResp->res); |
| 44 | return; |
| 45 | } |
| 46 | // Restart the request without if-match |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 47 | req->clearHeader(boost::beast::http::field::if_match); |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 48 | BMCWEB_LOG_DEBUG("Restarting request"); |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 49 | app.handle(req, asyncResp); |
| 50 | } |
| 51 | |
| 52 | inline bool handleIfMatch(crow::App& app, const crow::Request& req, |
| 53 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
| 54 | { |
| 55 | if (req.session == nullptr) |
| 56 | { |
| 57 | // If the user isn't authenticated, don't even attempt to parse match |
| 58 | // parameters |
| 59 | return true; |
| 60 | } |
| 61 | |
| 62 | std::string ifMatch{ |
| 63 | req.getHeaderValue(boost::beast::http::field::if_match)}; |
| 64 | if (ifMatch.empty()) |
| 65 | { |
| 66 | // No If-Match header. Nothing to do |
| 67 | return true; |
| 68 | } |
Hieu Huynh | a1cbc19 | 2023-03-29 07:24:42 +0000 | [diff] [blame] | 69 | if (ifMatch == "*") |
| 70 | { |
| 71 | // Representing any resource |
| 72 | // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match |
| 73 | return true; |
| 74 | } |
Myung Bae | 1873a04 | 2024-04-01 09:27:39 -0500 | [diff] [blame] | 75 | if (req.method() != boost::beast::http::verb::patch && |
| 76 | req.method() != boost::beast::http::verb::post && |
| 77 | req.method() != boost::beast::http::verb::delete_) |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 78 | { |
| 79 | messages::preconditionFailed(asyncResp->res); |
| 80 | return false; |
| 81 | } |
| 82 | boost::system::error_code ec; |
| 83 | |
| 84 | // Try to GET the same resource |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 85 | auto getReq = std::make_shared<crow::Request>( |
| 86 | crow::Request::Body{boost::beast::http::verb::get, |
| 87 | req.url().encoded_path(), 11}, |
| 88 | ec); |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 89 | |
| 90 | if (ec) |
| 91 | { |
| 92 | messages::internalError(asyncResp->res); |
| 93 | return false; |
| 94 | } |
| 95 | |
| 96 | // New request has the same credentials as the old request |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 97 | getReq->session = req.session; |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 98 | |
| 99 | // Construct a new response object to fill in, and check the hash of before |
| 100 | // we modify the Resource. |
| 101 | std::shared_ptr<bmcweb::AsyncResp> getReqAsyncResp = |
| 102 | std::make_shared<bmcweb::AsyncResp>(); |
| 103 | |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 104 | // Ideally we would have a shared_ptr to the original Request which we could |
| 105 | // modify to remove the If-Match and restart it. But instead we have to make |
| 106 | // a full copy to restart it. |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 107 | getReqAsyncResp->res.setCompleteRequestHandler(std::bind_front( |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 108 | afterIfMatchRequest, std::ref(app), asyncResp, |
| 109 | std::make_shared<crow::Request>(req), std::move(ifMatch))); |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 110 | |
Jonathan Doman | 102a4cd | 2024-04-15 16:56:23 -0700 | [diff] [blame] | 111 | app.handle(getReq, getReqAsyncResp); |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 112 | return false; |
| 113 | } |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 114 | |
Nan Zhou | a6b9125 | 2022-04-04 13:10:40 -0700 | [diff] [blame] | 115 | // Sets up the Redfish Route and delegates some of the query parameter |
| 116 | // processing. |queryCapabilities| stores which query parameters will be |
| 117 | // handled by redfish-core/lib codes, then default query parameter handler won't |
| 118 | // process these parameters. |
| 119 | [[nodiscard]] inline bool setUpRedfishRouteWithDelegation( |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 120 | crow::App& app, const crow::Request& req, |
| 121 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Nan Zhou | a6b9125 | 2022-04-04 13:10:40 -0700 | [diff] [blame] | 122 | query_param::Query& delegated, |
| 123 | const query_param::QueryCapabilities& queryCapabilities) |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 124 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 125 | BMCWEB_LOG_DEBUG("setup redfish route"); |
Ed Tanous | 142ec9a | 2022-03-24 18:20:45 -0700 | [diff] [blame] | 126 | |
| 127 | // Section 7.4 of the redfish spec "Redfish Services shall process the |
| 128 | // [OData-Version header] in the following table as defined by the HTTP 1.1 |
| 129 | // specification..." |
| 130 | // Required to pass redfish-protocol-validator REQ_HEADERS_ODATA_VERSION |
| 131 | std::string_view odataHeader = req.getHeaderValue("OData-Version"); |
| 132 | if (!odataHeader.empty() && odataHeader != "4.0") |
| 133 | { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 134 | messages::preconditionFailed(asyncResp->res); |
Ed Tanous | 142ec9a | 2022-03-24 18:20:45 -0700 | [diff] [blame] | 135 | return false; |
| 136 | } |
| 137 | |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 138 | asyncResp->res.addHeader("OData-Version", "4.0"); |
Ed Tanous | c02a74f | 2022-05-11 14:46:44 -0700 | [diff] [blame] | 139 | |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 140 | std::optional<query_param::Query> queryOpt = |
Ed Tanous | 39662a3 | 2023-02-06 15:09:46 -0800 | [diff] [blame] | 141 | query_param::parseParameters(req.url().params(), asyncResp->res); |
Ed Tanous | e01d0c3 | 2023-06-30 13:21:32 -0700 | [diff] [blame] | 142 | if (!queryOpt) |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 143 | { |
| 144 | return false; |
| 145 | } |
| 146 | |
Ed Tanous | 2d6cb56 | 2022-07-07 20:44:54 -0700 | [diff] [blame] | 147 | if (!handleIfMatch(app, req, asyncResp)) |
| 148 | { |
| 149 | return false; |
| 150 | } |
| 151 | |
Carson Labrado | 05916ce | 2022-08-01 19:38:18 +0000 | [diff] [blame] | 152 | bool needToCallHandlers = true; |
| 153 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 154 | if constexpr (BMCWEB_REDFISH_AGGREGATION) |
| 155 | { |
Patrick Williams | bd79bce | 2024-08-16 15:22:20 -0400 | [diff] [blame^] | 156 | needToCallHandlers = |
| 157 | RedfishAggregator::beginAggregation(req, asyncResp) == |
| 158 | Result::LocalHandle; |
Carson Labrado | 05916ce | 2022-08-01 19:38:18 +0000 | [diff] [blame] | 159 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 160 | // If the request should be forwarded to a satellite BMC then we don't |
| 161 | // want to write anything to the asyncResp since it will get overwritten |
| 162 | // later. |
| 163 | } |
Carson Labrado | 05916ce | 2022-08-01 19:38:18 +0000 | [diff] [blame] | 164 | |
Ed Tanous | 7cf436c | 2022-03-22 23:53:51 -0700 | [diff] [blame] | 165 | // If this isn't a get, no need to do anything with parameters |
| 166 | if (req.method() != boost::beast::http::verb::get) |
| 167 | { |
Carson Labrado | 05916ce | 2022-08-01 19:38:18 +0000 | [diff] [blame] | 168 | return needToCallHandlers; |
Ed Tanous | 7cf436c | 2022-03-22 23:53:51 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Nan Zhou | a6b9125 | 2022-04-04 13:10:40 -0700 | [diff] [blame] | 171 | delegated = query_param::delegate(queryCapabilities, *queryOpt); |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 172 | std::function<void(crow::Response&)> handler = |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 173 | asyncResp->res.releaseCompleteRequestHandler(); |
Nan Zhou | 827c490 | 2022-08-03 04:57:55 +0000 | [diff] [blame] | 174 | |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 175 | asyncResp->res.setCompleteRequestHandler( |
Willy Tu | 32cdb4a | 2023-05-23 10:58:39 -0700 | [diff] [blame] | 176 | [&app, handler(std::move(handler)), query{std::move(*queryOpt)}, |
| 177 | delegated{delegated}](crow::Response& resIn) mutable { |
Patrick Williams | bd79bce | 2024-08-16 15:22:20 -0400 | [diff] [blame^] | 178 | processAllParams(app, query, delegated, handler, resIn); |
| 179 | }); |
Nan Zhou | 827c490 | 2022-08-03 04:57:55 +0000 | [diff] [blame] | 180 | |
Carson Labrado | 05916ce | 2022-08-01 19:38:18 +0000 | [diff] [blame] | 181 | return needToCallHandlers; |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 182 | } |
Nan Zhou | a6b9125 | 2022-04-04 13:10:40 -0700 | [diff] [blame] | 183 | |
| 184 | // Sets up the Redfish Route. All parameters are handled by the default handler. |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 185 | [[nodiscard]] inline bool |
| 186 | setUpRedfishRoute(crow::App& app, const crow::Request& req, |
| 187 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Nan Zhou | a6b9125 | 2022-04-04 13:10:40 -0700 | [diff] [blame] | 188 | { |
| 189 | // This route |delegated| is never used |
| 190 | query_param::Query delegated; |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 191 | return setUpRedfishRouteWithDelegation(app, req, asyncResp, delegated, |
Nan Zhou | a6b9125 | 2022-04-04 13:10:40 -0700 | [diff] [blame] | 192 | query_param::QueryCapabilities{}); |
| 193 | } |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 194 | } // namespace redfish |