-
Notifications
You must be signed in to change notification settings - Fork 76
/
read_fru_data.cpp
180 lines (164 loc) · 4.94 KB
/
read_fru_data.cpp
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#include "read_fru_data.hpp"
#include "fruread.hpp"
#include <ipmid/api.hpp>
#include <ipmid/types.hpp>
#include <ipmid/utils.hpp>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/lg2.hpp>
#include <sdbusplus/message/types.hpp>
#include <xyz/openbmc_project/Common/error.hpp>
#include <algorithm>
#include <map>
extern const FruMap frus;
namespace ipmi
{
namespace fru
{
using namespace phosphor::logging;
using InternalFailure =
sdbusplus::error::xyz::openbmc_project::common::InternalFailure;
std::unique_ptr<sdbusplus::bus::match_t> matchPtr
__attribute__((init_priority(101)));
namespace cache
{
// User initiate read FRU info area command followed by
// FRU read command. Also data is read in small chunks of
// the specified offset and count.
// Caching the data which will be invalidated when ever there
// is a change in FRU properties.
FRUAreaMap fruMap;
} // namespace cache
/**
* @brief Read all the property value's for the specified interface
* from Inventory.
*
* @param[in] intf Interface
* @param[in] path Object path
* @return map of properties
*/
ipmi::PropertyMap readAllProperties(const std::string& intf,
const std::string& path)
{
ipmi::PropertyMap properties;
sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()};
std::string service;
std::string objPath;
// Is the path the full dbus path?
if (path.find(xyzPrefix) != std::string::npos)
{
service = ipmi::getService(bus, intf, path);
objPath = path;
}
else
{
service = ipmi::getService(bus, invMgrInterface, invObjPath);
objPath = invObjPath + path;
}
auto method = bus.new_method_call(service.c_str(), objPath.c_str(),
propInterface, "GetAll");
method.append(intf);
try
{
auto reply = bus.call(method);
reply.read(properties);
}
catch (const sdbusplus::exception_t& e)
{
// If property is not found simply return empty value
lg2::error("Error in reading property values: {ERROR}, path: {PATH}, "
"interface: {INTERFACE}",
"ERROR", e, "PATH", objPath, "INTERFACE", intf);
}
return properties;
}
void processFruPropChange(sdbusplus::message_t& msg)
{
if (cache::fruMap.empty())
{
return;
}
std::string path = msg.get_path();
// trim the object base path, if found at the beginning
if (path.compare(0, strlen(invObjPath), invObjPath) == 0)
{
path.erase(0, strlen(invObjPath));
}
for (const auto& [fruId, instanceList] : frus)
{
auto found = std::find_if(
instanceList.begin(), instanceList.end(),
[&path](const auto& iter) { return (iter.path == path); });
if (found != instanceList.end())
{
cache::fruMap.erase(fruId);
break;
}
}
}
// register for fru property change
int registerCallbackHandler()
{
if (matchPtr == nullptr)
{
using namespace sdbusplus::bus::match::rules;
sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()};
matchPtr = std::make_unique<sdbusplus::bus::match_t>(
bus,
path_namespace(invObjPath) + type::signal() +
member("PropertiesChanged") + interface(propInterface),
std::bind(processFruPropChange, std::placeholders::_1));
}
return 0;
}
/**
* @brief Read FRU property values from Inventory
*
* @param[in] fruNum FRU id
* @return populate FRU Inventory data
*/
FruInventoryData readDataFromInventory(const FRUId& fruNum)
{
auto iter = frus.find(fruNum);
if (iter == frus.end())
{
lg2::error("Unsupported FRU ID: {FRUID}", "FRUID", fruNum);
elog<InternalFailure>();
}
FruInventoryData data;
auto& instanceList = iter->second;
for (auto& instance : instanceList)
{
for (auto& intf : instance.interfaces)
{
ipmi::PropertyMap allProp =
readAllProperties(intf.first, instance.path);
for (auto& properties : intf.second)
{
auto iter = allProp.find(properties.first);
if (iter != allProp.end())
{
data[properties.second.section].emplace(
properties.second.property,
std::move(
std::get<std::string>(allProp[properties.first])));
}
}
}
}
return data;
}
const FruAreaData& getFruAreaData(const FRUId& fruNum)
{
auto iter = cache::fruMap.find(fruNum);
if (iter != cache::fruMap.end())
{
return iter->second;
}
auto invData = readDataFromInventory(fruNum);
// Build area info based on inventory data
FruAreaData newdata = buildFruAreaData(std::move(invData));
cache::fruMap.emplace(fruNum, std::move(newdata));
return cache::fruMap.at(fruNum);
}
} // namespace fru
} // namespace ipmi