blob: ea8c43576dba60e0d8dd59083412d6da79eaa9bc [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{
31void initializeService(sdbusplus::bus::bus& bus)
32{
33 sdbusplus::server::manager::manager objManager(bus, SOFTWARE_OBJPATH);
34#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
62 // subcommandContext allows program subcommand callbacks to add loop event
63 // callbacks (e.g. reception of a dbus signal) and then return to main,
64 // without the loop event callback being destroyed until the loop event
65 // callback has a chance to run and instruct the loop to exit.
66 std::shared_ptr<void> subcommandContext;
67 static_cast<void>(
68 app.add_subcommand("process-host-firmware",
69 "Point the host firmware at its data.")
70 ->callback([&bus, &loop, &subcommandContext]() {
71 using namespace std::string_literals;
72 std::map<std::string, std::vector<std::string>> extensionMap{{
73 {"ibm,rainier-2u"s, {".RAINIER_2U_XML"s, ".P10"s}},
74 {"ibm,rainier-4u"s, {".RAINIER_4U_XML"s, ".P10"s}},
75 }};
76 auto hostFirmwareDirectory = "/media/hostfw/running"s;
77 auto logCallback = [](const auto& path, auto& ec) {
78 std::cerr << path << ": " << ec.message() << "\n";
79 };
80 subcommandContext =
81 functions::process_hostfirmware::processHostFirmware(
82 bus, std::move(extensionMap),
83 std::move(hostFirmwareDirectory),
84 std::move(logCallback), loop);
85 }));
86 CLI11_PARSE(app, argc, argv);
87
88 if (app.get_subcommands().size() == 0)
89 {
90 initializeService(bus);
91 }
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050092
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -050093 try
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050094 {
Brad Bishop0283f7c2020-11-09 10:09:26 -050095 auto rc = loop.loop();
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -050096 if (rc < 0)
97 {
98 log<level::ERR>("Error occurred during the sd_event_loop",
99 entry("RC=%d", rc));
100 return -1;
101 }
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500102 }
Gunnar Mills6bd6d7b2017-09-18 09:22:36 -0500103 catch (const std::system_error& e)
104 {
105 log<level::ERR>(e.what());
106 return -1;
107 }
108
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500109 return 0;
110}