2019-02-22 19:48:05 +04:00
|
|
|
use rcore_memory::memory_set::handler::Delay;
|
|
|
|
use rcore_memory::memory_set::MemoryAttr;
|
2019-03-07 20:03:06 +04:00
|
|
|
use rcore_memory::paging::PageTable;
|
|
|
|
use rcore_memory::Page;
|
2019-03-07 18:06:26 +04:00
|
|
|
use rcore_memory::PAGE_SIZE;
|
2019-02-22 19:48:05 +04:00
|
|
|
|
|
|
|
use crate::memory::GlobalFrameAlloc;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2019-03-08 10:22:00 +04:00
|
|
|
pub fn sys_mmap(mut addr: usize, mut len: usize, prot: usize, flags: usize, fd: i32, offset: usize) -> SysResult {
|
2019-02-27 20:15:33 +04:00
|
|
|
let prot = MmapProt::from_bits_truncate(prot);
|
|
|
|
let flags = MmapFlags::from_bits_truncate(flags);
|
2019-03-07 20:03:06 +04:00
|
|
|
info!("mmap: addr={:#x}, size={:#x}, prot={:?}, flags={:?}, fd={}, offset={:#x}", addr, len, prot, flags, fd, offset);
|
2019-02-27 20:15:33 +04:00
|
|
|
|
2019-02-25 20:46:09 +04:00
|
|
|
let mut proc = process();
|
2019-03-07 18:06:26 +04:00
|
|
|
if addr == 0 {
|
|
|
|
// although NULL can be a valid address
|
|
|
|
// but in C, NULL is regarded as allocation failure
|
|
|
|
// so just skip it
|
|
|
|
addr = PAGE_SIZE;
|
|
|
|
}
|
2019-03-08 10:22:00 +04:00
|
|
|
|
|
|
|
if flags.contains(MmapFlags::FIXED) {
|
|
|
|
// we have to map it to addr, so remove the old mapping first
|
|
|
|
proc.memory_set.pop(addr, addr + len);
|
|
|
|
} else {
|
|
|
|
addr = proc.memory_set.find_free_area(addr, len);
|
|
|
|
}
|
2019-02-25 20:46:09 +04:00
|
|
|
|
2019-02-22 19:48:05 +04:00
|
|
|
if flags.contains(MmapFlags::ANONYMOUS) {
|
|
|
|
if flags.contains(MmapFlags::SHARED) {
|
2019-02-28 06:59:52 +04:00
|
|
|
return Err(SysError::EINVAL);
|
2019-02-22 19:48:05 +04:00
|
|
|
}
|
2019-03-08 06:10:13 +04:00
|
|
|
proc.memory_set.push(addr, addr + len, prot.to_attr(), Delay::new(GlobalFrameAlloc), "mmap");
|
2019-03-08 15:04:39 +04:00
|
|
|
return Ok(addr);
|
2019-02-22 19:48:05 +04:00
|
|
|
}
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2019-03-07 20:03:06 +04:00
|
|
|
pub fn sys_mprotect(addr: usize, len: usize, prot: usize) -> SysResult {
|
|
|
|
let prot = MmapProt::from_bits_truncate(prot);
|
|
|
|
info!("mprotect: addr={:#x}, size={:#x}, prot={:?}", addr, len, prot);
|
|
|
|
|
|
|
|
let mut proc = process();
|
2019-03-08 06:10:13 +04:00
|
|
|
let attr = prot.to_attr();
|
2019-03-07 20:03:06 +04:00
|
|
|
|
2019-03-08 18:37:05 +04:00
|
|
|
// FIXME: properly set the attribute of the area
|
|
|
|
// now some mut ptr check is fault
|
2019-03-07 20:03:06 +04:00
|
|
|
let memory_area = proc.memory_set.iter().find(|area| area.contains(addr));
|
2019-03-08 18:37:05 +04:00
|
|
|
if memory_area.is_none() {
|
|
|
|
return Err(SysError::ENOMEM);
|
2019-03-07 20:03:06 +04:00
|
|
|
}
|
2019-03-08 18:37:05 +04:00
|
|
|
proc.memory_set.edit(|pt| {
|
|
|
|
for page in Page::range_of(addr, addr + len) {
|
|
|
|
let entry = pt.get_entry(page.start_address()).expect("failed to get entry");
|
|
|
|
attr.apply(entry);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Ok(0)
|
2019-03-07 20:03:06 +04:00
|
|
|
}
|
|
|
|
|
2019-02-22 19:48:05 +04:00
|
|
|
pub fn sys_munmap(addr: usize, len: usize) -> SysResult {
|
2019-03-02 16:15:55 +04:00
|
|
|
info!("munmap addr={:#x}, size={:#x}", addr, len);
|
|
|
|
let mut proc = process();
|
|
|
|
proc.memory_set.pop(addr, addr + len);
|
|
|
|
Ok(0)
|
2019-02-22 19:48:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bitflags! {
|
|
|
|
pub struct MmapProt: usize {
|
|
|
|
/// Data cannot be accessed
|
|
|
|
const NONE = 0;
|
|
|
|
/// Data can be read
|
|
|
|
const READ = 1 << 0;
|
|
|
|
/// Data can be written
|
|
|
|
const WRITE = 1 << 1;
|
|
|
|
/// Data can be executed
|
|
|
|
const EXEC = 1 << 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bitflags! {
|
|
|
|
pub struct MmapFlags: usize {
|
|
|
|
/// Changes are shared.
|
|
|
|
const SHARED = 1 << 0;
|
|
|
|
/// Changes are private.
|
|
|
|
const PRIVATE = 1 << 1;
|
2019-03-08 10:22:00 +04:00
|
|
|
/// Place the mapping at the exact address
|
|
|
|
const FIXED = 1 << 4;
|
2019-02-22 19:48:05 +04:00
|
|
|
/// The mapping is not backed by any file. (non-POSIX)
|
|
|
|
const ANONYMOUS = 1 << 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-08 06:10:13 +04:00
|
|
|
impl MmapProt {
|
|
|
|
fn to_attr(self) -> MemoryAttr {
|
|
|
|
let mut attr = MemoryAttr::default().user();
|
|
|
|
if self.contains(MmapProt::EXEC) { attr = attr.execute(); }
|
|
|
|
if !self.contains(MmapProt::WRITE) { attr = attr.readonly(); }
|
|
|
|
attr
|
|
|
|
}
|
|
|
|
}
|