Al Grant reported that the 'perf record' command terminates abnormally after setting the setuid bit for the executable. To reproduce this issue, an additional condition is the binary file is owned by the root user but is running under a non-privileged user. The logs below provide details: $ sudo chmod u+s perf $ ls -l perf -rwsr-xr-x 1 root root 13147600 Mar 17 14:56 perf $ ./perf record -e cycles -- uname [ perf record: Woken up 1 times to write data ] [ perf record: Captured and wrote 0.003 MB perf.data (7 samples) ] Terminated Comparatively, the same command can succeed if the setuid bit is cleared for the perf executable: $ sudo chmod u-s perf $ ls -l perf -rwxr-xr-x 1 root root 13147600 Mar 17 14:56 perf $ ./perf record -e cycles -- uname Linux [ perf record: Woken up 1 times to write data ] [ perf record: Captured and wrote 0.003 MB perf.data (13 samples) ] After setting the setuid bit, the problem arises when begin_new_exec() disables the perf events upon detecting that a regular user is executing a setuid binary, which notifies the perf process. Consequently, the perf tool in user space exits from polling and sends a SIGTERM signal to kill child processes and itself. This explains why we observe the tool being 'Terminated'. With the setuid bit a non-privileged user can obtain the same permissions as the executable's owner. If the owner has the privileged permission for accessing perf events, the kernel should keep enabling perf events. For this reason, this patch adds a condition checking for perfmon_capable() to not disabling perf events when the user has privileged permission yet. Note the begin_new_exec() function only checks permission for the per-thread mode in a perf session. This is why we don't need to add any extra checking for the global knob 'perf_event_paranoid', as it always grants permission for per-thread performance monitoring for unprivileged users (see Documentation/admin-guide/perf-security.rst). Signed-off-by: Leo Yan <leo.yan@xxxxxxx> Cc: Al Grant <al.grant@xxxxxxx> Cc: James Clark <james.clark@xxxxxxx> Cc: Mark Rutland <mark.rutland@xxxxxxx> --- fs/exec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/exec.c b/fs/exec.c index ff6f26671cfc..5ded01190278 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -1401,7 +1401,8 @@ int begin_new_exec(struct linux_binprm * bprm) * wait until new credentials are committed * by commit_creds() above */ - if (get_dumpable(me->mm) != SUID_DUMP_USER) + if ((get_dumpable(me->mm) != SUID_DUMP_USER) && + !perfmon_capable()) perf_event_exit_task(me); /* * cred_guard_mutex must be held at least to this point to prevent -- 2.39.2