1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
use core::any::TypeId;
use crate::{
comms::oneshot::Reusable,
tracing::{self, debug, info},
};
use mnemos_alloc::containers::FixedVec;
use postcard::experimental::max_size::MaxSize;
use serde::{de::DeserializeOwned, Deserialize, Serialize};
use spitebuf::EnqueueError;
pub use uuid::{uuid, Uuid};
use crate::comms::{
bbq,
kchannel::{ErasedKProducer, KProducer},
oneshot::{ReusableError, Sender},
};
/// A partial list of known UUIDs of driver services
pub mod known_uuids {
use super::*;
/// Kernel UUIDs
pub mod kernel {
use super::*;
pub const SERIAL_MUX: Uuid = uuid!("54c983fa-736f-4223-b90d-c4360a308647");
pub const SIMPLE_SERIAL_PORT: Uuid = uuid!("f06aac01-2773-4266-8681-583ffe756554");
pub const EMB_DISPLAY: Uuid = uuid!("b54db574-3eb7-4c89-8bfb-1a20890be68e");
pub const FORTH_SPAWNULATOR: Uuid = uuid!("4ae4a406-005a-4bde-be91-afc1900f76fa");
}
// In case you need to iterate over every UUID
pub static ALL: &[Uuid] = &[
kernel::SERIAL_MUX,
kernel::SIMPLE_SERIAL_PORT,
kernel::EMB_DISPLAY,
kernel::FORTH_SPAWNULATOR,
];
}
/// A marker trait designating a registerable driver service.
///
/// Typically used with [Registry::register] or [Registry::register_konly].
/// Can typically be retrieved by [Registry::get] or [Registry::get_userspace]
/// After the service has been registered.
pub trait RegisteredDriver {
/// This is the type of the request sent TO the driver service
type Request: 'static;
/// This is the type of a SUCCESSFUL response sent FROM the driver service
type Response: 'static;
/// This is the type of an UNSUCCESSFUL response sent FROM the driver service
type Error: 'static;
/// This is the UUID of the driver service
const UUID: Uuid;
/// Get the type_id used to make sure that driver instances are correctly typed.
/// Corresponds to the same type ID as `(Self::Request, Self::Response, Self::Error)`
fn type_id() -> RegistryType {
RegistryType {
tuple_type_id: TypeId::of::<(Self::Request, Self::Response, Self::Error)>(),
}
}
}
pub struct RegistryType {
tuple_type_id: TypeId,
}
/// The driver registry used by the kernel.
pub struct Registry {
items: FixedVec<RegistryItem>,
counter: u32,
}
// TODO: This probably goes into the ABI crate, here is fine for now
#[derive(Serialize, Deserialize)]
pub struct UserRequest<'a> {
// TODO: Maybe not the UUID, maybe pre-discover a shorter UID?
uid: Uuid,
nonce: u32,
#[serde(borrow)]
req_bytes: &'a [u8],
}
// TODO: This probably goes into the ABI crate, here is fine for now
#[derive(Serialize, Deserialize)]
pub struct UserResponse<U, E> {
// TODO: Maybe not the UUID, maybe pre-discover a shorter UID?
uuid: Uuid,
nonce: u32,
reply: Result<U, E>,
//
// KEEP IN SYNC WITH POSTCARD_MAX_SIZE BELOW!
//
}
// UserResponse
impl<U: MaxSize, E: MaxSize> MaxSize for UserResponse<U, E> {
//
// KEEP IN SYNC WITH STRUCT DEFINITION ABOVE!
//
const POSTCARD_MAX_SIZE: usize = {
<[u8; 16] as MaxSize>::POSTCARD_MAX_SIZE
+ <u32 as MaxSize>::POSTCARD_MAX_SIZE
+ <Result<U, E> as MaxSize>::POSTCARD_MAX_SIZE
};
}
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct ServiceId(pub(crate) u32);
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct ClientId(pub(crate) u32);
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct RequestResponseId(u32);
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum MessageKind {
Request,
Response,
}
impl RequestResponseId {
pub fn new(id: u32, kind: MessageKind) -> Self {
let bit = match kind {
MessageKind::Request => 0b1,
MessageKind::Response => 0b0,
};
Self((id << 1) | bit)
}
pub fn id(&self) -> u32 {
self.0 >> 1
}
pub fn kind(&self) -> MessageKind {
let bit = self.0 & 0b1;
if bit == 1 {
MessageKind::Request
} else {
MessageKind::Response
}
}
}
/// A wrapper for a message TO and FROM a driver service.
/// Used to be able to add additional message metadata without
/// changing the fundamental message type.
#[non_exhaustive]
pub struct Envelope<P> {
pub body: P,
service_id: ServiceId,
client_id: ClientId,
request_id: RequestResponseId,
}
/// The [Message] kind represents a full reply/response sequence to
/// a driver service. This is the concrete type received by the driver
/// service.
///
/// It contains the Request, e.g. [RegisteredDriver::Request], as well
/// as a [ReplyTo] that allows the driver service to respond to a given
/// request
pub struct Message<RD: RegisteredDriver> {
pub msg: Envelope<RD::Request>,
pub reply: ReplyTo<RD>,
}
/// A `ReplyTo` is used to allow the CLIENT of a service to choose the
/// way that the driver SERVICE replies to us. Essentially, this acts
/// as a "self addressed stamped envelope" for the SERVICE to use to
/// reply to the CLIENT.
pub enum ReplyTo<RD: RegisteredDriver> {
// This can be used to reply directly to another kernel entity,
// without a serialization step
KChannel(KProducer<Envelope<Result<RD::Response, RD::Error>>>),
// This can be used to reply directly ONCE to another kernel entity,
// without a serialization step
OneShot(Sender<Envelope<Result<RD::Response, RD::Error>>>),
// This can be used to reply to userspace. Responses are serialized
// and sent over the bbq::MpscProducer
Userspace {
nonce: u32,
outgoing: bbq::MpscProducer,
},
}
#[derive(Debug, Eq, PartialEq)]
pub enum ReplyError {
KOnlyUserspaceResponse,
ReplyChannelClosed,
UserspaceSerializationError,
InternalError,
}
#[derive(Debug, Eq, PartialEq)]
pub enum UserHandlerError {
DeserializationFailed,
QueueFull,
}
#[derive(Debug, Eq, PartialEq)]
pub enum RegistrationError {
UuidAlreadyRegistered,
RegistryFull,
}
#[derive(Debug, Eq, PartialEq)]
pub enum OneshotRequestError {
/// An error occurred while acquiring a sender.
Sender(ReusableError),
/// Sending the request failed.
Send,
/// An error occurred while receiving the response.
Receive(ReusableError),
}
impl From<ReusableError> for ReplyError {
fn from(err: ReusableError) -> Self {
match err {
ReusableError::ChannelClosed => ReplyError::ReplyChannelClosed,
_ => ReplyError::InternalError,
}
}
}
impl<T> From<EnqueueError<T>> for ReplyError {
fn from(enq: EnqueueError<T>) -> Self {
match enq {
// Should not be possible with async calls
EnqueueError::Full(_) => ReplyError::InternalError,
EnqueueError::Closed(_) => ReplyError::ReplyChannelClosed,
}
}
}
/// A UserspaceHandle is used to process incoming serialized messages from
/// userspace. It contains a method that can be used to deserialize messages
/// from a given UUID, and send that request (if the deserialization is
/// successful) to a given driver service.
pub struct UserspaceHandle {
req_producer_leaked: ErasedKProducer,
req_deser: ErasedDeserHandler,
service_id: ServiceId,
client_id: ClientId,
}
/// A KernelHandle is used to send typed messages to a kernelspace Driver
/// service.
pub struct KernelHandle<RD: RegisteredDriver> {
prod: KProducer<Message<RD>>,
service_id: ServiceId,
client_id: ClientId,
request_ctr: u32,
}
type ErasedDeserHandler = unsafe fn(
UserRequest<'_>,
&ErasedKProducer,
&bbq::MpscProducer,
ServiceId,
ClientId,
) -> Result<(), UserHandlerError>;
/// The payload of a registry item.
///
/// The typeid is stored here to allow the userspace handle to look up the UUID key
/// without knowing the proper typeid. Kernel space drivers should always check that the
/// tuple type id is correct.
struct RegistryValue {
req_resp_tuple_id: TypeId,
req_prod: ErasedKProducer,
req_deser: Option<ErasedDeserHandler>,
service_id: ServiceId,
}
/// Right now we don't use a real HashMap, but rather a hand-rolled index map.
/// Therefore our registry is basically a `Vec<RegistryItem>`.
struct RegistryItem {
key: Uuid,
value: RegistryValue,
}
// RegistryType
impl RegistryType {
pub fn type_of(&self) -> TypeId {
self.tuple_type_id
}
}
// Registry
impl Registry {
/// Create a new registry with room for up to `max_items` registered drivers.
pub fn new(max_items: usize) -> Self {
Self {
items: FixedVec::try_new(max_items).unwrap(),
counter: 0,
}
}
/// Register a driver service ONLY for use in the kernel, including drivers.
///
/// Driver services registered with [Registry::register_konly] can NOT be queried
/// or interfaced with from Userspace. If a registered service has request
/// and response types that are serializable, it can instead be registered
/// with [Registry::register] which allows for userspace access.
#[tracing::instrument(
name = "Registry::register_konly",
level = "debug",
skip(self, kch),
fields(uuid = ?RD::UUID),
)]
pub fn register_konly<RD: RegisteredDriver>(
&mut self,
kch: &KProducer<Message<RD>>,
) -> Result<(), RegistrationError> {
if self.items.as_slice().iter().any(|i| i.key == RD::UUID) {
return Err(RegistrationError::UuidAlreadyRegistered);
}
self.items
.try_push(RegistryItem {
key: RD::UUID,
value: RegistryValue {
req_resp_tuple_id: RD::type_id().type_of(),
req_prod: kch.clone().type_erase(),
req_deser: None,
service_id: ServiceId(self.counter),
},
})
.map_err(|_| RegistrationError::RegistryFull)?;
info!(uuid = ?RD::UUID, service_id = self.counter, "Registered KOnly");
self.counter = self.counter.wrapping_add(1);
Ok(())
}
/// Register a driver service for use in the kernel (including drivers) as
/// well as in userspace.
///
/// See [Registry::register_konly] if the request and response types are not
/// serializable.
#[tracing::instrument(
name = "Registry::register",
level = "debug",
skip(self, kch),
fields(uuid = ?RD::UUID),
)]
pub fn register<RD>(&mut self, kch: &KProducer<Message<RD>>) -> Result<(), RegistrationError>
where
RD: RegisteredDriver,
RD::Request: Serialize + DeserializeOwned,
RD::Response: Serialize + DeserializeOwned,
{
if self.items.as_slice().iter().any(|i| i.key == RD::UUID) {
return Err(RegistrationError::UuidAlreadyRegistered);
}
self.items
.try_push(RegistryItem {
key: RD::UUID,
value: RegistryValue {
req_resp_tuple_id: RD::type_id().type_of(),
req_prod: kch.clone().type_erase(),
req_deser: Some(map_deser::<RD>),
service_id: ServiceId(self.counter),
},
})
.map_err(|_| RegistrationError::RegistryFull)?;
info!(uuid = ?RD::UUID, service_id = self.counter, "Registered");
self.counter = self.counter.wrapping_add(1);
Ok(())
}
/// Get a kernelspace (including drivers) handle of a given driver service.
///
/// This can be used by drivers and tasks to interface with a registered driver
/// service.
///
/// The driver service MUST have already been registered using [Registry::register] or
/// [Registry::register_konly] prior to making this call, otherwise no handle will
/// be returned.
#[tracing::instrument(
name = "Registry::get",
level = "debug",
skip(self),
fields(uuid = ?RD::UUID),
)]
pub fn get<RD: RegisteredDriver>(&mut self) -> Option<KernelHandle<RD>> {
let item = self.items.as_slice().iter().find(|i| i.key == RD::UUID)?;
if item.value.req_resp_tuple_id != RD::type_id().type_of() {
return None;
}
unsafe {
let res = Some(KernelHandle {
prod: item.value.req_prod.clone_typed(),
service_id: item.value.service_id,
client_id: ClientId(self.counter),
request_ctr: 0,
});
info!(uuid = ?RD::UUID, service_id = item.value.service_id.0, client_id = self.counter, "Got KernelHandle from Registry");
self.counter = self.counter.wrapping_add(1);
res
}
}
/// Get a handle capable of processing serialized userspace messages to a
/// registered driver service.
///
/// The driver service MUST have already been registered using [Registry::register] or
/// prior to making this call, otherwise no handle will be returned.
///
/// Driver services registered with [Registry::register_konly] cannot be retrieved via
/// a call to [Registry::get_userspace].
#[tracing::instrument(
name = "Registry::get_userspace",
level = "debug",
skip(self),
fields(uuid = ?RD::UUID),
)]
pub fn get_userspace<RD>(&mut self) -> Option<UserspaceHandle>
where
RD: RegisteredDriver,
RD::Request: Serialize + DeserializeOwned,
RD::Response: Serialize + DeserializeOwned,
{
let item = self.items.as_slice().iter().find(|i| i.key == RD::UUID)?;
let client_id = self.counter;
info!(uuid = ?RD::UUID, service_id = item.value.service_id.0, client_id = self.counter, "Got KernelHandle from Registry");
self.counter = self.counter.wrapping_add(1);
Some(UserspaceHandle {
req_producer_leaked: item.value.req_prod.clone(),
req_deser: item.value.req_deser?,
service_id: item.value.service_id,
client_id: ClientId(client_id),
})
}
}
// UserRequest
// Envelope
impl<P> Envelope<P> {
/// Create a response Envelope from a given request Envelope.
///
/// Maintains the same Service ID and Client ID, and increments the
/// request ID by one.
pub fn reply_with<U>(&self, body: U) -> Envelope<U> {
Envelope {
body,
service_id: self.service_id,
client_id: self.client_id,
request_id: RequestResponseId::new(self.request_id.id(), MessageKind::Response),
}
}
/// Create a response Envelope from a given request Envelope.
///
/// Maintains the same Service ID and Client ID, and increments the
/// request ID by one.
///
/// This variant also gives you the request body in case you need it for
/// the response.
pub fn reply_with_body<F, U>(self, f: F) -> Envelope<U>
where
F: FnOnce(P) -> U,
{
Envelope {
service_id: self.service_id,
client_id: self.client_id,
request_id: RequestResponseId::new(self.request_id.id(), MessageKind::Response),
body: f(self.body),
}
}
}
// Message
// ReplyTo
impl<RD: RegisteredDriver> ReplyTo<RD> {
pub async fn reply_konly(
self,
envelope: Envelope<Result<RD::Response, RD::Error>>,
) -> Result<(), ReplyError> {
debug!(
service_id = envelope.service_id.0,
client_id = envelope.client_id.0,
response_id = envelope.request_id.id(),
"Replying KOnly",
);
match self {
ReplyTo::KChannel(kprod) => {
kprod.enqueue_async(envelope).await?;
}
ReplyTo::OneShot(sender) => {
sender.send(envelope)?;
}
ReplyTo::Userspace { .. } => return Err(ReplyError::KOnlyUserspaceResponse),
}
Ok(())
}
}
impl<RD: RegisteredDriver> ReplyTo<RD>
where
RD::Response: Serialize + MaxSize,
RD::Error: Serialize + MaxSize,
{
pub async fn reply(
self,
uuid_source: Uuid,
envelope: Envelope<Result<RD::Response, RD::Error>>,
) -> Result<(), ReplyError> {
debug!(
service_id = envelope.service_id.0,
client_id = envelope.client_id.0,
response_id = envelope.request_id.id(),
"Replying",
);
match self {
ReplyTo::KChannel(kprod) => {
kprod.enqueue_async(envelope).await?;
Ok(())
}
ReplyTo::OneShot(sender) => {
sender.send(envelope)?;
Ok(())
}
ReplyTo::Userspace { nonce, outgoing } => {
let mut wgr = outgoing
.send_grant_exact(
<UserResponse<RD::Response, RD::Error> as MaxSize>::POSTCARD_MAX_SIZE,
)
.await;
let used = postcard::to_slice(
&UserResponse {
uuid: uuid_source,
nonce,
reply: envelope.body,
},
&mut wgr,
)
.map_err(|_| ReplyError::UserspaceSerializationError)?;
let len = used.len();
wgr.commit(len);
Ok(())
}
}
}
}
// UserspaceHandle
impl UserspaceHandle {
pub fn process_msg(
&self,
user_msg: UserRequest<'_>,
user_ring: &bbq::MpscProducer,
) -> Result<(), UserHandlerError> {
unsafe {
(self.req_deser)(
user_msg,
&self.req_producer_leaked,
user_ring,
self.service_id,
self.client_id,
)
}
}
}
// KernelHandle
impl<RD: RegisteredDriver> KernelHandle<RD> {
pub async fn send(&mut self, msg: RD::Request, reply: ReplyTo<RD>) -> Result<(), ()> {
let request_id = RequestResponseId::new(self.request_ctr, MessageKind::Request);
self.request_ctr = self.request_ctr.wrapping_add(1);
self.prod
.enqueue_async(Message {
msg: Envelope {
body: msg,
service_id: self.service_id,
client_id: self.client_id,
request_id,
},
reply,
})
.await
.map_err(drop)?;
debug!(
service_id = self.service_id.0,
client_id = self.client_id.0,
request_id = request_id.id(),
"Sent Request"
);
Ok(())
}
/// Send a [`ReplyTo::OneShot`] request using the provided [`Reusable`]
/// oneshot channel, and await the response from that channel.
pub async fn request_oneshot(
&mut self,
msg: RD::Request,
reply: &Reusable<Envelope<Result<RD::Response, RD::Error>>>,
) -> Result<Envelope<Result<RD::Response, RD::Error>>, OneshotRequestError> {
let tx = reply.sender().await.map_err(OneshotRequestError::Sender)?;
self.send(msg, ReplyTo::OneShot(tx))
.await
.map_err(|_| OneshotRequestError::Send)?;
reply.receive().await.map_err(OneshotRequestError::Receive)
}
}
// -- other --
/// A monomorphizable function that allows us to store the serialization type within
/// the function itself, allowing for a type-erased function pointer to be stored
/// inside of the registry.
///
/// SAFETY:
///
/// This function MUST be called with a `RegisteredDriver` type matching the type
/// used to create the `ErasedKProducer`.
unsafe fn map_deser<RD>(
umsg: UserRequest<'_>,
req_tx: &ErasedKProducer,
user_resp: &bbq::MpscProducer,
service_id: ServiceId,
client_id: ClientId,
) -> Result<(), UserHandlerError>
where
RD: RegisteredDriver,
RD::Request: Serialize + DeserializeOwned,
RD::Response: Serialize + DeserializeOwned,
{
// Un-type-erase the producer channel
//
// TODO: We don't really need to clone the producer, we just need a reference valid
// for the lifetime of `req_tx`. Consider adding a method for this before merging
// https://github.com/tosc-rs/mnemos/pull/25.
//
// This PROBABLY would require a "with"/closure method to make sure the producer ref
// doesn't outlive the LeakedKProducer reference.
let req_prod = req_tx.clone_typed::<Message<RD>>();
// Deserialize the request, if it doesn't have the right contents, deserialization will fail.
let u_payload: RD::Request = postcard::from_bytes(umsg.req_bytes)
.map_err(|_| UserHandlerError::DeserializationFailed)?;
// Create the message type to be sent on the channel
let msg: Message<RD> = Message {
msg: Envelope {
body: u_payload,
service_id,
client_id,
request_id: RequestResponseId::new(umsg.nonce, MessageKind::Request),
},
reply: ReplyTo::Userspace {
nonce: umsg.nonce,
outgoing: user_resp.clone(),
},
};
// Send the message, and report any failures
req_prod
.enqueue_sync(msg)
.map_err(|_| UserHandlerError::QueueFull)
}