1 /* 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 "bmcweb_config.h" 19 20 #include "app.hpp" 21 #include "dbus_utility.hpp" 22 #include "error_messages.hpp" 23 #include "generated/enums/update_service.hpp" 24 #include "multipart_parser.hpp" 25 #include "ossl_random.hpp" 26 #include "query.hpp" 27 #include "registries/privilege_registry.hpp" 28 #include "task.hpp" 29 #include "task_messages.hpp" 30 #include "utils/collection.hpp" 31 #include "utils/dbus_utils.hpp" 32 #include "utils/json_utils.hpp" 33 #include "utils/sw_utils.hpp" 34 35 #include <sys/mman.h> 36 37 #include <boost/system/error_code.hpp> 38 #include <boost/url/format.hpp> 39 #include <sdbusplus/asio/property.hpp> 40 #include <sdbusplus/bus/match.hpp> 41 #include <sdbusplus/unpack_properties.hpp> 42 43 #include <array> 44 #include <cstddef> 45 #include <filesystem> 46 #include <functional> 47 #include <iterator> 48 #include <memory> 49 #include <optional> 50 #include <string> 51 #include <string_view> 52 #include <unordered_map> 53 #include <vector> 54 55 namespace redfish 56 { 57 58 // Match signals added on software path 59 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 60 static std::unique_ptr<sdbusplus::bus::match_t> fwUpdateMatcher; 61 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 62 static std::unique_ptr<sdbusplus::bus::match_t> fwUpdateErrorMatcher; 63 // Only allow one update at a time 64 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 65 static bool fwUpdateInProgress = false; 66 // Timer for software available 67 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 68 static std::unique_ptr<boost::asio::steady_timer> fwAvailableTimer; 69 70 struct MemoryFileDescriptor 71 { 72 int fd = -1; 73 74 explicit MemoryFileDescriptor(const std::string& filename) : 75 fd(memfd_create(filename.c_str(), 0)) 76 {} 77 78 MemoryFileDescriptor(const MemoryFileDescriptor&) = default; 79 MemoryFileDescriptor(MemoryFileDescriptor&& other) noexcept : fd(other.fd) 80 { 81 other.fd = -1; 82 } 83 MemoryFileDescriptor& operator=(const MemoryFileDescriptor&) = delete; 84 MemoryFileDescriptor& operator=(MemoryFileDescriptor&&) = default; 85 86 ~MemoryFileDescriptor() 87 { 88 if (fd != -1) 89 { 90 close(fd); 91 } 92 } 93 94 bool rewind() const 95 { 96 if (lseek(fd, 0, SEEK_SET) == -1) 97 { 98 BMCWEB_LOG_ERROR("Failed to seek to beginning of image memfd"); 99 return false; 100 } 101 return true; 102 } 103 }; 104 105 inline void cleanUp() 106 { 107 fwUpdateInProgress = false; 108 fwUpdateMatcher = nullptr; 109 fwUpdateErrorMatcher = nullptr; 110 } 111 112 inline void activateImage(const std::string& objPath, 113 const std::string& service) 114 { 115 BMCWEB_LOG_DEBUG("Activate image for {} {}", objPath, service); 116 sdbusplus::asio::setProperty( 117 *crow::connections::systemBus, service, objPath, 118 "xyz.openbmc_project.Software.Activation", "RequestedActivation", 119 "xyz.openbmc_project.Software.Activation.RequestedActivations.Active", 120 [](const boost::system::error_code& ec) { 121 if (ec) 122 { 123 BMCWEB_LOG_DEBUG("error_code = {}", ec); 124 BMCWEB_LOG_DEBUG("error msg = {}", ec.message()); 125 } 126 }); 127 } 128 129 inline bool handleCreateTask(const boost::system::error_code& ec2, 130 sdbusplus::message_t& msg, 131 const std::shared_ptr<task::TaskData>& taskData) 132 { 133 if (ec2) 134 { 135 return task::completed; 136 } 137 138 std::string iface; 139 dbus::utility::DBusPropertiesMap values; 140 141 std::string index = std::to_string(taskData->index); 142 msg.read(iface, values); 143 144 if (iface == "xyz.openbmc_project.Software.Activation") 145 { 146 const std::string* state = nullptr; 147 for (const auto& property : values) 148 { 149 if (property.first == "Activation") 150 { 151 state = std::get_if<std::string>(&property.second); 152 if (state == nullptr) 153 { 154 taskData->messages.emplace_back(messages::internalError()); 155 return task::completed; 156 } 157 } 158 } 159 160 if (state == nullptr) 161 { 162 return !task::completed; 163 } 164 165 if (state->ends_with("Invalid") || state->ends_with("Failed")) 166 { 167 taskData->state = "Exception"; 168 taskData->status = "Warning"; 169 taskData->messages.emplace_back(messages::taskAborted(index)); 170 return task::completed; 171 } 172 173 if (state->ends_with("Staged")) 174 { 175 taskData->state = "Stopping"; 176 taskData->messages.emplace_back(messages::taskPaused(index)); 177 178 // its staged, set a long timer to 179 // allow them time to complete the 180 // update (probably cycle the 181 // system) if this expires then 182 // task will be canceled 183 taskData->extendTimer(std::chrono::hours(5)); 184 return !task::completed; 185 } 186 187 if (state->ends_with("Active")) 188 { 189 taskData->messages.emplace_back(messages::taskCompletedOK(index)); 190 taskData->state = "Completed"; 191 return task::completed; 192 } 193 } 194 else if (iface == "xyz.openbmc_project.Software.ActivationProgress") 195 { 196 const uint8_t* progress = nullptr; 197 for (const auto& property : values) 198 { 199 if (property.first == "Progress") 200 { 201 progress = std::get_if<uint8_t>(&property.second); 202 if (progress == nullptr) 203 { 204 taskData->messages.emplace_back(messages::internalError()); 205 return task::completed; 206 } 207 } 208 } 209 210 if (progress == nullptr) 211 { 212 return !task::completed; 213 } 214 taskData->percentComplete = *progress; 215 taskData->messages.emplace_back( 216 messages::taskProgressChanged(index, *progress)); 217 218 // if we're getting status updates it's 219 // still alive, update timer 220 taskData->extendTimer(std::chrono::minutes(5)); 221 } 222 223 // as firmware update often results in a 224 // reboot, the task may never "complete" 225 // unless it is an error 226 227 return !task::completed; 228 } 229 230 inline void createTask(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 231 task::Payload&& payload, 232 const sdbusplus::message::object_path& objPath) 233 { 234 std::shared_ptr<task::TaskData> task = task::TaskData::createTask( 235 std::bind_front(handleCreateTask), 236 "type='signal',interface='org.freedesktop.DBus.Properties'," 237 "member='PropertiesChanged',path='" + 238 objPath.str + "'"); 239 task->startTimer(std::chrono::minutes(5)); 240 task->populateResp(asyncResp->res); 241 task->payload.emplace(std::move(payload)); 242 } 243 244 // Note that asyncResp can be either a valid pointer or nullptr. If nullptr 245 // then no asyncResp updates will occur 246 static void 247 softwareInterfaceAdded(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 248 sdbusplus::message_t& m, task::Payload&& payload) 249 { 250 dbus::utility::DBusInterfacesMap interfacesProperties; 251 252 sdbusplus::message::object_path objPath; 253 254 m.read(objPath, interfacesProperties); 255 256 BMCWEB_LOG_DEBUG("obj path = {}", objPath.str); 257 for (const auto& interface : interfacesProperties) 258 { 259 BMCWEB_LOG_DEBUG("interface = {}", interface.first); 260 261 if (interface.first == "xyz.openbmc_project.Software.Activation") 262 { 263 // Retrieve service and activate 264 constexpr std::array<std::string_view, 1> interfaces = { 265 "xyz.openbmc_project.Software.Activation"}; 266 dbus::utility::getDbusObject( 267 objPath.str, interfaces, 268 [objPath, asyncResp, payload(std::move(payload))]( 269 const boost::system::error_code& ec, 270 const std::vector< 271 std::pair<std::string, std::vector<std::string>>>& 272 objInfo) mutable { 273 if (ec) 274 { 275 BMCWEB_LOG_DEBUG("error_code = {}", ec); 276 BMCWEB_LOG_DEBUG("error msg = {}", ec.message()); 277 if (asyncResp) 278 { 279 messages::internalError(asyncResp->res); 280 } 281 cleanUp(); 282 return; 283 } 284 // Ensure we only got one service back 285 if (objInfo.size() != 1) 286 { 287 BMCWEB_LOG_ERROR("Invalid Object Size {}", objInfo.size()); 288 if (asyncResp) 289 { 290 messages::internalError(asyncResp->res); 291 } 292 cleanUp(); 293 return; 294 } 295 // cancel timer only when 296 // xyz.openbmc_project.Software.Activation interface 297 // is added 298 fwAvailableTimer = nullptr; 299 300 activateImage(objPath.str, objInfo[0].first); 301 if (asyncResp) 302 { 303 createTask(asyncResp, std::move(payload), objPath); 304 } 305 fwUpdateInProgress = false; 306 }); 307 308 break; 309 } 310 } 311 } 312 313 inline void afterAvailbleTimerAsyncWait( 314 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 315 const boost::system::error_code& ec) 316 { 317 cleanUp(); 318 if (ec == boost::asio::error::operation_aborted) 319 { 320 // expected, we were canceled before the timer completed. 321 return; 322 } 323 BMCWEB_LOG_ERROR("Timed out waiting for firmware object being created"); 324 BMCWEB_LOG_ERROR("FW image may has already been uploaded to server"); 325 if (ec) 326 { 327 BMCWEB_LOG_ERROR("Async_wait failed{}", ec); 328 return; 329 } 330 if (asyncResp) 331 { 332 redfish::messages::internalError(asyncResp->res); 333 } 334 } 335 336 inline void 337 handleUpdateErrorType(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 338 const std::string& url, const std::string& type) 339 { 340 if (type == "xyz.openbmc_project.Software.Image.Error.UnTarFailure") 341 { 342 redfish::messages::invalidUpload(asyncResp->res, url, 343 "Invalid archive"); 344 } 345 else if (type == 346 "xyz.openbmc_project.Software.Image.Error.ManifestFileFailure") 347 { 348 redfish::messages::invalidUpload(asyncResp->res, url, 349 "Invalid manifest"); 350 } 351 else if (type == "xyz.openbmc_project.Software.Image.Error.ImageFailure") 352 { 353 redfish::messages::invalidUpload(asyncResp->res, url, 354 "Invalid image format"); 355 } 356 else if (type == "xyz.openbmc_project.Software.Version.Error.AlreadyExists") 357 { 358 redfish::messages::invalidUpload(asyncResp->res, url, 359 "Image version already exists"); 360 361 redfish::messages::resourceAlreadyExists( 362 asyncResp->res, "UpdateService", "Version", "uploaded version"); 363 } 364 else if (type == "xyz.openbmc_project.Software.Image.Error.BusyFailure") 365 { 366 redfish::messages::resourceExhaustion(asyncResp->res, url); 367 } 368 else if (type == "xyz.openbmc_project.Software.Version.Error.Incompatible") 369 { 370 redfish::messages::invalidUpload(asyncResp->res, url, 371 "Incompatible image version"); 372 } 373 else if (type == 374 "xyz.openbmc_project.Software.Version.Error.ExpiredAccessKey") 375 { 376 redfish::messages::invalidUpload(asyncResp->res, url, 377 "Update Access Key Expired"); 378 } 379 else if (type == 380 "xyz.openbmc_project.Software.Version.Error.InvalidSignature") 381 { 382 redfish::messages::invalidUpload(asyncResp->res, url, 383 "Invalid image signature"); 384 } 385 else if (type == 386 "xyz.openbmc_project.Software.Image.Error.InternalFailure" || 387 type == "xyz.openbmc_project.Software.Version.Error.HostFile") 388 { 389 BMCWEB_LOG_ERROR("Software Image Error type={}", type); 390 redfish::messages::internalError(asyncResp->res); 391 } 392 else 393 { 394 // Unrelated error types. Ignored 395 BMCWEB_LOG_INFO("Non-Software-related Error type={}. Ignored", type); 396 return; 397 } 398 // Clear the timer 399 fwAvailableTimer = nullptr; 400 } 401 402 inline void 403 afterUpdateErrorMatcher(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 404 const std::string& url, sdbusplus::message_t& m) 405 { 406 dbus::utility::DBusInterfacesMap interfacesProperties; 407 sdbusplus::message::object_path objPath; 408 m.read(objPath, interfacesProperties); 409 BMCWEB_LOG_DEBUG("obj path = {}", objPath.str); 410 for (const std::pair<std::string, dbus::utility::DBusPropertiesMap>& 411 interface : interfacesProperties) 412 { 413 if (interface.first == "xyz.openbmc_project.Logging.Entry") 414 { 415 for (const std::pair<std::string, dbus::utility::DbusVariantType>& 416 value : interface.second) 417 { 418 if (value.first != "Message") 419 { 420 continue; 421 } 422 const std::string* type = 423 std::get_if<std::string>(&value.second); 424 if (type == nullptr) 425 { 426 // if this was our message, timeout will cover it 427 return; 428 } 429 handleUpdateErrorType(asyncResp, url, *type); 430 } 431 } 432 } 433 } 434 435 // Note that asyncResp can be either a valid pointer or nullptr. If nullptr 436 // then no asyncResp updates will occur 437 inline void monitorForSoftwareAvailable( 438 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 439 const crow::Request& req, const std::string& url, 440 int timeoutTimeSeconds = 25) 441 { 442 // Only allow one FW update at a time 443 if (fwUpdateInProgress) 444 { 445 if (asyncResp) 446 { 447 messages::serviceTemporarilyUnavailable(asyncResp->res, "30"); 448 } 449 return; 450 } 451 452 if (req.ioService == nullptr) 453 { 454 messages::internalError(asyncResp->res); 455 return; 456 } 457 458 fwAvailableTimer = 459 std::make_unique<boost::asio::steady_timer>(*req.ioService); 460 461 fwAvailableTimer->expires_after(std::chrono::seconds(timeoutTimeSeconds)); 462 463 fwAvailableTimer->async_wait( 464 std::bind_front(afterAvailbleTimerAsyncWait, asyncResp)); 465 466 task::Payload payload(req); 467 auto callback = [asyncResp, payload](sdbusplus::message_t& m) mutable { 468 BMCWEB_LOG_DEBUG("Match fired"); 469 softwareInterfaceAdded(asyncResp, m, std::move(payload)); 470 }; 471 472 fwUpdateInProgress = true; 473 474 fwUpdateMatcher = std::make_unique<sdbusplus::bus::match_t>( 475 *crow::connections::systemBus, 476 "interface='org.freedesktop.DBus.ObjectManager',type='signal'," 477 "member='InterfacesAdded',path='/xyz/openbmc_project/software'", 478 callback); 479 480 fwUpdateErrorMatcher = std::make_unique<sdbusplus::bus::match_t>( 481 *crow::connections::systemBus, 482 "interface='org.freedesktop.DBus.ObjectManager',type='signal'," 483 "member='InterfacesAdded'," 484 "path='/xyz/openbmc_project/logging'", 485 std::bind_front(afterUpdateErrorMatcher, asyncResp, url)); 486 } 487 488 inline std::optional<boost::urls::url> 489 parseSimpleUpdateUrl(std::string imageURI, 490 std::optional<std::string> transferProtocol, 491 crow::Response& res) 492 { 493 if (imageURI.find("://") == std::string::npos) 494 { 495 if (imageURI.starts_with("/")) 496 { 497 messages::actionParameterValueTypeError( 498 res, imageURI, "ImageURI", "UpdateService.SimpleUpdate"); 499 return std::nullopt; 500 } 501 if (!transferProtocol) 502 { 503 messages::actionParameterValueTypeError( 504 res, imageURI, "ImageURI", "UpdateService.SimpleUpdate"); 505 return std::nullopt; 506 } 507 // OpenBMC currently only supports TFTP or HTTPS 508 if (*transferProtocol == "TFTP") 509 { 510 imageURI = "tftp://" + imageURI; 511 } 512 else if (*transferProtocol == "HTTPS") 513 { 514 imageURI = "https://" + imageURI; 515 } 516 else 517 { 518 messages::actionParameterNotSupported(res, "TransferProtocol", 519 *transferProtocol); 520 BMCWEB_LOG_ERROR("Request incorrect protocol parameter: {}", 521 *transferProtocol); 522 return std::nullopt; 523 } 524 } 525 526 boost::system::result<boost::urls::url> url = 527 boost::urls::parse_absolute_uri(imageURI); 528 if (!url) 529 { 530 messages::actionParameterValueTypeError(res, imageURI, "ImageURI", 531 "UpdateService.SimpleUpdate"); 532 533 return std::nullopt; 534 } 535 url->normalize(); 536 537 if (url->scheme() == "tftp") 538 { 539 if (url->encoded_path().size() < 2) 540 { 541 messages::actionParameterNotSupported(res, "ImageURI", 542 url->buffer()); 543 return std::nullopt; 544 } 545 } 546 else if (url->scheme() == "https") 547 { 548 // Empty paths default to "/" 549 if (url->encoded_path().empty()) 550 { 551 url->set_encoded_path("/"); 552 } 553 } 554 else 555 { 556 messages::actionParameterNotSupported(res, "ImageURI", imageURI); 557 return std::nullopt; 558 } 559 560 if (url->encoded_path().empty()) 561 { 562 messages::actionParameterValueTypeError(res, imageURI, "ImageURI", 563 "UpdateService.SimpleUpdate"); 564 return std::nullopt; 565 } 566 567 return *url; 568 } 569 570 inline void doHttpsUpdate(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 571 const boost::urls::url_view_base& url) 572 { 573 messages::actionParameterNotSupported(asyncResp->res, "ImageURI", 574 url.buffer()); 575 } 576 577 inline void doTftpUpdate(const crow::Request& req, 578 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 579 const boost::urls::url_view_base& url) 580 { 581 if (!BMCWEB_INSECURE_TFTP_UPDATE) 582 { 583 messages::actionParameterNotSupported(asyncResp->res, "ImageURI", 584 url.buffer()); 585 return; 586 } 587 588 std::string path(url.encoded_path()); 589 if (path.size() < 2) 590 { 591 messages::actionParameterNotSupported(asyncResp->res, "ImageURI", 592 url.buffer()); 593 return; 594 } 595 // TFTP expects a path without a / 596 path.erase(0, 1); 597 std::string host(url.encoded_host_and_port()); 598 BMCWEB_LOG_DEBUG("Server: {} File: {}", host, path); 599 600 // Setup callback for when new software detected 601 // Give TFTP 10 minutes to complete 602 monitorForSoftwareAvailable( 603 asyncResp, req, 604 "/redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate", 600); 605 606 // TFTP can take up to 10 minutes depending on image size and 607 // connection speed. Return to caller as soon as the TFTP operation 608 // has been started. The callback above will ensure the activate 609 // is started once the download has completed 610 redfish::messages::success(asyncResp->res); 611 612 // Call TFTP service 613 crow::connections::systemBus->async_method_call( 614 [](const boost::system::error_code& ec) { 615 if (ec) 616 { 617 // messages::internalError(asyncResp->res); 618 cleanUp(); 619 BMCWEB_LOG_DEBUG("error_code = {}", ec); 620 BMCWEB_LOG_DEBUG("error msg = {}", ec.message()); 621 } 622 else 623 { 624 BMCWEB_LOG_DEBUG("Call to DownloaViaTFTP Success"); 625 } 626 }, 627 "xyz.openbmc_project.Software.Download", 628 "/xyz/openbmc_project/software", "xyz.openbmc_project.Common.TFTP", 629 "DownloadViaTFTP", path, host); 630 } 631 632 inline void handleUpdateServiceSimpleUpdateAction( 633 crow::App& app, const crow::Request& req, 634 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) 635 { 636 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 637 { 638 return; 639 } 640 641 std::optional<std::string> transferProtocol; 642 std::string imageURI; 643 644 BMCWEB_LOG_DEBUG("Enter UpdateService.SimpleUpdate doPost"); 645 646 // User can pass in both TransferProtocol and ImageURI parameters or 647 // they can pass in just the ImageURI with the transfer protocol 648 // embedded within it. 649 // 1) TransferProtocol:TFTP ImageURI:1.1.1.1/myfile.bin 650 // 2) ImageURI:tftp://1.1.1.1/myfile.bin 651 652 if (!json_util::readJsonAction(req, asyncResp->res, "TransferProtocol", 653 transferProtocol, "ImageURI", imageURI)) 654 { 655 BMCWEB_LOG_DEBUG("Missing TransferProtocol or ImageURI parameter"); 656 return; 657 } 658 659 std::optional<boost::urls::url> url = 660 parseSimpleUpdateUrl(imageURI, transferProtocol, asyncResp->res); 661 if (!url) 662 { 663 return; 664 } 665 if (url->scheme() == "tftp") 666 { 667 doTftpUpdate(req, asyncResp, *url); 668 } 669 else if (url->scheme() == "https") 670 { 671 doHttpsUpdate(asyncResp, *url); 672 } 673 else 674 { 675 messages::actionParameterNotSupported(asyncResp->res, "ImageURI", 676 url->buffer()); 677 return; 678 } 679 680 BMCWEB_LOG_DEBUG("Exit UpdateService.SimpleUpdate doPost"); 681 } 682 683 inline void uploadImageFile(crow::Response& res, std::string_view body) 684 { 685 std::filesystem::path filepath("/tmp/images/" + bmcweb::getRandomUUID()); 686 687 BMCWEB_LOG_DEBUG("Writing file to {}", filepath.string()); 688 std::ofstream out(filepath, std::ofstream::out | std::ofstream::binary | 689 std::ofstream::trunc); 690 // set the permission of the file to 640 691 std::filesystem::perms permission = std::filesystem::perms::owner_read | 692 std::filesystem::perms::group_read; 693 std::filesystem::permissions(filepath, permission); 694 out << body; 695 696 if (out.bad()) 697 { 698 messages::internalError(res); 699 cleanUp(); 700 } 701 } 702 703 // Convert the Request Apply Time to the D-Bus value 704 inline bool convertApplyTime(crow::Response& res, const std::string& applyTime, 705 std::string& applyTimeNewVal) 706 { 707 if (applyTime == "Immediate") 708 { 709 applyTimeNewVal = 710 "xyz.openbmc_project.Software.ApplyTime.RequestedApplyTimes.Immediate"; 711 } 712 else if (applyTime == "OnReset") 713 { 714 applyTimeNewVal = 715 "xyz.openbmc_project.Software.ApplyTime.RequestedApplyTimes.OnReset"; 716 } 717 else 718 { 719 BMCWEB_LOG_WARNING( 720 "ApplyTime value {} is not in the list of acceptable values", 721 applyTime); 722 messages::propertyValueNotInList(res, applyTime, "ApplyTime"); 723 return false; 724 } 725 return true; 726 } 727 728 inline void setApplyTime(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 729 const std::string& applyTime) 730 { 731 std::string applyTimeNewVal; 732 if (!convertApplyTime(asyncResp->res, applyTime, applyTimeNewVal)) 733 { 734 return; 735 } 736 737 setDbusProperty(asyncResp, "ApplyTime", "xyz.openbmc_project.Settings", 738 sdbusplus::message::object_path( 739 "/xyz/openbmc_project/software/apply_time"), 740 "xyz.openbmc_project.Software.ApplyTime", 741 "RequestedApplyTime", applyTimeNewVal); 742 } 743 744 struct MultiPartUpdateParameters 745 { 746 std::optional<std::string> applyTime; 747 std::string uploadData; 748 std::vector<std::string> targets; 749 }; 750 751 inline std::optional<std::string> 752 processUrl(boost::system::result<boost::urls::url_view>& url) 753 { 754 if (!url) 755 { 756 return std::nullopt; 757 } 758 if (crow::utility::readUrlSegments(*url, "redfish", "v1", "Managers", 759 BMCWEB_REDFISH_MANAGER_URI_NAME)) 760 { 761 return std::make_optional(std::string(BMCWEB_REDFISH_MANAGER_URI_NAME)); 762 } 763 if constexpr (!BMCWEB_REDFISH_UPDATESERVICE_USE_DBUS) 764 { 765 return std::nullopt; 766 } 767 std::string firmwareId; 768 if (!crow::utility::readUrlSegments(*url, "redfish", "v1", "UpdateService", 769 "FirmwareInventory", 770 std::ref(firmwareId))) 771 { 772 return std::nullopt; 773 } 774 775 return std::make_optional(firmwareId); 776 } 777 778 inline std::optional<MultiPartUpdateParameters> 779 extractMultipartUpdateParameters( 780 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 781 MultipartParser parser) 782 { 783 MultiPartUpdateParameters multiRet; 784 for (FormPart& formpart : parser.mime_fields) 785 { 786 boost::beast::http::fields::const_iterator it = 787 formpart.fields.find("Content-Disposition"); 788 if (it == formpart.fields.end()) 789 { 790 BMCWEB_LOG_ERROR("Couldn't find Content-Disposition"); 791 return std::nullopt; 792 } 793 BMCWEB_LOG_INFO("Parsing value {}", it->value()); 794 795 // The construction parameters of param_list must start with `;` 796 size_t index = it->value().find(';'); 797 if (index == std::string::npos) 798 { 799 continue; 800 } 801 802 for (const auto& param : 803 boost::beast::http::param_list{it->value().substr(index)}) 804 { 805 if (param.first != "name" || param.second.empty()) 806 { 807 continue; 808 } 809 810 if (param.second == "UpdateParameters") 811 { 812 std::vector<std::string> tempTargets; 813 nlohmann::json content = nlohmann::json::parse(formpart.content, 814 nullptr, false); 815 if (content.is_discarded()) 816 { 817 return std::nullopt; 818 } 819 nlohmann::json::object_t* obj = 820 content.get_ptr<nlohmann::json::object_t*>(); 821 if (obj == nullptr) 822 { 823 messages::propertyValueTypeError( 824 asyncResp->res, formpart.content, "UpdateParameters"); 825 return std::nullopt; 826 } 827 828 if (!json_util::readJsonObject( 829 *obj, asyncResp->res, "Targets", tempTargets, 830 "@Redfish.OperationApplyTime", multiRet.applyTime)) 831 { 832 return std::nullopt; 833 } 834 835 for (size_t urlIndex = 0; urlIndex < tempTargets.size(); 836 urlIndex++) 837 { 838 const std::string& target = tempTargets[urlIndex]; 839 boost::system::result<boost::urls::url_view> url = 840 boost::urls::parse_origin_form(target); 841 auto res = processUrl(url); 842 if (!res.has_value()) 843 { 844 messages::propertyValueFormatError( 845 asyncResp->res, target, 846 std::format("Targets/{}", urlIndex)); 847 return std::nullopt; 848 } 849 multiRet.targets.emplace_back(res.value()); 850 } 851 if (multiRet.targets.size() != 1) 852 { 853 messages::propertyValueFormatError( 854 asyncResp->res, multiRet.targets, "Targets"); 855 return std::nullopt; 856 } 857 } 858 else if (param.second == "UpdateFile") 859 { 860 multiRet.uploadData = std::move(formpart.content); 861 } 862 } 863 } 864 865 if (multiRet.uploadData.empty()) 866 { 867 BMCWEB_LOG_ERROR("Upload data is NULL"); 868 messages::propertyMissing(asyncResp->res, "UpdateFile"); 869 return std::nullopt; 870 } 871 if (multiRet.targets.empty()) 872 { 873 messages::propertyMissing(asyncResp->res, "Targets"); 874 return std::nullopt; 875 } 876 return multiRet; 877 } 878 879 inline void 880 handleStartUpdate(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 881 task::Payload payload, const std::string& objectPath, 882 const boost::system::error_code& ec, 883 const sdbusplus::message::object_path& retPath) 884 { 885 if (ec) 886 { 887 BMCWEB_LOG_ERROR("error_code = {}", ec); 888 BMCWEB_LOG_ERROR("error msg = {}", ec.message()); 889 messages::internalError(asyncResp->res); 890 return; 891 } 892 893 BMCWEB_LOG_INFO("Call to StartUpdate Success, retPath = {}", retPath.str); 894 createTask(asyncResp, std::move(payload), objectPath); 895 } 896 897 inline void startUpdate(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 898 task::Payload payload, 899 const MemoryFileDescriptor& memfd, 900 const std::string& applyTime, 901 const std::string& objectPath, 902 const std::string& serviceName) 903 { 904 crow::connections::systemBus->async_method_call( 905 [asyncResp, payload = std::move(payload), 906 objectPath](const boost::system::error_code& ec1, 907 const sdbusplus::message::object_path& retPath) mutable { 908 handleStartUpdate(asyncResp, std::move(payload), objectPath, ec1, 909 retPath); 910 }, 911 serviceName, objectPath, "xyz.openbmc_project.Software.Update", 912 "StartUpdate", sdbusplus::message::unix_fd(memfd.fd), applyTime); 913 } 914 915 inline void getAssociatedUpdateInterface( 916 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, 917 const MemoryFileDescriptor& memfd, const std::string& applyTime, 918 const boost::system::error_code& ec, 919 const dbus::utility::MapperGetSubTreeResponse& subtree) 920 { 921 if (ec) 922 { 923 BMCWEB_LOG_ERROR("error_code = {}", ec); 924 BMCWEB_LOG_ERROR("error msg = {}", ec.message()); 925 messages::internalError(asyncResp->res); 926 return; 927 } 928 BMCWEB_LOG_DEBUG("Found {} startUpdate subtree paths", subtree.size()); 929 930 if (subtree.size() > 1) 931 { 932 BMCWEB_LOG_ERROR("Found more than one startUpdate subtree paths"); 933 messages::internalError(asyncResp->res); 934 return; 935 } 936 937 auto objectPath = subtree[0].first; 938 auto serviceName = subtree[0].second[0].first; 939 940 BMCWEB_LOG_DEBUG("Found objectPath {} serviceName {}", objectPath, 941 serviceName); 942 startUpdate(asyncResp, std::move(payload), memfd, applyTime, objectPath, 943 serviceName); 944 } 945 946 inline void 947 getSwInfo(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 948 task::Payload payload, MemoryFileDescriptor memfd, 949 const std::string& applyTime, const std::string& target, 950 const boost::system::error_code& ec, 951 const dbus::utility::MapperGetSubTreePathsResponse& subtree) 952 { 953 using SwInfoMap = 954 std::unordered_map<std::string, sdbusplus::message::object_path>; 955 SwInfoMap swInfoMap; 956 957 if (ec) 958 { 959 BMCWEB_LOG_ERROR("error_code = {}", ec); 960 BMCWEB_LOG_ERROR("error msg = {}", ec.message()); 961 messages::internalError(asyncResp->res); 962 return; 963 } 964 BMCWEB_LOG_DEBUG("Found {} software version paths", subtree.size()); 965 966 for (const auto& objectPath : subtree) 967 { 968 sdbusplus::message::object_path path(objectPath); 969 std::string swId = path.filename(); 970 swInfoMap.emplace(swId, path); 971 } 972 973 auto swEntry = swInfoMap.find(target); 974 if (swEntry == swInfoMap.end()) 975 { 976 BMCWEB_LOG_WARNING("No valid DBus path for Target URI {}", target); 977 messages::propertyValueFormatError(asyncResp->res, target, "Targets"); 978 return; 979 } 980 981 BMCWEB_LOG_DEBUG("Found software version path {}", swEntry->second.str); 982 983 sdbusplus::message::object_path swObjectPath = swEntry->second / 984 "software_version"; 985 constexpr std::array<std::string_view, 1> interfaces = { 986 "xyz.openbmc_project.Software.Update"}; 987 dbus::utility::getAssociatedSubTree( 988 swObjectPath, 989 sdbusplus::message::object_path("/xyz/openbmc_project/software"), 0, 990 interfaces, 991 [asyncResp, payload = std::move(payload), memfd = std::move(memfd), 992 applyTime]( 993 const boost::system::error_code& ec1, 994 const dbus::utility::MapperGetSubTreeResponse& subtree1) mutable { 995 getAssociatedUpdateInterface(asyncResp, std::move(payload), memfd, 996 applyTime, ec1, subtree1); 997 }); 998 } 999 1000 inline void 1001 processUpdateRequest(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1002 task::Payload&& payload, std::string_view body, 1003 const std::string& applyTime, 1004 std::vector<std::string>& targets) 1005 { 1006 MemoryFileDescriptor memfd("update-image"); 1007 if (memfd.fd == -1) 1008 { 1009 BMCWEB_LOG_ERROR("Failed to create image memfd"); 1010 messages::internalError(asyncResp->res); 1011 return; 1012 } 1013 if (write(memfd.fd, body.data(), body.length()) != 1014 static_cast<ssize_t>(body.length())) 1015 { 1016 BMCWEB_LOG_ERROR("Failed to write to image memfd"); 1017 messages::internalError(asyncResp->res); 1018 return; 1019 } 1020 if (!memfd.rewind()) 1021 { 1022 messages::internalError(asyncResp->res); 1023 return; 1024 } 1025 1026 if (!targets.empty() && targets[0] == BMCWEB_REDFISH_MANAGER_URI_NAME) 1027 { 1028 startUpdate(asyncResp, std::move(payload), memfd, applyTime, 1029 "/xyz/openbmc_project/software/bmc", 1030 "xyz.openbmc_project.Software.Manager"); 1031 } 1032 else 1033 { 1034 constexpr std::array<std::string_view, 1> interfaces = { 1035 "xyz.openbmc_project.Software.Version"}; 1036 dbus::utility::getSubTreePaths( 1037 "/xyz/openbmc_project/software", 1, interfaces, 1038 [asyncResp, payload = std::move(payload), memfd = std::move(memfd), 1039 applyTime, 1040 targets](const boost::system::error_code& ec, 1041 const dbus::utility::MapperGetSubTreePathsResponse& 1042 subtree) mutable { 1043 getSwInfo(asyncResp, std::move(payload), std::move(memfd), 1044 applyTime, targets[0], ec, subtree); 1045 }); 1046 } 1047 } 1048 1049 inline void 1050 updateMultipartContext(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1051 const crow::Request& req, MultipartParser&& parser) 1052 { 1053 std::optional<MultiPartUpdateParameters> multipart = 1054 extractMultipartUpdateParameters(asyncResp, std::move(parser)); 1055 if (!multipart) 1056 { 1057 return; 1058 } 1059 if (!multipart->applyTime) 1060 { 1061 multipart->applyTime = "OnReset"; 1062 } 1063 1064 if constexpr (BMCWEB_REDFISH_UPDATESERVICE_USE_DBUS) 1065 { 1066 std::string applyTimeNewVal; 1067 if (!convertApplyTime(asyncResp->res, *multipart->applyTime, 1068 applyTimeNewVal)) 1069 { 1070 return; 1071 } 1072 task::Payload payload(req); 1073 1074 processUpdateRequest(asyncResp, std::move(payload), 1075 multipart->uploadData, applyTimeNewVal, 1076 multipart->targets); 1077 } 1078 else 1079 { 1080 setApplyTime(asyncResp, *multipart->applyTime); 1081 1082 // Setup callback for when new software detected 1083 monitorForSoftwareAvailable(asyncResp, req, 1084 "/redfish/v1/UpdateService"); 1085 1086 uploadImageFile(asyncResp->res, multipart->uploadData); 1087 } 1088 } 1089 1090 inline void doHTTPUpdate(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1091 const crow::Request& req) 1092 { 1093 if constexpr (BMCWEB_REDFISH_UPDATESERVICE_USE_DBUS) 1094 { 1095 task::Payload payload(req); 1096 // HTTP push only supports BMC updates (with ApplyTime as immediate) for 1097 // backwards compatibility. Specific component updates will be handled 1098 // through Multipart form HTTP push. 1099 std::vector<std::string> targets; 1100 targets.emplace_back(BMCWEB_REDFISH_MANAGER_URI_NAME); 1101 1102 processUpdateRequest( 1103 asyncResp, std::move(payload), req.body(), 1104 "xyz.openbmc_project.Software.ApplyTime.RequestedApplyTimes.Immediate", 1105 targets); 1106 } 1107 else 1108 { 1109 // Setup callback for when new software detected 1110 monitorForSoftwareAvailable(asyncResp, req, 1111 "/redfish/v1/UpdateService"); 1112 1113 uploadImageFile(asyncResp->res, req.body()); 1114 } 1115 } 1116 1117 inline void 1118 handleUpdateServicePost(App& app, const crow::Request& req, 1119 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) 1120 { 1121 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 1122 { 1123 return; 1124 } 1125 std::string_view contentType = req.getHeaderValue("Content-Type"); 1126 1127 BMCWEB_LOG_DEBUG("doPost: contentType={}", contentType); 1128 1129 // Make sure that content type is application/octet-stream or 1130 // multipart/form-data 1131 if (bmcweb::asciiIEquals(contentType, "application/octet-stream")) 1132 { 1133 doHTTPUpdate(asyncResp, req); 1134 } 1135 else if (contentType.starts_with("multipart/form-data")) 1136 { 1137 MultipartParser parser; 1138 1139 ParserError ec = parser.parse(req); 1140 if (ec != ParserError::PARSER_SUCCESS) 1141 { 1142 // handle error 1143 BMCWEB_LOG_ERROR("MIME parse failed, ec : {}", 1144 static_cast<int>(ec)); 1145 messages::internalError(asyncResp->res); 1146 return; 1147 } 1148 1149 updateMultipartContext(asyncResp, req, std::move(parser)); 1150 } 1151 else 1152 { 1153 BMCWEB_LOG_DEBUG("Bad content type specified:{}", contentType); 1154 asyncResp->res.result(boost::beast::http::status::bad_request); 1155 } 1156 } 1157 1158 inline void 1159 handleUpdateServiceGet(App& app, const crow::Request& req, 1160 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) 1161 { 1162 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 1163 { 1164 return; 1165 } 1166 asyncResp->res.jsonValue["@odata.type"] = 1167 "#UpdateService.v1_11_1.UpdateService"; 1168 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/UpdateService"; 1169 asyncResp->res.jsonValue["Id"] = "UpdateService"; 1170 asyncResp->res.jsonValue["Description"] = "Service for Software Update"; 1171 asyncResp->res.jsonValue["Name"] = "Update Service"; 1172 1173 asyncResp->res.jsonValue["HttpPushUri"] = 1174 "/redfish/v1/UpdateService/update"; 1175 asyncResp->res.jsonValue["MultipartHttpPushUri"] = 1176 "/redfish/v1/UpdateService/update"; 1177 1178 // UpdateService cannot be disabled 1179 asyncResp->res.jsonValue["ServiceEnabled"] = true; 1180 asyncResp->res.jsonValue["FirmwareInventory"]["@odata.id"] = 1181 "/redfish/v1/UpdateService/FirmwareInventory"; 1182 // Get the MaxImageSizeBytes 1183 asyncResp->res.jsonValue["MaxImageSizeBytes"] = BMCWEB_HTTP_BODY_LIMIT * 1184 1024 * 1024; 1185 1186 // Update Actions object. 1187 nlohmann::json& updateSvcSimpleUpdate = 1188 asyncResp->res.jsonValue["Actions"]["#UpdateService.SimpleUpdate"]; 1189 updateSvcSimpleUpdate["target"] = 1190 "/redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate"; 1191 1192 nlohmann::json::array_t allowed; 1193 allowed.emplace_back(update_service::TransferProtocolType::HTTPS); 1194 1195 if constexpr (BMCWEB_INSECURE_PUSH_STYLE_NOTIFICATION) 1196 { 1197 allowed.emplace_back(update_service::TransferProtocolType::TFTP); 1198 } 1199 1200 updateSvcSimpleUpdate["TransferProtocol@Redfish.AllowableValues"] = 1201 std::move(allowed); 1202 1203 asyncResp->res.jsonValue["HttpPushUriOptions"]["HttpPushUriApplyTime"] 1204 ["ApplyTime"] = "Immediate"; 1205 } 1206 1207 inline void handleUpdateServiceFirmwareInventoryCollectionGet( 1208 App& app, const crow::Request& req, 1209 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) 1210 { 1211 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 1212 { 1213 return; 1214 } 1215 asyncResp->res.jsonValue["@odata.type"] = 1216 "#SoftwareInventoryCollection.SoftwareInventoryCollection"; 1217 asyncResp->res.jsonValue["@odata.id"] = 1218 "/redfish/v1/UpdateService/FirmwareInventory"; 1219 asyncResp->res.jsonValue["Name"] = "Software Inventory Collection"; 1220 const std::array<const std::string_view, 1> iface = { 1221 "xyz.openbmc_project.Software.Version"}; 1222 1223 redfish::collection_util::getCollectionMembers( 1224 asyncResp, 1225 boost::urls::url("/redfish/v1/UpdateService/FirmwareInventory"), iface, 1226 "/xyz/openbmc_project/software"); 1227 } 1228 1229 /* Fill related item links (i.e. bmc, bios) in for inventory */ 1230 inline void getRelatedItems(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1231 const std::string& purpose) 1232 { 1233 if (purpose == sw_util::bmcPurpose) 1234 { 1235 nlohmann::json& relatedItem = asyncResp->res.jsonValue["RelatedItem"]; 1236 nlohmann::json::object_t item; 1237 item["@odata.id"] = boost::urls::format( 1238 "/redfish/v1/Managers/{}", BMCWEB_REDFISH_MANAGER_URI_NAME); 1239 relatedItem.emplace_back(std::move(item)); 1240 asyncResp->res.jsonValue["RelatedItem@odata.count"] = 1241 relatedItem.size(); 1242 } 1243 else if (purpose == sw_util::biosPurpose) 1244 { 1245 nlohmann::json& relatedItem = asyncResp->res.jsonValue["RelatedItem"]; 1246 nlohmann::json::object_t item; 1247 item["@odata.id"] = std::format("/redfish/v1/Systems/{}/Bios", 1248 BMCWEB_REDFISH_SYSTEM_URI_NAME); 1249 relatedItem.emplace_back(std::move(item)); 1250 asyncResp->res.jsonValue["RelatedItem@odata.count"] = 1251 relatedItem.size(); 1252 } 1253 else 1254 { 1255 BMCWEB_LOG_DEBUG("Unknown software purpose {}", purpose); 1256 } 1257 } 1258 1259 inline void 1260 getSoftwareVersion(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1261 const std::string& service, const std::string& path, 1262 const std::string& swId) 1263 { 1264 sdbusplus::asio::getAllProperties( 1265 *crow::connections::systemBus, service, path, 1266 "xyz.openbmc_project.Software.Version", 1267 [asyncResp, 1268 swId](const boost::system::error_code& ec, 1269 const dbus::utility::DBusPropertiesMap& propertiesList) { 1270 if (ec) 1271 { 1272 messages::internalError(asyncResp->res); 1273 return; 1274 } 1275 1276 const std::string* swInvPurpose = nullptr; 1277 const std::string* version = nullptr; 1278 1279 const bool success = sdbusplus::unpackPropertiesNoThrow( 1280 dbus_utils::UnpackErrorPrinter(), propertiesList, "Purpose", 1281 swInvPurpose, "Version", version); 1282 1283 if (!success) 1284 { 1285 messages::internalError(asyncResp->res); 1286 return; 1287 } 1288 1289 if (swInvPurpose == nullptr) 1290 { 1291 BMCWEB_LOG_DEBUG("Can't find property \"Purpose\"!"); 1292 messages::internalError(asyncResp->res); 1293 return; 1294 } 1295 1296 BMCWEB_LOG_DEBUG("swInvPurpose = {}", *swInvPurpose); 1297 1298 if (version == nullptr) 1299 { 1300 BMCWEB_LOG_DEBUG("Can't find property \"Version\"!"); 1301 1302 messages::internalError(asyncResp->res); 1303 1304 return; 1305 } 1306 asyncResp->res.jsonValue["Version"] = *version; 1307 asyncResp->res.jsonValue["Id"] = swId; 1308 1309 // swInvPurpose is of format: 1310 // xyz.openbmc_project.Software.Version.VersionPurpose.ABC 1311 // Translate this to "ABC image" 1312 size_t endDesc = swInvPurpose->rfind('.'); 1313 if (endDesc == std::string::npos) 1314 { 1315 messages::internalError(asyncResp->res); 1316 return; 1317 } 1318 endDesc++; 1319 if (endDesc >= swInvPurpose->size()) 1320 { 1321 messages::internalError(asyncResp->res); 1322 return; 1323 } 1324 1325 std::string formatDesc = swInvPurpose->substr(endDesc); 1326 asyncResp->res.jsonValue["Description"] = formatDesc + " image"; 1327 getRelatedItems(asyncResp, *swInvPurpose); 1328 }); 1329 } 1330 1331 inline void handleUpdateServiceFirmwareInventoryGet( 1332 App& app, const crow::Request& req, 1333 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1334 const std::string& param) 1335 { 1336 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 1337 { 1338 return; 1339 } 1340 std::shared_ptr<std::string> swId = std::make_shared<std::string>(param); 1341 1342 asyncResp->res.jsonValue["@odata.id"] = boost::urls::format( 1343 "/redfish/v1/UpdateService/FirmwareInventory/{}", *swId); 1344 1345 constexpr std::array<std::string_view, 1> interfaces = { 1346 "xyz.openbmc_project.Software.Version"}; 1347 dbus::utility::getSubTree( 1348 "/", 0, interfaces, 1349 [asyncResp, 1350 swId](const boost::system::error_code& ec, 1351 const dbus::utility::MapperGetSubTreeResponse& subtree) { 1352 BMCWEB_LOG_DEBUG("doGet callback..."); 1353 if (ec) 1354 { 1355 messages::internalError(asyncResp->res); 1356 return; 1357 } 1358 1359 // Ensure we find our input swId, otherwise return an error 1360 bool found = false; 1361 for (const std::pair< 1362 std::string, 1363 std::vector<std::pair<std::string, std::vector<std::string>>>>& 1364 obj : subtree) 1365 { 1366 if (!obj.first.ends_with(*swId)) 1367 { 1368 continue; 1369 } 1370 1371 if (obj.second.empty()) 1372 { 1373 continue; 1374 } 1375 1376 found = true; 1377 sw_util::getSwStatus(asyncResp, swId, obj.second[0].first); 1378 getSoftwareVersion(asyncResp, obj.second[0].first, obj.first, 1379 *swId); 1380 } 1381 if (!found) 1382 { 1383 BMCWEB_LOG_WARNING("Input swID {} not found!", *swId); 1384 messages::resourceMissingAtURI( 1385 asyncResp->res, 1386 boost::urls::format( 1387 "/redfish/v1/UpdateService/FirmwareInventory/{}", *swId)); 1388 return; 1389 } 1390 asyncResp->res.jsonValue["@odata.type"] = 1391 "#SoftwareInventory.v1_1_0.SoftwareInventory"; 1392 asyncResp->res.jsonValue["Name"] = "Software Inventory"; 1393 asyncResp->res.jsonValue["Status"]["HealthRollup"] = "OK"; 1394 1395 asyncResp->res.jsonValue["Updateable"] = false; 1396 sw_util::getSwUpdatableStatus(asyncResp, swId); 1397 }); 1398 } 1399 1400 inline void requestRoutesUpdateService(App& app) 1401 { 1402 BMCWEB_ROUTE( 1403 app, "/redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate/") 1404 .privileges(redfish::privileges::postUpdateService) 1405 .methods(boost::beast::http::verb::post)(std::bind_front( 1406 handleUpdateServiceSimpleUpdateAction, std::ref(app))); 1407 1408 BMCWEB_ROUTE(app, "/redfish/v1/UpdateService/FirmwareInventory/<str>/") 1409 .privileges(redfish::privileges::getSoftwareInventory) 1410 .methods(boost::beast::http::verb::get)(std::bind_front( 1411 handleUpdateServiceFirmwareInventoryGet, std::ref(app))); 1412 1413 BMCWEB_ROUTE(app, "/redfish/v1/UpdateService/") 1414 .privileges(redfish::privileges::getUpdateService) 1415 .methods(boost::beast::http::verb::get)( 1416 std::bind_front(handleUpdateServiceGet, std::ref(app))); 1417 1418 BMCWEB_ROUTE(app, "/redfish/v1/UpdateService/update/") 1419 .privileges(redfish::privileges::postUpdateService) 1420 .methods(boost::beast::http::verb::post)( 1421 std::bind_front(handleUpdateServicePost, std::ref(app))); 1422 1423 BMCWEB_ROUTE(app, "/redfish/v1/UpdateService/FirmwareInventory/") 1424 .privileges(redfish::privileges::getSoftwareInventoryCollection) 1425 .methods(boost::beast::http::verb::get)(std::bind_front( 1426 handleUpdateServiceFirmwareInventoryCollectionGet, std::ref(app))); 1427 } 1428 1429 } // namespace redfish 1430