blob: 5698bc91cf610b2b55d553aa9895beab9aaf057f [file] [log] [blame]
James Feist46229572020-02-19 15:11:58 -08001/*
2// Copyright (c) 2020 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
18#include "node.hpp"
19
Zhenfei Taidecde9e2020-05-05 13:39:07 -070020#include <boost/asio.hpp>
James Feist46229572020-02-19 15:11:58 -080021#include <boost/container/flat_map.hpp>
James Feiste5d50062020-05-11 17:29:00 -070022#include <task_messages.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050023
24#include <chrono>
James Feist46229572020-02-19 15:11:58 -080025#include <variant>
26
27namespace redfish
28{
29
30namespace task
31{
32constexpr size_t maxTaskCount = 100; // arbitrary limit
33
34static std::deque<std::shared_ptr<struct TaskData>> tasks;
35
James Feist32898ce2020-03-10 16:16:52 -070036constexpr bool completed = true;
37
James Feistfe306722020-03-12 16:32:08 -070038struct Payload
39{
Gunnar Mills1214b7e2020-06-04 10:11:30 -050040 Payload(const crow::Request& req) :
James Feistfe306722020-03-12 16:32:08 -070041 targetUri(req.url), httpOperation(req.methodString()),
42 httpHeaders(nlohmann::json::array())
43
44 {
45 using field_ns = boost::beast::http::field;
46 constexpr const std::array<boost::beast::http::field, 7>
47 headerWhitelist = {field_ns::accept, field_ns::accept_encoding,
48 field_ns::user_agent, field_ns::host,
49 field_ns::connection, field_ns::content_length,
50 field_ns::upgrade};
51
52 jsonBody = nlohmann::json::parse(req.body, nullptr, false);
53 if (jsonBody.is_discarded())
54 {
55 jsonBody = nullptr;
56 }
57
Gunnar Mills1214b7e2020-06-04 10:11:30 -050058 for (const auto& field : req.fields)
James Feistfe306722020-03-12 16:32:08 -070059 {
60 if (std::find(headerWhitelist.begin(), headerWhitelist.end(),
61 field.name()) == headerWhitelist.end())
62 {
63 continue;
64 }
65 std::string header;
66 header.reserve(field.name_string().size() + 2 +
67 field.value().size());
68 header += field.name_string();
69 header += ": ";
70 header += field.value();
71 httpHeaders.emplace_back(std::move(header));
72 }
73 }
74 Payload() = delete;
75
76 std::string targetUri;
77 std::string httpOperation;
78 nlohmann::json httpHeaders;
79 nlohmann::json jsonBody;
80};
81
Gunnar Mills1214b7e2020-06-04 10:11:30 -050082inline void to_json(nlohmann::json& j, const Payload& p)
James Feistfe306722020-03-12 16:32:08 -070083{
84 j = {{"TargetUri", p.targetUri},
85 {"HttpOperation", p.httpOperation},
86 {"HttpHeaders", p.httpHeaders},
87 {"JsonBody", p.jsonBody.dump()}};
88}
89
James Feist46229572020-02-19 15:11:58 -080090struct TaskData : std::enable_shared_from_this<TaskData>
91{
92 private:
93 TaskData(std::function<bool(boost::system::error_code,
Gunnar Mills1214b7e2020-06-04 10:11:30 -050094 sdbusplus::message::message&,
95 const std::shared_ptr<TaskData>&)>&& handler,
Ed Tanous23a21a12020-07-25 04:45:05 +000096 const std::string& matchIn, size_t idx) :
James Feist46229572020-02-19 15:11:58 -080097 callback(std::move(handler)),
Ed Tanous23a21a12020-07-25 04:45:05 +000098 matchStr(matchIn), index(idx),
James Feist46229572020-02-19 15:11:58 -080099 startTime(std::chrono::system_clock::to_time_t(
100 std::chrono::system_clock::now())),
101 status("OK"), state("Running"), messages(nlohmann::json::array()),
102 timer(crow::connections::systemBus->get_io_context())
103
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500104 {}
James Feist46229572020-02-19 15:11:58 -0800105 TaskData() = delete;
106
107 public:
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500108 static std::shared_ptr<TaskData>& createTask(
James Feist46229572020-02-19 15:11:58 -0800109 std::function<bool(boost::system::error_code,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500110 sdbusplus::message::message&,
111 const std::shared_ptr<TaskData>&)>&& handler,
112 const std::string& match)
James Feist46229572020-02-19 15:11:58 -0800113 {
114 static size_t lastTask = 0;
115 struct MakeSharedHelper : public TaskData
116 {
117 MakeSharedHelper(
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500118 std::function<bool(boost::system::error_code,
119 sdbusplus::message::message&,
120 const std::shared_ptr<TaskData>&)>&& handler,
Ed Tanous23a21a12020-07-25 04:45:05 +0000121 const std::string& match2, size_t idx) :
122 TaskData(std::move(handler), match2, idx)
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500123 {}
James Feist46229572020-02-19 15:11:58 -0800124 };
125
126 if (tasks.size() >= maxTaskCount)
127 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500128 auto& last = tasks.front();
James Feist46229572020-02-19 15:11:58 -0800129
130 // destroy all references
131 last->timer.cancel();
132 last->match.reset();
133 tasks.pop_front();
134 }
135
136 return tasks.emplace_back(std::make_shared<MakeSharedHelper>(
137 std::move(handler), match, lastTask++));
138 }
139
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500140 void populateResp(crow::Response& res, size_t retryAfterSeconds = 30)
James Feist46229572020-02-19 15:11:58 -0800141 {
142 if (!endTime)
143 {
144 res.result(boost::beast::http::status::accepted);
145 std::string strIdx = std::to_string(index);
146 std::string uri = "/redfish/v1/TaskService/Tasks/" + strIdx;
147 res.jsonValue = {{"@odata.id", uri},
148 {"@odata.type", "#Task.v1_4_3.Task"},
149 {"Id", strIdx},
150 {"TaskState", state},
151 {"TaskStatus", status}};
152 res.addHeader(boost::beast::http::field::location,
153 uri + "/Monitor");
154 res.addHeader(boost::beast::http::field::retry_after,
155 std::to_string(retryAfterSeconds));
156 }
157 else if (!gave204)
158 {
159 res.result(boost::beast::http::status::no_content);
160 gave204 = true;
161 }
162 }
163
164 void finishTask(void)
165 {
166 endTime = std::chrono::system_clock::to_time_t(
167 std::chrono::system_clock::now());
168 }
169
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500170 void extendTimer(const std::chrono::seconds& timeout)
James Feist46229572020-02-19 15:11:58 -0800171 {
James Feist46229572020-02-19 15:11:58 -0800172 timer.expires_after(timeout);
173 timer.async_wait(
174 [self = shared_from_this()](boost::system::error_code ec) {
175 if (ec == boost::asio::error::operation_aborted)
176 {
Gunnar Mills4e0453b2020-07-08 14:00:30 -0500177 return; // completed successfully
James Feist46229572020-02-19 15:11:58 -0800178 }
179 if (!ec)
180 {
181 // change ec to error as timer expired
182 ec = boost::asio::error::operation_aborted;
183 }
184 self->match.reset();
185 sdbusplus::message::message msg;
186 self->finishTask();
187 self->state = "Cancelled";
188 self->status = "Warning";
James Feiste5d50062020-05-11 17:29:00 -0700189 self->messages.emplace_back(
190 messages::taskAborted(std::to_string(self->index)));
Sunitha Harishe7686572020-07-15 02:32:44 -0500191 // Send event :TaskAborted
192 self->sendTaskEvent(self->state, self->index);
James Feist46229572020-02-19 15:11:58 -0800193 self->callback(ec, msg, self);
194 });
James Feistfd9ab9e2020-05-19 13:48:07 -0700195 }
196
Sunitha Harishe7686572020-07-15 02:32:44 -0500197 void sendTaskEvent(const std::string_view state, size_t index)
198 {
199 std::string origin =
200 "/redfish/v1/TaskService/Tasks/" + std::to_string(index);
201 std::string resType = "Task";
202 // TaskState enums which should send out an event are:
203 // "Starting" = taskResumed
204 // "Running" = taskStarted
205 // "Suspended" = taskPaused
206 // "Interrupted" = taskPaused
207 // "Pending" = taskPaused
208 // "Stopping" = taskAborted
209 // "Completed" = taskCompletedOK
210 // "Killed" = taskRemoved
211 // "Exception" = taskCompletedWarning
212 // "Cancelled" = taskCancelled
213 if (state == "Starting")
214 {
215 redfish::EventServiceManager::getInstance().sendEvent(
216 redfish::messages::taskResumed(std::to_string(index)), origin,
217 resType);
218 }
219 else if (state == "Running")
220 {
221 redfish::EventServiceManager::getInstance().sendEvent(
222 redfish::messages::taskStarted(std::to_string(index)), origin,
223 resType);
224 }
225 else if ((state == "Suspended") || (state == "Interrupted") ||
226 (state == "Pending"))
227 {
228 redfish::EventServiceManager::getInstance().sendEvent(
229 redfish::messages::taskPaused(std::to_string(index)), origin,
230 resType);
231 }
232 else if (state == "Stopping")
233 {
234 redfish::EventServiceManager::getInstance().sendEvent(
235 redfish::messages::taskAborted(std::to_string(index)), origin,
236 resType);
237 }
238 else if (state == "Completed")
239 {
240 redfish::EventServiceManager::getInstance().sendEvent(
241 redfish::messages::taskCompletedOK(std::to_string(index)),
242 origin, resType);
243 }
244 else if (state == "Killed")
245 {
246 redfish::EventServiceManager::getInstance().sendEvent(
247 redfish::messages::taskRemoved(std::to_string(index)), origin,
248 resType);
249 }
250 else if (state == "Exception")
251 {
252 redfish::EventServiceManager::getInstance().sendEvent(
253 redfish::messages::taskCompletedWarning(std::to_string(index)),
254 origin, resType);
255 }
256 else if (state == "Cancelled")
257 {
258 redfish::EventServiceManager::getInstance().sendEvent(
259 redfish::messages::taskCancelled(std::to_string(index)), origin,
260 resType);
261 }
262 else
263 {
264 BMCWEB_LOG_INFO << "sendTaskEvent: No events to send";
265 }
266 }
267
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500268 void startTimer(const std::chrono::seconds& timeout)
James Feistfd9ab9e2020-05-19 13:48:07 -0700269 {
270 if (match)
271 {
272 return;
273 }
274 match = std::make_unique<sdbusplus::bus::match::match>(
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500275 static_cast<sdbusplus::bus::bus&>(*crow::connections::systemBus),
James Feistfd9ab9e2020-05-19 13:48:07 -0700276 matchStr,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500277 [self = shared_from_this()](sdbusplus::message::message& message) {
James Feistfd9ab9e2020-05-19 13:48:07 -0700278 boost::system::error_code ec;
279
280 // callback to return True if callback is done, callback needs
281 // to update status itself if needed
282 if (self->callback(ec, message, self) == task::completed)
283 {
284 self->timer.cancel();
285 self->finishTask();
286
Sunitha Harishe7686572020-07-15 02:32:44 -0500287 // Send event
288 self->sendTaskEvent(self->state, self->index);
289
James Feistfd9ab9e2020-05-19 13:48:07 -0700290 // reset the match after the callback was successful
291 boost::asio::post(
292 crow::connections::systemBus->get_io_context(),
293 [self] { self->match.reset(); });
294 return;
295 }
296 });
297
298 extendTimer(timeout);
James Feiste5d50062020-05-11 17:29:00 -0700299 messages.emplace_back(messages::taskStarted(std::to_string(index)));
Sunitha Harishe7686572020-07-15 02:32:44 -0500300 // Send event : TaskStarted
301 sendTaskEvent(state, index);
James Feist46229572020-02-19 15:11:58 -0800302 }
303
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500304 std::function<bool(boost::system::error_code, sdbusplus::message::message&,
305 const std::shared_ptr<TaskData>&)>
James Feist46229572020-02-19 15:11:58 -0800306 callback;
307 std::string matchStr;
308 size_t index;
309 time_t startTime;
310 std::string status;
311 std::string state;
312 nlohmann::json messages;
313 boost::asio::steady_timer timer;
314 std::unique_ptr<sdbusplus::bus::match::match> match;
315 std::optional<time_t> endTime;
James Feistfe306722020-03-12 16:32:08 -0700316 std::optional<Payload> payload;
James Feist46229572020-02-19 15:11:58 -0800317 bool gave204 = false;
318};
319
320} // namespace task
321
322class TaskMonitor : public Node
323{
324 public:
Ed Tanous52cc1122020-07-18 13:51:21 -0700325 TaskMonitor(App& app) :
Gunnar Mills7af91512020-04-14 22:16:57 -0500326 Node((app), "/redfish/v1/TaskService/Tasks/<str>/Monitor/",
James Feist46229572020-02-19 15:11:58 -0800327 std::string())
328 {
329 entityPrivileges = {
330 {boost::beast::http::verb::get, {{"Login"}}},
331 {boost::beast::http::verb::head, {{"Login"}}},
332 {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
333 {boost::beast::http::verb::put, {{"ConfigureManager"}}},
334 {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
335 {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
336 }
337
338 private:
Ed Tanouscb13a392020-07-25 19:02:03 +0000339 void doGet(crow::Response& res, const crow::Request&,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500340 const std::vector<std::string>& params) override
James Feist46229572020-02-19 15:11:58 -0800341 {
342 auto asyncResp = std::make_shared<AsyncResp>(res);
343 if (params.size() != 1)
344 {
345 messages::internalError(asyncResp->res);
346 return;
347 }
348
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500349 const std::string& strParam = params[0];
James Feist46229572020-02-19 15:11:58 -0800350 auto find = std::find_if(
351 task::tasks.begin(), task::tasks.end(),
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500352 [&strParam](const std::shared_ptr<task::TaskData>& task) {
James Feist46229572020-02-19 15:11:58 -0800353 if (!task)
354 {
355 return false;
356 }
357
358 // we compare against the string version as on failure strtoul
359 // returns 0
360 return std::to_string(task->index) == strParam;
361 });
362
363 if (find == task::tasks.end())
364 {
365 messages::resourceNotFound(asyncResp->res, "Monitor", strParam);
366 return;
367 }
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500368 std::shared_ptr<task::TaskData>& ptr = *find;
James Feist46229572020-02-19 15:11:58 -0800369 // monitor expires after 204
370 if (ptr->gave204)
371 {
372 messages::resourceNotFound(asyncResp->res, "Monitor", strParam);
373 return;
374 }
375 ptr->populateResp(asyncResp->res);
376 }
377};
378
379class Task : public Node
380{
381 public:
Ed Tanous52cc1122020-07-18 13:51:21 -0700382 Task(App& app) :
Gunnar Mills7af91512020-04-14 22:16:57 -0500383 Node((app), "/redfish/v1/TaskService/Tasks/<str>/", std::string())
James Feist46229572020-02-19 15:11:58 -0800384 {
385 entityPrivileges = {
386 {boost::beast::http::verb::get, {{"Login"}}},
387 {boost::beast::http::verb::head, {{"Login"}}},
388 {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
389 {boost::beast::http::verb::put, {{"ConfigureManager"}}},
390 {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
391 {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
392 }
393
394 private:
Ed Tanouscb13a392020-07-25 19:02:03 +0000395 void doGet(crow::Response& res, const crow::Request&,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500396 const std::vector<std::string>& params) override
James Feist46229572020-02-19 15:11:58 -0800397 {
398 auto asyncResp = std::make_shared<AsyncResp>(res);
399 if (params.size() != 1)
400 {
401 messages::internalError(asyncResp->res);
402 return;
403 }
404
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500405 const std::string& strParam = params[0];
James Feist46229572020-02-19 15:11:58 -0800406 auto find = std::find_if(
407 task::tasks.begin(), task::tasks.end(),
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500408 [&strParam](const std::shared_ptr<task::TaskData>& task) {
James Feist46229572020-02-19 15:11:58 -0800409 if (!task)
410 {
411 return false;
412 }
413
414 // we compare against the string version as on failure strtoul
415 // returns 0
416 return std::to_string(task->index) == strParam;
417 });
418
419 if (find == task::tasks.end())
420 {
421 messages::resourceNotFound(asyncResp->res, "Tasks", strParam);
422 return;
423 }
424
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500425 std::shared_ptr<task::TaskData>& ptr = *find;
James Feist46229572020-02-19 15:11:58 -0800426
427 asyncResp->res.jsonValue["@odata.type"] = "#Task.v1_4_3.Task";
428 asyncResp->res.jsonValue["Id"] = strParam;
429 asyncResp->res.jsonValue["Name"] = "Task " + strParam;
430 asyncResp->res.jsonValue["TaskState"] = ptr->state;
431 asyncResp->res.jsonValue["StartTime"] =
432 crow::utility::getDateTime(ptr->startTime);
433 if (ptr->endTime)
434 {
435 asyncResp->res.jsonValue["EndTime"] =
436 crow::utility::getDateTime(*(ptr->endTime));
437 }
438 asyncResp->res.jsonValue["TaskStatus"] = ptr->status;
439 asyncResp->res.jsonValue["Messages"] = ptr->messages;
440 asyncResp->res.jsonValue["@odata.id"] =
441 "/redfish/v1/TaskService/Tasks/" + strParam;
442 if (!ptr->gave204)
443 {
444 asyncResp->res.jsonValue["TaskMonitor"] =
445 "/redfish/v1/TaskService/Tasks/" + strParam + "/Monitor";
446 }
James Feistfe306722020-03-12 16:32:08 -0700447 if (ptr->payload)
448 {
449 asyncResp->res.jsonValue["Payload"] = *(ptr->payload);
450 }
James Feist46229572020-02-19 15:11:58 -0800451 }
452};
453
454class TaskCollection : public Node
455{
456 public:
Ed Tanous52cc1122020-07-18 13:51:21 -0700457 TaskCollection(App& app) : Node(app, "/redfish/v1/TaskService/Tasks/")
James Feist46229572020-02-19 15:11:58 -0800458 {
459 entityPrivileges = {
460 {boost::beast::http::verb::get, {{"Login"}}},
461 {boost::beast::http::verb::head, {{"Login"}}},
462 {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
463 {boost::beast::http::verb::put, {{"ConfigureManager"}}},
464 {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
465 {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
466 }
467
468 private:
Ed Tanouscb13a392020-07-25 19:02:03 +0000469 void doGet(crow::Response& res, const crow::Request&,
470 const std::vector<std::string>&) override
James Feist46229572020-02-19 15:11:58 -0800471 {
472 auto asyncResp = std::make_shared<AsyncResp>(res);
473 asyncResp->res.jsonValue["@odata.type"] =
474 "#TaskCollection.TaskCollection";
475 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TaskService/Tasks";
476 asyncResp->res.jsonValue["Name"] = "Task Collection";
477 asyncResp->res.jsonValue["Members@odata.count"] = task::tasks.size();
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500478 nlohmann::json& members = asyncResp->res.jsonValue["Members"];
James Feist46229572020-02-19 15:11:58 -0800479 members = nlohmann::json::array();
480
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500481 for (const std::shared_ptr<task::TaskData>& task : task::tasks)
James Feist46229572020-02-19 15:11:58 -0800482 {
483 if (task == nullptr)
484 {
485 continue; // shouldn't be possible
486 }
487 members.emplace_back(
488 nlohmann::json{{"@odata.id", "/redfish/v1/TaskService/Tasks/" +
489 std::to_string(task->index)}});
490 }
491 }
492};
493
494class TaskService : public Node
495{
496 public:
Ed Tanous52cc1122020-07-18 13:51:21 -0700497 TaskService(App& app) : Node(app, "/redfish/v1/TaskService/")
James Feist46229572020-02-19 15:11:58 -0800498 {
499 entityPrivileges = {
500 {boost::beast::http::verb::get, {{"Login"}}},
501 {boost::beast::http::verb::head, {{"Login"}}},
502 {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
503 {boost::beast::http::verb::put, {{"ConfigureManager"}}},
504 {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
505 {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
506 }
507
508 private:
Ed Tanouscb13a392020-07-25 19:02:03 +0000509 void doGet(crow::Response& res, const crow::Request&,
510 const std::vector<std::string>&) override
James Feist46229572020-02-19 15:11:58 -0800511 {
512 auto asyncResp = std::make_shared<AsyncResp>(res);
513 asyncResp->res.jsonValue["@odata.type"] =
514 "#TaskService.v1_1_4.TaskService";
515 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TaskService";
516 asyncResp->res.jsonValue["Name"] = "Task Service";
517 asyncResp->res.jsonValue["Id"] = "TaskService";
518 asyncResp->res.jsonValue["DateTime"] = crow::utility::dateTimeNow();
519 asyncResp->res.jsonValue["CompletedTaskOverWritePolicy"] = "Oldest";
520
Sunitha Harishe7686572020-07-15 02:32:44 -0500521 asyncResp->res.jsonValue["LifeCycleEventOnTaskStateChange"] = true;
James Feist46229572020-02-19 15:11:58 -0800522
523 auto health = std::make_shared<HealthPopulate>(asyncResp);
524 health->populate();
525 asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
526 asyncResp->res.jsonValue["ServiceEnabled"] = true;
527 asyncResp->res.jsonValue["Tasks"] = {
528 {"@odata.id", "/redfish/v1/TaskService/Tasks"}};
529 }
530};
531
532} // namespace redfish