blob: ed4739886df86c6b1408177429bcb417f9a3d6a0 [file] [log] [blame]
#include <sys/socket.h>
#include <sys/un.h>
#include <chrono>
#include <cmath>
#include <phosphor-logging/log.hpp>
#include "main.hpp"
#include "sol_context.hpp"
#include "sol_manager.hpp"
namespace sol
{
using namespace phosphor::logging;
void Manager::initHostConsoleFd()
{
struct sockaddr_un addr;
int rc = 0;
int fd = 0;
fd = socket(AF_UNIX, SOCK_STREAM, 0);
if (fd < 0)
{
log<level::ERR>("Failed to open the host console socket",
entry("ERRNO=%d", errno));
throw std::runtime_error("Failed to open the host console socket");
}
memset(&addr, 0, sizeof(addr));
addr.sun_family = AF_UNIX;
memcpy(&addr.sun_path, &CONSOLE_SOCKET_PATH, CONSOLE_SOCKET_PATH_LEN);
consoleFD = std::make_unique<CustomFD>(fd);
auto& conFD = *(consoleFD.get());
rc = connect(conFD(), (struct sockaddr *)&addr, sizeof(addr));
if (rc < 0)
{
log<level::ERR>("Failed to connect to host console socket address",
entry("ERRNO=%d", errno));
consoleFD.reset();
throw std::runtime_error("Failed to connect to console server");
}
}
int Manager::writeConsoleSocket(const Buffer& input) const
{
auto inBuffer = input.data();
auto inBufferSize = input.size();
size_t pos = 0;
ssize_t rc = 0;
int errVal = 0;
auto& conFD = *(consoleFD.get());
for (pos = 0; pos < inBufferSize; pos += rc)
{
rc = write(conFD(), inBuffer + pos, inBufferSize - pos);
if (rc <= 0)
{
if (errno == EINTR)
{
log<level::INFO>(" Retrying to handle EINTR",
entry("ERRNO=%d", errno));
rc = 0;
continue;
}
else
{
errVal = errno;
log<level::ERR>("Failed to write to host console socket",
entry("ERRNO=%d", errno));
return -errVal;
}
}
}
return 0;
}
void Manager::startPayloadInstance(uint8_t payloadInstance,
session::SessionID sessionID)
{
if (payloadMap.empty())
{
initHostConsoleFd();
// Register the fd in the sd_event_loop
std::get<eventloop::EventLoop&>(singletonPool).startHostConsole(
*(consoleFD.get()));
}
// Create the SOL Context data for payload instance
auto context = std::make_unique<Context>(
accumulateInterval, retryCount, payloadInstance, sessionID);
/*
* Start payload event instance
*
* Accumulate interval is in 5 ms(milli secs) increments, since
* sd_event_add_time takes in micro secs, it is converted to micro secs.
* The Retry interval is in 10 ms (milli secs) increments.
*/
using namespace std::chrono_literals;
auto accInterval = 5ms * accumulateInterval;
auto retryInterval = 10ms * retryThreshold;
std::get<eventloop::EventLoop&>(singletonPool).startSOLPayloadInstance(
payloadInstance,
std::chrono::duration_cast<eventloop::IntervalType>(accInterval),
std::chrono::duration_cast<eventloop::IntervalType>(retryInterval));
payloadMap.emplace(payloadInstance, std::move(context));
}
} // namespace sol