Explorar o código

fix: 修复elf加载器在读取解释器路径时的越界问题 (#1124)

Signed-off-by: longjin <longjin@DragonOS.org>
LoGin hai 5 días
pai
achega
55833537f1
Modificáronse 1 ficheiros con 18 adicións e 6 borrados
  1. 18 6
      kernel/src/libs/elf.rs

+ 18 - 6
kernel/src/libs/elf.rs

@@ -558,14 +558,26 @@ impl BinaryLoader for ElfLoader {
             if seg.p_filesz > 4096 || seg.p_filesz < 2 {
                 return Err(ExecError::NotExecutable);
             }
-
-            let interpreter_ptr = unsafe {
-                core::slice::from_raw_parts(
-                    seg.p_offset as *const u8,
+            let mut buffer = vec![0; seg.p_filesz.try_into().unwrap()];
+            let r = param
+                .file_mut()
+                .pread(
+                    seg.p_offset.try_into().unwrap(),
                     seg.p_filesz.try_into().unwrap(),
+                    buffer.as_mut_slice(),
                 )
-            };
-            let _interpreter_path = core::str::from_utf8(interpreter_ptr).map_err(|e| {
+                .map_err(|e| {
+                    log::error!("Failed to load interpreter :{:?}", e);
+                    return ExecError::NotSupported;
+                })?;
+            if r != seg.p_filesz.try_into().unwrap() {
+                log::error!("Failed to load interpreter ");
+                return Err(ExecError::NotSupported);
+            }
+            let _interpreter_path = core::str::from_utf8(
+                &buffer[0..TryInto::<usize>::try_into(seg.p_filesz).unwrap() - 1], //
+            )
+            .map_err(|e| {
                 ExecError::Other(format!(
                     "Failed to parse the path of dynamic linker with error {}",
                     e