redox/kernel/lib.rs

156 lines
3.9 KiB
Rust
Raw Normal View History

2016-08-14 00:34:27 +02:00
//! # The Redox OS Kernel, version 2
//!
//! The Redox OS Kernel is a hybrid kernel that supports X86 systems and
//! provides Unix-like syscalls for primarily Rust applications
2016-08-14 00:53:05 +02:00
//!
//! ## Syscalls
//! Syscalls in Redox are often handled by userspace `schemes`.
//! The essential syscalls in Redox are as follows:
//!
2016-08-14 00:57:21 +02:00
//! ### Open
//! `open(path: &str, flags: usize) -> Result<file_descriptor: usize>`
//!
2016-08-14 00:53:05 +02:00
//! Open a file, providing a path as a `&str` and flags, defined elsewhere.
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! Returns a number, known as a file descriptor, that is passed to other syscalls
//!
2016-08-14 00:57:21 +02:00
//! ### Close
//! `close(file_descriptor: usize) -> Result<()>`
//!
2016-08-14 00:53:05 +02:00
//! Close a file descriptor, providing the file descriptor from `open`
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! Returns an error, `EBADF`, if the file descriptor was not found.
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! This potential error is often ignored by userspace
//!
2016-08-14 00:57:21 +02:00
//! ### Duplicate
//! `dup(file_descriptor: usize) -> Result<file_descriptor: usize>`
//!
2016-08-14 00:53:05 +02:00
//! Duplicate a file descriptor, providing the file descriptor from `open`
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! Returns a new file descriptor, or an error
//!
2016-08-14 00:57:21 +02:00
//! ### Read
//! `read(file_descriptor: usize, buffer: &mut [u8]) -> Result<count: usize>`
//!
2016-08-14 00:53:05 +02:00
//! Read from a file descriptor, providing the file descriptor from `open` and a mutable buffer
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! Returns the number of bytes actually read, or an error
//!
2016-08-14 00:57:21 +02:00
//! ### Write
//! `write(file_descriptor: usize, buffer: &[u8]) -> Result<count: usize>`
//!
2016-08-14 00:53:05 +02:00
//! Write to a file descriptor, providing the file descriptor from `open` and a const buffer
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! Returns the number of bytes actually written, or an error
//!
2016-08-14 00:57:21 +02:00
//! ### Stat
//! `fstat(file_descriptor: usize, stat: &mut Stat) -> Result<()>`
//!
2016-08-14 00:53:05 +02:00
//! Get information from a file descriptor, providing the file descriptor from `open`
//! and a mutable Stat struct, defined elsewhere.
2016-08-14 02:21:46 +02:00
//!
2016-08-14 00:53:05 +02:00
//! Returns an error if the operation failed
//!
2016-08-14 00:57:21 +02:00
//! ### Path
//! `fpath(file_descriptor: usize, buffer: &mut [u8]) -> Result<count: usize>`
//!
2016-08-14 02:21:46 +02:00
//! Read the path of a file descriptor, providing the file descriptor from `open` and
//! a mutable buffer.
//!
2016-08-14 00:53:05 +02:00
//! Returns the number of bytes actually read, or an error
2016-08-14 02:21:46 +02:00
//!
//! The buffer should be 4096 bytes, to ensure that the entire path will fit.
//! An error will be returned, `ENOBUFS`, if the buffer is not long enough for the name.
//! In this case, it is recommended to add one page, 4096 bytes, to the buffer and retry.
2016-08-15 06:05:32 +02:00
#![feature(alloc)]
#![feature(asm)]
2016-08-15 06:05:32 +02:00
#![feature(collections)]
2016-08-15 02:16:56 +02:00
#![feature(const_fn)]
#![feature(drop_types_in_const)]
2016-08-14 23:58:35 +02:00
#![feature(question_mark)]
#![feature(thread_local)]
2016-08-14 02:21:46 +02:00
#![no_std]
use arch::interrupt;
2016-08-14 22:59:18 +02:00
/// Architecture specific items (test)
#[cfg(test)]
2016-08-14 19:45:47 +02:00
#[macro_use]
2016-08-14 22:59:18 +02:00
extern crate arch_test as arch;
2016-08-26 01:03:01 +02:00
/// Architecture specific items (ARM)
#[cfg(all(not(test), target_arch = "arm"))]
#[macro_use]
extern crate arch_arm as arch;
2016-08-14 22:59:18 +02:00
/// Architecture specific items (x86_64)
#[cfg(all(not(test), target_arch = "x86_64"))]
#[macro_use]
extern crate arch_x86_64 as arch;
2016-08-14 02:21:46 +02:00
2016-08-15 06:05:32 +02:00
extern crate alloc;
#[macro_use]
extern crate collections;
2016-08-16 19:04:14 +02:00
#[macro_use]
extern crate bitflags;
2016-08-19 15:57:24 +02:00
extern crate goblin;
2016-08-26 01:03:01 +02:00
extern crate ransid;
2016-08-16 19:04:14 +02:00
extern crate spin;
2016-08-26 01:03:01 +02:00
/// Console
pub mod console;
2016-08-15 02:16:56 +02:00
/// Context management
pub mod context;
/// ELF file parsing
2016-08-26 01:03:01 +02:00
#[cfg(all(not(test), target_arch = "x86_64"))]
pub mod elf;
2016-08-15 05:38:32 +02:00
/// Schemes, filesystem handlers
pub mod scheme;
2016-08-14 23:58:35 +02:00
/// Syscall handlers
pub mod syscall;
2016-08-14 22:59:18 +02:00
/// Tests
#[cfg(test)]
pub mod tests;
2016-08-24 18:35:42 +02:00
pub extern fn context_test() {
print!("TEST\n");
loop {
unsafe { interrupt::enable_and_halt(); }
}
}
#[no_mangle]
2016-08-14 19:45:47 +02:00
pub extern fn kmain() {
2016-08-20 22:32:45 +02:00
context::init();
print!("{}", format!("BSP: {:?}\n", syscall::getpid()));
2016-08-24 18:35:42 +02:00
if let Ok(context) = context::contexts_mut().spawn(context_test) {
}
2016-08-14 19:45:47 +02:00
loop {
unsafe { interrupt::enable_and_halt(); }
}
}
#[no_mangle]
pub extern fn kmain_ap(id: usize) {
2016-08-20 22:32:45 +02:00
context::init();
print!("{}", format!("AP {}: {:?}\n", id, syscall::getpid()));
loop {
unsafe { interrupt::enable_and_halt() }
2016-08-14 19:45:47 +02:00
}
}