Generalize the EndpointServer to require less boilerplate.

Classes can now inherit from the EndpointServer and just implement the
HandleRequest function.
This commit is contained in:
Drew Galbraith 2023-08-01 15:52:08 -07:00
parent 847d37addc
commit caccb08e16
14 changed files with 215 additions and 147 deletions

View File

@ -5,6 +5,8 @@
#include <ztypes.h> #include <ztypes.h>
#include "mammoth/endpoint_client.h" #include "mammoth/endpoint_client.h"
#include "mammoth/request_context.h"
#include "mammoth/response_context.h"
class EndpointServer { class EndpointServer {
public: public:
@ -12,19 +14,24 @@ class EndpointServer {
EndpointServer(const EndpointServer&) = delete; EndpointServer(const EndpointServer&) = delete;
EndpointServer& operator=(const EndpointServer&) = delete; EndpointServer& operator=(const EndpointServer&) = delete;
static glcr::ErrorOr<glcr::UniquePtr<EndpointServer>> Create();
static glcr::UniquePtr<EndpointServer> Adopt(z_cap_t endpoint_cap);
glcr::ErrorOr<glcr::UniquePtr<EndpointClient>> CreateClient(); glcr::ErrorOr<glcr::UniquePtr<EndpointClient>> CreateClient();
// FIXME: Release Cap here. // FIXME: Release Cap here.
z_cap_t GetCap() { return endpoint_cap_; } z_cap_t GetCap() { return endpoint_cap_; }
glcr::ErrorCode Recieve(uint64_t* num_bytes, void* data, glcr::ErrorCode Receive(uint64_t* num_bytes, void* data,
z_cap_t* reply_port_cap); z_cap_t* reply_port_cap);
glcr::ErrorCode RunServer();
virtual glcr::ErrorCode HandleRequest(RequestContext& request,
ResponseContext& response) = 0;
protected:
EndpointServer(z_cap_t cap) : endpoint_cap_(cap) {}
private: private:
z_cap_t endpoint_cap_; z_cap_t endpoint_cap_;
EndpointServer(z_cap_t cap) : endpoint_cap_(cap) {} static const uint64_t kBufferSize = 1024;
uint8_t recieve_buffer_[kBufferSize];
}; };

View File

@ -0,0 +1,32 @@
#pragma once
#include <glacier/status/error.h>
#include <stdint.h>
class RequestContext {
public:
RequestContext(void* buffer, uint64_t buffer_length)
: buffer_(buffer), buffer_length_(buffer_length) {
if (buffer_length_ < sizeof(uint64_t)) {
request_id_ = -1;
} else {
request_id_ = *reinterpret_cast<uint64_t*>(buffer);
}
}
uint64_t request_id() { return request_id_; }
template <typename T>
glcr::ErrorCode As(T** arg) {
if (buffer_length_ < sizeof(T)) {
return glcr::INVALID_ARGUMENT;
}
*arg = reinterpret_cast<T*>(buffer_);
return glcr::OK;
}
private:
uint64_t request_id_;
void* buffer_;
uint64_t buffer_length_;
};

View File

@ -0,0 +1,40 @@
#pragma once
#include <glacier/status/error.h>
#include <zcall.h>
#include <ztypes.h>
class ResponseContext {
public:
ResponseContext(z_cap_t reply_port) : reply_port_(reply_port) {}
ResponseContext(ResponseContext&) = delete;
template <typename T>
glcr::ErrorCode WriteStruct(const T& response) {
// FIXME: Here and below probably don't count as written on error.
written_ = true;
return ZReplyPortSend(reply_port_, sizeof(T), &response, 0, nullptr);
}
template <typename T>
glcr::ErrorCode WriteStructWithCap(const T& response, z_cap_t capability) {
written_ = true;
return ZReplyPortSend(reply_port_, sizeof(T), &response, 1, &capability);
}
glcr::ErrorCode WriteError(glcr::ErrorCode code) {
uint64_t response[2]{
static_cast<uint64_t>(-1),
code,
};
written_ = true;
return ZReplyPortSend(reply_port_, sizeof(response), &response, 0, nullptr);
}
bool HasWritten() { return written_; }
private:
z_cap_t reply_port_;
bool written_ = false;
};

View File

@ -1,14 +1,6 @@
#include "mammoth/endpoint_server.h" #include "mammoth/endpoint_server.h"
glcr::ErrorOr<glcr::UniquePtr<EndpointServer>> EndpointServer::Create() { #include "mammoth/debug.h"
uint64_t cap;
RET_ERR(ZEndpointCreate(&cap));
return glcr::UniquePtr<EndpointServer>(new EndpointServer(cap));
}
glcr::UniquePtr<EndpointServer> EndpointServer::Adopt(z_cap_t endpoint_cap) {
return glcr::UniquePtr<EndpointServer>(new EndpointServer(endpoint_cap));
}
glcr::ErrorOr<glcr::UniquePtr<EndpointClient>> EndpointServer::CreateClient() { glcr::ErrorOr<glcr::UniquePtr<EndpointClient>> EndpointServer::CreateClient() {
uint64_t client_cap; uint64_t client_cap;
@ -17,7 +9,24 @@ glcr::ErrorOr<glcr::UniquePtr<EndpointClient>> EndpointServer::CreateClient() {
return EndpointClient::AdoptEndpoint(client_cap); return EndpointClient::AdoptEndpoint(client_cap);
} }
glcr::ErrorCode EndpointServer::Recieve(uint64_t* num_bytes, void* data, glcr::ErrorCode EndpointServer::Receive(uint64_t* num_bytes, void* data,
z_cap_t* reply_port_cap) { z_cap_t* reply_port_cap) {
return ZEndpointRecv(endpoint_cap_, num_bytes, data, reply_port_cap); return ZEndpointRecv(endpoint_cap_, num_bytes, data, reply_port_cap);
} }
glcr::ErrorCode EndpointServer::RunServer() {
while (true) {
uint64_t message_size = kBufferSize;
uint64_t reply_port_cap = 0;
RET_ERR(Receive(&message_size, recieve_buffer_, &reply_port_cap));
RequestContext request(recieve_buffer_, message_size);
ResponseContext response(reply_port_cap);
// FIXME: Consider pumping these errors into the response as well.
RET_ERR(HandleRequest(request, response));
if (!response.HasWritten()) {
dbgln("Returning without having written a response. Req type %x",
request.request_id());
}
}
}

View File

@ -7,8 +7,8 @@
Command::~Command() {} Command::~Command() {}
DmaReadCommand::DmaReadCommand(uint64_t lba, uint64_t sector_cnt, DmaReadCommand::DmaReadCommand(uint64_t lba, uint64_t sector_cnt,
DmaCallback callback, z_cap_t reply_port) DmaCallback callback, ResponseContext& response)
: reply_port_(reply_port), : response_(response),
lba_(lba), lba_(lba),
sector_cnt_(sector_cnt), sector_cnt_(sector_cnt),
callback_(callback) { callback_(callback) {
@ -50,5 +50,5 @@ void DmaReadCommand::PopulatePrdt(PhysicalRegionDescriptor* prdt) {
prdt[0].byte_count = region_.size(); prdt[0].byte_count = region_.size();
} }
void DmaReadCommand::Callback() { void DmaReadCommand::Callback() {
callback_(reply_port_, lba_, sector_cnt_, region_.cap()); callback_(response_, lba_, sector_cnt_, region_.cap());
} }

View File

@ -1,6 +1,7 @@
#pragma once #pragma once
#include <mammoth/memory_region.h> #include <mammoth/memory_region.h>
#include <mammoth/response_context.h>
#include <stdint.h> #include <stdint.h>
#include "ahci/ahci.h" #include "ahci/ahci.h"
@ -15,9 +16,9 @@ class Command {
class DmaReadCommand : public Command { class DmaReadCommand : public Command {
public: public:
typedef void (*DmaCallback)(z_cap_t, uint64_t, uint64_t, z_cap_t); typedef void (*DmaCallback)(ResponseContext&, uint64_t, uint64_t, z_cap_t);
DmaReadCommand(uint64_t lba, uint64_t sector_cnt, DmaCallback callback, DmaReadCommand(uint64_t lba, uint64_t sector_cnt, DmaCallback callback,
z_cap_t reply_port); ResponseContext& reply_port);
virtual ~DmaReadCommand() override; virtual ~DmaReadCommand() override;
@ -27,7 +28,7 @@ class DmaReadCommand : public Command {
void Callback() override; void Callback() override;
private: private:
z_cap_t reply_port_; ResponseContext& response_;
uint64_t lba_; uint64_t lba_;
uint64_t sector_cnt_; uint64_t sector_cnt_;
DmaCallback callback_; DmaCallback callback_;

View File

@ -6,13 +6,14 @@
glcr::ErrorOr<MappedMemoryRegion> DenaliClient::ReadSectors( glcr::ErrorOr<MappedMemoryRegion> DenaliClient::ReadSectors(
uint64_t device_id, uint64_t lba, uint64_t num_sectors) { uint64_t device_id, uint64_t lba, uint64_t num_sectors) {
DenaliRead read{ DenaliReadRequest read{
.device_id = device_id, .device_id = device_id,
.lba = lba, .lba = lba,
.size = num_sectors, .size = num_sectors,
}; };
auto pair_or = auto pair_or =
endpoint_->CallEndpointGetCap<DenaliRead, DenaliReadResponse>(read); endpoint_->CallEndpointGetCap<DenaliReadRequest, DenaliReadResponse>(
read);
if (!pair_or) { if (!pair_or) {
return pair_or.error(); return pair_or.error();
} }

View File

@ -19,14 +19,14 @@ uint64_t main(uint64_t init_port_cap) {
ASSIGN_OR_RETURN(MappedMemoryRegion ahci_region, stub.GetAhciConfig()); ASSIGN_OR_RETURN(MappedMemoryRegion ahci_region, stub.GetAhciConfig());
ASSIGN_OR_RETURN(auto driver, AhciDriver::Init(ahci_region)); ASSIGN_OR_RETURN(auto driver, AhciDriver::Init(ahci_region));
ASSIGN_OR_RETURN(glcr::UniquePtr<EndpointServer> endpoint, ASSIGN_OR_RETURN(glcr::UniquePtr<DenaliServer> server,
EndpointServer::Create()); DenaliServer::Create(*driver));
ASSIGN_OR_RETURN(glcr::UniquePtr<EndpointClient> client, ASSIGN_OR_RETURN(glcr::UniquePtr<EndpointClient> client,
endpoint->CreateClient()); server->CreateClient());
check(stub.Register("denali", *client)); check(stub.Register("denali", *client));
DenaliServer server(glcr::Move(endpoint), *driver); RET_ERR(server->RunServer());
RET_ERR(server.RunServer());
// FIXME: Add thread join. // FIXME: Add thread join.
return 0; return 0;
} }

View File

@ -7,61 +7,57 @@
namespace { namespace {
DenaliServer* gServer = nullptr; DenaliServer* gServer = nullptr;
void HandleResponse(z_cap_t reply_port, uint64_t lba, uint64_t size, void HandleResponse(ResponseContext& response, uint64_t lba, uint64_t size,
z_cap_t mem) { z_cap_t mem) {
gServer->HandleResponse(reply_port, lba, size, mem); gServer->HandleResponse(response, lba, size, mem);
} }
} // namespace } // namespace
DenaliServer::DenaliServer(glcr::UniquePtr<EndpointServer> server, glcr::ErrorOr<glcr::UniquePtr<DenaliServer>> DenaliServer::Create(
AhciDriver& driver) AhciDriver& driver) {
: server_(glcr::Move(server)), driver_(driver) { z_cap_t cap;
gServer = this; RET_ERR(ZEndpointCreate(&cap));
return glcr::UniquePtr<DenaliServer>(new DenaliServer(cap, driver));
} }
glcr::ErrorCode DenaliServer::RunServer() { glcr::ErrorCode DenaliServer::HandleRequest(RequestContext& request,
while (true) { ResponseContext& response) {
uint64_t buff_size = kBuffSize; switch (request.request_id()) {
z_cap_t reply_port;
RET_ERR(server_->Recieve(&buff_size, read_buffer_, &reply_port));
if (buff_size < sizeof(uint64_t)) {
dbgln("Skipping invalid message");
continue;
}
uint64_t type = *reinterpret_cast<uint64_t*>(read_buffer_);
switch (type) {
case Z_INVALID:
dbgln(reinterpret_cast<char*>(read_buffer_));
break;
case DENALI_READ: { case DENALI_READ: {
DenaliRead* read_req = reinterpret_cast<DenaliRead*>(read_buffer_); DenaliReadRequest* req = 0;
uint64_t memcap = 0; glcr::ErrorCode err = request.As<DenaliReadRequest>(&req);
RET_ERR(HandleRead(*read_req, reply_port)); if (err != glcr::OK) {
response.WriteError(err);
}
err = HandleRead(req, response);
if (err != glcr::OK) {
response.WriteError(err);
}
break; break;
} }
default: default:
dbgln("Invalid message type."); response.WriteError(glcr::UNIMPLEMENTED);
return glcr::UNIMPLEMENTED; break;
}
} }
return glcr::OK;
} }
glcr::ErrorCode DenaliServer::HandleRead(const DenaliRead& read, glcr::ErrorCode DenaliServer::HandleRead(DenaliReadRequest* request,
z_cap_t reply_port) { ResponseContext& context) {
ASSIGN_OR_RETURN(AhciDevice * device, driver_.GetDevice(read.device_id)); ASSIGN_OR_RETURN(AhciDevice * device, driver_.GetDevice(request->device_id));
device->IssueCommand( device->IssueCommand(new DmaReadCommand(request->lba, request->size,
new DmaReadCommand(read.lba, read.size, ::HandleResponse, reply_port)); ::HandleResponse, context));
return glcr::OK; return glcr::OK;
} }
void DenaliServer::HandleResponse(z_cap_t reply_port, uint64_t lba, void DenaliServer::HandleResponse(ResponseContext& response, uint64_t lba,
uint64_t size, z_cap_t mem) { uint64_t size, z_cap_t mem) {
DenaliReadResponse resp{ DenaliReadResponse resp{
.device_id = 0, .device_id = 0,
.lba = lba, .lba = lba,
.size = size, .size = size,
}; };
check(ZReplyPortSend(reply_port, sizeof(resp), &resp, 1, &mem)); check(response.WriteStructWithCap<DenaliReadResponse>(resp, mem));
} }

View File

@ -6,21 +6,26 @@
#include "ahci/ahci_driver.h" #include "ahci/ahci_driver.h"
#include "denali/denali.h" #include "denali/denali.h"
class DenaliServer { class DenaliServer : public EndpointServer {
public: public:
DenaliServer(glcr::UniquePtr<EndpointServer> server, AhciDriver& driver); static glcr::ErrorOr<glcr::UniquePtr<DenaliServer>> Create(
AhciDriver& driver);
glcr::ErrorCode RunServer(); void HandleResponse(ResponseContext& response, uint64_t lba, uint64_t size,
void HandleResponse(z_cap_t reply_port, uint64_t lba, uint64_t size,
z_cap_t cap); z_cap_t cap);
virtual glcr::ErrorCode HandleRequest(RequestContext& request,
ResponseContext& response) override;
private: private:
static const uint64_t kBuffSize = 1024; static const uint64_t kBuffSize = 1024;
glcr::UniquePtr<EndpointServer> server_;
uint8_t read_buffer_[kBuffSize]; uint8_t read_buffer_[kBuffSize];
AhciDriver& driver_; AhciDriver& driver_;
glcr::ErrorCode HandleRead(const DenaliRead& read, z_cap_t reply_port); DenaliServer(z_cap_t endpoint_cap, AhciDriver& driver)
: EndpointServer(endpoint_cap), driver_(driver) {}
glcr::ErrorCode HandleRead(DenaliReadRequest* request,
ResponseContext& context);
}; };

View File

@ -5,7 +5,7 @@
#define DENALI_INVALID 0 #define DENALI_INVALID 0
#define DENALI_READ 100 #define DENALI_READ 100
struct DenaliRead { struct DenaliReadRequest {
uint64_t request_type = DENALI_READ; uint64_t request_type = DENALI_READ;
uint64_t device_id; uint64_t device_id;

View File

@ -13,16 +13,15 @@ uint64_t main(uint64_t port_cap) {
check(ParseInitPort(port_cap)); check(ParseInitPort(port_cap));
ASSIGN_OR_RETURN(auto server, YellowstoneServer::Create()); ASSIGN_OR_RETURN(auto server, YellowstoneServer::Create());
Thread server_thread = server->RunServer();
Thread registration_thread = server->RunRegistration(); Thread registration_thread = server->RunRegistration();
uint64_t vaddr; uint64_t vaddr;
check(ZAddressSpaceMap(gSelfVmasCap, 0, gBootDenaliVmmoCap, &vaddr)); check(ZAddressSpaceMap(gSelfVmasCap, 0, gBootDenaliVmmoCap, &vaddr));
ASSIGN_OR_RETURN(glcr::UniquePtr<EndpointClient> client, ASSIGN_OR_RETURN(glcr::UniquePtr<EndpointClient> client,
server->GetServerClient()); server->CreateClient());
check(SpawnProcessFromElfRegion(vaddr, glcr::Move(client))); check(SpawnProcessFromElfRegion(vaddr, glcr::Move(client)));
check(server_thread.Join()); check(server->RunServer());
check(registration_thread.Join()); check(registration_thread.Join());
dbgln("Yellowstone Finished Successfully."); dbgln("Yellowstone Finished Successfully.");
return 0; return 0;

View File

@ -12,11 +12,6 @@
namespace { namespace {
void ServerThreadBootstrap(void* yellowstone) {
dbgln("Yellowstone server starting");
static_cast<YellowstoneServer*>(yellowstone)->ServerThread();
}
void RegistrationThreadBootstrap(void* yellowstone) { void RegistrationThreadBootstrap(void* yellowstone) {
dbgln("Yellowstone registration starting"); dbgln("Yellowstone registration starting");
static_cast<YellowstoneServer*>(yellowstone)->RegistrationThread(); static_cast<YellowstoneServer*>(yellowstone)->RegistrationThread();
@ -40,40 +35,29 @@ glcr::ErrorOr<PartitionInfo> HandleDenaliRegistration(z_cap_t endpoint_cap) {
} // namespace } // namespace
glcr::ErrorOr<glcr::UniquePtr<YellowstoneServer>> YellowstoneServer::Create() { glcr::ErrorOr<glcr::UniquePtr<YellowstoneServer>> YellowstoneServer::Create() {
ASSIGN_OR_RETURN(auto server, EndpointServer::Create()); z_cap_t cap;
RET_ERR(ZEndpointCreate(&cap));
ASSIGN_OR_RETURN(PortServer port, PortServer::Create()); ASSIGN_OR_RETURN(PortServer port, PortServer::Create());
return glcr::UniquePtr<YellowstoneServer>( return glcr::UniquePtr<YellowstoneServer>(new YellowstoneServer(cap, port));
new YellowstoneServer(glcr::Move(server), port));
} }
YellowstoneServer::YellowstoneServer(glcr::UniquePtr<EndpointServer> server, YellowstoneServer::YellowstoneServer(z_cap_t endpoint_cap, PortServer port)
PortServer port) : EndpointServer(endpoint_cap), register_port_(port) {}
: server_(glcr::Move(server)), register_port_(port) {}
Thread YellowstoneServer::RunServer() {
return Thread(ServerThreadBootstrap, this);
}
Thread YellowstoneServer::RunRegistration() { Thread YellowstoneServer::RunRegistration() {
return Thread(RegistrationThreadBootstrap, this); return Thread(RegistrationThreadBootstrap, this);
} }
void YellowstoneServer::ServerThread() { glcr::ErrorCode YellowstoneServer::HandleRequest(RequestContext& request,
while (true) { ResponseContext& response) {
uint64_t num_bytes = kBufferSize; switch (request.request_id()) {
uint64_t reply_port_cap;
// FIXME: Error handling.
check(server_->Recieve(&num_bytes, server_buffer_, &reply_port_cap));
YellowstoneGetReq* req =
reinterpret_cast<YellowstoneGetReq*>(server_buffer_);
switch (req->type) {
case kYellowstoneGetAhci: { case kYellowstoneGetAhci: {
dbgln("Yellowstone::GetAHCI"); dbgln("Yellowstone::GetAHCI");
YellowstoneGetAhciResp resp{ YellowstoneGetAhciResp resp{
.type = kYellowstoneGetAhci, .type = kYellowstoneGetAhci,
.ahci_phys_offset = pci_reader_.GetAhciPhysical(), .ahci_phys_offset = pci_reader_.GetAhciPhysical(),
}; };
check(ZReplyPortSend(reply_port_cap, sizeof(resp), &resp, 0, nullptr)); RET_ERR(response.WriteStruct<YellowstoneGetAhciResp>(resp));
break; break;
} }
case kYellowstoneGetRegistration: { case kYellowstoneGetRegistration: {
@ -84,7 +68,7 @@ void YellowstoneServer::ServerThread() {
} }
YellowstoneGetRegistrationResp resp; YellowstoneGetRegistrationResp resp;
uint64_t reg_cap = client_or.value().cap(); uint64_t reg_cap = client_or.value().cap();
check(ZReplyPortSend(reply_port_cap, sizeof(resp), &resp, 1, &reg_cap)); RET_ERR(response.WriteStructWithCap(resp, reg_cap));
break; break;
} }
case kYellowstoneGetDenali: { case kYellowstoneGetDenali: {
@ -96,15 +80,15 @@ void YellowstoneServer::ServerThread() {
.device_id = device_id_, .device_id = device_id_,
.lba_offset = lba_offset_, .lba_offset = lba_offset_,
}; };
check(ZReplyPortSend(reply_port_cap, sizeof(resp), &resp, 1, RET_ERR(response.WriteStructWithCap(resp, new_denali));
&new_denali));
break; break;
} }
default: default:
dbgln("Unknown request type: %x", req->type); dbgln("Unknown request type: %x", request.request_id());
return glcr::UNIMPLEMENTED;
break; break;
} }
} return glcr::OK;
} }
void YellowstoneServer::RegistrationThread() { void YellowstoneServer::RegistrationThread() {
@ -127,7 +111,7 @@ void YellowstoneServer::RegistrationThread() {
uint64_t vaddr; uint64_t vaddr;
check( check(
ZAddressSpaceMap(gSelfVmasCap, 0, gBootVictoriaFallsVmmoCap, &vaddr)); ZAddressSpaceMap(gSelfVmasCap, 0, gBootVictoriaFallsVmmoCap, &vaddr));
auto client_or = GetServerClient(); auto client_or = CreateClient();
if (!client_or.ok()) { if (!client_or.ok()) {
check(client_or.error()); check(client_or.error());
} }
@ -144,8 +128,3 @@ void YellowstoneServer::RegistrationThread() {
dbgln(name.cstr()); dbgln(name.cstr());
} }
} }
glcr::ErrorOr<glcr::UniquePtr<EndpointClient>>
YellowstoneServer::GetServerClient() {
return server_->CreateClient();
}

View File

@ -8,20 +8,19 @@
#include "hw/pcie.h" #include "hw/pcie.h"
class YellowstoneServer { class YellowstoneServer : public EndpointServer {
public: public:
static glcr::ErrorOr<glcr::UniquePtr<YellowstoneServer>> Create(); static glcr::ErrorOr<glcr::UniquePtr<YellowstoneServer>> Create();
Thread RunServer();
Thread RunRegistration(); Thread RunRegistration();
void ServerThread();
void RegistrationThread(); void RegistrationThread();
glcr::ErrorOr<glcr::UniquePtr<EndpointClient>> GetServerClient(); virtual glcr::ErrorCode HandleRequest(RequestContext& request,
ResponseContext& response) override;
private: private:
glcr::UniquePtr<EndpointServer> server_; // FIXME: Separate this to its own service.
PortServer register_port_; PortServer register_port_;
static const uint64_t kBufferSize = 128; static const uint64_t kBufferSize = 128;
@ -36,5 +35,5 @@ class YellowstoneServer {
PciReader pci_reader_; PciReader pci_reader_;
YellowstoneServer(glcr::UniquePtr<EndpointServer> server, PortServer port); YellowstoneServer(z_cap_t endpoint_cap, PortServer port);
}; };