|
@@ -1,5 +1,5 @@
|
|
|
use alloc::{boxed::Box, vec::Vec};
|
|
|
-use core::{intrinsics, ptr, fmt::Debug};
|
|
|
+use core::{fmt::Debug, intrinsics, ptr};
|
|
|
|
|
|
use crate::{
|
|
|
header::{libgen, stdio, stdlib},
|
|
@@ -9,7 +9,6 @@ use crate::{
|
|
|
ALLOCATOR,
|
|
|
};
|
|
|
|
|
|
-
|
|
|
#[repr(C)]
|
|
|
pub struct Stack {
|
|
|
pub argc: isize,
|
|
@@ -30,13 +29,13 @@ impl Stack {
|
|
|
let mut envp = self.envp();
|
|
|
while !(*envp).is_null() {
|
|
|
envp = envp.add(1);
|
|
|
- }//timer_init
|
|
|
+ }
|
|
|
envp.add(1) as *const (usize, usize)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl Debug for Stack{
|
|
|
+impl Debug for Stack {
|
|
|
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
|
|
|
f.debug_struct("Stack")
|
|
|
.field("argc", &self.argc)
|
|
@@ -46,14 +45,10 @@ impl Debug for Stack{
|
|
|
}
|
|
|
|
|
|
unsafe fn copy_string_array(array: *const *const c_char, len: usize) -> Vec<*mut c_char> {
|
|
|
- println!("copy_string_array: array: {:p}, len: {}", array, len);
|
|
|
-
|
|
|
+ // println!("copy_string_array: array: {:p}, len: {}", array, len);
|
|
|
+
|
|
|
let mut vec = Vec::with_capacity(len + 1);
|
|
|
-
|
|
|
- let x = vec.into_raw_parts();
|
|
|
- println!("{:#018x?}",x.0);
|
|
|
- let mut vec=alloc::vec::Vec::from_raw_parts(x.0, x.1, x.2);
|
|
|
- println!("new vec ok");
|
|
|
+
|
|
|
for i in 0..len {
|
|
|
let item = *array.add(i);
|
|
|
let mut len = 0;
|
|
@@ -96,18 +91,18 @@ fn alloc_init() {
|
|
|
}
|
|
|
}
|
|
|
unsafe {
|
|
|
- dbg!("in alloc init");
|
|
|
+ // dbg!("in alloc init");
|
|
|
if let Some(tcb) = ld_so::tcb::Tcb::current() {
|
|
|
- println!("tcb.mspace {}",tcb.mspace);
|
|
|
+ // println!("tcb.mspace {}",tcb.mspace);
|
|
|
if tcb.mspace != 0 {
|
|
|
ALLOCATOR.set_book_keeper(tcb.mspace);
|
|
|
} else if ALLOCATOR.get_book_keeper() == 0 {
|
|
|
ALLOCATOR.set_book_keeper(new_mspace());
|
|
|
}
|
|
|
} else if ALLOCATOR.get_book_keeper() == 0 {
|
|
|
- dbg!("TRY");
|
|
|
+ // dbg!("TRY");
|
|
|
ALLOCATOR.set_book_keeper(new_mspace());
|
|
|
- dbg!("ALLOCATOR OWARI DAWA");
|
|
|
+ // dbg!("ALLOCATOR OWARI DAWA");
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -144,7 +139,7 @@ extern "C" fn init_array() {
|
|
|
|
|
|
fn io_init() {
|
|
|
unsafe {
|
|
|
- // Initialize stdin/stdout/stderr,
|
|
|
+ // Initialize stdin/stdout/stderr,
|
|
|
// see https://github.com/rust-lang/rust/issues/51718
|
|
|
stdio::stdin = stdio::default_stdin.get();
|
|
|
stdio::stdout = stdio::default_stdout.get();
|
|
@@ -193,23 +188,20 @@ pub unsafe extern "C" fn relibc_start(sp: &'static Stack) -> ! {
|
|
|
fn main(argc: isize, argv: *mut *mut c_char, envp: *mut *mut c_char) -> c_int;
|
|
|
}
|
|
|
|
|
|
- println!("relibc_start: sp={:?}", sp);
|
|
|
// Ensure correct host system before executing more system calls
|
|
|
relibc_verify_host();
|
|
|
use core::arch::asm;
|
|
|
-
|
|
|
+
|
|
|
// Initialize TLS, if necessary
|
|
|
ld_so::init(sp);
|
|
|
|
|
|
- println!("alloc init");
|
|
|
+ // println!("alloc init");
|
|
|
|
|
|
- //println!("alloc init ok_________________");
|
|
|
-
|
|
|
// Set up the right allocator...
|
|
|
// if any memory rust based memory allocation happen before this step .. we are doomed.
|
|
|
alloc_init();
|
|
|
|
|
|
- println!("alloc init ok");
|
|
|
+ // println!("alloc init ok");
|
|
|
|
|
|
if let Some(tcb) = ld_so::tcb::Tcb::current() {
|
|
|
// Update TCB mspace
|
|
@@ -224,21 +216,22 @@ pub unsafe extern "C" fn relibc_start(sp: &'static Stack) -> ! {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- println!("to copy args");
|
|
|
+ // println!("to copy args");
|
|
|
// Set up argc and argv
|
|
|
let argc = sp.argc;
|
|
|
let argv = sp.argv();
|
|
|
|
|
|
platform::inner_argv = copy_string_array(argv, argc as usize);
|
|
|
|
|
|
- println!("copy args ok");
|
|
|
+ // println!("copy args ok");
|
|
|
platform::argv = platform::inner_argv.as_mut_ptr();
|
|
|
// Special code for program_invocation_name and program_invocation_short_name
|
|
|
if let Some(arg) = platform::inner_argv.get(0) {
|
|
|
platform::program_invocation_name = *arg;
|
|
|
platform::program_invocation_short_name = libgen::basename(*arg);
|
|
|
}
|
|
|
- println!("to check environ");
|
|
|
+ // println!("to check environ");
|
|
|
+
|
|
|
// We check for NULL here since ld.so might already have initialized it for us, and we don't
|
|
|
// want to overwrite it if constructors in .init_array of dependency libraries have called
|
|
|
// setenv.
|
|
@@ -252,17 +245,17 @@ pub unsafe extern "C" fn relibc_start(sp: &'static Stack) -> ! {
|
|
|
platform::OUR_ENVIRON = copy_string_array(envp, len);
|
|
|
platform::environ = platform::OUR_ENVIRON.as_mut_ptr();
|
|
|
}
|
|
|
- println!("to get auxvs");
|
|
|
+ // println!("to get auxvs");
|
|
|
let auxvs = get_auxvs(sp.auxv().cast());
|
|
|
- println!("to init platform");
|
|
|
+ // println!("to init platform");
|
|
|
crate::platform::init(auxvs);
|
|
|
|
|
|
// Setup signal stack, otherwise we cannot handle any signals besides SIG_IGN/SIG_DFL behavior.
|
|
|
#[cfg(target_os = "redox")]
|
|
|
setup_sigstack();
|
|
|
- println!("before init_array()");
|
|
|
+ // println!("before init_array()");
|
|
|
init_array();
|
|
|
- println!("init_array() ok");
|
|
|
+ // println!("init_array() ok");
|
|
|
|
|
|
// Run preinit array
|
|
|
{
|
|
@@ -274,10 +267,10 @@ pub unsafe extern "C" fn relibc_start(sp: &'static Stack) -> ! {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- println!("before _init()");
|
|
|
+ // println!("before _init()");
|
|
|
// Call init section
|
|
|
_init();
|
|
|
- println!("after _init()");
|
|
|
+ // println!("after _init()");
|
|
|
// Run init array
|
|
|
{
|
|
|
let mut f = &__init_array_start as *const _;
|
|
@@ -288,7 +281,7 @@ pub unsafe extern "C" fn relibc_start(sp: &'static Stack) -> ! {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- println!("to run main()");
|
|
|
+ // println!("to run main()");
|
|
|
// not argv or envp, because programs like bash try to modify this *const* pointer :|
|
|
|
stdlib::exit(main(argc, platform::argv, platform::environ));
|
|
|
|