blob: 7e08ec7c4650f081dd247fb3ee6a2640ab32c121 [file] [log] [blame]
Jennifer Lee729dae72018-04-24 15:59:34 -07001/*
2// Copyright (c) 2018 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"
Ed Tanous1abe55e2018-09-05 08:30:59 -070019
Jennifer Lee729dae72018-04-24 15:59:34 -070020#include <boost/container/flat_map.hpp>
Andrew Geissler87d84722019-02-28 14:28:39 -060021#include <utils/fw_utils.hpp>
Ed Tanousabf2add2019-01-22 16:40:12 -080022#include <variant>
Jennifer Lee729dae72018-04-24 15:59:34 -070023
Ed Tanous1abe55e2018-09-05 08:30:59 -070024namespace redfish
25{
Ed Tanous27826b52018-10-29 11:40:58 -070026
Andrew Geissler0e7de462019-03-04 19:11:54 -060027// Match signals added on software path
Jennifer Leeacb7cfb2018-06-07 16:08:15 -070028static std::unique_ptr<sdbusplus::bus::match::match> fwUpdateMatcher;
Andrew Geissler0e7de462019-03-04 19:11:54 -060029// Only allow one update at a time
30static bool fwUpdateInProgress = false;
Andrew Geissler86adcd62019-04-18 10:58:05 -050031// Timer for software available
32static std::unique_ptr<boost::asio::deadline_timer> fwAvailableTimer;
33
34static void cleanUp()
35{
36 fwUpdateInProgress = false;
37 fwUpdateMatcher = nullptr;
38}
39static void activateImage(const std::string &objPath,
40 const std::string &service)
41{
42 BMCWEB_LOG_DEBUG << "Activate image for " << objPath << " " << service;
43 crow::connections::systemBus->async_method_call(
44 [](const boost::system::error_code error_code) {
45 if (error_code)
46 {
47 BMCWEB_LOG_DEBUG << "error_code = " << error_code;
48 BMCWEB_LOG_DEBUG << "error msg = " << error_code.message();
49 }
50 },
51 service, objPath, "org.freedesktop.DBus.Properties", "Set",
52 "xyz.openbmc_project.Software.Activation", "RequestedActivation",
53 std::variant<std::string>(
54 "xyz.openbmc_project.Software.Activation.RequestedActivations."
55 "Active"));
56}
Andrew Geissler0554c982019-04-23 14:40:12 -050057
58// Note that asyncResp can be either a valid pointer or nullptr. If nullptr
59// then no asyncResp updates will occur
Andrew Geissler86adcd62019-04-18 10:58:05 -050060static void softwareInterfaceAdded(std::shared_ptr<AsyncResp> asyncResp,
61 sdbusplus::message::message &m)
62{
63 std::vector<std::pair<
64 std::string,
65 std::vector<std::pair<std::string, std::variant<std::string>>>>>
66 interfacesProperties;
67
68 sdbusplus::message::object_path objPath;
69
70 m.read(objPath, interfacesProperties);
71
72 BMCWEB_LOG_DEBUG << "obj path = " << objPath.str;
73 for (auto &interface : interfacesProperties)
74 {
75 BMCWEB_LOG_DEBUG << "interface = " << interface.first;
76
77 if (interface.first == "xyz.openbmc_project.Software.Activation")
78 {
79 // Found our interface, disable callbacks
80 fwUpdateMatcher = nullptr;
81
82 // Retrieve service and activate
83 crow::connections::systemBus->async_method_call(
84 [objPath, asyncResp](
85 const boost::system::error_code error_code,
86 const std::vector<std::pair<
87 std::string, std::vector<std::string>>> &objInfo) {
88 if (error_code)
89 {
90 BMCWEB_LOG_DEBUG << "error_code = " << error_code;
91 BMCWEB_LOG_DEBUG << "error msg = "
92 << error_code.message();
Andrew Geissler0554c982019-04-23 14:40:12 -050093 if (asyncResp)
94 {
95 messages::internalError(asyncResp->res);
96 }
Andrew Geissler86adcd62019-04-18 10:58:05 -050097 cleanUp();
98 return;
99 }
100 // Ensure we only got one service back
101 if (objInfo.size() != 1)
102 {
103 BMCWEB_LOG_ERROR << "Invalid Object Size "
104 << objInfo.size();
Andrew Geissler0554c982019-04-23 14:40:12 -0500105 if (asyncResp)
106 {
107 messages::internalError(asyncResp->res);
108 }
Andrew Geissler86adcd62019-04-18 10:58:05 -0500109 cleanUp();
110 return;
111 }
112 // cancel timer only when
113 // xyz.openbmc_project.Software.Activation interface
114 // is added
115 fwAvailableTimer = nullptr;
116
117 activateImage(objPath.str, objInfo[0].first);
Andrew Geissler0554c982019-04-23 14:40:12 -0500118 if (asyncResp)
119 {
120 redfish::messages::success(asyncResp->res);
121 }
Andrew Geissler86adcd62019-04-18 10:58:05 -0500122 fwUpdateInProgress = false;
123 },
124 "xyz.openbmc_project.ObjectMapper",
125 "/xyz/openbmc_project/object_mapper",
126 "xyz.openbmc_project.ObjectMapper", "GetObject", objPath.str,
127 std::array<const char *, 1>{
128 "xyz.openbmc_project.Software.Activation"});
129 }
130 }
131}
132
Andrew Geissler0554c982019-04-23 14:40:12 -0500133// Note that asyncResp can be either a valid pointer or nullptr. If nullptr
134// then no asyncResp updates will occur
Andrew Geissler86adcd62019-04-18 10:58:05 -0500135static void monitorForSoftwareAvailable(std::shared_ptr<AsyncResp> asyncResp,
Andrew Geissler0554c982019-04-23 14:40:12 -0500136 const crow::Request &req,
137 int timeoutTimeSeconds = 5)
Andrew Geissler86adcd62019-04-18 10:58:05 -0500138{
139 // Only allow one FW update at a time
140 if (fwUpdateInProgress != false)
141 {
Andrew Geissler0554c982019-04-23 14:40:12 -0500142 if (asyncResp)
143 {
144 asyncResp->res.addHeader("Retry-After", "30");
145 messages::serviceTemporarilyUnavailable(asyncResp->res, "30");
146 }
Andrew Geissler86adcd62019-04-18 10:58:05 -0500147 return;
148 }
149
Andrew Geissler0554c982019-04-23 14:40:12 -0500150 fwAvailableTimer =
151 std::make_unique<boost::asio::deadline_timer>(*req.ioService);
Andrew Geissler86adcd62019-04-18 10:58:05 -0500152
Andrew Geissler0554c982019-04-23 14:40:12 -0500153 fwAvailableTimer->expires_from_now(
154 boost::posix_time::seconds(timeoutTimeSeconds));
Andrew Geissler86adcd62019-04-18 10:58:05 -0500155
156 fwAvailableTimer->async_wait(
157 [asyncResp](const boost::system::error_code &ec) {
158 cleanUp();
159 if (ec == boost::asio::error::operation_aborted)
160 {
161 // expected, we were canceled before the timer completed.
162 return;
163 }
164 BMCWEB_LOG_ERROR
165 << "Timed out waiting for firmware object being created";
166 BMCWEB_LOG_ERROR
167 << "FW image may has already been uploaded to server";
168 if (ec)
169 {
170 BMCWEB_LOG_ERROR << "Async_wait failed" << ec;
171 return;
172 }
Andrew Geissler0554c982019-04-23 14:40:12 -0500173 if (asyncResp)
174 {
175 redfish::messages::internalError(asyncResp->res);
176 }
Andrew Geissler86adcd62019-04-18 10:58:05 -0500177 });
178
179 auto callback = [asyncResp](sdbusplus::message::message &m) {
180 BMCWEB_LOG_DEBUG << "Match fired";
181 softwareInterfaceAdded(asyncResp, m);
182 };
183
184 fwUpdateInProgress = true;
185
186 fwUpdateMatcher = std::make_unique<sdbusplus::bus::match::match>(
187 *crow::connections::systemBus,
188 "interface='org.freedesktop.DBus.ObjectManager',type='signal',"
189 "member='InterfacesAdded',path='/xyz/openbmc_project/software'",
190 callback);
191}
Jennifer Lee729dae72018-04-24 15:59:34 -0700192
Andrew Geissler0554c982019-04-23 14:40:12 -0500193/**
194 * UpdateServiceActionsSimpleUpdate class supports handle POST method for
195 * SimpleUpdate action.
196 */
197class UpdateServiceActionsSimpleUpdate : public Node
198{
199 public:
200 UpdateServiceActionsSimpleUpdate(CrowApp &app) :
201 Node(app,
202 "/redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate/")
203 {
204 entityPrivileges = {
205 {boost::beast::http::verb::get, {{"Login"}}},
206 {boost::beast::http::verb::head, {{"Login"}}},
207 {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
208 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
209 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
210 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
211 }
212
213 private:
214 void doPost(crow::Response &res, const crow::Request &req,
215 const std::vector<std::string> &params) override
216 {
217 std::optional<std::string> transferProtocol;
218 std::string imageURI;
219 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
220
221 BMCWEB_LOG_DEBUG << "Enter UpdateService.SimpleUpdate doPost";
222
223 // User can pass in both TransferProtocol and ImageURI parameters or
224 // they can pass in just the ImageURI with the transfer protocl embedded
225 // within it.
226 // 1) TransferProtocol:TFTP ImageURI:1.1.1.1/myfile.bin
227 // 2) ImageURI:tftp://1.1.1.1/myfile.bin
228
229 if (!json_util::readJson(req, asyncResp->res, "TransferProtocol",
230 transferProtocol, "ImageURI", imageURI))
231 {
232 BMCWEB_LOG_DEBUG
233 << "Missing TransferProtocol or ImageURI parameter";
234 return;
235 }
236 if (!transferProtocol)
237 {
238 // Must be option 2
239 // Verify ImageURI has transfer protocol in it
240 size_t separator = imageURI.find(":");
241 if ((separator == std::string::npos) ||
242 ((separator + 1) > imageURI.size()))
243 {
244 messages::actionParameterValueTypeError(
245 asyncResp->res, imageURI, "ImageURI",
246 "UpdateService.SimpleUpdate");
247 BMCWEB_LOG_ERROR << "ImageURI missing transfer protocol: "
248 << imageURI;
249 return;
250 }
251 transferProtocol = imageURI.substr(0, separator);
252 // Ensure protocol is upper case for a common comparison path below
253 boost::to_upper(*transferProtocol);
254 BMCWEB_LOG_DEBUG << "Encoded transfer protocol "
255 << *transferProtocol;
256
257 // Adjust imageURI to not have the protocol on it for parsing
258 // below
259 // ex. tftp://1.1.1.1/myfile.bin -> 1.1.1.1/myfile.bin
260 imageURI = imageURI.substr(separator + 3);
261 BMCWEB_LOG_DEBUG << "Adjusted imageUri " << imageURI;
262 }
263
264 // OpenBMC currently only supports TFTP
265 if (*transferProtocol != "TFTP")
266 {
267 messages::actionParameterNotSupported(asyncResp->res,
268 "TransferProtocol",
269 "UpdateService.SimpleUpdate");
270 BMCWEB_LOG_ERROR << "Request incorrect protocol parameter: "
271 << *transferProtocol;
272 return;
273 }
274
275 // Format should be <IP or Hostname>/<file> for imageURI
276 size_t separator = imageURI.find("/");
277 if ((separator == std::string::npos) ||
278 ((separator + 1) > imageURI.size()))
279 {
280 messages::actionParameterValueTypeError(
281 asyncResp->res, imageURI, "ImageURI",
282 "UpdateService.SimpleUpdate");
283 BMCWEB_LOG_ERROR << "Invalid ImageURI: " << imageURI;
284 return;
285 }
286
287 std::string tftpServer = imageURI.substr(0, separator);
288 std::string fwFile = imageURI.substr(separator + 1);
289 BMCWEB_LOG_DEBUG << "Server: " << tftpServer + " File: " << fwFile;
290
291 // Setup callback for when new software detected
292 // Give TFTP 2 minutes to complete
293 monitorForSoftwareAvailable(nullptr, req, 120);
294
295 // TFTP can take up to 2 minutes depending on image size and
296 // connection speed. Return to caller as soon as the TFTP operation
297 // has been started. The callback above will ensure the activate
298 // is started once the download has completed
299 redfish::messages::success(asyncResp->res);
300
301 // Call TFTP service
302 crow::connections::systemBus->async_method_call(
303 [](const boost::system::error_code ec) {
304 if (ec)
305 {
306 // messages::internalError(asyncResp->res);
307 cleanUp();
308 BMCWEB_LOG_DEBUG << "error_code = " << ec;
309 BMCWEB_LOG_DEBUG << "error msg = " << ec.message();
310 }
311 else
312 {
313 BMCWEB_LOG_DEBUG << "Call to DownloaViaTFTP Success";
314 }
315 },
316 "xyz.openbmc_project.Software.Download",
317 "/xyz/openbmc_project/software", "xyz.openbmc_project.Common.TFTP",
318 "DownloadViaTFTP", fwFile, tftpServer);
319
320 BMCWEB_LOG_DEBUG << "Exit UpdateService.SimpleUpdate doPost";
321 }
322};
323
Ed Tanous1abe55e2018-09-05 08:30:59 -0700324class UpdateService : public Node
325{
326 public:
327 UpdateService(CrowApp &app) : Node(app, "/redfish/v1/UpdateService/")
328 {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700329 entityPrivileges = {
330 {boost::beast::http::verb::get, {{"Login"}}},
331 {boost::beast::http::verb::head, {{"Login"}}},
332 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
333 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
334 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
335 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Jennifer Leeacb7cfb2018-06-07 16:08:15 -0700336 }
Jennifer Leeacb7cfb2018-06-07 16:08:15 -0700337
Ed Tanous1abe55e2018-09-05 08:30:59 -0700338 private:
339 void doGet(crow::Response &res, const crow::Request &req,
340 const std::vector<std::string> &params) override
341 {
Ed Tanous0f74e642018-11-12 15:17:05 -0800342 res.jsonValue["@odata.type"] = "#UpdateService.v1_2_0.UpdateService";
343 res.jsonValue["@odata.id"] = "/redfish/v1/UpdateService";
344 res.jsonValue["@odata.context"] =
345 "/redfish/v1/$metadata#UpdateService.UpdateService";
346 res.jsonValue["Id"] = "UpdateService";
347 res.jsonValue["Description"] = "Service for Software Update";
348 res.jsonValue["Name"] = "Update Service";
349 res.jsonValue["HttpPushUri"] = "/redfish/v1/UpdateService";
350 // UpdateService cannot be disabled
351 res.jsonValue["ServiceEnabled"] = true;
352 res.jsonValue["FirmwareInventory"] = {
353 {"@odata.id", "/redfish/v1/UpdateService/FirmwareInventory"}};
Andrew Geissler0554c982019-04-23 14:40:12 -0500354#ifdef BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE
355 // Update Actions object.
356 nlohmann::json &updateSvcSimpleUpdate =
357 res.jsonValue["Actions"]["#UpdateService.SimpleUpdate"];
358 updateSvcSimpleUpdate["target"] =
359 "/redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate";
360 updateSvcSimpleUpdate["TransferProtocol@Redfish.AllowableValues"] = {
361 "TFTP"};
362#endif
Jennifer Leeacb7cfb2018-06-07 16:08:15 -0700363 res.end();
Ed Tanous1abe55e2018-09-05 08:30:59 -0700364 }
Andrew Geissler0e7de462019-03-04 19:11:54 -0600365
Jayashankar Padathfa1a5a32019-05-28 23:54:37 +0530366 void doPatch(crow::Response &res, const crow::Request &req,
367 const std::vector<std::string> &params) override
368 {
369 BMCWEB_LOG_DEBUG << "doPatch...";
370
371 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
372 std::string applyTime;
373
374 if (!json_util::readJson(req, res, "ApplyTime", applyTime))
375 {
376 return;
377 }
378
379 if ((applyTime == "Immediate") || (applyTime == "OnReset"))
380 {
381 std::string applyTimeNewVal;
382 if (applyTime == "Immediate")
383 {
384 applyTimeNewVal = "xyz.openbmc_project.Software.ApplyTime."
385 "RequestedApplyTimes.Immediate";
386 }
387 else
388 {
389 applyTimeNewVal = "xyz.openbmc_project.Software.ApplyTime."
390 "RequestedApplyTimes.OnReset";
391 }
392
393 // Set the requested image apply time value
394 crow::connections::systemBus->async_method_call(
395 [asyncResp](const boost::system::error_code ec) {
396 if (ec)
397 {
398 BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
399 messages::internalError(asyncResp->res);
400 return;
401 }
402 messages::success(asyncResp->res);
403 },
404 "xyz.openbmc_project.Settings",
405 "/xyz/openbmc_project/software/apply_time",
406 "org.freedesktop.DBus.Properties", "Set",
407 "xyz.openbmc_project.Software.ApplyTime", "RequestedApplyTime",
408 std::variant<std::string>{applyTimeNewVal});
409 }
410 else
411 {
412 BMCWEB_LOG_INFO << "ApplyTime value is not in the list of "
413 "acceptable values";
414 messages::propertyValueNotInList(asyncResp->res, applyTime,
415 "ApplyTime");
416 }
417 }
418
Ed Tanous1abe55e2018-09-05 08:30:59 -0700419 void doPost(crow::Response &res, const crow::Request &req,
420 const std::vector<std::string> &params) override
421 {
422 BMCWEB_LOG_DEBUG << "doPost...";
Jennifer Leeacb7cfb2018-06-07 16:08:15 -0700423
Andrew Geissler0e7de462019-03-04 19:11:54 -0600424 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700425
Andrew Geissler86adcd62019-04-18 10:58:05 -0500426 // Setup callback for when new software detected
427 monitorForSoftwareAvailable(asyncResp, req);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700428
429 std::string filepath(
430 "/tmp/images/" +
431 boost::uuids::to_string(boost::uuids::random_generator()()));
432 BMCWEB_LOG_DEBUG << "Writing file to " << filepath;
433 std::ofstream out(filepath, std::ofstream::out | std::ofstream::binary |
434 std::ofstream::trunc);
435 out << req.body;
436 out.close();
437 BMCWEB_LOG_DEBUG << "file upload complete!!";
438 }
Jennifer Lee729dae72018-04-24 15:59:34 -0700439};
Ed Tanousc711bf82018-07-30 16:31:33 -0700440
Ed Tanous1abe55e2018-09-05 08:30:59 -0700441class SoftwareInventoryCollection : public Node
442{
443 public:
444 template <typename CrowApp>
445 SoftwareInventoryCollection(CrowApp &app) :
446 Node(app, "/redfish/v1/UpdateService/FirmwareInventory/")
447 {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700448 entityPrivileges = {
449 {boost::beast::http::verb::get, {{"Login"}}},
450 {boost::beast::http::verb::head, {{"Login"}}},
451 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
452 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
453 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
454 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Jennifer Lee729dae72018-04-24 15:59:34 -0700455 }
Jennifer Lee729dae72018-04-24 15:59:34 -0700456
Ed Tanous1abe55e2018-09-05 08:30:59 -0700457 private:
458 void doGet(crow::Response &res, const crow::Request &req,
459 const std::vector<std::string> &params) override
460 {
461 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous0f74e642018-11-12 15:17:05 -0800462 res.jsonValue["@odata.type"] =
463 "#SoftwareInventoryCollection.SoftwareInventoryCollection";
464 res.jsonValue["@odata.id"] =
465 "/redfish/v1/UpdateService/FirmwareInventory";
466 res.jsonValue["@odata.context"] =
467 "/redfish/v1/"
468 "$metadata#SoftwareInventoryCollection.SoftwareInventoryCollection";
469 res.jsonValue["Name"] = "Software Inventory Collection";
Ed Tanousc711bf82018-07-30 16:31:33 -0700470
Ed Tanous1abe55e2018-09-05 08:30:59 -0700471 crow::connections::systemBus->async_method_call(
472 [asyncResp](
473 const boost::system::error_code ec,
474 const std::vector<std::pair<
475 std::string, std::vector<std::pair<
476 std::string, std::vector<std::string>>>>>
477 &subtree) {
478 if (ec)
479 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700480 messages::internalError(asyncResp->res);
Ed Tanousc711bf82018-07-30 16:31:33 -0700481 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700482 }
483 asyncResp->res.jsonValue["Members"] = nlohmann::json::array();
484 asyncResp->res.jsonValue["Members@odata.count"] = 0;
Jennifer Lee6c4eb9d2018-05-22 10:58:31 -0700485
Ed Tanous1abe55e2018-09-05 08:30:59 -0700486 for (auto &obj : subtree)
487 {
488 const std::vector<
489 std::pair<std::string, std::vector<std::string>>>
490 &connections = obj.second;
491
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700492 // if can't parse fw id then return
Ed Tanous27826b52018-10-29 11:40:58 -0700493 std::size_t idPos;
494 if ((idPos = obj.first.rfind("/")) == std::string::npos)
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700495 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700496 messages::internalError(asyncResp->res);
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700497 BMCWEB_LOG_DEBUG << "Can't parse firmware ID!!";
498 return;
499 }
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700500 std::string swId = obj.first.substr(idPos + 1);
501
Ed Tanous1abe55e2018-09-05 08:30:59 -0700502 for (auto &conn : connections)
503 {
504 const std::string &connectionName = conn.first;
505 BMCWEB_LOG_DEBUG << "connectionName = "
506 << connectionName;
507 BMCWEB_LOG_DEBUG << "obj.first = " << obj.first;
508
509 crow::connections::systemBus->async_method_call(
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700510 [asyncResp,
511 swId](const boost::system::error_code error_code,
512 const VariantType &activation) {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700513 BMCWEB_LOG_DEBUG
514 << "safe returned in lambda function";
515 if (error_code)
516 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700517 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700518 return;
519 }
520
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700521 const std::string *swActivationStatus =
Ed Tanousabf2add2019-01-22 16:40:12 -0800522 std::get_if<std::string>(&activation);
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700523 if (swActivationStatus == nullptr)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700524 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700525 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700526 return;
527 }
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700528 if (swActivationStatus != nullptr &&
529 *swActivationStatus !=
530 "xyz.openbmc_project.Software."
531 "Activation."
532 "Activations.Active")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700533 {
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700534 // The activation status of this software is
535 // not currently active, so does not need to
536 // be listed in the response
Ed Tanous1abe55e2018-09-05 08:30:59 -0700537 return;
538 }
539 nlohmann::json &members =
540 asyncResp->res.jsonValue["Members"];
541 members.push_back(
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700542 {{"@odata.id", "/redfish/v1/UpdateService/"
543 "FirmwareInventory/" +
544 swId}});
Ed Tanous1abe55e2018-09-05 08:30:59 -0700545 asyncResp->res
546 .jsonValue["Members@odata.count"] =
547 members.size();
548 },
549 connectionName, obj.first,
550 "org.freedesktop.DBus.Properties", "Get",
551 "xyz.openbmc_project.Software.Activation",
552 "Activation");
Ed Tanousc711bf82018-07-30 16:31:33 -0700553 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700554 }
555 },
556 "xyz.openbmc_project.ObjectMapper",
557 "/xyz/openbmc_project/object_mapper",
558 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
559 "/xyz/openbmc_project/software", int32_t(1),
560 std::array<const char *, 1>{
561 "xyz.openbmc_project.Software.Version"});
562 }
Jennifer Lee729dae72018-04-24 15:59:34 -0700563};
564
Ed Tanous1abe55e2018-09-05 08:30:59 -0700565class SoftwareInventory : public Node
566{
567 public:
568 template <typename CrowApp>
569 SoftwareInventory(CrowApp &app) :
570 Node(app, "/redfish/v1/UpdateService/FirmwareInventory/<str>/",
571 std::string())
572 {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700573 entityPrivileges = {
574 {boost::beast::http::verb::get, {{"Login"}}},
575 {boost::beast::http::verb::head, {{"Login"}}},
576 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
577 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
578 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
579 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
580 }
581
582 private:
Andrew Geissler87d84722019-02-28 14:28:39 -0600583 /* Fill related item links (i.e. bmc, bios) in for inventory */
584 static void getRelatedItems(std::shared_ptr<AsyncResp> aResp,
585 const std::string &purpose)
586 {
587 if (purpose == fw_util::bmcPurpose)
588 {
589 nlohmann::json &members = aResp->res.jsonValue["RelatedItem"];
590 members.push_back({{"@odata.id", "/redfish/v1/Managers/bmc"}});
591 aResp->res.jsonValue["Members@odata.count"] = members.size();
592 }
593 else if (purpose == fw_util::biosPurpose)
594 {
595 // TODO(geissonator) Need BIOS schema support added for this
596 // to be valid
597 // nlohmann::json &members = aResp->res.jsonValue["RelatedItem"];
598 // members.push_back(
599 // {{"@odata.id", "/redfish/v1/Systems/system/BIOS"}});
600 // aResp->res.jsonValue["Members@odata.count"] = members.size();
601 }
602 else
603 {
604 BMCWEB_LOG_ERROR << "Unknown software purpose " << purpose;
605 }
606 }
607
Ed Tanous1abe55e2018-09-05 08:30:59 -0700608 void doGet(crow::Response &res, const crow::Request &req,
609 const std::vector<std::string> &params) override
610 {
611 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous0f74e642018-11-12 15:17:05 -0800612 res.jsonValue["@odata.type"] =
613 "#SoftwareInventory.v1_1_0.SoftwareInventory";
614 res.jsonValue["@odata.context"] =
615 "/redfish/v1/$metadata#SoftwareInventory.SoftwareInventory";
616 res.jsonValue["Name"] = "Software Inventory";
617 res.jsonValue["Updateable"] = false;
618 res.jsonValue["Status"]["Health"] = "OK";
619 res.jsonValue["Status"]["HealthRollup"] = "OK";
620 res.jsonValue["Status"]["State"] = "Enabled";
Ed Tanous1abe55e2018-09-05 08:30:59 -0700621
622 if (params.size() != 1)
623 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700624 messages::internalError(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700625 res.end();
626 return;
627 }
628
Ed Tanous3ae837c2018-08-07 14:41:19 -0700629 std::shared_ptr<std::string> swId =
Ed Tanous1abe55e2018-09-05 08:30:59 -0700630 std::make_shared<std::string>(params[0]);
631
632 res.jsonValue["@odata.id"] =
Ed Tanous3ae837c2018-08-07 14:41:19 -0700633 "/redfish/v1/UpdateService/FirmwareInventory/" + *swId;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700634
635 crow::connections::systemBus->async_method_call(
Ed Tanous3ae837c2018-08-07 14:41:19 -0700636 [asyncResp, swId](
Ed Tanous1abe55e2018-09-05 08:30:59 -0700637 const boost::system::error_code ec,
638 const std::vector<std::pair<
639 std::string, std::vector<std::pair<
640 std::string, std::vector<std::string>>>>>
641 &subtree) {
642 BMCWEB_LOG_DEBUG << "doGet callback...";
643 if (ec)
644 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700645 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700646 return;
647 }
648
649 for (const std::pair<
650 std::string,
651 std::vector<
652 std::pair<std::string, std::vector<std::string>>>>
653 &obj : subtree)
654 {
Ed Tanous3ae837c2018-08-07 14:41:19 -0700655 if (boost::ends_with(obj.first, *swId) != true)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700656 {
657 continue;
658 }
659
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700660 if (obj.second.size() < 1)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700661 {
662 continue;
663 }
664
665 crow::connections::systemBus->async_method_call(
666 [asyncResp,
Ed Tanous3ae837c2018-08-07 14:41:19 -0700667 swId](const boost::system::error_code error_code,
668 const boost::container::flat_map<
669 std::string, VariantType> &propertiesList) {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700670 if (error_code)
671 {
Jason M. Billsf12894f2018-10-09 12:45:45 -0700672 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700673 return;
674 }
675 boost::container::flat_map<
676 std::string, VariantType>::const_iterator it =
677 propertiesList.find("Purpose");
678 if (it == propertiesList.end())
679 {
680 BMCWEB_LOG_DEBUG
681 << "Can't find property \"Purpose\"!";
Jason M. Billsf12894f2018-10-09 12:45:45 -0700682 messages::propertyMissing(asyncResp->res,
683 "Purpose");
Ed Tanous1abe55e2018-09-05 08:30:59 -0700684 return;
685 }
Ed Tanous3ae837c2018-08-07 14:41:19 -0700686 const std::string *swInvPurpose =
Ed Tanousabf2add2019-01-22 16:40:12 -0800687 std::get_if<std::string>(&it->second);
Ed Tanous3ae837c2018-08-07 14:41:19 -0700688 if (swInvPurpose == nullptr)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700689 {
690 BMCWEB_LOG_DEBUG
691 << "wrong types for property\"Purpose\"!";
Jason M. Billsf12894f2018-10-09 12:45:45 -0700692 messages::propertyValueTypeError(asyncResp->res,
693 "", "Purpose");
Ed Tanous1abe55e2018-09-05 08:30:59 -0700694 return;
695 }
696
Ed Tanous3ae837c2018-08-07 14:41:19 -0700697 BMCWEB_LOG_DEBUG << "swInvPurpose = "
698 << *swInvPurpose;
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700699 it = propertiesList.find("Version");
700 if (it == propertiesList.end())
Ed Tanous1abe55e2018-09-05 08:30:59 -0700701 {
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700702 BMCWEB_LOG_DEBUG
703 << "Can't find property \"Version\"!";
Jason M. Billsf12894f2018-10-09 12:45:45 -0700704 messages::propertyMissing(asyncResp->res,
705 "Version");
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700706 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700707 }
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700708
709 BMCWEB_LOG_DEBUG << "Version found!";
710
711 const std::string *version =
Ed Tanousabf2add2019-01-22 16:40:12 -0800712 std::get_if<std::string>(&it->second);
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700713
714 if (version == nullptr)
715 {
716 BMCWEB_LOG_DEBUG
717 << "Can't find property \"Version\"!";
Jason M. Billsf12894f2018-10-09 12:45:45 -0700718
719 messages::propertyValueTypeError(asyncResp->res,
720 "", "Version");
Jennifer Leef4b65ab2018-09-18 12:00:13 -0700721 return;
722 }
723 asyncResp->res.jsonValue["Version"] = *version;
724 asyncResp->res.jsonValue["Id"] = *swId;
Andrew Geissler54daabe2019-02-13 13:54:15 -0600725
726 // swInvPurpose is of format:
727 // xyz.openbmc_project.Software.Version.VersionPurpose.ABC
728 // Translate this to "ABC update"
729 size_t endDesc = swInvPurpose->rfind(".");
730 if (endDesc == std::string::npos)
731 {
732 messages::internalError(asyncResp->res);
733 return;
734 }
735 endDesc++;
736 if (endDesc >= swInvPurpose->size())
737 {
738 messages::internalError(asyncResp->res);
739 return;
740 }
741
742 std::string formatDesc =
743 swInvPurpose->substr(endDesc);
744 asyncResp->res.jsonValue["Description"] =
745 formatDesc + " update";
Andrew Geissler87d84722019-02-28 14:28:39 -0600746 getRelatedItems(asyncResp, *swInvPurpose);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700747 },
748 obj.second[0].first, obj.first,
749 "org.freedesktop.DBus.Properties", "GetAll",
750 "xyz.openbmc_project.Software.Version");
751 }
752 },
753 "xyz.openbmc_project.ObjectMapper",
754 "/xyz/openbmc_project/object_mapper",
755 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
756 "/xyz/openbmc_project/software", int32_t(1),
757 std::array<const char *, 1>{
758 "xyz.openbmc_project.Software.Version"});
759 }
760};
761
762} // namespace redfish