blob: fd8f4b60858f0d646a13e642926cce4ededc19e6 [file] [log] [blame]
/**
* Copyright 2017 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef ENABLE_IPMI_SNOOP
#include "ipmisnoop/ipmisnoop.hpp"
#endif
#include "lpcsnoop/snoop.hpp"
#include <endian.h>
#include <fcntl.h>
#include <getopt.h>
#include <sys/epoll.h>
#include <systemd/sd-event.h>
#include <unistd.h>
#include <cstdint>
#include <exception>
#include <functional>
#include <iostream>
#include <optional>
#include <sdeventplus/event.hpp>
#include <sdeventplus/source/event.hpp>
#include <sdeventplus/source/io.hpp>
#include <sdeventplus/source/signal.hpp>
#include <span>
#include <stdplus/signal.hpp>
#include <thread>
#ifdef ENABLE_IPMI_SNOOP
#include <xyz/openbmc_project/State/Boot/Raw/server.hpp>
#endif
static size_t codeSize = 1; /* Size of each POST code in bytes */
const char* defaultHostInstances = "0";
#ifdef ENABLE_IPMI_SNOOP
const uint8_t minPositionVal = 0;
const uint8_t maxPositionVal = 5;
#endif
#ifdef ENABLE_IPMI_SNOOP
std::vector<std::unique_ptr<IpmiPostReporter>> reporters;
#endif
#ifdef ENABLE_IPMI_SNOOP
void IpmiPostReporter::getSelectorPositionSignal(sdbusplus::bus::bus& bus)
{
size_t posVal = 0;
matchSignal = std::make_unique<sdbusplus::bus::match_t>(
bus,
sdbusplus::bus::match::rules::propertiesChanged(selectorObject,
selectorIface),
[&](sdbusplus::message::message& msg) {
std::string objectName;
std::map<std::string, Selector::PropertiesVariant> msgData;
msg.read(objectName, msgData);
auto valPropMap = msgData.find("Position");
{
if (valPropMap == msgData.end())
{
std::cerr << "Position property not found " << std::endl;
return;
}
posVal = std::get<size_t>(valPropMap->second);
if (posVal > minPositionVal && posVal < maxPositionVal)
{
std::tuple<uint64_t, secondary_post_code_t> postcodes =
reporters[posVal - 1]->value();
uint64_t postcode = std::get<uint64_t>(postcodes);
// write postcode into seven segment display
if (postCodeDisplay(postcode) < 0)
{
fprintf(stderr, "Error in display the postcode\n");
}
}
}
});
}
#endif
static void usage(const char* name)
{
fprintf(stderr,
"Usage: %s [-d <DEVICE>]\n"
" -b, --bytes <SIZE> set POST code length to <SIZE> bytes. "
"Default is %zu\n"
" -d, --device <DEVICE> use <DEVICE> file.\n"
" -h, --host <host instances> . Default is '%s'\n"
" -v, --verbose Prints verbose information while running\n\n",
name, codeSize, defaultHostInstances);
}
/*
* Callback handling IO event from the POST code fd. i.e. there is new
* POST code available to read.
*/
void PostCodeEventHandler(PostReporter* reporter, bool verbose,
sdeventplus::source::IO& s, int postFd, uint32_t)
{
uint64_t code = 0;
ssize_t readb;
while ((readb = read(postFd, &code, codeSize)) > 0)
{
code = le64toh(code);
if (verbose)
{
fprintf(stderr, "Code: 0x%" PRIx64 "\n", code);
}
// HACK: Always send property changed signal even for the same code
// since we are single threaded, external users will never see the
// first value.
reporter->value(std::make_tuple(~code, secondary_post_code_t{}), true);
reporter->value(std::make_tuple(code, secondary_post_code_t{}));
// read depends on old data being cleared since it doens't always read
// the full code size
code = 0;
}
if (readb < 0 && (errno == EAGAIN || errno == EWOULDBLOCK))
{
return;
}
/* Read failure. */
if (readb == 0)
{
fprintf(stderr, "Unexpected EOF reading postcode\n");
}
else
{
fprintf(stderr, "Failed to read postcode: %s\n", strerror(errno));
}
s.get_event().exit(1);
}
#ifdef ENABLE_IPMI_SNOOP
// handle muti-host D-bus
int postCodeIpmiHandler(const std::string& snoopObject,
const std::string& snoopDbus, sdbusplus::bus::bus& bus,
std::span<std::string> host)
{
int ret = 0;
try
{
for (size_t iteration = 0; iteration < host.size(); iteration++)
{
std::string objPathInst = snoopObject + host[iteration];
sdbusplus::server::manager_t m{bus, objPathInst.c_str()};
/* Create a monitor object and let it do all the rest */
reporters.emplace_back(
std::make_unique<IpmiPostReporter>(bus, objPathInst.c_str()));
reporters[iteration]->emit_object_added();
}
bus.request_name(snoopDbus.c_str());
reporters[0]->getSelectorPositionSignal(bus);
}
catch (const std::exception& e)
{
fprintf(stderr, "%s\n", e.what());
}
// Configure seven segment dsiplay connected to GPIOs as output
ret = configGPIODirOutput();
if (ret < 0)
{
fprintf(stderr, "Failed find the gpio line\n");
}
while (true)
{
bus.process_discard();
bus.wait();
}
exit(EXIT_SUCCESS);
}
#endif
/*
* TODO(venture): this only listens one of the possible snoop ports, but
* doesn't share the namespace.
*
* This polls() the lpc snoop character device and it owns the dbus object
* whose value is the latest port 80h value.
*/
int main(int argc, char* argv[])
{
#ifndef ENABLE_IPMI_SNOOP
int postFd = -1;
#endif
int opt;
bool verbose = false;
#ifdef ENABLE_IPMI_SNOOP
std::vector<std::string> host;
#endif
/*
* These string constants are only used in this method within this object
* and this object is the only object feeding into the final binary.
*
* If however, another object is added to this binary it would be proper
* to move these declarations to be global and extern to the other object.
*/
// clang-format off
static const struct option long_options[] = {
#ifdef ENABLE_IPMI_SNOOP
{"host", optional_argument, NULL, 'h'},
#endif
{"bytes", required_argument, NULL, 'b'},
#ifndef ENABLE_IPMI_SNOOP
{"device", optional_argument, NULL, 'd'},
#endif
{"verbose", no_argument, NULL, 'v'},
{0, 0, 0, 0}
};
// clang-format on
while ((opt = getopt_long(argc, argv, "h:b:d:v", long_options, NULL)) != -1)
{
switch (opt)
{
case 0:
break;
#ifdef ENABLE_IPMI_SNOOP
case 'h': {
std::string_view instances = optarg;
size_t pos = 0;
while ((pos = instances.find(" ")) != std::string::npos)
{
host.emplace_back(instances.substr(0, pos));
instances.remove_prefix(pos + 1);
}
host.emplace_back(instances);
break;
}
#endif
case 'b': {
codeSize = atoi(optarg);
if (codeSize < 1 || codeSize > 8)
{
fprintf(stderr,
"Invalid POST code size '%s'. Must be "
"an integer from 1 to 8.\n",
optarg);
exit(EXIT_FAILURE);
}
break;
}
#ifndef ENABLE_IPMI_SNOOP
case 'd':
postFd = open(optarg, O_NONBLOCK);
if (postFd < 0)
{
fprintf(stderr, "Unable to open: %s\n", optarg);
return -1;
}
break;
#endif
case 'v':
verbose = true;
break;
default:
usage(argv[0]);
}
}
auto bus = sdbusplus::bus::new_default();
#ifdef ENABLE_IPMI_SNOOP
std::cout << "Verbose = " << verbose << std::endl;
int ret = postCodeIpmiHandler(ipmiSnoopObject, snoopDbus, bus, host);
if (ret < 0)
{
fprintf(stderr, "Error in postCodeIpmiHandler\n");
return ret;
}
return 0;
#endif
#ifndef ENABLE_IPMI_SNOOP
int rc = 0;
bool deferSignals = true;
// Add systemd object manager.
sdbusplus::server::manager::manager snoopdManager(bus, snoopObject);
PostReporter reporter(bus, snoopObject, deferSignals);
reporter.emit_object_added();
bus.request_name(snoopDbus);
// Create sdevent and add IO source
try
{
sdeventplus::Event event = sdeventplus::Event::get_default();
std::optional<sdeventplus::source::IO> reporterSource;
if (postFd > 0)
{
reporterSource.emplace(
event, postFd, EPOLLIN | EPOLLET,
std::bind_front(PostCodeEventHandler, &reporter, verbose));
}
// Enable bus to handle incoming IO and bus events
bool done = false;
bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
auto intCb = [&done](sdeventplus::source::Signal& source,
const struct signalfd_siginfo*) {
source.get_event().exit(0);
done = true;
};
stdplus::signal::block(SIGINT);
sdeventplus::source::Signal(event, SIGINT, intCb).set_floating(true);
stdplus::signal::block(SIGTERM);
sdeventplus::source::Signal(event, SIGTERM, std::move(intCb))
.set_floating(true);
while (!done)
{
// Process all outstanding bus events before running the loop.
// This prevents the sd-bus handling logic from leaking memory.
// TODO: Remove when upstream fixes this bug
while (bus.process_discard() > 0)
;
// Run and never timeout
rc = event.run(std::nullopt);
}
}
catch (const std::exception& e)
{
fprintf(stderr, "%s\n", e.what());
}
if (postFd > -1)
{
close(postFd);
}
return rc;
#endif
}