-
Notifications
You must be signed in to change notification settings - Fork 75
/
storageaddsel.cpp
70 lines (57 loc) · 1.94 KB
/
storageaddsel.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
#include "error-HostEvent.hpp"
#include "sensorhandler.hpp"
#include "storagehandler.hpp"
#include <systemd/sd-bus.h>
#include <ipmid/api.hpp>
#include <ipmid/types.hpp>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/elog.hpp>
#include <phosphor-logging/lg2.hpp>
#include <xyz/openbmc_project/Logging/Entry/server.hpp>
#include <algorithm>
#include <cstdlib>
#include <cstring>
#include <fstream>
#include <iostream>
#include <memory>
#include <vector>
using namespace std;
using namespace phosphor::logging;
using namespace sdbusplus::server::xyz::openbmc_project::logging;
std::string readESEL(const char* fileName)
{
std::string content;
std::ifstream handle(fileName);
if (handle.fail())
{
lg2::error("Failed to open eSEL, file name: {FILENAME}", "FILENAME",
fileName);
return content;
}
handle.seekg(0, std::ios::end);
content.resize(handle.tellg());
handle.seekg(0, std::ios::beg);
handle.read(&content[0], content.size());
handle.close();
return content;
}
void createProcedureLogEntry(uint8_t procedureNum)
{
// Read the eSEL data from the file.
static constexpr auto eSELFile = "/tmp/esel";
auto eSELData = readESEL(eSELFile);
// Each byte in eSEL is formatted as %02x with a space between bytes and
// insert '/0' at the end of the character array.
static constexpr auto byteSeparator = 3;
std::unique_ptr<char[]> data(
new char[(eSELData.size() * byteSeparator) + 1]());
for (size_t i = 0; i < eSELData.size(); i++)
{
sprintf(&data[i * byteSeparator], "%02x ", eSELData[i]);
}
data[eSELData.size() * byteSeparator] = '\0';
using error = sdbusplus::error::org::open_power::host::MaintenanceProcedure;
using metadata = org::open_power::host::MaintenanceProcedure;
report<error>(metadata::ESEL(data.get()),
metadata::PROCEDURE(static_cast<uint32_t>(procedureNum)));
}