Check for ENOENT/ENOTDIR in chdir().

This commit is contained in:
4lDO2
2022-08-23 10:49:29 +02:00
parent e0be408287
commit 1987ae7c77
+8
View File
@@ -1,3 +1,4 @@
use syscall::data::Stat;
use syscall::error::*;
use syscall::flag::*;
@@ -95,6 +96,13 @@ pub fn chdir(path: &str) -> Result<()> {
let canonicalized = canonicalize_using_cwd(cwd_guard.as_deref(), path).ok_or(Error::new(ENOENT))?;
let fd = syscall::open(&canonicalized, O_STAT | O_CLOEXEC)?;
let mut stat = Stat::default();
if syscall::fstat(fd, &mut stat).is_err() || (stat.st_mode & MODE_TYPE) != MODE_DIR {
return Err(Error::new(ENOTDIR));
}
let _ = syscall::close(fd);
*cwd_guard = Some(canonicalized.into_boxed_str());
// TODO: Check that the dir exists and is a directory.