blob: 6b53f8730e4d158bed03659ad2f03eb7468f8c7e [file] [log] [blame]
Patrick Venture0b02be92018-08-31 11:55:55 -07001#include "elog-errors.hpp"
2#include "error-HostEvent.hpp"
Patrick Venture46470a32018-09-07 19:26:25 -07003#include "sensorhandler.hpp"
4#include "storagehandler.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07005
6#include <mapper.h>
Patrick Venture0b02be92018-08-31 11:55:55 -07007#include <systemd/sd-bus.h>
8
9#include <algorithm>
Chris Austen41a4b312015-10-25 03:45:42 -050010#include <cstdlib>
11#include <cstring>
12#include <fstream>
13#include <iostream>
Vernon Mauerye08fbff2019-04-03 09:19:34 -070014#include <ipmid/api.hpp>
Vernon Mauery33250242019-03-12 16:49:26 -070015#include <ipmid/types.hpp>
Chris Austen41a4b312015-10-25 03:45:42 -050016#include <memory>
Saqib Khand33a4af2017-02-20 15:23:27 -060017#include <phosphor-logging/elog.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070018#include <vector>
19#include <xyz/openbmc_project/Logging/Entry/server.hpp>
20
Chris Austen41a4b312015-10-25 03:45:42 -050021using namespace std;
Adriana Kobylak2efb3e72017-02-06 21:43:59 -060022using namespace phosphor::logging;
Deepak Kodihalli3d230482018-04-03 07:00:45 -050023using namespace sdbusplus::xyz::openbmc_project::Logging::server;
Tom Josephe19540e2019-02-04 14:06:58 +053024
Tom Josephb647d5b2017-10-31 17:25:33 +053025std::string readESEL(const char* fileName)
26{
27 std::string content;
28 std::ifstream handle(fileName);
29
30 if (handle.fail())
31 {
32 log<level::ERR>("Failed to open eSEL", entry("FILENAME=%s", fileName));
33 return content;
34 }
35
36 handle.seekg(0, std::ios::end);
37 content.resize(handle.tellg());
38 handle.seekg(0, std::ios::beg);
39 handle.read(&content[0], content.size());
40 handle.close();
41
42 return content;
43}
44
45void createProcedureLogEntry(uint8_t procedureNum)
46{
47 // Read the eSEL data from the file.
48 static constexpr auto eSELFile = "/tmp/esel";
49 auto eSELData = readESEL(eSELFile);
50
51 // Each byte in eSEL is formatted as %02x with a space between bytes and
52 // insert '/0' at the end of the character array.
53 static constexpr auto byteSeparator = 3;
Patrick Venture0b02be92018-08-31 11:55:55 -070054 std::unique_ptr<char[]> data(
55 new char[(eSELData.size() * byteSeparator) + 1]());
Tom Josephb647d5b2017-10-31 17:25:33 +053056
57 for (size_t i = 0; i < eSELData.size(); i++)
58 {
59 sprintf(&data[i * byteSeparator], "%02x ", eSELData[i]);
60 }
61 data[eSELData.size() * byteSeparator] = '\0';
62
Patrick Venture0b02be92018-08-31 11:55:55 -070063 using error = sdbusplus::org::open_power::Host::Error::MaintenanceProcedure;
Tom Josephb647d5b2017-10-31 17:25:33 +053064 using metadata = org::open_power::Host::MaintenanceProcedure;
65
66 report<error>(metadata::ESEL(data.get()),
67 metadata::PROCEDURE(static_cast<uint32_t>(procedureNum)));
68}