perf_events: Fix invalid pointer when pid is invalid
authorStephane Eranian <[email protected]>
Mon, 4 Oct 2010 10:00:02 +0000 (12:00 +0200)
committerIngo Molnar <[email protected]>
Mon, 4 Oct 2010 10:47:20 +0000 (12:47 +0200)
This patch fixes an error in perf_event_open() when the pid
provided by the user is invalid. find_lively_task_by_vpid()
does not return NULL on error but an error code. Without the
fix the error code was silently passed to find_get_context()
which would eventually cause a invalid pointer dereference.

Signed-off-by: Stephane Eranian <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
LKML-Reference: <4ca9a5d1.e8e9d80a.3dbb.ffff8f2e@mx.google.com>
Signed-off-by: Ingo Molnar <[email protected]>
kernel/perf_event.c

index c16158c77dfd015a64ee0d0efac9b7617224dd39..64507eaa2d9ed342ae4b9a7a139be09b129de5c8 100644 (file)
@@ -5616,8 +5616,13 @@ SYSCALL_DEFINE5(perf_event_open,
                }
        }
 
-       if (pid != -1)
+       if (pid != -1) {
                task = find_lively_task_by_vpid(pid);
+               if (IS_ERR(task)) {
+                       err = PTR_ERR(task);
+                       goto err_group_fd;
+               }
+       }
 
        /*
         * Get the target context (task or percpu):