aboutsummaryrefslogtreecommitdiff
path: root/cddl/contrib/opensolaris/cmd
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2017-11-24 07:35:08 +0000
committerEd Schouten <ed@FreeBSD.org>2017-11-24 07:35:08 +0000
commit814629dd64a35b829cc8f537b55b9c5d873f7bbf (patch)
tree132c23d4fb0ad6600d9d96a98a811ca45b693eb9 /cddl/contrib/opensolaris/cmd
parentd927d443e1cceafe3c4de05161ed2ece105ab4ef (diff)
downloadsrc-814629dd64a35b829cc8f537b55b9c5d873f7bbf.tar.gz
src-814629dd64a35b829cc8f537b55b9c5d873f7bbf.zip
Don't let cpu_set_syscall_retval() clobber exec_setregs().
Upon successful completion, the execve() system call invokes exec_setregs() to initialize the registers of the initial thread of the newly executed process. What is weird is that when execve() returns, it still goes through the normal system call return path, clobbering the registers with the system call's return value (td->td_retval). Though this doesn't seem to be problematic for x86 most of the times (as the value of eax/rax doesn't matter upon startup), this can be pretty frustrating for architectures where function argument and return registers overlap (e.g., ARM). On these systems, exec_setregs() also needs to initialize td_retval. Even worse are architectures where cpu_set_syscall_retval() sets registers to values not derived from td_retval. On these architectures, there is no way cpu_set_syscall_retval() can set registers to the way it wants them to be upon the start of execution. To get rid of this madness, let sys_execve() return EJUSTRETURN. This will cause cpu_set_syscall_retval() to leave registers intact. This makes process execution easier to understand. It also eliminates the difference between execution of the initial process and successive ones. The initial call to sys_execve() is not performed through a system call context. Reviewed by: kib, jhibbits Differential Revision: https://reviews.freebsd.org/D13180
Notes
Notes: svn path=/head/; revision=326145
Diffstat (limited to 'cddl/contrib/opensolaris/cmd')
0 files changed, 0 insertions, 0 deletions