Commit Graph
374 Commits
Author SHA1 Message Date
NAKAMURA Gou 55f7ee1526 fix a warning
| mckernel/kernel/../arch/x86/kernel/memory.c: In function '__set_pt_page':
| mckernel/kernel/../arch/x86/kernel/memory.c:367:
|     warning: 'init_pt_lock_flags' may be used uninitialized in this function
2014-12-22 17:03:32 +09:00
NAKAMURA Gou 0942bf0ce0 make dkprintf() evaluate its parameters always
Parameters of dkprintf() should be evaluated even if dkprintf() is
disabled.  Because this enables to find expression of parameter obsolete
and to avoid unnecessary compiler warnings such as "unused variable".
2014-12-22 16:58:03 +09:00
bgerofi@riken.jpandBalazs Gerofi bgerofi@riken.jp d4ba4dc8b3 introduction of mckernel_procfs_file_operations; fix /proc/self path resolution;
implementation of /proc/self/pagemap (LTP mmap12)
2014-12-15 12:46:05 +09:00
Balazs Gerofi bgerofi@riken.jp cc9d30efbf do_signal(): support for SIGSYS
as of POSIX.1-2001:
Signal  Value       Action  Comment
---------------------------------------------------
SIGSYS  12,31,12    Core    Bad argument to routine
2014-12-04 18:10:10 +09:00
bgerofi@riken.jpandBalazs Gerofi bgerofi@riken.jp 86f2a9067b getppid() implementation 2014-12-04 16:55:17 +09:00
Tomoki Shirasawa a5889fb5df sigaction check signal number (LTP sigaction02) 2014-12-04 11:31:50 +09:00
Tomoki Shirasawa 8f30e16976 when mcexec is killed by SIGKILL, terminate mckernel process (BUG#259) 2014-11-27 16:13:52 +09:00
Masamichi Takagi 58e2e0a246 Use pidof in mcreboot script 2014-11-23 17:54:14 +09:00
Masamichi Takagi ea02628f2b Add reboot and shutdown script for builtin-x86
It decides the number of cores for McKernel by looking into the
"SHIMOS: CPU Status:" line of dmesg. It sets the amount of memory for
McKernel to one urth of the total memory obtained by "free -g".
2014-11-13 20:06:29 +09:00
Tomoki Shirasawa ab7aa3354f repair signal implementation.
- Don't intrrupt syscall with the ignored signal.
2014-11-07 07:55:30 +09:00
Tomoki Shirasawa c4e0b84792 repair signal implementation.
- can not interrupt syscall
- can not recieve SIGKILL
2014-10-31 16:34:59 +09:00
Tomoki Shirasawa 3fe7e39607 some variables definition are gathered to fork_tree_node from process.
- remove both-defined: pid, pgid, status
- move to fork_tree_node: tid
- make dummy fork_tree_node for idle_process.
2014-10-29 16:54:09 +09:00
Tomoki Shirasawa 8460a7d93e siginfo.si_status was invalid 2014-10-15 15:27:32 +09:00
Tomoki Shirasawa fef946e5ff support PTRACE_GETREGS 2014-10-15 14:55:49 +09:00
Tomoki Shirasawa 4b46330624 support ptrace(PTRACE_PEEKUSER, ...) 2014-10-15 14:54:33 +09:00
Masamichi TakagiandTomoki Shirasawa 759ceac769 Fix deafult signal actions 2014-10-15 14:42:34 +09:00
Masamichi TakagiandTomoki Shirasawa 013d3e95c2 Fix manipulation of fork_tree_node for ptrace 2014-10-15 14:42:17 +09:00
Masamichi TakagiandTomoki Shirasawa 658b88fd7b Modify spacing 2014-10-15 14:40:47 +09:00
Masamichi TakagiandTomoki Shirasawa dbecaa2fc8 Add ptrace functions of job-control and signal
Note that a forked process automatically becomes ptraced state in this
commit.
2014-10-15 14:28:55 +09:00
NAKAMURA Gou ab89de0de6 show the interrupt context in lower case
This commit is intended to make it easier to find the corresponding line
in the objdump output.
2014-10-14 14:16:46 +09:00
NAKAMURA Gou 759fd2e078 show all GPRs saved in interrupt context
This commit adds:
- rbp, r12 .. r15
- rflags
- error code
2014-10-14 14:16:46 +09:00
Masamichi Takagi 7fcd36fbd3 Lock when setting PTE for kernel virual address
We didn't have any lock variable to guard the manipulation of a PTE for
kernel virual address space. Note that we have one for user virtual
address space.
2014-10-08 14:06:17 +09:00
Tomoki Shirasawa 658aa18ade add memory debug (kmalloc/kfree)
* support "memdebug" mckernel option
* check buffer overrun when memory free and next mcexec run
* check double free
* check memory leak when next mcexec run
2014-10-07 15:45:16 +09:00
Tomoki Shirasawa ef52ba7607 kill system call returned bad number 2014-09-25 14:09:07 +09:00
Tomoki Shirasawa a0c5d5c5de Merge branch 'master' of postpeta.pccluster.org:mckernel 2014-09-23 23:18:27 +09:00
Tomoki Shirasawa 39f36120c1 support sigqueue 2014-09-23 23:17:53 +09:00
Masamichi Takagi 434597e629 Make lock/unlock in lock.c accord with arch-lock.h
Make both of the lock/unlock function pairs use the same interfaces.
2014-09-23 12:00:18 +09:00
NAKAMURA Gou aaa466ed05 Revert "ihk_mc_pt_print_pte で PTE を表示するようにした"
This reverts commit 9a1d535f5c.
2014-09-17 19:59:34 +09:00
NAKAMURA Gou 7e12f0db72 Revert "テスト支援コード"
This reverts commit 054cb2ada2.
2014-09-17 19:59:32 +09:00
NAKAMURA Gou 054cb2ada2 テスト支援コード
- vm_range_list のテスト支援コード
- vm_range 一致確認用関数追加
  できれば、指定範囲内の変更を無視させたいのだが、
  指定範囲内の変更のために split されたエントリを無害と判断できない
- page table のテスト支援コード
2014-09-17 19:46:48 +09:00
NAKAMURA Gou 9a1d535f5c ihk_mc_pt_print_pte で PTE を表示するようにした 2014-09-17 19:46:45 +09:00
Masamichi Takagi 35dc8a3368 Issue IPI if needed when sending SIGSTOP 2014-09-10 21:21:17 +09:00
Masamichi Takagi c78be27442 Support SIGSTOP and SIGCONT 2014-09-10 18:19:39 +09:00
Masamichi Takagi 7ca4ca4d37 Revert "Support SIGSTOP and SIGCONT"
This reverts commit 2325d47952.
2014-09-10 18:19:17 +09:00
Masamichi Takagi 2325d47952 Support SIGSTOP and SIGCONT 2014-09-10 17:01:21 +09:00
Masamichi Takagi b50e205a61 Support pid of zero when calling waitpid
Make waitpid wait any process with the same pgid of the caller when
setting zero to the pid argument.
2014-09-10 17:01:05 +09:00
Masamichi Takagi 19fa391d4f Implement vfork system call
It's implemented by making it issue clone system call internally with
the arguments of (SIGCHLD, 0, 0, 0, 0). The feature in which the caller
of vfork blocks until the child issues exit/execve is not implemented.
Refer to #233.
2014-09-08 17:06:05 +09:00
Naoki Hamada efc817de92 Merge branch 'master' of postpeta.pccluster.org:mckernel 2014-09-05 17:20:50 +09:00
Naoki Hamada 319590910a Almost implemented. 2014-09-03 15:20:39 +09:00
Tomoki Shirasawa 7b825c0a65 fix coredump (ltp abort01) 2014-09-03 10:56:41 +09:00
Tomoki Shirasawa f535670100 fix pipe02 2014-08-27 16:50:01 +09:00
Tomoki Shirasawa bc8b441358 process table traversing must be under interrupt inhibition
add finding process table function (findthread_and_lock/process_unlock)
2014-08-25 13:24:06 +09:00
Tomoki Shirasawa f4818e9c09 don't force terminate, when SIGTERM recieved 2014-08-21 17:22:11 +09:00
Tomoki Shirasawa dd8b2a8f15 sigaction returns -EINVAL, when sig == SIGKILL or SIGSTOP 2014-08-21 14:04:38 +09:00
Tomoki Shirasawa 78d10cce80 support process group 2014-08-18 17:08:28 +09:00
Tomoki Shirasawa 663c121308 interrupt syscall sufficient threads 2014-08-18 16:49:49 +09:00
Balazs Gerofi bgerofi@riken.jp 9448cefe80 do not track arch/x86/tools/mcshutdown-attached-mic.sh (generated file) 2014-08-07 14:32:43 +09:00
Naoki Hamada 2a1c092fcb Merge remote branch 'origin/master' into gdb 2014-08-01 11:19:18 +09:00
Naoki Hamada 4d223269e6 Remove delivative files. 2014-08-01 11:14:31 +09:00
Naoki Hamada 1e0db73a48 Add files from master. 2014-08-01 09:16:53 +09:00