blob: a774fd29325b9a66d6d4558c6624ae7fe6098854 [file] [log] [blame]
Gunnar Millsf6ed5892018-09-07 17:08:02 -05001#include "config.h"
2
Lei YUf3ce4332019-02-21 14:09:49 +08003#ifdef UBIFS_LAYOUT
4#include "ubi/item_updater_ubi.hpp"
Lei YUda6ab6c2019-02-22 14:21:22 +08005#include "ubi/watch.hpp"
Adriana Kobylak8bc2ab42020-07-15 09:16:27 -05006#elif defined MMC_LAYOUT
7#include "mmc/item_updater_mmc.hpp"
Lei YU322f3f42019-02-21 16:10:41 +08008#else
9#include "static/item_updater_static.hpp"
Lei YUf3ce4332019-02-21 14:09:49 +080010#endif
Brad Bishop099543e2020-11-09 15:37:58 -050011#include "functions.hpp"
Gunnar Millsf6ed5892018-09-07 17:08:02 -050012
Brad Bishop099543e2020-11-09 15:37:58 -050013#include <CLI/CLI.hpp>
Gunnar Millsf6ed5892018-09-07 17:08:02 -050014#include <phosphor-logging/log.hpp>
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050015#include <sdbusplus/bus.hpp>
16#include <sdbusplus/server/manager.hpp>
Brad Bishop0283f7c2020-11-09 10:09:26 -050017#include <sdeventplus/event.hpp>
Brad Bishop8facccf2020-11-04 09:44:58 -050018
Brad Bishop099543e2020-11-09 15:37:58 -050019#include <map>
20#include <memory>
21#include <string>
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -050022#include <system_error>
Brad Bishop099543e2020-11-09 15:37:58 -050023#include <vector>
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050024
Brad Bishop1ee90952020-11-09 11:57:32 -050025namespace openpower
26{
27namespace software
28{
29namespace updater
30{
Patrick Williams0dea1992022-07-22 19:26:52 -050031void initializeService(sdbusplus::bus_t& bus)
Brad Bishop1ee90952020-11-09 11:57:32 -050032{
Patrick Williams0dea1992022-07-22 19:26:52 -050033 static sdbusplus::server::manager_t objManager(bus, SOFTWARE_OBJPATH);
Brad Bishop1ee90952020-11-09 11:57:32 -050034#ifdef UBIFS_LAYOUT
35 static ItemUpdaterUbi updater(bus, SOFTWARE_OBJPATH);
36 static Watch watch(
37 bus.get_event(),
38 std::bind(std::mem_fn(&ItemUpdater::updateFunctionalAssociation),
39 &updater, std::placeholders::_1));
40#elif defined MMC_LAYOUT
41 static ItemUpdaterMMC updater(bus, SOFTWARE_OBJPATH);
42#else
43 static ItemUpdaterStatic updater(bus, SOFTWARE_OBJPATH);
44#endif
45 bus.request_name(BUSNAME_UPDATER);
46}
47} // namespace updater
48} // namespace software
49} // namespace openpower
50
Brad Bishop099543e2020-11-09 15:37:58 -050051int main(int argc, char* argv[])
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050052{
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -050053 using namespace openpower::software::updater;
54 using namespace phosphor::logging;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050055 auto bus = sdbusplus::bus::new_default();
Brad Bishop0283f7c2020-11-09 10:09:26 -050056 auto loop = sdeventplus::Event::get_default();
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -050057
Brad Bishop1ee90952020-11-09 11:57:32 -050058 bus.attach_event(loop.get(), SD_EVENT_PRIORITY_NORMAL);
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050059
Brad Bishop099543e2020-11-09 15:37:58 -050060 CLI::App app{"OpenPOWER host firmware manager"};
61
Adriana Kobylak53a27392021-06-14 17:42:40 +000062 using namespace std::string_literals;
63 std::map<std::string, std::vector<std::string>> extensionMap{{
Adriana Kobylak9b837f62023-02-23 15:44:09 -060064 {"ibm,bonnell"s, {".BONNELL_XML"s, ".P10"s}},
Adriana Kobylak53a27392021-06-14 17:42:40 +000065 {"ibm,everest"s, {".EVEREST_XML"s, ".P10"s}},
66 {"ibm,rainier-2u"s, {".RAINIER_2U_XML"s, ".P10"s}},
67 {"ibm,rainier-4u"s, {".RAINIER_4U_XML"s, ".P10"s}},
68 {"ibm,rainier-1s4u"s, {".RAINIER_4U_XML"s, ".P10"s}},
69 }};
70
Brad Bishop099543e2020-11-09 15:37:58 -050071 // subcommandContext allows program subcommand callbacks to add loop event
72 // callbacks (e.g. reception of a dbus signal) and then return to main,
73 // without the loop event callback being destroyed until the loop event
74 // callback has a chance to run and instruct the loop to exit.
Adriana Kobylak53a27392021-06-14 17:42:40 +000075 std::vector<std::shared_ptr<void>> subcommandContext;
Brad Bishop099543e2020-11-09 15:37:58 -050076 static_cast<void>(
77 app.add_subcommand("process-host-firmware",
78 "Point the host firmware at its data.")
Adriana Kobylak53a27392021-06-14 17:42:40 +000079 ->callback([&bus, &loop, &subcommandContext, extensionMap]() {
Brad Bishop099543e2020-11-09 15:37:58 -050080 auto hostFirmwareDirectory = "/media/hostfw/running"s;
81 auto logCallback = [](const auto& path, auto& ec) {
82 std::cerr << path << ": " << ec.message() << "\n";
83 };
Adriana Kobylak53a27392021-06-14 17:42:40 +000084 subcommandContext.push_back(
Brad Bishop099543e2020-11-09 15:37:58 -050085 functions::process_hostfirmware::processHostFirmware(
Adriana Kobylak53a27392021-06-14 17:42:40 +000086 bus, extensionMap, std::move(hostFirmwareDirectory),
87 std::move(logCallback), loop));
Brad Bishop099543e2020-11-09 15:37:58 -050088 }));
Adriana Kobylak53a27392021-06-14 17:42:40 +000089 static_cast<void>(
90 app.add_subcommand("update-bios-attr-table",
91 "Update the bios attribute table with the host "
92 "firmware data details.")
93 ->callback([&bus, &loop, &subcommandContext, extensionMap]() {
Adriana Kobylakae0998f2021-06-16 19:52:24 +000094 auto elementsJsonFilePath = "/usr/share/hostfw/elements.json"s;
Adriana Kobylakebf67bf2021-06-21 18:38:17 +000095 auto subcommands =
Adriana Kobylak53a27392021-06-14 17:42:40 +000096 functions::process_hostfirmware::updateBiosAttrTable(
Adriana Kobylakae0998f2021-06-16 19:52:24 +000097 bus, extensionMap, std::move(elementsJsonFilePath),
Adriana Kobylakebf67bf2021-06-21 18:38:17 +000098 loop);
99 for (const auto& subcommand : subcommands)
100 {
101 subcommandContext.push_back(subcommand);
102 }
Adriana Kobylak53a27392021-06-14 17:42:40 +0000103 }));
104
Brad Bishop099543e2020-11-09 15:37:58 -0500105 CLI11_PARSE(app, argc, argv);
106
107 if (app.get_subcommands().size() == 0)
108 {
109 initializeService(bus);
110 }
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500111
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -0500112 try
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500113 {
Brad Bishop0283f7c2020-11-09 10:09:26 -0500114 auto rc = loop.loop();
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -0500115 if (rc < 0)
116 {
117 log<level::ERR>("Error occurred during the sd_event_loop",
118 entry("RC=%d", rc));
119 return -1;
120 }
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500121 }
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -0500122 catch (const std::system_error& e)
123 {
124 log<level::ERR>(e.what());
125 return -1;
126 }
127
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500128 return 0;
129}