- 18 10月, 2013 1 次提交
-
-
由 Rich Felker 提交于
as usual, this is needed to avoid fd leaks. as a better solution, the use of fds could possibly be replaced with mmap and a futex.
-
- 13 10月, 2013 1 次提交
-
-
由 Rich Felker 提交于
this fixes an issue reported by Daniel Thau whereby faccessat with the AT_EACCESS flag did not work in cases where the process is running suid or sgid but without root privileges. per POSIX, when the process does not have "appropriate privileges", setuid changes the euid, not the real uid, and the target uid must be equal to the current real or saved uid; if this condition is not met, EPERM results. this caused the faccessat child process to fail. using the setreuid syscall rather than setuid works. POSIX leaves it unspecified whether setreuid can set the real user id to the effective user id on processes without "appropriate privileges", but Linux allows this; if it's not allowed, there would be no way for this function to work.
-
- 01 9月, 2013 1 次提交
-
-
由 Rich Felker 提交于
clone will pass the return value of the start function to SYS_exit anyway; there's no need to call the syscall directly.
-
- 10 8月, 2013 1 次提交
-
-
由 Rich Felker 提交于
the child process's stack may be insufficient size to support a signal frame, and there is no reason these signal handlers should run in the child anyway.
-
- 03 8月, 2013 1 次提交
-
-
由 Rich Felker 提交于
this is another case of the kernel syscall failing to support flags where it needs to, leading to horrible workarounds in userspace. this time the workaround requires changing uid/gid, and that's not safe to do in the current process. in the worst case, kernel resource limits might prevent recovering the original values, and then there would be no way to safely return. so, use the safe but horribly inefficient alternative: forking. clone is used instead of fork to suppress signals from the child. fortunately this worst-case code is only needed when effective and real ids mismatch, which mainly happens in suid programs.
-
- 20 3月, 2011 1 次提交
-
-
由 Rich Felker 提交于
-
- 12 2月, 2011 1 次提交
-
-
由 Rich Felker 提交于
-