blob: 778e4b4d5c88780813872b4689249757b55f954b [file] [log] [blame]
Matthew Barth29e9e382020-01-23 13:40:49 -06001/**
2 * Copyright © 2020 IBM Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "manager.hpp"
18
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -050019#include "chassis.hpp"
20#include "config_file_parser.hpp"
21#include "exception_utils.hpp"
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -050022#include "rule.hpp"
Matthew Barthbbc7c582020-02-03 15:55:15 -060023#include "utility.hpp"
24
Shawn McCarney589c1812021-01-14 12:13:26 -060025#include <algorithm>
Matthew Barthf2bcf1f2020-01-29 14:42:47 -060026#include <chrono>
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -050027#include <exception>
Shawn McCarney589c1812021-01-14 12:13:26 -060028#include <functional>
29#include <map>
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -050030#include <tuple>
31#include <utility>
Matthew Barth250d0a92020-02-28 13:04:24 -060032#include <variant>
Matthew Barthf2bcf1f2020-01-29 14:42:47 -060033
Shawn McCarney84807b92020-04-30 18:40:03 -050034namespace phosphor::power::regulators
Matthew Barth29e9e382020-01-23 13:40:49 -060035{
36
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -050037namespace fs = std::filesystem;
38
Shawn McCarney589c1812021-01-14 12:13:26 -060039constexpr auto busName = "xyz.openbmc_project.Power.Regulators";
40constexpr auto managerObjPath = "/xyz/openbmc_project/power/regulators/manager";
41constexpr auto compatibleIntf =
42 "xyz.openbmc_project.Configuration.IBMCompatibleSystem";
43constexpr auto compatibleNamesProp = "Names";
44
45/**
46 * Default configuration file name. This is used when the system does not
47 * implement the D-Bus compatible interface.
48 */
49constexpr auto defaultConfigFileName = "config.json";
50
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -050051/**
52 * Standard configuration file directory. This directory is part of the
53 * firmware install image. It contains the standard version of the config file.
54 */
55const fs::path standardConfigFileDir{"/usr/share/phosphor-regulators"};
56
57/**
58 * Test configuration file directory. This directory can contain a test version
59 * of the config file. The test version will override the standard version.
60 */
61const fs::path testConfigFileDir{"/etc/phosphor-regulators"};
62
Matthew Barthf2bcf1f2020-01-29 14:42:47 -060063Manager::Manager(sdbusplus::bus::bus& bus, const sdeventplus::Event& event) :
Shawn McCarney589c1812021-01-14 12:13:26 -060064 ManagerObject{bus, managerObjPath, true}, bus{bus}, eventLoop{event},
65 services{bus}
Matthew Barth29e9e382020-01-23 13:40:49 -060066{
Shawn McCarney589c1812021-01-14 12:13:26 -060067 // Subscribe to D-Bus interfacesAdded signal from Entity Manager. This
68 // notifies us if the compatible interface becomes available later.
69 std::string matchStr = sdbusplus::bus::match::rules::interfacesAdded() +
70 sdbusplus::bus::match::rules::sender(
71 "xyz.openbmc_project.EntityManager");
72 std::unique_ptr<sdbusplus::server::match::match> matchPtr =
73 std::make_unique<sdbusplus::server::match::match>(
74 bus, matchStr,
75 std::bind(&Manager::interfacesAddedHandler, this,
76 std::placeholders::_1));
77 signals.emplace_back(std::move(matchPtr));
Matthew Barth250d0a92020-02-28 13:04:24 -060078
Shawn McCarney589c1812021-01-14 12:13:26 -060079 // Try to find compatible system types using D-Bus compatible interface.
80 // Note that it might not be supported on this system, or the service that
81 // provides the interface might not be running yet.
82 findCompatibleSystemTypes();
Shawn McCarney84807b92020-04-30 18:40:03 -050083
Shawn McCarney589c1812021-01-14 12:13:26 -060084 // Try to find and load the JSON configuration file
85 loadConfigFile();
Matthew Barth29e9e382020-01-23 13:40:49 -060086
87 // Obtain dbus service name
88 bus.request_name(busName);
89}
90
91void Manager::configure()
92{
Shawn McCarney9bd94d32021-01-25 19:40:42 -060093 // Clear any cached data or error history related to hardware devices
94 clearHardwareData();
95
Shawn McCarney6345c6c2020-05-04 10:35:05 -050096 // Verify System object exists; this means config file has been loaded
97 if (system)
98 {
99 // Configure the regulator devices in the system
Bob King23243f82020-07-29 10:38:57 +0800100 system->configure(services);
Shawn McCarney6345c6c2020-05-04 10:35:05 -0500101 }
102 else
103 {
Shawn McCarneyb464c8b2020-07-16 17:51:38 -0500104 services.getJournal().logError("Unable to configure regulator devices: "
105 "Configuration file not loaded");
Shawn McCarney6345c6c2020-05-04 10:35:05 -0500106 // TODO: Log error
107 }
108
Matthew Barth29e9e382020-01-23 13:40:49 -0600109 // TODO Configuration errors that should halt poweron,
110 // throw InternalFailure exception (or similar) to
111 // fail the call(busctl) to this method
112}
113
Shawn McCarney589c1812021-01-14 12:13:26 -0600114void Manager::interfacesAddedHandler(sdbusplus::message::message& msg)
115{
116 // Verify message is valid
117 if (!msg)
118 {
119 return;
120 }
121
122 try
123 {
124 // Read object path for object that was created or had interface added
125 sdbusplus::message::object_path objPath;
126 msg.read(objPath);
127
128 // Read the dictionary whose keys are interface names and whose values
129 // are dictionaries containing the interface property names and values
130 std::map<std::string,
131 std::map<std::string, std::variant<std::vector<std::string>>>>
132 intfProp;
133 msg.read(intfProp);
134
135 // Find the compatible interface, if present
136 auto itIntf = intfProp.find(compatibleIntf);
137 if (itIntf != intfProp.cend())
138 {
139 // Find the Names property of the compatible interface, if present
140 auto itProp = itIntf->second.find(compatibleNamesProp);
141 if (itProp != itIntf->second.cend())
142 {
143 // Get value of Names property
144 auto propValue = std::get<0>(itProp->second);
145 if (!propValue.empty())
146 {
147 // Store list of compatible system types
148 compatibleSystemTypes = propValue;
149
150 // Find and load JSON config file based on system types
151 loadConfigFile();
152 }
153 }
154 }
155 }
156 catch (const std::exception&)
157 {
158 // Error trying to read interfacesAdded message. One possible cause
159 // could be a property whose value is not a std::vector<std::string>.
160 }
161}
162
Shawn McCarney5b19ea52020-06-02 18:52:56 -0500163void Manager::monitor(bool enable)
Matthew Barth29e9e382020-01-23 13:40:49 -0600164{
165 if (enable)
166 {
Shawn McCarney5b19ea52020-06-02 18:52:56 -0500167 /* Temporarily comment out until monitoring is supported.
168 Timer timer(eventLoop, std::bind(&Manager::timerExpired, this));
169 // Set timer as a repeating 1sec timer
170 timer.restart(std::chrono::milliseconds(1000));
171 timers.emplace_back(std::move(timer));
172 */
Matthew Barth29e9e382020-01-23 13:40:49 -0600173 }
174 else
175 {
Shawn McCarney5b19ea52020-06-02 18:52:56 -0500176 /* Temporarily comment out until monitoring is supported.
177 // Delete all timers to disable monitoring
178 timers.clear();
179 */
180
181 // Verify System object exists; this means config file has been loaded
182 if (system)
183 {
184 // Close the regulator devices in the system. Monitoring is
185 // normally disabled because the system is being powered off. The
186 // devices should be closed in case hardware is removed or replaced
Shawn McCarney9bd94d32021-01-25 19:40:42 -0600187 // while the system is powered off.
Bob Kingd692d6d2020-09-14 13:42:57 +0800188 system->closeDevices(services);
Shawn McCarney5b19ea52020-06-02 18:52:56 -0500189 }
Matthew Barth29e9e382020-01-23 13:40:49 -0600190 }
191}
192
Shawn McCarney589c1812021-01-14 12:13:26 -0600193void Manager::sighupHandler(sdeventplus::source::Signal& /*sigSrc*/,
194 const struct signalfd_siginfo* /*sigInfo*/)
195{
196 // Reload the JSON configuration file
197 loadConfigFile();
198}
199
Matthew Barthf2bcf1f2020-01-29 14:42:47 -0600200void Manager::timerExpired()
201{
202 // TODO Analyze, refresh sensor status, and
203 // collect/update telemetry for each regulator
204}
205
Shawn McCarney9bd94d32021-01-25 19:40:42 -0600206void Manager::clearHardwareData()
207{
Shawn McCarney4e0402c2021-02-05 00:08:33 -0600208 // Clear any cached hardware presence data and VPD values
Shawn McCarney9bd94d32021-01-25 19:40:42 -0600209 services.getPresenceService().clearCache();
Shawn McCarney4e0402c2021-02-05 00:08:33 -0600210 services.getVPD().clearCache();
Shawn McCarney9bd94d32021-01-25 19:40:42 -0600211
212 // Verify System object exists; this means config file has been loaded
213 if (system)
214 {
215 // Clear any cached hardware data in the System object
216 system->clearCache();
217 }
218
219 // TODO: Clear error history related to hardware devices
220}
221
Shawn McCarney589c1812021-01-14 12:13:26 -0600222void Manager::findCompatibleSystemTypes()
Matthew Barth7cbc5532020-01-29 15:13:13 -0600223{
Matthew Barthbbc7c582020-02-03 15:55:15 -0600224 using namespace phosphor::power::util;
225
226 try
227 {
Shawn McCarney589c1812021-01-14 12:13:26 -0600228 // Query object mapper for object paths that implement the compatible
229 // interface. Returns a map of object paths to a map of services names
230 // to their interfaces.
231 DbusSubtree subTree = getSubTree(bus, "/xyz/openbmc_project/inventory",
232 compatibleIntf, 0);
233
234 // Get the first object path
235 auto objectIt = subTree.cbegin();
236 if (objectIt != subTree.cend())
Matthew Barthbbc7c582020-02-03 15:55:15 -0600237 {
Shawn McCarney589c1812021-01-14 12:13:26 -0600238 std::string objPath = objectIt->first;
239
240 // Get the first service name
241 auto serviceIt = objectIt->second.cbegin();
242 if (serviceIt != objectIt->second.cend())
243 {
244 std::string service = serviceIt->first;
245 if (!service.empty())
246 {
247 // Get compatible system types property value
248 getProperty(compatibleIntf, compatibleNamesProp, objPath,
249 service, bus, compatibleSystemTypes);
250 }
251 }
Matthew Barthbbc7c582020-02-03 15:55:15 -0600252 }
253 }
Shawn McCarney589c1812021-01-14 12:13:26 -0600254 catch (const std::exception&)
Matthew Barthbbc7c582020-02-03 15:55:15 -0600255 {
Shawn McCarney589c1812021-01-14 12:13:26 -0600256 // Compatible system types information is not available. The current
257 // system might not support the interface, or the service that
258 // implements the interface might not be running yet.
Matthew Barthbbc7c582020-02-03 15:55:15 -0600259 }
Matthew Barthbbc7c582020-02-03 15:55:15 -0600260}
261
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500262fs::path Manager::findConfigFile()
263{
Shawn McCarney589c1812021-01-14 12:13:26 -0600264 // Build list of possible base file names
265 std::vector<std::string> fileNames{};
266
267 // Add possible file names based on compatible system types (if any)
268 for (const std::string& systemType : compatibleSystemTypes)
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500269 {
Shawn McCarney589c1812021-01-14 12:13:26 -0600270 // Replace all spaces and commas in system type name with underscores
271 std::string fileName{systemType};
272 std::replace(fileName.begin(), fileName.end(), ' ', '_');
273 std::replace(fileName.begin(), fileName.end(), ',', '_');
274
275 // Append .json suffix and add to list
276 fileName.append(".json");
277 fileNames.emplace_back(fileName);
278 }
279
280 // Add default file name for systems that don't use compatible interface
281 fileNames.emplace_back(defaultConfigFileName);
282
283 // Look for a config file with one of the possible base names
284 for (const std::string& fileName : fileNames)
285 {
286 // Check if file exists in test directory
287 fs::path pathName{testConfigFileDir / fileName};
288 if (fs::exists(pathName))
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500289 {
Shawn McCarney589c1812021-01-14 12:13:26 -0600290 return pathName;
291 }
292
293 // Check if file exists in standard directory
294 pathName = standardConfigFileDir / fileName;
295 if (fs::exists(pathName))
296 {
297 return pathName;
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500298 }
299 }
300
Shawn McCarney589c1812021-01-14 12:13:26 -0600301 // No config file found; return empty path
302 return fs::path{};
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500303}
304
305void Manager::loadConfigFile()
306{
307 try
308 {
309 // Find the absolute path to the config file
310 fs::path pathName = findConfigFile();
Shawn McCarney589c1812021-01-14 12:13:26 -0600311 if (!pathName.empty())
312 {
313 // Log info message in journal; config file path is important
314 services.getJournal().logInfo("Loading configuration file " +
315 pathName.string());
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500316
Shawn McCarney589c1812021-01-14 12:13:26 -0600317 // Parse the config file
318 std::vector<std::unique_ptr<Rule>> rules{};
319 std::vector<std::unique_ptr<Chassis>> chassis{};
320 std::tie(rules, chassis) = config_file_parser::parse(pathName);
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500321
Shawn McCarney589c1812021-01-14 12:13:26 -0600322 // Store config file information in a new System object. The old
323 // System object, if any, is automatically deleted.
324 system =
325 std::make_unique<System>(std::move(rules), std::move(chassis));
326 }
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500327 }
328 catch (const std::exception& e)
329 {
330 // Log error messages in journal
Shawn McCarneyb464c8b2020-07-16 17:51:38 -0500331 services.getJournal().logError(exception_utils::getMessages(e));
332 services.getJournal().logError("Unable to load configuration file");
Shawn McCarneye0c6a2d2020-05-01 11:37:08 -0500333
334 // TODO: Create error log entry
335 }
336}
337
Shawn McCarney84807b92020-04-30 18:40:03 -0500338} // namespace phosphor::power::regulators