]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
pids: introduce find_get_task_by_vpid() helper
authorMike Rapoport <rppt@linux.vnet.ibm.com>
Tue, 6 Feb 2018 23:40:17 +0000 (15:40 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 7 Feb 2018 02:32:46 +0000 (18:32 -0800)
There are several functions that do find_task_by_vpid() followed by
get_task_struct().  We can use a helper function instead.

Link: http://lkml.kernel.org/r/1509602027-11337-1-git-send-email-rppt@linux.vnet.ibm.com
Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com>
Acked-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/ia64/kernel/perfmon.c
include/linux/sched.h
kernel/futex.c
kernel/pid.c
kernel/ptrace.c
kernel/taskstats.c
mm/process_vm_access.c
security/yama/yama_lsm.c

index c44f002e8f6bb9a936b59e59d5cffa56b68003ff..8586024940963bb9e1bf2be5d50d31e3fcc75755 100644 (file)
@@ -2610,17 +2610,10 @@ pfm_get_task(pfm_context_t *ctx, pid_t pid, struct task_struct **task)
        if (pid < 2) return -EPERM;
 
        if (pid != task_pid_vnr(current)) {
-
-               read_lock(&tasklist_lock);
-
-               p = find_task_by_vpid(pid);
-
                /* make sure task cannot go away while we operate on it */
-               if (p) get_task_struct(p);
-
-               read_unlock(&tasklist_lock);
-
-               if (p == NULL) return -ESRCH;
+               p = find_get_task_by_vpid(pid);
+               if (!p)
+                       return -ESRCH;
        }
 
        ret = pfm_task_incompatible(ctx, p);
index 166144c04ef61af4b8ec47033d99b95a678aaeec..ce5a27304b032f17ef2d6f514d6d3475da2ee7b2 100644 (file)
@@ -1489,6 +1489,11 @@ static inline struct thread_info *task_thread_info(struct task_struct *task)
 extern struct task_struct *find_task_by_vpid(pid_t nr);
 extern struct task_struct *find_task_by_pid_ns(pid_t nr, struct pid_namespace *ns);
 
+/*
+ * find a task by its virtual pid and get the task struct
+ */
+extern struct task_struct *find_get_task_by_vpid(pid_t nr);
+
 extern int wake_up_state(struct task_struct *tsk, unsigned int state);
 extern int wake_up_process(struct task_struct *tsk);
 extern void wake_up_new_task(struct task_struct *tsk);
index 7f719d11090810622ff010c0b8adc3fe954c478d..1f450e092c7416e3d43aba84da7b73b9a2a47b3d 100644 (file)
@@ -862,24 +862,6 @@ static void put_pi_state(struct futex_pi_state *pi_state)
        }
 }
 
-/*
- * Look up the task based on what TID userspace gave us.
- * We dont trust it.
- */
-static struct task_struct *futex_find_get_task(pid_t pid)
-{
-       struct task_struct *p;
-
-       rcu_read_lock();
-       p = find_task_by_vpid(pid);
-       if (p)
-               get_task_struct(p);
-
-       rcu_read_unlock();
-
-       return p;
-}
-
 #ifdef CONFIG_FUTEX_PI
 
 /*
@@ -1183,7 +1165,7 @@ static int attach_to_pi_owner(u32 uval, union futex_key *key,
         */
        if (!pid)
                return -ESRCH;
-       p = futex_find_get_task(pid);
+       p = find_get_task_by_vpid(pid);
        if (!p)
                return -ESRCH;
 
index 5d30c87e3c424667fe08fbe81e30eac8570a02c1..ed6c343fe50dff7b546e43fd89102f43b898417e 100644 (file)
@@ -343,6 +343,19 @@ struct task_struct *find_task_by_vpid(pid_t vnr)
        return find_task_by_pid_ns(vnr, task_active_pid_ns(current));
 }
 
+struct task_struct *find_get_task_by_vpid(pid_t nr)
+{
+       struct task_struct *task;
+
+       rcu_read_lock();
+       task = find_task_by_vpid(nr);
+       if (task)
+               get_task_struct(task);
+       rcu_read_unlock();
+
+       return task;
+}
+
 struct pid *get_task_pid(struct task_struct *task, enum pid_type type)
 {
        struct pid *pid;
index 5e1d713c8e61f92e77fd0b3e4f46a678f2500a15..21fec73d45d4e9692a73af4b65109fcd20f94531 100644 (file)
@@ -1103,21 +1103,6 @@ int ptrace_request(struct task_struct *child, long request,
        return ret;
 }
 
-static struct task_struct *ptrace_get_task_struct(pid_t pid)
-{
-       struct task_struct *child;
-
-       rcu_read_lock();
-       child = find_task_by_vpid(pid);
-       if (child)
-               get_task_struct(child);
-       rcu_read_unlock();
-
-       if (!child)
-               return ERR_PTR(-ESRCH);
-       return child;
-}
-
 #ifndef arch_ptrace_attach
 #define arch_ptrace_attach(child)      do { } while (0)
 #endif
@@ -1135,9 +1120,9 @@ SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
                goto out;
        }
 
-       child = ptrace_get_task_struct(pid);
-       if (IS_ERR(child)) {
-               ret = PTR_ERR(child);
+       child = find_get_task_by_vpid(pid);
+       if (!child) {
+               ret = -ESRCH;
                goto out;
        }
 
@@ -1281,9 +1266,9 @@ COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
                goto out;
        }
 
-       child = ptrace_get_task_struct(pid);
-       if (IS_ERR(child)) {
-               ret = PTR_ERR(child);
+       child = find_get_task_by_vpid(pid);
+       if (!child) {
+               ret = -ESRCH;
                goto out;
        }
 
index 4559e914452b4b8a47d1cf2efc0320be253e5025..4e62a4a8fa9168225c2756512fdaaa51670b49f4 100644 (file)
@@ -194,11 +194,7 @@ static int fill_stats_for_pid(pid_t pid, struct taskstats *stats)
 {
        struct task_struct *tsk;
 
-       rcu_read_lock();
-       tsk = find_task_by_vpid(pid);
-       if (tsk)
-               get_task_struct(tsk);
-       rcu_read_unlock();
+       tsk = find_get_task_by_vpid(pid);
        if (!tsk)
                return -ESRCH;
        fill_stats(current_user_ns(), task_active_pid_ns(current), tsk, stats);
index 8973cd231ecee9c194376045cf7d9c2054d2a4b7..16424b9ae4240a9b051edff0a93b8d3f84c5b9a4 100644 (file)
@@ -197,11 +197,7 @@ static ssize_t process_vm_rw_core(pid_t pid, struct iov_iter *iter,
        }
 
        /* Get process information */
-       rcu_read_lock();
-       task = find_task_by_vpid(pid);
-       if (task)
-               get_task_struct(task);
-       rcu_read_unlock();
+       task = find_get_task_by_vpid(pid);
        if (!task) {
                rc = -ESRCH;
                goto free_proc_pages;
index 8298e094f4f7fa6338814902f3c6067b276a6032..ffda91a4a1aaf3f32b0f72b22ebd4ab068acc6b3 100644 (file)
@@ -250,15 +250,10 @@ int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3,
                } else {
                        struct task_struct *tracer;
 
-                       rcu_read_lock();
-                       tracer = find_task_by_vpid(arg2);
-                       if (tracer)
-                               get_task_struct(tracer);
-                       else
+                       tracer = find_get_task_by_vpid(arg2);
+                       if (!tracer) {
                                rc = -EINVAL;
-                       rcu_read_unlock();
-
-                       if (tracer) {
+                       } else {
                                rc = yama_ptracer_add(tracer, myself);
                                put_task_struct(tracer);
                        }