]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
perf: Copy parent's address filter offsets on clone
authorAlexander Shishkin <alexander.shishkin@linux.intel.com>
Fri, 15 Feb 2019 11:56:54 +0000 (13:56 +0200)
committerKhalid Elmously <khalid.elmously@canonical.com>
Fri, 14 Feb 2020 05:29:37 +0000 (00:29 -0500)
BugLink: https://bugs.launchpad.net/bugs/1863019
[ Upstream commit 18736eef12137c59f60cc9f56dc5bea05c92e0eb ]

When a child event is allocated in the inherit_event() path, the VMA
based filter offsets are not copied from the parent, even though the
address space mapping of the new task remains the same, which leads to
no trace for the new task until exec.

Reported-by: Mansour Alharthi <malharthi9@gatech.edu>
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Tested-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Fixes: 375637bc5249 ("perf/core: Introduce address range filtering")
Link: http://lkml.kernel.org/r/20190215115655.63469-2-alexander.shishkin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
kernel/events/core.c

index e563a9a7ae42b2b3662bee24a7a48013deb436da..093d619545b11ebbb8c82388cb4a2b4d7b8b1f13 100644 (file)
@@ -1259,6 +1259,7 @@ static void put_ctx(struct perf_event_context *ctx)
  *           perf_event_context::lock
  *         perf_event::mmap_mutex
  *         mmap_sem
+ *           perf_addr_filters_head::lock
  *
  *    cpu_hotplug_lock
  *      pmus_lock
@@ -9647,6 +9648,20 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
                        goto err_per_task;
                }
 
+               /*
+                * Clone the parent's vma offsets: they are valid until exec()
+                * even if the mm is not shared with the parent.
+                */
+               if (event->parent) {
+                       struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
+
+                       raw_spin_lock_irq(&ifh->lock);
+                       memcpy(event->addr_filters_offs,
+                              event->parent->addr_filters_offs,
+                              pmu->nr_addr_filters * sizeof(unsigned long));
+                       raw_spin_unlock_irq(&ifh->lock);
+               }
+
                /* force hw sync on the address filters */
                event->addr_filters_gen = 1;
        }