blob: cd500ee458ef85b5dcedd83537528d82e2b5e2da [file] [log] [blame]
Vishwanatha Subbanna07655062017-07-14 20:31:57 +05301#include "config.h"
Patrick Venture02261c02018-10-31 15:16:23 -07002
3#include "oemhandler.hpp"
4
Tom Joseph246bc0d2017-10-17 16:08:38 +05305#include "elog-errors.hpp"
Patrick Venture02261c02018-10-31 15:16:23 -07006
7#include <endian.h>
William A. Kennington III822eaf62019-02-12 15:20:06 -08008#include <ipmid/api.h>
Chris Austen4d98c1e2015-10-13 14:33:50 -05009#include <stdio.h>
10#include <string.h>
Vishwanatha Subbanna07655062017-07-14 20:31:57 +053011#include <systemd/sd-bus.h>
Patrick Venture02261c02018-10-31 15:16:23 -070012
13#include <fstream>
14#include <functional>
Vishwanatha Subbanna07655062017-07-14 20:31:57 +053015#include <host-interface.hpp>
William A. Kennington III822eaf62019-02-12 15:20:06 -080016#include <ipmid-host/cmd.hpp>
Patrick Venture02261c02018-10-31 15:16:23 -070017#include <memory>
Tom Joseph3503fdc2019-01-10 11:25:27 +053018#include <org/open_power/Host/error.hpp>
Tom Joseph246bc0d2017-10-17 16:08:38 +053019#include <org/open_power/OCC/Metrics/error.hpp>
Patrick Venture02261c02018-10-31 15:16:23 -070020#include <sdbusplus/bus.hpp>
Adriana Kobylak81c34df2018-11-01 11:44:16 -050021#include <sdbusplus/exception.hpp>
Chris Austen4d98c1e2015-10-13 14:33:50 -050022
Andrew Jeffery8fb3f032018-07-27 16:45:44 +093023void register_netfn_ibm_oem_commands() __attribute__((constructor));
Chris Austen4d98c1e2015-10-13 14:33:50 -050024
Patrick Venture02261c02018-10-31 15:16:23 -070025const char* g_esel_path = "/tmp/esel";
Chris Austen29a8e0f2015-10-30 11:44:38 -050026uint16_t g_record_id = 0x0001;
Tom Joseph246bc0d2017-10-17 16:08:38 +053027using namespace phosphor::logging;
28constexpr auto occMetricsType = 0xDD;
29
Tom Josephb61b1072019-01-28 12:32:52 +053030extern const ObjectIDMap invSensors;
31const std::map<uint8_t, Entry::Level> severityMap{
32 {0x10, Entry::Level::Warning}, // Recoverable error
33 {0x20, Entry::Level::Warning}, // Predictive error
34 {0x40, Entry::Level::Error}, // Unrecoverable error
35 {0x50, Entry::Level::Error}, // Critical error
36 {0x60, Entry::Level::Error}, // Error from a diagnostic test
37 {0x70, Entry::Level::Warning}, // Recoverable symptom
38 {0xFF, Entry::Level::Error}, // Unknown error
39};
40
41Entry::Level mapSeverity(const std::string& eSELData)
42{
43 constexpr size_t severityOffset = 0x4A;
44
45 if (eSELData.size() > severityOffset)
46 {
47 // Dive in to the IBM log to find the severity
48 uint8_t sev = 0xF0 & eSELData[severityOffset];
49
50 auto find = severityMap.find(sev);
51 if (find != severityMap.end())
52 {
53 return find->second;
54 }
55 }
56
57 // Default to Entry::Level::Error if a matching is not found.
58 return Entry::Level::Error;
59}
60
61std::string mapCalloutAssociation(const std::string& eSELData)
62{
63 auto rec = reinterpret_cast<const SELEventRecord*>(&eSELData[0]);
64 uint8_t sensor = rec->sensorNum;
65
66 /*
67 * Search the sensor number to inventory path mapping to figure out the
68 * inventory associated with the ESEL.
69 */
70 auto found = std::find_if(invSensors.begin(), invSensors.end(),
71 [&sensor](const auto& iter) {
72 return (iter.second.sensorID == sensor);
73 });
74 if (found != invSensors.end())
75 {
76 return found->first;
77 }
78
79 return {};
80}
81
Patrick Williamsa0a221f2022-07-22 19:26:53 -050082std::string getService(sdbusplus::bus_t& bus, const std::string& path,
Adriana Kobylak81c34df2018-11-01 11:44:16 -050083 const std::string& interface)
84{
85 auto method = bus.new_method_call(MAPPER_BUS_NAME, MAPPER_OBJ, MAPPER_IFACE,
86 "GetObject");
87
88 method.append(path);
89 method.append(std::vector<std::string>({interface}));
90
91 std::map<std::string, std::vector<std::string>> response;
92
93 try
94 {
95 auto reply = bus.call(method);
96
97 reply.read(response);
98 if (response.empty())
99 {
100 log<level::ERR>("Error in mapper response for getting service name",
101 entry("PATH=%s", path.c_str()),
102 entry("INTERFACE=%s", interface.c_str()));
103 return std::string{};
104 }
105 }
Patrick Williamsa0a221f2022-07-22 19:26:53 -0500106 catch (const sdbusplus::exception_t& e)
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500107 {
108 log<level::ERR>("Error in mapper method call",
109 entry("ERROR=%s", e.what()));
110 return std::string{};
111 }
112
113 return response.begin()->first;
114}
115
Tom Joseph246bc0d2017-10-17 16:08:38 +0530116std::string readESEL(const char* fileName)
117{
Patrick Venture02261c02018-10-31 15:16:23 -0700118 std::string content{};
Tom Joseph246bc0d2017-10-17 16:08:38 +0530119
120 std::ifstream handle(fileName);
121
122 if (handle.fail())
123 {
Patrick Venture02261c02018-10-31 15:16:23 -0700124 log<level::ERR>("Failed to open eSEL", entry("FILENAME=%s", fileName));
Tom Joseph246bc0d2017-10-17 16:08:38 +0530125 return content;
126 }
127
128 handle.seekg(0, std::ios::end);
129 content.resize(handle.tellg());
130 handle.seekg(0, std::ios::beg);
131 handle.read(&content[0], content.size());
132 handle.close();
133
134 return content;
135}
136
137void createOCCLogEntry(const std::string& eSELData)
138{
139 // Each byte in eSEL is formatted as %02x with a space between bytes and
140 // insert '/0' at the end of the character array.
141 constexpr auto byteSeperator = 3;
142
Patrick Venture02261c02018-10-31 15:16:23 -0700143 std::unique_ptr<char[]> data(
144 new char[(eSELData.size() * byteSeperator) + 1]());
Tom Joseph246bc0d2017-10-17 16:08:38 +0530145
146 for (size_t i = 0; i < eSELData.size(); i++)
147 {
148 sprintf(&data[i * byteSeperator], "%02x ", eSELData[i]);
149 }
150 data[eSELData.size() * byteSeperator] = '\0';
151
Patrick Venture02261c02018-10-31 15:16:23 -0700152 using error = sdbusplus::org::open_power::OCC::Metrics::Error::Event;
Tom Joseph246bc0d2017-10-17 16:08:38 +0530153 using metadata = org::open_power::OCC::Metrics::Event;
154
155 report<error>(metadata::ESEL(data.get()));
156}
157
Tom Joseph3503fdc2019-01-10 11:25:27 +0530158void createHostEntry(const std::string& eSELData)
159{
160 // Each byte in eSEL is formatted as %02x with a space between bytes and
161 // insert '/0' at the end of the character array.
Tom Joseph3503fdc2019-01-10 11:25:27 +0530162 constexpr auto byteSeperator = 3;
163
Tom Josephb61b1072019-01-28 12:32:52 +0530164 auto sev = mapSeverity(eSELData);
165 auto inventoryPath = mapCalloutAssociation(eSELData);
Tom Joseph3503fdc2019-01-10 11:25:27 +0530166
Tom Josephb61b1072019-01-28 12:32:52 +0530167 if (!inventoryPath.empty())
Tom Joseph3503fdc2019-01-10 11:25:27 +0530168 {
Tom Josephb61b1072019-01-28 12:32:52 +0530169 std::unique_ptr<char[]> data(
170 new char[(eSELData.size() * byteSeperator) + 1]());
171
172 for (size_t i = 0; i < eSELData.size(); i++)
173 {
174 sprintf(&data[i * byteSeperator], "%02x ", eSELData[i]);
175 }
176 data[eSELData.size() * byteSeperator] = '\0';
177
178 using hosterror = sdbusplus::org::open_power::Host::Error::Event;
179 using hostmetadata = org::open_power::Host::Event;
180
181 report<hosterror>(
182 sev, hostmetadata::ESEL(data.get()),
183 hostmetadata::CALLOUT_INVENTORY_PATH(inventoryPath.c_str()));
Tom Joseph3503fdc2019-01-10 11:25:27 +0530184 }
Tom Joseph3503fdc2019-01-10 11:25:27 +0530185}
186
Adriana Kobylak080503e2023-01-05 13:44:25 -0600187/** @brief Helper function to do a graceful restart (reboot) of the BMC.
188 @return 0 on success, -1 on error
189 */
190int rebootBMC()
191{
Patrick Williams505492c2023-02-02 02:57:25 -0600192 sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()};
Adriana Kobylak080503e2023-01-05 13:44:25 -0600193 auto service = getService(bus, stateBmcPath, stateBmcIntf);
194 if (service.empty())
195 {
196 log<level::ERR>("Error getting the service name to reboot the BMC.");
197 return -1;
198 }
199 std::variant<std::string> reboot =
200 "xyz.openbmc_project.State.BMC.Transition.Reboot";
201 auto method = bus.new_method_call(service.c_str(), stateBmcPath,
202 propertiesIntf, "Set");
203 method.append(stateBmcIntf, "RequestedBMCTransition", reboot);
204 try
205 {
206 bus.call_noreply(method);
207 }
208 catch (const sdbusplus::exception_t& e)
209 {
210 log<level::ERR>("Error calling to reboot the BMC.",
211 entry("ERROR=%s", e.what()));
212 return -1;
213 }
214 return 0;
215}
216
Chris Austen4d98c1e2015-10-13 14:33:50 -0500217///////////////////////////////////////////////////////////////////////////////
Patrick Williams24fa5a92015-10-30 14:53:57 -0500218// For the First partial add eSEL the SEL Record ID and offset
219// value should be 0x0000. The extended data needs to be in
220// the form of an IPMI SEL Event Record, with Event sensor type
221// of 0xDF and Event Message format of 0x04. The returned
Chris Austen4d98c1e2015-10-13 14:33:50 -0500222// Record ID should be used for all partial eSEL adds.
223//
Chris Austenba54afb2016-02-19 23:18:42 -0600224// This function creates a /tmp/esel file to store the
Chris Austen4d98c1e2015-10-13 14:33:50 -0500225// incoming partial esel. It is the role of some other
Patrick Williams24fa5a92015-10-30 14:53:57 -0500226// function to commit the error log in to long term
227// storage. Likely via the ipmi add_sel command.
Chris Austen4d98c1e2015-10-13 14:33:50 -0500228///////////////////////////////////////////////////////////////////////////////
Patrick Williams24fa5a92015-10-30 14:53:57 -0500229ipmi_ret_t ipmi_ibm_oem_partial_esel(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture02261c02018-10-31 15:16:23 -0700230 ipmi_request_t request,
231 ipmi_response_t response,
232 ipmi_data_len_t data_len,
233 ipmi_context_t context)
Chris Austen4d98c1e2015-10-13 14:33:50 -0500234{
Patrick Venture02261c02018-10-31 15:16:23 -0700235 uint8_t* reqptr = (uint8_t*)request;
236 esel_request_t esel_req;
237 FILE* fp;
238 int r = 0;
239 uint8_t rlen;
240 ipmi_ret_t rc = IPMI_CC_OK;
241 const char* pio;
Chris Austen4d98c1e2015-10-13 14:33:50 -0500242
Patrick Venture02261c02018-10-31 15:16:23 -0700243 esel_req.resid = le16toh((((uint16_t)reqptr[1]) << 8) + reqptr[0]);
244 esel_req.selrecord = le16toh((((uint16_t)reqptr[3]) << 8) + reqptr[2]);
245 esel_req.offset = le16toh((((uint16_t)reqptr[5]) << 8) + reqptr[4]);
246 esel_req.progress = reqptr[6];
Nan Lib6c4c562016-03-30 17:06:13 +0800247
Patrick Venture02261c02018-10-31 15:16:23 -0700248 // According to IPMI spec, Reservation ID must be checked.
249 if (!checkSELReservation(esel_req.resid))
250 {
251 // 0xc5 means Reservation Cancelled or Invalid Reservation ID.
252 printf("Used Reservation ID = %d\n", esel_req.resid);
253 rc = IPMI_CC_INVALID_RESERVATION_ID;
Nan Lib6c4c562016-03-30 17:06:13 +0800254
Patrick Venture02261c02018-10-31 15:16:23 -0700255 // clean g_esel_path.
256 r = remove(g_esel_path);
257 if (r < 0)
258 fprintf(stderr, "Error deleting %s\n", g_esel_path);
Nan Lib6c4c562016-03-30 17:06:13 +0800259
Patrick Venture02261c02018-10-31 15:16:23 -0700260 return rc;
261 }
Nan Lib6c4c562016-03-30 17:06:13 +0800262
263 // OpenPOWER Host Interface spec says if RecordID and Offset are
Patrick Venture02261c02018-10-31 15:16:23 -0700264 // 0 then then this is a new request
265 if (!esel_req.selrecord && !esel_req.offset)
266 pio = "wb";
267 else
268 pio = "rb+";
Chris Austen4d98c1e2015-10-13 14:33:50 -0500269
Patrick Venture02261c02018-10-31 15:16:23 -0700270 rlen = (*data_len) - (uint8_t)(sizeof(esel_request_t));
Chris Austen4d98c1e2015-10-13 14:33:50 -0500271
Patrick Venture02261c02018-10-31 15:16:23 -0700272 if ((fp = fopen(g_esel_path, pio)) != NULL)
Tom Joseph246bc0d2017-10-17 16:08:38 +0530273 {
Patrick Venture02261c02018-10-31 15:16:23 -0700274 fseek(fp, esel_req.offset, SEEK_SET);
275 fwrite(reqptr + (uint8_t)(sizeof(esel_request_t)), rlen, 1, fp);
276 fclose(fp);
Chris Austen4d98c1e2015-10-13 14:33:50 -0500277
Patrick Venture02261c02018-10-31 15:16:23 -0700278 *data_len = sizeof(g_record_id);
279 memcpy(response, &g_record_id, *data_len);
280 }
281 else
282 {
283 fprintf(stderr, "Error trying to perform %s for esel%s\n", pio,
284 g_esel_path);
285 rc = IPMI_CC_INVALID;
286 *data_len = 0;
287 }
Tom Joseph246bc0d2017-10-17 16:08:38 +0530288
Patrick Venture02261c02018-10-31 15:16:23 -0700289 // The first bit presents that this is the last partial packet
290 // coming down. If that is the case advance the record id so we
291 // don't overlap logs. This allows anyone to establish a log
292 // directory system.
293 if (esel_req.progress & 1)
294 {
295 g_record_id++;
Tom Joseph246bc0d2017-10-17 16:08:38 +0530296
Patrick Venture02261c02018-10-31 15:16:23 -0700297 auto eSELData = readESEL(g_esel_path);
298
299 if (eSELData.empty())
300 {
301 return IPMI_CC_UNSPECIFIED_ERROR;
302 }
303
304 // If the eSEL record type is OCC metrics, then create the OCC log
305 // entry.
306 if (eSELData[2] == occMetricsType)
307 {
308 createOCCLogEntry(eSELData);
309 }
Tom Joseph3503fdc2019-01-10 11:25:27 +0530310 else
311 {
312 createHostEntry(eSELData);
313 }
Tom Joseph246bc0d2017-10-17 16:08:38 +0530314 }
315
316 return rc;
Chris Austen4d98c1e2015-10-13 14:33:50 -0500317}
318
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600319// Prepare for FW Update.
320// Execute needed commands to prepare the system for a fw update from the host.
321ipmi_ret_t ipmi_ibm_oem_prep_fw_update(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture02261c02018-10-31 15:16:23 -0700322 ipmi_request_t request,
323 ipmi_response_t response,
324 ipmi_data_len_t data_len,
325 ipmi_context_t context)
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600326{
327 ipmi_ret_t ipmi_rc = IPMI_CC_OK;
328 *data_len = 0;
329
330 int rc = 0;
331 std::ofstream rwfs_file;
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600332
333 // Set one time flag
Patrick Venture02261c02018-10-31 15:16:23 -0700334 rc = system(
335 "fw_setenv openbmconce copy-files-to-ram copy-base-filesystem-to-ram");
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600336 rc = WEXITSTATUS(rc);
Patrick Venture02261c02018-10-31 15:16:23 -0700337 if (rc != 0)
338 {
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600339 fprintf(stderr, "fw_setenv openbmconce failed with rc=%d\n", rc);
Andrew Geisslerd9296052017-06-15 14:57:25 -0500340 return IPMI_CC_UNSPECIFIED_ERROR;
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600341 }
342
343 // Touch the image-rwfs file to perform an empty update to force the save
Patrick Venture02261c02018-10-31 15:16:23 -0700344 // in case we're already in ram and the flash is the same causing the ram
345 // files to not be copied back to flash
346 rwfs_file.open("/run/initramfs/image-rwfs",
347 std::ofstream::out | std::ofstream::app);
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600348 rwfs_file.close();
349
350 // Reboot the BMC for settings to take effect
Adriana Kobylak080503e2023-01-05 13:44:25 -0600351 rc = rebootBMC();
352 if (rc < 0)
Patrick Venture02261c02018-10-31 15:16:23 -0700353 {
Adriana Kobylak080503e2023-01-05 13:44:25 -0600354 fprintf(stderr, "Failed to reset BMC: %s\n", strerror(-rc));
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600355 return -1;
356 }
357 printf("Warning: BMC is going down for reboot!\n");
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600358
359 return ipmi_rc;
360}
Chris Austen4d98c1e2015-10-13 14:33:50 -0500361
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500362ipmi_ret_t ipmi_ibm_oem_bmc_factory_reset(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
363 ipmi_request_t request,
364 ipmi_response_t response,
365 ipmi_data_len_t data_len,
366 ipmi_context_t context)
Adriana Kobylak81e23102018-08-09 14:44:19 -0500367{
Patrick Williamsa0a221f2022-07-22 19:26:53 -0500368 sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()};
Andrew Geissler64354b62019-09-20 13:39:24 -0500369
370 // Since this is a one way command (i.e. the host is requesting a power
371 // off of itself and a reboot of the BMC) we can exceed the 5 second
372 // IPMI timeout. Testing has shown that the power off can take up to
373 // 10 seconds so give it at least 15
374 constexpr auto powerOffWait = std::chrono::seconds(15);
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500375 constexpr auto setFactoryWait = std::chrono::seconds(3);
Matt Spinler34aca012018-09-25 11:21:06 -0500376
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500377 // Power Off Chassis
378 auto service = getService(bus, stateChassisPath, stateChassisIntf);
379 if (service.empty())
380 {
381 return IPMI_CC_UNSPECIFIED_ERROR;
382 }
Patrick Williams61950102020-05-13 17:49:58 -0500383 std::variant<std::string> off =
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500384 "xyz.openbmc_project.State.Chassis.Transition.Off";
385 auto method = bus.new_method_call(service.c_str(), stateChassisPath,
386 propertiesIntf, "Set");
387 method.append(stateChassisIntf, "RequestedPowerTransition", off);
388 try
389 {
390 bus.call_noreply(method);
391 }
Patrick Williamsa0a221f2022-07-22 19:26:53 -0500392 catch (const sdbusplus::exception_t& e)
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500393 {
394 log<level::ERR>("Error powering off the chassis",
395 entry("ERROR=%s", e.what()));
396 return IPMI_CC_UNSPECIFIED_ERROR;
397 }
Matt Spinler34aca012018-09-25 11:21:06 -0500398
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500399 // Wait a few seconds for the chassis to power off
400 std::this_thread::sleep_for(powerOffWait);
401
402 // Set Factory Reset
403 method = bus.new_method_call(bmcUpdaterServiceName, softwarePath,
404 factoryResetIntf, "Reset");
405 try
406 {
407 bus.call_noreply(method);
408 }
Patrick Williamsa0a221f2022-07-22 19:26:53 -0500409 catch (const sdbusplus::exception_t& e)
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500410 {
411 log<level::ERR>("Error setting factory reset",
412 entry("ERROR=%s", e.what()));
413 return IPMI_CC_UNSPECIFIED_ERROR;
414 }
415
416 // Wait a few seconds for service that sets the reset env variable to
417 // complete before the BMC is rebooted
418 std::this_thread::sleep_for(setFactoryWait);
419
420 // Reboot BMC
Adriana Kobylak080503e2023-01-05 13:44:25 -0600421 auto rc = rebootBMC();
422 if (rc < 0)
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500423 {
Adriana Kobylak080503e2023-01-05 13:44:25 -0600424 log<level::ALERT>("The BMC needs to be manually rebooted to complete "
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500425 "the factory reset.");
426 return IPMI_CC_UNSPECIFIED_ERROR;
427 }
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500428
429 return IPMI_CC_OK;
Adriana Kobylak81e23102018-08-09 14:44:19 -0500430}
431
Patrick Venture02261c02018-10-31 15:16:23 -0700432namespace
433{
Vishwanatha Subbanna07655062017-07-14 20:31:57 +0530434// Storage to keep the object alive during process life
435std::unique_ptr<open_power::host::command::Host> opHost
Patrick Venture02261c02018-10-31 15:16:23 -0700436 __attribute__((init_priority(101)));
Patrick Williamsa0a221f2022-07-22 19:26:53 -0500437std::unique_ptr<sdbusplus::server::manager_t> objManager
Patrick Venture02261c02018-10-31 15:16:23 -0700438 __attribute__((init_priority(101)));
439} // namespace
Vishwanatha Subbanna07655062017-07-14 20:31:57 +0530440
Andrew Jeffery8fb3f032018-07-27 16:45:44 +0930441void register_netfn_ibm_oem_commands()
Chris Austen4d98c1e2015-10-13 14:33:50 -0500442{
Patrick Venture02261c02018-10-31 15:16:23 -0700443 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", NETFUN_IBM_OEM,
444 IPMI_CMD_PESEL);
445 ipmi_register_callback(NETFUN_IBM_OEM, IPMI_CMD_PESEL, NULL,
446 ipmi_ibm_oem_partial_esel, SYSTEM_INTERFACE);
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600447
Patrick Venture02261c02018-10-31 15:16:23 -0700448 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", NETFUN_OEM,
449 IPMI_CMD_PREP_FW_UPDATE);
450 ipmi_register_callback(NETFUN_OEM, IPMI_CMD_PREP_FW_UPDATE, NULL,
451 ipmi_ibm_oem_prep_fw_update, SYSTEM_INTERFACE);
Adriana Kobylak187bfce2016-03-04 11:55:43 -0600452
Adriana Kobylak81c34df2018-11-01 11:44:16 -0500453 ipmi_register_callback(NETFUN_IBM_OEM, IPMI_CMD_BMC_FACTORY_RESET, NULL,
454 ipmi_ibm_oem_bmc_factory_reset, SYSTEM_INTERFACE);
Adriana Kobylak81e23102018-08-09 14:44:19 -0500455
Vishwanatha Subbanna07655062017-07-14 20:31:57 +0530456 // Create new object on the bus
457 auto objPath = std::string{CONTROL_HOST_OBJ_MGR} + '/' + HOST_NAME + '0';
458
459 // Add sdbusplus ObjectManager.
460 auto& sdbusPlusHandler = ipmid_get_sdbus_plus_handler();
Patrick Williamsa0a221f2022-07-22 19:26:53 -0500461 objManager = std::make_unique<sdbusplus::server::manager_t>(
Patrick Venture02261c02018-10-31 15:16:23 -0700462 *sdbusPlusHandler, CONTROL_HOST_OBJ_MGR);
Vishwanatha Subbanna07655062017-07-14 20:31:57 +0530463
464 opHost = std::make_unique<open_power::host::command::Host>(
Patrick Venture02261c02018-10-31 15:16:23 -0700465 *sdbusPlusHandler, objPath.c_str());
Vishwanatha Subbanna07655062017-07-14 20:31:57 +0530466
467 // Service for this is provided by phosphor layer systemcmdintf
468 // and this will be as part of that.
Tomcbfd6ec2016-09-14 17:45:55 +0530469 return;
Chris Austen4d98c1e2015-10-13 14:33:50 -0500470}