Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754991AbdGJWwz (ORCPT ); Mon, 10 Jul 2017 18:52:55 -0400 Received: from mail.kernel.org ([198.145.29.99]:48376 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754985AbdGJWwx (ORCPT ); Mon, 10 Jul 2017 18:52:53 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4226F22B55 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=acme@kernel.org Date: Mon, 10 Jul 2017 19:52:49 -0300 From: Arnaldo Carvalho de Melo To: Krister Johansen Cc: Thomas-Mich Richter , Brendan Gregg , Peter Zijlstra , Ingo Molnar , Alexander Shishkin , linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 tip/perf/core 1/6] perf symbols: find symbols in different mount namespace Message-ID: <20170710225249.GC27350@kernel.org> References: <20170705204511.GD29683@templeofstupid.com> <1499305693-1599-1-git-send-email-kjlx@templeofstupid.com> <1499305693-1599-2-git-send-email-kjlx@templeofstupid.com> <20170706194130.GM27350@kernel.org> <20170707193640.GA2554@templeofstupid.com> <381cf00c-c540-8c20-7182-ecdd94f2d81c@linux.vnet.ibm.com> <20170710223924.GC6865@templeofstupid.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170710223924.GC6865@templeofstupid.com> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.8.0 (2017-02-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2782 Lines: 52 Em Mon, Jul 10, 2017 at 03:39:25PM -0700, Krister Johansen escreveu: > On Mon, Jul 10, 2017 at 08:17:00AM +0200, Thomas-Mich Richter wrote: > > On 07/07/2017 09:36 PM, Krister Johansen wrote: > > > On Thu, Jul 06, 2017 at 04:41:30PM -0300, Arnaldo Carvalho de Melo wrote: > > >> Em Wed, Jul 05, 2017 at 06:48:08PM -0700, Krister Johansen escreveu: > > >>> Teach perf how to resolve symbols from binaries that are in a different > > >>> mount namespace from the tool. This allows perf to generate meaningful > > >>> stack traces even if the binary resides in a different mount namespace > > >>> from the tool. > > >> > > >> I was trying to find a way to test after applying each of the patches in > > >> this series, when it ocurred to me that if a process that appears on a > > >> perf.data file has exit, how can we access /proc/%ITS_PID/something? > > > > > > You're correct. We can't access /proc//whatever once the process > > > has exited. That was the impeteus for patches 4 and 6, which allow us > > > to capture the binary (and debuginfo, if it exists) into the buildid > > > cache so that if we do have a trace that exists after a process or > > > container exists, we'll still be able to resolve some of the symbols. > > Any ideas on how to extend this to be able to resolve symbols after > > the process/container exited? > > I believe it boils down on how to interpret the mnt inode number in the > > PERF_RECORD_NAMESPACE record... > > Can this be done post-mortem? Maybe the PERF_RECORD_NAMESPACE record > > has to contain more data than just the inode number? > I think we're talking past one another. If the container exits then the > inode numbers that identify mount namespace are referring to something > that is no longer valid. There's no mount namespace to enter in order > to locate the binary objects. They may be on a volume that's no longer > mounted. > I have a pair of patches in the existing set that copies the binary > objects into the buildid cache. This lets you resolve the symbols after > the container has exited, provided that you recorded the buildids during > the trace. > If you apply all the patches in this set, you should be able to generate > traces that you can look at with script or report even after the process > has exited. I've been able to do it in my tests, at least. I will work on testing them soon, I just wanted this discussion to take place, what you did seems to be the best we can do with the existing kernel infrastructure, and is a clear advance, so we need to test and merge it. Getting the build-ids for the binaries is the key here, then its just a matter of populating a database where to get the matching binaries, we wouldn't need even to copy the actual binaries at record time. - Arnaldo