Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935946AbcJRPoo (ORCPT ); Tue, 18 Oct 2016 11:44:44 -0400 Received: from smtprelay0010.hostedemail.com ([216.40.44.10]:40611 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933364AbcJRPog (ORCPT ); Tue, 18 Oct 2016 11:44:36 -0400 X-Session-Marker: 726F737465647440676F6F646D69732E6F7267 X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,rostedt@goodmis.org,:::::::::::::::::::::::,RULES_HIT:2:41:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1437:1515:1516:1518:1535:1593:1594:1605:1730:1747:1777:1792:2393:2553:2559:2562:2693:3138:3139:3140:3141:3142:3622:3865:3866:3867:3868:3870:3871:3873:3874:4049:4118:4250:4321:4384:4605:5007:6119:6261:6742:7875:7904:8603:8660:9010:9040:10004:10848:10967:11026:11232:11473:11657:11658:11914:12043:12291:12296:12438:12555:12683:12740:12760:13148:13230:13255:13439:13972:14096:14097:14659:21080:21451:30054:30064:30079:30090:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:3,LUA_SUMMARY:none X-HE-Tag: hand98_42d6d9c53292c X-Filterd-Recvd-Size: 7935 Date: Tue, 18 Oct 2016 11:44:18 -0400 From: Steven Rostedt To: Chunyan Zhang Cc: mathieu.poirier@linaro.org, alexander.shishkin@linux.intel.com, mingo@redhat.com, mike.leach@arm.com, tor@ti.com, philippe.langlais@st.com, nicolas.guion@st.com, felipe.balbi@linux.intel.com, zhang.lyra@gmail.com, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH V7 1/3] tracing: add a possibility of exporting function trace to other places instead of ring buffer only Message-ID: <20161018114418.3445c390@gandalf.local.home> In-Reply-To: <1476778140-10319-2-git-send-email-zhang.chunyan@linaro.org> References: <1476778140-10319-1-git-send-email-zhang.chunyan@linaro.org> <1476778140-10319-2-git-send-email-zhang.chunyan@linaro.org> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 6486 Lines: 240 On Tue, 18 Oct 2016 16:08:58 +0800 Chunyan Zhang wrote: > Currently Function traces can be only exported to ring buffer, this > patch added trace_export concept which can process traces and export > them to a registered destination as an addition to the current only > one output of Ftrace - i.e. ring buffer. > > In this way, if we want Function traces to be sent to other destination > rather than ring buffer only, we just need to register a new trace_export > and implement its own .write() function for writing traces to storage. > > With this patch, only Function trace (trace type is TRACE_FN) > is supported. This is getting better, but I still have some nits. > > Signed-off-by: Chunyan Zhang > --- > include/linux/trace.h | 28 +++++++++++ > kernel/trace/trace.c | 132 +++++++++++++++++++++++++++++++++++++++++++++++++- > 2 files changed, 159 insertions(+), 1 deletion(-) > create mode 100644 include/linux/trace.h > > diff --git a/include/linux/trace.h b/include/linux/trace.h > new file mode 100644 > index 0000000..eb1c5b8 > --- /dev/null > +++ b/include/linux/trace.h > @@ -0,0 +1,28 @@ > +#ifndef _LINUX_TRACE_H > +#define _LINUX_TRACE_H > + > +#ifdef CONFIG_TRACING > +/* > + * The trace export - an export of Ftrace output. The trace_export > + * can process traces and export them to a registered destination as > + * an addition to the current only output of Ftrace - i.e. ring buffer. > + * > + * If you want traces to be sent to some other place rather than ring > + * buffer only, just need to register a new trace_export and implement > + * its own .write() function for writing traces to the storage. > + * > + * next - pointer to the next trace_export > + * write - copy traces which have been delt with ->commit() to > + * the destination > + */ > +struct trace_export { > + struct trace_export __rcu *next; > + void (*write)(const char *, unsigned int); Why const char*? Why not const void *? This will never be a string. > +}; > + > +int register_ftrace_export(struct trace_export *export); > +int unregister_ftrace_export(struct trace_export *export); > + > +#endif /* CONFIG_TRACING */ > + > +#endif /* _LINUX_TRACE_H */ > diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c > index 8696ce6..db94ec1 100644 > --- a/kernel/trace/trace.c > +++ b/kernel/trace/trace.c > @@ -40,6 +40,7 @@ > #include > #include > #include > +#include > #include > > #include "trace.h" > @@ -2128,6 +2129,132 @@ void trace_buffer_unlock_commit_regs(struct trace_array *tr, > ftrace_trace_userstack(buffer, flags, pc); > } > > +static void > +trace_process_export(struct trace_export *export, > + struct ring_buffer_event *event) > +{ > + struct trace_entry *entry; > + unsigned int size = 0; > + > + entry = ring_buffer_event_data(event); > + > + size = ring_buffer_event_length(event); > + > + if (export->write) > + export->write((char *)entry, size); Is there ever going to be a time where export->write wont be set? And if there is, this can be racy. As in CPU 0: CPU 1: ------ ------ if (export->write) export->write = NULL; export->write(entry, size); BOOM! -- Steve > +} > + > +static DEFINE_MUTEX(ftrace_export_lock); > + > +static struct trace_export __rcu *ftrace_exports_list __read_mostly; > + > +static DEFINE_STATIC_KEY_FALSE(ftrace_exports_enabled); > + > +static inline void ftrace_exports_enable(void) > +{ > + static_branch_enable(&ftrace_exports_enabled); > +} > + > +static inline void ftrace_exports_disable(void) > +{ > + static_branch_disable(&ftrace_exports_enabled); > +} > + > +void ftrace_exports(struct ring_buffer_event *event) > +{ > + struct trace_export *export; > + > + preempt_disable_notrace(); > + > + export = rcu_dereference_raw_notrace(ftrace_exports_list); > + while (export) { > + trace_process_export(export, event); > + export = rcu_dereference_raw_notrace(export->next); > + } > + > + preempt_enable_notrace(); > +} > + > +static inline void > +add_trace_export(struct trace_export **list, struct trace_export *export) > +{ > + rcu_assign_pointer(export->next, *list); > + /* > + * We are entering export into the list but another > + * CPU might be walking that list. We need to make sure > + * the export->next pointer is valid before another CPU sees > + * the export pointer included into the list. > + */ > + rcu_assign_pointer(*list, export); > +} > + > +static inline int > +rm_trace_export(struct trace_export **list, struct trace_export *export) > +{ > + struct trace_export **p; > + > + for (p = list; *p != NULL; p = &(*p)->next) > + if (*p == export) > + break; > + > + if (*p != export) > + return -1; > + > + rcu_assign_pointer(*p, (*p)->next); > + > + return 0; > +} > + > +static inline void > +add_ftrace_export(struct trace_export **list, struct trace_export *export) > +{ > + if (*list == NULL) > + ftrace_exports_enable(); > + > + add_trace_export(list, export); > +} > + > +static inline int > +rm_ftrace_export(struct trace_export **list, struct trace_export *export) > +{ > + int ret; > + > + ret = rm_trace_export(list, export); > + if (*list == NULL) > + ftrace_exports_disable(); > + > + return ret; > +} > + > +int register_ftrace_export(struct trace_export *export) > +{ > + if (WARN_ON_ONCE(!export->write)) > + return -1; > + > + mutex_lock(&ftrace_export_lock); > + > + add_ftrace_export(&ftrace_exports_list, export); > + > + mutex_unlock(&ftrace_export_lock); > + > + return 0; > +} > +EXPORT_SYMBOL_GPL(register_ftrace_export); > + > +int unregister_ftrace_export(struct trace_export *export) > +{ > + int ret; > + > + mutex_lock(&ftrace_export_lock); > + > + ret = rm_ftrace_export(&ftrace_exports_list, export); > + > + mutex_unlock(&ftrace_export_lock); > + > + return ret; > +} > +EXPORT_SYMBOL_GPL(unregister_ftrace_export); > + > void > trace_function(struct trace_array *tr, > unsigned long ip, unsigned long parent_ip, unsigned long flags, > @@ -2146,8 +2273,11 @@ trace_function(struct trace_array *tr, > entry->ip = ip; > entry->parent_ip = parent_ip; > > - if (!call_filter_check_discard(call, entry, buffer, event)) > + if (!call_filter_check_discard(call, entry, buffer, event)) { > + if (static_branch_unlikely(&ftrace_exports_enabled)) > + ftrace_exports(event); > __buffer_unlock_commit(buffer, event); > + } > } > > #ifdef CONFIG_STACKTRACE