blob: 580aecfa2b6cdaec551a82b5e5c87a2eb56f854d [file] [log] [blame]
Gunnar Millsec1b41c2017-05-02 12:20:36 -05001#pragma once
2
3#include <sdbusplus/server.hpp>
4#include "activation.hpp"
Saqib Khan705f1bf2017-06-09 23:58:38 -05005#include "version.hpp"
Michael Tritz37a59042017-07-12 13:44:53 -05006#include <xyz/openbmc_project/Common/FactoryReset/server.hpp>
Michael Tritz0129d922017-08-10 19:33:46 -05007#include <xyz/openbmc_project/Control/FieldMode/server.hpp>
Gunnar Millsded875d2017-08-28 16:44:52 -05008#include "org/openbmc/Associations/server.hpp"
Michael Tritzbc1bf3a2017-09-18 16:38:23 -05009#include "xyz/openbmc_project/Collection/DeleteAll/server.hpp"
Gunnar Millsec1b41c2017-05-02 12:20:36 -050010
11namespace phosphor
12{
13namespace software
14{
15namespace updater
16{
17
Michael Tritz37a59042017-07-12 13:44:53 -050018using ItemUpdaterInherit = sdbusplus::server::object::object<
Michael Tritz0129d922017-08-10 19:33:46 -050019 sdbusplus::xyz::openbmc_project::Common::server::FactoryReset,
Gunnar Millsded875d2017-08-28 16:44:52 -050020 sdbusplus::xyz::openbmc_project::Control::server::FieldMode,
Michael Tritzbc1bf3a2017-09-18 16:38:23 -050021 sdbusplus::org::openbmc::server::Associations,
22 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
Michael Tritz37a59042017-07-12 13:44:53 -050023
Patrick Williamse75d10f2017-05-30 16:56:32 -050024namespace MatchRules = sdbusplus::bus::match::rules;
25
Gunnar Millsded875d2017-08-28 16:44:52 -050026using AssociationList =
27 std::vector<std::tuple<std::string, std::string, std::string>>;
28
Gunnar Millsec1b41c2017-05-02 12:20:36 -050029/** @class ItemUpdater
30 * @brief Manages the activation of the BMC version items.
31 */
Michael Tritz37a59042017-07-12 13:44:53 -050032class ItemUpdater : public ItemUpdaterInherit
Gunnar Millsec1b41c2017-05-02 12:20:36 -050033{
34 public:
Saqib Khan35e83f32017-05-22 11:37:32 -050035 /*
36 * @brief Types of Activation status for image validation.
37 */
38 enum class ActivationStatus
39 {
40 ready,
41 invalid,
42 active
43 };
44
Gunnar Millsec1b41c2017-05-02 12:20:36 -050045 /** @brief Constructs ItemUpdater
46 *
47 * @param[in] bus - The Dbus bus object
48 */
Michael Tritz37a59042017-07-12 13:44:53 -050049 ItemUpdater(sdbusplus::bus::bus& bus, const std::string& path) :
Michael Tritz0129d922017-08-10 19:33:46 -050050 ItemUpdaterInherit(bus, path.c_str(), false),
Gunnar Millsec1b41c2017-05-02 12:20:36 -050051 bus(bus),
52 versionMatch(
53 bus,
Patrick Williamse75d10f2017-05-30 16:56:32 -050054 MatchRules::interfacesAdded() +
55 MatchRules::path("/xyz/openbmc_project/software"),
56 std::bind(
57 std::mem_fn(&ItemUpdater::createActivation),
58 this,
59 std::placeholders::_1))
60 {
Gunnar Millsb60add12017-08-24 16:41:42 -050061 setBMCInventoryPath();
Saqib Khanba239882017-05-26 08:41:54 -050062 processBMCImage();
Michael Tritz0129d922017-08-10 19:33:46 -050063 restoreFieldModeStatus();
64 emit_object_added();
Patrick Williamse75d10f2017-05-30 16:56:32 -050065 };
Gunnar Millsec1b41c2017-05-02 12:20:36 -050066
Saqib Khan4c1aec02017-07-06 11:46:13 -050067 /** @brief Sets the given priority free by incrementing
68 * any existing priority with the same value by 1
69 *
70 * @param[in] value - The priority that needs to be set free.
Saqib Khanb9da6632017-09-13 09:48:37 -050071 * @param[in] versionId - The Id of the version for which we
72 * are trying to free up the priority.
Saqib Khan4c1aec02017-07-06 11:46:13 -050073 * @return None
74 */
Saqib Khanb9da6632017-09-13 09:48:37 -050075 void freePriority(uint8_t value, const std::string& versionId);
Saqib Khan4c1aec02017-07-06 11:46:13 -050076
Saqib Khanba239882017-05-26 08:41:54 -050077 /**
78 * @brief Create and populate the active BMC Version.
79 */
80 void processBMCImage();
81
Leonel Gonzalez3526ef72017-07-07 14:38:25 -050082 /**
83 * @brief Erase specified entry d-bus object
84 * if Action property is not set to Active
85 *
86 * @param[in] entryId - unique identifier of the entry
87 */
88 void erase(std::string entryId);
89
Michael Tritzbc1bf3a2017-09-18 16:38:23 -050090 /**
91 * @brief Deletes all versions except for the current one
92 */
93 void deleteAll();
Gunnar Millsded875d2017-08-28 16:44:52 -050094
95 /** @brief Creates an active association to the
96 * newly active software image
97 *
98 * @param[in] path - The path to create the association to.
99 */
Gunnar Millsf10b2322017-09-21 15:31:55 -0500100 void createActiveAssociation(const std::string& path);
Gunnar Millsded875d2017-08-28 16:44:52 -0500101
102 /** @brief Removes an active association to the software image
103 *
104 * @param[in] path - The path to remove the association from.
105 */
Gunnar Millsf10b2322017-09-21 15:31:55 -0500106 void removeActiveAssociation(const std::string& path);
Gunnar Millsded875d2017-08-28 16:44:52 -0500107
Saqib Khanb9da6632017-09-13 09:48:37 -0500108 /** @brief Determine if the given priority is the lowest
109 *
110 * @param[in] value - The priority that needs to be checked.
111 *
112 * @return boolean corresponding to whether the given
113 * priority is lowest.
114 */
115 bool isLowestPriority(uint8_t value);
116
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500117 private:
118 /** @brief Callback function for Software.Version match.
119 * @details Creates an Activation dbus object.
120 *
121 * @param[in] msg - Data associated with subscribed signal
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500122 */
Patrick Williamse75d10f2017-05-30 16:56:32 -0500123 void createActivation(sdbusplus::message::message& msg);
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500124
Saqib Khan35e83f32017-05-22 11:37:32 -0500125 /**
126 * @brief Validates the presence of SquashFS iamge in the image dir.
127 *
Saqib Khan19177d32017-06-20 08:11:49 -0500128 * @param[in] filePath - The path to the image dir.
Saqib Khan35e83f32017-05-22 11:37:32 -0500129 * @param[out] result - ActivationStatus Enum.
130 * ready if validation was successful.
131 * invalid if validation fail.
132 * active if image is the current version.
133 *
134 */
Saqib Khan19177d32017-06-20 08:11:49 -0500135 ActivationStatus validateSquashFSImage(const std::string& filePath);
Saqib Khan35e83f32017-05-22 11:37:32 -0500136
Michael Tritz37a59042017-07-12 13:44:53 -0500137 /** @brief BMC factory reset - marks the read-write partition for
138 * recreation upon reboot. */
139 void reset() override;
140
Michael Tritz0129d922017-08-10 19:33:46 -0500141 /**
142 * @brief Enables field mode, if value=true.
143 *
144 * @param[in] value - If true, enables field mode.
145 * @param[out] result - Returns the current state of field mode.
146 *
147 */
148 bool fieldModeEnabled(bool value) override;
149
Gunnar Millsb60add12017-08-24 16:41:42 -0500150 /** @brief Sets the BMC inventory item path under
151 * /xyz/openbmc_project/inventory/system/chassis/. */
152 void setBMCInventoryPath();
153
154 /** @brief The path to the BMC inventory item. */
155 std::string bmcInventoryPath;
156
Michael Tritz0129d922017-08-10 19:33:46 -0500157 /** @brief Restores field mode status on reboot. */
158 void restoreFieldModeStatus();
159
Gunnar Mills88e8a322017-09-13 11:09:28 -0500160 /** @brief Creates a functional association to the
161 * "running" BMC software image
162 *
163 * @param[in] path - The path to create the association to.
164 */
165 void createFunctionalAssociation(const std::string& path);
166
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500167 /** @brief Persistent sdbusplus DBus bus connection. */
168 sdbusplus::bus::bus& bus;
169
170 /** @brief Persistent map of Activation dbus objects and their
171 * version id */
172 std::map<std::string, std::unique_ptr<Activation>> activations;
173
Saqib Khan705f1bf2017-06-09 23:58:38 -0500174 /** @brief Persistent map of Version dbus objects and their
175 * version id */
176 std::map<std::string, std::unique_ptr<phosphor::software::
177 manager::Version>> versions;
178
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500179 /** @brief sdbusplus signal match for Software.Version */
Patrick Williamse75d10f2017-05-30 16:56:32 -0500180 sdbusplus::bus::match_t versionMatch;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500181
Gunnar Millsded875d2017-08-28 16:44:52 -0500182 /** @brief This entry's associations */
183 AssociationList assocs = {};
184
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500185 /** @brief Clears read only partition for
186 * given Activation dbus object.
187 *
188 * @param[in] versionId - The version id.
189 */
190 void removeReadOnlyPartition(std::string versionId);
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500191};
192
193
194
195} // namespace updater
196} // namespace software
197} // namespace phosphor