blob: d24101cfc42551266f045b475882a52f3b0c5b83 [file] [log] [blame]
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001/*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
12 * Copyright (C) 2004 William Lee Irwin III
13 */
14#include <linux/utsrelease.h>
15#include <linux/kallsyms.h>
16#include <linux/seq_file.h>
Steven Rostedt3f5a54e2008-07-30 22:36:46 -040017#include <linux/notifier.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020018#include <linux/debugfs.h>
Steven Rostedt4c11d7a2008-05-12 21:20:43 +020019#include <linux/pagemap.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020020#include <linux/hardirq.h>
21#include <linux/linkage.h>
22#include <linux/uaccess.h>
23#include <linux/ftrace.h>
24#include <linux/module.h>
25#include <linux/percpu.h>
Steven Rostedt3f5a54e2008-07-30 22:36:46 -040026#include <linux/kdebug.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020027#include <linux/ctype.h>
28#include <linux/init.h>
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +020029#include <linux/poll.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020030#include <linux/gfp.h>
31#include <linux/fs.h>
Abhishek Sagar76094a22008-05-28 00:03:18 +053032#include <linux/kprobes.h>
Steven Rostedt3eefae92008-05-12 21:21:04 +020033#include <linux/writeback.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020034
Ingo Molnar86387f72008-05-12 21:20:51 +020035#include <linux/stacktrace.h>
36
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020037#include "trace.h"
38
39unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX;
40unsigned long __read_mostly tracing_thresh;
41
Steven Rostedtab464282008-05-12 21:21:00 +020042static unsigned long __read_mostly tracing_nr_buffers;
43static cpumask_t __read_mostly tracing_buffer_mask;
44
45#define for_each_tracing_cpu(cpu) \
46 for_each_cpu_mask(cpu, tracing_buffer_mask)
47
Steven Rostedta98a3c32008-05-12 21:20:59 +020048static int trace_alloc_page(void);
49static int trace_free_page(void);
50
Steven Rostedt60a11772008-05-12 21:20:44 +020051static int tracing_disabled = 1;
52
Steven Rostedt3eefae92008-05-12 21:21:04 +020053static unsigned long tracing_pages_allocated;
54
Thomas Gleixner72829bc2008-05-23 21:37:28 +020055long
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020056ns2usecs(cycle_t nsec)
57{
58 nsec += 500;
59 do_div(nsec, 1000);
60 return nsec;
61}
62
Ingo Molnare309b412008-05-12 21:20:51 +020063cycle_t ftrace_now(int cpu)
Ingo Molnar750ed1a2008-05-12 21:20:46 +020064{
Ingo Molnar0fd9e0d2008-05-12 21:20:48 +020065 return cpu_clock(cpu);
Ingo Molnar750ed1a2008-05-12 21:20:46 +020066}
67
Steven Rostedt4fcdae82008-05-12 21:21:00 +020068/*
69 * The global_trace is the descriptor that holds the tracing
70 * buffers for the live tracing. For each CPU, it contains
71 * a link list of pages that will store trace entries. The
72 * page descriptor of the pages in the memory is used to hold
73 * the link list by linking the lru item in the page descriptor
74 * to each of the pages in the buffer per CPU.
75 *
76 * For each active CPU there is a data field that holds the
77 * pages for the buffer for that CPU. Each CPU has the same number
78 * of pages allocated for its buffer.
79 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020080static struct trace_array global_trace;
81
82static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
83
Steven Rostedt4fcdae82008-05-12 21:21:00 +020084/*
85 * The max_tr is used to snapshot the global_trace when a maximum
86 * latency is reached. Some tracers will use this to store a maximum
87 * trace while it continues examining live traces.
88 *
89 * The buffers for the max_tr are set up the same as the global_trace.
90 * When a snapshot is taken, the link list of the max_tr is swapped
91 * with the link list of the global_trace and the buffers are reset for
92 * the global_trace so the tracing can continue.
93 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020094static struct trace_array max_tr;
95
96static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
97
Steven Rostedt4fcdae82008-05-12 21:21:00 +020098/* tracer_enabled is used to toggle activation of a tracer */
Steven Rostedt26994ea2008-05-12 21:20:48 +020099static int tracer_enabled = 1;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200100
Steven Rostedt60bc0802008-07-10 20:58:16 -0400101/* function tracing enabled */
102int ftrace_function_enabled;
103
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200104/*
105 * trace_nr_entries is the number of entries that is allocated
106 * for a buffer. Note, the number of entries is always rounded
107 * to ENTRIES_PER_PAGE.
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400108 *
109 * This number is purposely set to a low number of 16384.
110 * If the dump on oops happens, it will be much appreciated
111 * to not have to wait for all that output. Anyway this can be
112 * boot time and run time configurable.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200113 */
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400114#define TRACE_ENTRIES_DEFAULT 16384UL
115
116static unsigned long trace_nr_entries = TRACE_ENTRIES_DEFAULT;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200117
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200118/* trace_types holds a link list of available tracers. */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200119static struct tracer *trace_types __read_mostly;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200120
121/* current_trace points to the tracer that is currently active */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200122static struct tracer *current_trace __read_mostly;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200123
124/*
125 * max_tracer_type_len is used to simplify the allocating of
126 * buffers to read userspace tracer names. We keep track of
127 * the longest tracer name registered.
128 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200129static int max_tracer_type_len;
130
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200131/*
132 * trace_types_lock is used to protect the trace_types list.
133 * This lock is also used to keep user access serialized.
134 * Accesses from userspace will grab this lock while userspace
135 * activities happen inside the kernel.
136 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200137static DEFINE_MUTEX(trace_types_lock);
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200138
139/* trace_wait is a waitqueue for tasks blocked on trace_poll */
Ingo Molnar4e655512008-05-12 21:20:52 +0200140static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
141
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200142/* trace_flags holds iter_ctrl options */
Ingo Molnar4e655512008-05-12 21:20:52 +0200143unsigned long trace_flags = TRACE_ITER_PRINT_PARENT;
144
Ankita Garg2b1bce12008-06-09 14:10:25 +0530145static notrace void no_trace_init(struct trace_array *tr)
146{
147 int cpu;
148
Steven Rostedt60bc0802008-07-10 20:58:16 -0400149 ftrace_function_enabled = 0;
Ankita Garg2b1bce12008-06-09 14:10:25 +0530150 if(tr->ctrl)
151 for_each_online_cpu(cpu)
152 tracing_reset(tr->data[cpu]);
153 tracer_enabled = 0;
154}
155
156/* dummy trace to disable tracing */
157static struct tracer no_tracer __read_mostly = {
158 .name = "none",
159 .init = no_trace_init
160};
161
162
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200163/**
164 * trace_wake_up - wake up tasks waiting for trace input
165 *
166 * Simply wakes up any task that is blocked on the trace_wait
167 * queue. These is used with trace_poll for tasks polling the trace.
168 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200169void trace_wake_up(void)
170{
Ingo Molnar017730c2008-05-12 21:20:52 +0200171 /*
172 * The runqueue_is_locked() can fail, but this is the best we
173 * have for now:
174 */
175 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
Ingo Molnar4e655512008-05-12 21:20:52 +0200176 wake_up(&trace_wait);
177}
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200178
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200179#define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(struct trace_entry))
180
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200181static int __init set_nr_entries(char *str)
182{
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200183 unsigned long nr_entries;
184 int ret;
185
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200186 if (!str)
187 return 0;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200188 ret = strict_strtoul(str, 0, &nr_entries);
189 /* nr_entries can not be zero */
190 if (ret < 0 || nr_entries == 0)
191 return 0;
192 trace_nr_entries = nr_entries;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200193 return 1;
194}
195__setup("trace_entries=", set_nr_entries);
196
Steven Rostedt57f50be2008-05-12 21:20:44 +0200197unsigned long nsecs_to_usecs(unsigned long nsecs)
198{
199 return nsecs / 1000;
200}
201
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200202/*
203 * trace_flag_type is an enumeration that holds different
204 * states when a trace occurs. These are:
205 * IRQS_OFF - interrupts were disabled
206 * NEED_RESCED - reschedule is requested
207 * HARDIRQ - inside an interrupt handler
208 * SOFTIRQ - inside a softirq handler
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400209 * CONT - multiple entries hold the trace item
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200210 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200211enum trace_flag_type {
212 TRACE_FLAG_IRQS_OFF = 0x01,
213 TRACE_FLAG_NEED_RESCHED = 0x02,
214 TRACE_FLAG_HARDIRQ = 0x04,
215 TRACE_FLAG_SOFTIRQ = 0x08,
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400216 TRACE_FLAG_CONT = 0x10,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200217};
218
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200219/*
220 * TRACE_ITER_SYM_MASK masks the options in trace_flags that
221 * control the output of kernel symbols.
222 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200223#define TRACE_ITER_SYM_MASK \
224 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
225
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200226/* These must match the bit postions in trace_iterator_flags */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200227static const char *trace_options[] = {
228 "print-parent",
229 "sym-offset",
230 "sym-addr",
231 "verbose",
Ingo Molnarf9896bf2008-05-12 21:20:47 +0200232 "raw",
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200233 "hex",
Ingo Molnarcb0f12a2008-05-12 21:20:47 +0200234 "bin",
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +0200235 "block",
Ingo Molnar86387f72008-05-12 21:20:51 +0200236 "stacktrace",
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200237 "sched-tree",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200238 NULL
239};
240
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200241/*
242 * ftrace_max_lock is used to protect the swapping of buffers
243 * when taking a max snapshot. The buffers themselves are
244 * protected by per_cpu spinlocks. But the action of the swap
245 * needs its own lock.
246 *
247 * This is defined as a raw_spinlock_t in order to help
248 * with performance when lockdep debugging is enabled.
249 */
Steven Rostedt92205c22008-05-12 21:20:55 +0200250static raw_spinlock_t ftrace_max_lock =
251 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200252
253/*
254 * Copy the new maximum trace into the separate maximum-trace
255 * structure. (this way the maximum trace is permanently saved,
256 * for later retrieval via /debugfs/tracing/latency_trace)
257 */
Ingo Molnare309b412008-05-12 21:20:51 +0200258static void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200259__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
260{
261 struct trace_array_cpu *data = tr->data[cpu];
262
263 max_tr.cpu = cpu;
264 max_tr.time_start = data->preempt_timestamp;
265
266 data = max_tr.data[cpu];
267 data->saved_latency = tracing_max_latency;
268
269 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
270 data->pid = tsk->pid;
271 data->uid = tsk->uid;
272 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
273 data->policy = tsk->policy;
274 data->rt_priority = tsk->rt_priority;
275
276 /* record this tasks comm */
277 tracing_record_cmdline(current);
278}
279
Steven Rostedt19384c02008-05-22 00:22:16 -0400280#define CHECK_COND(cond) \
281 if (unlikely(cond)) { \
282 tracing_disabled = 1; \
283 WARN_ON(1); \
284 return -1; \
285 }
286
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200287/**
288 * check_pages - integrity check of trace buffers
289 *
290 * As a safty measure we check to make sure the data pages have not
Steven Rostedt19384c02008-05-22 00:22:16 -0400291 * been corrupted.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200292 */
Steven Rostedt19384c02008-05-22 00:22:16 -0400293int check_pages(struct trace_array_cpu *data)
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200294{
295 struct page *page, *tmp;
296
Steven Rostedt19384c02008-05-22 00:22:16 -0400297 CHECK_COND(data->trace_pages.next->prev != &data->trace_pages);
298 CHECK_COND(data->trace_pages.prev->next != &data->trace_pages);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200299
300 list_for_each_entry_safe(page, tmp, &data->trace_pages, lru) {
Steven Rostedt19384c02008-05-22 00:22:16 -0400301 CHECK_COND(page->lru.next->prev != &page->lru);
302 CHECK_COND(page->lru.prev->next != &page->lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200303 }
Steven Rostedt19384c02008-05-22 00:22:16 -0400304
305 return 0;
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200306}
307
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200308/**
309 * head_page - page address of the first page in per_cpu buffer.
310 *
311 * head_page returns the page address of the first page in
312 * a per_cpu buffer. This also preforms various consistency
313 * checks to make sure the buffer has not been corrupted.
314 */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200315void *head_page(struct trace_array_cpu *data)
316{
317 struct page *page;
318
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200319 if (list_empty(&data->trace_pages))
320 return NULL;
321
322 page = list_entry(data->trace_pages.next, struct page, lru);
323 BUG_ON(&page->lru == &data->trace_pages);
324
325 return page_address(page);
326}
327
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200328/**
329 * trace_seq_printf - sequence printing of trace information
330 * @s: trace sequence descriptor
331 * @fmt: printf format string
332 *
333 * The tracer may use either sequence operations or its own
334 * copy to user routines. To simplify formating of a trace
335 * trace_seq_printf is used to store strings into a special
336 * buffer (@s). Then the output may be either used by
337 * the sequencer or pulled into another buffer.
338 */
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200339int
Steven Rostedt214023c2008-05-12 21:20:46 +0200340trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
341{
342 int len = (PAGE_SIZE - 1) - s->len;
343 va_list ap;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200344 int ret;
Steven Rostedt214023c2008-05-12 21:20:46 +0200345
346 if (!len)
347 return 0;
348
349 va_start(ap, fmt);
Steven Rostedtb3806b42008-05-12 21:20:46 +0200350 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
Steven Rostedt214023c2008-05-12 21:20:46 +0200351 va_end(ap);
352
Steven Rostedtb3806b42008-05-12 21:20:46 +0200353 /* If we can't write it all, don't bother writing anything */
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200354 if (ret >= len)
Steven Rostedtb3806b42008-05-12 21:20:46 +0200355 return 0;
356
357 s->len += ret;
Steven Rostedt214023c2008-05-12 21:20:46 +0200358
359 return len;
360}
361
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200362/**
363 * trace_seq_puts - trace sequence printing of simple string
364 * @s: trace sequence descriptor
365 * @str: simple string to record
366 *
367 * The tracer may use either the sequence operations or its own
368 * copy to user routines. This function records a simple string
369 * into a special buffer (@s) for later retrieval by a sequencer
370 * or other mechanism.
371 */
Ingo Molnare309b412008-05-12 21:20:51 +0200372static int
Steven Rostedt214023c2008-05-12 21:20:46 +0200373trace_seq_puts(struct trace_seq *s, const char *str)
374{
375 int len = strlen(str);
376
377 if (len > ((PAGE_SIZE - 1) - s->len))
Steven Rostedtb3806b42008-05-12 21:20:46 +0200378 return 0;
Steven Rostedt214023c2008-05-12 21:20:46 +0200379
380 memcpy(s->buffer + s->len, str, len);
381 s->len += len;
382
383 return len;
384}
385
Ingo Molnare309b412008-05-12 21:20:51 +0200386static int
Steven Rostedt214023c2008-05-12 21:20:46 +0200387trace_seq_putc(struct trace_seq *s, unsigned char c)
388{
389 if (s->len >= (PAGE_SIZE - 1))
390 return 0;
391
392 s->buffer[s->len++] = c;
393
394 return 1;
395}
396
Ingo Molnare309b412008-05-12 21:20:51 +0200397static int
Ingo Molnarcb0f12a2008-05-12 21:20:47 +0200398trace_seq_putmem(struct trace_seq *s, void *mem, size_t len)
399{
400 if (len > ((PAGE_SIZE - 1) - s->len))
401 return 0;
402
403 memcpy(s->buffer + s->len, mem, len);
404 s->len += len;
405
406 return len;
407}
408
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200409#define HEX_CHARS 17
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200410static const char hex2asc[] = "0123456789abcdef";
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200411
Ingo Molnare309b412008-05-12 21:20:51 +0200412static int
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200413trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
414{
415 unsigned char hex[HEX_CHARS];
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200416 unsigned char *data = mem;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200417 unsigned char byte;
418 int i, j;
419
420 BUG_ON(len >= HEX_CHARS);
421
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200422#ifdef __BIG_ENDIAN
423 for (i = 0, j = 0; i < len; i++) {
424#else
425 for (i = len-1, j = 0; i >= 0; i--) {
426#endif
427 byte = data[i];
428
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200429 hex[j++] = hex2asc[byte & 0x0f];
430 hex[j++] = hex2asc[byte >> 4];
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200431 }
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200432 hex[j++] = ' ';
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200433
434 return trace_seq_putmem(s, hex, j);
435}
436
Ingo Molnare309b412008-05-12 21:20:51 +0200437static void
Steven Rostedt214023c2008-05-12 21:20:46 +0200438trace_seq_reset(struct trace_seq *s)
439{
440 s->len = 0;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200441 s->readpos = 0;
442}
443
444ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
445{
446 int len;
447 int ret;
448
449 if (s->len <= s->readpos)
450 return -EBUSY;
451
452 len = s->len - s->readpos;
453 if (cnt > len)
454 cnt = len;
455 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
456 if (ret)
457 return -EFAULT;
458
459 s->readpos += len;
460 return cnt;
Steven Rostedt214023c2008-05-12 21:20:46 +0200461}
462
Ingo Molnare309b412008-05-12 21:20:51 +0200463static void
Steven Rostedt214023c2008-05-12 21:20:46 +0200464trace_print_seq(struct seq_file *m, struct trace_seq *s)
465{
466 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
467
468 s->buffer[len] = 0;
469 seq_puts(m, s->buffer);
470
471 trace_seq_reset(s);
472}
473
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200474/*
475 * flip the trace buffers between two trace descriptors.
476 * This usually is the buffers between the global_trace and
477 * the max_tr to record a snapshot of a current trace.
478 *
479 * The ftrace_max_lock must be held.
480 */
Ingo Molnare309b412008-05-12 21:20:51 +0200481static void
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200482flip_trace(struct trace_array_cpu *tr1, struct trace_array_cpu *tr2)
483{
484 struct list_head flip_pages;
485
486 INIT_LIST_HEAD(&flip_pages);
487
Steven Rostedt93a588f2008-05-12 21:20:45 +0200488 memcpy(&tr1->trace_head_idx, &tr2->trace_head_idx,
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200489 sizeof(struct trace_array_cpu) -
Steven Rostedt93a588f2008-05-12 21:20:45 +0200490 offsetof(struct trace_array_cpu, trace_head_idx));
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200491
492 check_pages(tr1);
493 check_pages(tr2);
494 list_splice_init(&tr1->trace_pages, &flip_pages);
495 list_splice_init(&tr2->trace_pages, &tr1->trace_pages);
496 list_splice_init(&flip_pages, &tr2->trace_pages);
497 BUG_ON(!list_empty(&flip_pages));
498 check_pages(tr1);
499 check_pages(tr2);
500}
501
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200502/**
503 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
504 * @tr: tracer
505 * @tsk: the task with the latency
506 * @cpu: The cpu that initiated the trace.
507 *
508 * Flip the buffers between the @tr and the max_tr and record information
509 * about which task was the cause of this latency.
510 */
Ingo Molnare309b412008-05-12 21:20:51 +0200511void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200512update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
513{
514 struct trace_array_cpu *data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200515 int i;
516
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200517 WARN_ON_ONCE(!irqs_disabled());
Steven Rostedt92205c22008-05-12 21:20:55 +0200518 __raw_spin_lock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200519 /* clear out all the previous traces */
Steven Rostedtab464282008-05-12 21:21:00 +0200520 for_each_tracing_cpu(i) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200521 data = tr->data[i];
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200522 flip_trace(max_tr.data[i], data);
Steven Rostedt89b2f972008-05-12 21:20:44 +0200523 tracing_reset(data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200524 }
525
526 __update_max_tr(tr, tsk, cpu);
Steven Rostedt92205c22008-05-12 21:20:55 +0200527 __raw_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200528}
529
530/**
531 * update_max_tr_single - only copy one trace over, and reset the rest
532 * @tr - tracer
533 * @tsk - task with the latency
534 * @cpu - the cpu of the buffer to copy.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200535 *
536 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200537 */
Ingo Molnare309b412008-05-12 21:20:51 +0200538void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200539update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
540{
541 struct trace_array_cpu *data = tr->data[cpu];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200542 int i;
543
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200544 WARN_ON_ONCE(!irqs_disabled());
Steven Rostedt92205c22008-05-12 21:20:55 +0200545 __raw_spin_lock(&ftrace_max_lock);
Steven Rostedtab464282008-05-12 21:21:00 +0200546 for_each_tracing_cpu(i)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200547 tracing_reset(max_tr.data[i]);
548
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200549 flip_trace(max_tr.data[cpu], data);
Steven Rostedt89b2f972008-05-12 21:20:44 +0200550 tracing_reset(data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200551
552 __update_max_tr(tr, tsk, cpu);
Steven Rostedt92205c22008-05-12 21:20:55 +0200553 __raw_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200554}
555
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200556/**
557 * register_tracer - register a tracer with the ftrace system.
558 * @type - the plugin for the tracer
559 *
560 * Register a new plugin tracer.
561 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200562int register_tracer(struct tracer *type)
563{
564 struct tracer *t;
565 int len;
566 int ret = 0;
567
568 if (!type->name) {
569 pr_info("Tracer must have a name\n");
570 return -1;
571 }
572
573 mutex_lock(&trace_types_lock);
574 for (t = trace_types; t; t = t->next) {
575 if (strcmp(type->name, t->name) == 0) {
576 /* already found */
577 pr_info("Trace %s already registered\n",
578 type->name);
579 ret = -1;
580 goto out;
581 }
582 }
583
Steven Rostedt60a11772008-05-12 21:20:44 +0200584#ifdef CONFIG_FTRACE_STARTUP_TEST
585 if (type->selftest) {
586 struct tracer *saved_tracer = current_trace;
587 struct trace_array_cpu *data;
588 struct trace_array *tr = &global_trace;
589 int saved_ctrl = tr->ctrl;
590 int i;
591 /*
592 * Run a selftest on this tracer.
593 * Here we reset the trace buffer, and set the current
594 * tracer to be this tracer. The tracer can then run some
595 * internal tracing to verify that everything is in order.
596 * If we fail, we do not register this tracer.
597 */
Steven Rostedtab464282008-05-12 21:21:00 +0200598 for_each_tracing_cpu(i) {
Steven Rostedt60a11772008-05-12 21:20:44 +0200599 data = tr->data[i];
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200600 if (!head_page(data))
601 continue;
Steven Rostedt60a11772008-05-12 21:20:44 +0200602 tracing_reset(data);
603 }
604 current_trace = type;
605 tr->ctrl = 0;
606 /* the test is responsible for initializing and enabling */
607 pr_info("Testing tracer %s: ", type->name);
608 ret = type->selftest(type, tr);
609 /* the test is responsible for resetting too */
610 current_trace = saved_tracer;
611 tr->ctrl = saved_ctrl;
612 if (ret) {
613 printk(KERN_CONT "FAILED!\n");
614 goto out;
615 }
Steven Rostedt1d4db002008-05-12 21:20:45 +0200616 /* Only reset on passing, to avoid touching corrupted buffers */
Steven Rostedtab464282008-05-12 21:21:00 +0200617 for_each_tracing_cpu(i) {
Steven Rostedt1d4db002008-05-12 21:20:45 +0200618 data = tr->data[i];
619 if (!head_page(data))
620 continue;
621 tracing_reset(data);
622 }
Steven Rostedt60a11772008-05-12 21:20:44 +0200623 printk(KERN_CONT "PASSED\n");
624 }
625#endif
626
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200627 type->next = trace_types;
628 trace_types = type;
629 len = strlen(type->name);
630 if (len > max_tracer_type_len)
631 max_tracer_type_len = len;
Steven Rostedt60a11772008-05-12 21:20:44 +0200632
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200633 out:
634 mutex_unlock(&trace_types_lock);
635
636 return ret;
637}
638
639void unregister_tracer(struct tracer *type)
640{
641 struct tracer **t;
642 int len;
643
644 mutex_lock(&trace_types_lock);
645 for (t = &trace_types; *t; t = &(*t)->next) {
646 if (*t == type)
647 goto found;
648 }
649 pr_info("Trace %s not registered\n", type->name);
650 goto out;
651
652 found:
653 *t = (*t)->next;
654 if (strlen(type->name) != max_tracer_type_len)
655 goto out;
656
657 max_tracer_type_len = 0;
658 for (t = &trace_types; *t; t = &(*t)->next) {
659 len = strlen((*t)->name);
660 if (len > max_tracer_type_len)
661 max_tracer_type_len = len;
662 }
663 out:
664 mutex_unlock(&trace_types_lock);
665}
666
Ingo Molnare309b412008-05-12 21:20:51 +0200667void tracing_reset(struct trace_array_cpu *data)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200668{
669 data->trace_idx = 0;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200670 data->overrun = 0;
Steven Rostedt93a588f2008-05-12 21:20:45 +0200671 data->trace_head = data->trace_tail = head_page(data);
672 data->trace_head_idx = 0;
673 data->trace_tail_idx = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200674}
675
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200676#define SAVED_CMDLINES 128
677static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
678static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
679static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
680static int cmdline_idx;
681static DEFINE_SPINLOCK(trace_cmdline_lock);
Steven Rostedt25b0b442008-05-12 21:21:00 +0200682
Steven Rostedt25b0b442008-05-12 21:21:00 +0200683/* temporary disable recording */
684atomic_t trace_record_cmdline_disabled __read_mostly;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200685
686static void trace_init_cmdlines(void)
687{
688 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
689 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
690 cmdline_idx = 0;
691}
692
Ingo Molnare309b412008-05-12 21:20:51 +0200693void trace_stop_cmdline_recording(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200694
Ingo Molnare309b412008-05-12 21:20:51 +0200695static void trace_save_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200696{
697 unsigned map;
698 unsigned idx;
699
700 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
701 return;
702
703 /*
704 * It's not the end of the world if we don't get
705 * the lock, but we also don't want to spin
706 * nor do we want to disable interrupts,
707 * so if we miss here, then better luck next time.
708 */
709 if (!spin_trylock(&trace_cmdline_lock))
710 return;
711
712 idx = map_pid_to_cmdline[tsk->pid];
713 if (idx >= SAVED_CMDLINES) {
714 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
715
716 map = map_cmdline_to_pid[idx];
717 if (map <= PID_MAX_DEFAULT)
718 map_pid_to_cmdline[map] = (unsigned)-1;
719
720 map_pid_to_cmdline[tsk->pid] = idx;
721
722 cmdline_idx = idx;
723 }
724
725 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
726
727 spin_unlock(&trace_cmdline_lock);
728}
729
Ingo Molnare309b412008-05-12 21:20:51 +0200730static char *trace_find_cmdline(int pid)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200731{
732 char *cmdline = "<...>";
733 unsigned map;
734
735 if (!pid)
736 return "<idle>";
737
738 if (pid > PID_MAX_DEFAULT)
739 goto out;
740
741 map = map_pid_to_cmdline[pid];
742 if (map >= SAVED_CMDLINES)
743 goto out;
744
745 cmdline = saved_cmdlines[map];
746
747 out:
748 return cmdline;
749}
750
Ingo Molnare309b412008-05-12 21:20:51 +0200751void tracing_record_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200752{
753 if (atomic_read(&trace_record_cmdline_disabled))
754 return;
755
756 trace_save_cmdline(tsk);
757}
758
Ingo Molnare309b412008-05-12 21:20:51 +0200759static inline struct list_head *
Steven Rostedt93a588f2008-05-12 21:20:45 +0200760trace_next_list(struct trace_array_cpu *data, struct list_head *next)
761{
762 /*
763 * Roundrobin - but skip the head (which is not a real page):
764 */
765 next = next->next;
766 if (unlikely(next == &data->trace_pages))
767 next = next->next;
768 BUG_ON(next == &data->trace_pages);
769
770 return next;
771}
772
Ingo Molnare309b412008-05-12 21:20:51 +0200773static inline void *
Steven Rostedt93a588f2008-05-12 21:20:45 +0200774trace_next_page(struct trace_array_cpu *data, void *addr)
775{
776 struct list_head *next;
777 struct page *page;
778
779 page = virt_to_page(addr);
780
781 next = trace_next_list(data, &page->lru);
782 page = list_entry(next, struct page, lru);
783
784 return page_address(page);
785}
786
Ingo Molnare309b412008-05-12 21:20:51 +0200787static inline struct trace_entry *
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200788tracing_get_trace_entry(struct trace_array *tr, struct trace_array_cpu *data)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200789{
790 unsigned long idx, idx_next;
791 struct trace_entry *entry;
792
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200793 data->trace_idx++;
Steven Rostedt93a588f2008-05-12 21:20:45 +0200794 idx = data->trace_head_idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200795 idx_next = idx + 1;
796
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200797 BUG_ON(idx * TRACE_ENTRY_SIZE >= PAGE_SIZE);
798
Steven Rostedt93a588f2008-05-12 21:20:45 +0200799 entry = data->trace_head + idx * TRACE_ENTRY_SIZE;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200800
801 if (unlikely(idx_next >= ENTRIES_PER_PAGE)) {
Steven Rostedt93a588f2008-05-12 21:20:45 +0200802 data->trace_head = trace_next_page(data, data->trace_head);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200803 idx_next = 0;
804 }
805
Steven Rostedt93a588f2008-05-12 21:20:45 +0200806 if (data->trace_head == data->trace_tail &&
807 idx_next == data->trace_tail_idx) {
808 /* overrun */
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200809 data->overrun++;
Steven Rostedt93a588f2008-05-12 21:20:45 +0200810 data->trace_tail_idx++;
811 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
812 data->trace_tail =
813 trace_next_page(data, data->trace_tail);
814 data->trace_tail_idx = 0;
815 }
816 }
817
818 data->trace_head_idx = idx_next;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200819
820 return entry;
821}
822
Ingo Molnare309b412008-05-12 21:20:51 +0200823static inline void
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200824tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200825{
826 struct task_struct *tsk = current;
827 unsigned long pc;
828
829 pc = preempt_count();
830
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400831 entry->field.preempt_count = pc & 0xff;
832 entry->field.pid = (tsk) ? tsk->pid : 0;
833 entry->field.t = ftrace_now(raw_smp_processor_id());
834 entry->field.flags =
835 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200836 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
837 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
838 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
839}
840
Ingo Molnare309b412008-05-12 21:20:51 +0200841void
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200842trace_function(struct trace_array *tr, struct trace_array_cpu *data,
843 unsigned long ip, unsigned long parent_ip, unsigned long flags)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200844{
845 struct trace_entry *entry;
Ingo Molnardcb63082008-05-12 21:20:48 +0200846 unsigned long irq_flags;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200847
Steven Rostedt92205c22008-05-12 21:20:55 +0200848 raw_local_irq_save(irq_flags);
849 __raw_spin_lock(&data->lock);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400850 entry = tracing_get_trace_entry(tr, data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200851 tracing_generic_entry_update(entry, flags);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400852 entry->type = TRACE_FN;
853 entry->field.fn.ip = ip;
854 entry->field.fn.parent_ip = parent_ip;
Steven Rostedt92205c22008-05-12 21:20:55 +0200855 __raw_spin_unlock(&data->lock);
856 raw_local_irq_restore(irq_flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200857}
858
Ingo Molnare309b412008-05-12 21:20:51 +0200859void
Ingo Molnar2e0f5762008-05-12 21:20:49 +0200860ftrace(struct trace_array *tr, struct trace_array_cpu *data,
861 unsigned long ip, unsigned long parent_ip, unsigned long flags)
862{
863 if (likely(!atomic_read(&data->disabled)))
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200864 trace_function(tr, data, ip, parent_ip, flags);
Ingo Molnar2e0f5762008-05-12 21:20:49 +0200865}
866
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200867#ifdef CONFIG_MMIOTRACE
868void __trace_mmiotrace_rw(struct trace_array *tr, struct trace_array_cpu *data,
869 struct mmiotrace_rw *rw)
870{
871 struct trace_entry *entry;
872 unsigned long irq_flags;
873
Ingo Molnar801a1752008-05-12 21:20:58 +0200874 raw_local_irq_save(irq_flags);
875 __raw_spin_lock(&data->lock);
876
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400877 entry = tracing_get_trace_entry(tr, data);
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200878 tracing_generic_entry_update(entry, 0);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400879 entry->type = TRACE_MMIO_RW;
880 entry->field.mmiorw = *rw;
Ingo Molnar801a1752008-05-12 21:20:58 +0200881
882 __raw_spin_unlock(&data->lock);
883 raw_local_irq_restore(irq_flags);
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200884
885 trace_wake_up();
886}
887
888void __trace_mmiotrace_map(struct trace_array *tr, struct trace_array_cpu *data,
889 struct mmiotrace_map *map)
890{
891 struct trace_entry *entry;
892 unsigned long irq_flags;
893
Ingo Molnar801a1752008-05-12 21:20:58 +0200894 raw_local_irq_save(irq_flags);
895 __raw_spin_lock(&data->lock);
896
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400897 entry = tracing_get_trace_entry(tr, data);
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200898 tracing_generic_entry_update(entry, 0);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400899 entry->type = TRACE_MMIO_MAP;
900 entry->field.mmiomap = *map;
Ingo Molnar801a1752008-05-12 21:20:58 +0200901
902 __raw_spin_unlock(&data->lock);
903 raw_local_irq_restore(irq_flags);
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200904
905 trace_wake_up();
906}
907#endif
908
Ingo Molnar86387f72008-05-12 21:20:51 +0200909void __trace_stack(struct trace_array *tr,
910 struct trace_array_cpu *data,
911 unsigned long flags,
912 int skip)
913{
914 struct trace_entry *entry;
915 struct stack_trace trace;
916
917 if (!(trace_flags & TRACE_ITER_STACKTRACE))
918 return;
919
920 entry = tracing_get_trace_entry(tr, data);
921 tracing_generic_entry_update(entry, flags);
922 entry->type = TRACE_STACK;
923
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400924 memset(&entry->field.stack, 0, sizeof(entry->field.stack));
Ingo Molnar86387f72008-05-12 21:20:51 +0200925
926 trace.nr_entries = 0;
927 trace.max_entries = FTRACE_STACK_ENTRIES;
928 trace.skip = skip;
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400929 trace.entries = entry->field.stack.caller;
Ingo Molnar86387f72008-05-12 21:20:51 +0200930
931 save_stack_trace(&trace);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200932}
933
Ingo Molnare309b412008-05-12 21:20:51 +0200934void
Ingo Molnara4feb8342008-05-12 21:21:02 +0200935__trace_special(void *__tr, void *__data,
936 unsigned long arg1, unsigned long arg2, unsigned long arg3)
937{
938 struct trace_array_cpu *data = __data;
939 struct trace_array *tr = __tr;
940 struct trace_entry *entry;
941 unsigned long irq_flags;
942
943 raw_local_irq_save(irq_flags);
944 __raw_spin_lock(&data->lock);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400945 entry = tracing_get_trace_entry(tr, data);
Ingo Molnara4feb8342008-05-12 21:21:02 +0200946 tracing_generic_entry_update(entry, 0);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400947 entry->type = TRACE_SPECIAL;
948 entry->field.special.arg1 = arg1;
949 entry->field.special.arg2 = arg2;
950 entry->field.special.arg3 = arg3;
Ingo Molnara4feb8342008-05-12 21:21:02 +0200951 __trace_stack(tr, data, irq_flags, 4);
952 __raw_spin_unlock(&data->lock);
953 raw_local_irq_restore(irq_flags);
954
955 trace_wake_up();
956}
957
958void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200959tracing_sched_switch_trace(struct trace_array *tr,
960 struct trace_array_cpu *data,
Ingo Molnar86387f72008-05-12 21:20:51 +0200961 struct task_struct *prev,
962 struct task_struct *next,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200963 unsigned long flags)
964{
965 struct trace_entry *entry;
Ingo Molnardcb63082008-05-12 21:20:48 +0200966 unsigned long irq_flags;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200967
Steven Rostedt92205c22008-05-12 21:20:55 +0200968 raw_local_irq_save(irq_flags);
969 __raw_spin_lock(&data->lock);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400970 entry = tracing_get_trace_entry(tr, data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200971 tracing_generic_entry_update(entry, flags);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400972 entry->type = TRACE_CTX;
973 entry->field.ctx.prev_pid = prev->pid;
974 entry->field.ctx.prev_prio = prev->prio;
975 entry->field.ctx.prev_state = prev->state;
976 entry->field.ctx.next_pid = next->pid;
977 entry->field.ctx.next_prio = next->prio;
978 entry->field.ctx.next_state = next->state;
Ingo Molnar74f4e362008-05-12 21:21:15 +0200979 __trace_stack(tr, data, flags, 5);
Steven Rostedt92205c22008-05-12 21:20:55 +0200980 __raw_spin_unlock(&data->lock);
981 raw_local_irq_restore(irq_flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200982}
983
Ingo Molnar57422792008-05-12 21:20:51 +0200984void
985tracing_sched_wakeup_trace(struct trace_array *tr,
986 struct trace_array_cpu *data,
Ingo Molnar86387f72008-05-12 21:20:51 +0200987 struct task_struct *wakee,
988 struct task_struct *curr,
Ingo Molnar57422792008-05-12 21:20:51 +0200989 unsigned long flags)
990{
991 struct trace_entry *entry;
992 unsigned long irq_flags;
993
Steven Rostedt92205c22008-05-12 21:20:55 +0200994 raw_local_irq_save(irq_flags);
995 __raw_spin_lock(&data->lock);
Ingo Molnar57422792008-05-12 21:20:51 +0200996 entry = tracing_get_trace_entry(tr, data);
997 tracing_generic_entry_update(entry, flags);
998 entry->type = TRACE_WAKE;
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400999 entry->field.ctx.prev_pid = curr->pid;
1000 entry->field.ctx.prev_prio = curr->prio;
1001 entry->field.ctx.prev_state = curr->state;
1002 entry->field.ctx.next_pid = wakee->pid;
1003 entry->field.ctx.next_prio = wakee->prio;
1004 entry->field.ctx.next_state = wakee->state;
Ingo Molnar74f4e362008-05-12 21:21:15 +02001005 __trace_stack(tr, data, flags, 6);
Steven Rostedt92205c22008-05-12 21:20:55 +02001006 __raw_spin_unlock(&data->lock);
1007 raw_local_irq_restore(irq_flags);
Ingo Molnar017730c2008-05-12 21:20:52 +02001008
1009 trace_wake_up();
Ingo Molnar57422792008-05-12 21:20:51 +02001010}
1011
Steven Rostedt4902f882008-05-22 00:22:18 -04001012void
1013ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1014{
1015 struct trace_array *tr = &global_trace;
1016 struct trace_array_cpu *data;
1017 unsigned long flags;
1018 long disabled;
1019 int cpu;
1020
1021 if (tracing_disabled || current_trace == &no_tracer || !tr->ctrl)
1022 return;
1023
1024 local_irq_save(flags);
1025 cpu = raw_smp_processor_id();
1026 data = tr->data[cpu];
1027 disabled = atomic_inc_return(&data->disabled);
1028
1029 if (likely(disabled == 1))
1030 __trace_special(tr, data, arg1, arg2, arg3);
1031
1032 atomic_dec(&data->disabled);
1033 local_irq_restore(flags);
1034}
1035
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001036#ifdef CONFIG_FTRACE
Ingo Molnare309b412008-05-12 21:20:51 +02001037static void
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001038function_trace_call(unsigned long ip, unsigned long parent_ip)
1039{
1040 struct trace_array *tr = &global_trace;
1041 struct trace_array_cpu *data;
1042 unsigned long flags;
1043 long disabled;
1044 int cpu;
1045
Steven Rostedt60bc0802008-07-10 20:58:16 -04001046 if (unlikely(!ftrace_function_enabled))
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001047 return;
1048
Abhishek Sagarecea6562008-06-21 23:47:53 +05301049 if (skip_trace(ip))
1050 return;
1051
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001052 local_irq_save(flags);
1053 cpu = raw_smp_processor_id();
1054 data = tr->data[cpu];
1055 disabled = atomic_inc_return(&data->disabled);
1056
1057 if (likely(disabled == 1))
Steven Rostedt6fb44b72008-05-12 21:20:49 +02001058 trace_function(tr, data, ip, parent_ip, flags);
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001059
1060 atomic_dec(&data->disabled);
1061 local_irq_restore(flags);
1062}
1063
1064static struct ftrace_ops trace_ops __read_mostly =
1065{
1066 .func = function_trace_call,
1067};
1068
Ingo Molnare309b412008-05-12 21:20:51 +02001069void tracing_start_function_trace(void)
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001070{
Steven Rostedt60bc0802008-07-10 20:58:16 -04001071 ftrace_function_enabled = 0;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001072 register_ftrace_function(&trace_ops);
Steven Rostedt60bc0802008-07-10 20:58:16 -04001073 if (tracer_enabled)
1074 ftrace_function_enabled = 1;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001075}
1076
Ingo Molnare309b412008-05-12 21:20:51 +02001077void tracing_stop_function_trace(void)
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001078{
Steven Rostedt60bc0802008-07-10 20:58:16 -04001079 ftrace_function_enabled = 0;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001080 unregister_ftrace_function(&trace_ops);
1081}
1082#endif
1083
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001084enum trace_file_type {
1085 TRACE_FILE_LAT_FMT = 1,
1086};
1087
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001088/* Return the current entry. */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001089static struct trace_entry *
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001090trace_entry_idx(struct trace_array *tr, struct trace_array_cpu *data,
1091 struct trace_iterator *iter, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001092{
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001093 struct page *page;
1094 struct trace_entry *array;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001095
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001096 if (iter->next_idx[cpu] >= tr->entries ||
Steven Rostedtb3806b42008-05-12 21:20:46 +02001097 iter->next_idx[cpu] >= data->trace_idx ||
1098 (data->trace_head == data->trace_tail &&
1099 data->trace_head_idx == data->trace_tail_idx))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001100 return NULL;
1101
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001102 if (!iter->next_page[cpu]) {
Steven Rostedt93a588f2008-05-12 21:20:45 +02001103 /* Initialize the iterator for this cpu trace buffer */
1104 WARN_ON(!data->trace_tail);
1105 page = virt_to_page(data->trace_tail);
1106 iter->next_page[cpu] = &page->lru;
1107 iter->next_page_idx[cpu] = data->trace_tail_idx;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001108 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001109
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001110 page = list_entry(iter->next_page[cpu], struct page, lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02001111 BUG_ON(&data->trace_pages == &page->lru);
1112
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001113 array = page_address(page);
1114
Steven Rostedt93a588f2008-05-12 21:20:45 +02001115 WARN_ON(iter->next_page_idx[cpu] >= ENTRIES_PER_PAGE);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001116 return &array[iter->next_page_idx[cpu]];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001117}
1118
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001119/* Increment the index counter of an iterator by one */
Steven Rostedt5a90f572008-09-03 17:42:51 -04001120static void __trace_iterator_increment(struct trace_iterator *iter, int cpu)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001121{
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001122 iter->next_idx[cpu]++;
1123 iter->next_page_idx[cpu]++;
1124
1125 if (iter->next_page_idx[cpu] >= ENTRIES_PER_PAGE) {
1126 struct trace_array_cpu *data = iter->tr->data[cpu];
1127
1128 iter->next_page_idx[cpu] = 0;
1129 iter->next_page[cpu] =
1130 trace_next_list(data, iter->next_page[cpu]);
1131 }
1132}
1133
Steven Rostedt5a90f572008-09-03 17:42:51 -04001134static void trace_iterator_increment(struct trace_iterator *iter, int cpu)
1135{
1136 iter->idx++;
1137 __trace_iterator_increment(iter, cpu);
1138}
1139
Ingo Molnare309b412008-05-12 21:20:51 +02001140static struct trace_entry *
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001141trace_entry_next(struct trace_array *tr, struct trace_array_cpu *data,
1142 struct trace_iterator *iter, int cpu)
1143{
1144 struct list_head *next_page;
1145 struct trace_entry *ent;
1146 int idx, next_idx, next_page_idx;
1147
1148 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
1149
1150 if (likely(!ent || ent->type != TRACE_CONT))
1151 return ent;
1152
1153 /* save the iterator details */
1154 idx = iter->idx;
1155 next_idx = iter->next_idx[cpu];
1156 next_page_idx = iter->next_page_idx[cpu];
1157 next_page = iter->next_page[cpu];
1158
1159 /* find a real entry */
1160 do {
Steven Rostedt5a90f572008-09-03 17:42:51 -04001161 __trace_iterator_increment(iter, cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001162 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
1163 } while (ent && ent->type != TRACE_CONT);
1164
1165 /* reset the iterator */
1166 iter->idx = idx;
1167 iter->next_idx[cpu] = next_idx;
1168 iter->next_page_idx[cpu] = next_page_idx;
1169 iter->next_page[cpu] = next_page;
1170
1171 return ent;
1172}
1173
1174static struct trace_entry *
1175__find_next_entry(struct trace_iterator *iter, int *ent_cpu, int inc)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001176{
1177 struct trace_array *tr = iter->tr;
1178 struct trace_entry *ent, *next = NULL;
1179 int next_cpu = -1;
1180 int cpu;
1181
Steven Rostedtab464282008-05-12 21:21:00 +02001182 for_each_tracing_cpu(cpu) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02001183 if (!head_page(tr->data[cpu]))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001184 continue;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001185
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001186 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001187
1188 if (ent && ent->type == TRACE_CONT) {
1189 struct trace_array_cpu *data = tr->data[cpu];
1190
1191 if (!inc)
1192 ent = trace_entry_next(tr, data, iter, cpu);
1193 else {
1194 while (ent && ent->type == TRACE_CONT) {
Steven Rostedt5a90f572008-09-03 17:42:51 -04001195 __trace_iterator_increment(iter, cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001196 ent = trace_entry_idx(tr, tr->data[cpu],
1197 iter, cpu);
1198 }
1199 }
1200 }
1201
Ingo Molnarcdd31cd2008-05-12 21:20:46 +02001202 /*
1203 * Pick the entry with the smallest timestamp:
1204 */
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001205 if (ent && (!next || ent->field.t < next->field.t)) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001206 next = ent;
1207 next_cpu = cpu;
1208 }
1209 }
1210
1211 if (ent_cpu)
1212 *ent_cpu = next_cpu;
1213
1214 return next;
1215}
1216
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001217/* Find the next real entry, without updating the iterator itself */
1218static struct trace_entry *
1219find_next_entry(struct trace_iterator *iter, int *ent_cpu)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001220{
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001221 return __find_next_entry(iter, ent_cpu, 0);
1222}
Ingo Molnar8c523a92008-05-12 21:20:46 +02001223
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001224/* Find the next real entry, and increment the iterator to the next entry */
1225static void *find_next_entry_inc(struct trace_iterator *iter)
1226{
1227 struct trace_entry *next;
1228 int next_cpu = -1;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001229
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001230 next = __find_next_entry(iter, &next_cpu, 1);
1231
1232 iter->prev_ent = iter->ent;
1233 iter->prev_cpu = iter->cpu;
1234
1235 iter->ent = next;
1236 iter->cpu = next_cpu;
1237
1238 if (next)
1239 trace_iterator_increment(iter, iter->cpu);
1240
1241 return next ? iter : NULL;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001242}
1243
Ingo Molnare309b412008-05-12 21:20:51 +02001244static void trace_consume(struct trace_iterator *iter)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001245{
1246 struct trace_array_cpu *data = iter->tr->data[iter->cpu];
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001247 struct trace_entry *ent;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001248
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001249 again:
Steven Rostedtb3806b42008-05-12 21:20:46 +02001250 data->trace_tail_idx++;
1251 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
1252 data->trace_tail = trace_next_page(data, data->trace_tail);
1253 data->trace_tail_idx = 0;
1254 }
1255
1256 /* Check if we empty it, then reset the index */
1257 if (data->trace_head == data->trace_tail &&
1258 data->trace_head_idx == data->trace_tail_idx)
1259 data->trace_idx = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001260
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001261 ent = trace_entry_idx(iter->tr, iter->tr->data[iter->cpu],
1262 iter, iter->cpu);
1263 if (ent && ent->type == TRACE_CONT)
1264 goto again;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001265}
1266
Ingo Molnare309b412008-05-12 21:20:51 +02001267static void *s_next(struct seq_file *m, void *v, loff_t *pos)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001268{
1269 struct trace_iterator *iter = m->private;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001270 int i = (int)*pos;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001271 void *ent;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001272
1273 (*pos)++;
1274
1275 /* can't go backwards */
1276 if (iter->idx > i)
1277 return NULL;
1278
1279 if (iter->idx < 0)
1280 ent = find_next_entry_inc(iter);
1281 else
1282 ent = iter;
1283
1284 while (ent && iter->idx < i)
1285 ent = find_next_entry_inc(iter);
1286
1287 iter->pos = *pos;
1288
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001289 return ent;
1290}
1291
1292static void *s_start(struct seq_file *m, loff_t *pos)
1293{
1294 struct trace_iterator *iter = m->private;
1295 void *p = NULL;
1296 loff_t l = 0;
1297 int i;
1298
1299 mutex_lock(&trace_types_lock);
1300
Steven Rostedtd15f57f2008-05-12 21:20:56 +02001301 if (!current_trace || current_trace != iter->trace) {
1302 mutex_unlock(&trace_types_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001303 return NULL;
Steven Rostedtd15f57f2008-05-12 21:20:56 +02001304 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001305
1306 atomic_inc(&trace_record_cmdline_disabled);
1307
1308 /* let the tracer grab locks here if needed */
1309 if (current_trace->start)
1310 current_trace->start(iter);
1311
1312 if (*pos != iter->pos) {
1313 iter->ent = NULL;
1314 iter->cpu = 0;
1315 iter->idx = -1;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001316 iter->prev_ent = NULL;
1317 iter->prev_cpu = -1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001318
Steven Rostedtab464282008-05-12 21:21:00 +02001319 for_each_tracing_cpu(i) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001320 iter->next_idx[i] = 0;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001321 iter->next_page[i] = NULL;
1322 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001323
1324 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1325 ;
1326
1327 } else {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001328 l = *pos - 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001329 p = s_next(m, p, &l);
1330 }
1331
1332 return p;
1333}
1334
1335static void s_stop(struct seq_file *m, void *p)
1336{
1337 struct trace_iterator *iter = m->private;
1338
1339 atomic_dec(&trace_record_cmdline_disabled);
1340
1341 /* let the tracer release locks here if needed */
1342 if (current_trace && current_trace == iter->trace && iter->trace->stop)
1343 iter->trace->stop(iter);
1344
1345 mutex_unlock(&trace_types_lock);
1346}
1347
Abhishek Sagar76094a22008-05-28 00:03:18 +05301348#define KRETPROBE_MSG "[unknown/kretprobe'd]"
1349
1350#ifdef CONFIG_KRETPROBES
1351static inline int kretprobed(unsigned long addr)
1352{
1353 return addr == (unsigned long)kretprobe_trampoline;
1354}
1355#else
1356static inline int kretprobed(unsigned long addr)
1357{
1358 return 0;
1359}
1360#endif /* CONFIG_KRETPROBES */
1361
Steven Rostedtb3806b42008-05-12 21:20:46 +02001362static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001363seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001364{
1365#ifdef CONFIG_KALLSYMS
1366 char str[KSYM_SYMBOL_LEN];
1367
1368 kallsyms_lookup(address, NULL, NULL, NULL, str);
1369
Steven Rostedtb3806b42008-05-12 21:20:46 +02001370 return trace_seq_printf(s, fmt, str);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001371#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02001372 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001373}
1374
Steven Rostedtb3806b42008-05-12 21:20:46 +02001375static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001376seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1377 unsigned long address)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001378{
1379#ifdef CONFIG_KALLSYMS
1380 char str[KSYM_SYMBOL_LEN];
1381
1382 sprint_symbol(str, address);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001383 return trace_seq_printf(s, fmt, str);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001384#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02001385 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001386}
1387
1388#ifndef CONFIG_64BIT
1389# define IP_FMT "%08lx"
1390#else
1391# define IP_FMT "%016lx"
1392#endif
1393
Ingo Molnare309b412008-05-12 21:20:51 +02001394static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001395seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001396{
Steven Rostedtb3806b42008-05-12 21:20:46 +02001397 int ret;
1398
1399 if (!ip)
1400 return trace_seq_printf(s, "0");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001401
1402 if (sym_flags & TRACE_ITER_SYM_OFFSET)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001403 ret = seq_print_sym_offset(s, "%s", ip);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001404 else
Steven Rostedtb3806b42008-05-12 21:20:46 +02001405 ret = seq_print_sym_short(s, "%s", ip);
1406
1407 if (!ret)
1408 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001409
1410 if (sym_flags & TRACE_ITER_SYM_ADDR)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001411 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1412 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001413}
1414
Ingo Molnare309b412008-05-12 21:20:51 +02001415static void print_lat_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001416{
Michael Ellermana6168352008-08-20 16:36:11 -07001417 seq_puts(m, "# _------=> CPU# \n");
1418 seq_puts(m, "# / _-----=> irqs-off \n");
1419 seq_puts(m, "# | / _----=> need-resched \n");
1420 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1421 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1422 seq_puts(m, "# |||| / \n");
1423 seq_puts(m, "# ||||| delay \n");
1424 seq_puts(m, "# cmd pid ||||| time | caller \n");
1425 seq_puts(m, "# \\ / ||||| \\ | / \n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001426}
1427
Ingo Molnare309b412008-05-12 21:20:51 +02001428static void print_func_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001429{
Michael Ellermana6168352008-08-20 16:36:11 -07001430 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1431 seq_puts(m, "# | | | | |\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001432}
1433
1434
Ingo Molnare309b412008-05-12 21:20:51 +02001435static void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001436print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1437{
1438 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1439 struct trace_array *tr = iter->tr;
1440 struct trace_array_cpu *data = tr->data[tr->cpu];
1441 struct tracer *type = current_trace;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001442 unsigned long total = 0;
1443 unsigned long entries = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001444 int cpu;
1445 const char *name = "preemption";
1446
1447 if (type)
1448 name = type->name;
1449
Steven Rostedtab464282008-05-12 21:21:00 +02001450 for_each_tracing_cpu(cpu) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02001451 if (head_page(tr->data[cpu])) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001452 total += tr->data[cpu]->trace_idx;
1453 if (tr->data[cpu]->trace_idx > tr->entries)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001454 entries += tr->entries;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001455 else
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001456 entries += tr->data[cpu]->trace_idx;
1457 }
1458 }
1459
1460 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1461 name, UTS_RELEASE);
1462 seq_puts(m, "-----------------------------------"
1463 "---------------------------------\n");
1464 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1465 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
Steven Rostedt57f50be2008-05-12 21:20:44 +02001466 nsecs_to_usecs(data->saved_latency),
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001467 entries,
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001468 total,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001469 tr->cpu,
1470#if defined(CONFIG_PREEMPT_NONE)
1471 "server",
1472#elif defined(CONFIG_PREEMPT_VOLUNTARY)
1473 "desktop",
Steven Rostedtb5c21b42008-07-10 20:58:12 -04001474#elif defined(CONFIG_PREEMPT)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001475 "preempt",
1476#else
1477 "unknown",
1478#endif
1479 /* These are reserved for later use */
1480 0, 0, 0, 0);
1481#ifdef CONFIG_SMP
1482 seq_printf(m, " #P:%d)\n", num_online_cpus());
1483#else
1484 seq_puts(m, ")\n");
1485#endif
1486 seq_puts(m, " -----------------\n");
1487 seq_printf(m, " | task: %.16s-%d "
1488 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1489 data->comm, data->pid, data->uid, data->nice,
1490 data->policy, data->rt_priority);
1491 seq_puts(m, " -----------------\n");
1492
1493 if (data->critical_start) {
1494 seq_puts(m, " => started at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001495 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1496 trace_print_seq(m, &iter->seq);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001497 seq_puts(m, "\n => ended at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001498 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1499 trace_print_seq(m, &iter->seq);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001500 seq_puts(m, "\n");
1501 }
1502
1503 seq_puts(m, "\n");
1504}
1505
Ingo Molnare309b412008-05-12 21:20:51 +02001506static void
Steven Rostedt214023c2008-05-12 21:20:46 +02001507lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001508{
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001509 struct trace_field *field = &entry->field;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001510 int hardirq, softirq;
1511 char *comm;
1512
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001513 comm = trace_find_cmdline(field->pid);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001514
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001515 trace_seq_printf(s, "%8.8s-%-5d ", comm, field->pid);
Michael Ellermana6168352008-08-20 16:36:11 -07001516 trace_seq_printf(s, "%3d", cpu);
Steven Rostedt214023c2008-05-12 21:20:46 +02001517 trace_seq_printf(s, "%c%c",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001518 (field->flags & TRACE_FLAG_IRQS_OFF) ? 'd' : '.',
1519 ((field->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001520
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001521 hardirq = field->flags & TRACE_FLAG_HARDIRQ;
1522 softirq = field->flags & TRACE_FLAG_SOFTIRQ;
Ingo Molnarafc2abc2008-05-12 21:21:00 +02001523 if (hardirq && softirq) {
Steven Rostedt214023c2008-05-12 21:20:46 +02001524 trace_seq_putc(s, 'H');
Ingo Molnarafc2abc2008-05-12 21:21:00 +02001525 } else {
1526 if (hardirq) {
Steven Rostedt214023c2008-05-12 21:20:46 +02001527 trace_seq_putc(s, 'h');
Ingo Molnarafc2abc2008-05-12 21:21:00 +02001528 } else {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001529 if (softirq)
Steven Rostedt214023c2008-05-12 21:20:46 +02001530 trace_seq_putc(s, 's');
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001531 else
Steven Rostedt214023c2008-05-12 21:20:46 +02001532 trace_seq_putc(s, '.');
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001533 }
1534 }
1535
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001536 if (field->preempt_count)
1537 trace_seq_printf(s, "%x", field->preempt_count);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001538 else
Steven Rostedt214023c2008-05-12 21:20:46 +02001539 trace_seq_puts(s, ".");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001540}
1541
1542unsigned long preempt_mark_thresh = 100;
1543
Ingo Molnare309b412008-05-12 21:20:51 +02001544static void
Steven Rostedt214023c2008-05-12 21:20:46 +02001545lat_print_timestamp(struct trace_seq *s, unsigned long long abs_usecs,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001546 unsigned long rel_usecs)
1547{
Steven Rostedt214023c2008-05-12 21:20:46 +02001548 trace_seq_printf(s, " %4lldus", abs_usecs);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001549 if (rel_usecs > preempt_mark_thresh)
Steven Rostedt214023c2008-05-12 21:20:46 +02001550 trace_seq_puts(s, "!: ");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001551 else if (rel_usecs > 1)
Steven Rostedt214023c2008-05-12 21:20:46 +02001552 trace_seq_puts(s, "+: ");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001553 else
Steven Rostedt214023c2008-05-12 21:20:46 +02001554 trace_seq_puts(s, " : ");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001555}
1556
1557static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1558
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001559static void
1560trace_seq_print_cont(struct trace_seq *s, struct trace_iterator *iter)
1561{
1562 struct trace_array *tr = iter->tr;
1563 struct trace_array_cpu *data = tr->data[iter->cpu];
1564 struct trace_entry *ent;
1565
1566 ent = trace_entry_idx(tr, data, iter, iter->cpu);
1567 if (!ent || ent->type != TRACE_CONT) {
1568 trace_seq_putc(s, '\n');
1569 return;
1570 }
1571
1572 do {
1573 trace_seq_printf(s, "%s", ent->cont.buf);
Steven Rostedt5a90f572008-09-03 17:42:51 -04001574 __trace_iterator_increment(iter, iter->cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001575 ent = trace_entry_idx(tr, data, iter, iter->cpu);
1576 } while (ent && ent->type == TRACE_CONT);
1577}
1578
Ingo Molnare309b412008-05-12 21:20:51 +02001579static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001580print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001581{
Steven Rostedt214023c2008-05-12 21:20:46 +02001582 struct trace_seq *s = &iter->seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001583 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1584 struct trace_entry *next_entry = find_next_entry(iter, NULL);
1585 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1586 struct trace_entry *entry = iter->ent;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001587 struct trace_field *field = &entry->field;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001588 unsigned long abs_usecs;
1589 unsigned long rel_usecs;
1590 char *comm;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001591 int S, T;
Ingo Molnar86387f72008-05-12 21:20:51 +02001592 int i;
Ankita Gargd17d9692008-05-12 21:20:58 +02001593 unsigned state;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001594
1595 if (!next_entry)
1596 next_entry = entry;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001597
1598 if (entry->type == TRACE_CONT)
1599 return 1;
1600
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001601 rel_usecs = ns2usecs(next_entry->field.t - entry->field.t);
1602 abs_usecs = ns2usecs(entry->field.t - iter->tr->time_start);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001603
1604 if (verbose) {
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001605 comm = trace_find_cmdline(field->pid);
Michael Ellermana6168352008-08-20 16:36:11 -07001606 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
Steven Rostedt214023c2008-05-12 21:20:46 +02001607 " %ld.%03ldms (+%ld.%03ldms): ",
1608 comm,
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001609 field->pid, cpu, field->flags,
1610 field->preempt_count, trace_idx,
1611 ns2usecs(field->t),
Steven Rostedt214023c2008-05-12 21:20:46 +02001612 abs_usecs/1000,
1613 abs_usecs % 1000, rel_usecs/1000,
1614 rel_usecs % 1000);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001615 } else {
Ingo Molnarf29c73f2008-05-12 21:20:53 +02001616 lat_print_generic(s, entry, cpu);
1617 lat_print_timestamp(s, abs_usecs, rel_usecs);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001618 }
1619 switch (entry->type) {
1620 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001621 seq_print_ip_sym(s, field->fn.ip, sym_flags);
Steven Rostedt214023c2008-05-12 21:20:46 +02001622 trace_seq_puts(s, " (");
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001623 if (kretprobed(field->fn.parent_ip))
Abhishek Sagar76094a22008-05-28 00:03:18 +05301624 trace_seq_puts(s, KRETPROBE_MSG);
1625 else
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001626 seq_print_ip_sym(s, field->fn.parent_ip, sym_flags);
Steven Rostedt214023c2008-05-12 21:20:46 +02001627 trace_seq_puts(s, ")\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001628 break;
1629 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001630 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001631 T = field->ctx.next_state < sizeof(state_to_char) ?
1632 state_to_char[field->ctx.next_state] : 'X';
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001633
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001634 state = field->ctx.prev_state ?
1635 __ffs(field->ctx.prev_state) + 1 : 0;
Ankita Gargd17d9692008-05-12 21:20:58 +02001636 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001637 comm = trace_find_cmdline(field->ctx.next_pid);
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001638 trace_seq_printf(s, " %5d:%3d:%c %s %5d:%3d:%c %s\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001639 field->ctx.prev_pid,
1640 field->ctx.prev_prio,
Ingo Molnar57422792008-05-12 21:20:51 +02001641 S, entry->type == TRACE_CTX ? "==>" : " +",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001642 field->ctx.next_pid,
1643 field->ctx.next_prio,
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001644 T, comm);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001645 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001646 case TRACE_SPECIAL:
Ingo Molnar88a42162008-05-12 21:20:53 +02001647 trace_seq_printf(s, "# %ld %ld %ld\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001648 field->special.arg1,
1649 field->special.arg2,
1650 field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001651 break;
Ingo Molnar86387f72008-05-12 21:20:51 +02001652 case TRACE_STACK:
1653 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1654 if (i)
1655 trace_seq_puts(s, " <= ");
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001656 seq_print_ip_sym(s, field->stack.caller[i], sym_flags);
Ingo Molnar86387f72008-05-12 21:20:51 +02001657 }
1658 trace_seq_puts(s, "\n");
1659 break;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001660 case TRACE_PRINT:
1661 seq_print_ip_sym(s, field->print.ip, sym_flags);
1662 trace_seq_printf(s, ": %s", field->print.buf);
Steven Rostedt652567a2008-09-03 17:42:50 -04001663 if (field->flags & TRACE_FLAG_CONT)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001664 trace_seq_print_cont(s, iter);
1665 break;
Steven Rostedt89b2f972008-05-12 21:20:44 +02001666 default:
Steven Rostedt214023c2008-05-12 21:20:46 +02001667 trace_seq_printf(s, "Unknown type %d\n", entry->type);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001668 }
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001669 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001670}
1671
Ingo Molnare309b412008-05-12 21:20:51 +02001672static int print_trace_fmt(struct trace_iterator *iter)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001673{
Steven Rostedt214023c2008-05-12 21:20:46 +02001674 struct trace_seq *s = &iter->seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001675 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001676 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001677 struct trace_field *field;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001678 unsigned long usec_rem;
1679 unsigned long long t;
1680 unsigned long secs;
1681 char *comm;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001682 int ret;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001683 int S, T;
Ingo Molnar86387f72008-05-12 21:20:51 +02001684 int i;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001685
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001686 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001687
1688 if (entry->type == TRACE_CONT)
1689 return 1;
1690
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001691 field = &entry->field;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001692
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001693 comm = trace_find_cmdline(iter->ent->field.pid);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001694
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001695 t = ns2usecs(field->t);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001696 usec_rem = do_div(t, 1000000ULL);
1697 secs = (unsigned long)t;
1698
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001699 ret = trace_seq_printf(s, "%16s-%-5d ", comm, field->pid);
Ingo Molnarf29c73f2008-05-12 21:20:53 +02001700 if (!ret)
1701 return 0;
Michael Ellermana6168352008-08-20 16:36:11 -07001702 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
Ingo Molnarf29c73f2008-05-12 21:20:53 +02001703 if (!ret)
1704 return 0;
1705 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1706 if (!ret)
1707 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001708
1709 switch (entry->type) {
1710 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001711 ret = seq_print_ip_sym(s, field->fn.ip, sym_flags);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001712 if (!ret)
1713 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001714 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001715 field->fn.parent_ip) {
Steven Rostedtb3806b42008-05-12 21:20:46 +02001716 ret = trace_seq_printf(s, " <-");
1717 if (!ret)
1718 return 0;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001719 if (kretprobed(field->fn.parent_ip))
Abhishek Sagar76094a22008-05-28 00:03:18 +05301720 ret = trace_seq_puts(s, KRETPROBE_MSG);
1721 else
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001722 ret = seq_print_ip_sym(s,
1723 field->fn.parent_ip,
Abhishek Sagar76094a22008-05-28 00:03:18 +05301724 sym_flags);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001725 if (!ret)
1726 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001727 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02001728 ret = trace_seq_printf(s, "\n");
1729 if (!ret)
1730 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001731 break;
1732 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001733 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001734 S = field->ctx.prev_state < sizeof(state_to_char) ?
1735 state_to_char[field->ctx.prev_state] : 'X';
1736 T = field->ctx.next_state < sizeof(state_to_char) ?
1737 state_to_char[field->ctx.next_state] : 'X';
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001738 ret = trace_seq_printf(s, " %5d:%3d:%c %s %5d:%3d:%c\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001739 field->ctx.prev_pid,
1740 field->ctx.prev_prio,
Steven Rostedtb3806b42008-05-12 21:20:46 +02001741 S,
Ingo Molnar57422792008-05-12 21:20:51 +02001742 entry->type == TRACE_CTX ? "==>" : " +",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001743 field->ctx.next_pid,
1744 field->ctx.next_prio,
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001745 T);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001746 if (!ret)
1747 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001748 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001749 case TRACE_SPECIAL:
Ingo Molnar88a42162008-05-12 21:20:53 +02001750 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001751 field->special.arg1,
1752 field->special.arg2,
1753 field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001754 if (!ret)
1755 return 0;
1756 break;
Ingo Molnar86387f72008-05-12 21:20:51 +02001757 case TRACE_STACK:
1758 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1759 if (i) {
1760 ret = trace_seq_puts(s, " <= ");
1761 if (!ret)
1762 return 0;
1763 }
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001764 ret = seq_print_ip_sym(s, field->stack.caller[i],
Ingo Molnar86387f72008-05-12 21:20:51 +02001765 sym_flags);
1766 if (!ret)
1767 return 0;
1768 }
1769 ret = trace_seq_puts(s, "\n");
1770 if (!ret)
1771 return 0;
1772 break;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001773 case TRACE_PRINT:
1774 seq_print_ip_sym(s, field->print.ip, sym_flags);
1775 trace_seq_printf(s, ": %s", field->print.buf);
Steven Rostedt652567a2008-09-03 17:42:50 -04001776 if (field->flags & TRACE_FLAG_CONT)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001777 trace_seq_print_cont(s, iter);
1778 break;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001779 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02001780 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001781}
1782
Ingo Molnare309b412008-05-12 21:20:51 +02001783static int print_raw_fmt(struct trace_iterator *iter)
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001784{
1785 struct trace_seq *s = &iter->seq;
1786 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001787 struct trace_field *field;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001788 int ret;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001789 int S, T;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001790
1791 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001792
1793 if (entry->type == TRACE_CONT)
1794 return 1;
1795
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001796 field = &entry->field;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001797
1798 ret = trace_seq_printf(s, "%d %d %llu ",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001799 field->pid, iter->cpu, field->t);
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001800 if (!ret)
1801 return 0;
1802
1803 switch (entry->type) {
1804 case TRACE_FN:
1805 ret = trace_seq_printf(s, "%x %x\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001806 field->fn.ip,
1807 field->fn.parent_ip);
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001808 if (!ret)
1809 return 0;
1810 break;
1811 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001812 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001813 S = field->ctx.prev_state < sizeof(state_to_char) ?
1814 state_to_char[field->ctx.prev_state] : 'X';
1815 T = field->ctx.next_state < sizeof(state_to_char) ?
1816 state_to_char[field->ctx.next_state] : 'X';
Ingo Molnar57422792008-05-12 21:20:51 +02001817 if (entry->type == TRACE_WAKE)
1818 S = '+';
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001819 ret = trace_seq_printf(s, "%d %d %c %d %d %c\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001820 field->ctx.prev_pid,
1821 field->ctx.prev_prio,
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001822 S,
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001823 field->ctx.next_pid,
1824 field->ctx.next_prio,
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001825 T);
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001826 if (!ret)
1827 return 0;
1828 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001829 case TRACE_SPECIAL:
Ingo Molnar86387f72008-05-12 21:20:51 +02001830 case TRACE_STACK:
Ingo Molnar88a42162008-05-12 21:20:53 +02001831 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001832 field->special.arg1,
1833 field->special.arg2,
1834 field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001835 if (!ret)
1836 return 0;
1837 break;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001838 case TRACE_PRINT:
1839 trace_seq_printf(s, "# %lx %s",
1840 field->print.ip, field->print.buf);
Steven Rostedt652567a2008-09-03 17:42:50 -04001841 if (field->flags & TRACE_FLAG_CONT)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001842 trace_seq_print_cont(s, iter);
1843 break;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001844 }
1845 return 1;
1846}
1847
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001848#define SEQ_PUT_FIELD_RET(s, x) \
1849do { \
1850 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
1851 return 0; \
1852} while (0)
1853
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001854#define SEQ_PUT_HEX_FIELD_RET(s, x) \
1855do { \
1856 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
1857 return 0; \
1858} while (0)
1859
Ingo Molnare309b412008-05-12 21:20:51 +02001860static int print_hex_fmt(struct trace_iterator *iter)
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001861{
1862 struct trace_seq *s = &iter->seq;
1863 unsigned char newline = '\n';
1864 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001865 struct trace_field *field;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001866 int S, T;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001867
1868 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001869
1870 if (entry->type == TRACE_CONT)
1871 return 1;
1872
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001873 field = &entry->field;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001874
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001875 SEQ_PUT_HEX_FIELD_RET(s, field->pid);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001876 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001877 SEQ_PUT_HEX_FIELD_RET(s, field->t);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001878
1879 switch (entry->type) {
1880 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001881 SEQ_PUT_HEX_FIELD_RET(s, field->fn.ip);
1882 SEQ_PUT_HEX_FIELD_RET(s, field->fn.parent_ip);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001883 break;
1884 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001885 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001886 S = field->ctx.prev_state < sizeof(state_to_char) ?
1887 state_to_char[field->ctx.prev_state] : 'X';
1888 T = field->ctx.next_state < sizeof(state_to_char) ?
1889 state_to_char[field->ctx.next_state] : 'X';
Ingo Molnar57422792008-05-12 21:20:51 +02001890 if (entry->type == TRACE_WAKE)
1891 S = '+';
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001892 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.prev_pid);
1893 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.prev_prio);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001894 SEQ_PUT_HEX_FIELD_RET(s, S);
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001895 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.next_pid);
1896 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.next_prio);
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001897 SEQ_PUT_HEX_FIELD_RET(s, T);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001898 break;
1899 case TRACE_SPECIAL:
Ingo Molnar86387f72008-05-12 21:20:51 +02001900 case TRACE_STACK:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001901 SEQ_PUT_HEX_FIELD_RET(s, field->special.arg1);
1902 SEQ_PUT_HEX_FIELD_RET(s, field->special.arg2);
1903 SEQ_PUT_HEX_FIELD_RET(s, field->special.arg3);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001904 break;
1905 }
1906 SEQ_PUT_FIELD_RET(s, newline);
1907
1908 return 1;
1909}
1910
Ingo Molnare309b412008-05-12 21:20:51 +02001911static int print_bin_fmt(struct trace_iterator *iter)
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001912{
1913 struct trace_seq *s = &iter->seq;
1914 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001915 struct trace_field *field;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001916
1917 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001918
1919 if (entry->type == TRACE_CONT)
1920 return 1;
1921
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001922 field = &entry->field;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001923
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001924 SEQ_PUT_FIELD_RET(s, field->pid);
1925 SEQ_PUT_FIELD_RET(s, field->cpu);
1926 SEQ_PUT_FIELD_RET(s, field->t);
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001927
1928 switch (entry->type) {
1929 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001930 SEQ_PUT_FIELD_RET(s, field->fn.ip);
1931 SEQ_PUT_FIELD_RET(s, field->fn.parent_ip);
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001932 break;
1933 case TRACE_CTX:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001934 SEQ_PUT_FIELD_RET(s, field->ctx.prev_pid);
1935 SEQ_PUT_FIELD_RET(s, field->ctx.prev_prio);
1936 SEQ_PUT_FIELD_RET(s, field->ctx.prev_state);
1937 SEQ_PUT_FIELD_RET(s, field->ctx.next_pid);
1938 SEQ_PUT_FIELD_RET(s, field->ctx.next_prio);
1939 SEQ_PUT_FIELD_RET(s, field->ctx.next_state);
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001940 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001941 case TRACE_SPECIAL:
Ingo Molnar86387f72008-05-12 21:20:51 +02001942 case TRACE_STACK:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001943 SEQ_PUT_FIELD_RET(s, field->special.arg1);
1944 SEQ_PUT_FIELD_RET(s, field->special.arg2);
1945 SEQ_PUT_FIELD_RET(s, field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001946 break;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001947 }
1948 return 1;
1949}
1950
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001951static int trace_empty(struct trace_iterator *iter)
1952{
1953 struct trace_array_cpu *data;
1954 int cpu;
1955
Steven Rostedtab464282008-05-12 21:21:00 +02001956 for_each_tracing_cpu(cpu) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001957 data = iter->tr->data[cpu];
1958
Steven Rostedtb3806b42008-05-12 21:20:46 +02001959 if (head_page(data) && data->trace_idx &&
1960 (data->trace_tail != data->trace_head ||
1961 data->trace_tail_idx != data->trace_head_idx))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001962 return 0;
1963 }
1964 return 1;
1965}
1966
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001967static int print_trace_line(struct trace_iterator *iter)
1968{
Thomas Gleixner72829bc2008-05-23 21:37:28 +02001969 if (iter->trace && iter->trace->print_line)
1970 return iter->trace->print_line(iter);
1971
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001972 if (trace_flags & TRACE_ITER_BIN)
1973 return print_bin_fmt(iter);
1974
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001975 if (trace_flags & TRACE_ITER_HEX)
1976 return print_hex_fmt(iter);
1977
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001978 if (trace_flags & TRACE_ITER_RAW)
1979 return print_raw_fmt(iter);
1980
1981 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
1982 return print_lat_fmt(iter, iter->idx, iter->cpu);
1983
1984 return print_trace_fmt(iter);
1985}
1986
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001987static int s_show(struct seq_file *m, void *v)
1988{
1989 struct trace_iterator *iter = v;
1990
1991 if (iter->ent == NULL) {
1992 if (iter->tr) {
1993 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1994 seq_puts(m, "#\n");
1995 }
1996 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1997 /* print nothing if the buffers are empty */
1998 if (trace_empty(iter))
1999 return 0;
2000 print_trace_header(m, iter);
2001 if (!(trace_flags & TRACE_ITER_VERBOSE))
2002 print_lat_help_header(m);
2003 } else {
2004 if (!(trace_flags & TRACE_ITER_VERBOSE))
2005 print_func_help_header(m);
2006 }
2007 } else {
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002008 print_trace_line(iter);
Steven Rostedt214023c2008-05-12 21:20:46 +02002009 trace_print_seq(m, &iter->seq);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002010 }
2011
2012 return 0;
2013}
2014
2015static struct seq_operations tracer_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002016 .start = s_start,
2017 .next = s_next,
2018 .stop = s_stop,
2019 .show = s_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002020};
2021
Ingo Molnare309b412008-05-12 21:20:51 +02002022static struct trace_iterator *
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002023__tracing_open(struct inode *inode, struct file *file, int *ret)
2024{
2025 struct trace_iterator *iter;
2026
Steven Rostedt60a11772008-05-12 21:20:44 +02002027 if (tracing_disabled) {
2028 *ret = -ENODEV;
2029 return NULL;
2030 }
2031
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002032 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2033 if (!iter) {
2034 *ret = -ENOMEM;
2035 goto out;
2036 }
2037
2038 mutex_lock(&trace_types_lock);
2039 if (current_trace && current_trace->print_max)
2040 iter->tr = &max_tr;
2041 else
2042 iter->tr = inode->i_private;
2043 iter->trace = current_trace;
2044 iter->pos = -1;
2045
2046 /* TODO stop tracer */
2047 *ret = seq_open(file, &tracer_seq_ops);
2048 if (!*ret) {
2049 struct seq_file *m = file->private_data;
2050 m->private = iter;
2051
2052 /* stop the trace while dumping */
Steven Rostedt60bc0802008-07-10 20:58:16 -04002053 if (iter->tr->ctrl) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002054 tracer_enabled = 0;
Steven Rostedt60bc0802008-07-10 20:58:16 -04002055 ftrace_function_enabled = 0;
2056 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002057
2058 if (iter->trace && iter->trace->open)
2059 iter->trace->open(iter);
2060 } else {
2061 kfree(iter);
2062 iter = NULL;
2063 }
2064 mutex_unlock(&trace_types_lock);
2065
2066 out:
2067 return iter;
2068}
2069
2070int tracing_open_generic(struct inode *inode, struct file *filp)
2071{
Steven Rostedt60a11772008-05-12 21:20:44 +02002072 if (tracing_disabled)
2073 return -ENODEV;
2074
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002075 filp->private_data = inode->i_private;
2076 return 0;
2077}
2078
2079int tracing_release(struct inode *inode, struct file *file)
2080{
2081 struct seq_file *m = (struct seq_file *)file->private_data;
2082 struct trace_iterator *iter = m->private;
2083
2084 mutex_lock(&trace_types_lock);
2085 if (iter->trace && iter->trace->close)
2086 iter->trace->close(iter);
2087
2088 /* reenable tracing if it was previously enabled */
Steven Rostedt60bc0802008-07-10 20:58:16 -04002089 if (iter->tr->ctrl) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002090 tracer_enabled = 1;
Steven Rostedt60bc0802008-07-10 20:58:16 -04002091 /*
2092 * It is safe to enable function tracing even if it
2093 * isn't used
2094 */
2095 ftrace_function_enabled = 1;
2096 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002097 mutex_unlock(&trace_types_lock);
2098
2099 seq_release(inode, file);
2100 kfree(iter);
2101 return 0;
2102}
2103
2104static int tracing_open(struct inode *inode, struct file *file)
2105{
2106 int ret;
2107
2108 __tracing_open(inode, file, &ret);
2109
2110 return ret;
2111}
2112
2113static int tracing_lt_open(struct inode *inode, struct file *file)
2114{
2115 struct trace_iterator *iter;
2116 int ret;
2117
2118 iter = __tracing_open(inode, file, &ret);
2119
2120 if (!ret)
2121 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2122
2123 return ret;
2124}
2125
2126
Ingo Molnare309b412008-05-12 21:20:51 +02002127static void *
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002128t_next(struct seq_file *m, void *v, loff_t *pos)
2129{
2130 struct tracer *t = m->private;
2131
2132 (*pos)++;
2133
2134 if (t)
2135 t = t->next;
2136
2137 m->private = t;
2138
2139 return t;
2140}
2141
2142static void *t_start(struct seq_file *m, loff_t *pos)
2143{
2144 struct tracer *t = m->private;
2145 loff_t l = 0;
2146
2147 mutex_lock(&trace_types_lock);
2148 for (; t && l < *pos; t = t_next(m, t, &l))
2149 ;
2150
2151 return t;
2152}
2153
2154static void t_stop(struct seq_file *m, void *p)
2155{
2156 mutex_unlock(&trace_types_lock);
2157}
2158
2159static int t_show(struct seq_file *m, void *v)
2160{
2161 struct tracer *t = v;
2162
2163 if (!t)
2164 return 0;
2165
2166 seq_printf(m, "%s", t->name);
2167 if (t->next)
2168 seq_putc(m, ' ');
2169 else
2170 seq_putc(m, '\n');
2171
2172 return 0;
2173}
2174
2175static struct seq_operations show_traces_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002176 .start = t_start,
2177 .next = t_next,
2178 .stop = t_stop,
2179 .show = t_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002180};
2181
2182static int show_traces_open(struct inode *inode, struct file *file)
2183{
2184 int ret;
2185
Steven Rostedt60a11772008-05-12 21:20:44 +02002186 if (tracing_disabled)
2187 return -ENODEV;
2188
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002189 ret = seq_open(file, &show_traces_seq_ops);
2190 if (!ret) {
2191 struct seq_file *m = file->private_data;
2192 m->private = trace_types;
2193 }
2194
2195 return ret;
2196}
2197
2198static struct file_operations tracing_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002199 .open = tracing_open,
2200 .read = seq_read,
2201 .llseek = seq_lseek,
2202 .release = tracing_release,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002203};
2204
2205static struct file_operations tracing_lt_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002206 .open = tracing_lt_open,
2207 .read = seq_read,
2208 .llseek = seq_lseek,
2209 .release = tracing_release,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002210};
2211
2212static struct file_operations show_traces_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002213 .open = show_traces_open,
2214 .read = seq_read,
2215 .release = seq_release,
2216};
2217
Ingo Molnar36dfe922008-05-12 21:20:52 +02002218/*
2219 * Only trace on a CPU if the bitmask is set:
2220 */
2221static cpumask_t tracing_cpumask = CPU_MASK_ALL;
2222
2223/*
2224 * When tracing/tracing_cpu_mask is modified then this holds
2225 * the new bitmask we are about to install:
2226 */
2227static cpumask_t tracing_cpumask_new;
2228
2229/*
2230 * The tracer itself will not take this lock, but still we want
2231 * to provide a consistent cpumask to user-space:
2232 */
2233static DEFINE_MUTEX(tracing_cpumask_update_lock);
2234
2235/*
2236 * Temporary storage for the character representation of the
2237 * CPU bitmask (and one more byte for the newline):
2238 */
2239static char mask_str[NR_CPUS + 1];
2240
Ingo Molnarc7078de2008-05-12 21:20:52 +02002241static ssize_t
2242tracing_cpumask_read(struct file *filp, char __user *ubuf,
2243 size_t count, loff_t *ppos)
2244{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002245 int len;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002246
2247 mutex_lock(&tracing_cpumask_update_lock);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002248
2249 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2250 if (count - len < 2) {
2251 count = -EINVAL;
2252 goto out_err;
2253 }
2254 len += sprintf(mask_str + len, "\n");
2255 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2256
2257out_err:
Ingo Molnarc7078de2008-05-12 21:20:52 +02002258 mutex_unlock(&tracing_cpumask_update_lock);
2259
2260 return count;
2261}
2262
2263static ssize_t
2264tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2265 size_t count, loff_t *ppos)
2266{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002267 int err, cpu;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002268
2269 mutex_lock(&tracing_cpumask_update_lock);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002270 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2271 if (err)
2272 goto err_unlock;
2273
Steven Rostedt92205c22008-05-12 21:20:55 +02002274 raw_local_irq_disable();
2275 __raw_spin_lock(&ftrace_max_lock);
Steven Rostedtab464282008-05-12 21:21:00 +02002276 for_each_tracing_cpu(cpu) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002277 /*
2278 * Increase/decrease the disabled counter if we are
2279 * about to flip a bit in the cpumask:
2280 */
2281 if (cpu_isset(cpu, tracing_cpumask) &&
2282 !cpu_isset(cpu, tracing_cpumask_new)) {
2283 atomic_inc(&global_trace.data[cpu]->disabled);
2284 }
2285 if (!cpu_isset(cpu, tracing_cpumask) &&
2286 cpu_isset(cpu, tracing_cpumask_new)) {
2287 atomic_dec(&global_trace.data[cpu]->disabled);
2288 }
2289 }
Steven Rostedt92205c22008-05-12 21:20:55 +02002290 __raw_spin_unlock(&ftrace_max_lock);
2291 raw_local_irq_enable();
Ingo Molnar36dfe922008-05-12 21:20:52 +02002292
2293 tracing_cpumask = tracing_cpumask_new;
2294
Ingo Molnarc7078de2008-05-12 21:20:52 +02002295 mutex_unlock(&tracing_cpumask_update_lock);
2296
Ingo Molnarc7078de2008-05-12 21:20:52 +02002297 return count;
Ingo Molnar36dfe922008-05-12 21:20:52 +02002298
2299err_unlock:
2300 mutex_unlock(&tracing_cpumask_update_lock);
2301
2302 return err;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002303}
2304
2305static struct file_operations tracing_cpumask_fops = {
2306 .open = tracing_open_generic,
2307 .read = tracing_cpumask_read,
2308 .write = tracing_cpumask_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002309};
2310
2311static ssize_t
2312tracing_iter_ctrl_read(struct file *filp, char __user *ubuf,
2313 size_t cnt, loff_t *ppos)
2314{
2315 char *buf;
2316 int r = 0;
2317 int len = 0;
2318 int i;
2319
2320 /* calulate max size */
2321 for (i = 0; trace_options[i]; i++) {
2322 len += strlen(trace_options[i]);
2323 len += 3; /* "no" and space */
2324 }
2325
2326 /* +2 for \n and \0 */
2327 buf = kmalloc(len + 2, GFP_KERNEL);
2328 if (!buf)
2329 return -ENOMEM;
2330
2331 for (i = 0; trace_options[i]; i++) {
2332 if (trace_flags & (1 << i))
2333 r += sprintf(buf + r, "%s ", trace_options[i]);
2334 else
2335 r += sprintf(buf + r, "no%s ", trace_options[i]);
2336 }
2337
2338 r += sprintf(buf + r, "\n");
2339 WARN_ON(r >= len + 2);
2340
Ingo Molnar36dfe922008-05-12 21:20:52 +02002341 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002342
2343 kfree(buf);
2344
2345 return r;
2346}
2347
2348static ssize_t
2349tracing_iter_ctrl_write(struct file *filp, const char __user *ubuf,
2350 size_t cnt, loff_t *ppos)
2351{
2352 char buf[64];
2353 char *cmp = buf;
2354 int neg = 0;
2355 int i;
2356
Steven Rostedtcffae432008-05-12 21:21:00 +02002357 if (cnt >= sizeof(buf))
2358 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002359
2360 if (copy_from_user(&buf, ubuf, cnt))
2361 return -EFAULT;
2362
2363 buf[cnt] = 0;
2364
2365 if (strncmp(buf, "no", 2) == 0) {
2366 neg = 1;
2367 cmp += 2;
2368 }
2369
2370 for (i = 0; trace_options[i]; i++) {
2371 int len = strlen(trace_options[i]);
2372
2373 if (strncmp(cmp, trace_options[i], len) == 0) {
2374 if (neg)
2375 trace_flags &= ~(1 << i);
2376 else
2377 trace_flags |= (1 << i);
2378 break;
2379 }
2380 }
Ingo Molnar442e5442008-05-12 21:20:53 +02002381 /*
2382 * If no option could be set, return an error:
2383 */
2384 if (!trace_options[i])
2385 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002386
2387 filp->f_pos += cnt;
2388
2389 return cnt;
2390}
2391
2392static struct file_operations tracing_iter_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002393 .open = tracing_open_generic,
2394 .read = tracing_iter_ctrl_read,
2395 .write = tracing_iter_ctrl_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002396};
2397
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002398static const char readme_msg[] =
2399 "tracing mini-HOWTO:\n\n"
2400 "# mkdir /debug\n"
2401 "# mount -t debugfs nodev /debug\n\n"
2402 "# cat /debug/tracing/available_tracers\n"
2403 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2404 "# cat /debug/tracing/current_tracer\n"
2405 "none\n"
2406 "# echo sched_switch > /debug/tracing/current_tracer\n"
2407 "# cat /debug/tracing/current_tracer\n"
2408 "sched_switch\n"
2409 "# cat /debug/tracing/iter_ctrl\n"
2410 "noprint-parent nosym-offset nosym-addr noverbose\n"
2411 "# echo print-parent > /debug/tracing/iter_ctrl\n"
2412 "# echo 1 > /debug/tracing/tracing_enabled\n"
2413 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2414 "echo 0 > /debug/tracing/tracing_enabled\n"
2415;
2416
2417static ssize_t
2418tracing_readme_read(struct file *filp, char __user *ubuf,
2419 size_t cnt, loff_t *ppos)
2420{
2421 return simple_read_from_buffer(ubuf, cnt, ppos,
2422 readme_msg, strlen(readme_msg));
2423}
2424
2425static struct file_operations tracing_readme_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002426 .open = tracing_open_generic,
2427 .read = tracing_readme_read,
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002428};
2429
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002430static ssize_t
2431tracing_ctrl_read(struct file *filp, char __user *ubuf,
2432 size_t cnt, loff_t *ppos)
2433{
2434 struct trace_array *tr = filp->private_data;
2435 char buf[64];
2436 int r;
2437
2438 r = sprintf(buf, "%ld\n", tr->ctrl);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02002439 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002440}
2441
2442static ssize_t
2443tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2444 size_t cnt, loff_t *ppos)
2445{
2446 struct trace_array *tr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002447 char buf[64];
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002448 long val;
2449 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002450
Steven Rostedtcffae432008-05-12 21:21:00 +02002451 if (cnt >= sizeof(buf))
2452 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002453
2454 if (copy_from_user(&buf, ubuf, cnt))
2455 return -EFAULT;
2456
2457 buf[cnt] = 0;
2458
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002459 ret = strict_strtoul(buf, 10, &val);
2460 if (ret < 0)
2461 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002462
2463 val = !!val;
2464
2465 mutex_lock(&trace_types_lock);
2466 if (tr->ctrl ^ val) {
2467 if (val)
2468 tracer_enabled = 1;
2469 else
2470 tracer_enabled = 0;
2471
2472 tr->ctrl = val;
2473
2474 if (current_trace && current_trace->ctrl_update)
2475 current_trace->ctrl_update(tr);
2476 }
2477 mutex_unlock(&trace_types_lock);
2478
2479 filp->f_pos += cnt;
2480
2481 return cnt;
2482}
2483
2484static ssize_t
2485tracing_set_trace_read(struct file *filp, char __user *ubuf,
2486 size_t cnt, loff_t *ppos)
2487{
2488 char buf[max_tracer_type_len+2];
2489 int r;
2490
2491 mutex_lock(&trace_types_lock);
2492 if (current_trace)
2493 r = sprintf(buf, "%s\n", current_trace->name);
2494 else
2495 r = sprintf(buf, "\n");
2496 mutex_unlock(&trace_types_lock);
2497
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002498 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002499}
2500
2501static ssize_t
2502tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2503 size_t cnt, loff_t *ppos)
2504{
2505 struct trace_array *tr = &global_trace;
2506 struct tracer *t;
2507 char buf[max_tracer_type_len+1];
2508 int i;
2509
2510 if (cnt > max_tracer_type_len)
2511 cnt = max_tracer_type_len;
2512
2513 if (copy_from_user(&buf, ubuf, cnt))
2514 return -EFAULT;
2515
2516 buf[cnt] = 0;
2517
2518 /* strip ending whitespace. */
2519 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2520 buf[i] = 0;
2521
2522 mutex_lock(&trace_types_lock);
2523 for (t = trace_types; t; t = t->next) {
2524 if (strcmp(t->name, buf) == 0)
2525 break;
2526 }
2527 if (!t || t == current_trace)
2528 goto out;
2529
2530 if (current_trace && current_trace->reset)
2531 current_trace->reset(tr);
2532
2533 current_trace = t;
2534 if (t->init)
2535 t->init(tr);
2536
2537 out:
2538 mutex_unlock(&trace_types_lock);
2539
2540 filp->f_pos += cnt;
2541
2542 return cnt;
2543}
2544
2545static ssize_t
2546tracing_max_lat_read(struct file *filp, char __user *ubuf,
2547 size_t cnt, loff_t *ppos)
2548{
2549 unsigned long *ptr = filp->private_data;
2550 char buf[64];
2551 int r;
2552
Steven Rostedtcffae432008-05-12 21:21:00 +02002553 r = snprintf(buf, sizeof(buf), "%ld\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002554 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
Steven Rostedtcffae432008-05-12 21:21:00 +02002555 if (r > sizeof(buf))
2556 r = sizeof(buf);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002557 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002558}
2559
2560static ssize_t
2561tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2562 size_t cnt, loff_t *ppos)
2563{
2564 long *ptr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002565 char buf[64];
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002566 long val;
2567 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002568
Steven Rostedtcffae432008-05-12 21:21:00 +02002569 if (cnt >= sizeof(buf))
2570 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002571
2572 if (copy_from_user(&buf, ubuf, cnt))
2573 return -EFAULT;
2574
2575 buf[cnt] = 0;
2576
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002577 ret = strict_strtoul(buf, 10, &val);
2578 if (ret < 0)
2579 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002580
2581 *ptr = val * 1000;
2582
2583 return cnt;
2584}
2585
Steven Rostedtb3806b42008-05-12 21:20:46 +02002586static atomic_t tracing_reader;
2587
2588static int tracing_open_pipe(struct inode *inode, struct file *filp)
2589{
2590 struct trace_iterator *iter;
2591
2592 if (tracing_disabled)
2593 return -ENODEV;
2594
2595 /* We only allow for reader of the pipe */
2596 if (atomic_inc_return(&tracing_reader) != 1) {
2597 atomic_dec(&tracing_reader);
2598 return -EBUSY;
2599 }
2600
2601 /* create a buffer to store the information to pass to userspace */
2602 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2603 if (!iter)
2604 return -ENOMEM;
2605
Steven Rostedt107bad82008-05-12 21:21:01 +02002606 mutex_lock(&trace_types_lock);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002607 iter->tr = &global_trace;
Thomas Gleixner72829bc2008-05-23 21:37:28 +02002608 iter->trace = current_trace;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002609 filp->private_data = iter;
2610
Steven Rostedt107bad82008-05-12 21:21:01 +02002611 if (iter->trace->pipe_open)
2612 iter->trace->pipe_open(iter);
2613 mutex_unlock(&trace_types_lock);
2614
Steven Rostedtb3806b42008-05-12 21:20:46 +02002615 return 0;
2616}
2617
2618static int tracing_release_pipe(struct inode *inode, struct file *file)
2619{
2620 struct trace_iterator *iter = file->private_data;
2621
2622 kfree(iter);
2623 atomic_dec(&tracing_reader);
2624
2625 return 0;
2626}
2627
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02002628static unsigned int
2629tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2630{
2631 struct trace_iterator *iter = filp->private_data;
2632
2633 if (trace_flags & TRACE_ITER_BLOCK) {
2634 /*
2635 * Always select as readable when in blocking mode
2636 */
2637 return POLLIN | POLLRDNORM;
Ingo Molnarafc2abc2008-05-12 21:21:00 +02002638 } else {
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02002639 if (!trace_empty(iter))
2640 return POLLIN | POLLRDNORM;
2641 poll_wait(filp, &trace_wait, poll_table);
2642 if (!trace_empty(iter))
2643 return POLLIN | POLLRDNORM;
2644
2645 return 0;
2646 }
2647}
2648
Steven Rostedtb3806b42008-05-12 21:20:46 +02002649/*
2650 * Consumer reader.
2651 */
2652static ssize_t
2653tracing_read_pipe(struct file *filp, char __user *ubuf,
2654 size_t cnt, loff_t *ppos)
2655{
2656 struct trace_iterator *iter = filp->private_data;
2657 struct trace_array_cpu *data;
2658 static cpumask_t mask;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002659 unsigned long flags;
Ingo Molnar25770462008-05-12 21:20:49 +02002660#ifdef CONFIG_FTRACE
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002661 int ftrace_save;
Ingo Molnar25770462008-05-12 21:20:49 +02002662#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02002663 int cpu;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002664 ssize_t sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002665
2666 /* return any leftover data */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002667 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2668 if (sret != -EBUSY)
2669 return sret;
2670 sret = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002671
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002672 trace_seq_reset(&iter->seq);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002673
Steven Rostedt107bad82008-05-12 21:21:01 +02002674 mutex_lock(&trace_types_lock);
2675 if (iter->trace->read) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002676 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2677 if (sret)
Steven Rostedt107bad82008-05-12 21:21:01 +02002678 goto out;
Steven Rostedt107bad82008-05-12 21:21:01 +02002679 }
2680
Steven Rostedtb3806b42008-05-12 21:20:46 +02002681 while (trace_empty(iter)) {
Steven Rostedt2dc8f092008-05-12 21:20:58 +02002682
Steven Rostedt107bad82008-05-12 21:21:01 +02002683 if ((filp->f_flags & O_NONBLOCK)) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002684 sret = -EAGAIN;
Steven Rostedt107bad82008-05-12 21:21:01 +02002685 goto out;
2686 }
Steven Rostedt2dc8f092008-05-12 21:20:58 +02002687
Steven Rostedtb3806b42008-05-12 21:20:46 +02002688 /*
2689 * This is a make-shift waitqueue. The reason we don't use
2690 * an actual wait queue is because:
2691 * 1) we only ever have one waiter
2692 * 2) the tracing, traces all functions, we don't want
2693 * the overhead of calling wake_up and friends
2694 * (and tracing them too)
2695 * Anyway, this is really very primitive wakeup.
2696 */
2697 set_current_state(TASK_INTERRUPTIBLE);
2698 iter->tr->waiter = current;
2699
Steven Rostedt107bad82008-05-12 21:21:01 +02002700 mutex_unlock(&trace_types_lock);
2701
Ingo Molnar9fe068e2008-05-12 21:21:02 +02002702 /* sleep for 100 msecs, and try again. */
2703 schedule_timeout(HZ/10);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002704
Steven Rostedt107bad82008-05-12 21:21:01 +02002705 mutex_lock(&trace_types_lock);
2706
Steven Rostedtb3806b42008-05-12 21:20:46 +02002707 iter->tr->waiter = NULL;
2708
Steven Rostedt107bad82008-05-12 21:21:01 +02002709 if (signal_pending(current)) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002710 sret = -EINTR;
Steven Rostedt107bad82008-05-12 21:21:01 +02002711 goto out;
2712 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02002713
Steven Rostedt84527992008-05-12 21:20:58 +02002714 if (iter->trace != current_trace)
Steven Rostedt107bad82008-05-12 21:21:01 +02002715 goto out;
Steven Rostedt84527992008-05-12 21:20:58 +02002716
Steven Rostedtb3806b42008-05-12 21:20:46 +02002717 /*
2718 * We block until we read something and tracing is disabled.
2719 * We still block if tracing is disabled, but we have never
2720 * read anything. This allows a user to cat this file, and
2721 * then enable tracing. But after we have read something,
2722 * we give an EOF when tracing is again disabled.
2723 *
2724 * iter->pos will be 0 if we haven't read anything.
2725 */
2726 if (!tracer_enabled && iter->pos)
2727 break;
2728
2729 continue;
2730 }
2731
2732 /* stop when tracing is finished */
2733 if (trace_empty(iter))
Steven Rostedt107bad82008-05-12 21:21:01 +02002734 goto out;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002735
2736 if (cnt >= PAGE_SIZE)
2737 cnt = PAGE_SIZE - 1;
2738
Steven Rostedt53d0aa72008-05-12 21:21:01 +02002739 /* reset all but tr, trace, and overruns */
Steven Rostedt53d0aa72008-05-12 21:21:01 +02002740 memset(&iter->seq, 0,
2741 sizeof(struct trace_iterator) -
2742 offsetof(struct trace_iterator, seq));
Steven Rostedt4823ed72008-05-12 21:21:01 +02002743 iter->pos = -1;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002744
2745 /*
2746 * We need to stop all tracing on all CPUS to read the
2747 * the next buffer. This is a bit expensive, but is
2748 * not done often. We fill all what we can read,
2749 * and then release the locks again.
2750 */
2751
2752 cpus_clear(mask);
2753 local_irq_save(flags);
Ingo Molnar25770462008-05-12 21:20:49 +02002754#ifdef CONFIG_FTRACE
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002755 ftrace_save = ftrace_enabled;
2756 ftrace_enabled = 0;
Ingo Molnar25770462008-05-12 21:20:49 +02002757#endif
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002758 smp_wmb();
Steven Rostedtab464282008-05-12 21:21:00 +02002759 for_each_tracing_cpu(cpu) {
Steven Rostedtb3806b42008-05-12 21:20:46 +02002760 data = iter->tr->data[cpu];
2761
2762 if (!head_page(data) || !data->trace_idx)
2763 continue;
2764
2765 atomic_inc(&data->disabled);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002766 cpu_set(cpu, mask);
2767 }
2768
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002769 for_each_cpu_mask(cpu, mask) {
2770 data = iter->tr->data[cpu];
Steven Rostedt92205c22008-05-12 21:20:55 +02002771 __raw_spin_lock(&data->lock);
Steven Rostedt53d0aa72008-05-12 21:21:01 +02002772
2773 if (data->overrun > iter->last_overrun[cpu])
2774 iter->overrun[cpu] +=
2775 data->overrun - iter->last_overrun[cpu];
2776 iter->last_overrun[cpu] = data->overrun;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002777 }
2778
Steven Rostedt088b1e422008-05-12 21:20:48 +02002779 while (find_next_entry_inc(iter) != NULL) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002780 int ret;
Steven Rostedt088b1e422008-05-12 21:20:48 +02002781 int len = iter->seq.len;
2782
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002783 ret = print_trace_line(iter);
Steven Rostedt088b1e422008-05-12 21:20:48 +02002784 if (!ret) {
2785 /* don't print partial lines */
2786 iter->seq.len = len;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002787 break;
Steven Rostedt088b1e422008-05-12 21:20:48 +02002788 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02002789
2790 trace_consume(iter);
2791
2792 if (iter->seq.len >= cnt)
2793 break;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002794 }
2795
Ingo Molnard4c5a2f2008-05-12 21:20:46 +02002796 for_each_cpu_mask(cpu, mask) {
Steven Rostedtb3806b42008-05-12 21:20:46 +02002797 data = iter->tr->data[cpu];
Steven Rostedt92205c22008-05-12 21:20:55 +02002798 __raw_spin_unlock(&data->lock);
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002799 }
2800
2801 for_each_cpu_mask(cpu, mask) {
2802 data = iter->tr->data[cpu];
Steven Rostedtb3806b42008-05-12 21:20:46 +02002803 atomic_dec(&data->disabled);
2804 }
Ingo Molnar25770462008-05-12 21:20:49 +02002805#ifdef CONFIG_FTRACE
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002806 ftrace_enabled = ftrace_save;
Ingo Molnar25770462008-05-12 21:20:49 +02002807#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02002808 local_irq_restore(flags);
2809
2810 /* Now copy what we have to the user */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002811 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2812 if (iter->seq.readpos >= iter->seq.len)
Steven Rostedtb3806b42008-05-12 21:20:46 +02002813 trace_seq_reset(&iter->seq);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002814 if (sret == -EBUSY)
2815 sret = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002816
Steven Rostedt107bad82008-05-12 21:21:01 +02002817out:
2818 mutex_unlock(&trace_types_lock);
2819
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002820 return sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002821}
2822
Steven Rostedta98a3c32008-05-12 21:20:59 +02002823static ssize_t
2824tracing_entries_read(struct file *filp, char __user *ubuf,
2825 size_t cnt, loff_t *ppos)
2826{
2827 struct trace_array *tr = filp->private_data;
2828 char buf[64];
2829 int r;
2830
2831 r = sprintf(buf, "%lu\n", tr->entries);
2832 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2833}
2834
2835static ssize_t
2836tracing_entries_write(struct file *filp, const char __user *ubuf,
2837 size_t cnt, loff_t *ppos)
2838{
2839 unsigned long val;
2840 char buf[64];
Steven Rostedt19384c02008-05-22 00:22:16 -04002841 int i, ret;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002842
Steven Rostedtcffae432008-05-12 21:21:00 +02002843 if (cnt >= sizeof(buf))
2844 return -EINVAL;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002845
2846 if (copy_from_user(&buf, ubuf, cnt))
2847 return -EFAULT;
2848
2849 buf[cnt] = 0;
2850
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002851 ret = strict_strtoul(buf, 10, &val);
2852 if (ret < 0)
2853 return ret;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002854
2855 /* must have at least 1 entry */
2856 if (!val)
2857 return -EINVAL;
2858
2859 mutex_lock(&trace_types_lock);
2860
2861 if (current_trace != &no_tracer) {
2862 cnt = -EBUSY;
2863 pr_info("ftrace: set current_tracer to none"
2864 " before modifying buffer size\n");
2865 goto out;
2866 }
2867
2868 if (val > global_trace.entries) {
Steven Rostedt3eefae92008-05-12 21:21:04 +02002869 long pages_requested;
2870 unsigned long freeable_pages;
2871
2872 /* make sure we have enough memory before mapping */
2873 pages_requested =
2874 (val + (ENTRIES_PER_PAGE-1)) / ENTRIES_PER_PAGE;
2875
2876 /* account for each buffer (and max_tr) */
2877 pages_requested *= tracing_nr_buffers * 2;
2878
2879 /* Check for overflow */
2880 if (pages_requested < 0) {
2881 cnt = -ENOMEM;
2882 goto out;
2883 }
2884
2885 freeable_pages = determine_dirtyable_memory();
2886
2887 /* we only allow to request 1/4 of useable memory */
2888 if (pages_requested >
2889 ((freeable_pages + tracing_pages_allocated) / 4)) {
2890 cnt = -ENOMEM;
2891 goto out;
2892 }
2893
Steven Rostedta98a3c32008-05-12 21:20:59 +02002894 while (global_trace.entries < val) {
2895 if (trace_alloc_page()) {
2896 cnt = -ENOMEM;
2897 goto out;
2898 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02002899 /* double check that we don't go over the known pages */
2900 if (tracing_pages_allocated > pages_requested)
2901 break;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002902 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02002903
Steven Rostedta98a3c32008-05-12 21:20:59 +02002904 } else {
2905 /* include the number of entries in val (inc of page entries) */
2906 while (global_trace.entries > val + (ENTRIES_PER_PAGE - 1))
2907 trace_free_page();
2908 }
2909
Steven Rostedt19384c02008-05-22 00:22:16 -04002910 /* check integrity */
2911 for_each_tracing_cpu(i)
2912 check_pages(global_trace.data[i]);
2913
Steven Rostedta98a3c32008-05-12 21:20:59 +02002914 filp->f_pos += cnt;
2915
Steven Rostedt19384c02008-05-22 00:22:16 -04002916 /* If check pages failed, return ENOMEM */
2917 if (tracing_disabled)
2918 cnt = -ENOMEM;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002919 out:
2920 max_tr.entries = global_trace.entries;
2921 mutex_unlock(&trace_types_lock);
2922
2923 return cnt;
2924}
2925
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002926static struct file_operations tracing_max_lat_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002927 .open = tracing_open_generic,
2928 .read = tracing_max_lat_read,
2929 .write = tracing_max_lat_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002930};
2931
2932static struct file_operations tracing_ctrl_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002933 .open = tracing_open_generic,
2934 .read = tracing_ctrl_read,
2935 .write = tracing_ctrl_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002936};
2937
2938static struct file_operations set_tracer_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002939 .open = tracing_open_generic,
2940 .read = tracing_set_trace_read,
2941 .write = tracing_set_trace_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002942};
2943
Steven Rostedtb3806b42008-05-12 21:20:46 +02002944static struct file_operations tracing_pipe_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002945 .open = tracing_open_pipe,
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02002946 .poll = tracing_poll_pipe,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002947 .read = tracing_read_pipe,
2948 .release = tracing_release_pipe,
Steven Rostedtb3806b42008-05-12 21:20:46 +02002949};
2950
Steven Rostedta98a3c32008-05-12 21:20:59 +02002951static struct file_operations tracing_entries_fops = {
2952 .open = tracing_open_generic,
2953 .read = tracing_entries_read,
2954 .write = tracing_entries_write,
2955};
2956
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002957#ifdef CONFIG_DYNAMIC_FTRACE
2958
2959static ssize_t
2960tracing_read_long(struct file *filp, char __user *ubuf,
2961 size_t cnt, loff_t *ppos)
2962{
2963 unsigned long *p = filp->private_data;
2964 char buf[64];
2965 int r;
2966
2967 r = sprintf(buf, "%ld\n", *p);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002968
2969 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002970}
2971
2972static struct file_operations tracing_read_long_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002973 .open = tracing_open_generic,
2974 .read = tracing_read_long,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002975};
2976#endif
2977
2978static struct dentry *d_tracer;
2979
2980struct dentry *tracing_init_dentry(void)
2981{
2982 static int once;
2983
2984 if (d_tracer)
2985 return d_tracer;
2986
2987 d_tracer = debugfs_create_dir("tracing", NULL);
2988
2989 if (!d_tracer && !once) {
2990 once = 1;
2991 pr_warning("Could not create debugfs directory 'tracing'\n");
2992 return NULL;
2993 }
2994
2995 return d_tracer;
2996}
2997
Steven Rostedt60a11772008-05-12 21:20:44 +02002998#ifdef CONFIG_FTRACE_SELFTEST
2999/* Let selftest have access to static functions in this file */
3000#include "trace_selftest.c"
3001#endif
3002
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003003static __init void tracer_init_debugfs(void)
3004{
3005 struct dentry *d_tracer;
3006 struct dentry *entry;
3007
3008 d_tracer = tracing_init_dentry();
3009
3010 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
3011 &global_trace, &tracing_ctrl_fops);
3012 if (!entry)
3013 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
3014
3015 entry = debugfs_create_file("iter_ctrl", 0644, d_tracer,
3016 NULL, &tracing_iter_fops);
3017 if (!entry)
3018 pr_warning("Could not create debugfs 'iter_ctrl' entry\n");
3019
Ingo Molnarc7078de2008-05-12 21:20:52 +02003020 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
3021 NULL, &tracing_cpumask_fops);
3022 if (!entry)
3023 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
3024
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003025 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
3026 &global_trace, &tracing_lt_fops);
3027 if (!entry)
3028 pr_warning("Could not create debugfs 'latency_trace' entry\n");
3029
3030 entry = debugfs_create_file("trace", 0444, d_tracer,
3031 &global_trace, &tracing_fops);
3032 if (!entry)
3033 pr_warning("Could not create debugfs 'trace' entry\n");
3034
3035 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
3036 &global_trace, &show_traces_fops);
3037 if (!entry)
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003038 pr_warning("Could not create debugfs 'available_tracers' entry\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003039
3040 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
3041 &global_trace, &set_tracer_fops);
3042 if (!entry)
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003043 pr_warning("Could not create debugfs 'current_tracer' entry\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003044
3045 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
3046 &tracing_max_latency,
3047 &tracing_max_lat_fops);
3048 if (!entry)
3049 pr_warning("Could not create debugfs "
3050 "'tracing_max_latency' entry\n");
3051
3052 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
3053 &tracing_thresh, &tracing_max_lat_fops);
3054 if (!entry)
3055 pr_warning("Could not create debugfs "
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003056 "'tracing_thresh' entry\n");
Ingo Molnar7bd2f242008-05-12 21:20:45 +02003057 entry = debugfs_create_file("README", 0644, d_tracer,
3058 NULL, &tracing_readme_fops);
3059 if (!entry)
3060 pr_warning("Could not create debugfs 'README' entry\n");
3061
Steven Rostedtb3806b42008-05-12 21:20:46 +02003062 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
3063 NULL, &tracing_pipe_fops);
3064 if (!entry)
3065 pr_warning("Could not create debugfs "
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003066 "'trace_pipe' entry\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003067
Steven Rostedta98a3c32008-05-12 21:20:59 +02003068 entry = debugfs_create_file("trace_entries", 0644, d_tracer,
3069 &global_trace, &tracing_entries_fops);
3070 if (!entry)
3071 pr_warning("Could not create debugfs "
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003072 "'trace_entries' entry\n");
Steven Rostedta98a3c32008-05-12 21:20:59 +02003073
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003074#ifdef CONFIG_DYNAMIC_FTRACE
3075 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
3076 &ftrace_update_tot_cnt,
3077 &tracing_read_long_fops);
3078 if (!entry)
3079 pr_warning("Could not create debugfs "
3080 "'dyn_ftrace_total_info' entry\n");
3081#endif
Ingo Molnard618b3e2008-05-12 21:20:49 +02003082#ifdef CONFIG_SYSPROF_TRACER
3083 init_tracer_sysprof_debugfs(d_tracer);
3084#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003085}
3086
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003087#define TRACE_BUF_SIZE 1024
3088#define TRACE_PRINT_BUF_SIZE \
3089 (sizeof(struct trace_field) - offsetof(struct trace_field, print.buf))
3090#define TRACE_CONT_BUF_SIZE sizeof(struct trace_field)
3091
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003092int __ftrace_printk(unsigned long ip, const char *fmt, ...)
3093{
3094 struct trace_array *tr = &global_trace;
3095 static DEFINE_SPINLOCK(trace_buf_lock);
3096 static char trace_buf[TRACE_BUF_SIZE];
3097 struct trace_array_cpu *data;
3098 struct trace_entry *entry;
3099 unsigned long flags;
3100 long disabled;
3101 va_list ap;
3102 int cpu, len = 0, write, written = 0;
3103
3104 if (likely(!ftrace_function_enabled))
3105 return 0;
3106
3107 local_irq_save(flags);
3108 cpu = raw_smp_processor_id();
3109 data = tr->data[cpu];
3110 disabled = atomic_inc_return(&data->disabled);
3111
3112 if (unlikely(disabled != 1 || !ftrace_function_enabled))
3113 goto out;
3114
3115 spin_lock(&trace_buf_lock);
3116 va_start(ap, fmt);
3117 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, ap);
3118 va_end(ap);
3119
3120 len = min(len, TRACE_BUF_SIZE-1);
3121 trace_buf[len] = 0;
3122
3123 __raw_spin_lock(&data->lock);
3124 entry = tracing_get_trace_entry(tr, data);
3125 tracing_generic_entry_update(entry, flags);
3126 entry->type = TRACE_PRINT;
3127 entry->field.print.ip = ip;
3128
3129 write = min(len, (int)(TRACE_PRINT_BUF_SIZE-1));
3130
3131 memcpy(&entry->field.print.buf, trace_buf, write);
3132 entry->field.print.buf[write] = 0;
3133 written = write;
3134
3135 if (written != len)
3136 entry->field.flags |= TRACE_FLAG_CONT;
3137
3138 while (written != len) {
3139 entry = tracing_get_trace_entry(tr, data);
3140
3141 entry->type = TRACE_CONT;
3142 write = min(len - written, (int)(TRACE_CONT_BUF_SIZE-1));
3143 memcpy(&entry->cont.buf, trace_buf+written, write);
3144 entry->cont.buf[write] = 0;
3145 written += write;
3146 }
3147 __raw_spin_unlock(&data->lock);
3148
3149 spin_unlock(&trace_buf_lock);
3150
3151 out:
3152 atomic_dec(&data->disabled);
3153 local_irq_restore(flags);
3154
3155 return len;
3156}
3157EXPORT_SYMBOL_GPL(__ftrace_printk);
3158
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04003159static int trace_panic_handler(struct notifier_block *this,
3160 unsigned long event, void *unused)
3161{
3162 ftrace_dump();
3163 return NOTIFY_OK;
3164}
3165
3166static struct notifier_block trace_panic_notifier = {
3167 .notifier_call = trace_panic_handler,
3168 .next = NULL,
3169 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3170};
3171
3172static int trace_die_handler(struct notifier_block *self,
3173 unsigned long val,
3174 void *data)
3175{
3176 switch (val) {
3177 case DIE_OOPS:
3178 ftrace_dump();
3179 break;
3180 default:
3181 break;
3182 }
3183 return NOTIFY_OK;
3184}
3185
3186static struct notifier_block trace_die_notifier = {
3187 .notifier_call = trace_die_handler,
3188 .priority = 200
3189};
3190
3191/*
3192 * printk is set to max of 1024, we really don't need it that big.
3193 * Nothing should be printing 1000 characters anyway.
3194 */
3195#define TRACE_MAX_PRINT 1000
3196
3197/*
3198 * Define here KERN_TRACE so that we have one place to modify
3199 * it if we decide to change what log level the ftrace dump
3200 * should be at.
3201 */
3202#define KERN_TRACE KERN_INFO
3203
3204static void
3205trace_printk_seq(struct trace_seq *s)
3206{
3207 /* Probably should print a warning here. */
3208 if (s->len >= 1000)
3209 s->len = 1000;
3210
3211 /* should be zero ended, but we are paranoid. */
3212 s->buffer[s->len] = 0;
3213
3214 printk(KERN_TRACE "%s", s->buffer);
3215
3216 trace_seq_reset(s);
3217}
3218
3219
3220void ftrace_dump(void)
3221{
3222 static DEFINE_SPINLOCK(ftrace_dump_lock);
3223 /* use static because iter can be a bit big for the stack */
3224 static struct trace_iterator iter;
3225 struct trace_array_cpu *data;
3226 static cpumask_t mask;
3227 static int dump_ran;
3228 unsigned long flags;
3229 int cnt = 0;
3230 int cpu;
3231
3232 /* only one dump */
3233 spin_lock_irqsave(&ftrace_dump_lock, flags);
3234 if (dump_ran)
3235 goto out;
3236
3237 dump_ran = 1;
3238
3239 /* No turning back! */
3240 ftrace_kill_atomic();
3241
3242 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3243
3244 iter.tr = &global_trace;
3245 iter.trace = current_trace;
3246
3247 /*
3248 * We need to stop all tracing on all CPUS to read the
3249 * the next buffer. This is a bit expensive, but is
3250 * not done often. We fill all what we can read,
3251 * and then release the locks again.
3252 */
3253
3254 cpus_clear(mask);
3255
3256 for_each_tracing_cpu(cpu) {
3257 data = iter.tr->data[cpu];
3258
3259 if (!head_page(data) || !data->trace_idx)
3260 continue;
3261
3262 atomic_inc(&data->disabled);
3263 cpu_set(cpu, mask);
3264 }
3265
3266 for_each_cpu_mask(cpu, mask) {
3267 data = iter.tr->data[cpu];
3268 __raw_spin_lock(&data->lock);
3269
3270 if (data->overrun > iter.last_overrun[cpu])
3271 iter.overrun[cpu] +=
3272 data->overrun - iter.last_overrun[cpu];
3273 iter.last_overrun[cpu] = data->overrun;
3274 }
3275
3276 while (!trace_empty(&iter)) {
3277
3278 if (!cnt)
3279 printk(KERN_TRACE "---------------------------------\n");
3280
3281 cnt++;
3282
3283 /* reset all but tr, trace, and overruns */
3284 memset(&iter.seq, 0,
3285 sizeof(struct trace_iterator) -
3286 offsetof(struct trace_iterator, seq));
3287 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3288 iter.pos = -1;
3289
3290 if (find_next_entry_inc(&iter) != NULL) {
3291 print_trace_line(&iter);
3292 trace_consume(&iter);
3293 }
3294
3295 trace_printk_seq(&iter.seq);
3296 }
3297
3298 if (!cnt)
3299 printk(KERN_TRACE " (ftrace buffer empty)\n");
3300 else
3301 printk(KERN_TRACE "---------------------------------\n");
3302
3303 for_each_cpu_mask(cpu, mask) {
3304 data = iter.tr->data[cpu];
3305 __raw_spin_unlock(&data->lock);
3306 }
3307
3308 for_each_cpu_mask(cpu, mask) {
3309 data = iter.tr->data[cpu];
3310 atomic_dec(&data->disabled);
3311 }
3312
3313
3314 out:
3315 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3316}
3317
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003318static int trace_alloc_page(void)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003319{
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003320 struct trace_array_cpu *data;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003321 struct page *page, *tmp;
3322 LIST_HEAD(pages);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003323 void *array;
Steven Rostedt3eefae92008-05-12 21:21:04 +02003324 unsigned pages_allocated = 0;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003325 int i;
3326
3327 /* first allocate a page for each CPU */
Steven Rostedtab464282008-05-12 21:21:00 +02003328 for_each_tracing_cpu(i) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003329 array = (void *)__get_free_page(GFP_KERNEL);
3330 if (array == NULL) {
3331 printk(KERN_ERR "tracer: failed to allocate page"
3332 "for trace buffer!\n");
3333 goto free_pages;
3334 }
3335
Steven Rostedt3eefae92008-05-12 21:21:04 +02003336 pages_allocated++;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003337 page = virt_to_page(array);
3338 list_add(&page->lru, &pages);
3339
3340/* Only allocate if we are actually using the max trace */
3341#ifdef CONFIG_TRACER_MAX_TRACE
3342 array = (void *)__get_free_page(GFP_KERNEL);
3343 if (array == NULL) {
3344 printk(KERN_ERR "tracer: failed to allocate page"
3345 "for trace buffer!\n");
3346 goto free_pages;
3347 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02003348 pages_allocated++;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003349 page = virt_to_page(array);
3350 list_add(&page->lru, &pages);
3351#endif
3352 }
3353
3354 /* Now that we successfully allocate a page per CPU, add them */
Steven Rostedtab464282008-05-12 21:21:00 +02003355 for_each_tracing_cpu(i) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003356 data = global_trace.data[i];
3357 page = list_entry(pages.next, struct page, lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003358 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003359 list_add_tail(&page->lru, &data->trace_pages);
3360 ClearPageLRU(page);
3361
3362#ifdef CONFIG_TRACER_MAX_TRACE
3363 data = max_tr.data[i];
3364 page = list_entry(pages.next, struct page, lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003365 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003366 list_add_tail(&page->lru, &data->trace_pages);
3367 SetPageLRU(page);
3368#endif
3369 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02003370 tracing_pages_allocated += pages_allocated;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003371 global_trace.entries += ENTRIES_PER_PAGE;
3372
3373 return 0;
3374
3375 free_pages:
3376 list_for_each_entry_safe(page, tmp, &pages, lru) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003377 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003378 __free_page(page);
3379 }
3380 return -ENOMEM;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003381}
3382
Steven Rostedta98a3c32008-05-12 21:20:59 +02003383static int trace_free_page(void)
3384{
3385 struct trace_array_cpu *data;
3386 struct page *page;
3387 struct list_head *p;
3388 int i;
3389 int ret = 0;
3390
3391 /* free one page from each buffer */
Steven Rostedtab464282008-05-12 21:21:00 +02003392 for_each_tracing_cpu(i) {
Steven Rostedta98a3c32008-05-12 21:20:59 +02003393 data = global_trace.data[i];
3394 p = data->trace_pages.next;
3395 if (p == &data->trace_pages) {
3396 /* should never happen */
3397 WARN_ON(1);
3398 tracing_disabled = 1;
3399 ret = -1;
3400 break;
3401 }
3402 page = list_entry(p, struct page, lru);
3403 ClearPageLRU(page);
3404 list_del(&page->lru);
Steven Rostedt3eefae92008-05-12 21:21:04 +02003405 tracing_pages_allocated--;
3406 tracing_pages_allocated--;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003407 __free_page(page);
3408
3409 tracing_reset(data);
3410
3411#ifdef CONFIG_TRACER_MAX_TRACE
3412 data = max_tr.data[i];
3413 p = data->trace_pages.next;
3414 if (p == &data->trace_pages) {
3415 /* should never happen */
3416 WARN_ON(1);
3417 tracing_disabled = 1;
3418 ret = -1;
3419 break;
3420 }
3421 page = list_entry(p, struct page, lru);
3422 ClearPageLRU(page);
3423 list_del(&page->lru);
3424 __free_page(page);
3425
3426 tracing_reset(data);
3427#endif
3428 }
3429 global_trace.entries -= ENTRIES_PER_PAGE;
3430
3431 return ret;
3432}
3433
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003434__init static int tracer_alloc_buffers(void)
3435{
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003436 struct trace_array_cpu *data;
3437 void *array;
3438 struct page *page;
3439 int pages = 0;
Steven Rostedt60a11772008-05-12 21:20:44 +02003440 int ret = -ENOMEM;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003441 int i;
3442
Steven Rostedtab464282008-05-12 21:21:00 +02003443 /* TODO: make the number of buffers hot pluggable with CPUS */
3444 tracing_nr_buffers = num_possible_cpus();
3445 tracing_buffer_mask = cpu_possible_map;
3446
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003447 /* Allocate the first page for all buffers */
Steven Rostedtab464282008-05-12 21:21:00 +02003448 for_each_tracing_cpu(i) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003449 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003450 max_tr.data[i] = &per_cpu(max_data, i);
3451
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003452 array = (void *)__get_free_page(GFP_KERNEL);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003453 if (array == NULL) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003454 printk(KERN_ERR "tracer: failed to allocate page"
3455 "for trace buffer!\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003456 goto free_buffers;
3457 }
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003458
3459 /* set the array to the list */
3460 INIT_LIST_HEAD(&data->trace_pages);
3461 page = virt_to_page(array);
3462 list_add(&page->lru, &data->trace_pages);
3463 /* use the LRU flag to differentiate the two buffers */
3464 ClearPageLRU(page);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003465
Steven Rostedta98a3c32008-05-12 21:20:59 +02003466 data->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
3467 max_tr.data[i]->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
3468
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003469/* Only allocate if we are actually using the max trace */
3470#ifdef CONFIG_TRACER_MAX_TRACE
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003471 array = (void *)__get_free_page(GFP_KERNEL);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003472 if (array == NULL) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003473 printk(KERN_ERR "tracer: failed to allocate page"
3474 "for trace buffer!\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003475 goto free_buffers;
3476 }
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003477
3478 INIT_LIST_HEAD(&max_tr.data[i]->trace_pages);
3479 page = virt_to_page(array);
3480 list_add(&page->lru, &max_tr.data[i]->trace_pages);
3481 SetPageLRU(page);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003482#endif
3483 }
3484
3485 /*
3486 * Since we allocate by orders of pages, we may be able to
3487 * round up a bit.
3488 */
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003489 global_trace.entries = ENTRIES_PER_PAGE;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003490 pages++;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003491
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003492 while (global_trace.entries < trace_nr_entries) {
3493 if (trace_alloc_page())
3494 break;
3495 pages++;
3496 }
Steven Rostedt89b2f972008-05-12 21:20:44 +02003497 max_tr.entries = global_trace.entries;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003498
Jiri Slaby20764ff2008-06-12 11:27:03 +02003499 pr_info("tracer: %d pages allocated for %ld entries of %ld bytes\n",
3500 pages, trace_nr_entries, (long)TRACE_ENTRY_SIZE);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003501 pr_info(" actual entries %ld\n", global_trace.entries);
3502
3503 tracer_init_debugfs();
3504
3505 trace_init_cmdlines();
3506
3507 register_tracer(&no_tracer);
3508 current_trace = &no_tracer;
3509
Steven Rostedt60a11772008-05-12 21:20:44 +02003510 /* All seems OK, enable tracing */
Steven Rostedt4902f882008-05-22 00:22:18 -04003511 global_trace.ctrl = tracer_enabled;
Steven Rostedt60a11772008-05-12 21:20:44 +02003512 tracing_disabled = 0;
3513
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04003514 atomic_notifier_chain_register(&panic_notifier_list,
3515 &trace_panic_notifier);
3516
3517 register_die_notifier(&trace_die_notifier);
3518
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003519 return 0;
3520
3521 free_buffers:
3522 for (i-- ; i >= 0; i--) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003523 struct page *page, *tmp;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003524 struct trace_array_cpu *data = global_trace.data[i];
3525
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003526 if (data) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003527 list_for_each_entry_safe(page, tmp,
3528 &data->trace_pages, lru) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003529 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003530 __free_page(page);
3531 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003532 }
3533
3534#ifdef CONFIG_TRACER_MAX_TRACE
3535 data = max_tr.data[i];
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003536 if (data) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003537 list_for_each_entry_safe(page, tmp,
3538 &data->trace_pages, lru) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003539 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003540 __free_page(page);
3541 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003542 }
3543#endif
3544 }
Steven Rostedt60a11772008-05-12 21:20:44 +02003545 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003546}
Steven Rostedt60a11772008-05-12 21:20:44 +02003547fs_initcall(tracer_alloc_buffers);