mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-19 20:46:35 +00:00
147 lines
4.0 KiB
Rust
147 lines
4.0 KiB
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
#![no_std]
|
|
#![deny(unsafe_code)]
|
|
#![feature(trait_alias)]
|
|
#![feature(fn_traits)]
|
|
#![feature(linked_list_cursors)]
|
|
|
|
mod buffer;
|
|
pub mod dma_pool;
|
|
mod driver;
|
|
|
|
extern crate alloc;
|
|
|
|
use alloc::{collections::BTreeMap, string::String, sync::Arc, vec::Vec};
|
|
use core::{any::Any, fmt::Debug};
|
|
|
|
use aster_frame::sync::SpinLock;
|
|
use aster_util::safe_ptr::Pod;
|
|
pub use buffer::{RxBuffer, TxBuffer};
|
|
use component::{init_component, ComponentInitError};
|
|
pub use dma_pool::DmaSegment;
|
|
use smoltcp::phy;
|
|
use spin::Once;
|
|
|
|
#[derive(Debug, Clone, Copy, Pod)]
|
|
#[repr(C)]
|
|
pub struct EthernetAddr(pub [u8; 6]);
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub enum VirtioNetError {
|
|
NotReady,
|
|
WrongToken,
|
|
Unknown,
|
|
}
|
|
|
|
pub trait AnyNetworkDevice: Send + Sync + Any + Debug {
|
|
// ================Device Information=================
|
|
|
|
fn mac_addr(&self) -> EthernetAddr;
|
|
fn capabilities(&self) -> phy::DeviceCapabilities;
|
|
|
|
// ================Device Operation===================
|
|
|
|
fn can_receive(&self) -> bool;
|
|
fn can_send(&self) -> bool;
|
|
/// Receive a packet from network. If packet is ready, returns a RxBuffer containing the packet.
|
|
/// Otherwise, return NotReady error.
|
|
fn receive(&mut self) -> Result<RxBuffer, VirtioNetError>;
|
|
/// Send a packet to network. Return until the request completes.
|
|
fn send(&mut self, packet: &[u8]) -> Result<(), VirtioNetError>;
|
|
}
|
|
|
|
pub trait NetDeviceIrqHandler = Fn() + Send + Sync + 'static;
|
|
|
|
pub fn register_device(name: String, device: Arc<SpinLock<dyn AnyNetworkDevice>>) {
|
|
COMPONENT
|
|
.get()
|
|
.unwrap()
|
|
.network_device_table
|
|
.lock_irq_disabled()
|
|
.insert(name, (Arc::new(SpinLock::new(Vec::new())), device));
|
|
}
|
|
|
|
pub fn get_device(str: &str) -> Option<Arc<SpinLock<dyn AnyNetworkDevice>>> {
|
|
let table = COMPONENT
|
|
.get()
|
|
.unwrap()
|
|
.network_device_table
|
|
.lock_irq_disabled();
|
|
let (_, device) = table.get(str)?;
|
|
Some(device.clone())
|
|
}
|
|
|
|
/// Registers callback which will be called when receiving message.
|
|
///
|
|
/// Since the callback will be called in interrupt context,
|
|
/// the callback function should NOT sleep.
|
|
pub fn register_recv_callback(name: &str, callback: impl NetDeviceIrqHandler) {
|
|
let device_table = COMPONENT
|
|
.get()
|
|
.unwrap()
|
|
.network_device_table
|
|
.lock_irq_disabled();
|
|
let Some((callbacks, _)) = device_table.get(name) else {
|
|
return;
|
|
};
|
|
callbacks.lock_irq_disabled().push(Arc::new(callback));
|
|
}
|
|
|
|
pub fn handle_recv_irq(name: &str) {
|
|
let device_table = COMPONENT
|
|
.get()
|
|
.unwrap()
|
|
.network_device_table
|
|
.lock_irq_disabled();
|
|
let Some((callbacks, _)) = device_table.get(name) else {
|
|
return;
|
|
};
|
|
let callbacks = callbacks.lock_irq_disabled();
|
|
for callback in callbacks.iter() {
|
|
callback();
|
|
}
|
|
}
|
|
|
|
pub fn all_devices() -> Vec<(String, NetworkDeviceRef)> {
|
|
let network_devs = COMPONENT
|
|
.get()
|
|
.unwrap()
|
|
.network_device_table
|
|
.lock_irq_disabled();
|
|
network_devs
|
|
.iter()
|
|
.map(|(name, (_, device))| (name.clone(), device.clone()))
|
|
.collect()
|
|
}
|
|
|
|
static COMPONENT: Once<Component> = Once::new();
|
|
pub(crate) static NETWORK_IRQ_HANDLERS: Once<SpinLock<Vec<Arc<dyn NetDeviceIrqHandler>>>> =
|
|
Once::new();
|
|
|
|
#[init_component]
|
|
fn init() -> Result<(), ComponentInitError> {
|
|
let a = Component::init()?;
|
|
COMPONENT.call_once(|| a);
|
|
NETWORK_IRQ_HANDLERS.call_once(|| SpinLock::new(Vec::new()));
|
|
buffer::init();
|
|
Ok(())
|
|
}
|
|
|
|
type NetDeviceIrqHandlerListRef = Arc<SpinLock<Vec<Arc<dyn NetDeviceIrqHandler>>>>;
|
|
type NetworkDeviceRef = Arc<SpinLock<dyn AnyNetworkDevice>>;
|
|
|
|
struct Component {
|
|
/// Device list, the key is device name, value is (callbacks, device);
|
|
network_device_table:
|
|
SpinLock<BTreeMap<String, (NetDeviceIrqHandlerListRef, NetworkDeviceRef)>>,
|
|
}
|
|
|
|
impl Component {
|
|
pub fn init() -> Result<Self, ComponentInitError> {
|
|
Ok(Self {
|
|
network_device_table: SpinLock::new(BTreeMap::new()),
|
|
})
|
|
}
|
|
}
|