Files
BloomPatched/src/DebugServer/GdbRsp/Connection.hpp

160 lines
5.1 KiB
C++

#pragma once
#include <sys/socket.h>
#include <netinet/in.h>
#include <cstdint>
#include <utility>
#include <vector>
#include <queue>
#include <array>
#include <chrono>
#include "src/Helpers/EventNotifier.hpp"
#include "src/Helpers/EpollInstance.hpp"
#include "src/DebugServer/GdbRsp/Packet.hpp"
#include "src/DebugServer/GdbRsp/ResponsePackets/ResponsePacket.hpp"
namespace Bloom::DebugServer::Gdb
{
/**
* The Connection class represents an active connection between the GDB RSP server and client.
*/
class Connection
{
public:
explicit Connection(int serverSocketFileDescriptor, EventNotifier& interruptEventNotifier);
Connection() = delete;
Connection(const Connection&) = delete;
Connection& operator = (Connection&) = delete;
/*
* TODO: Implement this. For now, use the move constructor.
*/
Connection& operator = (Connection&&) = delete;
Connection(Connection&& other) noexcept
: interruptEventNotifier(other.interruptEventNotifier)
, socketFileDescriptor(other.socketFileDescriptor)
, epollInstance(std::move(other.epollInstance))
, readInterruptEnabled(other.readInterruptEnabled)
{
other.socketFileDescriptor = std::nullopt;
}
~Connection();
/**
* Obtains the human readable IP address of the connected client.
*
* @return
*/
[[nodiscard]] std::string getIpAddress() const;
/**
* Waits for incoming data from the client and returns the raw GDB packets.
*
* @return
*/
std::vector<RawPacketType> readRawPackets();
/**
* Sends a response packet to the client.
*
* @param packet
*/
void writePacket(const ResponsePackets::ResponsePacket& packet);
[[nodiscard]] int getMaxPacketSize() const {
return this->maxPacketSize;
}
private:
std::optional<int> socketFileDescriptor;
struct sockaddr_in socketAddress = {};
int maxPacketSize = 1024;
/**
* The interruptEventNotifier (instance of EventNotifier) allows us to interrupt blocking I/O calls on this
* connection's socket. Under the hood, the EventNotifier class is just an RAII wrapper for a Linux eventfd
* object.
*
* The file descriptors of the eventfd object and the socket are both added to an EpollInstance (which is just
* an RAII wrapper for a Linux epoll instance). The EpollInstance object is then used to wait for events on
* either of the two file descriptors. See any of the Connection I/O functions (e.g Connection::read()) for
* more on this.
*
* See the EventNotifier and EpollInstance classes for more.
*/
EventNotifier& interruptEventNotifier;
EpollInstance epollInstance = EpollInstance();
bool readInterruptEnabled = false;
/**
* Accepts a connection on serverSocketFileDescriptor.
*
* @param serverSocketFileDescriptor
*/
void accept(int serverSocketFileDescriptor);
/**
* Closes the connection with the client.
*/
void close() noexcept;
/**
* Reads data from the client into a raw buffer.
*
* @param bytes
* Number of bytes to read.
*
* @param interruptible
* If this flag is set to false, no other component within Bloom will be able to gracefully interrupt
* the read (via means of this->interruptEventNotifier). This flag has no effect if this->readInterruptEnabled
* is false.
*
* @param timeout
* The timeout in milliseconds. If not supplied, no timeout will be applied.
*
* @return
*/
std::vector<unsigned char> read(
std::size_t bytes = 0,
bool interruptible = true,
std::optional<std::chrono::milliseconds> timeout = std::nullopt
);
/**
* Does the same as Connection::read(), but only reads a single byte.
*
* @param interruptible
* See Connection::read().
*
* @return
*/
std::optional<unsigned char> readSingleByte(bool interruptible = true);
/**
* Writes data from a raw buffer to the client connection.
*
* @param buffer
*/
void write(const std::vector<unsigned char>& buffer);
/**
* Removes this->interruptEventNotifier's file descriptor from the EpollInstance (this->epollInstance),
* preventing subsequent I/O operations on this->socketFileDescriptor from being interrupted.
*/
void disableReadInterrupts();
/**
* Inserts this->interruptEventNotifier's file descriptor into the EpollInstance (this->epollInstance),
* allowing for subsequent I/O operations on this->socketFileDescriptor to be interrupted.
*/
void enableReadInterrupts();
};
}