From: Daan De Meyer Date: Wed, 31 Jul 2024 11:38:50 +0000 (+0200) Subject: cgroup-util: Don't try to open pidfd for kernel threads X-Git-Tag: v257-rc1~788^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ead48ec35c863650944352a3455f26ce3b393058;p=thirdparty%2Fsystemd.git cgroup-util: Don't try to open pidfd for kernel threads The kernel might start returning -EINVAL when trying to open pidfd's for kernel threads so let's not try to open pidfd's for kernel threads. --- diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index c2150c00c6b..ffce7504f4e 100644 --- a/src/basic/cgroup-util.c +++ b/src/basic/cgroup-util.c @@ -149,7 +149,9 @@ int cg_read_pidref(FILE *f, PidRef *ret, CGroupFlags flags) { if (pid == 0) return -EREMOTE; - if (FLAGS_SET(flags, CGROUP_NO_PIDFD)) { + /* We might read kernel thread pids from cgroup.procs for which we cannot create a pidfd so + * catch those and don't try to create a pidfd for them. */ + if (FLAGS_SET(flags, CGROUP_NO_PIDFD) || pid_is_kernel_thread(pid) > 0) { *ret = PIDREF_MAKE_FROM_PID(pid); return 1; }