Jiajie Chen
81fde731d0
Save and log file paths on sys_open and sys_close
2019-05-02 15:07:06 +08:00
WangRunji
6c988c4bfd
note potential lost wakeup problem in Condvar. fix some use case.
2019-05-01 23:37:07 +08:00
Jiajie Chen
8651f09b31
Automatically enlarge heap when kernel heap is about to run out
2019-05-01 18:33:55 +08:00
Jiajie Chen
2f6f8ef9bc
Add syscall timing using rdtsc
2019-04-30 21:32:32 +08:00
WangRunji
c885ea6d77
impl pseudo INode '/proc/self/exe'
2019-04-30 17:37:18 +08:00
Jiajie Chen
bd158e4e74
Do not panic when exec file is invalid
2019-04-30 17:10:35 +08:00
WangRunji
a25c8132fe
delay mapping file
2019-04-30 15:02:52 +08:00
Jiajie Chen
e5894b652c
Format code
2019-04-29 10:20:51 +08:00
WangRunji
5bc6395b23
fix sys_exec
2019-04-29 01:30:57 +08:00
WangRunji
27f5c7b2e4
detach thread to auto recycle tid. fix #25
2019-04-28 23:34:45 +08:00
Jiajie Chen
fc60d2cea2
Do not poll unrelated files in sys_select
2019-04-28 19:54:42 +08:00
WangRunji
58271c7c8a
convert user ptr to reference on check
2019-04-28 17:16:07 +08:00
chyyuu
c853eda9b3
disable so many wait4 LOG info
2019-04-26 18:58:42 +08:00
chyyuu
1974cc5853
add syscall: sys_getrandom for python3, etc.
2019-04-26 18:57:54 +08:00
WangRunji
ab62d542fd
allocate pid independently from tid. fix sys_fork return value.
2019-04-26 11:22:27 +08:00
chyyuu
aaf9d49fba
Merge branch 'dev' of github.com:rcore-os/rCore into dev
2019-04-26 02:35:09 +08:00
chyyuu
0d790f2dc5
add LOG info in sys_exec and new_user, add env var in run_user_shell
2019-04-26 02:34:42 +08:00
WangRunji
b0a1614b75
reorder syscall by function
2019-04-26 01:25:27 +08:00
chyyuu
d8147bd955
fix bug:sys_sendfile: the return value: the length of written file
2019-04-25 23:28:03 +08:00
chyyuu
bac9e77be1
fix bug: sys_sendfile: wrong length of written file
2019-04-25 23:14:23 +08:00
chyyuu
734e01cc46
fix bug: sys_mmap didn't zero clean the anonymous memory
...
We can use delay mode or eager mode(in added comment codes)
WRJ's great work!
2019-04-25 16:00:29 +08:00
chyyuu
683814d24c
Merge branch 'dev' of github.com:rcore-os/rCore into dev
2019-04-21 17:08:41 +08:00
chyyuu
144090e42d
add syscall: sys_times partial implementation
2019-04-21 17:07:40 +08:00
Jiajie Chen
cf3fd0ec93
Fix ioctl numbers and sys_poll for mipsel
2019-04-21 15:45:26 +08:00
Jiajie Chen
c9303466b4
Merge branch 'mipsel' into dev
2019-04-21 15:05:55 +08:00
Yuhao Zhou
218bb29cf3
Fix TimeSpec type.
2019-04-21 14:30:02 +08:00
chyyuu
00685d9205
set 8MB user stack size, add more flags for sys_clone
...
8MB is the default linux app stack size on x86_64.
gcc app in alpine linux call sys_clone with flags 0x5d0f00.
In case of supporting more other potential flags,
use panic! instead of warn!, then we can get timely panic-style info.
Now python2 hello.py can run correctly, but only one time.
I guess the memory management has some problem,
maybe there are some memory leak.
2019-04-20 09:32:42 +08:00
Jiajie Chen
1fd0060a1a
Fix typo
2019-04-19 13:43:31 +08:00
WangRunji
8090e154c1
simplify sys_sendfile. check elf arch
2019-04-19 12:43:12 +08:00
Jiajie Chen
8494bf9b0c
Fix sys_sendfile args
2019-04-19 12:34:27 +08:00
Jiajie Chen
7ce2fca209
Fix ls -al for symlinks
2019-04-19 09:17:27 +08:00
Jiajie Chen
229c64cc7d
Fix IoVec length type
2019-04-19 08:42:44 +08:00
WangRunji
f74a3b8e8b
by default: use busybox sh, disable log, build in release mode
2019-04-19 00:37:30 +08:00
WangRunji
520bb2d957
change args from Iter to Vec<String>
2019-04-18 20:24:36 +08:00
Jiajie Chen
0ff24fe589
Implement env support in sys_exec
2019-04-18 17:43:35 +08:00
Yuhao Zhou
d2f2fa3d97
Two syscall for mips.
2019-04-17 17:42:05 +08:00
Yuhao Zhou
3e7dd81dec
Add lstat, fix timespec for musln32.
2019-04-17 17:37:28 +08:00
chyyuu
aa5d0028f0
add unimplemented syscalls: SYS_GETGROUPS, SYS_SETGROUPS. Now busybox:id can run.
2019-04-17 16:37:09 +08:00
chyyuu
56e472c8f8
fix bug: sys_exec should name as exec_path, then loader can find the exec file.
...
items of VEC args from argv is the args lists, and args[0] isn't the complete exec_path.
the new_user function should add exec_path as a new args.
BUGS:
ls app doesn't show any thing. Why?
2019-04-17 14:59:06 +08:00
Jiajie Chen
ff50a45396
Now ready to use busybox sh for user shell
2019-04-17 08:16:02 +08:00
Jiajie Chen
1bba33a05f
Implement sys_ppoll over sys_poll
2019-04-17 01:16:27 +08:00
Jiajie Chen
69449d4eb1
Pretend stdin/stdout as a tty
2019-04-17 00:44:11 +08:00
Jiajie Chen
b5f194d20f
Fix get_ppid for init process
2019-04-17 00:28:34 +08:00
Jiajie Chen
8115256162
Check exec args
2019-04-16 10:05:42 +08:00
Yuhao Zhou
189c4aa5c6
Support sys_pipe for MIPS.
2019-04-16 02:42:44 +08:00
Yuhao Zhou
9532311c1e
Copy TLS data in sys_fork.
2019-04-16 01:31:00 +08:00
WangRunji
f88cffb8ab
fix bitvec version
2019-04-15 22:08:20 +08:00
Yuhao Zhou
dc90cb5a8d
Fix pgfault, fstat syscall convention. biscuit/ls works!
2019-04-15 18:09:48 +08:00
Yuhao Zhou
9075a172ad
Fix iovec size for MIPSn32.
2019-04-15 15:45:09 +08:00
Yuhao Zhou
bfa4c9d47e
Support TLS for MIPS.
2019-04-15 14:14:07 +08:00