From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brPtd-0004kz-Nn for qemu-devel@nongnu.org; Tue, 04 Oct 2016 09:36:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1brPtY-0004LJ-S1 for qemu-devel@nongnu.org; Tue, 04 Oct 2016 09:36:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brPtY-0004Kw-Ky for qemu-devel@nongnu.org; Tue, 04 Oct 2016 09:36:32 -0400 From: "Daniel P. Berrange" Date: Tue, 4 Oct 2016 14:35:51 +0100 Message-Id: <1475588159-30598-13-git-send-email-berrange@redhat.com> In-Reply-To: <1475588159-30598-1-git-send-email-berrange@redhat.com> References: <1475588159-30598-1-git-send-email-berrange@redhat.com> Subject: [Qemu-devel] [PATCH v6 12/20] trace: don't abort qemu if ftrace can't be initialized List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Llu=C3=ADs=20Vilanova?= , Stefan Hajnoczi , "Daniel P. Berrange" If the ftrace backend is compiled into QEMU, any attempt to start QEMU while non-root will fail due to the inability to open /sys/kernel/debug/tracing/tracing_on. Add a fallback into the code so that it connects up the trace_marker_fd variable to /dev/null when setting EACCESS on the 'trace_on' file. This allows QEMU to run, with ftrace turned into a no-op. Signed-off-by: Daniel P. Berrange --- trace/ftrace.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/trace/ftrace.c b/trace/ftrace.c index e953922..3588bb0 100644 --- a/trace/ftrace.c +++ b/trace/ftrace.c @@ -51,6 +51,12 @@ bool ftrace_init(void) snprintf(path, PATH_MAX, "%s/tracing/tracing_on", debugfs); trace_fd = open(path, O_WRONLY); if (trace_fd < 0) { + if (errno == EACCES) { + trace_marker_fd = open("/dev/null", O_WRONLY); + if (trace_marker_fd != -1) { + return true; + } + } perror("Could not open ftrace 'tracing_on' file"); return false; } else { -- 2.7.4