From: Rich Felker Date: Sun, 3 Apr 2011 16:20:51 +0000 (-0400) Subject: don't trust siginfo in rsyscall handler X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c9b2d8016fca3b0545433e9d58a04c038b6fc921;hp=c9b2d8016fca3b0545433e9d58a04c038b6fc921;p=musl don't trust siginfo in rsyscall handler for some inexplicable reason, linux allows the sender of realtime signals to spoof its identity. permission checks for sending signals should limit the impact to same-user processes, but just to be safe, we avoid trusting the siginfo structure and instead simply examine the program state to see if we're in the middle of a legitimate rsyscall. ---