diff --git a/Makefile b/Makefile index d219a17..6c05773 100644 --- a/Makefile +++ b/Makefile @@ -441,7 +441,7 @@ $(BUILD)/filesystem.bin: \ filesystem/bin/smith \ filesystem/bin/tar rm -rf $@ $(BUILD)/filesystem/ - echo exit | cargo run --manifest-path schemes/redoxfs/Cargo.toml --bin redoxfs-utility $@ 128 + echo exit | cargo run --manifest-path schemes/redoxfs/Cargo.toml --bin redoxfs-utility $@ 256 mkdir -p $(BUILD)/filesystem/ cargo run --manifest-path schemes/redoxfs/Cargo.toml --bin redoxfs-fuse $@ $(BUILD)/filesystem/ & sleep 2 diff --git a/schemes/randd/Cargo.toml b/schemes/randd/Cargo.toml index 5c60f5c..92e12d5 100644 --- a/schemes/randd/Cargo.toml +++ b/schemes/randd/Cargo.toml @@ -1,3 +1,6 @@ [package] name = "randd" version = "0.1.0" + +[dependencies] +raw-cpuid = "2.*" diff --git a/schemes/randd/src/main.rs b/schemes/randd/src/main.rs index 5711601..b390414 100644 --- a/schemes/randd/src/main.rs +++ b/schemes/randd/src/main.rs @@ -1,36 +1,39 @@ #![feature(asm)] +#![feature(rand)] extern crate syscall; +extern crate raw_cpuid; +extern crate rand; use std::fs::File; use std::io::{Read, Write}; use std::thread; -use syscall::{Packet, Result, Scheme}; +use rand::chacha::ChaChaRng; +use rand::Rng; + +use raw_cpuid::CpuId; + +use syscall::{Packet, Result, SchemeMut}; //TODO: Use a CSPRNG, allow write of entropy -struct RandScheme; +struct RandScheme { + prng: ChaChaRng +} -impl Scheme for RandScheme { - fn open(&self, _path: &[u8], _flags: usize, _uid: u32, _gid: u32) -> Result { +impl SchemeMut for RandScheme { + fn open(&mut self, _path: &[u8], _flags: usize, _uid: u32, _gid: u32) -> Result { Ok(0) } - fn dup(&self, file: usize, _buf: &[u8]) -> Result { + fn dup(&mut self, file: usize, _buf: &[u8]) -> Result { Ok(file) } - fn read(&self, _file: usize, buf: &mut [u8]) -> Result { + fn read(&mut self, _file: usize, buf: &mut [u8]) -> Result { let mut i = 0; for chunk in buf.chunks_mut(8) { - let mut rand: u64; - unsafe { - asm!("rdrand rax" - : "={rax}"(rand) - : - : - : "intel", "volatile"); - } + let mut rand = self.prng.next_u64(); for b in chunk.iter_mut() { *b = rand as u8; rand = rand >> 8; @@ -40,15 +43,35 @@ impl Scheme for RandScheme { Ok(i) } - fn close(&self, _file: usize) -> Result { + fn close(&mut self, _file: usize) -> Result { Ok(0) } } fn main(){ + let has_rdrand = CpuId::new().get_feature_info().unwrap().has_rdrand(); + thread::spawn(move || { let mut socket = File::create(":rand").expect("rand: failed to create rand scheme"); - let scheme = RandScheme; + + let mut rng = ChaChaRng::new_unseeded(); + + if has_rdrand { + println!("rand: seeding with rdrand"); + let rand: u64; + unsafe { + asm!("rdrand rax" + : "={rax}"(rand) + : + : + : "intel", "volatile"); + } + rng.set_counter(0, rand); + } else { + println!("rand: unseeded"); + } + + let mut scheme = RandScheme{prng: rng}; loop { let mut packet = Packet::default(); socket.read(&mut packet).expect("rand: failed to read events from rand scheme"); diff --git a/schemes/redoxfs b/schemes/redoxfs index 3a58139..a0b3817 160000 --- a/schemes/redoxfs +++ b/schemes/redoxfs @@ -1 +1 @@ -Subproject commit 3a58139e5762b18fd3af399f8276ec44e7ab0978 +Subproject commit a0b381765b66fe798e8b618ad5f6568cebacf0c7