diff options
author | kib <kib@FreeBSD.org> | 2008-12-12 12:06:28 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2008-12-12 12:06:28 +0000 |
commit | 2ef4ea7ee81ea8c88c6424914105f12ff9b04a48 (patch) | |
tree | 13149bbd776ba4e1b4d0616e35c4078de60e92aa /sys/compat | |
parent | 9aa6bcff62ea1bb898209f15836407394f2fffcf (diff) | |
download | FreeBSD-src-2ef4ea7ee81ea8c88c6424914105f12ff9b04a48.zip FreeBSD-src-2ef4ea7ee81ea8c88c6424914105f12ff9b04a48.tar.gz |
The userland_sysctl() function retries sysctl_root() until returned
error is not EAGAIN. Several sysctls that inspect another process use
p_candebug() for checking access right for the curproc. p_candebug()
returns EAGAIN for some reasons, in particular, for the process doing
exec() now. If execing process tries to lock Giant, we get a livelock,
because sysctl handlers are covered by Giant, and often do not sleep.
Break the livelock by dropping Giant and allowing other threads to
execute in the EAGAIN loop.
Also, do not return EAGAIN from p_candebug() when process is executing,
use more appropriate EBUSY error [1].
Reported and tested by: pho
Suggested by: rwatson [1]
Reviewed by: rwatson, des
MFC after: 1 week
Diffstat (limited to 'sys/compat')
0 files changed, 0 insertions, 0 deletions