1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#pragma once
#include "item_updater.hpp"
namespace openpower
{
namespace software
{
namespace updater
{
class GardResetStatic : public GardReset
{
public:
using GardReset::GardReset;
virtual ~GardResetStatic() = default;
protected:
/**
* @brief GARD factory reset - clears the PNOR GARD partition.
*/
void reset() override;
};
/** @class ItemUpdaterStatic
* @brief Manages the activation of the host version items for static layout
*/
class ItemUpdaterStatic : public ItemUpdater
{
public:
ItemUpdaterStatic(sdbusplus::bus::bus& bus, const std::string& path) :
ItemUpdater(bus, path)
{
processPNORImage();
gardReset = std::make_unique<GardResetStatic>(bus, GARD_PATH);
volatileEnable = std::make_unique<ObjectEnable>(bus, volatilePath);
// Emit deferred signal.
emit_object_added();
}
virtual ~ItemUpdaterStatic() = default;
void freePriority(uint8_t value, const std::string& versionId) override;
void processPNORImage() override;
void deleteAll() override;
bool freeSpace() override;
void updateFunctionalAssociation(const std::string& versionId) override;
bool isVersionFunctional(const std::string& versionId) override;
private:
/** @brief Create Activation object */
std::unique_ptr<Activation> createActivationObject(
const std::string& path, const std::string& versionId,
const std::string& extVersion,
sdbusplus::xyz::openbmc_project::Software::server::Activation::
Activations activationStatus,
AssociationList& assocs) override;
/** @brief Create Version object */
std::unique_ptr<Version>
createVersionObject(const std::string& objPath,
const std::string& versionId,
const std::string& versionString,
sdbusplus::xyz::openbmc_project::Software::server::
Version::VersionPurpose versionPurpose,
const std::string& filePath) override;
/** @brief Validate if image is valid or not */
bool validateImage(const std::string& path);
/** @brief Host factory reset - clears PNOR partitions for each
* Activation D-Bus object */
void reset() override;
/** @brief The functional version ID */
std::string functionalVersionId;
};
} // namespace updater
} // namespace software
} // namespace openpower
|