]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
pidfd: hold exec_update_lock around namespace ioctl
authorChen Linxuan <me@black-desk.cn>
Fri, 31 Jul 2026 14:50:08 +0000 (22:50 +0800)
committerChristian Brauner <brauner@kernel.org>
Wed, 12 Aug 2026 09:36:41 +0000 (11:36 +0200)
The PIDFD_GET_*_NAMESPACE ioctls in pidfd_ioctl() perform a filesystem
credentials ptrace access check before handing out a namespace file
descriptor.  The accompanying comment states that the code "mirrors nsfs
behavior", but, unlike the corresponding procfs paths, it does so without
holding the target task's exec_update_lock.

proc_ns_get_link() and proc_ns_readlink() both take exec_update_lock for
reading around the ptrace check and the namespace lookup, so that the
credentials used for the access decision match those of the task when its
namespace is read.  Without it, a caller can pass the check against the
target's old credentials and then read the namespace after the target has
execve()'d a setuid binary and committed new credentials -- accessing
namespace information it should have been denied.

Hold exec_update_lock for reading around the ptrace check and the
namespace lookup so that pidfd truly mirrors nsfs behavior, as the comment
already claims.  open_namespace() itself runs outside the lock: once a
namespace reference is obtained it carries its own refcount and is opened
with the caller's own credentials, so a concurrent execve() on the target
can no longer affect the outcome.

Fixes: 5b08bd408534 ("pidfs: allow retrieval of namespace file descriptors")
Cc: stable@vger.kernel.org
Signed-off-by: Chen Linxuan <me@black-desk.cn>
Link: https://patch.msgid.link/20260731-pidfd-exec-update-lock-v1-1-b388f2f3a8b0@black-desk.cn
Signed-off-by: Christian Brauner (Amutable) <brauner@kernel.org>
fs/pidfs.c

index aaa609ddab044355ff00ffdd1eff34657ecc1b4c..7fc3c1f5a5788f62deca413d3bdef7a088ba8b30 100644 (file)
@@ -531,6 +531,7 @@ static long pidfd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
        struct task_struct *task __free(put_task) = NULL;
        struct nsproxy *nsp __free(put_nsproxy) = NULL;
        struct ns_common *ns_common = NULL;
+       int error;
 
        if (!pidfs_ioctl_valid(cmd))
                return -ENOIOCTLCMD;
@@ -554,20 +555,33 @@ static long pidfd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
        if (arg)
                return -EINVAL;
 
+       /*
+        * We're trying to open a file descriptor to the namespace so perform a
+        * filesystem cred ptrace check. Hold @task's exec_update_lock for the
+        * duration of the ptrace check and the namespace lookup so that the
+        * credentials used for the access decision match those of @task at the
+        * time its namespace is read, preventing a concurrent execve() from
+        * swapping the task's credentials in between the check and the use. We
+        * mirror nsfs behavior.
+        */
+       error = down_read_killable(&task->signal->exec_update_lock);
+       if (error)
+               return error;
+
+       if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) {
+               error = -EACCES;
+               goto out_unlock;
+       }
+
        scoped_guard(task_lock, task) {
                nsp = task->nsproxy;
                if (nsp)
                        get_nsproxy(nsp);
        }
-       if (!nsp)
-               return -ESRCH; /* just pretend it didn't exist */
-
-       /*
-        * We're trying to open a file descriptor to the namespace so perform a
-        * filesystem cred ptrace check. Also, we mirror nsfs behavior.
-        */
-       if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
-               return -EACCES;
+       if (!nsp) {
+               error = -ESRCH; /* just pretend it didn't exist */
+               goto out_unlock;
+       }
 
        switch (cmd) {
        /* Namespaces that hang of nsproxy. */
@@ -649,11 +663,16 @@ static long pidfd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
 #endif
                break;
        default:
-               return -ENOIOCTLCMD;
+               error = -ENOIOCTLCMD;
        }
 
-       if (!ns_common)
-               return -EOPNOTSUPP;
+       if (!error && !ns_common)
+               error = -EOPNOTSUPP;
+
+out_unlock:
+       up_read(&task->signal->exec_update_lock);
+       if (error)
+               return error;
 
        /* open_namespace() unconditionally consumes the reference */
        return open_namespace(ns_common);