trace.c 230.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4
/*
 * ring buffer based function tracer
 *
5
 * Copyright (C) 2007-2012 Steven Rostedt <srostedt@redhat.com>
6 7 8 9 10 11 12
 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
 *
 * Originally taken from the RT patch by:
 *    Arnaldo Carvalho de Melo <acme@redhat.com>
 *
 * Based on code from the latency_tracer, that is:
 *  Copyright (C) 2004-2006 Ingo Molnar
13
 *  Copyright (C) 2004 Nadia Yvette Chambers
14
 */
15
#include <linux/ring_buffer.h>
16
#include <generated/utsrelease.h>
17 18
#include <linux/stacktrace.h>
#include <linux/writeback.h>
19
#include <linux/kallsyms.h>
20
#include <linux/security.h>
21
#include <linux/seq_file.h>
22
#include <linux/notifier.h>
23
#include <linux/irqflags.h>
24
#include <linux/debugfs.h>
25
#include <linux/tracefs.h>
26
#include <linux/pagemap.h>
27 28 29
#include <linux/hardirq.h>
#include <linux/linkage.h>
#include <linux/uaccess.h>
30
#include <linux/vmalloc.h>
31 32 33
#include <linux/ftrace.h>
#include <linux/module.h>
#include <linux/percpu.h>
34
#include <linux/splice.h>
35
#include <linux/kdebug.h>
36
#include <linux/string.h>
37
#include <linux/mount.h>
38
#include <linux/rwsem.h>
39
#include <linux/slab.h>
40 41
#include <linux/ctype.h>
#include <linux/init.h>
42
#include <linux/poll.h>
43
#include <linux/nmi.h>
44
#include <linux/fs.h>
45
#include <linux/trace.h>
46
#include <linux/sched/clock.h>
47
#include <linux/sched/rt.h>
48 49 50
#include <linux/fsnotify.h>
#include <linux/irq_work.h>
#include <linux/workqueue.h>
I
Ingo Molnar 已提交
51

52
#include "trace.h"
53
#include "trace_output.h"
54

55 56 57 58
/*
 * On boot up, the ring buffer is set to the minimum size, so that
 * we do not waste memory on systems that are not using tracing.
 */
59
bool ring_buffer_expanded;
60

61 62
/*
 * We need to change this state when a selftest is running.
63 64
 * A selftest will lurk into the ring-buffer to count the
 * entries inserted during the selftest although some concurrent
65
 * insertions into the ring-buffer such as trace_printk could occurred
66 67
 * at the same time, giving false positive or negative results.
 */
68
static bool __read_mostly tracing_selftest_running;
69

70 71 72
/*
 * If a tracer is running, we do not want to run SELFTEST.
 */
73
bool __read_mostly tracing_selftest_disabled;
74

75 76 77
/* Pipe tracepoints to printk */
struct trace_iterator *tracepoint_print_iter;
int tracepoint_printk;
78
static DEFINE_STATIC_KEY_FALSE(tracepoint_printk_key);
79

80 81 82 83 84
/* For tracers that don't implement custom flags */
static struct tracer_opt dummy_tracer_opt[] = {
	{ }
};

85 86
static int
dummy_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set)
87 88 89
{
	return 0;
}
90

91 92 93 94 95
/*
 * To prevent the comm cache from being overwritten when no
 * tracing is active, only save the comm when a trace event
 * occurred.
 */
96
static DEFINE_PER_CPU(bool, trace_taskinfo_save);
97

98 99 100 101 102 103
/*
 * Kill all tracing for good (never come back).
 * It is initialized to 1 but will turn to zero if the initialization
 * of the tracer is successful. But that is the only place that sets
 * this back to zero.
 */
104
static int tracing_disabled = 1;
105

106
cpumask_var_t __read_mostly	tracing_buffer_mask;
107

108 109 110 111 112 113 114 115 116 117 118
/*
 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
 *
 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
 * is set, then ftrace_dump is called. This will output the contents
 * of the ftrace buffers to the console.  This is very useful for
 * capturing traces that lead to crashes and outputing it to a
 * serial console.
 *
 * It is default off, but you can enable it with either specifying
 * "ftrace_dump_on_oops" in the kernel command line, or setting
119 120 121
 * /proc/sys/kernel/ftrace_dump_on_oops
 * Set 1 if you want to dump buffers of all CPUs
 * Set 2 if you want to dump the buffer of the CPU that triggered oops
122
 */
123 124

enum ftrace_dump_mode ftrace_dump_on_oops;
125

126 127 128
/* When set, tracing will stop when a WARN*() is hit */
int __disable_trace_on_warning;

129 130
#ifdef CONFIG_TRACE_EVAL_MAP_FILE
/* Map of enums to their values, for "eval_map" file */
131
struct trace_eval_map_head {
132 133 134 135
	struct module			*mod;
	unsigned long			length;
};

136
union trace_eval_map_item;
137

138
struct trace_eval_map_tail {
139 140
	/*
	 * "end" is first and points to NULL as it must be different
141
	 * than "mod" or "eval_string"
142
	 */
143
	union trace_eval_map_item	*next;
144 145 146
	const char			*end;	/* points to NULL */
};

147
static DEFINE_MUTEX(trace_eval_mutex);
148 149

/*
150
 * The trace_eval_maps are saved in an array with two extra elements,
151 152 153
 * one at the beginning, and one at the end. The beginning item contains
 * the count of the saved maps (head.length), and the module they
 * belong to if not built in (head.mod). The ending item contains a
154
 * pointer to the next array of saved eval_map items.
155
 */
156
union trace_eval_map_item {
157
	struct trace_eval_map		map;
158 159
	struct trace_eval_map_head	head;
	struct trace_eval_map_tail	tail;
160 161
};

162
static union trace_eval_map_item *trace_eval_maps;
163
#endif /* CONFIG_TRACE_EVAL_MAP_FILE */
164

165
int tracing_set_tracer(struct trace_array *tr, const char *buf);
166
static void ftrace_trace_userstack(struct trace_buffer *buffer,
167
				   unsigned long flags, int pc);
168

L
Li Zefan 已提交
169 170
#define MAX_TRACER_SIZE		100
static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
171
static char *default_bootup_tracer;
172

173 174
static bool allocate_snapshot;

175
static int __init set_cmdline_ftrace(char *str)
176
{
177
	strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
178
	default_bootup_tracer = bootup_tracer_buf;
179
	/* We are using ftrace early, expand it */
180
	ring_buffer_expanded = true;
181 182
	return 1;
}
183
__setup("ftrace=", set_cmdline_ftrace);
184

185 186
static int __init set_ftrace_dump_on_oops(char *str)
{
187 188 189 190 191 192 193 194 195 196 197
	if (*str++ != '=' || !*str) {
		ftrace_dump_on_oops = DUMP_ALL;
		return 1;
	}

	if (!strcmp("orig_cpu", str)) {
		ftrace_dump_on_oops = DUMP_ORIG;
                return 1;
        }

        return 0;
198 199
}
__setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
S
Steven Rostedt 已提交
200

201 202
static int __init stop_trace_on_warning(char *str)
{
203 204
	if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
		__disable_trace_on_warning = 1;
205 206
	return 1;
}
207
__setup("traceoff_on_warning", stop_trace_on_warning);
208

209
static int __init boot_alloc_snapshot(char *str)
210 211 212 213 214 215
{
	allocate_snapshot = true;
	/* We also need the main ring buffer expanded */
	ring_buffer_expanded = true;
	return 1;
}
216
__setup("alloc_snapshot", boot_alloc_snapshot);
217

218 219 220 221 222

static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;

static int __init set_trace_boot_options(char *str)
{
223
	strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
224 225 226 227
	return 0;
}
__setup("trace_options=", set_trace_boot_options);

228 229 230 231 232 233 234 235 236 237 238
static char trace_boot_clock_buf[MAX_TRACER_SIZE] __initdata;
static char *trace_boot_clock __initdata;

static int __init set_trace_boot_clock(char *str)
{
	strlcpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE);
	trace_boot_clock = trace_boot_clock_buf;
	return 0;
}
__setup("trace_clock=", set_trace_boot_clock);

239 240 241 242 243 244 245
static int __init set_tracepoint_printk(char *str)
{
	if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
		tracepoint_printk = 1;
	return 1;
}
__setup("tp_printk", set_tracepoint_printk);
246

247
unsigned long long ns2usecs(u64 nsec)
248 249 250 251 252 253
{
	nsec += 500;
	do_div(nsec, 1000);
	return nsec;
}

254 255 256 257 258 259 260 261
/* trace_flags holds trace_options default values */
#define TRACE_DEFAULT_FLAGS						\
	(FUNCTION_DEFAULT_FLAGS |					\
	 TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |			\
	 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO |		\
	 TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |			\
	 TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS)

262 263 264 265
/* trace_options that are only supported by global_trace */
#define TOP_LEVEL_TRACE_FLAGS (TRACE_ITER_PRINTK |			\
	       TRACE_ITER_PRINTK_MSGONLY | TRACE_ITER_RECORD_CMD)

266 267
/* trace_flags that are default zero for instances */
#define ZEROED_TRACE_FLAGS \
268
	(TRACE_ITER_EVENT_FORK | TRACE_ITER_FUNC_FORK)
269

S
Steven Rostedt 已提交
270
/*
271 272
 * The global_trace is the descriptor that holds the top-level tracing
 * buffers for the live tracing.
S
Steven Rostedt 已提交
273
 */
274 275 276
static struct trace_array global_trace = {
	.trace_flags = TRACE_DEFAULT_FLAGS,
};
277

278
LIST_HEAD(ftrace_trace_arrays);
279

280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
int trace_array_get(struct trace_array *this_tr)
{
	struct trace_array *tr;
	int ret = -ENODEV;

	mutex_lock(&trace_types_lock);
	list_for_each_entry(tr, &ftrace_trace_arrays, list) {
		if (tr == this_tr) {
			tr->ref++;
			ret = 0;
			break;
		}
	}
	mutex_unlock(&trace_types_lock);

	return ret;
}

static void __trace_array_put(struct trace_array *this_tr)
{
	WARN_ON(!this_tr->ref);
	this_tr->ref--;
}

304 305 306 307 308 309 310 311
/**
 * trace_array_put - Decrement the reference counter for this trace array.
 *
 * NOTE: Use this when we no longer need the trace array returned by
 * trace_array_get_by_name(). This ensures the trace array can be later
 * destroyed.
 *
 */
312 313
void trace_array_put(struct trace_array *this_tr)
{
314 315 316
	if (!this_tr)
		return;

317 318 319 320
	mutex_lock(&trace_types_lock);
	__trace_array_put(this_tr);
	mutex_unlock(&trace_types_lock);
}
321
EXPORT_SYMBOL_GPL(trace_array_put);
322

323 324
int tracing_check_open_get_tr(struct trace_array *tr)
{
325 326 327 328 329 330
	int ret;

	ret = security_locked_down(LOCKDOWN_TRACEFS);
	if (ret)
		return ret;

331 332 333 334 335 336 337 338 339
	if (tracing_disabled)
		return -ENODEV;

	if (tr && trace_array_get(tr) < 0)
		return -ENODEV;

	return 0;
}

340
int call_filter_check_discard(struct trace_event_call *call, void *rec,
341
			      struct trace_buffer *buffer,
342 343 344 345
			      struct ring_buffer_event *event)
{
	if (unlikely(call->flags & TRACE_EVENT_FL_FILTERED) &&
	    !filter_match_preds(call->filter, rec)) {
346
		__trace_event_discard_commit(buffer, event);
347 348 349 350
		return 1;
	}

	return 0;
351 352
}

353 354 355 356 357 358
void trace_free_pid_list(struct trace_pid_list *pid_list)
{
	vfree(pid_list->pids);
	kfree(pid_list);
}

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
/**
 * trace_find_filtered_pid - check if a pid exists in a filtered_pid list
 * @filtered_pids: The list of pids to check
 * @search_pid: The PID to find in @filtered_pids
 *
 * Returns true if @search_pid is fonud in @filtered_pids, and false otherwis.
 */
bool
trace_find_filtered_pid(struct trace_pid_list *filtered_pids, pid_t search_pid)
{
	/*
	 * If pid_max changed after filtered_pids was created, we
	 * by default ignore all pids greater than the previous pid_max.
	 */
	if (search_pid >= filtered_pids->pid_max)
		return false;

	return test_bit(search_pid, filtered_pids->pids);
}

/**
 * trace_ignore_this_task - should a task be ignored for tracing
 * @filtered_pids: The list of pids to check
 * @task: The task that should be ignored if not filtered
 *
 * Checks if @task should be traced or not from @filtered_pids.
 * Returns true if @task should *NOT* be traced.
 * Returns false if @task should be traced.
 */
bool
389 390 391
trace_ignore_this_task(struct trace_pid_list *filtered_pids,
		       struct trace_pid_list *filtered_no_pids,
		       struct task_struct *task)
392 393
{
	/*
394 395 396 397 398
	 * If filterd_no_pids is not empty, and the task's pid is listed
	 * in filtered_no_pids, then return true.
	 * Otherwise, if filtered_pids is empty, that means we can
	 * trace all tasks. If it has content, then only trace pids
	 * within filtered_pids.
399 400
	 */

401 402 403 404
	return (filtered_pids &&
		!trace_find_filtered_pid(filtered_pids, task->pid)) ||
		(filtered_no_pids &&
		 trace_find_filtered_pid(filtered_no_pids, task->pid));
405 406 407
}

/**
408
 * trace_filter_add_remove_task - Add or remove a task from a pid_list
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
 * @pid_list: The list to modify
 * @self: The current task for fork or NULL for exit
 * @task: The task to add or remove
 *
 * If adding a task, if @self is defined, the task is only added if @self
 * is also included in @pid_list. This happens on fork and tasks should
 * only be added when the parent is listed. If @self is NULL, then the
 * @task pid will be removed from the list, which would happen on exit
 * of a task.
 */
void trace_filter_add_remove_task(struct trace_pid_list *pid_list,
				  struct task_struct *self,
				  struct task_struct *task)
{
	if (!pid_list)
		return;

	/* For forks, we only add if the forking task is listed */
	if (self) {
		if (!trace_find_filtered_pid(pid_list, self->pid))
			return;
	}

	/* Sorry, but we don't support pid_max changing after setting */
	if (task->pid >= pid_list->pid_max)
		return;

	/* "self" is set for forks, and NULL for exits */
	if (self)
		set_bit(task->pid, pid_list->pids);
	else
		clear_bit(task->pid, pid_list->pids);
}

443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
/**
 * trace_pid_next - Used for seq_file to get to the next pid of a pid_list
 * @pid_list: The pid list to show
 * @v: The last pid that was shown (+1 the actual pid to let zero be displayed)
 * @pos: The position of the file
 *
 * This is used by the seq_file "next" operation to iterate the pids
 * listed in a trace_pid_list structure.
 *
 * Returns the pid+1 as we want to display pid of zero, but NULL would
 * stop the iteration.
 */
void *trace_pid_next(struct trace_pid_list *pid_list, void *v, loff_t *pos)
{
	unsigned long pid = (unsigned long)v;

	(*pos)++;

	/* pid already is +1 of the actual prevous bit */
	pid = find_next_bit(pid_list->pids, pid_list->pid_max, pid);

	/* Return pid + 1 to allow zero to be represented */
	if (pid < pid_list->pid_max)
		return (void *)(pid + 1);

	return NULL;
}

/**
 * trace_pid_start - Used for seq_file to start reading pid lists
 * @pid_list: The pid list to show
 * @pos: The position of the file
 *
 * This is used by seq_file "start" operation to start the iteration
 * of listing pids.
 *
 * Returns the pid+1 as we want to display pid of zero, but NULL would
 * stop the iteration.
 */
void *trace_pid_start(struct trace_pid_list *pid_list, loff_t *pos)
{
	unsigned long pid;
	loff_t l = 0;

	pid = find_first_bit(pid_list->pids, pid_list->pid_max);
	if (pid >= pid_list->pid_max)
		return NULL;

	/* Return pid + 1 so that zero can be the exit value */
	for (pid++; pid && l < *pos;
	     pid = (unsigned long)trace_pid_next(pid_list, (void *)pid, &l))
		;
	return (void *)pid;
}

/**
 * trace_pid_show - show the current pid in seq_file processing
 * @m: The seq_file structure to write into
 * @v: A void pointer of the pid (+1) value to display
 *
 * Can be directly used by seq_file operations to display the current
 * pid value.
 */
int trace_pid_show(struct seq_file *m, void *v)
{
	unsigned long pid = (unsigned long)v - 1;

	seq_printf(m, "%lu\n", pid);
	return 0;
}

514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
/* 128 should be much more than enough */
#define PID_BUF_SIZE		127

int trace_pid_write(struct trace_pid_list *filtered_pids,
		    struct trace_pid_list **new_pid_list,
		    const char __user *ubuf, size_t cnt)
{
	struct trace_pid_list *pid_list;
	struct trace_parser parser;
	unsigned long val;
	int nr_pids = 0;
	ssize_t read = 0;
	ssize_t ret = 0;
	loff_t pos;
	pid_t pid;

	if (trace_parser_get_init(&parser, PID_BUF_SIZE + 1))
		return -ENOMEM;

	/*
	 * Always recreate a new array. The write is an all or nothing
	 * operation. Always create a new array when adding new pids by
	 * the user. If the operation fails, then the current list is
	 * not modified.
	 */
	pid_list = kmalloc(sizeof(*pid_list), GFP_KERNEL);
540 541
	if (!pid_list) {
		trace_parser_put(&parser);
542
		return -ENOMEM;
543
	}
544 545 546 547 548 549 550 551 552

	pid_list->pid_max = READ_ONCE(pid_max);

	/* Only truncating will shrink pid_max */
	if (filtered_pids && filtered_pids->pid_max > pid_list->pid_max)
		pid_list->pid_max = filtered_pids->pid_max;

	pid_list->pids = vzalloc((pid_list->pid_max + 7) >> 3);
	if (!pid_list->pids) {
553
		trace_parser_put(&parser);
554 555 556 557 558 559
		kfree(pid_list);
		return -ENOMEM;
	}

	if (filtered_pids) {
		/* copy the current bits to the new max */
560 561
		for_each_set_bit(pid, filtered_pids->pids,
				 filtered_pids->pid_max) {
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
			set_bit(pid, pid_list->pids);
			nr_pids++;
		}
	}

	while (cnt > 0) {

		pos = 0;

		ret = trace_get_user(&parser, ubuf, cnt, &pos);
		if (ret < 0 || !trace_parser_loaded(&parser))
			break;

		read += ret;
		ubuf += ret;
		cnt -= ret;

		ret = -EINVAL;
		if (kstrtoul(parser.buffer, 0, &val))
			break;
		if (val >= pid_list->pid_max)
			break;

		pid = (pid_t)val;

		set_bit(pid, pid_list->pids);
		nr_pids++;

		trace_parser_clear(&parser);
		ret = 0;
	}
	trace_parser_put(&parser);

	if (ret < 0) {
		trace_free_pid_list(pid_list);
		return ret;
	}

	if (!nr_pids) {
		/* Cleared the list of pids */
		trace_free_pid_list(pid_list);
		read = ret;
		pid_list = NULL;
	}

	*new_pid_list = pid_list;

	return read;
}

612
static u64 buffer_ftrace_now(struct array_buffer *buf, int cpu)
613 614 615 616
{
	u64 ts;

	/* Early boot up does not have a buffer yet */
617
	if (!buf->buffer)
618 619
		return trace_clock_local();

620 621
	ts = ring_buffer_time_stamp(buf->buffer, cpu);
	ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts);
622 623 624

	return ts;
}
625

626
u64 ftrace_now(int cpu)
627
{
628
	return buffer_ftrace_now(&global_trace.array_buffer, cpu);
629 630
}

631 632 633 634 635 636 637 638 639
/**
 * tracing_is_enabled - Show if global_trace has been disabled
 *
 * Shows if the global trace has been enabled or not. It uses the
 * mirror flag "buffer_disabled" to be used in fast paths such as for
 * the irqsoff tracer. But it may be inaccurate due to races. If you
 * need to know the accurate state, use tracing_is_on() which is a little
 * slower, but accurate.
 */
640 641
int tracing_is_enabled(void)
{
642 643 644 645 646 647 648
	/*
	 * For quick access (irqsoff uses this in fast path), just
	 * return the mirror variable of the state of the ring buffer.
	 * It's a little racy, but we don't really care.
	 */
	smp_rmb();
	return !global_trace.buffer_disabled;
649 650
}

S
Steven Rostedt 已提交
651
/*
652 653 654
 * trace_buf_size is the size in bytes that is allocated
 * for a buffer. Note, the number of bytes is always rounded
 * to page size.
655 656 657 658 659
 *
 * This number is purposely set to a low number of 16384.
 * If the dump on oops happens, it will be much appreciated
 * to not have to wait for all that output. Anyway this can be
 * boot time and run time configurable.
S
Steven Rostedt 已提交
660
 */
661
#define TRACE_BUF_SIZE_DEFAULT	1441792UL /* 16384 * 88 (sizeof(entry)) */
662

663
static unsigned long		trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
664

S
Steven Rostedt 已提交
665
/* trace_types holds a link list of available tracers. */
666
static struct tracer		*trace_types __read_mostly;
S
Steven Rostedt 已提交
667 668 669 670

/*
 * trace_types_lock is used to protect the trace_types list.
 */
671
DEFINE_MUTEX(trace_types_lock);
S
Steven Rostedt 已提交
672

673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
/*
 * serialize the access of the ring buffer
 *
 * ring buffer serializes readers, but it is low level protection.
 * The validity of the events (which returns by ring_buffer_peek() ..etc)
 * are not protected by ring buffer.
 *
 * The content of events may become garbage if we allow other process consumes
 * these events concurrently:
 *   A) the page of the consumed events may become a normal page
 *      (not reader page) in ring buffer, and this page will be rewrited
 *      by events producer.
 *   B) The page of the consumed events may become a page for splice_read,
 *      and this page will be returned to system.
 *
 * These primitives allow multi process access to different cpu ring buffer
 * concurrently.
 *
 * These primitives don't distinguish read-only and read-consume access.
 * Multi read-only access are also serialized.
 */

#ifdef CONFIG_SMP
static DECLARE_RWSEM(all_cpu_access_lock);
static DEFINE_PER_CPU(struct mutex, cpu_access_lock);

static inline void trace_access_lock(int cpu)
{
701
	if (cpu == RING_BUFFER_ALL_CPUS) {
702 703 704 705 706
		/* gain it for accessing the whole ring buffer. */
		down_write(&all_cpu_access_lock);
	} else {
		/* gain it for accessing a cpu ring buffer. */

707
		/* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */
708 709 710 711 712 713 714 715 716
		down_read(&all_cpu_access_lock);

		/* Secondly block other access to this @cpu ring buffer. */
		mutex_lock(&per_cpu(cpu_access_lock, cpu));
	}
}

static inline void trace_access_unlock(int cpu)
{
717
	if (cpu == RING_BUFFER_ALL_CPUS) {
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
		up_write(&all_cpu_access_lock);
	} else {
		mutex_unlock(&per_cpu(cpu_access_lock, cpu));
		up_read(&all_cpu_access_lock);
	}
}

static inline void trace_access_lock_init(void)
{
	int cpu;

	for_each_possible_cpu(cpu)
		mutex_init(&per_cpu(cpu_access_lock, cpu));
}

#else

static DEFINE_MUTEX(access_lock);

static inline void trace_access_lock(int cpu)
{
	(void)cpu;
	mutex_lock(&access_lock);
}

static inline void trace_access_unlock(int cpu)
{
	(void)cpu;
	mutex_unlock(&access_lock);
}

static inline void trace_access_lock_init(void)
{
}

#endif

755
#ifdef CONFIG_STACKTRACE
756
static void __ftrace_trace_stack(struct trace_buffer *buffer,
757 758
				 unsigned long flags,
				 int skip, int pc, struct pt_regs *regs);
759
static inline void ftrace_trace_stack(struct trace_array *tr,
760
				      struct trace_buffer *buffer,
761 762
				      unsigned long flags,
				      int skip, int pc, struct pt_regs *regs);
763

764
#else
765
static inline void __ftrace_trace_stack(struct trace_buffer *buffer,
766 767 768 769
					unsigned long flags,
					int skip, int pc, struct pt_regs *regs)
{
}
770
static inline void ftrace_trace_stack(struct trace_array *tr,
771
				      struct trace_buffer *buffer,
772 773
				      unsigned long flags,
				      int skip, int pc, struct pt_regs *regs)
774 775 776
{
}

777 778
#endif

779 780 781 782 783 784
static __always_inline void
trace_event_setup(struct ring_buffer_event *event,
		  int type, unsigned long flags, int pc)
{
	struct trace_entry *ent = ring_buffer_event_data(event);

785
	tracing_generic_entry_update(ent, type, flags, pc);
786 787 788
}

static __always_inline struct ring_buffer_event *
789
__trace_buffer_lock_reserve(struct trace_buffer *buffer,
790 791 792 793 794 795 796 797 798 799 800 801 802
			  int type,
			  unsigned long len,
			  unsigned long flags, int pc)
{
	struct ring_buffer_event *event;

	event = ring_buffer_lock_reserve(buffer, len);
	if (event != NULL)
		trace_event_setup(event, type, flags, pc);

	return event;
}

803
void tracer_tracing_on(struct trace_array *tr)
804
{
805 806
	if (tr->array_buffer.buffer)
		ring_buffer_record_on(tr->array_buffer.buffer);
807 808 809 810 811 812 813 814 815 816 817 818 819
	/*
	 * This flag is looked at when buffers haven't been allocated
	 * yet, or by some tracers (like irqsoff), that just want to
	 * know if the ring buffer has been disabled, but it can handle
	 * races of where it gets disabled but we still do a record.
	 * As the check is in the fast path of the tracers, it is more
	 * important to be fast than accurate.
	 */
	tr->buffer_disabled = 0;
	/* Make the flag seen by readers */
	smp_wmb();
}

820 821 822 823 824 825 826 827
/**
 * tracing_on - enable tracing buffers
 *
 * This function enables tracing buffers that may have been
 * disabled with tracing_off.
 */
void tracing_on(void)
{
828
	tracer_tracing_on(&global_trace);
829 830 831
}
EXPORT_SYMBOL_GPL(tracing_on);

832 833

static __always_inline void
834
__buffer_unlock_commit(struct trace_buffer *buffer, struct ring_buffer_event *event)
835
{
836
	__this_cpu_write(trace_taskinfo_save, true);
837 838 839 840 841 842 843 844 845 846 847

	/* If this is the temp buffer, we need to commit fully */
	if (this_cpu_read(trace_buffered_event) == event) {
		/* Length is in event->array[0] */
		ring_buffer_write(buffer, event->array[0], &event->array[1]);
		/* Release the temp buffer */
		this_cpu_dec(trace_buffered_event_cnt);
	} else
		ring_buffer_unlock_commit(buffer, event);
}

848 849 850 851 852 853 854 855 856
/**
 * __trace_puts - write a constant string into the trace buffer.
 * @ip:	   The address of the caller
 * @str:   The constant string to write
 * @size:  The size of the string.
 */
int __trace_puts(unsigned long ip, const char *str, int size)
{
	struct ring_buffer_event *event;
857
	struct trace_buffer *buffer;
858 859 860
	struct print_entry *entry;
	unsigned long irq_flags;
	int alloc;
861 862
	int pc;

863
	if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
864 865
		return 0;

866
	pc = preempt_count();
867

868 869 870
	if (unlikely(tracing_selftest_running || tracing_disabled))
		return 0;

871 872 873
	alloc = sizeof(*entry) + size + 2; /* possible \n added */

	local_save_flags(irq_flags);
874
	buffer = global_trace.array_buffer.buffer;
875
	ring_buffer_nest_start(buffer);
876 877
	event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc, 
					    irq_flags, pc);
878 879 880 881
	if (!event) {
		size = 0;
		goto out;
	}
882 883 884 885 886 887 888 889 890 891 892 893 894 895

	entry = ring_buffer_event_data(event);
	entry->ip = ip;

	memcpy(&entry->buf, str, size);

	/* Add a newline if necessary */
	if (entry->buf[size - 1] != '\n') {
		entry->buf[size] = '\n';
		entry->buf[size + 1] = '\0';
	} else
		entry->buf[size] = '\0';

	__buffer_unlock_commit(buffer, event);
896
	ftrace_trace_stack(&global_trace, buffer, irq_flags, 4, pc, NULL);
897 898
 out:
	ring_buffer_nest_end(buffer);
899 900 901 902 903 904 905 906 907 908 909 910
	return size;
}
EXPORT_SYMBOL_GPL(__trace_puts);

/**
 * __trace_bputs - write the pointer to a constant string into trace buffer
 * @ip:	   The address of the caller
 * @str:   The constant string to write to the buffer to
 */
int __trace_bputs(unsigned long ip, const char *str)
{
	struct ring_buffer_event *event;
911
	struct trace_buffer *buffer;
912 913 914
	struct bputs_entry *entry;
	unsigned long irq_flags;
	int size = sizeof(struct bputs_entry);
915
	int ret = 0;
916 917
	int pc;

918
	if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
919 920
		return 0;

921
	pc = preempt_count();
922

923 924 925
	if (unlikely(tracing_selftest_running || tracing_disabled))
		return 0;

926
	local_save_flags(irq_flags);
927
	buffer = global_trace.array_buffer.buffer;
928 929

	ring_buffer_nest_start(buffer);
930 931
	event = __trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size,
					    irq_flags, pc);
932
	if (!event)
933
		goto out;
934 935 936 937 938 939

	entry = ring_buffer_event_data(event);
	entry->ip			= ip;
	entry->str			= str;

	__buffer_unlock_commit(buffer, event);
940
	ftrace_trace_stack(&global_trace, buffer, irq_flags, 4, pc, NULL);
941

942 943 944 945
	ret = 1;
 out:
	ring_buffer_nest_end(buffer);
	return ret;
946 947 948
}
EXPORT_SYMBOL_GPL(__trace_bputs);

949
#ifdef CONFIG_TRACER_SNAPSHOT
950 951
static void tracing_snapshot_instance_cond(struct trace_array *tr,
					   void *cond_data)
952 953 954 955
{
	struct tracer *tracer = tr->current_trace;
	unsigned long flags;

956 957 958 959 960 961
	if (in_nmi()) {
		internal_trace_puts("*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n");
		internal_trace_puts("*** snapshot is being ignored        ***\n");
		return;
	}

962
	if (!tr->allocated_snapshot) {
963 964
		internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n");
		internal_trace_puts("*** stopping trace here!   ***\n");
965 966 967 968 969 970
		tracing_off();
		return;
	}

	/* Note, snapshot can not be used when the tracer uses it */
	if (tracer->use_max_tr) {
971 972
		internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n");
		internal_trace_puts("*** Can not use snapshot (sorry) ***\n");
973 974 975 976
		return;
	}

	local_irq_save(flags);
T
Tom Zanussi 已提交
977
	update_max_tr(tr, current, smp_processor_id(), cond_data);
978 979
	local_irq_restore(flags);
}
980

T
Tom Zanussi 已提交
981 982 983 984 985
void tracing_snapshot_instance(struct trace_array *tr)
{
	tracing_snapshot_instance_cond(tr, NULL);
}

986
/**
C
Chunyu Hu 已提交
987
 * tracing_snapshot - take a snapshot of the current buffer.
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
 *
 * This causes a swap between the snapshot buffer and the current live
 * tracing buffer. You can use this to take snapshots of the live
 * trace when some condition is triggered, but continue to trace.
 *
 * Note, make sure to allocate the snapshot with either
 * a tracing_snapshot_alloc(), or by doing it manually
 * with: echo 1 > /sys/kernel/debug/tracing/snapshot
 *
 * If the snapshot buffer is not allocated, it will stop tracing.
 * Basically making a permanent snapshot.
 */
void tracing_snapshot(void)
{
	struct trace_array *tr = &global_trace;

	tracing_snapshot_instance(tr);
}
1006
EXPORT_SYMBOL_GPL(tracing_snapshot);
1007

T
Tom Zanussi 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
/**
 * tracing_snapshot_cond - conditionally take a snapshot of the current buffer.
 * @tr:		The tracing instance to snapshot
 * @cond_data:	The data to be tested conditionally, and possibly saved
 *
 * This is the same as tracing_snapshot() except that the snapshot is
 * conditional - the snapshot will only happen if the
 * cond_snapshot.update() implementation receiving the cond_data
 * returns true, which means that the trace array's cond_snapshot
 * update() operation used the cond_data to determine whether the
 * snapshot should be taken, and if it was, presumably saved it along
 * with the snapshot.
 */
void tracing_snapshot_cond(struct trace_array *tr, void *cond_data)
{
	tracing_snapshot_instance_cond(tr, cond_data);
}
EXPORT_SYMBOL_GPL(tracing_snapshot_cond);

/**
 * tracing_snapshot_cond_data - get the user data associated with a snapshot
 * @tr:		The tracing instance
 *
 * When the user enables a conditional snapshot using
 * tracing_snapshot_cond_enable(), the user-defined cond_data is saved
 * with the snapshot.  This accessor is used to retrieve it.
 *
 * Should not be called from cond_snapshot.update(), since it takes
 * the tr->max_lock lock, which the code calling
 * cond_snapshot.update() has already done.
 *
 * Returns the cond_data associated with the trace array's snapshot.
 */
void *tracing_cond_snapshot_data(struct trace_array *tr)
{
	void *cond_data = NULL;

	arch_spin_lock(&tr->max_lock);

	if (tr->cond_snapshot)
		cond_data = tr->cond_snapshot->cond_data;

	arch_spin_unlock(&tr->max_lock);

	return cond_data;
}
EXPORT_SYMBOL_GPL(tracing_cond_snapshot_data);

1056 1057 1058
static int resize_buffer_duplicate_size(struct array_buffer *trace_buf,
					struct array_buffer *size_buf, int cpu_id);
static void set_buffer_entries(struct array_buffer *buf, unsigned long val);
1059

1060
int tracing_alloc_snapshot_instance(struct trace_array *tr)
1061 1062 1063 1064 1065 1066 1067
{
	int ret;

	if (!tr->allocated_snapshot) {

		/* allocate spare buffer */
		ret = resize_buffer_duplicate_size(&tr->max_buffer,
1068
				   &tr->array_buffer, RING_BUFFER_ALL_CPUS);
1069 1070 1071 1072 1073 1074 1075 1076 1077
		if (ret < 0)
			return ret;

		tr->allocated_snapshot = true;
	}

	return 0;
}

1078
static void free_snapshot(struct trace_array *tr)
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
{
	/*
	 * We don't free the ring buffer. instead, resize it because
	 * The max_tr ring buffer has some state (e.g. ring->clock) and
	 * we want preserve it.
	 */
	ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS);
	set_buffer_entries(&tr->max_buffer, 1);
	tracing_reset_online_cpus(&tr->max_buffer);
	tr->allocated_snapshot = false;
}
1090

1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
/**
 * tracing_alloc_snapshot - allocate snapshot buffer.
 *
 * This only allocates the snapshot buffer if it isn't already
 * allocated - it doesn't also take a snapshot.
 *
 * This is meant to be used in cases where the snapshot buffer needs
 * to be set up for events that can't sleep but need to be able to
 * trigger a snapshot.
 */
int tracing_alloc_snapshot(void)
{
	struct trace_array *tr = &global_trace;
	int ret;

1106
	ret = tracing_alloc_snapshot_instance(tr);
1107 1108 1109 1110 1111 1112
	WARN_ON(ret < 0);

	return ret;
}
EXPORT_SYMBOL_GPL(tracing_alloc_snapshot);

1113
/**
C
Chunyu Hu 已提交
1114
 * tracing_snapshot_alloc - allocate and take a snapshot of the current buffer.
1115
 *
C
Chunyu Hu 已提交
1116
 * This is similar to tracing_snapshot(), but it will allocate the
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
 * snapshot buffer if it isn't already allocated. Use this only
 * where it is safe to sleep, as the allocation may sleep.
 *
 * This causes a swap between the snapshot buffer and the current live
 * tracing buffer. You can use this to take snapshots of the live
 * trace when some condition is triggered, but continue to trace.
 */
void tracing_snapshot_alloc(void)
{
	int ret;

1128 1129
	ret = tracing_alloc_snapshot();
	if (ret < 0)
1130
		return;
1131 1132 1133

	tracing_snapshot();
}
1134
EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
T
Tom Zanussi 已提交
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172

/**
 * tracing_snapshot_cond_enable - enable conditional snapshot for an instance
 * @tr:		The tracing instance
 * @cond_data:	User data to associate with the snapshot
 * @update:	Implementation of the cond_snapshot update function
 *
 * Check whether the conditional snapshot for the given instance has
 * already been enabled, or if the current tracer is already using a
 * snapshot; if so, return -EBUSY, else create a cond_snapshot and
 * save the cond_data and update function inside.
 *
 * Returns 0 if successful, error otherwise.
 */
int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data,
				 cond_update_fn_t update)
{
	struct cond_snapshot *cond_snapshot;
	int ret = 0;

	cond_snapshot = kzalloc(sizeof(*cond_snapshot), GFP_KERNEL);
	if (!cond_snapshot)
		return -ENOMEM;

	cond_snapshot->cond_data = cond_data;
	cond_snapshot->update = update;

	mutex_lock(&trace_types_lock);

	ret = tracing_alloc_snapshot_instance(tr);
	if (ret)
		goto fail_unlock;

	if (tr->current_trace->use_max_tr) {
		ret = -EBUSY;
		goto fail_unlock;
	}

1173 1174 1175 1176 1177 1178 1179 1180
	/*
	 * The cond_snapshot can only change to NULL without the
	 * trace_types_lock. We don't care if we race with it going
	 * to NULL, but we want to make sure that it's not set to
	 * something other than NULL when we get here, which we can
	 * do safely with only holding the trace_types_lock and not
	 * having to take the max_lock.
	 */
T
Tom Zanussi 已提交
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
	if (tr->cond_snapshot) {
		ret = -EBUSY;
		goto fail_unlock;
	}

	arch_spin_lock(&tr->max_lock);
	tr->cond_snapshot = cond_snapshot;
	arch_spin_unlock(&tr->max_lock);

	mutex_unlock(&trace_types_lock);

	return ret;

 fail_unlock:
	mutex_unlock(&trace_types_lock);
	kfree(cond_snapshot);
	return ret;
}
EXPORT_SYMBOL_GPL(tracing_snapshot_cond_enable);

/**
 * tracing_snapshot_cond_disable - disable conditional snapshot for an instance
 * @tr:		The tracing instance
 *
 * Check whether the conditional snapshot for the given instance is
 * enabled; if so, free the cond_snapshot associated with it,
 * otherwise return -EINVAL.
 *
 * Returns 0 if successful, error otherwise.
 */
int tracing_snapshot_cond_disable(struct trace_array *tr)
{
	int ret = 0;

	arch_spin_lock(&tr->max_lock);

	if (!tr->cond_snapshot)
		ret = -EINVAL;
	else {
		kfree(tr->cond_snapshot);
		tr->cond_snapshot = NULL;
	}

	arch_spin_unlock(&tr->max_lock);

	return ret;
}
EXPORT_SYMBOL_GPL(tracing_snapshot_cond_disable);
1229 1230 1231 1232 1233
#else
void tracing_snapshot(void)
{
	WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used");
}
1234
EXPORT_SYMBOL_GPL(tracing_snapshot);
T
Tom Zanussi 已提交
1235 1236 1237 1238 1239
void tracing_snapshot_cond(struct trace_array *tr, void *cond_data)
{
	WARN_ONCE(1, "Snapshot feature not enabled, but internal conditional snapshot used");
}
EXPORT_SYMBOL_GPL(tracing_snapshot_cond);
1240 1241 1242 1243 1244 1245
int tracing_alloc_snapshot(void)
{
	WARN_ONCE(1, "Snapshot feature not enabled, but snapshot allocation used");
	return -ENODEV;
}
EXPORT_SYMBOL_GPL(tracing_alloc_snapshot);
1246 1247 1248 1249 1250
void tracing_snapshot_alloc(void)
{
	/* Give warning */
	tracing_snapshot();
}
1251
EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
T
Tom Zanussi 已提交
1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
void *tracing_cond_snapshot_data(struct trace_array *tr)
{
	return NULL;
}
EXPORT_SYMBOL_GPL(tracing_cond_snapshot_data);
int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data, cond_update_fn_t update)
{
	return -ENODEV;
}
EXPORT_SYMBOL_GPL(tracing_snapshot_cond_enable);
int tracing_snapshot_cond_disable(struct trace_array *tr)
{
	return false;
}
EXPORT_SYMBOL_GPL(tracing_snapshot_cond_disable);
1267 1268
#endif /* CONFIG_TRACER_SNAPSHOT */

1269
void tracer_tracing_off(struct trace_array *tr)
1270
{
1271 1272
	if (tr->array_buffer.buffer)
		ring_buffer_record_off(tr->array_buffer.buffer);
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
	/*
	 * This flag is looked at when buffers haven't been allocated
	 * yet, or by some tracers (like irqsoff), that just want to
	 * know if the ring buffer has been disabled, but it can handle
	 * races of where it gets disabled but we still do a record.
	 * As the check is in the fast path of the tracers, it is more
	 * important to be fast than accurate.
	 */
	tr->buffer_disabled = 1;
	/* Make the flag seen by readers */
	smp_wmb();
}

1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
/**
 * tracing_off - turn off tracing buffers
 *
 * This function stops the tracing buffers from recording data.
 * It does not disable any overhead the tracers themselves may
 * be causing. This function simply causes all recording to
 * the ring buffers to fail.
 */
void tracing_off(void)
{
1296
	tracer_tracing_off(&global_trace);
1297 1298 1299
}
EXPORT_SYMBOL_GPL(tracing_off);

1300 1301 1302 1303 1304 1305
void disable_trace_on_warning(void)
{
	if (__disable_trace_on_warning)
		tracing_off();
}

1306 1307 1308 1309 1310 1311
/**
 * tracer_tracing_is_on - show real state of ring buffer enabled
 * @tr : the trace array to know if ring buffer is enabled
 *
 * Shows real state of the ring buffer if it is enabled or not.
 */
1312
bool tracer_tracing_is_on(struct trace_array *tr)
1313
{
1314 1315
	if (tr->array_buffer.buffer)
		return ring_buffer_record_is_on(tr->array_buffer.buffer);
1316 1317 1318
	return !tr->buffer_disabled;
}

1319 1320 1321 1322 1323
/**
 * tracing_is_on - show state of ring buffers enabled
 */
int tracing_is_on(void)
{
1324
	return tracer_tracing_is_on(&global_trace);
1325 1326 1327
}
EXPORT_SYMBOL_GPL(tracing_is_on);

1328
static int __init set_buf_size(char *str)
1329
{
1330
	unsigned long buf_size;
1331

1332 1333
	if (!str)
		return 0;
1334
	buf_size = memparse(str, &str);
1335
	/* nr_entries can not be zero */
1336
	if (buf_size == 0)
1337
		return 0;
1338
	trace_buf_size = buf_size;
1339 1340
	return 1;
}
1341
__setup("trace_buf_size=", set_buf_size);
1342

1343 1344
static int __init set_tracing_thresh(char *str)
{
1345
	unsigned long threshold;
1346 1347 1348 1349
	int ret;

	if (!str)
		return 0;
1350
	ret = kstrtoul(str, 0, &threshold);
1351 1352
	if (ret < 0)
		return 0;
1353
	tracing_thresh = threshold * 1000;
1354 1355 1356 1357
	return 1;
}
__setup("tracing_thresh=", set_tracing_thresh);

S
Steven Rostedt 已提交
1358 1359 1360 1361 1362
unsigned long nsecs_to_usecs(unsigned long nsecs)
{
	return nsecs / 1000;
}

1363 1364
/*
 * TRACE_FLAGS is defined as a tuple matching bit masks with strings.
J
Jeremy Linton 已提交
1365
 * It uses C(a, b) where 'a' is the eval (enum) name and 'b' is the string that
1366
 * matches it. By defining "C(a, b) b", TRACE_FLAGS becomes a list
J
Jeremy Linton 已提交
1367
 * of strings in the order that the evals (enum) were defined.
1368 1369 1370 1371
 */
#undef C
#define C(a, b) b

S
Steven Rostedt 已提交
1372
/* These must match the bit postions in trace_iterator_flags */
1373
static const char *trace_options[] = {
1374
	TRACE_FLAGS
1375 1376 1377
	NULL
};

1378 1379 1380
static struct {
	u64 (*func)(void);
	const char *name;
1381
	int in_ns;		/* is this clock in nanoseconds? */
1382
} trace_clocks[] = {
1383 1384 1385
	{ trace_clock_local,		"local",	1 },
	{ trace_clock_global,		"global",	1 },
	{ trace_clock_counter,		"counter",	0 },
1386
	{ trace_clock_jiffies,		"uptime",	0 },
1387 1388
	{ trace_clock,			"perf",		1 },
	{ ktime_get_mono_fast_ns,	"mono",		1 },
1389
	{ ktime_get_raw_fast_ns,	"mono_raw",	1 },
1390
	{ ktime_get_boot_fast_ns,	"boot",		1 },
D
David Sharp 已提交
1391
	ARCH_TRACE_CLOCKS
1392 1393
};

1394 1395 1396 1397 1398 1399 1400 1401
bool trace_clock_in_ns(struct trace_array *tr)
{
	if (trace_clocks[tr->clock_id].in_ns)
		return true;

	return false;
}

1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
/*
 * trace_parser_get_init - gets the buffer for trace parser
 */
int trace_parser_get_init(struct trace_parser *parser, int size)
{
	memset(parser, 0, sizeof(*parser));

	parser->buffer = kmalloc(size, GFP_KERNEL);
	if (!parser->buffer)
		return 1;

	parser->size = size;
	return 0;
}

/*
 * trace_parser_put - frees the buffer for trace parser
 */
void trace_parser_put(struct trace_parser *parser)
{
	kfree(parser->buffer);
1423
	parser->buffer = NULL;
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
}

/*
 * trace_get_user - reads the user input string separated by  space
 * (matched by isspace(ch))
 *
 * For each string found the 'struct trace_parser' is updated,
 * and the function returns.
 *
 * Returns number of bytes read.
 *
 * See kernel/trace/trace.h for 'struct trace_parser' details.
 */
int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
	size_t cnt, loff_t *ppos)
{
	char ch;
	size_t read = 0;
	ssize_t ret;

	if (!*ppos)
		trace_parser_clear(parser);

	ret = get_user(ch, ubuf++);
	if (ret)
		goto out;

	read++;
	cnt--;

	/*
	 * The parser is not finished with the last write,
	 * continue reading the user input without skipping spaces.
	 */
	if (!parser->cont) {
		/* skip white space */
		while (cnt && isspace(ch)) {
			ret = get_user(ch, ubuf++);
			if (ret)
				goto out;
			read++;
			cnt--;
		}

1468 1469
		parser->idx = 0;

1470
		/* only spaces were written */
1471
		if (isspace(ch) || !ch) {
1472 1473 1474 1475 1476 1477 1478
			*ppos += read;
			ret = read;
			goto out;
		}
	}

	/* read the non-space input */
1479
	while (cnt && !isspace(ch) && ch) {
1480
		if (parser->idx < parser->size - 1)
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
			parser->buffer[parser->idx++] = ch;
		else {
			ret = -EINVAL;
			goto out;
		}
		ret = get_user(ch, ubuf++);
		if (ret)
			goto out;
		read++;
		cnt--;
	}

	/* We either got finished input or we have to wait for another call. */
1494
	if (isspace(ch) || !ch) {
1495 1496
		parser->buffer[parser->idx] = 0;
		parser->cont = false;
1497
	} else if (parser->idx < parser->size - 1) {
1498 1499
		parser->cont = true;
		parser->buffer[parser->idx++] = ch;
1500 1501
		/* Make sure the parsed string always terminates with '\0'. */
		parser->buffer[parser->idx] = 0;
1502 1503 1504
	} else {
		ret = -EINVAL;
		goto out;
1505 1506 1507 1508 1509 1510 1511 1512 1513
	}

	*ppos += read;
	ret = read;

out:
	return ret;
}

1514
/* TODO add a seq_buf_to_buffer() */
1515
static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
1516 1517 1518
{
	int len;

1519
	if (trace_seq_used(s) <= s->seq.readpos)
1520 1521
		return -EBUSY;

1522
	len = trace_seq_used(s) - s->seq.readpos;
1523 1524
	if (cnt > len)
		cnt = len;
1525
	memcpy(buf, s->buffer + s->seq.readpos, cnt);
1526

1527
	s->seq.readpos += cnt;
1528 1529 1530
	return cnt;
}

1531
unsigned long __read_mostly	tracing_thresh;
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
static const struct file_operations tracing_max_lat_fops;

#if (defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)) && \
	defined(CONFIG_FSNOTIFY)

static struct workqueue_struct *fsnotify_wq;

static void latency_fsnotify_workfn(struct work_struct *work)
{
	struct trace_array *tr = container_of(work, struct trace_array,
					      fsnotify_work);
	fsnotify(tr->d_max_latency->d_inode, FS_MODIFY,
		 tr->d_max_latency->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0);
}

static void latency_fsnotify_workfn_irq(struct irq_work *iwork)
{
	struct trace_array *tr = container_of(iwork, struct trace_array,
					      fsnotify_irqwork);
	queue_work(fsnotify_wq, &tr->fsnotify_work);
}

static void trace_create_maxlat_file(struct trace_array *tr,
				     struct dentry *d_tracer)
{
	INIT_WORK(&tr->fsnotify_work, latency_fsnotify_workfn);
	init_irq_work(&tr->fsnotify_irqwork, latency_fsnotify_workfn_irq);
	tr->d_max_latency = trace_create_file("tracing_max_latency", 0644,
					      d_tracer, &tr->max_latency,
					      &tracing_max_lat_fops);
}

__init static int latency_fsnotify_init(void)
{
	fsnotify_wq = alloc_workqueue("tr_max_lat_wq",
				      WQ_UNBOUND | WQ_HIGHPRI, 0);
	if (!fsnotify_wq) {
		pr_err("Unable to allocate tr_max_lat_wq\n");
		return -ENOMEM;
	}
	return 0;
}

late_initcall_sync(latency_fsnotify_init);

void latency_fsnotify(struct trace_array *tr)
{
	if (!fsnotify_wq)
		return;
	/*
	 * We cannot call queue_work(&tr->fsnotify_work) from here because it's
	 * possible that we are called from __schedule() or do_idle(), which
	 * could cause a deadlock.
	 */
	irq_work_queue(&tr->fsnotify_irqwork);
}

/*
 * (defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)) && \
 *  defined(CONFIG_FSNOTIFY)
 */
#else

#define trace_create_maxlat_file(tr, d_tracer)				\
	trace_create_file("tracing_max_latency", 0644, d_tracer,	\
			  &tr->max_latency, &tracing_max_lat_fops)

#endif
1600

1601 1602 1603 1604
#ifdef CONFIG_TRACER_MAX_TRACE
/*
 * Copy the new maximum trace into the separate maximum-trace
 * structure. (this way the maximum trace is permanently saved,
C
Chunyu Hu 已提交
1605
 * for later retrieval via /sys/kernel/tracing/tracing_max_latency)
1606 1607 1608 1609
 */
static void
__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
{
1610 1611
	struct array_buffer *trace_buf = &tr->array_buffer;
	struct array_buffer *max_buf = &tr->max_buffer;
1612 1613
	struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu);
	struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu);
1614

1615 1616
	max_buf->cpu = cpu;
	max_buf->time_start = data->preempt_timestamp;
1617

1618
	max_data->saved_latency = tr->max_latency;
1619 1620
	max_data->critical_start = data->critical_start;
	max_data->critical_end = data->critical_end;
1621

1622
	strncpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
1623
	max_data->pid = tsk->pid;
1624 1625 1626 1627 1628 1629 1630 1631 1632
	/*
	 * If tsk == current, then use current_uid(), as that does not use
	 * RCU. The irq tracer can be called out of RCU scope.
	 */
	if (tsk == current)
		max_data->uid = current_uid();
	else
		max_data->uid = task_uid(tsk);

1633 1634 1635
	max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
	max_data->policy = tsk->policy;
	max_data->rt_priority = tsk->rt_priority;
1636 1637 1638

	/* record this tasks comm */
	tracing_record_cmdline(tsk);
1639
	latency_fsnotify(tr);
1640 1641
}

S
Steven Rostedt 已提交
1642 1643 1644 1645 1646
/**
 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
 * @tr: tracer
 * @tsk: the task with the latency
 * @cpu: The cpu that initiated the trace.
T
Tom Zanussi 已提交
1647
 * @cond_data: User data associated with a conditional snapshot
S
Steven Rostedt 已提交
1648 1649 1650 1651
 *
 * Flip the buffers between the @tr and the max_tr and record information
 * about which task was the cause of this latency.
 */
I
Ingo Molnar 已提交
1652
void
T
Tom Zanussi 已提交
1653 1654
update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu,
	      void *cond_data)
1655
{
1656
	if (tr->stop_count)
1657 1658
		return;

1659
	WARN_ON_ONCE(!irqs_disabled());
1660

1661
	if (!tr->allocated_snapshot) {
1662
		/* Only the nop tracer should hit this when disabling */
1663
		WARN_ON_ONCE(tr->current_trace != &nop_trace);
1664
		return;
1665
	}
1666

1667
	arch_spin_lock(&tr->max_lock);
1668

1669 1670
	/* Inherit the recordable setting from array_buffer */
	if (ring_buffer_record_is_set_on(tr->array_buffer.buffer))
1671 1672 1673 1674
		ring_buffer_record_on(tr->max_buffer.buffer);
	else
		ring_buffer_record_off(tr->max_buffer.buffer);

T
Tom Zanussi 已提交
1675 1676 1677 1678
#ifdef CONFIG_TRACER_SNAPSHOT
	if (tr->cond_snapshot && !tr->cond_snapshot->update(tr, cond_data))
		goto out_unlock;
#endif
1679
	swap(tr->array_buffer.buffer, tr->max_buffer.buffer);
1680

1681
	__update_max_tr(tr, tsk, cpu);
T
Tom Zanussi 已提交
1682 1683

 out_unlock:
1684
	arch_spin_unlock(&tr->max_lock);
1685 1686 1687 1688
}

/**
 * update_max_tr_single - only copy one trace over, and reset the rest
J
Jakub Kicinski 已提交
1689 1690 1691
 * @tr: tracer
 * @tsk: task with the latency
 * @cpu: the cpu of the buffer to copy.
S
Steven Rostedt 已提交
1692 1693
 *
 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
1694
 */
I
Ingo Molnar 已提交
1695
void
1696 1697
update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
{
1698
	int ret;
1699

1700
	if (tr->stop_count)
1701 1702
		return;

1703
	WARN_ON_ONCE(!irqs_disabled());
S
Steven Rostedt 已提交
1704
	if (!tr->allocated_snapshot) {
1705
		/* Only the nop tracer should hit this when disabling */
1706
		WARN_ON_ONCE(tr->current_trace != &nop_trace);
1707
		return;
1708
	}
1709

1710
	arch_spin_lock(&tr->max_lock);
1711

1712
	ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->array_buffer.buffer, cpu);
1713

1714 1715 1716 1717 1718 1719 1720
	if (ret == -EBUSY) {
		/*
		 * We failed to swap the buffer due to a commit taking
		 * place on this CPU. We fail to record, but we reset
		 * the max trace buffer (no one writes directly to it)
		 * and flag that it failed.
		 */
1721
		trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_,
1722 1723 1724 1725
			"Failed to swap buffers due to commit in progress\n");
	}

	WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
1726 1727

	__update_max_tr(tr, tsk, cpu);
1728
	arch_spin_unlock(&tr->max_lock);
1729
}
1730
#endif /* CONFIG_TRACER_MAX_TRACE */
1731

1732
static int wait_on_pipe(struct trace_iterator *iter, int full)
1733
{
1734 1735
	/* Iterators are static, they should be filled or empty */
	if (trace_buffer_iter(iter, iter->cpu_file))
1736
		return 0;
1737

1738
	return ring_buffer_wait(iter->array_buffer->buffer, iter->cpu_file,
1739
				full);
1740 1741
}

1742
#ifdef CONFIG_FTRACE_STARTUP_TEST
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
static bool selftests_can_run;

struct trace_selftests {
	struct list_head		list;
	struct tracer			*type;
};

static LIST_HEAD(postponed_selftests);

static int save_selftest(struct tracer *type)
{
	struct trace_selftests *selftest;

	selftest = kmalloc(sizeof(*selftest), GFP_KERNEL);
	if (!selftest)
		return -ENOMEM;

	selftest->type = type;
	list_add(&selftest->list, &postponed_selftests);
	return 0;
}

1765 1766 1767 1768 1769
static int run_tracer_selftest(struct tracer *type)
{
	struct trace_array *tr = &global_trace;
	struct tracer *saved_tracer = tr->current_trace;
	int ret;
1770

1771 1772
	if (!type->selftest || tracing_selftest_disabled)
		return 0;
1773

1774 1775 1776 1777 1778 1779 1780 1781
	/*
	 * If a tracer registers early in boot up (before scheduling is
	 * initialized and such), then do not run its selftests yet.
	 * Instead, run it a little later in the boot process.
	 */
	if (!selftests_can_run)
		return save_selftest(type);

1782
	/*
1783 1784 1785 1786 1787
	 * Run a selftest on this tracer.
	 * Here we reset the trace buffer, and set the current
	 * tracer to be this tracer. The tracer can then run some
	 * internal tracing to verify that everything is in order.
	 * If we fail, we do not register this tracer.
1788
	 */
1789
	tracing_reset_online_cpus(&tr->array_buffer);
1790

1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
	tr->current_trace = type;

#ifdef CONFIG_TRACER_MAX_TRACE
	if (type->use_max_tr) {
		/* If we expanded the buffers, make sure the max is expanded too */
		if (ring_buffer_expanded)
			ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size,
					   RING_BUFFER_ALL_CPUS);
		tr->allocated_snapshot = true;
	}
#endif

	/* the test is responsible for initializing and enabling */
	pr_info("Testing tracer %s: ", type->name);
	ret = type->selftest(type, tr);
	/* the test is responsible for resetting too */
	tr->current_trace = saved_tracer;
	if (ret) {
		printk(KERN_CONT "FAILED!\n");
		/* Add the warning after printing 'FAILED' */
		WARN_ON(1);
		return -1;
	}
	/* Only reset on passing, to avoid touching corrupted buffers */
1815
	tracing_reset_online_cpus(&tr->array_buffer);
1816 1817 1818 1819

#ifdef CONFIG_TRACER_MAX_TRACE
	if (type->use_max_tr) {
		tr->allocated_snapshot = false;
1820

1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
		/* Shrink the max buffer again */
		if (ring_buffer_expanded)
			ring_buffer_resize(tr->max_buffer.buffer, 1,
					   RING_BUFFER_ALL_CPUS);
	}
#endif

	printk(KERN_CONT "PASSED\n");
	return 0;
}
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846

static __init int init_trace_selftests(void)
{
	struct trace_selftests *p, *n;
	struct tracer *t, **last;
	int ret;

	selftests_can_run = true;

	mutex_lock(&trace_types_lock);

	if (list_empty(&postponed_selftests))
		goto out;

	pr_info("Running postponed tracer tests:\n");

1847
	tracing_selftest_running = true;
1848
	list_for_each_entry_safe(p, n, &postponed_selftests, list) {
1849 1850 1851 1852
		/* This loop can take minutes when sanitizers are enabled, so
		 * lets make sure we allow RCU processing.
		 */
		cond_resched();
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869
		ret = run_tracer_selftest(p->type);
		/* If the test fails, then warn and remove from available_tracers */
		if (ret < 0) {
			WARN(1, "tracer: %s failed selftest, disabling\n",
			     p->type->name);
			last = &trace_types;
			for (t = trace_types; t; t = t->next) {
				if (t == p->type) {
					*last = t->next;
					break;
				}
				last = &t->next;
			}
		}
		list_del(&p->list);
		kfree(p);
	}
1870
	tracing_selftest_running = false;
1871 1872 1873 1874 1875 1876

 out:
	mutex_unlock(&trace_types_lock);

	return 0;
}
1877
core_initcall(init_trace_selftests);
1878 1879 1880 1881
#else
static inline int run_tracer_selftest(struct tracer *type)
{
	return 0;
1882
}
1883
#endif /* CONFIG_FTRACE_STARTUP_TEST */
1884

1885 1886
static void add_tracer_options(struct trace_array *tr, struct tracer *t);

1887 1888
static void __init apply_trace_boot_options(void);

S
Steven Rostedt 已提交
1889 1890
/**
 * register_tracer - register a tracer with the ftrace system.
J
Jakub Kicinski 已提交
1891
 * @type: the plugin for the tracer
S
Steven Rostedt 已提交
1892 1893 1894
 *
 * Register a new plugin tracer.
 */
1895
int __init register_tracer(struct tracer *type)
1896 1897 1898 1899 1900 1901 1902 1903 1904
{
	struct tracer *t;
	int ret = 0;

	if (!type->name) {
		pr_info("Tracer must have a name\n");
		return -1;
	}

1905
	if (strlen(type->name) >= MAX_TRACER_SIZE) {
L
Li Zefan 已提交
1906 1907 1908 1909
		pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
		return -1;
	}

1910
	if (security_locked_down(LOCKDOWN_TRACEFS)) {
1911
		pr_warn("Can not register tracer %s due to lockdown\n",
1912 1913 1914 1915
			   type->name);
		return -EPERM;
	}

1916
	mutex_lock(&trace_types_lock);
I
Ingo Molnar 已提交
1917

1918 1919
	tracing_selftest_running = true;

1920 1921 1922
	for (t = trace_types; t; t = t->next) {
		if (strcmp(type->name, t->name) == 0) {
			/* already found */
L
Li Zefan 已提交
1923
			pr_info("Tracer %s already registered\n",
1924 1925 1926 1927 1928 1929
				type->name);
			ret = -1;
			goto out;
		}
	}

1930 1931
	if (!type->set_flag)
		type->set_flag = &dummy_set_flag;
1932 1933 1934
	if (!type->flags) {
		/*allocate a dummy tracer_flags*/
		type->flags = kmalloc(sizeof(*type->flags), GFP_KERNEL);
1935 1936 1937 1938
		if (!type->flags) {
			ret = -ENOMEM;
			goto out;
		}
1939 1940 1941
		type->flags->val = 0;
		type->flags->opts = dummy_tracer_opt;
	} else
1942 1943
		if (!type->flags->opts)
			type->flags->opts = dummy_tracer_opt;
1944

1945 1946 1947
	/* store the tracer for __set_tracer_option */
	type->flags->trace = type;

1948 1949 1950
	ret = run_tracer_selftest(type);
	if (ret < 0)
		goto out;
S
Steven Rostedt 已提交
1951

1952 1953
	type->next = trace_types;
	trace_types = type;
1954
	add_tracer_options(&global_trace, type);
S
Steven Rostedt 已提交
1955

1956
 out:
1957
	tracing_selftest_running = false;
1958 1959
	mutex_unlock(&trace_types_lock);

S
Steven Rostedt 已提交
1960 1961 1962
	if (ret || !default_bootup_tracer)
		goto out_unlock;

L
Li Zefan 已提交
1963
	if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
S
Steven Rostedt 已提交
1964 1965 1966 1967
		goto out_unlock;

	printk(KERN_INFO "Starting tracer '%s'\n", type->name);
	/* Do we want this tracer to start on bootup? */
1968
	tracing_set_tracer(&global_trace, type->name);
S
Steven Rostedt 已提交
1969
	default_bootup_tracer = NULL;
1970 1971 1972

	apply_trace_boot_options();

S
Steven Rostedt 已提交
1973
	/* disable other selftests, since this will break it. */
1974
	tracing_selftest_disabled = true;
1975
#ifdef CONFIG_FTRACE_STARTUP_TEST
S
Steven Rostedt 已提交
1976 1977
	printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
	       type->name);
1978 1979
#endif

S
Steven Rostedt 已提交
1980
 out_unlock:
1981 1982 1983
	return ret;
}

1984
static void tracing_reset_cpu(struct array_buffer *buf, int cpu)
1985
{
1986
	struct trace_buffer *buffer = buf->buffer;
1987

1988 1989 1990
	if (!buffer)
		return;

1991 1992 1993
	ring_buffer_record_disable(buffer);

	/* Make sure all commits have finished */
1994
	synchronize_rcu();
1995
	ring_buffer_reset_cpu(buffer, cpu);
1996 1997 1998 1999

	ring_buffer_record_enable(buffer);
}

2000
void tracing_reset_online_cpus(struct array_buffer *buf)
2001
{
2002
	struct trace_buffer *buffer = buf->buffer;
2003 2004
	int cpu;

2005 2006 2007
	if (!buffer)
		return;

2008 2009 2010
	ring_buffer_record_disable(buffer);

	/* Make sure all commits have finished */
2011
	synchronize_rcu();
2012

2013
	buf->time_start = buffer_ftrace_now(buf, buf->cpu);
2014 2015

	for_each_online_cpu(cpu)
2016
		ring_buffer_reset_cpu(buffer, cpu);
2017 2018

	ring_buffer_record_enable(buffer);
2019 2020
}

2021
/* Must have trace_types_lock held */
2022
void tracing_reset_all_online_cpus(void)
2023
{
2024 2025 2026
	struct trace_array *tr;

	list_for_each_entry(tr, &ftrace_trace_arrays, list) {
2027 2028 2029
		if (!tr->clear_trace)
			continue;
		tr->clear_trace = false;
2030
		tracing_reset_online_cpus(&tr->array_buffer);
2031 2032 2033
#ifdef CONFIG_TRACER_MAX_TRACE
		tracing_reset_online_cpus(&tr->max_buffer);
#endif
2034
	}
2035 2036
}

2037 2038
static int *tgid_map;

2039
#define SAVED_CMDLINES_DEFAULT 128
2040
#define NO_CMDLINE_MAP UINT_MAX
2041
static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
2042 2043 2044 2045 2046 2047 2048 2049
struct saved_cmdlines_buffer {
	unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
	unsigned *map_cmdline_to_pid;
	unsigned cmdline_num;
	int cmdline_idx;
	char *saved_cmdlines;
};
static struct saved_cmdlines_buffer *savedcmd;
2050 2051

/* temporary disable recording */
2052
static atomic_t trace_record_taskinfo_disabled __read_mostly;
2053

2054 2055 2056 2057 2058 2059
static inline char *get_saved_cmdlines(int idx)
{
	return &savedcmd->saved_cmdlines[idx * TASK_COMM_LEN];
}

static inline void set_cmdline(int idx, const char *cmdline)
2060
{
2061
	strncpy(get_saved_cmdlines(idx), cmdline, TASK_COMM_LEN);
2062 2063 2064 2065 2066
}

static int allocate_cmdlines_buffer(unsigned int val,
				    struct saved_cmdlines_buffer *s)
{
2067 2068 2069
	s->map_cmdline_to_pid = kmalloc_array(val,
					      sizeof(*s->map_cmdline_to_pid),
					      GFP_KERNEL);
2070 2071 2072
	if (!s->map_cmdline_to_pid)
		return -ENOMEM;

2073
	s->saved_cmdlines = kmalloc_array(TASK_COMM_LEN, val, GFP_KERNEL);
2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
	if (!s->saved_cmdlines) {
		kfree(s->map_cmdline_to_pid);
		return -ENOMEM;
	}

	s->cmdline_idx = 0;
	s->cmdline_num = val;
	memset(&s->map_pid_to_cmdline, NO_CMDLINE_MAP,
	       sizeof(s->map_pid_to_cmdline));
	memset(s->map_cmdline_to_pid, NO_CMDLINE_MAP,
	       val * sizeof(*s->map_cmdline_to_pid));

	return 0;
}

static int trace_create_savedcmd(void)
{
	int ret;

2093
	savedcmd = kmalloc(sizeof(*savedcmd), GFP_KERNEL);
2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
	if (!savedcmd)
		return -ENOMEM;

	ret = allocate_cmdlines_buffer(SAVED_CMDLINES_DEFAULT, savedcmd);
	if (ret < 0) {
		kfree(savedcmd);
		savedcmd = NULL;
		return -ENOMEM;
	}

	return 0;
2105 2106
}

2107 2108
int is_tracing_stopped(void)
{
2109
	return global_trace.stop_count;
2110 2111
}

2112 2113 2114 2115 2116 2117 2118 2119
/**
 * tracing_start - quick start of the tracer
 *
 * If tracing is enabled but was stopped by tracing_stop,
 * this will start the tracer back up.
 */
void tracing_start(void)
{
2120
	struct trace_buffer *buffer;
2121 2122 2123 2124 2125
	unsigned long flags;

	if (tracing_disabled)
		return;

2126 2127 2128
	raw_spin_lock_irqsave(&global_trace.start_lock, flags);
	if (--global_trace.stop_count) {
		if (global_trace.stop_count < 0) {
2129 2130
			/* Someone screwed up their debugging */
			WARN_ON_ONCE(1);
2131
			global_trace.stop_count = 0;
2132
		}
2133 2134 2135
		goto out;
	}

2136
	/* Prevent the buffers from switching */
2137
	arch_spin_lock(&global_trace.max_lock);
2138

2139
	buffer = global_trace.array_buffer.buffer;
2140 2141 2142
	if (buffer)
		ring_buffer_record_enable(buffer);

2143 2144
#ifdef CONFIG_TRACER_MAX_TRACE
	buffer = global_trace.max_buffer.buffer;
2145 2146
	if (buffer)
		ring_buffer_record_enable(buffer);
2147
#endif
2148

2149
	arch_spin_unlock(&global_trace.max_lock);
2150

2151
 out:
2152 2153 2154 2155 2156
	raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
}

static void tracing_start_tr(struct trace_array *tr)
{
2157
	struct trace_buffer *buffer;
2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177
	unsigned long flags;

	if (tracing_disabled)
		return;

	/* If global, we need to also start the max tracer */
	if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
		return tracing_start();

	raw_spin_lock_irqsave(&tr->start_lock, flags);

	if (--tr->stop_count) {
		if (tr->stop_count < 0) {
			/* Someone screwed up their debugging */
			WARN_ON_ONCE(1);
			tr->stop_count = 0;
		}
		goto out;
	}

2178
	buffer = tr->array_buffer.buffer;
2179 2180 2181 2182 2183
	if (buffer)
		ring_buffer_record_enable(buffer);

 out:
	raw_spin_unlock_irqrestore(&tr->start_lock, flags);
2184 2185 2186 2187 2188 2189 2190 2191 2192 2193
}

/**
 * tracing_stop - quick stop of the tracer
 *
 * Light weight way to stop tracing. Use in conjunction with
 * tracing_start.
 */
void tracing_stop(void)
{
2194
	struct trace_buffer *buffer;
2195 2196
	unsigned long flags;

2197 2198
	raw_spin_lock_irqsave(&global_trace.start_lock, flags);
	if (global_trace.stop_count++)
2199 2200
		goto out;

2201
	/* Prevent the buffers from switching */
2202
	arch_spin_lock(&global_trace.max_lock);
2203

2204
	buffer = global_trace.array_buffer.buffer;
2205 2206 2207
	if (buffer)
		ring_buffer_record_disable(buffer);

2208 2209
#ifdef CONFIG_TRACER_MAX_TRACE
	buffer = global_trace.max_buffer.buffer;
2210 2211
	if (buffer)
		ring_buffer_record_disable(buffer);
2212
#endif
2213

2214
	arch_spin_unlock(&global_trace.max_lock);
2215

2216
 out:
2217 2218 2219 2220 2221
	raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
}

static void tracing_stop_tr(struct trace_array *tr)
{
2222
	struct trace_buffer *buffer;
2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
	unsigned long flags;

	/* If global, we need to also stop the max tracer */
	if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
		return tracing_stop();

	raw_spin_lock_irqsave(&tr->start_lock, flags);
	if (tr->stop_count++)
		goto out;

2233
	buffer = tr->array_buffer.buffer;
2234 2235 2236 2237 2238
	if (buffer)
		ring_buffer_record_disable(buffer);

 out:
	raw_spin_unlock_irqrestore(&tr->start_lock, flags);
2239 2240
}

2241
static int trace_save_cmdline(struct task_struct *tsk)
2242
{
2243
	unsigned pid, idx;
2244

2245 2246 2247 2248 2249
	/* treat recording of idle task as a success */
	if (!tsk->pid)
		return 1;

	if (unlikely(tsk->pid > PID_MAX_DEFAULT))
2250
		return 0;
2251 2252 2253 2254 2255 2256 2257

	/*
	 * It's not the end of the world if we don't get
	 * the lock, but we also don't want to spin
	 * nor do we want to disable interrupts,
	 * so if we miss here, then better luck next time.
	 */
2258
	if (!arch_spin_trylock(&trace_cmdline_lock))
2259
		return 0;
2260

2261
	idx = savedcmd->map_pid_to_cmdline[tsk->pid];
2262
	if (idx == NO_CMDLINE_MAP) {
2263
		idx = (savedcmd->cmdline_idx + 1) % savedcmd->cmdline_num;
2264

2265 2266 2267 2268 2269 2270
		/*
		 * Check whether the cmdline buffer at idx has a pid
		 * mapped. We are going to overwrite that entry so we
		 * need to clear the map_pid_to_cmdline. Otherwise we
		 * would read the new comm for the old pid.
		 */
2271
		pid = savedcmd->map_cmdline_to_pid[idx];
2272
		if (pid != NO_CMDLINE_MAP)
2273
			savedcmd->map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
2274

2275 2276
		savedcmd->map_cmdline_to_pid[idx] = tsk->pid;
		savedcmd->map_pid_to_cmdline[tsk->pid] = idx;
2277

2278
		savedcmd->cmdline_idx = idx;
2279 2280
	}

2281
	set_cmdline(idx, tsk->comm);
2282

2283
	arch_spin_unlock(&trace_cmdline_lock);
2284 2285

	return 1;
2286 2287
}

2288
static void __trace_find_cmdline(int pid, char comm[])
2289 2290 2291
{
	unsigned map;

2292 2293 2294 2295
	if (!pid) {
		strcpy(comm, "<idle>");
		return;
	}
2296

2297 2298 2299 2300 2301
	if (WARN_ON_ONCE(pid < 0)) {
		strcpy(comm, "<XXX>");
		return;
	}

2302 2303 2304 2305
	if (pid > PID_MAX_DEFAULT) {
		strcpy(comm, "<...>");
		return;
	}
2306

2307
	map = savedcmd->map_pid_to_cmdline[pid];
2308
	if (map != NO_CMDLINE_MAP)
2309
		strlcpy(comm, get_saved_cmdlines(map), TASK_COMM_LEN);
2310 2311
	else
		strcpy(comm, "<...>");
2312 2313 2314 2315 2316 2317 2318 2319
}

void trace_find_cmdline(int pid, char comm[])
{
	preempt_disable();
	arch_spin_lock(&trace_cmdline_lock);

	__trace_find_cmdline(pid, comm);
2320

2321
	arch_spin_unlock(&trace_cmdline_lock);
2322
	preempt_enable();
2323 2324
}

2325 2326 2327 2328 2329 2330 2331 2332 2333 2334
int trace_find_tgid(int pid)
{
	if (unlikely(!tgid_map || !pid || pid > PID_MAX_DEFAULT))
		return 0;

	return tgid_map[pid];
}

static int trace_save_tgid(struct task_struct *tsk)
{
2335 2336 2337 2338 2339
	/* treat recording of idle task as a success */
	if (!tsk->pid)
		return 1;

	if (unlikely(!tgid_map || tsk->pid > PID_MAX_DEFAULT))
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359
		return 0;

	tgid_map[tsk->pid] = tsk->tgid;
	return 1;
}

static bool tracing_record_taskinfo_skip(int flags)
{
	if (unlikely(!(flags & (TRACE_RECORD_CMDLINE | TRACE_RECORD_TGID))))
		return true;
	if (atomic_read(&trace_record_taskinfo_disabled) || !tracing_is_on())
		return true;
	if (!__this_cpu_read(trace_taskinfo_save))
		return true;
	return false;
}

/**
 * tracing_record_taskinfo - record the task info of a task
 *
J
Jakub Kicinski 已提交
2360 2361 2362
 * @task:  task to record
 * @flags: TRACE_RECORD_CMDLINE for recording comm
 *         TRACE_RECORD_TGID for recording tgid
2363 2364 2365
 */
void tracing_record_taskinfo(struct task_struct *task, int flags)
{
2366 2367
	bool done;

2368 2369
	if (tracing_record_taskinfo_skip(flags))
		return;
2370 2371 2372 2373 2374 2375 2376 2377 2378 2379

	/*
	 * Record as much task information as possible. If some fail, continue
	 * to try to record the others.
	 */
	done = !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(task);
	done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(task);

	/* If recording any information failed, retry again soon. */
	if (!done)
2380 2381 2382 2383 2384 2385 2386 2387
		return;

	__this_cpu_write(trace_taskinfo_save, false);
}

/**
 * tracing_record_taskinfo_sched_switch - record task info for sched_switch
 *
J
Jakub Kicinski 已提交
2388 2389 2390 2391
 * @prev: previous task during sched_switch
 * @next: next task during sched_switch
 * @flags: TRACE_RECORD_CMDLINE for recording comm
 *         TRACE_RECORD_TGID for recording tgid
2392 2393 2394
 */
void tracing_record_taskinfo_sched_switch(struct task_struct *prev,
					  struct task_struct *next, int flags)
2395
{
2396 2397
	bool done;

2398 2399 2400
	if (tracing_record_taskinfo_skip(flags))
		return;

2401 2402 2403 2404 2405 2406 2407 2408
	/*
	 * Record as much task information as possible. If some fail, continue
	 * to try to record the others.
	 */
	done  = !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(prev);
	done &= !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(next);
	done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(prev);
	done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(next);
2409

2410 2411
	/* If recording any information failed, retry again soon. */
	if (!done)
2412 2413
		return;

2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
	__this_cpu_write(trace_taskinfo_save, false);
}

/* Helpers to record a specific task information */
void tracing_record_cmdline(struct task_struct *task)
{
	tracing_record_taskinfo(task, TRACE_RECORD_CMDLINE);
}

void tracing_record_tgid(struct task_struct *task)
{
	tracing_record_taskinfo(task, TRACE_RECORD_TGID);
2426 2427
}

2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
/*
 * Several functions return TRACE_TYPE_PARTIAL_LINE if the trace_seq
 * overflowed, and TRACE_TYPE_HANDLED otherwise. This helper function
 * simplifies those functions and keeps them in sync.
 */
enum print_line_t trace_handle_return(struct trace_seq *s)
{
	return trace_seq_has_overflowed(s) ?
		TRACE_TYPE_PARTIAL_LINE : TRACE_TYPE_HANDLED;
}
EXPORT_SYMBOL_GPL(trace_handle_return);

2440
void
2441 2442
tracing_generic_entry_update(struct trace_entry *entry, unsigned short type,
			     unsigned long flags, int pc)
2443 2444 2445
{
	struct task_struct *tsk = current;

2446 2447
	entry->preempt_count		= pc & 0xff;
	entry->pid			= (tsk) ? tsk->pid : 0;
2448
	entry->type			= type;
2449
	entry->flags =
2450
#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
2451
		(irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
2452 2453 2454
#else
		TRACE_FLAG_IRQS_NOSUPPORT |
#endif
2455
		((pc & NMI_MASK    ) ? TRACE_FLAG_NMI     : 0) |
2456
		((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
2457
		((pc & SOFTIRQ_OFFSET) ? TRACE_FLAG_SOFTIRQ : 0) |
2458 2459
		(tif_need_resched() ? TRACE_FLAG_NEED_RESCHED : 0) |
		(test_preempt_need_resched() ? TRACE_FLAG_PREEMPT_RESCHED : 0);
2460
}
2461
EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
2462

2463
struct ring_buffer_event *
2464
trace_buffer_lock_reserve(struct trace_buffer *buffer,
2465 2466 2467
			  int type,
			  unsigned long len,
			  unsigned long flags, int pc)
2468
{
2469
	return __trace_buffer_lock_reserve(buffer, type, len, flags, pc);
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494
}

DEFINE_PER_CPU(struct ring_buffer_event *, trace_buffered_event);
DEFINE_PER_CPU(int, trace_buffered_event_cnt);
static int trace_buffered_event_ref;

/**
 * trace_buffered_event_enable - enable buffering events
 *
 * When events are being filtered, it is quicker to use a temporary
 * buffer to write the event data into if there's a likely chance
 * that it will not be committed. The discard of the ring buffer
 * is not as fast as committing, and is much slower than copying
 * a commit.
 *
 * When an event is to be filtered, allocate per cpu buffers to
 * write the event data into, and if the event is filtered and discarded
 * it is simply dropped, otherwise, the entire data is to be committed
 * in one shot.
 */
void trace_buffered_event_enable(void)
{
	struct ring_buffer_event *event;
	struct page *page;
	int cpu;
2495

2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517
	WARN_ON_ONCE(!mutex_is_locked(&event_mutex));

	if (trace_buffered_event_ref++)
		return;

	for_each_tracing_cpu(cpu) {
		page = alloc_pages_node(cpu_to_node(cpu),
					GFP_KERNEL | __GFP_NORETRY, 0);
		if (!page)
			goto failed;

		event = page_address(page);
		memset(event, 0, sizeof(*event));

		per_cpu(trace_buffered_event, cpu) = event;

		preempt_disable();
		if (cpu == smp_processor_id() &&
		    this_cpu_read(trace_buffered_event) !=
		    per_cpu(trace_buffered_event, cpu))
			WARN_ON_ONCE(1);
		preempt_enable();
2518 2519
	}

2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563
	return;
 failed:
	trace_buffered_event_disable();
}

static void enable_trace_buffered_event(void *data)
{
	/* Probably not needed, but do it anyway */
	smp_rmb();
	this_cpu_dec(trace_buffered_event_cnt);
}

static void disable_trace_buffered_event(void *data)
{
	this_cpu_inc(trace_buffered_event_cnt);
}

/**
 * trace_buffered_event_disable - disable buffering events
 *
 * When a filter is removed, it is faster to not use the buffered
 * events, and to commit directly into the ring buffer. Free up
 * the temp buffers when there are no more users. This requires
 * special synchronization with current events.
 */
void trace_buffered_event_disable(void)
{
	int cpu;

	WARN_ON_ONCE(!mutex_is_locked(&event_mutex));

	if (WARN_ON_ONCE(!trace_buffered_event_ref))
		return;

	if (--trace_buffered_event_ref)
		return;

	preempt_disable();
	/* For each CPU, set the buffer as used. */
	smp_call_function_many(tracing_buffer_mask,
			       disable_trace_buffered_event, NULL, 1);
	preempt_enable();

	/* Wait for all current users to finish */
2564
	synchronize_rcu();
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580

	for_each_tracing_cpu(cpu) {
		free_page((unsigned long)per_cpu(trace_buffered_event, cpu));
		per_cpu(trace_buffered_event, cpu) = NULL;
	}
	/*
	 * Make sure trace_buffered_event is NULL before clearing
	 * trace_buffered_event_cnt.
	 */
	smp_wmb();

	preempt_disable();
	/* Do the work on each cpu */
	smp_call_function_many(tracing_buffer_mask,
			       enable_trace_buffered_event, NULL, 1);
	preempt_enable();
2581 2582
}

2583
static struct trace_buffer *temp_buffer;
2584

2585
struct ring_buffer_event *
2586
trace_event_buffer_lock_reserve(struct trace_buffer **current_rb,
2587
			  struct trace_event_file *trace_file,
2588 2589 2590
			  int type, unsigned long len,
			  unsigned long flags, int pc)
{
2591
	struct ring_buffer_event *entry;
2592
	int val;
2593

2594
	*current_rb = trace_file->tr->array_buffer.buffer;
2595

2596
	if (!ring_buffer_time_stamp_abs(*current_rb) && (trace_file->flags &
2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608
	     (EVENT_FILE_FL_SOFT_DISABLED | EVENT_FILE_FL_FILTERED)) &&
	    (entry = this_cpu_read(trace_buffered_event))) {
		/* Try to use the per cpu buffer first */
		val = this_cpu_inc_return(trace_buffered_event_cnt);
		if (val == 1) {
			trace_event_setup(entry, type, flags, pc);
			entry->array[0] = len;
			return entry;
		}
		this_cpu_dec(trace_buffered_event_cnt);
	}

2609 2610
	entry = __trace_buffer_lock_reserve(*current_rb,
					    type, len, flags, pc);
2611 2612 2613 2614 2615 2616
	/*
	 * If tracing is off, but we have triggers enabled
	 * we still need to look at the event data. Use the temp_buffer
	 * to store the trace event for the tigger to use. It's recusive
	 * safe and will not be recorded anywhere.
	 */
2617
	if (!entry && trace_file->flags & EVENT_FILE_FL_TRIGGER_COND) {
2618
		*current_rb = temp_buffer;
2619 2620
		entry = __trace_buffer_lock_reserve(*current_rb,
						    type, len, flags, pc);
2621 2622
	}
	return entry;
2623 2624 2625
}
EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve);

2626 2627 2628 2629 2630 2631
static DEFINE_SPINLOCK(tracepoint_iter_lock);
static DEFINE_MUTEX(tracepoint_printk_mutex);

static void output_printk(struct trace_event_buffer *fbuffer)
{
	struct trace_event_call *event_call;
2632
	struct trace_event_file *file;
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
	struct trace_event *event;
	unsigned long flags;
	struct trace_iterator *iter = tracepoint_print_iter;

	/* We should never get here if iter is NULL */
	if (WARN_ON_ONCE(!iter))
		return;

	event_call = fbuffer->trace_file->event_call;
	if (!event_call || !event_call->event.funcs ||
	    !event_call->event.funcs->trace)
		return;

2646 2647 2648 2649 2650 2651
	file = fbuffer->trace_file;
	if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) ||
	    (unlikely(file->flags & EVENT_FILE_FL_FILTERED) &&
	     !filter_match_preds(file->filter, fbuffer->entry)))
		return;

2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701
	event = &fbuffer->trace_file->event_call->event;

	spin_lock_irqsave(&tracepoint_iter_lock, flags);
	trace_seq_init(&iter->seq);
	iter->ent = fbuffer->entry;
	event_call->event.funcs->trace(iter, 0, event);
	trace_seq_putc(&iter->seq, 0);
	printk("%s", iter->seq.buffer);

	spin_unlock_irqrestore(&tracepoint_iter_lock, flags);
}

int tracepoint_printk_sysctl(struct ctl_table *table, int write,
			     void __user *buffer, size_t *lenp,
			     loff_t *ppos)
{
	int save_tracepoint_printk;
	int ret;

	mutex_lock(&tracepoint_printk_mutex);
	save_tracepoint_printk = tracepoint_printk;

	ret = proc_dointvec(table, write, buffer, lenp, ppos);

	/*
	 * This will force exiting early, as tracepoint_printk
	 * is always zero when tracepoint_printk_iter is not allocated
	 */
	if (!tracepoint_print_iter)
		tracepoint_printk = 0;

	if (save_tracepoint_printk == tracepoint_printk)
		goto out;

	if (tracepoint_printk)
		static_key_enable(&tracepoint_printk_key.key);
	else
		static_key_disable(&tracepoint_printk_key.key);

 out:
	mutex_unlock(&tracepoint_printk_mutex);

	return ret;
}

void trace_event_buffer_commit(struct trace_event_buffer *fbuffer)
{
	if (static_key_false(&tracepoint_printk_key.key))
		output_printk(fbuffer);

2702
	event_trigger_unlock_commit_regs(fbuffer->trace_file, fbuffer->buffer,
2703
				    fbuffer->event, fbuffer->entry,
2704
				    fbuffer->flags, fbuffer->pc, fbuffer->regs);
2705 2706 2707
}
EXPORT_SYMBOL_GPL(trace_event_buffer_commit);

2708 2709 2710 2711 2712 2713
/*
 * Skip 3:
 *
 *   trace_buffer_unlock_commit_regs()
 *   trace_event_buffer_commit()
 *   trace_event_raw_event_xxx()
2714
 */
2715 2716
# define STACK_SKIP 3

2717
void trace_buffer_unlock_commit_regs(struct trace_array *tr,
2718
				     struct trace_buffer *buffer,
2719 2720 2721
				     struct ring_buffer_event *event,
				     unsigned long flags, int pc,
				     struct pt_regs *regs)
2722
{
2723
	__buffer_unlock_commit(buffer, event);
2724

2725
	/*
2726
	 * If regs is not set, then skip the necessary functions.
2727 2728
	 * Note, we can still get here via blktrace, wakeup tracer
	 * and mmiotrace, but that's ok if they lose a function or
2729
	 * two. They are not that meaningful.
2730
	 */
2731
	ftrace_trace_stack(tr, buffer, flags, regs ? 0 : STACK_SKIP, pc, regs);
2732 2733 2734
	ftrace_trace_userstack(buffer, flags, pc);
}

2735 2736 2737 2738
/*
 * Similar to trace_buffer_unlock_commit_regs() but do not dump stack.
 */
void
2739
trace_buffer_unlock_commit_nostack(struct trace_buffer *buffer,
2740 2741 2742 2743 2744
				   struct ring_buffer_event *event)
{
	__buffer_unlock_commit(buffer, event);
}

2745 2746 2747 2748 2749 2750 2751 2752 2753
static void
trace_process_export(struct trace_export *export,
	       struct ring_buffer_event *event)
{
	struct trace_entry *entry;
	unsigned int size = 0;

	entry = ring_buffer_event_data(event);
	size = ring_buffer_event_length(event);
2754
	export->write(export, entry, size);
2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772
}

static DEFINE_MUTEX(ftrace_export_lock);

static struct trace_export __rcu *ftrace_exports_list __read_mostly;

static DEFINE_STATIC_KEY_FALSE(ftrace_exports_enabled);

static inline void ftrace_exports_enable(void)
{
	static_branch_enable(&ftrace_exports_enabled);
}

static inline void ftrace_exports_disable(void)
{
	static_branch_disable(&ftrace_exports_enabled);
}

2773
static void ftrace_exports(struct ring_buffer_event *event)
2774 2775 2776 2777 2778
{
	struct trace_export *export;

	preempt_disable_notrace();

2779
	export = rcu_dereference_raw_check(ftrace_exports_list);
2780 2781
	while (export) {
		trace_process_export(export, event);
2782
		export = rcu_dereference_raw_check(export->next);
2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867
	}

	preempt_enable_notrace();
}

static inline void
add_trace_export(struct trace_export **list, struct trace_export *export)
{
	rcu_assign_pointer(export->next, *list);
	/*
	 * We are entering export into the list but another
	 * CPU might be walking that list. We need to make sure
	 * the export->next pointer is valid before another CPU sees
	 * the export pointer included into the list.
	 */
	rcu_assign_pointer(*list, export);
}

static inline int
rm_trace_export(struct trace_export **list, struct trace_export *export)
{
	struct trace_export **p;

	for (p = list; *p != NULL; p = &(*p)->next)
		if (*p == export)
			break;

	if (*p != export)
		return -1;

	rcu_assign_pointer(*p, (*p)->next);

	return 0;
}

static inline void
add_ftrace_export(struct trace_export **list, struct trace_export *export)
{
	if (*list == NULL)
		ftrace_exports_enable();

	add_trace_export(list, export);
}

static inline int
rm_ftrace_export(struct trace_export **list, struct trace_export *export)
{
	int ret;

	ret = rm_trace_export(list, export);
	if (*list == NULL)
		ftrace_exports_disable();

	return ret;
}

int register_ftrace_export(struct trace_export *export)
{
	if (WARN_ON_ONCE(!export->write))
		return -1;

	mutex_lock(&ftrace_export_lock);

	add_ftrace_export(&ftrace_exports_list, export);

	mutex_unlock(&ftrace_export_lock);

	return 0;
}
EXPORT_SYMBOL_GPL(register_ftrace_export);

int unregister_ftrace_export(struct trace_export *export)
{
	int ret;

	mutex_lock(&ftrace_export_lock);

	ret = rm_ftrace_export(&ftrace_exports_list, export);

	mutex_unlock(&ftrace_export_lock);

	return ret;
}
EXPORT_SYMBOL_GPL(unregister_ftrace_export);

I
Ingo Molnar 已提交
2868
void
2869
trace_function(struct trace_array *tr,
2870 2871
	       unsigned long ip, unsigned long parent_ip, unsigned long flags,
	       int pc)
2872
{
2873
	struct trace_event_call *call = &event_function;
2874
	struct trace_buffer *buffer = tr->array_buffer.buffer;
2875
	struct ring_buffer_event *event;
2876
	struct ftrace_entry *entry;
2877

2878 2879
	event = __trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
					    flags, pc);
2880 2881 2882
	if (!event)
		return;
	entry	= ring_buffer_event_data(event);
2883 2884
	entry->ip			= ip;
	entry->parent_ip		= parent_ip;
2885

2886 2887 2888
	if (!call_filter_check_discard(call, entry, buffer, event)) {
		if (static_branch_unlikely(&ftrace_exports_enabled))
			ftrace_exports(event);
2889
		__buffer_unlock_commit(buffer, event);
2890
	}
2891 2892
}

2893
#ifdef CONFIG_STACKTRACE
2894

2895 2896 2897 2898 2899
/* Allow 4 levels of nesting: normal, softirq, irq, NMI */
#define FTRACE_KSTACK_NESTING	4

#define FTRACE_KSTACK_ENTRIES	(PAGE_SIZE / FTRACE_KSTACK_NESTING)

2900
struct ftrace_stack {
2901
	unsigned long		calls[FTRACE_KSTACK_ENTRIES];
2902 2903
};

2904 2905 2906

struct ftrace_stacks {
	struct ftrace_stack	stacks[FTRACE_KSTACK_NESTING];
2907 2908
};

2909
static DEFINE_PER_CPU(struct ftrace_stacks, ftrace_stacks);
2910 2911
static DEFINE_PER_CPU(int, ftrace_stack_reserve);

2912
static void __ftrace_trace_stack(struct trace_buffer *buffer,
2913
				 unsigned long flags,
2914
				 int skip, int pc, struct pt_regs *regs)
I
Ingo Molnar 已提交
2915
{
2916
	struct trace_event_call *call = &event_kernel_stack;
2917
	struct ring_buffer_event *event;
2918
	unsigned int size, nr_entries;
2919
	struct ftrace_stack *fstack;
2920
	struct stack_entry *entry;
2921
	int stackidx;
2922

2923
	/*
2924
	 * Add one, for this function and the call to save_stack_trace()
2925 2926
	 * If regs is set, then these functions will not be in the way.
	 */
2927
#ifndef CONFIG_UNWINDER_ORC
2928
	if (!regs)
2929
		skip++;
2930
#endif
2931

2932 2933 2934 2935 2936 2937 2938 2939
	/*
	 * Since events can happen in NMIs there's no safe way to
	 * use the per cpu ftrace_stacks. We reserve it and if an interrupt
	 * or NMI comes in, it will just have to use the default
	 * FTRACE_STACK_SIZE.
	 */
	preempt_disable_notrace();

2940 2941 2942 2943 2944 2945
	stackidx = __this_cpu_inc_return(ftrace_stack_reserve) - 1;

	/* This should never happen. If it does, yell once and skip */
	if (WARN_ON_ONCE(stackidx > FTRACE_KSTACK_NESTING))
		goto out;

2946
	/*
2947 2948 2949 2950 2951
	 * The above __this_cpu_inc_return() is 'atomic' cpu local. An
	 * interrupt will either see the value pre increment or post
	 * increment. If the interrupt happens pre increment it will have
	 * restored the counter when it returns.  We just need a barrier to
	 * keep gcc from moving things around.
2952 2953 2954
	 */
	barrier();

2955
	fstack = this_cpu_ptr(ftrace_stacks.stacks) + stackidx;
2956
	size = ARRAY_SIZE(fstack->calls);
2957

2958 2959 2960 2961 2962 2963
	if (regs) {
		nr_entries = stack_trace_save_regs(regs, fstack->calls,
						   size, skip);
	} else {
		nr_entries = stack_trace_save(fstack->calls, size, skip);
	}
I
Ingo Molnar 已提交
2964

2965
	size = nr_entries * sizeof(unsigned long);
2966 2967
	event = __trace_buffer_lock_reserve(buffer, TRACE_STACK,
					    sizeof(*entry) + size, flags, pc);
2968
	if (!event)
2969 2970
		goto out;
	entry = ring_buffer_event_data(event);
I
Ingo Molnar 已提交
2971

2972 2973
	memcpy(&entry->caller, fstack->calls, size);
	entry->size = nr_entries;
I
Ingo Molnar 已提交
2974

2975
	if (!call_filter_check_discard(call, entry, buffer, event))
2976
		__buffer_unlock_commit(buffer, event);
2977 2978 2979 2980

 out:
	/* Again, don't let gcc optimize things here */
	barrier();
2981
	__this_cpu_dec(ftrace_stack_reserve);
2982 2983
	preempt_enable_notrace();

I
Ingo Molnar 已提交
2984 2985
}

2986
static inline void ftrace_trace_stack(struct trace_array *tr,
2987
				      struct trace_buffer *buffer,
2988 2989
				      unsigned long flags,
				      int skip, int pc, struct pt_regs *regs)
2990
{
2991
	if (!(tr->trace_flags & TRACE_ITER_STACKTRACE))
2992 2993
		return;

2994
	__ftrace_trace_stack(buffer, flags, skip, pc, regs);
2995 2996
}

2997 2998
void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
		   int pc)
2999
{
3000
	struct trace_buffer *buffer = tr->array_buffer.buffer;
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018

	if (rcu_is_watching()) {
		__ftrace_trace_stack(buffer, flags, skip, pc, NULL);
		return;
	}

	/*
	 * When an NMI triggers, RCU is enabled via rcu_nmi_enter(),
	 * but if the above rcu_is_watching() failed, then the NMI
	 * triggered someplace critical, and rcu_irq_enter() should
	 * not be called from NMI.
	 */
	if (unlikely(in_nmi()))
		return;

	rcu_irq_enter_irqson();
	__ftrace_trace_stack(buffer, flags, skip, pc, NULL);
	rcu_irq_exit_irqson();
3019 3020
}

S
Steven Rostedt 已提交
3021 3022
/**
 * trace_dump_stack - record a stack back trace in the trace buffer
3023
 * @skip: Number of functions to skip (helper handlers)
S
Steven Rostedt 已提交
3024
 */
3025
void trace_dump_stack(int skip)
S
Steven Rostedt 已提交
3026 3027 3028 3029
{
	unsigned long flags;

	if (tracing_disabled || tracing_selftest_running)
3030
		return;
S
Steven Rostedt 已提交
3031 3032 3033

	local_save_flags(flags);

3034 3035 3036 3037
#ifndef CONFIG_UNWINDER_ORC
	/* Skip 1 to skip this function. */
	skip++;
#endif
3038
	__ftrace_trace_stack(global_trace.array_buffer.buffer,
3039
			     flags, skip, preempt_count(), NULL);
S
Steven Rostedt 已提交
3040
}
3041
EXPORT_SYMBOL_GPL(trace_dump_stack);
S
Steven Rostedt 已提交
3042

3043
#ifdef CONFIG_USER_STACKTRACE_SUPPORT
3044 3045
static DEFINE_PER_CPU(int, user_stack_count);

3046
static void
3047
ftrace_trace_userstack(struct trace_buffer *buffer, unsigned long flags, int pc)
3048
{
3049
	struct trace_event_call *call = &event_user_stack;
3050
	struct ring_buffer_event *event;
3051 3052
	struct userstack_entry *entry;

3053
	if (!(global_trace.trace_flags & TRACE_ITER_USERSTACKTRACE))
3054 3055
		return;

3056 3057 3058 3059 3060 3061
	/*
	 * NMIs can not handle page faults, even with fix ups.
	 * The save user stack can (and often does) fault.
	 */
	if (unlikely(in_nmi()))
		return;
3062

3063 3064 3065 3066 3067 3068 3069 3070 3071 3072
	/*
	 * prevent recursion, since the user stack tracing may
	 * trigger other kernel events.
	 */
	preempt_disable();
	if (__this_cpu_read(user_stack_count))
		goto out;

	__this_cpu_inc(user_stack_count);

3073 3074
	event = __trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
					    sizeof(*entry), flags, pc);
3075
	if (!event)
L
Li Zefan 已提交
3076
		goto out_drop_count;
3077 3078
	entry	= ring_buffer_event_data(event);

3079
	entry->tgid		= current->tgid;
3080 3081
	memset(&entry->caller, 0, sizeof(entry->caller));

3082
	stack_trace_save_user(entry->caller, FTRACE_STACK_ENTRIES);
3083
	if (!call_filter_check_discard(call, entry, buffer, event))
3084
		__buffer_unlock_commit(buffer, event);
3085

L
Li Zefan 已提交
3086
 out_drop_count:
3087 3088 3089
	__this_cpu_dec(user_stack_count);
 out:
	preempt_enable();
3090
}
3091
#else /* CONFIG_USER_STACKTRACE_SUPPORT */
3092
static void ftrace_trace_userstack(struct trace_buffer *buffer,
3093
				   unsigned long flags, int pc)
3094 3095
{
}
3096
#endif /* !CONFIG_USER_STACKTRACE_SUPPORT */
3097

3098 3099
#endif /* CONFIG_STACKTRACE */

3100 3101
/* created for use with alloc_percpu */
struct trace_buffer_struct {
3102 3103
	int nesting;
	char buffer[4][TRACE_BUF_SIZE];
3104 3105 3106 3107 3108
};

static struct trace_buffer_struct *trace_percpu_buffer;

/*
3109 3110
 * Thise allows for lockless recording.  If we're nested too deeply, then
 * this returns NULL.
3111 3112 3113
 */
static char *get_trace_buf(void)
{
3114
	struct trace_buffer_struct *buffer = this_cpu_ptr(trace_percpu_buffer);
3115

3116
	if (!buffer || buffer->nesting >= 4)
3117 3118
		return NULL;

3119 3120 3121 3122 3123
	buffer->nesting++;

	/* Interrupts must see nesting incremented before we use the buffer */
	barrier();
	return &buffer->buffer[buffer->nesting][0];
3124 3125 3126 3127
}

static void put_trace_buf(void)
{
3128 3129
	/* Don't let the decrement of nesting leak before this */
	barrier();
3130
	this_cpu_dec(trace_percpu_buffer->nesting);
3131 3132 3133 3134 3135 3136 3137
}

static int alloc_percpu_trace_buffer(void)
{
	struct trace_buffer_struct *buffers;

	buffers = alloc_percpu(struct trace_buffer_struct);
3138
	if (MEM_FAIL(!buffers, "Could not allocate percpu trace_printk buffer"))
3139
		return -ENOMEM;
3140 3141 3142 3143 3144

	trace_percpu_buffer = buffers;
	return 0;
}

3145 3146
static int buffers_allocated;

3147 3148 3149 3150 3151 3152 3153 3154
void trace_printk_init_buffers(void)
{
	if (buffers_allocated)
		return;

	if (alloc_percpu_trace_buffer())
		return;

3155 3156
	/* trace_printk() is for debug use only. Don't use it in production. */

3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
	pr_warn("\n");
	pr_warn("**********************************************************\n");
	pr_warn("**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n");
	pr_warn("**                                                      **\n");
	pr_warn("** trace_printk() being used. Allocating extra memory.  **\n");
	pr_warn("**                                                      **\n");
	pr_warn("** This means that this is a DEBUG kernel and it is     **\n");
	pr_warn("** unsafe for production use.                           **\n");
	pr_warn("**                                                      **\n");
	pr_warn("** If you see this message and you are not debugging    **\n");
	pr_warn("** the kernel, report this immediately to your vendor!  **\n");
	pr_warn("**                                                      **\n");
	pr_warn("**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n");
	pr_warn("**********************************************************\n");
3171

3172 3173 3174
	/* Expand the buffers to set size */
	tracing_update_buffers();

3175
	buffers_allocated = 1;
3176 3177 3178 3179 3180 3181 3182

	/*
	 * trace_printk_init_buffers() can be called by modules.
	 * If that happens, then we need to start cmdline recording
	 * directly here. If the global_trace.buffer is already
	 * allocated here, then this was called by module code.
	 */
3183
	if (global_trace.array_buffer.buffer)
3184 3185
		tracing_start_cmdline_record();
}
3186
EXPORT_SYMBOL_GPL(trace_printk_init_buffers);
3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204

void trace_printk_start_comm(void)
{
	/* Start tracing comms if trace printk is set */
	if (!buffers_allocated)
		return;
	tracing_start_cmdline_record();
}

static void trace_printk_start_stop_comm(int enabled)
{
	if (!buffers_allocated)
		return;

	if (enabled)
		tracing_start_cmdline_record();
	else
		tracing_stop_cmdline_record();
3205 3206
}

3207
/**
3208
 * trace_vbprintk - write binary msg to tracing buffer
J
Jakub Kicinski 已提交
3209 3210 3211
 * @ip:    The address of the caller
 * @fmt:   The string format to write to the buffer
 * @args:  Arguments for @fmt
3212
 */
3213
int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
3214
{
3215
	struct trace_event_call *call = &event_bprint;
3216
	struct ring_buffer_event *event;
3217
	struct trace_buffer *buffer;
3218
	struct trace_array *tr = &global_trace;
3219
	struct bprint_entry *entry;
3220
	unsigned long flags;
3221 3222
	char *tbuffer;
	int len = 0, size, pc;
3223 3224 3225 3226 3227 3228 3229 3230

	if (unlikely(tracing_selftest_running || tracing_disabled))
		return 0;

	/* Don't pollute graph traces with trace_vprintk internals */
	pause_graph_tracing();

	pc = preempt_count();
3231
	preempt_disable_notrace();
3232

3233 3234 3235
	tbuffer = get_trace_buf();
	if (!tbuffer) {
		len = 0;
3236
		goto out_nobuffer;
3237
	}
3238

3239
	len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
3240

3241
	if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
3242
		goto out_put;
3243

3244
	local_save_flags(flags);
3245
	size = sizeof(*entry) + sizeof(u32) * len;
3246
	buffer = tr->array_buffer.buffer;
3247
	ring_buffer_nest_start(buffer);
3248 3249
	event = __trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
					    flags, pc);
3250
	if (!event)
3251
		goto out;
3252 3253 3254 3255
	entry = ring_buffer_event_data(event);
	entry->ip			= ip;
	entry->fmt			= fmt;

3256
	memcpy(entry->buf, tbuffer, sizeof(u32) * len);
3257
	if (!call_filter_check_discard(call, entry, buffer, event)) {
3258
		__buffer_unlock_commit(buffer, event);
3259
		ftrace_trace_stack(tr, buffer, flags, 6, pc, NULL);
3260
	}
3261 3262

out:
3263
	ring_buffer_nest_end(buffer);
3264
out_put:
3265 3266 3267
	put_trace_buf();

out_nobuffer:
3268
	preempt_enable_notrace();
3269 3270 3271 3272
	unpause_graph_tracing();

	return len;
}
3273 3274
EXPORT_SYMBOL_GPL(trace_vbprintk);

3275
__printf(3, 0)
3276
static int
3277
__trace_array_vprintk(struct trace_buffer *buffer,
3278
		      unsigned long ip, const char *fmt, va_list args)
3279
{
3280
	struct trace_event_call *call = &event_print;
3281
	struct ring_buffer_event *event;
3282
	int len = 0, size, pc;
3283
	struct print_entry *entry;
3284 3285
	unsigned long flags;
	char *tbuffer;
3286 3287 3288 3289

	if (tracing_disabled || tracing_selftest_running)
		return 0;

3290 3291 3292
	/* Don't pollute graph traces with trace_vprintk internals */
	pause_graph_tracing();

3293 3294 3295
	pc = preempt_count();
	preempt_disable_notrace();

3296 3297 3298 3299

	tbuffer = get_trace_buf();
	if (!tbuffer) {
		len = 0;
3300
		goto out_nobuffer;
3301
	}
3302

3303
	len = vscnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
3304

3305
	local_save_flags(flags);
3306
	size = sizeof(*entry) + len + 1;
3307
	ring_buffer_nest_start(buffer);
3308 3309
	event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
					    flags, pc);
3310
	if (!event)
3311
		goto out;
3312
	entry = ring_buffer_event_data(event);
C
Carsten Emde 已提交
3313
	entry->ip = ip;
3314

3315
	memcpy(&entry->buf, tbuffer, len + 1);
3316
	if (!call_filter_check_discard(call, entry, buffer, event)) {
3317
		__buffer_unlock_commit(buffer, event);
3318
		ftrace_trace_stack(&global_trace, buffer, flags, 6, pc, NULL);
3319
	}
3320 3321

out:
3322
	ring_buffer_nest_end(buffer);
3323 3324 3325
	put_trace_buf();

out_nobuffer:
3326
	preempt_enable_notrace();
3327
	unpause_graph_tracing();
3328 3329 3330

	return len;
}
3331

3332
__printf(3, 0)
3333 3334 3335
int trace_array_vprintk(struct trace_array *tr,
			unsigned long ip, const char *fmt, va_list args)
{
3336
	return __trace_array_vprintk(tr->array_buffer.buffer, ip, fmt, args);
3337 3338
}

3339
__printf(3, 0)
3340 3341 3342 3343 3344 3345
int trace_array_printk(struct trace_array *tr,
		       unsigned long ip, const char *fmt, ...)
{
	int ret;
	va_list ap;

3346
	if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
3347 3348
		return 0;

3349 3350 3351
	if (!tr)
		return -ENOENT;

3352 3353 3354 3355 3356
	va_start(ap, fmt);
	ret = trace_array_vprintk(tr, ip, fmt, ap);
	va_end(ap);
	return ret;
}
3357
EXPORT_SYMBOL_GPL(trace_array_printk);
3358

3359
__printf(3, 4)
3360
int trace_array_printk_buf(struct trace_buffer *buffer,
3361 3362 3363 3364 3365
			   unsigned long ip, const char *fmt, ...)
{
	int ret;
	va_list ap;

3366
	if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
3367 3368 3369 3370 3371 3372 3373 3374
		return 0;

	va_start(ap, fmt);
	ret = __trace_array_vprintk(buffer, ip, fmt, ap);
	va_end(ap);
	return ret;
}

3375
__printf(2, 0)
3376 3377
int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
{
S
Steven Rostedt 已提交
3378
	return trace_array_vprintk(&global_trace, ip, fmt, args);
3379
}
3380 3381
EXPORT_SYMBOL_GPL(trace_vprintk);

3382
static void trace_iterator_increment(struct trace_iterator *iter)
S
Steven Rostedt 已提交
3383
{
3384 3385
	struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu);

S
Steven Rostedt 已提交
3386
	iter->idx++;
3387
	if (buf_iter)
3388
		ring_buffer_iter_advance(buf_iter);
S
Steven Rostedt 已提交
3389 3390
}

I
Ingo Molnar 已提交
3391
static struct trace_entry *
3392 3393
peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
		unsigned long *lost_events)
3394
{
3395
	struct ring_buffer_event *event;
3396
	struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu);
3397

3398
	if (buf_iter) {
3399
		event = ring_buffer_iter_peek(buf_iter, ts);
3400 3401 3402 3403
		if (lost_events)
			*lost_events = ring_buffer_iter_dropped(buf_iter) ?
				(unsigned long)-1 : 0;
	} else {
3404
		event = ring_buffer_peek(iter->array_buffer->buffer, cpu, ts,
3405
					 lost_events);
3406
	}
3407

3408 3409 3410 3411 3412 3413
	if (event) {
		iter->ent_size = ring_buffer_event_length(event);
		return ring_buffer_event_data(event);
	}
	iter->ent_size = 0;
	return NULL;
3414
}
3415

3416
static struct trace_entry *
3417 3418
__find_next_entry(struct trace_iterator *iter, int *ent_cpu,
		  unsigned long *missing_events, u64 *ent_ts)
3419
{
3420
	struct trace_buffer *buffer = iter->array_buffer->buffer;
3421
	struct trace_entry *ent, *next = NULL;
3422
	unsigned long lost_events = 0, next_lost = 0;
3423
	int cpu_file = iter->cpu_file;
3424
	u64 next_ts = 0, ts;
3425
	int next_cpu = -1;
3426
	int next_size = 0;
3427 3428
	int cpu;

3429 3430 3431 3432
	/*
	 * If we are in a per_cpu trace file, don't bother by iterating over
	 * all cpu and peek directly.
	 */
3433
	if (cpu_file > RING_BUFFER_ALL_CPUS) {
3434 3435
		if (ring_buffer_empty_cpu(buffer, cpu_file))
			return NULL;
3436
		ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
3437 3438 3439 3440 3441 3442
		if (ent_cpu)
			*ent_cpu = cpu_file;

		return ent;
	}

3443
	for_each_tracing_cpu(cpu) {
3444

3445 3446
		if (ring_buffer_empty_cpu(buffer, cpu))
			continue;
3447

3448
		ent = peek_next_entry(iter, cpu, &ts, &lost_events);
3449

I
Ingo Molnar 已提交
3450 3451 3452
		/*
		 * Pick the entry with the smallest timestamp:
		 */
3453
		if (ent && (!next || ts < next_ts)) {
3454 3455
			next = ent;
			next_cpu = cpu;
3456
			next_ts = ts;
3457
			next_lost = lost_events;
3458
			next_size = iter->ent_size;
3459 3460 3461
		}
	}

3462 3463
	iter->ent_size = next_size;

3464 3465 3466
	if (ent_cpu)
		*ent_cpu = next_cpu;

3467 3468 3469
	if (ent_ts)
		*ent_ts = next_ts;

3470 3471 3472
	if (missing_events)
		*missing_events = next_lost;

3473 3474 3475
	return next;
}

3476 3477 3478
#define STATIC_TEMP_BUF_SIZE	128
static char static_temp_buf[STATIC_TEMP_BUF_SIZE];

3479
/* Find the next real entry, without updating the iterator itself */
3480 3481
struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
					  int *ent_cpu, u64 *ent_ts)
3482
{
3483 3484 3485 3486
	/* __find_next_entry will reset ent_size */
	int ent_size = iter->ent_size;
	struct trace_entry *entry;

3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498
	/*
	 * If called from ftrace_dump(), then the iter->temp buffer
	 * will be the static_temp_buf and not created from kmalloc.
	 * If the entry size is greater than the buffer, we can
	 * not save it. Just return NULL in that case. This is only
	 * used to add markers when two consecutive events' time
	 * stamps have a large delta. See trace_print_lat_context()
	 */
	if (iter->temp == static_temp_buf &&
	    STATIC_TEMP_BUF_SIZE < ent_size)
		return NULL;

3499 3500 3501 3502 3503 3504
	/*
	 * The __find_next_entry() may call peek_next_entry(), which may
	 * call ring_buffer_peek() that may make the contents of iter->ent
	 * undefined. Need to copy iter->ent now.
	 */
	if (iter->ent && iter->ent != iter->temp) {
3505 3506
		if ((!iter->temp || iter->temp_size < iter->ent_size) &&
		    !WARN_ON_ONCE(iter->temp == static_temp_buf)) {
3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520
			kfree(iter->temp);
			iter->temp = kmalloc(iter->ent_size, GFP_KERNEL);
			if (!iter->temp)
				return NULL;
		}
		memcpy(iter->temp, iter->ent, iter->ent_size);
		iter->temp_size = iter->ent_size;
		iter->ent = iter->temp;
	}
	entry = __find_next_entry(iter, ent_cpu, NULL, ent_ts);
	/* Put back the original ent_size */
	iter->ent_size = ent_size;

	return entry;
3521 3522 3523
}

/* Find the next real entry, and increment the iterator to the next entry */
3524
void *trace_find_next_entry_inc(struct trace_iterator *iter)
3525
{
3526 3527
	iter->ent = __find_next_entry(iter, &iter->cpu,
				      &iter->lost_events, &iter->ts);
3528

3529
	if (iter->ent)
3530
		trace_iterator_increment(iter);
3531

3532
	return iter->ent ? iter : NULL;
3533
}
3534

I
Ingo Molnar 已提交
3535
static void trace_consume(struct trace_iterator *iter)
3536
{
3537
	ring_buffer_consume(iter->array_buffer->buffer, iter->cpu, &iter->ts,
3538
			    &iter->lost_events);
3539 3540
}

I
Ingo Molnar 已提交
3541
static void *s_next(struct seq_file *m, void *v, loff_t *pos)
3542 3543 3544
{
	struct trace_iterator *iter = m->private;
	int i = (int)*pos;
I
Ingo Molnar 已提交
3545
	void *ent;
3546

3547 3548
	WARN_ON_ONCE(iter->leftover);

3549 3550 3551 3552 3553 3554 3555
	(*pos)++;

	/* can't go backwards */
	if (iter->idx > i)
		return NULL;

	if (iter->idx < 0)
3556
		ent = trace_find_next_entry_inc(iter);
3557 3558 3559 3560
	else
		ent = iter;

	while (ent && iter->idx < i)
3561
		ent = trace_find_next_entry_inc(iter);
3562 3563 3564 3565 3566 3567

	iter->pos = *pos;

	return ent;
}

3568
void tracing_iter_reset(struct trace_iterator *iter, int cpu)
3569 3570 3571 3572 3573 3574
{
	struct ring_buffer_event *event;
	struct ring_buffer_iter *buf_iter;
	unsigned long entries = 0;
	u64 ts;

3575
	per_cpu_ptr(iter->array_buffer->data, cpu)->skipped_entries = 0;
3576

3577 3578
	buf_iter = trace_buffer_iter(iter, cpu);
	if (!buf_iter)
3579 3580 3581 3582 3583 3584 3585 3586 3587 3588
		return;

	ring_buffer_iter_reset(buf_iter);

	/*
	 * We could have the case with the max latency tracers
	 * that a reset never took place on a cpu. This is evident
	 * by the timestamp being before the start of the buffer.
	 */
	while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
3589
		if (ts >= iter->array_buffer->time_start)
3590 3591
			break;
		entries++;
3592
		ring_buffer_iter_advance(buf_iter);
3593 3594
	}

3595
	per_cpu_ptr(iter->array_buffer->data, cpu)->skipped_entries = entries;
3596 3597
}

3598 3599 3600 3601
/*
 * The current tracer is copied to avoid a global locking
 * all around.
 */
3602 3603 3604
static void *s_start(struct seq_file *m, loff_t *pos)
{
	struct trace_iterator *iter = m->private;
3605
	struct trace_array *tr = iter->tr;
3606
	int cpu_file = iter->cpu_file;
3607 3608
	void *p = NULL;
	loff_t l = 0;
3609
	int cpu;
3610

3611 3612 3613 3614 3615 3616
	/*
	 * copy the tracer to avoid using a global lock all around.
	 * iter->trace is a copy of current_trace, the pointer to the
	 * name may be used instead of a strcmp(), as iter->trace->name
	 * will point to the same string as current_trace->name.
	 */
3617
	mutex_lock(&trace_types_lock);
3618 3619
	if (unlikely(tr->current_trace && iter->trace->name != tr->current_trace->name))
		*iter->trace = *tr->current_trace;
3620
	mutex_unlock(&trace_types_lock);
3621

3622
#ifdef CONFIG_TRACER_MAX_TRACE
3623 3624
	if (iter->snapshot && iter->trace->use_max_tr)
		return ERR_PTR(-EBUSY);
3625
#endif
3626 3627

	if (!iter->snapshot)
3628
		atomic_inc(&trace_record_taskinfo_disabled);
3629 3630 3631 3632 3633 3634

	if (*pos != iter->pos) {
		iter->ent = NULL;
		iter->cpu = 0;
		iter->idx = -1;

3635
		if (cpu_file == RING_BUFFER_ALL_CPUS) {
3636
			for_each_tracing_cpu(cpu)
3637
				tracing_iter_reset(iter, cpu);
3638
		} else
3639
			tracing_iter_reset(iter, cpu_file);
3640

3641
		iter->leftover = 0;
3642 3643 3644 3645
		for (p = iter; p && l < *pos; p = s_next(m, p, &l))
			;

	} else {
3646 3647 3648 3649 3650 3651 3652 3653 3654 3655
		/*
		 * If we overflowed the seq_file before, then we want
		 * to just reuse the trace_seq buffer again.
		 */
		if (iter->leftover)
			p = iter;
		else {
			l = *pos - 1;
			p = s_next(m, p, &l);
		}
3656 3657
	}

3658
	trace_event_read_lock();
3659
	trace_access_lock(cpu_file);
3660 3661 3662 3663 3664
	return p;
}

static void s_stop(struct seq_file *m, void *p)
{
3665 3666
	struct trace_iterator *iter = m->private;

3667
#ifdef CONFIG_TRACER_MAX_TRACE
3668 3669
	if (iter->snapshot && iter->trace->use_max_tr)
		return;
3670
#endif
3671 3672

	if (!iter->snapshot)
3673
		atomic_dec(&trace_record_taskinfo_disabled);
3674

3675
	trace_access_unlock(iter->cpu_file);
3676
	trace_event_read_unlock();
3677 3678
}

3679
static void
3680
get_total_entries_cpu(struct array_buffer *buf, unsigned long *total,
3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700
		      unsigned long *entries, int cpu)
{
	unsigned long count;

	count = ring_buffer_entries_cpu(buf->buffer, cpu);
	/*
	 * If this buffer has skipped entries, then we hold all
	 * entries for the trace and we need to ignore the
	 * ones before the time stamp.
	 */
	if (per_cpu_ptr(buf->data, cpu)->skipped_entries) {
		count -= per_cpu_ptr(buf->data, cpu)->skipped_entries;
		/* total is the same as the entries */
		*total = count;
	} else
		*total = count +
			ring_buffer_overrun_cpu(buf->buffer, cpu);
	*entries = count;
}

3701
static void
3702
get_total_entries(struct array_buffer *buf,
3703
		  unsigned long *total, unsigned long *entries)
3704
{
3705
	unsigned long t, e;
3706 3707 3708 3709 3710 3711
	int cpu;

	*total = 0;
	*entries = 0;

	for_each_tracing_cpu(cpu) {
3712 3713 3714
		get_total_entries_cpu(buf, &t, &e, cpu);
		*total += t;
		*entries += e;
3715 3716 3717
	}
}

3718 3719 3720 3721 3722 3723 3724
unsigned long trace_total_entries_cpu(struct trace_array *tr, int cpu)
{
	unsigned long total, entries;

	if (!tr)
		tr = &global_trace;

3725
	get_total_entries_cpu(&tr->array_buffer, &total, &entries, cpu);
3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736

	return entries;
}

unsigned long trace_total_entries(struct trace_array *tr)
{
	unsigned long total, entries;

	if (!tr)
		tr = &global_trace;

3737
	get_total_entries(&tr->array_buffer, &total, &entries);
3738 3739 3740 3741

	return entries;
}

I
Ingo Molnar 已提交
3742
static void print_lat_help_header(struct seq_file *m)
3743
{
3744 3745 3746 3747 3748 3749 3750 3751
	seq_puts(m, "#                  _------=> CPU#            \n"
		    "#                 / _-----=> irqs-off        \n"
		    "#                | / _----=> need-resched    \n"
		    "#                || / _---=> hardirq/softirq \n"
		    "#                ||| / _--=> preempt-depth   \n"
		    "#                |||| /     delay            \n"
		    "#  cmd     pid   ||||| time  |   caller      \n"
		    "#     \\   /      |||||  \\    |   /         \n");
3752 3753
}

3754
static void print_event_info(struct array_buffer *buf, struct seq_file *m)
3755
{
3756 3757 3758
	unsigned long total;
	unsigned long entries;

3759
	get_total_entries(buf, &total, &entries);
3760 3761 3762 3763 3764
	seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu   #P:%d\n",
		   entries, total, num_online_cpus());
	seq_puts(m, "#\n");
}

3765
static void print_func_help_header(struct array_buffer *buf, struct seq_file *m,
3766
				   unsigned int flags)
3767
{
3768 3769
	bool tgid = flags & TRACE_ITER_RECORD_TGID;

3770
	print_event_info(buf, m);
3771

3772 3773
	seq_printf(m, "#           TASK-PID   %s  CPU#   TIMESTAMP  FUNCTION\n", tgid ? "TGID     " : "");
	seq_printf(m, "#              | |     %s    |       |         |\n",	 tgid ? "  |      " : "");
3774 3775
}

3776
static void print_func_help_header_irq(struct array_buffer *buf, struct seq_file *m,
3777
				       unsigned int flags)
3778
{
3779
	bool tgid = flags & TRACE_ITER_RECORD_TGID;
3780 3781
	const char *space = "          ";
	int prec = tgid ? 10 : 2;
3782

3783 3784
	print_event_info(buf, m);

3785 3786 3787 3788 3789 3790 3791
	seq_printf(m, "#                          %.*s  _-----=> irqs-off\n", prec, space);
	seq_printf(m, "#                          %.*s / _----=> need-resched\n", prec, space);
	seq_printf(m, "#                          %.*s| / _---=> hardirq/softirq\n", prec, space);
	seq_printf(m, "#                          %.*s|| / _--=> preempt-depth\n", prec, space);
	seq_printf(m, "#                          %.*s||| /     delay\n", prec, space);
	seq_printf(m, "#           TASK-PID %.*sCPU#  ||||    TIMESTAMP  FUNCTION\n", prec, "   TGID   ");
	seq_printf(m, "#              | |   %.*s  |   ||||       |         |\n", prec, "     |    ");
3792
}
3793

3794
void
3795 3796
print_trace_header(struct seq_file *m, struct trace_iterator *iter)
{
3797
	unsigned long sym_flags = (global_trace.trace_flags & TRACE_ITER_SYM_MASK);
3798
	struct array_buffer *buf = iter->array_buffer;
3799
	struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu);
3800
	struct tracer *type = iter->trace;
3801 3802
	unsigned long entries;
	unsigned long total;
3803 3804
	const char *name = "preemption";

3805
	name = type->name;
3806

3807
	get_total_entries(buf, &total, &entries);
3808

3809
	seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
3810
		   name, UTS_RELEASE);
3811
	seq_puts(m, "# -----------------------------------"
3812
		 "---------------------------------\n");
3813
	seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
3814
		   " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
S
Steven Rostedt 已提交
3815
		   nsecs_to_usecs(data->saved_latency),
3816
		   entries,
3817
		   total,
3818
		   buf->cpu,
3819 3820 3821 3822
#if defined(CONFIG_PREEMPT_NONE)
		   "server",
#elif defined(CONFIG_PREEMPT_VOLUNTARY)
		   "desktop",
3823
#elif defined(CONFIG_PREEMPT)
3824
		   "preempt",
3825 3826
#elif defined(CONFIG_PREEMPT_RT)
		   "preempt_rt",
3827 3828 3829 3830 3831 3832 3833 3834 3835 3836
#else
		   "unknown",
#endif
		   /* These are reserved for later use */
		   0, 0, 0, 0);
#ifdef CONFIG_SMP
	seq_printf(m, " #P:%d)\n", num_online_cpus());
#else
	seq_puts(m, ")\n");
#endif
3837 3838
	seq_puts(m, "#    -----------------\n");
	seq_printf(m, "#    | task: %.16s-%d "
3839
		   "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
3840 3841
		   data->comm, data->pid,
		   from_kuid_munged(seq_user_ns(m), data->uid), data->nice,
3842
		   data->policy, data->rt_priority);
3843
	seq_puts(m, "#    -----------------\n");
3844 3845

	if (data->critical_start) {
3846
		seq_puts(m, "#  => started at: ");
S
Steven Rostedt 已提交
3847 3848
		seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
		trace_print_seq(m, &iter->seq);
3849
		seq_puts(m, "\n#  => ended at:   ");
S
Steven Rostedt 已提交
3850 3851
		seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
		trace_print_seq(m, &iter->seq);
3852
		seq_puts(m, "\n#\n");
3853 3854
	}

3855
	seq_puts(m, "#\n");
3856 3857
}

3858 3859 3860
static void test_cpu_buff_start(struct trace_iterator *iter)
{
	struct trace_seq *s = &iter->seq;
3861
	struct trace_array *tr = iter->tr;
3862

3863
	if (!(tr->trace_flags & TRACE_ITER_ANNOTATE))
3864 3865 3866 3867 3868
		return;

	if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
		return;

3869 3870
	if (cpumask_available(iter->started) &&
	    cpumask_test_cpu(iter->cpu, iter->started))
3871 3872
		return;

3873
	if (per_cpu_ptr(iter->array_buffer->data, iter->cpu)->skipped_entries)
3874 3875
		return;

3876
	if (cpumask_available(iter->started))
3877
		cpumask_set_cpu(iter->cpu, iter->started);
3878 3879 3880 3881 3882

	/* Don't print started cpu buffer for the first entry of the trace */
	if (iter->idx > 1)
		trace_seq_printf(s, "##### CPU %u buffer started ####\n",
				iter->cpu);
3883 3884
}

3885
static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
3886
{
3887
	struct trace_array *tr = iter->tr;
S
Steven Rostedt 已提交
3888
	struct trace_seq *s = &iter->seq;
3889
	unsigned long sym_flags = (tr->trace_flags & TRACE_ITER_SYM_MASK);
I
Ingo Molnar 已提交
3890
	struct trace_entry *entry;
3891
	struct trace_event *event;
3892

I
Ingo Molnar 已提交
3893
	entry = iter->ent;
3894

3895 3896
	test_cpu_buff_start(iter);

3897
	event = ftrace_find_event(entry->type);
3898

3899
	if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
3900 3901 3902 3903
		if (iter->iter_flags & TRACE_FILE_LAT_FMT)
			trace_print_lat_context(iter);
		else
			trace_print_context(iter);
3904
	}
3905

3906 3907 3908
	if (trace_seq_has_overflowed(s))
		return TRACE_TYPE_PARTIAL_LINE;

3909
	if (event)
3910
		return event->funcs->trace(iter, sym_flags, event);
3911

3912
	trace_seq_printf(s, "Unknown type %d\n", entry->type);
3913

3914
	return trace_handle_return(s);
3915 3916
}

3917
static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
I
Ingo Molnar 已提交
3918
{
3919
	struct trace_array *tr = iter->tr;
I
Ingo Molnar 已提交
3920 3921
	struct trace_seq *s = &iter->seq;
	struct trace_entry *entry;
3922
	struct trace_event *event;
I
Ingo Molnar 已提交
3923 3924

	entry = iter->ent;
3925

3926
	if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO)
3927 3928 3929 3930 3931
		trace_seq_printf(s, "%d %d %llu ",
				 entry->pid, iter->cpu, iter->ts);

	if (trace_seq_has_overflowed(s))
		return TRACE_TYPE_PARTIAL_LINE;
I
Ingo Molnar 已提交
3932

3933
	event = ftrace_find_event(entry->type);
3934
	if (event)
3935
		return event->funcs->raw(iter, 0, event);
3936

3937
	trace_seq_printf(s, "%d ?\n", entry->type);
3938

3939
	return trace_handle_return(s);
I
Ingo Molnar 已提交
3940 3941
}

3942
static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
3943
{
3944
	struct trace_array *tr = iter->tr;
3945 3946 3947
	struct trace_seq *s = &iter->seq;
	unsigned char newline = '\n';
	struct trace_entry *entry;
3948
	struct trace_event *event;
3949 3950

	entry = iter->ent;
3951

3952
	if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
3953 3954 3955 3956 3957
		SEQ_PUT_HEX_FIELD(s, entry->pid);
		SEQ_PUT_HEX_FIELD(s, iter->cpu);
		SEQ_PUT_HEX_FIELD(s, iter->ts);
		if (trace_seq_has_overflowed(s))
			return TRACE_TYPE_PARTIAL_LINE;
3958
	}
3959

3960
	event = ftrace_find_event(entry->type);
3961
	if (event) {
3962
		enum print_line_t ret = event->funcs->hex(iter, 0, event);
3963 3964 3965
		if (ret != TRACE_TYPE_HANDLED)
			return ret;
	}
S
Steven Rostedt 已提交
3966

3967
	SEQ_PUT_FIELD(s, newline);
3968

3969
	return trace_handle_return(s);
3970 3971
}

3972
static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
I
Ingo Molnar 已提交
3973
{
3974
	struct trace_array *tr = iter->tr;
I
Ingo Molnar 已提交
3975 3976
	struct trace_seq *s = &iter->seq;
	struct trace_entry *entry;
3977
	struct trace_event *event;
I
Ingo Molnar 已提交
3978 3979

	entry = iter->ent;
3980

3981
	if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
3982 3983 3984 3985 3986
		SEQ_PUT_FIELD(s, entry->pid);
		SEQ_PUT_FIELD(s, iter->cpu);
		SEQ_PUT_FIELD(s, iter->ts);
		if (trace_seq_has_overflowed(s))
			return TRACE_TYPE_PARTIAL_LINE;
3987
	}
I
Ingo Molnar 已提交
3988

3989
	event = ftrace_find_event(entry->type);
3990 3991
	return event ? event->funcs->binary(iter, 0, event) :
		TRACE_TYPE_HANDLED;
I
Ingo Molnar 已提交
3992 3993
}

3994
int trace_empty(struct trace_iterator *iter)
3995
{
3996
	struct ring_buffer_iter *buf_iter;
3997 3998
	int cpu;

3999
	/* If we are looking at one CPU buffer, only check that one */
4000
	if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4001
		cpu = iter->cpu_file;
4002 4003 4004
		buf_iter = trace_buffer_iter(iter, cpu);
		if (buf_iter) {
			if (!ring_buffer_iter_empty(buf_iter))
4005 4006
				return 0;
		} else {
4007
			if (!ring_buffer_empty_cpu(iter->array_buffer->buffer, cpu))
4008 4009 4010 4011 4012
				return 0;
		}
		return 1;
	}

4013
	for_each_tracing_cpu(cpu) {
4014 4015 4016
		buf_iter = trace_buffer_iter(iter, cpu);
		if (buf_iter) {
			if (!ring_buffer_iter_empty(buf_iter))
4017 4018
				return 0;
		} else {
4019
			if (!ring_buffer_empty_cpu(iter->array_buffer->buffer, cpu))
4020 4021
				return 0;
		}
4022
	}
4023

4024
	return 1;
4025 4026
}

4027
/*  Called with trace_event_read_lock() held. */
4028
enum print_line_t print_trace_line(struct trace_iterator *iter)
I
Ingo Molnar 已提交
4029
{
4030 4031
	struct trace_array *tr = iter->tr;
	unsigned long trace_flags = tr->trace_flags;
4032 4033
	enum print_line_t ret;

4034
	if (iter->lost_events) {
4035 4036 4037 4038 4039 4040
		if (iter->lost_events == (unsigned long)-1)
			trace_seq_printf(&iter->seq, "CPU:%d [LOST EVENTS]\n",
					 iter->cpu);
		else
			trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
					 iter->cpu, iter->lost_events);
4041 4042 4043
		if (trace_seq_has_overflowed(&iter->seq))
			return TRACE_TYPE_PARTIAL_LINE;
	}
4044

4045 4046 4047 4048 4049
	if (iter->trace && iter->trace->print_line) {
		ret = iter->trace->print_line(iter);
		if (ret != TRACE_TYPE_UNHANDLED)
			return ret;
	}
4050

4051 4052 4053 4054 4055
	if (iter->ent->type == TRACE_BPUTS &&
			trace_flags & TRACE_ITER_PRINTK &&
			trace_flags & TRACE_ITER_PRINTK_MSGONLY)
		return trace_print_bputs_msg_only(iter);

4056 4057 4058
	if (iter->ent->type == TRACE_BPRINT &&
			trace_flags & TRACE_ITER_PRINTK &&
			trace_flags & TRACE_ITER_PRINTK_MSGONLY)
4059
		return trace_print_bprintk_msg_only(iter);
4060

4061 4062 4063
	if (iter->ent->type == TRACE_PRINT &&
			trace_flags & TRACE_ITER_PRINTK &&
			trace_flags & TRACE_ITER_PRINTK_MSGONLY)
4064
		return trace_print_printk_msg_only(iter);
4065

I
Ingo Molnar 已提交
4066 4067 4068
	if (trace_flags & TRACE_ITER_BIN)
		return print_bin_fmt(iter);

4069 4070 4071
	if (trace_flags & TRACE_ITER_HEX)
		return print_hex_fmt(iter);

I
Ingo Molnar 已提交
4072 4073 4074 4075 4076 4077
	if (trace_flags & TRACE_ITER_RAW)
		return print_raw_fmt(iter);

	return print_trace_fmt(iter);
}

4078 4079 4080
void trace_latency_header(struct seq_file *m)
{
	struct trace_iterator *iter = m->private;
4081
	struct trace_array *tr = iter->tr;
4082 4083 4084 4085 4086 4087 4088 4089

	/* print nothing if the buffers are empty */
	if (trace_empty(iter))
		return;

	if (iter->iter_flags & TRACE_FILE_LAT_FMT)
		print_trace_header(m, iter);

4090
	if (!(tr->trace_flags & TRACE_ITER_VERBOSE))
4091 4092 4093
		print_lat_help_header(m);
}

4094 4095 4096
void trace_default_header(struct seq_file *m)
{
	struct trace_iterator *iter = m->private;
4097 4098
	struct trace_array *tr = iter->tr;
	unsigned long trace_flags = tr->trace_flags;
4099

4100 4101 4102
	if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
		return;

4103 4104 4105 4106 4107 4108 4109 4110
	if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
		/* print nothing if the buffers are empty */
		if (trace_empty(iter))
			return;
		print_trace_header(m, iter);
		if (!(trace_flags & TRACE_ITER_VERBOSE))
			print_lat_help_header(m);
	} else {
4111 4112
		if (!(trace_flags & TRACE_ITER_VERBOSE)) {
			if (trace_flags & TRACE_ITER_IRQ_INFO)
4113
				print_func_help_header_irq(iter->array_buffer,
4114
							   m, trace_flags);
4115
			else
4116
				print_func_help_header(iter->array_buffer, m,
4117
						       trace_flags);
4118
		}
4119 4120 4121
	}
}

4122 4123 4124 4125
static void test_ftrace_alive(struct seq_file *m)
{
	if (!ftrace_is_dead())
		return;
4126 4127
	seq_puts(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n"
		    "#          MAY BE MISSING FUNCTION EVENTS\n");
4128 4129
}

4130
#ifdef CONFIG_TRACER_MAX_TRACE
4131
static void show_snapshot_main_help(struct seq_file *m)
4132
{
4133 4134 4135 4136 4137 4138
	seq_puts(m, "# echo 0 > snapshot : Clears and frees snapshot buffer\n"
		    "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"
		    "#                      Takes a snapshot of the main buffer.\n"
		    "# echo 2 > snapshot : Clears snapshot buffer (but does not allocate or free)\n"
		    "#                      (Doesn't have to be '2' works with any number that\n"
		    "#                       is not a '0' or '1')\n");
4139
}
4140 4141 4142

static void show_snapshot_percpu_help(struct seq_file *m)
{
4143
	seq_puts(m, "# echo 0 > snapshot : Invalid for per_cpu snapshot file.\n");
4144
#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
4145 4146
	seq_puts(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"
		    "#                      Takes a snapshot of the main buffer for this cpu.\n");
4147
#else
4148 4149
	seq_puts(m, "# echo 1 > snapshot : Not supported with this kernel.\n"
		    "#                     Must use main snapshot file to allocate.\n");
4150
#endif
4151 4152 4153
	seq_puts(m, "# echo 2 > snapshot : Clears this cpu's snapshot buffer (but does not allocate)\n"
		    "#                      (Doesn't have to be '2' works with any number that\n"
		    "#                       is not a '0' or '1')\n");
4154 4155
}

4156 4157
static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter)
{
4158
	if (iter->tr->allocated_snapshot)
4159
		seq_puts(m, "#\n# * Snapshot is allocated *\n#\n");
4160
	else
4161
		seq_puts(m, "#\n# * Snapshot is freed *\n#\n");
4162

4163
	seq_puts(m, "# Snapshot commands:\n");
4164 4165 4166 4167
	if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
		show_snapshot_main_help(m);
	else
		show_snapshot_percpu_help(m);
4168 4169 4170 4171 4172 4173
}
#else
/* Should never be called */
static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { }
#endif

4174 4175 4176
static int s_show(struct seq_file *m, void *v)
{
	struct trace_iterator *iter = v;
4177
	int ret;
4178 4179 4180 4181 4182

	if (iter->ent == NULL) {
		if (iter->tr) {
			seq_printf(m, "# tracer: %s\n", iter->trace->name);
			seq_puts(m, "#\n");
4183
			test_ftrace_alive(m);
4184
		}
4185 4186 4187
		if (iter->snapshot && trace_empty(iter))
			print_snapshot_help(m, iter);
		else if (iter->trace && iter->trace->print_header)
4188
			iter->trace->print_header(m);
4189 4190 4191
		else
			trace_default_header(m);

4192 4193 4194 4195 4196 4197 4198 4199 4200 4201
	} else if (iter->leftover) {
		/*
		 * If we filled the seq_file buffer earlier, we
		 * want to just show it now.
		 */
		ret = trace_print_seq(m, &iter->seq);

		/* ret should this time be zero, but you never know */
		iter->leftover = ret;

4202
	} else {
I
Ingo Molnar 已提交
4203
		print_trace_line(iter);
4204 4205 4206 4207 4208 4209 4210 4211 4212
		ret = trace_print_seq(m, &iter->seq);
		/*
		 * If we overflow the seq_file buffer, then it will
		 * ask us for this data again at start up.
		 * Use that instead.
		 *  ret is 0 if seq_file write succeeded.
		 *        -1 otherwise.
		 */
		iter->leftover = ret;
4213 4214 4215 4216 4217
	}

	return 0;
}

4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228
/*
 * Should be used after trace_array_get(), trace_types_lock
 * ensures that i_cdev was already initialized.
 */
static inline int tracing_get_cpu(struct inode *inode)
{
	if (inode->i_cdev) /* See trace_create_cpu_file() */
		return (long)inode->i_cdev - 1;
	return RING_BUFFER_ALL_CPUS;
}

J
James Morris 已提交
4229
static const struct seq_operations tracer_seq_ops = {
I
Ingo Molnar 已提交
4230 4231 4232 4233
	.start		= s_start,
	.next		= s_next,
	.stop		= s_stop,
	.show		= s_show,
4234 4235
};

I
Ingo Molnar 已提交
4236
static struct trace_iterator *
4237
__tracing_open(struct inode *inode, struct file *file, bool snapshot)
4238
{
4239
	struct trace_array *tr = inode->i_private;
4240
	struct trace_iterator *iter;
4241
	int cpu;
4242

4243 4244
	if (tracing_disabled)
		return ERR_PTR(-ENODEV);
S
Steven Rostedt 已提交
4245

4246
	iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
4247 4248
	if (!iter)
		return ERR_PTR(-ENOMEM);
4249

4250
	iter->buffer_iter = kcalloc(nr_cpu_ids, sizeof(*iter->buffer_iter),
4251
				    GFP_KERNEL);
4252 4253 4254
	if (!iter->buffer_iter)
		goto release;

4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266
	/*
	 * trace_find_next_entry() may need to save off iter->ent.
	 * It will place it into the iter->temp buffer. As most
	 * events are less than 128, allocate a buffer of that size.
	 * If one is greater, then trace_find_next_entry() will
	 * allocate a new buffer to adjust for the bigger iter->ent.
	 * It's not critical if it fails to get allocated here.
	 */
	iter->temp = kmalloc(128, GFP_KERNEL);
	if (iter->temp)
		iter->temp_size = 128;

4267 4268 4269 4270
	/*
	 * We make a copy of the current tracer to avoid concurrent
	 * changes on it while we are reading.
	 */
4271
	mutex_lock(&trace_types_lock);
4272
	iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
4273
	if (!iter->trace)
4274
		goto fail;
4275

4276
	*iter->trace = *tr->current_trace;
4277

4278
	if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
4279 4280
		goto fail;

4281 4282 4283
	iter->tr = tr;

#ifdef CONFIG_TRACER_MAX_TRACE
4284 4285
	/* Currently only the top directory has a snapshot */
	if (tr->current_trace->print_max || snapshot)
4286
		iter->array_buffer = &tr->max_buffer;
4287
	else
4288
#endif
4289
		iter->array_buffer = &tr->array_buffer;
4290
	iter->snapshot = snapshot;
4291
	iter->pos = -1;
4292
	iter->cpu_file = tracing_get_cpu(inode);
4293
	mutex_init(&iter->mutex);
4294

4295
	/* Notify the tracer early; before we stop tracing. */
4296
	if (iter->trace->open)
4297
		iter->trace->open(iter);
4298

4299
	/* Annotate start of buffers if we had overruns */
4300
	if (ring_buffer_overruns(iter->array_buffer->buffer))
4301 4302
		iter->iter_flags |= TRACE_FILE_ANNOTATE;

4303
	/* Output in nanoseconds only if we are using a clock in nanoseconds. */
4304
	if (trace_clocks[tr->clock_id].in_ns)
4305 4306
		iter->iter_flags |= TRACE_FILE_TIME_IN_NS;

4307 4308 4309 4310 4311
	/*
	 * If pause-on-trace is enabled, then stop the trace while
	 * dumping, unless this is the "snapshot" file
	 */
	if (!iter->snapshot && (tr->trace_flags & TRACE_ITER_PAUSE_ON_TRACE))
4312
		tracing_stop_tr(tr);
4313

4314
	if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
4315 4316
		for_each_tracing_cpu(cpu) {
			iter->buffer_iter[cpu] =
4317
				ring_buffer_read_prepare(iter->array_buffer->buffer,
4318
							 cpu, GFP_KERNEL);
4319 4320 4321 4322
		}
		ring_buffer_read_prepare_sync();
		for_each_tracing_cpu(cpu) {
			ring_buffer_read_start(iter->buffer_iter[cpu]);
4323
			tracing_iter_reset(iter, cpu);
4324 4325 4326
		}
	} else {
		cpu = iter->cpu_file;
4327
		iter->buffer_iter[cpu] =
4328
			ring_buffer_read_prepare(iter->array_buffer->buffer,
4329
						 cpu, GFP_KERNEL);
4330 4331
		ring_buffer_read_prepare_sync();
		ring_buffer_read_start(iter->buffer_iter[cpu]);
4332
		tracing_iter_reset(iter, cpu);
4333 4334
	}

4335 4336 4337
	mutex_unlock(&trace_types_lock);

	return iter;
4338

4339
 fail:
4340
	mutex_unlock(&trace_types_lock);
4341
	kfree(iter->trace);
4342
	kfree(iter->temp);
4343
	kfree(iter->buffer_iter);
4344
release:
4345 4346
	seq_release_private(inode, file);
	return ERR_PTR(-ENOMEM);
4347 4348 4349 4350
}

int tracing_open_generic(struct inode *inode, struct file *filp)
{
4351 4352 4353 4354 4355
	int ret;

	ret = tracing_check_open_get_tr(NULL);
	if (ret)
		return ret;
S
Steven Rostedt 已提交
4356

4357 4358 4359 4360
	filp->private_data = inode->i_private;
	return 0;
}

4361 4362 4363 4364 4365
bool tracing_is_disabled(void)
{
	return (tracing_disabled) ? true: false;
}

4366 4367 4368 4369
/*
 * Open and update trace_array ref count.
 * Must have the current trace_array passed to it.
 */
4370
int tracing_open_generic_tr(struct inode *inode, struct file *filp)
4371 4372
{
	struct trace_array *tr = inode->i_private;
4373
	int ret;
4374

4375 4376 4377
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
4378 4379 4380 4381 4382 4383

	filp->private_data = inode->i_private;

	return 0;
}

4384
static int tracing_release(struct inode *inode, struct file *file)
4385
{
4386
	struct trace_array *tr = inode->i_private;
4387
	struct seq_file *m = file->private_data;
4388
	struct trace_iterator *iter;
4389
	int cpu;
4390

4391
	if (!(file->f_mode & FMODE_READ)) {
4392
		trace_array_put(tr);
4393
		return 0;
4394
	}
4395

4396
	/* Writes do not use seq_file */
4397
	iter = m->private;
4398
	mutex_lock(&trace_types_lock);
4399

4400 4401 4402 4403 4404
	for_each_tracing_cpu(cpu) {
		if (iter->buffer_iter[cpu])
			ring_buffer_read_finish(iter->buffer_iter[cpu]);
	}

4405 4406 4407
	if (iter->trace && iter->trace->close)
		iter->trace->close(iter);

4408
	if (!iter->snapshot && tr->stop_count)
4409
		/* reenable tracing if it was previously enabled */
4410
		tracing_start_tr(tr);
4411 4412 4413

	__trace_array_put(tr);

4414 4415
	mutex_unlock(&trace_types_lock);

4416
	mutex_destroy(&iter->mutex);
4417
	free_cpumask_var(iter->started);
4418
	kfree(iter->temp);
4419
	kfree(iter->trace);
4420
	kfree(iter->buffer_iter);
4421
	seq_release_private(inode, file);
4422

4423 4424 4425
	return 0;
}

4426 4427 4428 4429 4430
static int tracing_release_generic_tr(struct inode *inode, struct file *file)
{
	struct trace_array *tr = inode->i_private;

	trace_array_put(tr);
4431 4432 4433
	return 0;
}

4434 4435 4436 4437 4438 4439 4440 4441 4442
static int tracing_single_release_tr(struct inode *inode, struct file *file)
{
	struct trace_array *tr = inode->i_private;

	trace_array_put(tr);

	return single_release(inode, file);
}

4443 4444
static int tracing_open(struct inode *inode, struct file *file)
{
4445
	struct trace_array *tr = inode->i_private;
4446
	struct trace_iterator *iter;
4447
	int ret;
4448

4449 4450 4451
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
4452

4453
	/* If this file was open for write, then erase contents */
4454 4455
	if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
		int cpu = tracing_get_cpu(inode);
4456
		struct array_buffer *trace_buf = &tr->array_buffer;
4457 4458 4459 4460 4461

#ifdef CONFIG_TRACER_MAX_TRACE
		if (tr->current_trace->print_max)
			trace_buf = &tr->max_buffer;
#endif
4462 4463

		if (cpu == RING_BUFFER_ALL_CPUS)
4464
			tracing_reset_online_cpus(trace_buf);
4465
		else
4466
			tracing_reset_cpu(trace_buf, cpu);
4467
	}
4468

4469
	if (file->f_mode & FMODE_READ) {
4470
		iter = __tracing_open(inode, file, false);
4471 4472
		if (IS_ERR(iter))
			ret = PTR_ERR(iter);
4473
		else if (tr->trace_flags & TRACE_ITER_LATENCY_FMT)
4474 4475
			iter->iter_flags |= TRACE_FILE_LAT_FMT;
	}
4476 4477 4478 4479

	if (ret < 0)
		trace_array_put(tr);

4480 4481 4482
	return ret;
}

4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503
/*
 * Some tracers are not suitable for instance buffers.
 * A tracer is always available for the global array (toplevel)
 * or if it explicitly states that it is.
 */
static bool
trace_ok_for_array(struct tracer *t, struct trace_array *tr)
{
	return (tr->flags & TRACE_ARRAY_FL_GLOBAL) || t->allow_instances;
}

/* Find the next tracer that this trace array may use */
static struct tracer *
get_tracer_for_array(struct trace_array *tr, struct tracer *t)
{
	while (t && !trace_ok_for_array(t, tr))
		t = t->next;

	return t;
}

I
Ingo Molnar 已提交
4504
static void *
4505 4506
t_next(struct seq_file *m, void *v, loff_t *pos)
{
4507
	struct trace_array *tr = m->private;
L
Li Zefan 已提交
4508
	struct tracer *t = v;
4509 4510 4511 4512

	(*pos)++;

	if (t)
4513
		t = get_tracer_for_array(tr, t->next);
4514 4515 4516 4517 4518 4519

	return t;
}

static void *t_start(struct seq_file *m, loff_t *pos)
{
4520
	struct trace_array *tr = m->private;
L
Li Zefan 已提交
4521
	struct tracer *t;
4522 4523 4524
	loff_t l = 0;

	mutex_lock(&trace_types_lock);
4525 4526 4527 4528

	t = get_tracer_for_array(tr, trace_types);
	for (; t && l < *pos; t = t_next(m, t, &l))
			;
4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544

	return t;
}

static void t_stop(struct seq_file *m, void *p)
{
	mutex_unlock(&trace_types_lock);
}

static int t_show(struct seq_file *m, void *v)
{
	struct tracer *t = v;

	if (!t)
		return 0;

4545
	seq_puts(m, t->name);
4546 4547 4548 4549 4550 4551 4552 4553
	if (t->next)
		seq_putc(m, ' ');
	else
		seq_putc(m, '\n');

	return 0;
}

J
James Morris 已提交
4554
static const struct seq_operations show_traces_seq_ops = {
I
Ingo Molnar 已提交
4555 4556 4557 4558
	.start		= t_start,
	.next		= t_next,
	.stop		= t_stop,
	.show		= t_show,
4559 4560 4561 4562
};

static int show_traces_open(struct inode *inode, struct file *file)
{
4563 4564 4565 4566
	struct trace_array *tr = inode->i_private;
	struct seq_file *m;
	int ret;

4567 4568 4569
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
4570

4571
	ret = seq_open(file, &show_traces_seq_ops);
4572 4573
	if (ret) {
		trace_array_put(tr);
4574
		return ret;
4575
	}
4576 4577 4578 4579 4580

	m = file->private_data;
	m->private = tr;

	return 0;
4581 4582
}

4583 4584 4585 4586 4587 4588 4589 4590
static int show_traces_release(struct inode *inode, struct file *file)
{
	struct trace_array *tr = inode->i_private;

	trace_array_put(tr);
	return seq_release(inode, file);
}

4591 4592 4593 4594 4595 4596 4597
static ssize_t
tracing_write_stub(struct file *filp, const char __user *ubuf,
		   size_t count, loff_t *ppos)
{
	return count;
}

4598
loff_t tracing_lseek(struct file *file, loff_t offset, int whence)
4599
{
4600 4601
	int ret;

4602
	if (file->f_mode & FMODE_READ)
4603
		ret = seq_lseek(file, offset, whence);
4604
	else
4605 4606 4607
		file->f_pos = ret = 0;

	return ret;
4608 4609
}

4610
static const struct file_operations tracing_fops = {
I
Ingo Molnar 已提交
4611 4612
	.open		= tracing_open,
	.read		= seq_read,
4613
	.write		= tracing_write_stub,
4614
	.llseek		= tracing_lseek,
I
Ingo Molnar 已提交
4615
	.release	= tracing_release,
4616 4617
};

4618
static const struct file_operations show_traces_fops = {
I
Ingo Molnar 已提交
4619 4620
	.open		= show_traces_open,
	.read		= seq_read,
4621
	.llseek		= seq_lseek,
4622
	.release	= show_traces_release,
I
Ingo Molnar 已提交
4623 4624 4625 4626 4627 4628
};

static ssize_t
tracing_cpumask_read(struct file *filp, char __user *ubuf,
		     size_t count, loff_t *ppos)
{
4629
	struct trace_array *tr = file_inode(filp)->i_private;
4630
	char *mask_str;
4631
	int len;
I
Ingo Molnar 已提交
4632

4633 4634 4635 4636 4637
	len = snprintf(NULL, 0, "%*pb\n",
		       cpumask_pr_args(tr->tracing_cpumask)) + 1;
	mask_str = kmalloc(len, GFP_KERNEL);
	if (!mask_str)
		return -ENOMEM;
4638

4639
	len = snprintf(mask_str, len, "%*pb\n",
4640 4641
		       cpumask_pr_args(tr->tracing_cpumask));
	if (len >= count) {
4642 4643 4644
		count = -EINVAL;
		goto out_err;
	}
4645
	count = simple_read_from_buffer(ubuf, count, ppos, mask_str, len);
4646 4647

out_err:
4648
	kfree(mask_str);
I
Ingo Molnar 已提交
4649 4650 4651 4652

	return count;
}

4653 4654
int tracing_set_cpumask(struct trace_array *tr,
			cpumask_var_t tracing_cpumask_new)
I
Ingo Molnar 已提交
4655
{
4656
	int cpu;
I
Ingo Molnar 已提交
4657

4658 4659
	if (!tr)
		return -EINVAL;
4660

4661
	local_irq_disable();
4662
	arch_spin_lock(&tr->max_lock);
4663
	for_each_tracing_cpu(cpu) {
4664 4665 4666 4667
		/*
		 * Increase/decrease the disabled counter if we are
		 * about to flip a bit in the cpumask:
		 */
4668
		if (cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
4669
				!cpumask_test_cpu(cpu, tracing_cpumask_new)) {
4670 4671
			atomic_inc(&per_cpu_ptr(tr->array_buffer.data, cpu)->disabled);
			ring_buffer_record_disable_cpu(tr->array_buffer.buffer, cpu);
4672
		}
4673
		if (!cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
4674
				cpumask_test_cpu(cpu, tracing_cpumask_new)) {
4675 4676
			atomic_dec(&per_cpu_ptr(tr->array_buffer.data, cpu)->disabled);
			ring_buffer_record_enable_cpu(tr->array_buffer.buffer, cpu);
4677 4678
		}
	}
4679
	arch_spin_unlock(&tr->max_lock);
4680
	local_irq_enable();
4681

4682
	cpumask_copy(tr->tracing_cpumask, tracing_cpumask_new);
4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705

	return 0;
}

static ssize_t
tracing_cpumask_write(struct file *filp, const char __user *ubuf,
		      size_t count, loff_t *ppos)
{
	struct trace_array *tr = file_inode(filp)->i_private;
	cpumask_var_t tracing_cpumask_new;
	int err;

	if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
		return -ENOMEM;

	err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
	if (err)
		goto err_free;

	err = tracing_set_cpumask(tr, tracing_cpumask_new);
	if (err)
		goto err_free;

4706
	free_cpumask_var(tracing_cpumask_new);
I
Ingo Molnar 已提交
4707 4708

	return count;
4709

4710
err_free:
4711
	free_cpumask_var(tracing_cpumask_new);
4712 4713

	return err;
I
Ingo Molnar 已提交
4714 4715
}

4716
static const struct file_operations tracing_cpumask_fops = {
4717
	.open		= tracing_open_generic_tr,
I
Ingo Molnar 已提交
4718 4719
	.read		= tracing_cpumask_read,
	.write		= tracing_cpumask_write,
4720
	.release	= tracing_release_generic_tr,
4721
	.llseek		= generic_file_llseek,
4722 4723
};

L
Li Zefan 已提交
4724
static int tracing_trace_options_show(struct seq_file *m, void *v)
4725
{
4726
	struct tracer_opt *trace_opts;
4727
	struct trace_array *tr = m->private;
4728 4729
	u32 tracer_flags;
	int i;
4730

4731
	mutex_lock(&trace_types_lock);
4732 4733
	tracer_flags = tr->current_trace->flags->val;
	trace_opts = tr->current_trace->flags->opts;
4734

4735
	for (i = 0; trace_options[i]; i++) {
4736
		if (tr->trace_flags & (1 << i))
L
Li Zefan 已提交
4737
			seq_printf(m, "%s\n", trace_options[i]);
4738
		else
L
Li Zefan 已提交
4739
			seq_printf(m, "no%s\n", trace_options[i]);
4740 4741
	}

4742 4743
	for (i = 0; trace_opts[i].name; i++) {
		if (tracer_flags & trace_opts[i].bit)
L
Li Zefan 已提交
4744
			seq_printf(m, "%s\n", trace_opts[i].name);
4745
		else
L
Li Zefan 已提交
4746
			seq_printf(m, "no%s\n", trace_opts[i].name);
4747
	}
4748
	mutex_unlock(&trace_types_lock);
4749

L
Li Zefan 已提交
4750
	return 0;
4751 4752
}

4753
static int __set_tracer_option(struct trace_array *tr,
L
Li Zefan 已提交
4754 4755 4756
			       struct tracer_flags *tracer_flags,
			       struct tracer_opt *opts, int neg)
{
4757
	struct tracer *trace = tracer_flags->trace;
L
Li Zefan 已提交
4758
	int ret;
4759

4760
	ret = trace->set_flag(tr, tracer_flags->val, opts->bit, !neg);
L
Li Zefan 已提交
4761 4762 4763 4764 4765 4766 4767 4768
	if (ret)
		return ret;

	if (neg)
		tracer_flags->val &= ~opts->bit;
	else
		tracer_flags->val |= opts->bit;
	return 0;
4769 4770
}

4771
/* Try to assign a tracer specific option */
4772
static int set_tracer_option(struct trace_array *tr, char *cmp, int neg)
4773
{
4774
	struct tracer *trace = tr->current_trace;
4775
	struct tracer_flags *tracer_flags = trace->flags;
4776
	struct tracer_opt *opts = NULL;
L
Li Zefan 已提交
4777
	int i;
4778

4779 4780
	for (i = 0; tracer_flags->opts[i].name; i++) {
		opts = &tracer_flags->opts[i];
4781

L
Li Zefan 已提交
4782
		if (strcmp(cmp, opts->name) == 0)
4783
			return __set_tracer_option(tr, trace->flags, opts, neg);
4784 4785
	}

L
Li Zefan 已提交
4786
	return -EINVAL;
4787 4788
}

4789 4790 4791 4792 4793 4794 4795 4796 4797
/* Some tracers require overwrite to stay enabled */
int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set)
{
	if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set)
		return -1;

	return 0;
}

4798
int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
4799
{
4800 4801 4802 4803
	if ((mask == TRACE_ITER_RECORD_TGID) ||
	    (mask == TRACE_ITER_RECORD_CMD))
		lockdep_assert_held(&event_mutex);

4804
	/* do nothing if flag is already set */
4805
	if (!!(tr->trace_flags & mask) == !!enabled)
4806 4807 4808
		return 0;

	/* Give the tracer a chance to approve the change */
4809
	if (tr->current_trace->flag_changed)
4810
		if (tr->current_trace->flag_changed(tr, mask, !!enabled))
4811
			return -EINVAL;
4812 4813

	if (enabled)
4814
		tr->trace_flags |= mask;
4815
	else
4816
		tr->trace_flags &= ~mask;
4817 4818 4819

	if (mask == TRACE_ITER_RECORD_CMD)
		trace_event_enable_cmd_record(enabled);
4820

4821 4822
	if (mask == TRACE_ITER_RECORD_TGID) {
		if (!tgid_map)
4823
			tgid_map = kvcalloc(PID_MAX_DEFAULT + 1,
K
Kees Cook 已提交
4824
					   sizeof(*tgid_map),
4825 4826 4827 4828 4829 4830 4831 4832 4833
					   GFP_KERNEL);
		if (!tgid_map) {
			tr->trace_flags &= ~TRACE_ITER_RECORD_TGID;
			return -ENOMEM;
		}

		trace_event_enable_tgid_record(enabled);
	}

4834 4835 4836
	if (mask == TRACE_ITER_EVENT_FORK)
		trace_event_follow_fork(tr, enabled);

4837 4838 4839
	if (mask == TRACE_ITER_FUNC_FORK)
		ftrace_pid_follow_fork(tr, enabled);

4840
	if (mask == TRACE_ITER_OVERWRITE) {
4841
		ring_buffer_change_overwrite(tr->array_buffer.buffer, enabled);
4842
#ifdef CONFIG_TRACER_MAX_TRACE
4843
		ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled);
4844 4845
#endif
	}
4846

4847
	if (mask == TRACE_ITER_PRINTK) {
4848
		trace_printk_start_stop_comm(enabled);
4849 4850
		trace_printk_control(enabled);
	}
4851 4852

	return 0;
4853 4854
}

4855
int trace_set_options(struct trace_array *tr, char *option)
4856
{
L
Li Zefan 已提交
4857
	char *cmp;
4858
	int neg = 0;
4859
	int ret;
4860
	size_t orig_len = strlen(option);
4861
	int len;
4862

4863
	cmp = strstrip(option);
4864

4865 4866
	len = str_has_prefix(cmp, "no");
	if (len)
4867
		neg = 1;
4868 4869

	cmp += len;
4870

4871
	mutex_lock(&event_mutex);
4872 4873
	mutex_lock(&trace_types_lock);

4874
	ret = match_string(trace_options, -1, cmp);
4875
	/* If no option could be set, test the specific tracer options */
4876
	if (ret < 0)
4877
		ret = set_tracer_option(tr, cmp, neg);
4878 4879
	else
		ret = set_tracer_flag(tr, 1 << ret, !neg);
4880 4881

	mutex_unlock(&trace_types_lock);
4882
	mutex_unlock(&event_mutex);
4883

4884 4885 4886 4887 4888 4889 4890
	/*
	 * If the first trailing whitespace is replaced with '\0' by strstrip,
	 * turn it back into a space.
	 */
	if (orig_len > strlen(option))
		option[strlen(option)] = ' ';

4891 4892 4893
	return ret;
}

4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904
static void __init apply_trace_boot_options(void)
{
	char *buf = trace_boot_options_buf;
	char *option;

	while (true) {
		option = strsep(&buf, ",");

		if (!option)
			break;

4905 4906
		if (*option)
			trace_set_options(&global_trace, option);
4907 4908 4909 4910 4911 4912 4913

		/* Put back the comma to allow this to be called again */
		if (buf)
			*(buf - 1) = ',';
	}
}

4914 4915 4916 4917
static ssize_t
tracing_trace_options_write(struct file *filp, const char __user *ubuf,
			size_t cnt, loff_t *ppos)
{
4918 4919
	struct seq_file *m = filp->private_data;
	struct trace_array *tr = m->private;
4920
	char buf[64];
4921
	int ret;
4922 4923 4924 4925

	if (cnt >= sizeof(buf))
		return -EINVAL;

4926
	if (copy_from_user(buf, ubuf, cnt))
4927 4928
		return -EFAULT;

4929 4930
	buf[cnt] = 0;

4931
	ret = trace_set_options(tr, buf);
4932 4933
	if (ret < 0)
		return ret;
4934

4935
	*ppos += cnt;
4936 4937 4938 4939

	return cnt;
}

L
Li Zefan 已提交
4940 4941
static int tracing_trace_options_open(struct inode *inode, struct file *file)
{
4942
	struct trace_array *tr = inode->i_private;
4943
	int ret;
4944

4945 4946 4947
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
4948

4949 4950 4951 4952 4953
	ret = single_open(file, tracing_trace_options_show, inode->i_private);
	if (ret < 0)
		trace_array_put(tr);

	return ret;
L
Li Zefan 已提交
4954 4955
}

4956
static const struct file_operations tracing_iter_fops = {
L
Li Zefan 已提交
4957 4958 4959
	.open		= tracing_trace_options_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
4960
	.release	= tracing_single_release_tr,
4961
	.write		= tracing_trace_options_write,
4962 4963
};

I
Ingo Molnar 已提交
4964 4965
static const char readme_msg[] =
	"tracing mini-HOWTO:\n\n"
4966 4967 4968 4969 4970 4971 4972 4973
	"# echo 0 > tracing_on : quick way to disable tracing\n"
	"# echo 1 > tracing_on : quick way to re-enable tracing\n\n"
	" Important files:\n"
	"  trace\t\t\t- The static contents of the buffer\n"
	"\t\t\t  To clear the buffer write into this file: echo > trace\n"
	"  trace_pipe\t\t- A consuming read to see the contents of the buffer\n"
	"  current_tracer\t- function and latency tracers\n"
	"  available_tracers\t- list of configured tracers for current_tracer\n"
T
Tom Zanussi 已提交
4974
	"  error_log\t- error log for failed commands (that support it)\n"
4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985
	"  buffer_size_kb\t- view and modify size of per cpu buffer\n"
	"  buffer_total_size_kb  - view total size of all cpu buffers\n\n"
	"  trace_clock\t\t-change the clock used to order events\n"
	"       local:   Per cpu clock but may not be synced across CPUs\n"
	"      global:   Synced across CPUs but slows tracing down.\n"
	"     counter:   Not a clock, but just an increment\n"
	"      uptime:   Jiffy counter from time of boot\n"
	"        perf:   Same clock that perf events use\n"
#ifdef CONFIG_X86_64
	"     x86-tsc:   TSC cycle counter\n"
#endif
4986 4987 4988
	"\n  timestamp_mode\t-view the mode used to timestamp events\n"
	"       delta:   Delta difference against a buffer-wide timestamp\n"
	"    absolute:   Absolute (standalone) timestamp\n"
4989
	"\n  trace_marker\t\t- Writes into this file writes into the kernel buffer\n"
S
Steven Rostedt 已提交
4990
	"\n  trace_marker_raw\t\t- Writes into this file writes binary data into the kernel buffer\n"
4991 4992 4993 4994
	"  tracing_cpumask\t- Limit which CPUs to trace\n"
	"  instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
	"\t\t\t  Remove sub-buffer with rmdir\n"
	"  trace_options\t\t- Set format or modify how tracing happens\n"
4995
	"\t\t\t  Disable an option by prefixing 'no' to the\n"
4996
	"\t\t\t  option name\n"
4997
	"  saved_cmdlines_size\t- echo command number in here to store comm-pid list\n"
4998 4999
#ifdef CONFIG_DYNAMIC_FTRACE
	"\n  available_filter_functions - list of functions that can be filtered on\n"
5000 5001
	"  set_ftrace_filter\t- echo function name in here to only trace these\n"
	"\t\t\t  functions\n"
5002
	"\t     accepts: func_full_name or glob-matching-pattern\n"
5003 5004 5005 5006 5007 5008 5009 5010
	"\t     modules: Can select a group via module\n"
	"\t      Format: :mod:<module-name>\n"
	"\t     example: echo :mod:ext3 > set_ftrace_filter\n"
	"\t    triggers: a command to perform when function is hit\n"
	"\t      Format: <function>:<trigger>[:count]\n"
	"\t     trigger: traceon, traceoff\n"
	"\t\t      enable_event:<system>:<event>\n"
	"\t\t      disable_event:<system>:<event>\n"
5011
#ifdef CONFIG_STACKTRACE
5012
	"\t\t      stacktrace\n"
5013 5014
#endif
#ifdef CONFIG_TRACER_SNAPSHOT
5015
	"\t\t      snapshot\n"
5016
#endif
5017 5018
	"\t\t      dump\n"
	"\t\t      cpudump\n"
5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030
	"\t     example: echo do_fault:traceoff > set_ftrace_filter\n"
	"\t              echo do_trap:traceoff:3 > set_ftrace_filter\n"
	"\t     The first one will disable tracing every time do_fault is hit\n"
	"\t     The second will disable tracing at most 3 times when do_trap is hit\n"
	"\t       The first time do trap is hit and it disables tracing, the\n"
	"\t       counter will decrement to 2. If tracing is already disabled,\n"
	"\t       the counter will not decrement. It only decrements when the\n"
	"\t       trigger did work\n"
	"\t     To remove trigger without count:\n"
	"\t       echo '!<function>:<trigger> > set_ftrace_filter\n"
	"\t     To remove trigger with a count:\n"
	"\t       echo '!<function>:<trigger>:0 > set_ftrace_filter\n"
5031
	"  set_ftrace_notrace\t- echo function name in here to never trace.\n"
5032 5033 5034
	"\t    accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
	"\t    modules: Can select a group via module command :mod:\n"
	"\t    Does not accept triggers\n"
5035 5036
#endif /* CONFIG_DYNAMIC_FTRACE */
#ifdef CONFIG_FUNCTION_TRACER
5037 5038
	"  set_ftrace_pid\t- Write pid(s) to only function trace those pids\n"
	"\t\t    (function)\n"
5039 5040
	"  set_ftrace_notrace_pid\t- Write pid(s) to not function trace those pids\n"
	"\t\t    (function)\n"
5041 5042 5043
#endif
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
	"  set_graph_function\t- Trace the nested calls of a function (function_graph)\n"
5044
	"  set_graph_notrace\t- Do not trace the nested calls of a function (function_graph)\n"
5045 5046 5047
	"  max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n"
#endif
#ifdef CONFIG_TRACER_SNAPSHOT
5048 5049 5050
	"\n  snapshot\t\t- Like 'trace' but shows the content of the static\n"
	"\t\t\t  snapshot buffer. Read the contents for more\n"
	"\t\t\t  information\n"
5051
#endif
5052
#ifdef CONFIG_STACK_TRACER
5053 5054
	"  stack_trace\t\t- Shows the max stack trace when active\n"
	"  stack_max_size\t- Shows current max stack size that was traced\n"
5055 5056
	"\t\t\t  Write into this file to reset the max size (trigger a\n"
	"\t\t\t  new trace)\n"
5057
#ifdef CONFIG_DYNAMIC_FTRACE
5058 5059
	"  stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace\n"
	"\t\t\t  traces\n"
5060
#endif
5061
#endif /* CONFIG_STACK_TRACER */
5062
#ifdef CONFIG_DYNAMIC_EVENTS
5063
	"  dynamic_events\t\t- Create/append/remove/show the generic dynamic events\n"
5064 5065
	"\t\t\t  Write into this file to define/undefine new trace events.\n"
#endif
5066
#ifdef CONFIG_KPROBE_EVENTS
5067
	"  kprobe_events\t\t- Create/append/remove/show the kernel dynamic events\n"
5068 5069
	"\t\t\t  Write into this file to define/undefine new trace events.\n"
#endif
5070
#ifdef CONFIG_UPROBE_EVENTS
5071
	"  uprobe_events\t\t- Create/append/remove/show the userspace dynamic events\n"
5072 5073
	"\t\t\t  Write into this file to define/undefine new trace events.\n"
#endif
5074
#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
5075
	"\t  accepts: event-definitions (one definition per line)\n"
5076 5077
	"\t   Format: p[:[<group>/]<event>] <place> [<args>]\n"
	"\t           r[maxactive][:[<group>/]<event>] <place> [<args>]\n"
5078 5079 5080
#ifdef CONFIG_HIST_TRIGGERS
	"\t           s:[synthetic/]<event> <field> [<field>]\n"
#endif
5081
	"\t           -:[<group>/]<event>\n"
5082
#ifdef CONFIG_KPROBE_EVENTS
5083
	"\t    place: [<module>:]<symbol>[+<offset>]|<memaddr>\n"
5084
  "place (kretprobe): [<module>:]<symbol>[+<offset>]|<memaddr>\n"
5085
#endif
5086
#ifdef CONFIG_UPROBE_EVENTS
5087
  "   place (uprobe): <path>:<offset>[(ref_ctr_offset)]\n"
5088 5089 5090
#endif
	"\t     args: <name>=fetcharg[:type]\n"
	"\t fetcharg: %<register>, @<address>, @<symbol>[+|-<offset>],\n"
5091
#ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
5092
	"\t           $stack<index>, $stack, $retval, $comm, $arg<N>,\n"
5093
#else
5094
	"\t           $stack<index>, $stack, $retval, $comm,\n"
5095
#endif
5096
	"\t           +|-[u]<offset>(<fetcharg>), \\imm-value, \\\"imm-string\"\n"
5097
	"\t     type: s8/16/32/64, u8/16/32/64, x8/16/32/64, string, symbol,\n"
5098
	"\t           b<bit-width>@<bit-offset>/<container-size>, ustring,\n"
5099
	"\t           <type>\\[<array-size>\\]\n"
5100 5101 5102 5103 5104
#ifdef CONFIG_HIST_TRIGGERS
	"\t    field: <stype> <name>;\n"
	"\t    stype: u8/u16/u32/u64, s8/s16/s32/s64, pid_t,\n"
	"\t           [unsigned] char/int/long\n"
#endif
5105
#endif
5106 5107 5108
	"  events/\t\t- Directory containing all trace event subsystems:\n"
	"      enable\t\t- Write 0/1 to enable/disable tracing of all events\n"
	"  events/<system>/\t- Directory containing all trace events for <system>:\n"
5109 5110
	"      enable\t\t- Write 0/1 to enable/disable tracing of all <system>\n"
	"\t\t\t  events\n"
5111
	"      filter\t\t- If set, only events passing filter are traced\n"
5112 5113
	"  events/<system>/<event>/\t- Directory containing control files for\n"
	"\t\t\t  <event>:\n"
5114 5115 5116
	"      enable\t\t- Write 0/1 to enable/disable tracing of <event>\n"
	"      filter\t\t- If set, only events passing filter are traced\n"
	"      trigger\t\t- If set, a command to perform when event is hit\n"
5117 5118 5119 5120
	"\t    Format: <trigger>[:count][if <filter>]\n"
	"\t   trigger: traceon, traceoff\n"
	"\t            enable_event:<system>:<event>\n"
	"\t            disable_event:<system>:<event>\n"
5121 5122 5123 5124
#ifdef CONFIG_HIST_TRIGGERS
	"\t            enable_hist:<system>:<event>\n"
	"\t            disable_hist:<system>:<event>\n"
#endif
5125
#ifdef CONFIG_STACKTRACE
5126
	"\t\t    stacktrace\n"
5127 5128
#endif
#ifdef CONFIG_TRACER_SNAPSHOT
5129
	"\t\t    snapshot\n"
5130 5131 5132
#endif
#ifdef CONFIG_HIST_TRIGGERS
	"\t\t    hist (see below)\n"
5133
#endif
5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148
	"\t   example: echo traceoff > events/block/block_unplug/trigger\n"
	"\t            echo traceoff:3 > events/block/block_unplug/trigger\n"
	"\t            echo 'enable_event:kmem:kmalloc:3 if nr_rq > 1' > \\\n"
	"\t                  events/block/block_unplug/trigger\n"
	"\t   The first disables tracing every time block_unplug is hit.\n"
	"\t   The second disables tracing the first 3 times block_unplug is hit.\n"
	"\t   The third enables the kmalloc event the first 3 times block_unplug\n"
	"\t     is hit and has value of greater than 1 for the 'nr_rq' event field.\n"
	"\t   Like function triggers, the counter is only decremented if it\n"
	"\t    enabled or disabled tracing.\n"
	"\t   To remove a trigger without a count:\n"
	"\t     echo '!<trigger> > <system>/<event>/trigger\n"
	"\t   To remove a trigger with a count:\n"
	"\t     echo '!<trigger>:0 > <system>/<event>/trigger\n"
	"\t   Filters can be ignored when removing a trigger.\n"
5149 5150
#ifdef CONFIG_HIST_TRIGGERS
	"      hist trigger\t- If set, event hits are aggregated into a hash table\n"
5151
	"\t    Format: hist:keys=<field1[,field2,...]>\n"
5152
	"\t            [:values=<field1[,field2,...]>]\n"
5153
	"\t            [:sort=<field1[,field2,...]>]\n"
5154
	"\t            [:size=#entries]\n"
5155
	"\t            [:pause][:continue][:clear]\n"
5156
	"\t            [:name=histname1]\n"
5157
	"\t            [:<handler>.<action>]\n"
5158 5159
	"\t            [if <filter>]\n\n"
	"\t    When a matching event is hit, an entry is added to a hash\n"
5160 5161 5162
	"\t    table using the key(s) and value(s) named, and the value of a\n"
	"\t    sum called 'hitcount' is incremented.  Keys and values\n"
	"\t    correspond to fields in the event's format description.  Keys\n"
5163 5164 5165 5166 5167 5168 5169
	"\t    can be any field, or the special string 'stacktrace'.\n"
	"\t    Compound keys consisting of up to two fields can be specified\n"
	"\t    by the 'keys' keyword.  Values must correspond to numeric\n"
	"\t    fields.  Sort keys consisting of up to two fields can be\n"
	"\t    specified using the 'sort' keyword.  The sort direction can\n"
	"\t    be modified by appending '.descending' or '.ascending' to a\n"
	"\t    sort field.  The 'size' parameter can be used to specify more\n"
5170 5171 5172 5173
	"\t    or fewer than the default 2048 entries for the hashtable size.\n"
	"\t    If a hist trigger is given a name using the 'name' parameter,\n"
	"\t    its histogram data will be shared with other triggers of the\n"
	"\t    same name, and trigger hits will update this common data.\n\n"
5174
	"\t    Reading the 'hist' file for the event will dump the hash\n"
5175 5176
	"\t    table in its entirety to stdout.  If there are multiple hist\n"
	"\t    triggers attached to an event, there will be a table for each\n"
5177 5178 5179 5180 5181
	"\t    trigger in the output.  The table displayed for a named\n"
	"\t    trigger will be the same as any other instance having the\n"
	"\t    same name.  The default format used to display a given field\n"
	"\t    can be modified by appending any of the following modifiers\n"
	"\t    to the field name, as applicable:\n\n"
5182 5183
	"\t            .hex        display a number as a hex value\n"
	"\t            .sym        display an address as a symbol\n"
5184
	"\t            .sym-offset display an address as a symbol and offset\n"
5185
	"\t            .execname   display a common_pid as a program name\n"
5186 5187 5188
	"\t            .syscall    display a syscall id as a syscall name\n"
	"\t            .log2       display log2 value rather than raw number\n"
	"\t            .usecs      display a common_timestamp in microseconds\n\n"
5189 5190 5191 5192
	"\t    The 'pause' parameter can be used to pause an existing hist\n"
	"\t    trigger or to start a hist trigger but not log any events\n"
	"\t    until told to do so.  'continue' can be used to start or\n"
	"\t    restart a paused hist trigger.\n\n"
5193 5194 5195
	"\t    The 'clear' parameter will clear the contents of a running\n"
	"\t    hist trigger and leave its current paused/active state\n"
	"\t    unchanged.\n\n"
5196 5197
	"\t    The enable_hist and disable_hist triggers can be used to\n"
	"\t    have one event conditionally start and stop another event's\n"
5198
	"\t    already-attached hist trigger.  The syntax is analogous to\n"
5199 5200 5201 5202 5203 5204
	"\t    the enable_event and disable_event triggers.\n\n"
	"\t    Hist trigger handlers and actions are executed whenever a\n"
	"\t    a histogram entry is added or updated.  They take the form:\n\n"
	"\t        <handler>.<action>\n\n"
	"\t    The available handlers are:\n\n"
	"\t        onmatch(matching.event)  - invoke on addition or update\n"
5205 5206
	"\t        onmax(var)               - invoke if var exceeds current max\n"
	"\t        onchange(var)            - invoke action if var changes\n\n"
5207
	"\t    The available actions are:\n\n"
5208
	"\t        trace(<synthetic_event>,param list)  - generate synthetic event\n"
5209
	"\t        save(field,...)                      - save current event fields\n"
5210 5211 5212
#ifdef CONFIG_TRACER_SNAPSHOT
	"\t        snapshot()                           - snapshot the trace buffer\n"
#endif
5213
#endif
I
Ingo Molnar 已提交
5214 5215 5216 5217 5218 5219 5220 5221 5222 5223
;

static ssize_t
tracing_readme_read(struct file *filp, char __user *ubuf,
		       size_t cnt, loff_t *ppos)
{
	return simple_read_from_buffer(ubuf, cnt, ppos,
					readme_msg, strlen(readme_msg));
}

5224
static const struct file_operations tracing_readme_fops = {
I
Ingo Molnar 已提交
5225 5226
	.open		= tracing_open_generic,
	.read		= tracing_readme_read,
5227
	.llseek		= generic_file_llseek,
I
Ingo Molnar 已提交
5228 5229
};

5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285
static void *saved_tgids_next(struct seq_file *m, void *v, loff_t *pos)
{
	int *ptr = v;

	if (*pos || m->count)
		ptr++;

	(*pos)++;

	for (; ptr <= &tgid_map[PID_MAX_DEFAULT]; ptr++) {
		if (trace_find_tgid(*ptr))
			return ptr;
	}

	return NULL;
}

static void *saved_tgids_start(struct seq_file *m, loff_t *pos)
{
	void *v;
	loff_t l = 0;

	if (!tgid_map)
		return NULL;

	v = &tgid_map[0];
	while (l <= *pos) {
		v = saved_tgids_next(m, v, &l);
		if (!v)
			return NULL;
	}

	return v;
}

static void saved_tgids_stop(struct seq_file *m, void *v)
{
}

static int saved_tgids_show(struct seq_file *m, void *v)
{
	int pid = (int *)v - tgid_map;

	seq_printf(m, "%d %d\n", pid, trace_find_tgid(pid));
	return 0;
}

static const struct seq_operations tracing_saved_tgids_seq_ops = {
	.start		= saved_tgids_start,
	.stop		= saved_tgids_stop,
	.next		= saved_tgids_next,
	.show		= saved_tgids_show,
};

static int tracing_saved_tgids_open(struct inode *inode, struct file *filp)
{
5286 5287 5288 5289 5290
	int ret;

	ret = tracing_check_open_get_tr(NULL);
	if (ret)
		return ret;
5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302

	return seq_open(filp, &tracing_saved_tgids_seq_ops);
}


static const struct file_operations tracing_saved_tgids_fops = {
	.open		= tracing_saved_tgids_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release,
};

5303 5304 5305
static void *saved_cmdlines_next(struct seq_file *m, void *v, loff_t *pos)
{
	unsigned int *ptr = v;
5306

5307 5308
	if (*pos || m->count)
		ptr++;
5309

5310
	(*pos)++;
5311

5312 5313
	for (; ptr < &savedcmd->map_cmdline_to_pid[savedcmd->cmdline_num];
	     ptr++) {
5314 5315
		if (*ptr == -1 || *ptr == NO_CMDLINE_MAP)
			continue;
5316

5317 5318
		return ptr;
	}
5319

5320 5321 5322 5323 5324 5325 5326
	return NULL;
}

static void *saved_cmdlines_start(struct seq_file *m, loff_t *pos)
{
	void *v;
	loff_t l = 0;
5327

5328 5329 5330
	preempt_disable();
	arch_spin_lock(&trace_cmdline_lock);

5331
	v = &savedcmd->map_cmdline_to_pid[0];
5332 5333 5334 5335
	while (l <= *pos) {
		v = saved_cmdlines_next(m, v, &l);
		if (!v)
			return NULL;
5336 5337
	}

5338 5339 5340 5341 5342
	return v;
}

static void saved_cmdlines_stop(struct seq_file *m, void *v)
{
5343 5344
	arch_spin_unlock(&trace_cmdline_lock);
	preempt_enable();
5345
}
5346

5347 5348 5349 5350
static int saved_cmdlines_show(struct seq_file *m, void *v)
{
	char buf[TASK_COMM_LEN];
	unsigned int *pid = v;
5351

5352
	__trace_find_cmdline(*pid, buf);
5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365
	seq_printf(m, "%d %s\n", *pid, buf);
	return 0;
}

static const struct seq_operations tracing_saved_cmdlines_seq_ops = {
	.start		= saved_cmdlines_start,
	.next		= saved_cmdlines_next,
	.stop		= saved_cmdlines_stop,
	.show		= saved_cmdlines_show,
};

static int tracing_saved_cmdlines_open(struct inode *inode, struct file *filp)
{
5366 5367 5368 5369 5370
	int ret;

	ret = tracing_check_open_get_tr(NULL);
	if (ret)
		return ret;
5371 5372

	return seq_open(filp, &tracing_saved_cmdlines_seq_ops);
5373 5374 5375
}

static const struct file_operations tracing_saved_cmdlines_fops = {
5376 5377 5378 5379
	.open		= tracing_saved_cmdlines_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release,
5380 5381
};

5382 5383 5384 5385 5386 5387 5388 5389
static ssize_t
tracing_saved_cmdlines_size_read(struct file *filp, char __user *ubuf,
				 size_t cnt, loff_t *ppos)
{
	char buf[64];
	int r;

	arch_spin_lock(&trace_cmdline_lock);
5390
	r = scnprintf(buf, sizeof(buf), "%u\n", savedcmd->cmdline_num);
5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406
	arch_spin_unlock(&trace_cmdline_lock);

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
}

static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s)
{
	kfree(s->saved_cmdlines);
	kfree(s->map_cmdline_to_pid);
	kfree(s);
}

static int tracing_resize_saved_cmdlines(unsigned int val)
{
	struct saved_cmdlines_buffer *s, *savedcmd_temp;

5407
	s = kmalloc(sizeof(*s), GFP_KERNEL);
5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454
	if (!s)
		return -ENOMEM;

	if (allocate_cmdlines_buffer(val, s) < 0) {
		kfree(s);
		return -ENOMEM;
	}

	arch_spin_lock(&trace_cmdline_lock);
	savedcmd_temp = savedcmd;
	savedcmd = s;
	arch_spin_unlock(&trace_cmdline_lock);
	free_saved_cmdlines_buffer(savedcmd_temp);

	return 0;
}

static ssize_t
tracing_saved_cmdlines_size_write(struct file *filp, const char __user *ubuf,
				  size_t cnt, loff_t *ppos)
{
	unsigned long val;
	int ret;

	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
		return ret;

	/* must have at least 1 entry or less than PID_MAX_DEFAULT */
	if (!val || val > PID_MAX_DEFAULT)
		return -EINVAL;

	ret = tracing_resize_saved_cmdlines((unsigned int)val);
	if (ret < 0)
		return ret;

	*ppos += cnt;

	return cnt;
}

static const struct file_operations tracing_saved_cmdlines_size_fops = {
	.open		= tracing_open_generic,
	.read		= tracing_saved_cmdlines_size_read,
	.write		= tracing_saved_cmdlines_size_write,
};

5455
#ifdef CONFIG_TRACE_EVAL_MAP_FILE
5456
static union trace_eval_map_item *
J
Jeremy Linton 已提交
5457
update_eval_map(union trace_eval_map_item *ptr)
5458
{
5459
	if (!ptr->map.eval_string) {
5460 5461 5462 5463 5464 5465 5466 5467 5468 5469
		if (ptr->tail.next) {
			ptr = ptr->tail.next;
			/* Set ptr to the next real item (skip head) */
			ptr++;
		} else
			return NULL;
	}
	return ptr;
}

J
Jeremy Linton 已提交
5470
static void *eval_map_next(struct seq_file *m, void *v, loff_t *pos)
5471
{
5472
	union trace_eval_map_item *ptr = v;
5473 5474 5475 5476 5477

	/*
	 * Paranoid! If ptr points to end, we don't want to increment past it.
	 * This really should never happen.
	 */
5478
	(*pos)++;
J
Jeremy Linton 已提交
5479
	ptr = update_eval_map(ptr);
5480 5481 5482 5483
	if (WARN_ON_ONCE(!ptr))
		return NULL;

	ptr++;
J
Jeremy Linton 已提交
5484
	ptr = update_eval_map(ptr);
5485 5486 5487 5488

	return ptr;
}

J
Jeremy Linton 已提交
5489
static void *eval_map_start(struct seq_file *m, loff_t *pos)
5490
{
5491
	union trace_eval_map_item *v;
5492 5493
	loff_t l = 0;

5494
	mutex_lock(&trace_eval_mutex);
5495

5496
	v = trace_eval_maps;
5497 5498 5499 5500
	if (v)
		v++;

	while (v && l < *pos) {
J
Jeremy Linton 已提交
5501
		v = eval_map_next(m, v, &l);
5502 5503 5504 5505 5506
	}

	return v;
}

J
Jeremy Linton 已提交
5507
static void eval_map_stop(struct seq_file *m, void *v)
5508
{
5509
	mutex_unlock(&trace_eval_mutex);
5510 5511
}

J
Jeremy Linton 已提交
5512
static int eval_map_show(struct seq_file *m, void *v)
5513
{
5514
	union trace_eval_map_item *ptr = v;
5515 5516

	seq_printf(m, "%s %ld (%s)\n",
5517
		   ptr->map.eval_string, ptr->map.eval_value,
5518 5519 5520 5521 5522
		   ptr->map.system);

	return 0;
}

J
Jeremy Linton 已提交
5523 5524 5525 5526 5527
static const struct seq_operations tracing_eval_map_seq_ops = {
	.start		= eval_map_start,
	.next		= eval_map_next,
	.stop		= eval_map_stop,
	.show		= eval_map_show,
5528 5529
};

J
Jeremy Linton 已提交
5530
static int tracing_eval_map_open(struct inode *inode, struct file *filp)
5531
{
5532 5533 5534 5535 5536
	int ret;

	ret = tracing_check_open_get_tr(NULL);
	if (ret)
		return ret;
5537

J
Jeremy Linton 已提交
5538
	return seq_open(filp, &tracing_eval_map_seq_ops);
5539 5540
}

J
Jeremy Linton 已提交
5541 5542
static const struct file_operations tracing_eval_map_fops = {
	.open		= tracing_eval_map_open,
5543 5544 5545 5546 5547
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release,
};

5548
static inline union trace_eval_map_item *
5549
trace_eval_jmp_to_tail(union trace_eval_map_item *ptr)
5550 5551 5552 5553 5554 5555
{
	/* Return tail of array given the head */
	return ptr + ptr->head.length + 1;
}

static void
J
Jeremy Linton 已提交
5556
trace_insert_eval_map_file(struct module *mod, struct trace_eval_map **start,
5557 5558
			   int len)
{
5559 5560
	struct trace_eval_map **stop;
	struct trace_eval_map **map;
5561 5562
	union trace_eval_map_item *map_array;
	union trace_eval_map_item *ptr;
5563 5564 5565 5566

	stop = start + len;

	/*
5567
	 * The trace_eval_maps contains the map plus a head and tail item,
5568 5569 5570
	 * where the head holds the module and length of array, and the
	 * tail holds a pointer to the next list.
	 */
5571
	map_array = kmalloc_array(len + 2, sizeof(*map_array), GFP_KERNEL);
5572
	if (!map_array) {
J
Jeremy Linton 已提交
5573
		pr_warn("Unable to allocate trace eval mapping\n");
5574 5575 5576
		return;
	}

5577
	mutex_lock(&trace_eval_mutex);
5578

5579 5580
	if (!trace_eval_maps)
		trace_eval_maps = map_array;
5581
	else {
5582
		ptr = trace_eval_maps;
5583
		for (;;) {
5584
			ptr = trace_eval_jmp_to_tail(ptr);
5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601
			if (!ptr->tail.next)
				break;
			ptr = ptr->tail.next;

		}
		ptr->tail.next = map_array;
	}
	map_array->head.mod = mod;
	map_array->head.length = len;
	map_array++;

	for (map = start; (unsigned long)map < (unsigned long)stop; map++) {
		map_array->map = **map;
		map_array++;
	}
	memset(map_array, 0, sizeof(*map_array));

5602
	mutex_unlock(&trace_eval_mutex);
5603 5604
}

J
Jeremy Linton 已提交
5605
static void trace_create_eval_file(struct dentry *d_tracer)
5606
{
5607
	trace_create_file("eval_map", 0444, d_tracer,
J
Jeremy Linton 已提交
5608
			  NULL, &tracing_eval_map_fops);
5609 5610
}

5611
#else /* CONFIG_TRACE_EVAL_MAP_FILE */
J
Jeremy Linton 已提交
5612 5613
static inline void trace_create_eval_file(struct dentry *d_tracer) { }
static inline void trace_insert_eval_map_file(struct module *mod,
5614
			      struct trace_eval_map **start, int len) { }
5615
#endif /* !CONFIG_TRACE_EVAL_MAP_FILE */
5616

J
Jeremy Linton 已提交
5617
static void trace_insert_eval_map(struct module *mod,
5618
				  struct trace_eval_map **start, int len)
5619
{
5620
	struct trace_eval_map **map;
5621 5622 5623 5624 5625 5626

	if (len <= 0)
		return;

	map = start;

J
Jeremy Linton 已提交
5627
	trace_event_eval_update(map, len);
5628

J
Jeremy Linton 已提交
5629
	trace_insert_eval_map_file(mod, start, len);
5630 5631
}

5632 5633 5634 5635
static ssize_t
tracing_set_trace_read(struct file *filp, char __user *ubuf,
		       size_t cnt, loff_t *ppos)
{
5636
	struct trace_array *tr = filp->private_data;
L
Li Zefan 已提交
5637
	char buf[MAX_TRACER_SIZE+2];
5638 5639 5640
	int r;

	mutex_lock(&trace_types_lock);
5641
	r = sprintf(buf, "%s\n", tr->current_trace->name);
5642 5643
	mutex_unlock(&trace_types_lock);

I
Ingo Molnar 已提交
5644
	return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5645 5646
}

5647 5648
int tracer_init(struct tracer *t, struct trace_array *tr)
{
5649
	tracing_reset_online_cpus(&tr->array_buffer);
5650 5651 5652
	return t->init(tr);
}

5653
static void set_buffer_entries(struct array_buffer *buf, unsigned long val)
5654 5655
{
	int cpu;
5656

5657
	for_each_tracing_cpu(cpu)
5658
		per_cpu_ptr(buf->data, cpu)->entries = val;
5659 5660
}

5661
#ifdef CONFIG_TRACER_MAX_TRACE
5662
/* resize @tr's buffer to the size of @size_tr's entries */
5663 5664
static int resize_buffer_duplicate_size(struct array_buffer *trace_buf,
					struct array_buffer *size_buf, int cpu_id)
5665 5666 5667 5668 5669
{
	int cpu, ret = 0;

	if (cpu_id == RING_BUFFER_ALL_CPUS) {
		for_each_tracing_cpu(cpu) {
5670 5671
			ret = ring_buffer_resize(trace_buf->buffer,
				 per_cpu_ptr(size_buf->data, cpu)->entries, cpu);
5672 5673
			if (ret < 0)
				break;
5674 5675
			per_cpu_ptr(trace_buf->data, cpu)->entries =
				per_cpu_ptr(size_buf->data, cpu)->entries;
5676 5677
		}
	} else {
5678 5679
		ret = ring_buffer_resize(trace_buf->buffer,
				 per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id);
5680
		if (ret == 0)
5681 5682
			per_cpu_ptr(trace_buf->data, cpu_id)->entries =
				per_cpu_ptr(size_buf->data, cpu_id)->entries;
5683 5684 5685 5686
	}

	return ret;
}
5687
#endif /* CONFIG_TRACER_MAX_TRACE */
5688

5689 5690
static int __tracing_resize_ring_buffer(struct trace_array *tr,
					unsigned long size, int cpu)
5691 5692 5693 5694 5695
{
	int ret;

	/*
	 * If kernel or user changes the size of the ring buffer
5696 5697
	 * we use the size that was given, and we can forget about
	 * expanding it later.
5698
	 */
5699
	ring_buffer_expanded = true;
5700

5701
	/* May be called before buffers are initialized */
5702
	if (!tr->array_buffer.buffer)
5703 5704
		return 0;

5705
	ret = ring_buffer_resize(tr->array_buffer.buffer, size, cpu);
5706 5707 5708
	if (ret < 0)
		return ret;

5709
#ifdef CONFIG_TRACER_MAX_TRACE
5710 5711
	if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) ||
	    !tr->current_trace->use_max_tr)
5712 5713
		goto out;

5714
	ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu);
5715
	if (ret < 0) {
5716 5717
		int r = resize_buffer_duplicate_size(&tr->array_buffer,
						     &tr->array_buffer, cpu);
5718
		if (r < 0) {
5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732
			/*
			 * AARGH! We are left with different
			 * size max buffer!!!!
			 * The max buffer is our "snapshot" buffer.
			 * When a tracer needs a snapshot (one of the
			 * latency tracers), it swaps the max buffer
			 * with the saved snap shot. We succeeded to
			 * update the size of the main buffer, but failed to
			 * update the size of the max buffer. But when we tried
			 * to reset the main buffer to the original size, we
			 * failed there too. This is very unlikely to
			 * happen, but if it does, warn and kill all
			 * tracing.
			 */
5733 5734 5735 5736 5737 5738
			WARN_ON(1);
			tracing_disabled = 1;
		}
		return ret;
	}

5739
	if (cpu == RING_BUFFER_ALL_CPUS)
5740
		set_buffer_entries(&tr->max_buffer, size);
5741
	else
5742
		per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size;
5743

5744
 out:
5745 5746
#endif /* CONFIG_TRACER_MAX_TRACE */

5747
	if (cpu == RING_BUFFER_ALL_CPUS)
5748
		set_buffer_entries(&tr->array_buffer, size);
5749
	else
5750
		per_cpu_ptr(tr->array_buffer.data, cpu)->entries = size;
5751 5752 5753 5754

	return ret;
}

5755 5756
ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
				  unsigned long size, int cpu_id)
5757
{
5758
	int ret = size;
5759 5760 5761

	mutex_lock(&trace_types_lock);

5762 5763 5764 5765 5766 5767 5768
	if (cpu_id != RING_BUFFER_ALL_CPUS) {
		/* make sure, this cpu is enabled in the mask */
		if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) {
			ret = -EINVAL;
			goto out;
		}
	}
5769

5770
	ret = __tracing_resize_ring_buffer(tr, size, cpu_id);
5771 5772 5773
	if (ret < 0)
		ret = -ENOMEM;

5774
out:
5775 5776 5777 5778 5779
	mutex_unlock(&trace_types_lock);

	return ret;
}

5780

5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794
/**
 * tracing_update_buffers - used by tracing facility to expand ring buffers
 *
 * To save on memory when the tracing is never used on a system with it
 * configured in. The ring buffers are set to a minimum size. But once
 * a user starts to use the tracing facility, then they need to grow
 * to their default size.
 *
 * This function is to be called when a tracer is about to be used.
 */
int tracing_update_buffers(void)
{
	int ret = 0;

5795
	mutex_lock(&trace_types_lock);
5796
	if (!ring_buffer_expanded)
5797
		ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size,
5798
						RING_BUFFER_ALL_CPUS);
5799
	mutex_unlock(&trace_types_lock);
5800 5801 5802 5803

	return ret;
}

5804 5805
struct trace_option_dentry;

5806
static void
5807
create_trace_option_files(struct trace_array *tr, struct tracer *tracer);
5808

5809 5810 5811 5812 5813 5814 5815 5816 5817
/*
 * Used to clear out the tracer before deletion of an instance.
 * Must have trace_types_lock held.
 */
static void tracing_set_nop(struct trace_array *tr)
{
	if (tr->current_trace == &nop_trace)
		return;
	
5818
	tr->current_trace->enabled--;
5819 5820 5821 5822 5823 5824 5825

	if (tr->current_trace->reset)
		tr->current_trace->reset(tr);

	tr->current_trace = &nop_trace;
}

5826
static void add_tracer_options(struct trace_array *tr, struct tracer *t)
5827
{
5828 5829 5830 5831
	/* Only enable if the directory has been created already. */
	if (!tr->dir)
		return;

5832
	create_trace_option_files(tr, t);
5833 5834
}

5835
int tracing_set_tracer(struct trace_array *tr, const char *buf)
5836
{
5837
	struct tracer *t;
5838
#ifdef CONFIG_TRACER_MAX_TRACE
5839
	bool had_max_tr;
5840
#endif
5841
	int ret = 0;
5842

5843 5844
	mutex_lock(&trace_types_lock);

5845
	if (!ring_buffer_expanded) {
5846
		ret = __tracing_resize_ring_buffer(tr, trace_buf_size,
5847
						RING_BUFFER_ALL_CPUS);
5848
		if (ret < 0)
5849
			goto out;
5850 5851 5852
		ret = 0;
	}

5853 5854 5855 5856
	for (t = trace_types; t; t = t->next) {
		if (strcmp(t->name, buf) == 0)
			break;
	}
5857 5858 5859 5860
	if (!t) {
		ret = -EINVAL;
		goto out;
	}
5861
	if (t == tr->current_trace)
5862 5863
		goto out;

T
Tom Zanussi 已提交
5864 5865 5866 5867 5868 5869 5870 5871 5872 5873
#ifdef CONFIG_TRACER_SNAPSHOT
	if (t->use_max_tr) {
		arch_spin_lock(&tr->max_lock);
		if (tr->cond_snapshot)
			ret = -EBUSY;
		arch_spin_unlock(&tr->max_lock);
		if (ret)
			goto out;
	}
#endif
5874 5875 5876 5877 5878 5879 5880
	/* Some tracers won't work on kernel command line */
	if (system_state < SYSTEM_RUNNING && t->noboot) {
		pr_warn("Tracer '%s' is not allowed on command line, ignored\n",
			t->name);
		goto out;
	}

5881 5882 5883 5884 5885 5886
	/* Some tracers are only allowed for the top level buffer */
	if (!trace_ok_for_array(t, tr)) {
		ret = -EINVAL;
		goto out;
	}

5887 5888 5889 5890 5891 5892
	/* If trace pipe files are being read, we can't change the tracer */
	if (tr->current_trace->ref) {
		ret = -EBUSY;
		goto out;
	}

5893
	trace_branch_disable();
5894

5895
	tr->current_trace->enabled--;
5896

5897 5898
	if (tr->current_trace->reset)
		tr->current_trace->reset(tr);
5899

5900
	/* Current trace needs to be nop_trace before synchronize_rcu */
5901
	tr->current_trace = &nop_trace;
5902

5903 5904
#ifdef CONFIG_TRACER_MAX_TRACE
	had_max_tr = tr->allocated_snapshot;
5905 5906 5907 5908 5909 5910 5911 5912 5913

	if (had_max_tr && !t->use_max_tr) {
		/*
		 * We need to make sure that the update_max_tr sees that
		 * current_trace changed to nop_trace to keep it from
		 * swapping the buffers after we resize it.
		 * The update_max_tr is called from interrupts disabled
		 * so a synchronized_sched() is sufficient.
		 */
5914
		synchronize_rcu();
5915
		free_snapshot(tr);
5916
	}
5917 5918 5919
#endif

#ifdef CONFIG_TRACER_MAX_TRACE
5920
	if (t->use_max_tr && !had_max_tr) {
5921
		ret = tracing_alloc_snapshot_instance(tr);
5922 5923
		if (ret < 0)
			goto out;
5924
	}
5925
#endif
5926

5927
	if (t->init) {
5928
		ret = tracer_init(t, tr);
5929 5930 5931
		if (ret)
			goto out;
	}
5932

5933
	tr->current_trace = t;
5934
	tr->current_trace->enabled++;
5935
	trace_branch_enable(tr);
5936 5937 5938
 out:
	mutex_unlock(&trace_types_lock);

5939 5940 5941 5942 5943 5944 5945
	return ret;
}

static ssize_t
tracing_set_trace_write(struct file *filp, const char __user *ubuf,
			size_t cnt, loff_t *ppos)
{
5946
	struct trace_array *tr = filp->private_data;
L
Li Zefan 已提交
5947
	char buf[MAX_TRACER_SIZE+1];
5948 5949
	int i;
	size_t ret;
5950 5951 5952
	int err;

	ret = cnt;
5953

L
Li Zefan 已提交
5954 5955
	if (cnt > MAX_TRACER_SIZE)
		cnt = MAX_TRACER_SIZE;
5956

5957
	if (copy_from_user(buf, ubuf, cnt))
5958 5959 5960 5961 5962 5963 5964 5965
		return -EFAULT;

	buf[cnt] = 0;

	/* strip ending whitespace. */
	for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
		buf[i] = 0;

5966
	err = tracing_set_tracer(tr, buf);
5967 5968
	if (err)
		return err;
5969

5970
	*ppos += ret;
5971

5972
	return ret;
5973 5974 5975
}

static ssize_t
5976 5977
tracing_nsecs_read(unsigned long *ptr, char __user *ubuf,
		   size_t cnt, loff_t *ppos)
5978 5979 5980 5981
{
	char buf[64];
	int r;

S
Steven Rostedt 已提交
5982
	r = snprintf(buf, sizeof(buf), "%ld\n",
5983
		     *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
S
Steven Rostedt 已提交
5984 5985
	if (r > sizeof(buf))
		r = sizeof(buf);
I
Ingo Molnar 已提交
5986
	return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5987 5988 5989
}

static ssize_t
5990 5991
tracing_nsecs_write(unsigned long *ptr, const char __user *ubuf,
		    size_t cnt, loff_t *ppos)
5992
{
5993
	unsigned long val;
5994
	int ret;
5995

5996 5997
	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
5998
		return ret;
5999 6000 6001 6002 6003 6004

	*ptr = val * 1000;

	return cnt;
}

6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036
static ssize_t
tracing_thresh_read(struct file *filp, char __user *ubuf,
		    size_t cnt, loff_t *ppos)
{
	return tracing_nsecs_read(&tracing_thresh, ubuf, cnt, ppos);
}

static ssize_t
tracing_thresh_write(struct file *filp, const char __user *ubuf,
		     size_t cnt, loff_t *ppos)
{
	struct trace_array *tr = filp->private_data;
	int ret;

	mutex_lock(&trace_types_lock);
	ret = tracing_nsecs_write(&tracing_thresh, ubuf, cnt, ppos);
	if (ret < 0)
		goto out;

	if (tr->current_trace->update_thresh) {
		ret = tr->current_trace->update_thresh(tr);
		if (ret < 0)
			goto out;
	}

	ret = cnt;
out:
	mutex_unlock(&trace_types_lock);

	return ret;
}

6037
#if defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)
6038

6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052
static ssize_t
tracing_max_lat_read(struct file *filp, char __user *ubuf,
		     size_t cnt, loff_t *ppos)
{
	return tracing_nsecs_read(filp->private_data, ubuf, cnt, ppos);
}

static ssize_t
tracing_max_lat_write(struct file *filp, const char __user *ubuf,
		      size_t cnt, loff_t *ppos)
{
	return tracing_nsecs_write(filp->private_data, ubuf, cnt, ppos);
}

6053 6054
#endif

6055 6056
static int tracing_open_pipe(struct inode *inode, struct file *filp)
{
6057
	struct trace_array *tr = inode->i_private;
6058
	struct trace_iterator *iter;
6059
	int ret;
6060

6061 6062 6063
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
6064

6065 6066
	mutex_lock(&trace_types_lock);

6067 6068
	/* create a buffer to store the information to pass to userspace */
	iter = kzalloc(sizeof(*iter), GFP_KERNEL);
6069 6070
	if (!iter) {
		ret = -ENOMEM;
6071
		__trace_array_put(tr);
6072 6073
		goto out;
	}
6074

6075
	trace_seq_init(&iter->seq);
6076
	iter->trace = tr->current_trace;
6077

6078
	if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
6079
		ret = -ENOMEM;
6080
		goto fail;
6081 6082
	}

6083
	/* trace pipe does not show start of buffer */
6084
	cpumask_setall(iter->started);
6085

6086
	if (tr->trace_flags & TRACE_ITER_LATENCY_FMT)
6087 6088
		iter->iter_flags |= TRACE_FILE_LAT_FMT;

6089
	/* Output in nanoseconds only if we are using a clock in nanoseconds. */
6090
	if (trace_clocks[tr->clock_id].in_ns)
6091 6092
		iter->iter_flags |= TRACE_FILE_TIME_IN_NS;

6093
	iter->tr = tr;
6094
	iter->array_buffer = &tr->array_buffer;
6095
	iter->cpu_file = tracing_get_cpu(inode);
6096
	mutex_init(&iter->mutex);
6097 6098
	filp->private_data = iter;

6099 6100 6101
	if (iter->trace->pipe_open)
		iter->trace->pipe_open(iter);

6102
	nonseekable_open(inode, filp);
6103 6104

	tr->current_trace->ref++;
6105 6106 6107
out:
	mutex_unlock(&trace_types_lock);
	return ret;
6108 6109 6110

fail:
	kfree(iter);
6111
	__trace_array_put(tr);
6112 6113
	mutex_unlock(&trace_types_lock);
	return ret;
6114 6115 6116 6117 6118
}

static int tracing_release_pipe(struct inode *inode, struct file *file)
{
	struct trace_iterator *iter = file->private_data;
6119
	struct trace_array *tr = inode->i_private;
6120

6121 6122
	mutex_lock(&trace_types_lock);

6123 6124
	tr->current_trace->ref--;

6125
	if (iter->trace->pipe_close)
S
Steven Rostedt 已提交
6126 6127
		iter->trace->pipe_close(iter);

6128 6129
	mutex_unlock(&trace_types_lock);

6130
	free_cpumask_var(iter->started);
6131
	mutex_destroy(&iter->mutex);
6132 6133
	kfree(iter);

6134 6135
	trace_array_put(tr);

6136 6137 6138
	return 0;
}

6139
static __poll_t
6140
trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table)
6141
{
6142 6143
	struct trace_array *tr = iter->tr;

6144 6145
	/* Iterators are static, they should be filled or empty */
	if (trace_buffer_iter(iter, iter->cpu_file))
6146
		return EPOLLIN | EPOLLRDNORM;
6147

6148
	if (tr->trace_flags & TRACE_ITER_BLOCK)
6149 6150 6151
		/*
		 * Always select as readable when in blocking mode
		 */
6152
		return EPOLLIN | EPOLLRDNORM;
6153
	else
6154
		return ring_buffer_poll_wait(iter->array_buffer->buffer, iter->cpu_file,
6155
					     filp, poll_table);
6156 6157
}

6158
static __poll_t
6159 6160 6161 6162 6163
tracing_poll_pipe(struct file *filp, poll_table *poll_table)
{
	struct trace_iterator *iter = filp->private_data;

	return trace_poll(iter, filp, poll_table);
6164 6165
}

6166
/* Must be called with iter->mutex held. */
6167
static int tracing_wait_pipe(struct file *filp)
6168 6169
{
	struct trace_iterator *iter = filp->private_data;
6170
	int ret;
6171 6172

	while (trace_empty(iter)) {
6173

6174
		if ((filp->f_flags & O_NONBLOCK)) {
6175
			return -EAGAIN;
6176
		}
6177

6178
		/*
L
Liu Bo 已提交
6179
		 * We block until we read something and tracing is disabled.
6180 6181 6182 6183 6184 6185 6186
		 * We still block if tracing is disabled, but we have never
		 * read anything. This allows a user to cat this file, and
		 * then enable tracing. But after we have read something,
		 * we give an EOF when tracing is again disabled.
		 *
		 * iter->pos will be 0 if we haven't read anything.
		 */
6187
		if (!tracer_tracing_is_on(iter->tr) && iter->pos)
6188
			break;
6189 6190 6191

		mutex_unlock(&iter->mutex);

6192
		ret = wait_on_pipe(iter, 0);
6193 6194 6195

		mutex_lock(&iter->mutex);

6196 6197
		if (ret)
			return ret;
6198 6199
	}

6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212
	return 1;
}

/*
 * Consumer reader.
 */
static ssize_t
tracing_read_pipe(struct file *filp, char __user *ubuf,
		  size_t cnt, loff_t *ppos)
{
	struct trace_iterator *iter = filp->private_data;
	ssize_t sret;

6213 6214 6215 6216 6217 6218
	/*
	 * Avoid more than one consumer on a single file descriptor
	 * This is just a matter of traces coherency, the ring buffer itself
	 * is protected.
	 */
	mutex_lock(&iter->mutex);
6219 6220 6221 6222 6223 6224 6225 6226

	/* return any leftover data */
	sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
	if (sret != -EBUSY)
		goto out;

	trace_seq_init(&iter->seq);

6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237
	if (iter->trace->read) {
		sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
		if (sret)
			goto out;
	}

waitagain:
	sret = tracing_wait_pipe(filp);
	if (sret <= 0)
		goto out;

6238
	/* stop when tracing is finished */
6239 6240
	if (trace_empty(iter)) {
		sret = 0;
6241
		goto out;
6242
	}
6243 6244 6245 6246

	if (cnt >= PAGE_SIZE)
		cnt = PAGE_SIZE - 1;

6247 6248 6249 6250
	/* reset all but tr, trace, and overruns */
	memset(&iter->seq, 0,
	       sizeof(struct trace_iterator) -
	       offsetof(struct trace_iterator, seq));
6251
	cpumask_clear(iter->started);
6252
	trace_seq_init(&iter->seq);
6253
	iter->pos = -1;
6254

6255
	trace_event_read_lock();
6256
	trace_access_lock(iter->cpu_file);
6257
	while (trace_find_next_entry_inc(iter) != NULL) {
6258
		enum print_line_t ret;
6259
		int save_len = iter->seq.seq.len;
S
Steven Rostedt 已提交
6260

I
Ingo Molnar 已提交
6261
		ret = print_trace_line(iter);
6262
		if (ret == TRACE_TYPE_PARTIAL_LINE) {
S
Steven Rostedt 已提交
6263
			/* don't print partial lines */
6264
			iter->seq.seq.len = save_len;
6265
			break;
S
Steven Rostedt 已提交
6266
		}
6267 6268
		if (ret != TRACE_TYPE_NO_CONSUME)
			trace_consume(iter);
6269

6270
		if (trace_seq_used(&iter->seq) >= cnt)
6271
			break;
6272 6273 6274 6275 6276 6277 6278 6279

		/*
		 * Setting the full flag means we reached the trace_seq buffer
		 * size and we should leave by partial output condition above.
		 * One of the trace_seq_* functions is not used properly.
		 */
		WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
			  iter->ent->type);
6280
	}
6281
	trace_access_unlock(iter->cpu_file);
6282
	trace_event_read_unlock();
6283 6284

	/* Now copy what we have to the user */
6285
	sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
6286
	if (iter->seq.seq.readpos >= trace_seq_used(&iter->seq))
6287
		trace_seq_init(&iter->seq);
P
Pekka Paalanen 已提交
6288 6289

	/*
L
Lucas De Marchi 已提交
6290
	 * If there was nothing to send to user, in spite of consuming trace
P
Pekka Paalanen 已提交
6291 6292
	 * entries, go back to wait for more entries.
	 */
6293
	if (sret == -EBUSY)
P
Pekka Paalanen 已提交
6294
		goto waitagain;
6295

6296
out:
6297
	mutex_unlock(&iter->mutex);
6298

6299
	return sret;
6300 6301
}

6302 6303 6304 6305 6306 6307
static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
				     unsigned int idx)
{
	__free_page(spd->pages[idx]);
}

6308
static const struct pipe_buf_operations tracing_pipe_buf_ops = {
S
Steven Rostedt 已提交
6309
	.confirm		= generic_pipe_buf_confirm,
6310
	.release		= generic_pipe_buf_release,
S
Steven Rostedt 已提交
6311 6312
	.steal			= generic_pipe_buf_steal,
	.get			= generic_pipe_buf_get,
6313 6314
};

S
Steven Rostedt 已提交
6315
static size_t
6316
tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
S
Steven Rostedt 已提交
6317 6318
{
	size_t count;
6319
	int save_len;
S
Steven Rostedt 已提交
6320 6321 6322 6323
	int ret;

	/* Seq buffer is page-sized, exactly what we need. */
	for (;;) {
6324
		save_len = iter->seq.seq.len;
S
Steven Rostedt 已提交
6325
		ret = print_trace_line(iter);
6326 6327 6328

		if (trace_seq_has_overflowed(&iter->seq)) {
			iter->seq.seq.len = save_len;
S
Steven Rostedt 已提交
6329 6330
			break;
		}
6331 6332 6333 6334 6335 6336

		/*
		 * This should not be hit, because it should only
		 * be set if the iter->seq overflowed. But check it
		 * anyway to be safe.
		 */
S
Steven Rostedt 已提交
6337
		if (ret == TRACE_TYPE_PARTIAL_LINE) {
6338 6339 6340 6341
			iter->seq.seq.len = save_len;
			break;
		}

6342
		count = trace_seq_used(&iter->seq) - save_len;
6343 6344 6345
		if (rem < count) {
			rem = 0;
			iter->seq.seq.len = save_len;
S
Steven Rostedt 已提交
6346 6347 6348
			break;
		}

6349 6350
		if (ret != TRACE_TYPE_NO_CONSUME)
			trace_consume(iter);
S
Steven Rostedt 已提交
6351
		rem -= count;
6352
		if (!trace_find_next_entry_inc(iter))	{
S
Steven Rostedt 已提交
6353 6354 6355 6356 6357 6358 6359 6360 6361
			rem = 0;
			iter->ent = NULL;
			break;
		}
	}

	return rem;
}

6362 6363 6364 6365 6366 6367
static ssize_t tracing_splice_read_pipe(struct file *filp,
					loff_t *ppos,
					struct pipe_inode_info *pipe,
					size_t len,
					unsigned int flags)
{
6368 6369
	struct page *pages_def[PIPE_DEF_BUFFERS];
	struct partial_page partial_def[PIPE_DEF_BUFFERS];
6370 6371
	struct trace_iterator *iter = filp->private_data;
	struct splice_pipe_desc spd = {
6372 6373
		.pages		= pages_def,
		.partial	= partial_def,
S
Steven Rostedt 已提交
6374
		.nr_pages	= 0, /* This gets updated below. */
6375
		.nr_pages_max	= PIPE_DEF_BUFFERS,
S
Steven Rostedt 已提交
6376 6377
		.ops		= &tracing_pipe_buf_ops,
		.spd_release	= tracing_spd_release_pipe,
6378 6379
	};
	ssize_t ret;
S
Steven Rostedt 已提交
6380
	size_t rem;
6381 6382
	unsigned int i;

6383 6384 6385
	if (splice_grow_spd(pipe, &spd))
		return -ENOMEM;

6386
	mutex_lock(&iter->mutex);
6387 6388 6389 6390 6391

	if (iter->trace->splice_read) {
		ret = iter->trace->splice_read(iter, filp,
					       ppos, pipe, len, flags);
		if (ret)
S
Steven Rostedt 已提交
6392
			goto out_err;
6393 6394 6395 6396
	}

	ret = tracing_wait_pipe(filp);
	if (ret <= 0)
S
Steven Rostedt 已提交
6397
		goto out_err;
6398

6399
	if (!iter->ent && !trace_find_next_entry_inc(iter)) {
6400
		ret = -EFAULT;
S
Steven Rostedt 已提交
6401
		goto out_err;
6402 6403
	}

6404
	trace_event_read_lock();
6405
	trace_access_lock(iter->cpu_file);
6406

6407
	/* Fill as many pages as possible. */
6408
	for (i = 0, rem = len; i < spd.nr_pages_max && rem; i++) {
6409 6410
		spd.pages[i] = alloc_page(GFP_KERNEL);
		if (!spd.pages[i])
S
Steven Rostedt 已提交
6411
			break;
6412

6413
		rem = tracing_fill_pipe_page(rem, iter);
6414 6415 6416

		/* Copy the data into the page, so we can start over. */
		ret = trace_seq_to_buffer(&iter->seq,
6417
					  page_address(spd.pages[i]),
6418
					  trace_seq_used(&iter->seq));
6419
		if (ret < 0) {
6420
			__free_page(spd.pages[i]);
6421 6422
			break;
		}
6423
		spd.partial[i].offset = 0;
6424
		spd.partial[i].len = trace_seq_used(&iter->seq);
6425

6426
		trace_seq_init(&iter->seq);
6427 6428
	}

6429
	trace_access_unlock(iter->cpu_file);
6430
	trace_event_read_unlock();
6431
	mutex_unlock(&iter->mutex);
6432 6433 6434

	spd.nr_pages = i;

6435 6436 6437 6438
	if (i)
		ret = splice_to_pipe(pipe, &spd);
	else
		ret = 0;
6439
out:
6440
	splice_shrink_spd(&spd);
6441
	return ret;
6442

S
Steven Rostedt 已提交
6443
out_err:
6444
	mutex_unlock(&iter->mutex);
6445
	goto out;
6446 6447
}

6448 6449 6450 6451
static ssize_t
tracing_entries_read(struct file *filp, char __user *ubuf,
		     size_t cnt, loff_t *ppos)
{
6452 6453 6454
	struct inode *inode = file_inode(filp);
	struct trace_array *tr = inode->i_private;
	int cpu = tracing_get_cpu(inode);
6455 6456 6457
	char buf[64];
	int r = 0;
	ssize_t ret;
6458

6459
	mutex_lock(&trace_types_lock);
6460

6461
	if (cpu == RING_BUFFER_ALL_CPUS) {
6462 6463 6464 6465 6466 6467 6468 6469 6470
		int cpu, buf_size_same;
		unsigned long size;

		size = 0;
		buf_size_same = 1;
		/* check if all cpu sizes are same */
		for_each_tracing_cpu(cpu) {
			/* fill in the size from first enabled cpu */
			if (size == 0)
6471 6472
				size = per_cpu_ptr(tr->array_buffer.data, cpu)->entries;
			if (size != per_cpu_ptr(tr->array_buffer.data, cpu)->entries) {
6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487
				buf_size_same = 0;
				break;
			}
		}

		if (buf_size_same) {
			if (!ring_buffer_expanded)
				r = sprintf(buf, "%lu (expanded: %lu)\n",
					    size >> 10,
					    trace_buf_size >> 10);
			else
				r = sprintf(buf, "%lu\n", size >> 10);
		} else
			r = sprintf(buf, "X\n");
	} else
6488
		r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->array_buffer.data, cpu)->entries >> 10);
6489

6490 6491
	mutex_unlock(&trace_types_lock);

6492 6493
	ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
	return ret;
6494 6495 6496 6497 6498 6499
}

static ssize_t
tracing_entries_write(struct file *filp, const char __user *ubuf,
		      size_t cnt, loff_t *ppos)
{
6500 6501
	struct inode *inode = file_inode(filp);
	struct trace_array *tr = inode->i_private;
6502
	unsigned long val;
6503
	int ret;
6504

6505 6506
	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
6507
		return ret;
6508 6509 6510 6511 6512

	/* must have at least 1 entry */
	if (!val)
		return -EINVAL;

6513 6514
	/* value is in KB */
	val <<= 10;
6515
	ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode));
6516 6517
	if (ret < 0)
		return ret;
6518

6519
	*ppos += cnt;
6520

6521 6522
	return cnt;
}
S
Steven Rostedt 已提交
6523

6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534
static ssize_t
tracing_total_entries_read(struct file *filp, char __user *ubuf,
				size_t cnt, loff_t *ppos)
{
	struct trace_array *tr = filp->private_data;
	char buf[64];
	int r, cpu;
	unsigned long size = 0, expanded_size = 0;

	mutex_lock(&trace_types_lock);
	for_each_tracing_cpu(cpu) {
6535
		size += per_cpu_ptr(tr->array_buffer.data, cpu)->entries >> 10;
6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547
		if (!ring_buffer_expanded)
			expanded_size += trace_buf_size >> 10;
	}
	if (ring_buffer_expanded)
		r = sprintf(buf, "%lu\n", size);
	else
		r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
	mutex_unlock(&trace_types_lock);

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
}

6548 6549 6550 6551 6552 6553 6554 6555 6556 6557
static ssize_t
tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
			  size_t cnt, loff_t *ppos)
{
	/*
	 * There is no need to read what the user has written, this function
	 * is just to make sure that there is no error when "echo" is used
	 */

	*ppos += cnt;
6558 6559 6560 6561

	return cnt;
}

6562 6563 6564
static int
tracing_free_buffer_release(struct inode *inode, struct file *filp)
{
6565 6566
	struct trace_array *tr = inode->i_private;

6567
	/* disable tracing ? */
6568
	if (tr->trace_flags & TRACE_ITER_STOP_ON_FREE)
6569
		tracer_tracing_off(tr);
6570
	/* resize the ring buffer to 0 */
6571
	tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS);
6572

6573 6574
	trace_array_put(tr);

6575 6576 6577
	return 0;
}

6578 6579 6580 6581
static ssize_t
tracing_mark_write(struct file *filp, const char __user *ubuf,
					size_t cnt, loff_t *fpos)
{
6582
	struct trace_array *tr = filp->private_data;
6583
	struct ring_buffer_event *event;
6584
	enum event_trigger_type tt = ETT_NONE;
6585
	struct trace_buffer *buffer;
6586 6587 6588 6589 6590
	struct print_entry *entry;
	unsigned long irq_flags;
	ssize_t written;
	int size;
	int len;
S
Steven Rostedt 已提交
6591

6592
/* Used in tracing_mark_raw_write() as well */
6593 6594
#define FAULTED_STR "<faulted>"
#define FAULTED_SIZE (sizeof(FAULTED_STR) - 1) /* '\0' is already accounted for */
6595

S
Steven Rostedt 已提交
6596
	if (tracing_disabled)
6597 6598
		return -EINVAL;

6599
	if (!(tr->trace_flags & TRACE_ITER_MARKERS))
6600 6601
		return -EINVAL;

6602 6603 6604
	if (cnt > TRACE_BUF_SIZE)
		cnt = TRACE_BUF_SIZE;

6605
	BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
6606

6607
	local_save_flags(irq_flags);
6608
	size = sizeof(*entry) + cnt + 2; /* add '\0' and possible '\n' */
6609

6610 6611 6612
	/* If less than "<faulted>", then make sure we can still add that */
	if (cnt < FAULTED_SIZE)
		size += FAULTED_SIZE - cnt;
6613

6614
	buffer = tr->array_buffer.buffer;
6615 6616
	event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
					    irq_flags, preempt_count());
6617
	if (unlikely(!event))
6618
		/* Ring buffer disabled, return as if not open for write */
6619
		return -EBADF;
6620 6621 6622 6623

	entry = ring_buffer_event_data(event);
	entry->ip = _THIS_IP_;

6624 6625
	len = __copy_from_user_inatomic(&entry->buf, ubuf, cnt);
	if (len) {
6626
		memcpy(&entry->buf, FAULTED_STR, FAULTED_SIZE);
6627 6628
		cnt = FAULTED_SIZE;
		written = -EFAULT;
C
Carsten Emde 已提交
6629
	} else
6630 6631
		written = cnt;
	len = cnt;
6632

6633 6634 6635 6636 6637 6638
	if (tr->trace_marker_file && !list_empty(&tr->trace_marker_file->triggers)) {
		/* do not add \n before testing triggers, but add \0 */
		entry->buf[cnt] = '\0';
		tt = event_triggers_call(tr->trace_marker_file, entry, event);
	}

6639 6640 6641 6642 6643 6644
	if (entry->buf[cnt - 1] != '\n') {
		entry->buf[cnt] = '\n';
		entry->buf[cnt + 1] = '\0';
	} else
		entry->buf[cnt] = '\0';

6645
	__buffer_unlock_commit(buffer, event);
6646

6647 6648 6649
	if (tt)
		event_triggers_post_call(tr->trace_marker_file, tt);

6650 6651
	if (written > 0)
		*fpos += written;
6652

S
Steven Rostedt 已提交
6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664
	return written;
}

/* Limit it for now to 3K (including tag) */
#define RAW_DATA_MAX_SIZE (1024*3)

static ssize_t
tracing_mark_raw_write(struct file *filp, const char __user *ubuf,
					size_t cnt, loff_t *fpos)
{
	struct trace_array *tr = filp->private_data;
	struct ring_buffer_event *event;
6665
	struct trace_buffer *buffer;
S
Steven Rostedt 已提交
6666 6667 6668 6669 6670 6671
	struct raw_data_entry *entry;
	unsigned long irq_flags;
	ssize_t written;
	int size;
	int len;

6672 6673
#define FAULT_SIZE_ID (FAULTED_SIZE + sizeof(int))

S
Steven Rostedt 已提交
6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690
	if (tracing_disabled)
		return -EINVAL;

	if (!(tr->trace_flags & TRACE_ITER_MARKERS))
		return -EINVAL;

	/* The marker must at least have a tag id */
	if (cnt < sizeof(unsigned int) || cnt > RAW_DATA_MAX_SIZE)
		return -EINVAL;

	if (cnt > TRACE_BUF_SIZE)
		cnt = TRACE_BUF_SIZE;

	BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);

	local_save_flags(irq_flags);
	size = sizeof(*entry) + cnt;
6691 6692 6693
	if (cnt < FAULT_SIZE_ID)
		size += FAULT_SIZE_ID - cnt;

6694
	buffer = tr->array_buffer.buffer;
6695 6696
	event = __trace_buffer_lock_reserve(buffer, TRACE_RAW_DATA, size,
					    irq_flags, preempt_count());
6697
	if (!event)
S
Steven Rostedt 已提交
6698
		/* Ring buffer disabled, return as if not open for write */
6699
		return -EBADF;
S
Steven Rostedt 已提交
6700 6701 6702

	entry = ring_buffer_event_data(event);

6703 6704 6705
	len = __copy_from_user_inatomic(&entry->id, ubuf, cnt);
	if (len) {
		entry->id = -1;
6706
		memcpy(&entry->buf, FAULTED_STR, FAULTED_SIZE);
6707
		written = -EFAULT;
S
Steven Rostedt 已提交
6708
	} else
6709
		written = cnt;
S
Steven Rostedt 已提交
6710 6711 6712

	__buffer_unlock_commit(buffer, event);

6713 6714
	if (written > 0)
		*fpos += written;
6715 6716

	return written;
6717 6718
}

L
Li Zefan 已提交
6719
static int tracing_clock_show(struct seq_file *m, void *v)
6720
{
6721
	struct trace_array *tr = m->private;
6722 6723 6724
	int i;

	for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
L
Li Zefan 已提交
6725
		seq_printf(m,
6726
			"%s%s%s%s", i ? " " : "",
6727 6728
			i == tr->clock_id ? "[" : "", trace_clocks[i].name,
			i == tr->clock_id ? "]" : "");
L
Li Zefan 已提交
6729
	seq_putc(m, '\n');
6730

L
Li Zefan 已提交
6731
	return 0;
6732 6733
}

6734
int tracing_set_clock(struct trace_array *tr, const char *clockstr)
6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746
{
	int i;

	for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
		if (strcmp(trace_clocks[i].name, clockstr) == 0)
			break;
	}
	if (i == ARRAY_SIZE(trace_clocks))
		return -EINVAL;

	mutex_lock(&trace_types_lock);

6747 6748
	tr->clock_id = i;

6749
	ring_buffer_set_clock(tr->array_buffer.buffer, trace_clocks[i].func);
6750

6751 6752 6753 6754
	/*
	 * New clock may not be consistent with the previous clock.
	 * Reset the buffer so that it doesn't have incomparable timestamps.
	 */
6755
	tracing_reset_online_cpus(&tr->array_buffer);
6756 6757

#ifdef CONFIG_TRACER_MAX_TRACE
6758
	if (tr->max_buffer.buffer)
6759
		ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func);
6760
	tracing_reset_online_cpus(&tr->max_buffer);
6761
#endif
6762

6763 6764
	mutex_unlock(&trace_types_lock);

6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779
	return 0;
}

static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
				   size_t cnt, loff_t *fpos)
{
	struct seq_file *m = filp->private_data;
	struct trace_array *tr = m->private;
	char buf[64];
	const char *clockstr;
	int ret;

	if (cnt >= sizeof(buf))
		return -EINVAL;

6780
	if (copy_from_user(buf, ubuf, cnt))
6781 6782 6783 6784 6785 6786 6787 6788 6789 6790
		return -EFAULT;

	buf[cnt] = 0;

	clockstr = strstrip(buf);

	ret = tracing_set_clock(tr, clockstr);
	if (ret)
		return ret;

6791 6792 6793 6794 6795
	*fpos += cnt;

	return cnt;
}

L
Li Zefan 已提交
6796 6797
static int tracing_clock_open(struct inode *inode, struct file *file)
{
6798 6799 6800
	struct trace_array *tr = inode->i_private;
	int ret;

6801 6802 6803
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
6804 6805 6806 6807 6808 6809

	ret = single_open(file, tracing_clock_show, inode->i_private);
	if (ret < 0)
		trace_array_put(tr);

	return ret;
L
Li Zefan 已提交
6810 6811
}

6812 6813 6814 6815 6816 6817
static int tracing_time_stamp_mode_show(struct seq_file *m, void *v)
{
	struct trace_array *tr = m->private;

	mutex_lock(&trace_types_lock);

6818
	if (ring_buffer_time_stamp_abs(tr->array_buffer.buffer))
6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832
		seq_puts(m, "delta [absolute]\n");
	else
		seq_puts(m, "[delta] absolute\n");

	mutex_unlock(&trace_types_lock);

	return 0;
}

static int tracing_time_stamp_mode_open(struct inode *inode, struct file *file)
{
	struct trace_array *tr = inode->i_private;
	int ret;

6833 6834 6835
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
6836 6837 6838 6839 6840 6841 6842 6843

	ret = single_open(file, tracing_time_stamp_mode_show, inode->i_private);
	if (ret < 0)
		trace_array_put(tr);

	return ret;
}

6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862
int tracing_set_time_stamp_abs(struct trace_array *tr, bool abs)
{
	int ret = 0;

	mutex_lock(&trace_types_lock);

	if (abs && tr->time_stamp_abs_ref++)
		goto out;

	if (!abs) {
		if (WARN_ON_ONCE(!tr->time_stamp_abs_ref)) {
			ret = -EINVAL;
			goto out;
		}

		if (--tr->time_stamp_abs_ref)
			goto out;
	}

6863
	ring_buffer_set_time_stamp_abs(tr->array_buffer.buffer, abs);
6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874

#ifdef CONFIG_TRACER_MAX_TRACE
	if (tr->max_buffer.buffer)
		ring_buffer_set_time_stamp_abs(tr->max_buffer.buffer, abs);
#endif
 out:
	mutex_unlock(&trace_types_lock);

	return ret;
}

6875 6876 6877
struct ftrace_buffer_info {
	struct trace_iterator	iter;
	void			*spare;
6878
	unsigned int		spare_cpu;
6879 6880 6881
	unsigned int		read;
};

6882 6883 6884
#ifdef CONFIG_TRACER_SNAPSHOT
static int tracing_snapshot_open(struct inode *inode, struct file *file)
{
6885
	struct trace_array *tr = inode->i_private;
6886
	struct trace_iterator *iter;
6887
	struct seq_file *m;
6888
	int ret;
6889

6890 6891 6892
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
6893

6894
	if (file->f_mode & FMODE_READ) {
6895
		iter = __tracing_open(inode, file, true);
6896 6897
		if (IS_ERR(iter))
			ret = PTR_ERR(iter);
6898 6899
	} else {
		/* Writes still need the seq_file to hold the private data */
6900
		ret = -ENOMEM;
6901 6902
		m = kzalloc(sizeof(*m), GFP_KERNEL);
		if (!m)
6903
			goto out;
6904 6905 6906
		iter = kzalloc(sizeof(*iter), GFP_KERNEL);
		if (!iter) {
			kfree(m);
6907
			goto out;
6908
		}
6909 6910
		ret = 0;

6911
		iter->tr = tr;
6912
		iter->array_buffer = &tr->max_buffer;
6913
		iter->cpu_file = tracing_get_cpu(inode);
6914 6915
		m->private = iter;
		file->private_data = m;
6916
	}
6917
out:
6918 6919 6920
	if (ret < 0)
		trace_array_put(tr);

6921 6922 6923 6924 6925 6926 6927
	return ret;
}

static ssize_t
tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt,
		       loff_t *ppos)
{
6928 6929 6930
	struct seq_file *m = filp->private_data;
	struct trace_iterator *iter = m->private;
	struct trace_array *tr = iter->tr;
6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943
	unsigned long val;
	int ret;

	ret = tracing_update_buffers();
	if (ret < 0)
		return ret;

	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
		return ret;

	mutex_lock(&trace_types_lock);

6944
	if (tr->current_trace->use_max_tr) {
6945 6946 6947 6948
		ret = -EBUSY;
		goto out;
	}

T
Tom Zanussi 已提交
6949 6950 6951 6952 6953 6954 6955
	arch_spin_lock(&tr->max_lock);
	if (tr->cond_snapshot)
		ret = -EBUSY;
	arch_spin_unlock(&tr->max_lock);
	if (ret)
		goto out;

6956 6957
	switch (val) {
	case 0:
6958 6959 6960
		if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
			ret = -EINVAL;
			break;
6961
		}
6962 6963
		if (tr->allocated_snapshot)
			free_snapshot(tr);
6964 6965
		break;
	case 1:
6966 6967 6968 6969 6970 6971 6972
/* Only allow per-cpu swap if the ring buffer supports it */
#ifndef CONFIG_RING_BUFFER_ALLOW_SWAP
		if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
			ret = -EINVAL;
			break;
		}
#endif
6973 6974
		if (tr->allocated_snapshot)
			ret = resize_buffer_duplicate_size(&tr->max_buffer,
6975
					&tr->array_buffer, iter->cpu_file);
6976
		else
6977
			ret = tracing_alloc_snapshot_instance(tr);
6978 6979
		if (ret < 0)
			break;
6980 6981
		local_irq_disable();
		/* Now, we're going to swap */
6982
		if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
T
Tom Zanussi 已提交
6983
			update_max_tr(tr, current, smp_processor_id(), NULL);
6984
		else
6985
			update_max_tr_single(tr, current, iter->cpu_file);
6986 6987 6988
		local_irq_enable();
		break;
	default:
6989
		if (tr->allocated_snapshot) {
6990 6991 6992
			if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
				tracing_reset_online_cpus(&tr->max_buffer);
			else
6993
				tracing_reset_cpu(&tr->max_buffer, iter->cpu_file);
6994
		}
6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005
		break;
	}

	if (ret >= 0) {
		*ppos += cnt;
		ret = cnt;
	}
out:
	mutex_unlock(&trace_types_lock);
	return ret;
}
7006 7007 7008 7009

static int tracing_snapshot_release(struct inode *inode, struct file *file)
{
	struct seq_file *m = file->private_data;
7010 7011 7012
	int ret;

	ret = tracing_release(inode, file);
7013 7014

	if (file->f_mode & FMODE_READ)
7015
		return ret;
7016 7017 7018 7019 7020 7021 7022 7023 7024

	/* If write only, the seq_file is just a stub */
	if (m)
		kfree(m->private);
	kfree(m);

	return 0;
}

7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036
static int tracing_buffers_open(struct inode *inode, struct file *filp);
static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf,
				    size_t count, loff_t *ppos);
static int tracing_buffers_release(struct inode *inode, struct file *file);
static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos,
		   struct pipe_inode_info *pipe, size_t len, unsigned int flags);

static int snapshot_raw_open(struct inode *inode, struct file *filp)
{
	struct ftrace_buffer_info *info;
	int ret;

7037
	/* The following checks for tracefs lockdown */
7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049
	ret = tracing_buffers_open(inode, filp);
	if (ret < 0)
		return ret;

	info = filp->private_data;

	if (info->iter.trace->use_max_tr) {
		tracing_buffers_release(inode, filp);
		return -EBUSY;
	}

	info->iter.snapshot = true;
7050
	info->iter.array_buffer = &info->iter.tr->max_buffer;
7051 7052 7053 7054

	return ret;
}

7055 7056 7057
#endif /* CONFIG_TRACER_SNAPSHOT */


7058 7059 7060 7061 7062 7063 7064
static const struct file_operations tracing_thresh_fops = {
	.open		= tracing_open_generic,
	.read		= tracing_thresh_read,
	.write		= tracing_thresh_write,
	.llseek		= generic_file_llseek,
};

7065
#if defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)
7066
static const struct file_operations tracing_max_lat_fops = {
I
Ingo Molnar 已提交
7067 7068 7069
	.open		= tracing_open_generic,
	.read		= tracing_max_lat_read,
	.write		= tracing_max_lat_write,
7070
	.llseek		= generic_file_llseek,
7071
};
7072
#endif
7073

7074
static const struct file_operations set_tracer_fops = {
I
Ingo Molnar 已提交
7075 7076 7077
	.open		= tracing_open_generic,
	.read		= tracing_set_trace_read,
	.write		= tracing_set_trace_write,
7078
	.llseek		= generic_file_llseek,
7079 7080
};

7081
static const struct file_operations tracing_pipe_fops = {
I
Ingo Molnar 已提交
7082
	.open		= tracing_open_pipe,
7083
	.poll		= tracing_poll_pipe,
I
Ingo Molnar 已提交
7084
	.read		= tracing_read_pipe,
7085
	.splice_read	= tracing_splice_read_pipe,
I
Ingo Molnar 已提交
7086
	.release	= tracing_release_pipe,
7087
	.llseek		= no_llseek,
7088 7089
};

7090
static const struct file_operations tracing_entries_fops = {
7091
	.open		= tracing_open_generic_tr,
7092 7093
	.read		= tracing_entries_read,
	.write		= tracing_entries_write,
7094
	.llseek		= generic_file_llseek,
7095
	.release	= tracing_release_generic_tr,
7096 7097
};

7098
static const struct file_operations tracing_total_entries_fops = {
7099
	.open		= tracing_open_generic_tr,
7100 7101
	.read		= tracing_total_entries_read,
	.llseek		= generic_file_llseek,
7102
	.release	= tracing_release_generic_tr,
7103 7104
};

7105
static const struct file_operations tracing_free_buffer_fops = {
7106
	.open		= tracing_open_generic_tr,
7107 7108 7109 7110
	.write		= tracing_free_buffer_write,
	.release	= tracing_free_buffer_release,
};

7111
static const struct file_operations tracing_mark_fops = {
7112
	.open		= tracing_open_generic_tr,
7113
	.write		= tracing_mark_write,
7114
	.llseek		= generic_file_llseek,
7115
	.release	= tracing_release_generic_tr,
7116 7117
};

S
Steven Rostedt 已提交
7118 7119 7120 7121 7122 7123 7124
static const struct file_operations tracing_mark_raw_fops = {
	.open		= tracing_open_generic_tr,
	.write		= tracing_mark_raw_write,
	.llseek		= generic_file_llseek,
	.release	= tracing_release_generic_tr,
};

7125
static const struct file_operations trace_clock_fops = {
L
Li Zefan 已提交
7126 7127 7128
	.open		= tracing_clock_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
7129
	.release	= tracing_single_release_tr,
7130 7131 7132
	.write		= tracing_clock_write,
};

7133 7134 7135 7136 7137 7138 7139
static const struct file_operations trace_time_stamp_mode_fops = {
	.open		= tracing_time_stamp_mode_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= tracing_single_release_tr,
};

7140 7141 7142 7143 7144
#ifdef CONFIG_TRACER_SNAPSHOT
static const struct file_operations snapshot_fops = {
	.open		= tracing_snapshot_open,
	.read		= seq_read,
	.write		= tracing_snapshot_write,
7145
	.llseek		= tracing_lseek,
7146
	.release	= tracing_snapshot_release,
7147 7148
};

7149 7150 7151 7152 7153 7154
static const struct file_operations snapshot_raw_fops = {
	.open		= snapshot_raw_open,
	.read		= tracing_buffers_read,
	.release	= tracing_buffers_release,
	.splice_read	= tracing_buffers_splice_read,
	.llseek		= no_llseek,
7155 7156
};

7157 7158
#endif /* CONFIG_TRACER_SNAPSHOT */

T
Tom Zanussi 已提交
7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179
#define TRACING_LOG_ERRS_MAX	8
#define TRACING_LOG_LOC_MAX	128

#define CMD_PREFIX "  Command: "

struct err_info {
	const char	**errs;	/* ptr to loc-specific array of err strings */
	u8		type;	/* index into errs -> specific err string */
	u8		pos;	/* MAX_FILTER_STR_VAL = 256 */
	u64		ts;
};

struct tracing_log_err {
	struct list_head	list;
	struct err_info		info;
	char			loc[TRACING_LOG_LOC_MAX]; /* err location */
	char			cmd[MAX_FILTER_STR_VAL]; /* what caused err */
};

static DEFINE_MUTEX(tracing_err_log_lock);

Y
YueHaibing 已提交
7180
static struct tracing_log_err *get_tracing_log_err(struct trace_array *tr)
T
Tom Zanussi 已提交
7181 7182 7183
{
	struct tracing_log_err *err;

7184
	if (tr->n_err_log_entries < TRACING_LOG_ERRS_MAX) {
T
Tom Zanussi 已提交
7185 7186 7187
		err = kzalloc(sizeof(*err), GFP_KERNEL);
		if (!err)
			err = ERR_PTR(-ENOMEM);
7188
		tr->n_err_log_entries++;
T
Tom Zanussi 已提交
7189 7190 7191 7192

		return err;
	}

7193
	err = list_first_entry(&tr->err_log, struct tracing_log_err, list);
T
Tom Zanussi 已提交
7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226
	list_del(&err->list);

	return err;
}

/**
 * err_pos - find the position of a string within a command for error careting
 * @cmd: The tracing command that caused the error
 * @str: The string to position the caret at within @cmd
 *
 * Finds the position of the first occurence of @str within @cmd.  The
 * return value can be passed to tracing_log_err() for caret placement
 * within @cmd.
 *
 * Returns the index within @cmd of the first occurence of @str or 0
 * if @str was not found.
 */
unsigned int err_pos(char *cmd, const char *str)
{
	char *found;

	if (WARN_ON(!strlen(cmd)))
		return 0;

	found = strstr(cmd, str);
	if (found)
		return found - cmd;

	return 0;
}

/**
 * tracing_log_err - write an error to the tracing error log
7227
 * @tr: The associated trace array for the error (NULL for top level array)
T
Tom Zanussi 已提交
7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251
 * @loc: A string describing where the error occurred
 * @cmd: The tracing command that caused the error
 * @errs: The array of loc-specific static error strings
 * @type: The index into errs[], which produces the specific static err string
 * @pos: The position the caret should be placed in the cmd
 *
 * Writes an error into tracing/error_log of the form:
 *
 * <loc>: error: <text>
 *   Command: <cmd>
 *              ^
 *
 * tracing/error_log is a small log file containing the last
 * TRACING_LOG_ERRS_MAX errors (8).  Memory for errors isn't allocated
 * unless there has been a tracing error, and the error log can be
 * cleared and have its memory freed by writing the empty string in
 * truncation mode to it i.e. echo > tracing/error_log.
 *
 * NOTE: the @errs array along with the @type param are used to
 * produce a static error string - this string is not copied and saved
 * when the error is logged - only a pointer to it is saved.  See
 * existing callers for examples of how static strings are typically
 * defined for use with tracing_log_err().
 */
7252 7253
void tracing_log_err(struct trace_array *tr,
		     const char *loc, const char *cmd,
T
Tom Zanussi 已提交
7254 7255 7256 7257
		     const char **errs, u8 type, u8 pos)
{
	struct tracing_log_err *err;

7258 7259 7260
	if (!tr)
		tr = &global_trace;

T
Tom Zanussi 已提交
7261
	mutex_lock(&tracing_err_log_lock);
7262
	err = get_tracing_log_err(tr);
T
Tom Zanussi 已提交
7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275
	if (PTR_ERR(err) == -ENOMEM) {
		mutex_unlock(&tracing_err_log_lock);
		return;
	}

	snprintf(err->loc, TRACING_LOG_LOC_MAX, "%s: error: ", loc);
	snprintf(err->cmd, MAX_FILTER_STR_VAL,"\n" CMD_PREFIX "%s\n", cmd);

	err->info.errs = errs;
	err->info.type = type;
	err->info.pos = pos;
	err->info.ts = local_clock();

7276
	list_add_tail(&err->list, &tr->err_log);
T
Tom Zanussi 已提交
7277 7278 7279
	mutex_unlock(&tracing_err_log_lock);
}

7280
static void clear_tracing_err_log(struct trace_array *tr)
T
Tom Zanussi 已提交
7281 7282 7283 7284
{
	struct tracing_log_err *err, *next;

	mutex_lock(&tracing_err_log_lock);
7285
	list_for_each_entry_safe(err, next, &tr->err_log, list) {
T
Tom Zanussi 已提交
7286 7287 7288 7289
		list_del(&err->list);
		kfree(err);
	}

7290
	tr->n_err_log_entries = 0;
T
Tom Zanussi 已提交
7291 7292 7293 7294 7295
	mutex_unlock(&tracing_err_log_lock);
}

static void *tracing_err_log_seq_start(struct seq_file *m, loff_t *pos)
{
7296 7297
	struct trace_array *tr = m->private;

T
Tom Zanussi 已提交
7298 7299
	mutex_lock(&tracing_err_log_lock);

7300
	return seq_list_start(&tr->err_log, *pos);
T
Tom Zanussi 已提交
7301 7302 7303 7304
}

static void *tracing_err_log_seq_next(struct seq_file *m, void *v, loff_t *pos)
{
7305 7306 7307
	struct trace_array *tr = m->private;

	return seq_list_next(v, &tr->err_log, pos);
T
Tom Zanussi 已提交
7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353
}

static void tracing_err_log_seq_stop(struct seq_file *m, void *v)
{
	mutex_unlock(&tracing_err_log_lock);
}

static void tracing_err_log_show_pos(struct seq_file *m, u8 pos)
{
	u8 i;

	for (i = 0; i < sizeof(CMD_PREFIX) - 1; i++)
		seq_putc(m, ' ');
	for (i = 0; i < pos; i++)
		seq_putc(m, ' ');
	seq_puts(m, "^\n");
}

static int tracing_err_log_seq_show(struct seq_file *m, void *v)
{
	struct tracing_log_err *err = v;

	if (err) {
		const char *err_text = err->info.errs[err->info.type];
		u64 sec = err->info.ts;
		u32 nsec;

		nsec = do_div(sec, NSEC_PER_SEC);
		seq_printf(m, "[%5llu.%06u] %s%s", sec, nsec / 1000,
			   err->loc, err_text);
		seq_printf(m, "%s", err->cmd);
		tracing_err_log_show_pos(m, err->info.pos);
	}

	return 0;
}

static const struct seq_operations tracing_err_log_seq_ops = {
	.start  = tracing_err_log_seq_start,
	.next   = tracing_err_log_seq_next,
	.stop   = tracing_err_log_seq_stop,
	.show   = tracing_err_log_seq_show
};

static int tracing_err_log_open(struct inode *inode, struct file *file)
{
7354
	struct trace_array *tr = inode->i_private;
T
Tom Zanussi 已提交
7355 7356
	int ret = 0;

7357 7358 7359
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
7360

T
Tom Zanussi 已提交
7361 7362
	/* If this file was opened for write, then erase contents */
	if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC))
7363
		clear_tracing_err_log(tr);
T
Tom Zanussi 已提交
7364

7365
	if (file->f_mode & FMODE_READ) {
T
Tom Zanussi 已提交
7366
		ret = seq_open(file, &tracing_err_log_seq_ops);
7367 7368 7369 7370 7371 7372 7373
		if (!ret) {
			struct seq_file *m = file->private_data;
			m->private = tr;
		} else {
			trace_array_put(tr);
		}
	}
T
Tom Zanussi 已提交
7374 7375 7376 7377 7378 7379 7380 7381 7382 7383
	return ret;
}

static ssize_t tracing_err_log_write(struct file *file,
				     const char __user *buffer,
				     size_t count, loff_t *ppos)
{
	return count;
}

7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395
static int tracing_err_log_release(struct inode *inode, struct file *file)
{
	struct trace_array *tr = inode->i_private;

	trace_array_put(tr);

	if (file->f_mode & FMODE_READ)
		seq_release(inode, file);

	return 0;
}

T
Tom Zanussi 已提交
7396 7397 7398 7399 7400
static const struct file_operations tracing_err_log_fops = {
	.open           = tracing_err_log_open,
	.write		= tracing_err_log_write,
	.read           = seq_read,
	.llseek         = seq_lseek,
7401
	.release        = tracing_err_log_release,
T
Tom Zanussi 已提交
7402 7403
};

7404 7405
static int tracing_buffers_open(struct inode *inode, struct file *filp)
{
7406
	struct trace_array *tr = inode->i_private;
7407
	struct ftrace_buffer_info *info;
7408
	int ret;
7409

7410 7411 7412
	ret = tracing_check_open_get_tr(tr);
	if (ret)
		return ret;
7413

7414
	info = kzalloc(sizeof(*info), GFP_KERNEL);
7415 7416
	if (!info) {
		trace_array_put(tr);
7417
		return -ENOMEM;
7418
	}
7419

7420 7421
	mutex_lock(&trace_types_lock);

7422
	info->iter.tr		= tr;
7423
	info->iter.cpu_file	= tracing_get_cpu(inode);
7424
	info->iter.trace	= tr->current_trace;
7425
	info->iter.array_buffer = &tr->array_buffer;
7426
	info->spare		= NULL;
7427
	/* Force reading ring buffer for first read */
7428
	info->read		= (unsigned int)-1;
7429 7430 7431

	filp->private_data = info;

7432 7433
	tr->current_trace->ref++;

7434 7435
	mutex_unlock(&trace_types_lock);

7436 7437 7438 7439 7440
	ret = nonseekable_open(inode, filp);
	if (ret < 0)
		trace_array_put(tr);

	return ret;
7441 7442
}

7443
static __poll_t
7444 7445 7446 7447 7448 7449 7450 7451
tracing_buffers_poll(struct file *filp, poll_table *poll_table)
{
	struct ftrace_buffer_info *info = filp->private_data;
	struct trace_iterator *iter = &info->iter;

	return trace_poll(iter, filp, poll_table);
}

7452 7453 7454 7455 7456
static ssize_t
tracing_buffers_read(struct file *filp, char __user *ubuf,
		     size_t count, loff_t *ppos)
{
	struct ftrace_buffer_info *info = filp->private_data;
7457
	struct trace_iterator *iter = &info->iter;
7458
	ssize_t ret = 0;
7459
	ssize_t size;
7460

7461 7462 7463
	if (!count)
		return 0;

7464
#ifdef CONFIG_TRACER_MAX_TRACE
7465 7466
	if (iter->snapshot && iter->tr->current_trace->use_max_tr)
		return -EBUSY;
7467 7468
#endif

7469
	if (!info->spare) {
7470
		info->spare = ring_buffer_alloc_read_page(iter->array_buffer->buffer,
7471
							  iter->cpu_file);
7472 7473 7474 7475 7476 7477
		if (IS_ERR(info->spare)) {
			ret = PTR_ERR(info->spare);
			info->spare = NULL;
		} else {
			info->spare_cpu = iter->cpu_file;
		}
7478
	}
7479
	if (!info->spare)
7480
		return ret;
7481

7482 7483 7484 7485
	/* Do we have previous read data to read? */
	if (info->read < PAGE_SIZE)
		goto read;

7486
 again:
7487
	trace_access_lock(iter->cpu_file);
7488
	ret = ring_buffer_read_page(iter->array_buffer->buffer,
7489 7490
				    &info->spare,
				    count,
7491 7492
				    iter->cpu_file, 0);
	trace_access_unlock(iter->cpu_file);
7493

7494 7495
	if (ret < 0) {
		if (trace_empty(iter)) {
7496 7497 7498
			if ((filp->f_flags & O_NONBLOCK))
				return -EAGAIN;

7499
			ret = wait_on_pipe(iter, 0);
7500 7501 7502
			if (ret)
				return ret;

7503 7504
			goto again;
		}
7505
		return 0;
7506
	}
7507 7508

	info->read = 0;
7509
 read:
7510 7511 7512 7513 7514
	size = PAGE_SIZE - info->read;
	if (size > count)
		size = count;

	ret = copy_to_user(ubuf, info->spare + info->read, size);
7515 7516 7517
	if (ret == size)
		return -EFAULT;

7518 7519
	size -= ret;

7520 7521 7522 7523 7524 7525 7526 7527 7528
	*ppos += size;
	info->read += size;

	return size;
}

static int tracing_buffers_release(struct inode *inode, struct file *file)
{
	struct ftrace_buffer_info *info = file->private_data;
7529
	struct trace_iterator *iter = &info->iter;
7530

7531 7532
	mutex_lock(&trace_types_lock);

7533 7534
	iter->tr->current_trace->ref--;

7535
	__trace_array_put(iter->tr);
7536

7537
	if (info->spare)
7538
		ring_buffer_free_read_page(iter->array_buffer->buffer,
7539
					   info->spare_cpu, info->spare);
7540 7541
	kfree(info);

7542 7543
	mutex_unlock(&trace_types_lock);

7544 7545 7546 7547
	return 0;
}

struct buffer_ref {
7548
	struct trace_buffer	*buffer;
7549
	void			*page;
7550
	int			cpu;
J
Jann Horn 已提交
7551
	refcount_t		refcount;
7552 7553
};

J
Jann Horn 已提交
7554 7555 7556 7557 7558 7559 7560 7561
static void buffer_ref_release(struct buffer_ref *ref)
{
	if (!refcount_dec_and_test(&ref->refcount))
		return;
	ring_buffer_free_read_page(ref->buffer, ref->cpu, ref->page);
	kfree(ref);
}

7562 7563 7564 7565 7566
static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
				    struct pipe_buffer *buf)
{
	struct buffer_ref *ref = (struct buffer_ref *)buf->private;

J
Jann Horn 已提交
7567
	buffer_ref_release(ref);
7568 7569 7570
	buf->private = 0;
}

7571
static bool buffer_pipe_buf_get(struct pipe_inode_info *pipe,
7572 7573 7574 7575
				struct pipe_buffer *buf)
{
	struct buffer_ref *ref = (struct buffer_ref *)buf->private;

7576
	if (refcount_read(&ref->refcount) > INT_MAX/2)
7577 7578
		return false;

J
Jann Horn 已提交
7579
	refcount_inc(&ref->refcount);
7580
	return true;
7581 7582 7583
}

/* Pipe buffer operations for a buffer. */
7584
static const struct pipe_buf_operations buffer_pipe_buf_ops = {
7585 7586
	.confirm		= generic_pipe_buf_confirm,
	.release		= buffer_pipe_buf_release,
J
Jann Horn 已提交
7587
	.steal			= generic_pipe_buf_nosteal,
7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599
	.get			= buffer_pipe_buf_get,
};

/*
 * Callback from splice_to_pipe(), if we need to release some pages
 * at the end of the spd in case we error'ed out in filling the pipe.
 */
static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
{
	struct buffer_ref *ref =
		(struct buffer_ref *)spd->partial[i].private;

J
Jann Horn 已提交
7600
	buffer_ref_release(ref);
7601 7602 7603 7604 7605 7606 7607 7608 7609
	spd->partial[i].private = 0;
}

static ssize_t
tracing_buffers_splice_read(struct file *file, loff_t *ppos,
			    struct pipe_inode_info *pipe, size_t len,
			    unsigned int flags)
{
	struct ftrace_buffer_info *info = file->private_data;
7610
	struct trace_iterator *iter = &info->iter;
7611 7612
	struct partial_page partial_def[PIPE_DEF_BUFFERS];
	struct page *pages_def[PIPE_DEF_BUFFERS];
7613
	struct splice_pipe_desc spd = {
7614 7615
		.pages		= pages_def,
		.partial	= partial_def,
7616
		.nr_pages_max	= PIPE_DEF_BUFFERS,
7617 7618 7619 7620
		.ops		= &buffer_pipe_buf_ops,
		.spd_release	= buffer_spd_release,
	};
	struct buffer_ref *ref;
7621
	int entries, i;
7622
	ssize_t ret = 0;
7623

7624
#ifdef CONFIG_TRACER_MAX_TRACE
7625 7626
	if (iter->snapshot && iter->tr->current_trace->use_max_tr)
		return -EBUSY;
7627 7628
#endif

7629 7630
	if (*ppos & (PAGE_SIZE - 1))
		return -EINVAL;
7631 7632

	if (len & (PAGE_SIZE - 1)) {
7633 7634
		if (len < PAGE_SIZE)
			return -EINVAL;
7635 7636 7637
		len &= PAGE_MASK;
	}

7638 7639 7640
	if (splice_grow_spd(pipe, &spd))
		return -ENOMEM;

7641 7642
 again:
	trace_access_lock(iter->cpu_file);
7643
	entries = ring_buffer_entries_cpu(iter->array_buffer->buffer, iter->cpu_file);
7644

7645
	for (i = 0; i < spd.nr_pages_max && len && entries; i++, len -= PAGE_SIZE) {
7646 7647 7648 7649
		struct page *page;
		int r;

		ref = kzalloc(sizeof(*ref), GFP_KERNEL);
7650 7651
		if (!ref) {
			ret = -ENOMEM;
7652
			break;
7653
		}
7654

J
Jann Horn 已提交
7655
		refcount_set(&ref->refcount, 1);
7656
		ref->buffer = iter->array_buffer->buffer;
7657
		ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file);
7658 7659 7660
		if (IS_ERR(ref->page)) {
			ret = PTR_ERR(ref->page);
			ref->page = NULL;
7661 7662 7663
			kfree(ref);
			break;
		}
7664
		ref->cpu = iter->cpu_file;
7665 7666

		r = ring_buffer_read_page(ref->buffer, &ref->page,
7667
					  len, iter->cpu_file, 1);
7668
		if (r < 0) {
7669 7670
			ring_buffer_free_read_page(ref->buffer, ref->cpu,
						   ref->page);
7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681
			kfree(ref);
			break;
		}

		page = virt_to_page(ref->page);

		spd.pages[i] = page;
		spd.partial[i].len = PAGE_SIZE;
		spd.partial[i].offset = 0;
		spd.partial[i].private = (unsigned long)ref;
		spd.nr_pages++;
7682
		*ppos += PAGE_SIZE;
7683

7684
		entries = ring_buffer_entries_cpu(iter->array_buffer->buffer, iter->cpu_file);
7685 7686
	}

7687
	trace_access_unlock(iter->cpu_file);
7688 7689 7690 7691
	spd.nr_pages = i;

	/* did we read anything? */
	if (!spd.nr_pages) {
7692
		if (ret)
7693
			goto out;
7694

7695
		ret = -EAGAIN;
7696
		if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK))
7697
			goto out;
7698

7699
		ret = wait_on_pipe(iter, iter->tr->buffer_percent);
7700
		if (ret)
7701
			goto out;
7702

7703
		goto again;
7704 7705 7706
	}

	ret = splice_to_pipe(pipe, &spd);
7707
out:
7708
	splice_shrink_spd(&spd);
7709

7710 7711 7712 7713 7714 7715
	return ret;
}

static const struct file_operations tracing_buffers_fops = {
	.open		= tracing_buffers_open,
	.read		= tracing_buffers_read,
7716
	.poll		= tracing_buffers_poll,
7717 7718 7719 7720 7721
	.release	= tracing_buffers_release,
	.splice_read	= tracing_buffers_splice_read,
	.llseek		= no_llseek,
};

7722 7723 7724 7725
static ssize_t
tracing_stats_read(struct file *filp, char __user *ubuf,
		   size_t count, loff_t *ppos)
{
7726 7727
	struct inode *inode = file_inode(filp);
	struct trace_array *tr = inode->i_private;
7728
	struct array_buffer *trace_buf = &tr->array_buffer;
7729
	int cpu = tracing_get_cpu(inode);
7730 7731
	struct trace_seq *s;
	unsigned long cnt;
7732 7733
	unsigned long long t;
	unsigned long usec_rem;
7734

7735
	s = kmalloc(sizeof(*s), GFP_KERNEL);
7736
	if (!s)
7737
		return -ENOMEM;
7738 7739 7740

	trace_seq_init(s);

7741
	cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu);
7742 7743
	trace_seq_printf(s, "entries: %ld\n", cnt);

7744
	cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu);
7745 7746
	trace_seq_printf(s, "overrun: %ld\n", cnt);

7747
	cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu);
7748 7749
	trace_seq_printf(s, "commit overrun: %ld\n", cnt);

7750
	cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu);
7751 7752
	trace_seq_printf(s, "bytes: %ld\n", cnt);

7753
	if (trace_clocks[tr->clock_id].in_ns) {
7754
		/* local or global for trace_clock */
7755
		t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
7756 7757 7758 7759
		usec_rem = do_div(t, USEC_PER_SEC);
		trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n",
								t, usec_rem);

7760
		t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer, cpu));
7761 7762 7763 7764 7765
		usec_rem = do_div(t, USEC_PER_SEC);
		trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
	} else {
		/* counter or tsc mode for trace_clock */
		trace_seq_printf(s, "oldest event ts: %llu\n",
7766
				ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
7767

7768
		trace_seq_printf(s, "now ts: %llu\n",
7769
				ring_buffer_time_stamp(trace_buf->buffer, cpu));
7770
	}
7771

7772
	cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu);
7773 7774
	trace_seq_printf(s, "dropped events: %ld\n", cnt);

7775
	cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu);
7776 7777
	trace_seq_printf(s, "read events: %ld\n", cnt);

7778 7779
	count = simple_read_from_buffer(ubuf, count, ppos,
					s->buffer, trace_seq_used(s));
7780 7781 7782 7783 7784 7785 7786

	kfree(s);

	return count;
}

static const struct file_operations tracing_stats_fops = {
7787
	.open		= tracing_open_generic_tr,
7788
	.read		= tracing_stats_read,
7789
	.llseek		= generic_file_llseek,
7790
	.release	= tracing_release_generic_tr,
7791 7792
};

7793 7794 7795
#ifdef CONFIG_DYNAMIC_FTRACE

static ssize_t
S
Steven Rostedt 已提交
7796
tracing_read_dyn_info(struct file *filp, char __user *ubuf,
7797 7798
		  size_t cnt, loff_t *ppos)
{
7799 7800
	ssize_t ret;
	char *buf;
7801 7802
	int r;

7803 7804 7805 7806
	/* 256 should be plenty to hold the amount needed */
	buf = kmalloc(256, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;
S
Steven Rostedt 已提交
7807

7808 7809 7810 7811 7812 7813 7814 7815
	r = scnprintf(buf, 256, "%ld pages:%ld groups: %ld\n",
		      ftrace_update_tot_cnt,
		      ftrace_number_of_pages,
		      ftrace_number_of_groups);

	ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
	kfree(buf);
	return ret;
7816 7817
}

7818
static const struct file_operations tracing_dyn_info_fops = {
I
Ingo Molnar 已提交
7819
	.open		= tracing_open_generic,
S
Steven Rostedt 已提交
7820
	.read		= tracing_read_dyn_info,
7821
	.llseek		= generic_file_llseek,
7822
};
7823
#endif /* CONFIG_DYNAMIC_FTRACE */
7824

7825 7826
#if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE)
static void
7827
ftrace_snapshot(unsigned long ip, unsigned long parent_ip,
7828
		struct trace_array *tr, struct ftrace_probe_ops *ops,
7829
		void *data)
7830
{
7831
	tracing_snapshot_instance(tr);
7832
}
7833

7834
static void
7835
ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip,
7836
		      struct trace_array *tr, struct ftrace_probe_ops *ops,
7837
		      void *data)
7838
{
7839
	struct ftrace_func_mapper *mapper = data;
7840
	long *count = NULL;
7841

7842 7843 7844 7845 7846 7847 7848
	if (mapper)
		count = (long *)ftrace_func_mapper_find_ip(mapper, ip);

	if (count) {

		if (*count <= 0)
			return;
7849

7850
		(*count)--;
7851
	}
7852

7853
	tracing_snapshot_instance(tr);
7854 7855 7856 7857 7858 7859
}

static int
ftrace_snapshot_print(struct seq_file *m, unsigned long ip,
		      struct ftrace_probe_ops *ops, void *data)
{
7860
	struct ftrace_func_mapper *mapper = data;
7861
	long *count = NULL;
7862 7863 7864

	seq_printf(m, "%ps:", (void *)ip);

7865
	seq_puts(m, "snapshot");
7866

7867 7868 7869 7870 7871
	if (mapper)
		count = (long *)ftrace_func_mapper_find_ip(mapper, ip);

	if (count)
		seq_printf(m, ":count=%ld\n", *count);
7872
	else
7873
		seq_puts(m, ":unlimited\n");
7874 7875 7876 7877

	return 0;
}

7878
static int
7879
ftrace_snapshot_init(struct ftrace_probe_ops *ops, struct trace_array *tr,
7880
		     unsigned long ip, void *init_data, void **data)
7881
{
7882 7883 7884 7885 7886 7887 7888 7889
	struct ftrace_func_mapper *mapper = *data;

	if (!mapper) {
		mapper = allocate_ftrace_func_mapper();
		if (!mapper)
			return -ENOMEM;
		*data = mapper;
	}
7890

7891
	return ftrace_func_mapper_add_ip(mapper, ip, init_data);
7892 7893 7894
}

static void
7895
ftrace_snapshot_free(struct ftrace_probe_ops *ops, struct trace_array *tr,
7896
		     unsigned long ip, void *data)
7897
{
7898 7899 7900 7901 7902 7903 7904 7905
	struct ftrace_func_mapper *mapper = data;

	if (!ip) {
		if (!mapper)
			return;
		free_ftrace_func_mapper(mapper, NULL);
		return;
	}
7906 7907 7908 7909

	ftrace_func_mapper_remove_ip(mapper, ip);
}

7910 7911 7912 7913 7914 7915 7916 7917
static struct ftrace_probe_ops snapshot_probe_ops = {
	.func			= ftrace_snapshot,
	.print			= ftrace_snapshot_print,
};

static struct ftrace_probe_ops snapshot_count_probe_ops = {
	.func			= ftrace_count_snapshot,
	.print			= ftrace_snapshot_print,
7918 7919
	.init			= ftrace_snapshot_init,
	.free			= ftrace_snapshot_free,
7920 7921 7922
};

static int
7923
ftrace_trace_snapshot_callback(struct trace_array *tr, struct ftrace_hash *hash,
7924 7925 7926 7927 7928 7929 7930
			       char *glob, char *cmd, char *param, int enable)
{
	struct ftrace_probe_ops *ops;
	void *count = (void *)-1;
	char *number;
	int ret;

7931 7932 7933
	if (!tr)
		return -ENODEV;

7934 7935 7936 7937 7938 7939
	/* hash funcs only work with set_ftrace_filter */
	if (!enable)
		return -EINVAL;

	ops = param ? &snapshot_count_probe_ops :  &snapshot_probe_ops;

7940
	if (glob[0] == '!')
7941
		return unregister_ftrace_function_probe_func(glob+1, tr, ops);
7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959

	if (!param)
		goto out_reg;

	number = strsep(&param, ":");

	if (!strlen(number))
		goto out_reg;

	/*
	 * We use the callback data field (which is a pointer)
	 * as our counter.
	 */
	ret = kstrtoul(number, 0, (unsigned long *)&count);
	if (ret)
		return ret;

 out_reg:
7960
	ret = tracing_alloc_snapshot_instance(tr);
7961 7962
	if (ret < 0)
		goto out;
7963

7964
	ret = register_ftrace_function_probe(glob, tr, ops, count);
7965

7966
 out:
7967 7968 7969 7970 7971 7972 7973 7974
	return ret < 0 ? ret : 0;
}

static struct ftrace_func_command ftrace_snapshot_cmd = {
	.name			= "snapshot",
	.func			= ftrace_trace_snapshot_callback,
};

7975
static __init int register_snapshot_cmd(void)
7976 7977 7978 7979
{
	return register_ftrace_command(&ftrace_snapshot_cmd);
}
#else
7980
static inline __init int register_snapshot_cmd(void) { return 0; }
7981
#endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */
7982

7983
static struct dentry *tracing_get_dentry(struct trace_array *tr)
7984
{
7985 7986 7987 7988 7989 7990 7991 7992
	if (WARN_ON(!tr->dir))
		return ERR_PTR(-ENODEV);

	/* Top directory uses NULL as the parent */
	if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
		return NULL;

	/* All sub buffers have a descriptor */
7993
	return tr->dir;
7994 7995
}

7996
static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu)
7997 7998 7999
{
	struct dentry *d_tracer;

8000 8001
	if (tr->percpu_dir)
		return tr->percpu_dir;
8002

8003
	d_tracer = tracing_get_dentry(tr);
8004
	if (IS_ERR(d_tracer))
8005 8006
		return NULL;

8007
	tr->percpu_dir = tracefs_create_dir("per_cpu", d_tracer);
8008

8009
	MEM_FAIL(!tr->percpu_dir,
8010
		  "Could not create tracefs directory 'per_cpu/%d'\n", cpu);
8011

8012
	return tr->percpu_dir;
8013 8014
}

8015 8016 8017 8018 8019 8020 8021
static struct dentry *
trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent,
		      void *data, long cpu, const struct file_operations *fops)
{
	struct dentry *ret = trace_create_file(name, mode, parent, data, fops);

	if (ret) /* See tracing_get_cpu() */
8022
		d_inode(ret)->i_cdev = (void *)(cpu + 1);
8023 8024 8025
	return ret;
}

8026
static void
8027
tracing_init_tracefs_percpu(struct trace_array *tr, long cpu)
8028
{
8029
	struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu);
8030
	struct dentry *d_cpu;
8031
	char cpu_dir[30]; /* 30 characters should be more than enough */
8032

8033 8034 8035
	if (!d_percpu)
		return;

8036
	snprintf(cpu_dir, 30, "cpu%ld", cpu);
8037
	d_cpu = tracefs_create_dir(cpu_dir, d_percpu);
8038
	if (!d_cpu) {
8039
		pr_warn("Could not create tracefs '%s' entry\n", cpu_dir);
8040 8041
		return;
	}
8042

8043
	/* per cpu trace_pipe */
8044
	trace_create_cpu_file("trace_pipe", 0444, d_cpu,
8045
				tr, cpu, &tracing_pipe_fops);
8046 8047

	/* per cpu trace */
8048
	trace_create_cpu_file("trace", 0644, d_cpu,
8049
				tr, cpu, &tracing_fops);
8050

8051
	trace_create_cpu_file("trace_pipe_raw", 0444, d_cpu,
8052
				tr, cpu, &tracing_buffers_fops);
8053

8054
	trace_create_cpu_file("stats", 0444, d_cpu,
8055
				tr, cpu, &tracing_stats_fops);
8056

8057
	trace_create_cpu_file("buffer_size_kb", 0444, d_cpu,
8058
				tr, cpu, &tracing_entries_fops);
8059 8060

#ifdef CONFIG_TRACER_SNAPSHOT
8061
	trace_create_cpu_file("snapshot", 0644, d_cpu,
8062
				tr, cpu, &snapshot_fops);
8063

8064
	trace_create_cpu_file("snapshot_raw", 0444, d_cpu,
8065
				tr, cpu, &snapshot_raw_fops);
8066
#endif
8067 8068
}

S
Steven Rostedt 已提交
8069 8070 8071 8072 8073
#ifdef CONFIG_FTRACE_SELFTEST
/* Let selftest have access to static functions in this file */
#include "trace_selftest.c"
#endif

8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096
static ssize_t
trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
			loff_t *ppos)
{
	struct trace_option_dentry *topt = filp->private_data;
	char *buf;

	if (topt->flags->val & topt->opt->bit)
		buf = "1\n";
	else
		buf = "0\n";

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
}

static ssize_t
trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
			 loff_t *ppos)
{
	struct trace_option_dentry *topt = filp->private_data;
	unsigned long val;
	int ret;

8097 8098
	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
8099 8100
		return ret;

L
Li Zefan 已提交
8101 8102
	if (val != 0 && val != 1)
		return -EINVAL;
8103

L
Li Zefan 已提交
8104
	if (!!(topt->flags->val & topt->opt->bit) != val) {
8105
		mutex_lock(&trace_types_lock);
8106
		ret = __set_tracer_option(topt->tr, topt->flags,
8107
					  topt->opt, !val);
8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122
		mutex_unlock(&trace_types_lock);
		if (ret)
			return ret;
	}

	*ppos += cnt;

	return cnt;
}


static const struct file_operations trace_options_fops = {
	.open = tracing_open_generic,
	.read = trace_options_read,
	.write = trace_options_write,
8123
	.llseek	= generic_file_llseek,
8124 8125
};

8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158
/*
 * In order to pass in both the trace_array descriptor as well as the index
 * to the flag that the trace option file represents, the trace_array
 * has a character array of trace_flags_index[], which holds the index
 * of the bit for the flag it represents. index[0] == 0, index[1] == 1, etc.
 * The address of this character array is passed to the flag option file
 * read/write callbacks.
 *
 * In order to extract both the index and the trace_array descriptor,
 * get_tr_index() uses the following algorithm.
 *
 *   idx = *ptr;
 *
 * As the pointer itself contains the address of the index (remember
 * index[1] == 1).
 *
 * Then to get the trace_array descriptor, by subtracting that index
 * from the ptr, we get to the start of the index itself.
 *
 *   ptr - idx == &index[0]
 *
 * Then a simple container_of() from that pointer gets us to the
 * trace_array descriptor.
 */
static void get_tr_index(void *data, struct trace_array **ptr,
			 unsigned int *pindex)
{
	*pindex = *(unsigned char *)data;

	*ptr = container_of(data - *pindex, struct trace_array,
			    trace_flags_index);
}

8159 8160 8161 8162
static ssize_t
trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
			loff_t *ppos)
{
8163 8164 8165
	void *tr_index = filp->private_data;
	struct trace_array *tr;
	unsigned int index;
8166 8167
	char *buf;

8168 8169 8170
	get_tr_index(tr_index, &tr, &index);

	if (tr->trace_flags & (1 << index))
8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181
		buf = "1\n";
	else
		buf = "0\n";

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
}

static ssize_t
trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
			 loff_t *ppos)
{
8182 8183 8184
	void *tr_index = filp->private_data;
	struct trace_array *tr;
	unsigned int index;
8185 8186 8187
	unsigned long val;
	int ret;

8188 8189
	get_tr_index(tr_index, &tr, &index);

8190 8191
	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
8192 8193
		return ret;

8194
	if (val != 0 && val != 1)
8195
		return -EINVAL;
8196

8197
	mutex_lock(&event_mutex);
8198
	mutex_lock(&trace_types_lock);
8199
	ret = set_tracer_flag(tr, 1 << index, val);
8200
	mutex_unlock(&trace_types_lock);
8201
	mutex_unlock(&event_mutex);
8202

8203 8204 8205
	if (ret < 0)
		return ret;

8206 8207 8208 8209 8210 8211 8212 8213 8214
	*ppos += cnt;

	return cnt;
}

static const struct file_operations trace_options_core_fops = {
	.open = tracing_open_generic,
	.read = trace_options_core_read,
	.write = trace_options_core_write,
8215
	.llseek = generic_file_llseek,
8216 8217
};

8218
struct dentry *trace_create_file(const char *name,
A
Al Viro 已提交
8219
				 umode_t mode,
8220 8221 8222 8223 8224 8225
				 struct dentry *parent,
				 void *data,
				 const struct file_operations *fops)
{
	struct dentry *ret;

8226
	ret = tracefs_create_file(name, mode, parent, data, fops);
8227
	if (!ret)
8228
		pr_warn("Could not create tracefs '%s' entry\n", name);
8229 8230 8231 8232 8233

	return ret;
}


8234
static struct dentry *trace_options_init_dentry(struct trace_array *tr)
8235 8236 8237
{
	struct dentry *d_tracer;

8238 8239
	if (tr->options)
		return tr->options;
8240

8241
	d_tracer = tracing_get_dentry(tr);
8242
	if (IS_ERR(d_tracer))
8243 8244
		return NULL;

8245
	tr->options = tracefs_create_dir("options", d_tracer);
8246
	if (!tr->options) {
8247
		pr_warn("Could not create tracefs directory 'options'\n");
8248 8249 8250
		return NULL;
	}

8251
	return tr->options;
8252 8253
}

8254
static void
8255 8256
create_trace_option_file(struct trace_array *tr,
			 struct trace_option_dentry *topt,
8257 8258 8259 8260 8261
			 struct tracer_flags *flags,
			 struct tracer_opt *opt)
{
	struct dentry *t_options;

8262
	t_options = trace_options_init_dentry(tr);
8263 8264 8265 8266 8267
	if (!t_options)
		return;

	topt->flags = flags;
	topt->opt = opt;
8268
	topt->tr = tr;
8269

8270
	topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
8271 8272 8273 8274
				    &trace_options_fops);

}

8275
static void
8276
create_trace_option_files(struct trace_array *tr, struct tracer *tracer)
8277 8278
{
	struct trace_option_dentry *topts;
8279
	struct trace_options *tr_topts;
8280 8281 8282
	struct tracer_flags *flags;
	struct tracer_opt *opts;
	int cnt;
8283
	int i;
8284 8285

	if (!tracer)
8286
		return;
8287 8288 8289 8290

	flags = tracer->flags;

	if (!flags || !flags->opts)
8291 8292 8293 8294 8295 8296 8297 8298 8299 8300
		return;

	/*
	 * If this is an instance, only create flags for tracers
	 * the instance may have.
	 */
	if (!trace_ok_for_array(tracer, tr))
		return;

	for (i = 0; i < tr->nr_topts; i++) {
8301 8302
		/* Make sure there's no duplicate flags. */
		if (WARN_ON_ONCE(tr->topts[i].tracer->flags == tracer->flags))
8303 8304
			return;
	}
8305 8306 8307 8308 8309 8310

	opts = flags->opts;

	for (cnt = 0; opts[cnt].name; cnt++)
		;

8311
	topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
8312
	if (!topts)
8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325
		return;

	tr_topts = krealloc(tr->topts, sizeof(*tr->topts) * (tr->nr_topts + 1),
			    GFP_KERNEL);
	if (!tr_topts) {
		kfree(topts);
		return;
	}

	tr->topts = tr_topts;
	tr->topts[tr->nr_topts].tracer = tracer;
	tr->topts[tr->nr_topts].topts = topts;
	tr->nr_topts++;
8326

8327
	for (cnt = 0; opts[cnt].name; cnt++) {
8328
		create_trace_option_file(tr, &topts[cnt], flags,
8329
					 &opts[cnt]);
8330
		MEM_FAIL(topts[cnt].entry == NULL,
8331 8332 8333
			  "Failed to create trace option: %s",
			  opts[cnt].name);
	}
8334 8335
}

8336
static struct dentry *
8337 8338
create_trace_option_core_file(struct trace_array *tr,
			      const char *option, long index)
8339 8340 8341
{
	struct dentry *t_options;

8342
	t_options = trace_options_init_dentry(tr);
8343 8344 8345
	if (!t_options)
		return NULL;

8346 8347 8348
	return trace_create_file(option, 0644, t_options,
				 (void *)&tr->trace_flags_index[index],
				 &trace_options_core_fops);
8349 8350
}

8351
static void create_trace_options_dir(struct trace_array *tr)
8352 8353
{
	struct dentry *t_options;
8354
	bool top_level = tr == &global_trace;
8355 8356
	int i;

8357
	t_options = trace_options_init_dentry(tr);
8358 8359 8360
	if (!t_options)
		return;

8361 8362 8363 8364 8365
	for (i = 0; trace_options[i]; i++) {
		if (top_level ||
		    !((1 << i) & TOP_LEVEL_TRACE_FLAGS))
			create_trace_option_core_file(tr, trace_options[i], i);
	}
8366 8367
}

8368 8369 8370 8371
static ssize_t
rb_simple_read(struct file *filp, char __user *ubuf,
	       size_t cnt, loff_t *ppos)
{
8372
	struct trace_array *tr = filp->private_data;
8373 8374 8375
	char buf[64];
	int r;

8376
	r = tracer_tracing_is_on(tr);
8377 8378 8379 8380 8381 8382 8383 8384 8385
	r = sprintf(buf, "%d\n", r);

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
}

static ssize_t
rb_simple_write(struct file *filp, const char __user *ubuf,
		size_t cnt, loff_t *ppos)
{
8386
	struct trace_array *tr = filp->private_data;
8387
	struct trace_buffer *buffer = tr->array_buffer.buffer;
8388 8389 8390 8391 8392 8393 8394 8395
	unsigned long val;
	int ret;

	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
		return ret;

	if (buffer) {
8396
		mutex_lock(&trace_types_lock);
8397 8398 8399
		if (!!val == tracer_tracing_is_on(tr)) {
			val = 0; /* do nothing */
		} else if (val) {
8400
			tracer_tracing_on(tr);
8401 8402
			if (tr->current_trace->start)
				tr->current_trace->start(tr);
8403
		} else {
8404
			tracer_tracing_off(tr);
8405 8406
			if (tr->current_trace->stop)
				tr->current_trace->stop(tr);
8407 8408
		}
		mutex_unlock(&trace_types_lock);
8409 8410 8411 8412 8413 8414 8415 8416
	}

	(*ppos)++;

	return cnt;
}

static const struct file_operations rb_simple_fops = {
8417
	.open		= tracing_open_generic_tr,
8418 8419
	.read		= rb_simple_read,
	.write		= rb_simple_write,
8420
	.release	= tracing_release_generic_tr,
8421 8422 8423
	.llseek		= default_llseek,
};

8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470
static ssize_t
buffer_percent_read(struct file *filp, char __user *ubuf,
		    size_t cnt, loff_t *ppos)
{
	struct trace_array *tr = filp->private_data;
	char buf[64];
	int r;

	r = tr->buffer_percent;
	r = sprintf(buf, "%d\n", r);

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
}

static ssize_t
buffer_percent_write(struct file *filp, const char __user *ubuf,
		     size_t cnt, loff_t *ppos)
{
	struct trace_array *tr = filp->private_data;
	unsigned long val;
	int ret;

	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
	if (ret)
		return ret;

	if (val > 100)
		return -EINVAL;

	if (!val)
		val = 1;

	tr->buffer_percent = val;

	(*ppos)++;

	return cnt;
}

static const struct file_operations buffer_percent_fops = {
	.open		= tracing_open_generic_tr,
	.read		= buffer_percent_read,
	.write		= buffer_percent_write,
	.release	= tracing_release_generic_tr,
	.llseek		= default_llseek,
};

Y
YueHaibing 已提交
8471
static struct dentry *trace_instance_dir;
8472 8473

static void
8474
init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer);
8475

8476
static int
8477
allocate_trace_buffer(struct trace_array *tr, struct array_buffer *buf, int size)
8478 8479
{
	enum ring_buffer_flags rb_flags;
8480

8481
	rb_flags = tr->trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
8482

8483 8484
	buf->tr = tr;

8485 8486 8487
	buf->buffer = ring_buffer_alloc(size, rb_flags);
	if (!buf->buffer)
		return -ENOMEM;
8488

8489 8490 8491
	buf->data = alloc_percpu(struct trace_array_cpu);
	if (!buf->data) {
		ring_buffer_free(buf->buffer);
8492
		buf->buffer = NULL;
8493 8494
		return -ENOMEM;
	}
8495 8496

	/* Allocate the first page for all buffers */
8497 8498
	set_buffer_entries(&tr->array_buffer,
			   ring_buffer_size(tr->array_buffer.buffer, 0));
8499

8500 8501
	return 0;
}
8502

8503 8504 8505
static int allocate_trace_buffers(struct trace_array *tr, int size)
{
	int ret;
8506

8507
	ret = allocate_trace_buffer(tr, &tr->array_buffer, size);
8508 8509
	if (ret)
		return ret;
8510

8511 8512 8513
#ifdef CONFIG_TRACER_MAX_TRACE
	ret = allocate_trace_buffer(tr, &tr->max_buffer,
				    allocate_snapshot ? size : 1);
8514
	if (MEM_FAIL(ret, "Failed to allocate trace buffer\n")) {
8515 8516 8517 8518
		ring_buffer_free(tr->array_buffer.buffer);
		tr->array_buffer.buffer = NULL;
		free_percpu(tr->array_buffer.data);
		tr->array_buffer.data = NULL;
8519 8520 8521
		return -ENOMEM;
	}
	tr->allocated_snapshot = allocate_snapshot;
8522

8523 8524 8525 8526 8527
	/*
	 * Only the top level trace array gets its snapshot allocated
	 * from the kernel command line.
	 */
	allocate_snapshot = false;
8528
#endif
8529

8530
	return 0;
8531 8532
}

8533
static void free_trace_buffer(struct array_buffer *buf)
8534 8535 8536 8537 8538 8539 8540 8541 8542
{
	if (buf->buffer) {
		ring_buffer_free(buf->buffer);
		buf->buffer = NULL;
		free_percpu(buf->data);
		buf->data = NULL;
	}
}

8543 8544 8545 8546 8547
static void free_trace_buffers(struct trace_array *tr)
{
	if (!tr)
		return;

8548
	free_trace_buffer(&tr->array_buffer);
8549 8550

#ifdef CONFIG_TRACER_MAX_TRACE
8551
	free_trace_buffer(&tr->max_buffer);
8552 8553 8554
#endif
}

8555 8556 8557 8558 8559 8560 8561 8562 8563
static void init_trace_flags_index(struct trace_array *tr)
{
	int i;

	/* Used by the trace options files */
	for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++)
		tr->trace_flags_index[i] = i;
}

8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578
static void __update_tracer_options(struct trace_array *tr)
{
	struct tracer *t;

	for (t = trace_types; t; t = t->next)
		add_tracer_options(tr, t);
}

static void update_tracer_options(struct trace_array *tr)
{
	mutex_lock(&trace_types_lock);
	__update_tracer_options(tr);
	mutex_unlock(&trace_types_lock);
}

8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606
/* Must have trace_types_lock held */
struct trace_array *trace_array_find(const char *instance)
{
	struct trace_array *tr, *found = NULL;

	list_for_each_entry(tr, &ftrace_trace_arrays, list) {
		if (tr->name && strcmp(tr->name, instance) == 0) {
			found = tr;
			break;
		}
	}

	return found;
}

struct trace_array *trace_array_find_get(const char *instance)
{
	struct trace_array *tr;

	mutex_lock(&trace_types_lock);
	tr = trace_array_find(instance);
	if (tr)
		tr->ref++;
	mutex_unlock(&trace_types_lock);

	return tr;
}

8607
static struct trace_array *trace_array_create(const char *name)
8608
{
8609 8610 8611 8612 8613 8614
	struct trace_array *tr;
	int ret;

	ret = -ENOMEM;
	tr = kzalloc(sizeof(*tr), GFP_KERNEL);
	if (!tr)
8615
		return ERR_PTR(ret);
8616 8617 8618 8619 8620

	tr->name = kstrdup(name, GFP_KERNEL);
	if (!tr->name)
		goto out_free_tr;

8621 8622 8623
	if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL))
		goto out_free_tr;

8624
	tr->trace_flags = global_trace.trace_flags & ~ZEROED_TRACE_FLAGS;
8625

8626 8627
	cpumask_copy(tr->tracing_cpumask, cpu_all_mask);

8628 8629
	raw_spin_lock_init(&tr->start_lock);

8630 8631
	tr->max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;

8632 8633 8634 8635
	tr->current_trace = &nop_trace;

	INIT_LIST_HEAD(&tr->systems);
	INIT_LIST_HEAD(&tr->events);
8636
	INIT_LIST_HEAD(&tr->hist_vars);
8637
	INIT_LIST_HEAD(&tr->err_log);
8638

8639
	if (allocate_trace_buffers(tr, trace_buf_size) < 0)
8640 8641
		goto out_free_tr;

8642
	tr->dir = tracefs_create_dir(name, trace_instance_dir);
8643 8644 8645 8646
	if (!tr->dir)
		goto out_free_tr;

	ret = event_trace_add_tracer(tr->dir, tr);
8647
	if (ret) {
8648
		tracefs_remove(tr->dir);
8649
		goto out_free_tr;
8650
	}
8651

8652 8653
	ftrace_init_trace_array(tr);

8654
	init_tracer_tracefs(tr, tr->dir);
8655
	init_trace_flags_index(tr);
8656
	__update_tracer_options(tr);
8657 8658 8659

	list_add(&tr->list, &ftrace_trace_arrays);

8660 8661
	tr->ref++;

8662

8663
	return tr;
8664 8665

 out_free_tr:
8666
	free_trace_buffers(tr);
8667
	free_cpumask_var(tr->tracing_cpumask);
8668 8669 8670
	kfree(tr->name);
	kfree(tr);

8671 8672
	return ERR_PTR(ret);
}
8673

8674 8675
static int instance_mkdir(const char *name)
{
8676 8677 8678 8679 8680 8681 8682
	struct trace_array *tr;
	int ret;

	mutex_lock(&event_mutex);
	mutex_lock(&trace_types_lock);

	ret = -EEXIST;
8683 8684
	if (trace_array_find(name))
		goto out_unlock;
8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705

	tr = trace_array_create(name);

	ret = PTR_ERR_OR_ZERO(tr);

out_unlock:
	mutex_unlock(&trace_types_lock);
	mutex_unlock(&event_mutex);
	return ret;
}

/**
 * trace_array_get_by_name - Create/Lookup a trace array, given its name.
 * @name: The name of the trace array to be looked up/created.
 *
 * Returns pointer to trace array with given name.
 * NULL, if it cannot be created.
 *
 * NOTE: This function increments the reference counter associated with the
 * trace array returned. This makes sure it cannot be freed while in use.
 * Use trace_array_put() once the trace array is no longer needed.
8706 8707 8708 8709
 * If the trace_array is to be freed, trace_array_destroy() needs to
 * be called after the trace_array_put(), or simply let user space delete
 * it from the tracefs instances directory. But until the
 * trace_array_put() is called, user space can not delete it.
8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734
 *
 */
struct trace_array *trace_array_get_by_name(const char *name)
{
	struct trace_array *tr;

	mutex_lock(&event_mutex);
	mutex_lock(&trace_types_lock);

	list_for_each_entry(tr, &ftrace_trace_arrays, list) {
		if (tr->name && strcmp(tr->name, name) == 0)
			goto out_unlock;
	}

	tr = trace_array_create(name);

	if (IS_ERR(tr))
		tr = NULL;
out_unlock:
	if (tr)
		tr->ref++;

	mutex_unlock(&trace_types_lock);
	mutex_unlock(&event_mutex);
	return tr;
8735
}
8736
EXPORT_SYMBOL_GPL(trace_array_get_by_name);
8737

8738
static int __remove_instance(struct trace_array *tr)
8739
{
8740
	int i;
8741

8742 8743
	/* Reference counter for a newly created trace array = 1. */
	if (tr->ref > 1 || (tr->current_trace && tr->current_trace->ref))
8744
		return -EBUSY;
8745

8746 8747
	list_del(&tr->list);

8748 8749 8750 8751 8752 8753
	/* Disable all the flags that were enabled coming in */
	for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++) {
		if ((1 << i) & ZEROED_TRACE_FLAGS)
			set_tracer_flag(tr, 1 << i, 0);
	}

8754
	tracing_set_nop(tr);
8755
	clear_ftrace_function_probes(tr);
8756
	event_trace_del_tracer(tr);
8757
	ftrace_clear_pids(tr);
8758
	ftrace_destroy_function_files(tr);
8759
	tracefs_remove(tr->dir);
8760
	free_trace_buffers(tr);
8761

8762 8763 8764 8765 8766
	for (i = 0; i < tr->nr_topts; i++) {
		kfree(tr->topts[i].topts);
	}
	kfree(tr->topts);

8767
	free_cpumask_var(tr->tracing_cpumask);
8768 8769
	kfree(tr->name);
	kfree(tr);
8770
	tr = NULL;
8771

8772 8773 8774
	return 0;
}

8775
int trace_array_destroy(struct trace_array *this_tr)
8776
{
8777
	struct trace_array *tr;
8778 8779
	int ret;

8780
	if (!this_tr)
8781 8782 8783 8784 8785
		return -EINVAL;

	mutex_lock(&event_mutex);
	mutex_lock(&trace_types_lock);

8786 8787 8788 8789 8790 8791 8792 8793 8794
	ret = -ENODEV;

	/* Making sure trace array exists before destroying it. */
	list_for_each_entry(tr, &ftrace_trace_arrays, list) {
		if (tr == this_tr) {
			ret = __remove_instance(tr);
			break;
		}
	}
8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811

	mutex_unlock(&trace_types_lock);
	mutex_unlock(&event_mutex);

	return ret;
}
EXPORT_SYMBOL_GPL(trace_array_destroy);

static int instance_rmdir(const char *name)
{
	struct trace_array *tr;
	int ret;

	mutex_lock(&event_mutex);
	mutex_lock(&trace_types_lock);

	ret = -ENODEV;
8812 8813 8814
	tr = trace_array_find(name);
	if (tr)
		ret = __remove_instance(tr);
8815 8816

	mutex_unlock(&trace_types_lock);
8817
	mutex_unlock(&event_mutex);
8818 8819 8820 8821

	return ret;
}

8822 8823
static __init void create_trace_instances(struct dentry *d_tracer)
{
8824 8825 8826
	trace_instance_dir = tracefs_create_instance_dir("instances", d_tracer,
							 instance_mkdir,
							 instance_rmdir);
8827
	if (MEM_FAIL(!trace_instance_dir, "Failed to create instances directory\n"))
8828 8829 8830
		return;
}

8831
static void
8832
init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer)
8833
{
8834
	struct trace_event_file *file;
8835
	int cpu;
8836

8837 8838 8839 8840 8841 8842
	trace_create_file("available_tracers", 0444, d_tracer,
			tr, &show_traces_fops);

	trace_create_file("current_tracer", 0644, d_tracer,
			tr, &set_tracer_fops);

8843 8844 8845
	trace_create_file("tracing_cpumask", 0644, d_tracer,
			  tr, &tracing_cpumask_fops);

8846 8847 8848 8849
	trace_create_file("trace_options", 0644, d_tracer,
			  tr, &tracing_iter_fops);

	trace_create_file("trace", 0644, d_tracer,
8850
			  tr, &tracing_fops);
8851 8852

	trace_create_file("trace_pipe", 0444, d_tracer,
8853
			  tr, &tracing_pipe_fops);
8854 8855

	trace_create_file("buffer_size_kb", 0644, d_tracer,
8856
			  tr, &tracing_entries_fops);
8857 8858 8859 8860

	trace_create_file("buffer_total_size_kb", 0444, d_tracer,
			  tr, &tracing_total_entries_fops);

8861
	trace_create_file("free_buffer", 0200, d_tracer,
8862 8863 8864 8865 8866
			  tr, &tracing_free_buffer_fops);

	trace_create_file("trace_marker", 0220, d_tracer,
			  tr, &tracing_mark_fops);

8867 8868 8869 8870 8871 8872
	file = __find_event_file(tr, "ftrace", "print");
	if (file && file->dir)
		trace_create_file("trigger", 0644, file->dir, file,
				  &event_trigger_fops);
	tr->trace_marker_file = file;

S
Steven Rostedt 已提交
8873 8874 8875
	trace_create_file("trace_marker_raw", 0220, d_tracer,
			  tr, &tracing_mark_raw_fops);

8876 8877 8878 8879
	trace_create_file("trace_clock", 0644, d_tracer, tr,
			  &trace_clock_fops);

	trace_create_file("tracing_on", 0644, d_tracer,
8880
			  tr, &rb_simple_fops);
8881

8882 8883 8884
	trace_create_file("timestamp_mode", 0444, d_tracer, tr,
			  &trace_time_stamp_mode_fops);

8885
	tr->buffer_percent = 50;
8886 8887 8888 8889

	trace_create_file("buffer_percent", 0444, d_tracer,
			tr, &buffer_percent_fops);

8890 8891
	create_trace_options_dir(tr);

8892
#if defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)
8893
	trace_create_maxlat_file(tr, d_tracer);
8894 8895
#endif

8896
	if (ftrace_create_function_files(tr, d_tracer))
8897
		MEM_FAIL(1, "Could not allocate function filter files");
8898

8899 8900
#ifdef CONFIG_TRACER_SNAPSHOT
	trace_create_file("snapshot", 0644, d_tracer,
8901
			  tr, &snapshot_fops);
8902
#endif
8903

T
Tom Zanussi 已提交
8904 8905 8906
	trace_create_file("error_log", 0644, d_tracer,
			  tr, &tracing_err_log_fops);

8907
	for_each_tracing_cpu(cpu)
8908
		tracing_init_tracefs_percpu(tr, cpu);
8909

8910
	ftrace_init_tracefs(tr, d_tracer);
8911 8912
}

8913
static struct vfsmount *trace_automount(struct dentry *mntpt, void *ingore)
8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925
{
	struct vfsmount *mnt;
	struct file_system_type *type;

	/*
	 * To maintain backward compatibility for tools that mount
	 * debugfs to get to the tracing facility, tracefs is automatically
	 * mounted to the debugfs/tracing directory.
	 */
	type = get_fs_type("tracefs");
	if (!type)
		return NULL;
8926
	mnt = vfs_submount(mntpt, type, "tracefs", NULL);
8927 8928 8929 8930 8931 8932 8933 8934
	put_filesystem(type);
	if (IS_ERR(mnt))
		return NULL;
	mntget(mnt);

	return mnt;
}

8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945
/**
 * tracing_init_dentry - initialize top level trace array
 *
 * This is called when creating files or directories in the tracing
 * directory. It is called via fs_initcall() by any of the boot up code
 * and expects to return the dentry of the top level tracing directory.
 */
struct dentry *tracing_init_dentry(void)
{
	struct trace_array *tr = &global_trace;

8946
	if (security_locked_down(LOCKDOWN_TRACEFS)) {
8947
		pr_warn("Tracing disabled due to lockdown\n");
8948 8949 8950
		return ERR_PTR(-EPERM);
	}

8951
	/* The top level trace array uses  NULL as parent */
8952
	if (tr->dir)
8953
		return NULL;
8954

8955 8956 8957
	if (WARN_ON(!tracefs_initialized()) ||
		(IS_ENABLED(CONFIG_DEBUG_FS) &&
		 WARN_ON(!debugfs_initialized())))
8958 8959
		return ERR_PTR(-ENODEV);

8960 8961 8962 8963 8964 8965 8966 8967
	/*
	 * As there may still be users that expect the tracing
	 * files to exist in debugfs/tracing, we must automount
	 * the tracefs file system there, so older tools still
	 * work with the newer kerenl.
	 */
	tr->dir = debugfs_create_automount("tracing", NULL,
					   trace_automount, NULL);
8968

8969
	return NULL;
8970 8971
}

8972 8973
extern struct trace_eval_map *__start_ftrace_eval_maps[];
extern struct trace_eval_map *__stop_ftrace_eval_maps[];
8974

8975
static void __init trace_eval_init(void)
8976
{
8977 8978
	int len;

8979
	len = __stop_ftrace_eval_maps - __start_ftrace_eval_maps;
J
Jeremy Linton 已提交
8980
	trace_insert_eval_map(NULL, __start_ftrace_eval_maps, len);
8981 8982 8983
}

#ifdef CONFIG_MODULES
J
Jeremy Linton 已提交
8984
static void trace_module_add_evals(struct module *mod)
8985
{
8986
	if (!mod->num_trace_evals)
8987 8988 8989 8990 8991 8992 8993 8994 8995
		return;

	/*
	 * Modules with bad taint do not have events created, do
	 * not bother with enums either.
	 */
	if (trace_module_has_bad_taint(mod))
		return;

J
Jeremy Linton 已提交
8996
	trace_insert_eval_map(mod, mod->trace_evals, mod->num_trace_evals);
8997 8998
}

8999
#ifdef CONFIG_TRACE_EVAL_MAP_FILE
J
Jeremy Linton 已提交
9000
static void trace_module_remove_evals(struct module *mod)
9001
{
9002 9003
	union trace_eval_map_item *map;
	union trace_eval_map_item **last = &trace_eval_maps;
9004

9005
	if (!mod->num_trace_evals)
9006 9007
		return;

9008
	mutex_lock(&trace_eval_mutex);
9009

9010
	map = trace_eval_maps;
9011 9012 9013 9014

	while (map) {
		if (map->head.mod == mod)
			break;
9015
		map = trace_eval_jmp_to_tail(map);
9016 9017 9018 9019 9020 9021
		last = &map->tail.next;
		map = map->tail.next;
	}
	if (!map)
		goto out;

9022
	*last = trace_eval_jmp_to_tail(map)->tail.next;
9023 9024
	kfree(map);
 out:
9025
	mutex_unlock(&trace_eval_mutex);
9026 9027
}
#else
J
Jeremy Linton 已提交
9028
static inline void trace_module_remove_evals(struct module *mod) { }
9029
#endif /* CONFIG_TRACE_EVAL_MAP_FILE */
9030

9031 9032 9033 9034 9035 9036 9037
static int trace_module_notify(struct notifier_block *self,
			       unsigned long val, void *data)
{
	struct module *mod = data;

	switch (val) {
	case MODULE_STATE_COMING:
J
Jeremy Linton 已提交
9038
		trace_module_add_evals(mod);
9039
		break;
9040
	case MODULE_STATE_GOING:
J
Jeremy Linton 已提交
9041
		trace_module_remove_evals(mod);
9042
		break;
9043 9044 9045
	}

	return 0;
9046 9047
}

9048 9049 9050 9051
static struct notifier_block trace_module_nb = {
	.notifier_call = trace_module_notify,
	.priority = 0,
};
9052
#endif /* CONFIG_MODULES */
9053

9054
static __init int tracer_init_tracefs(void)
9055 9056 9057
{
	struct dentry *d_tracer;

9058 9059
	trace_access_lock_init();

9060
	d_tracer = tracing_init_dentry();
9061
	if (IS_ERR(d_tracer))
9062
		return 0;
9063

9064 9065
	event_trace_init();

9066
	init_tracer_tracefs(&global_trace, d_tracer);
9067
	ftrace_init_tracefs_toplevel(&global_trace, d_tracer);
9068

9069
	trace_create_file("tracing_thresh", 0644, d_tracer,
9070
			&global_trace, &tracing_thresh_fops);
9071

9072
	trace_create_file("README", 0444, d_tracer,
9073 9074
			NULL, &tracing_readme_fops);

9075 9076
	trace_create_file("saved_cmdlines", 0444, d_tracer,
			NULL, &tracing_saved_cmdlines_fops);
9077

9078 9079 9080
	trace_create_file("saved_cmdlines_size", 0644, d_tracer,
			  NULL, &tracing_saved_cmdlines_size_fops);

9081 9082 9083
	trace_create_file("saved_tgids", 0444, d_tracer,
			NULL, &tracing_saved_tgids_fops);

9084
	trace_eval_init();
9085

J
Jeremy Linton 已提交
9086
	trace_create_eval_file(d_tracer);
9087

9088 9089 9090 9091
#ifdef CONFIG_MODULES
	register_module_notifier(&trace_module_nb);
#endif

9092
#ifdef CONFIG_DYNAMIC_FTRACE
9093
	trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
9094
			NULL, &tracing_dyn_info_fops);
9095
#endif
9096

9097
	create_trace_instances(d_tracer);
9098

9099
	update_tracer_options(&global_trace);
9100

9101
	return 0;
9102 9103
}

9104 9105 9106
static int trace_panic_handler(struct notifier_block *this,
			       unsigned long event, void *unused)
{
9107
	if (ftrace_dump_on_oops)
9108
		ftrace_dump(ftrace_dump_on_oops);
9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123
	return NOTIFY_OK;
}

static struct notifier_block trace_panic_notifier = {
	.notifier_call  = trace_panic_handler,
	.next           = NULL,
	.priority       = 150   /* priority: INT_MAX >= x >= 0 */
};

static int trace_die_handler(struct notifier_block *self,
			     unsigned long val,
			     void *data)
{
	switch (val) {
	case DIE_OOPS:
9124
		if (ftrace_dump_on_oops)
9125
			ftrace_dump(ftrace_dump_on_oops);
9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148
		break;
	default:
		break;
	}
	return NOTIFY_OK;
}

static struct notifier_block trace_die_notifier = {
	.notifier_call = trace_die_handler,
	.priority = 200
};

/*
 * printk is set to max of 1024, we really don't need it that big.
 * Nothing should be printing 1000 characters anyway.
 */
#define TRACE_MAX_PRINT		1000

/*
 * Define here KERN_TRACE so that we have one place to modify
 * it if we decide to change what log level the ftrace dump
 * should be at.
 */
9149
#define KERN_TRACE		KERN_EMERG
9150

9151
void
9152 9153 9154
trace_printk_seq(struct trace_seq *s)
{
	/* Probably should print a warning here. */
9155 9156
	if (s->seq.len >= TRACE_MAX_PRINT)
		s->seq.len = TRACE_MAX_PRINT;
9157

9158 9159 9160 9161 9162 9163 9164
	/*
	 * More paranoid code. Although the buffer size is set to
	 * PAGE_SIZE, and TRACE_MAX_PRINT is 1000, this is just
	 * an extra layer of protection.
	 */
	if (WARN_ON_ONCE(s->seq.len >= s->seq.size))
		s->seq.len = s->seq.size - 1;
9165 9166

	/* should be zero ended, but we are paranoid. */
9167
	s->buffer[s->seq.len] = 0;
9168 9169 9170

	printk(KERN_TRACE "%s", s->buffer);

9171
	trace_seq_init(s);
9172 9173
}

9174 9175 9176
void trace_init_global_iter(struct trace_iterator *iter)
{
	iter->tr = &global_trace;
9177
	iter->trace = iter->tr->current_trace;
9178
	iter->cpu_file = RING_BUFFER_ALL_CPUS;
9179
	iter->array_buffer = &global_trace.array_buffer;
9180 9181 9182 9183 9184

	if (iter->trace && iter->trace->open)
		iter->trace->open(iter);

	/* Annotate start of buffers if we had overruns */
9185
	if (ring_buffer_overruns(iter->array_buffer->buffer))
9186 9187 9188 9189 9190
		iter->iter_flags |= TRACE_FILE_ANNOTATE;

	/* Output in nanoseconds only if we are using a clock in nanoseconds. */
	if (trace_clocks[iter->tr->clock_id].in_ns)
		iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
9191 9192
}

9193
void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
9194 9195 9196
{
	/* use static because iter can be a bit big for the stack */
	static struct trace_iterator iter;
9197
	static atomic_t dump_running;
9198
	struct trace_array *tr = &global_trace;
9199
	unsigned int old_userobj;
9200 9201
	unsigned long flags;
	int cnt = 0, cpu;
9202

9203 9204 9205 9206 9207
	/* Only allow one dump user at a time. */
	if (atomic_inc_return(&dump_running) != 1) {
		atomic_dec(&dump_running);
		return;
	}
9208

9209 9210 9211 9212 9213 9214 9215 9216
	/*
	 * Always turn off tracing when we dump.
	 * We don't need to show trace output of what happens
	 * between multiple crashes.
	 *
	 * If the user does a sysrq-z, then they can re-enable
	 * tracing with echo 1 > tracing_on.
	 */
9217
	tracing_off();
9218

9219
	local_irq_save(flags);
9220
	printk_nmi_direct_enter();
9221

9222
	/* Simulate the iterator */
9223
	trace_init_global_iter(&iter);
9224 9225 9226
	/* Can not use kmalloc for iter.temp */
	iter.temp = static_temp_buf;
	iter.temp_size = STATIC_TEMP_BUF_SIZE;
9227

9228
	for_each_tracing_cpu(cpu) {
9229
		atomic_inc(&per_cpu_ptr(iter.array_buffer->data, cpu)->disabled);
9230 9231
	}

9232
	old_userobj = tr->trace_flags & TRACE_ITER_SYM_USEROBJ;
9233

9234
	/* don't look at user memory in panic mode */
9235
	tr->trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
9236

9237 9238
	switch (oops_dump_mode) {
	case DUMP_ALL:
9239
		iter.cpu_file = RING_BUFFER_ALL_CPUS;
9240 9241 9242 9243 9244 9245 9246 9247
		break;
	case DUMP_ORIG:
		iter.cpu_file = raw_smp_processor_id();
		break;
	case DUMP_NONE:
		goto out_enable;
	default:
		printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
9248
		iter.cpu_file = RING_BUFFER_ALL_CPUS;
9249 9250 9251
	}

	printk(KERN_TRACE "Dumping ftrace buffer:\n");
9252

9253 9254 9255 9256 9257 9258
	/* Did function tracer already get disabled? */
	if (ftrace_is_dead()) {
		printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
		printk("#          MAY BE MISSING FUNCTION EVENTS\n");
	}

9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272
	/*
	 * We need to stop all tracing on all CPUS to read the
	 * the next buffer. This is a bit expensive, but is
	 * not done often. We fill all what we can read,
	 * and then release the locks again.
	 */

	while (!trace_empty(&iter)) {

		if (!cnt)
			printk(KERN_TRACE "---------------------------------\n");

		cnt++;

9273
		trace_iterator_reset(&iter);
9274 9275
		iter.iter_flags |= TRACE_FILE_LAT_FMT;

9276
		if (trace_find_next_entry_inc(&iter) != NULL) {
9277 9278 9279 9280 9281
			int ret;

			ret = print_trace_line(&iter);
			if (ret != TRACE_TYPE_NO_CONSUME)
				trace_consume(&iter);
9282
		}
9283
		touch_nmi_watchdog();
9284 9285 9286 9287 9288 9289 9290 9291 9292

		trace_printk_seq(&iter.seq);
	}

	if (!cnt)
		printk(KERN_TRACE "   (ftrace buffer empty)\n");
	else
		printk(KERN_TRACE "---------------------------------\n");

9293
 out_enable:
9294
	tr->trace_flags |= old_userobj;
9295

9296
	for_each_tracing_cpu(cpu) {
9297
		atomic_dec(&per_cpu_ptr(iter.array_buffer->data, cpu)->disabled);
9298
	}
9299 9300
	atomic_dec(&dump_running);
	printk_nmi_direct_exit();
9301
	local_irq_restore(flags);
9302
}
9303
EXPORT_SYMBOL_GPL(ftrace_dump);
9304

9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390
int trace_run_command(const char *buf, int (*createfn)(int, char **))
{
	char **argv;
	int argc, ret;

	argc = 0;
	ret = 0;
	argv = argv_split(GFP_KERNEL, buf, &argc);
	if (!argv)
		return -ENOMEM;

	if (argc)
		ret = createfn(argc, argv);

	argv_free(argv);

	return ret;
}

#define WRITE_BUFSIZE  4096

ssize_t trace_parse_run_command(struct file *file, const char __user *buffer,
				size_t count, loff_t *ppos,
				int (*createfn)(int, char **))
{
	char *kbuf, *buf, *tmp;
	int ret = 0;
	size_t done = 0;
	size_t size;

	kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL);
	if (!kbuf)
		return -ENOMEM;

	while (done < count) {
		size = count - done;

		if (size >= WRITE_BUFSIZE)
			size = WRITE_BUFSIZE - 1;

		if (copy_from_user(kbuf, buffer + done, size)) {
			ret = -EFAULT;
			goto out;
		}
		kbuf[size] = '\0';
		buf = kbuf;
		do {
			tmp = strchr(buf, '\n');
			if (tmp) {
				*tmp = '\0';
				size = tmp - buf + 1;
			} else {
				size = strlen(buf);
				if (done + size < count) {
					if (buf != kbuf)
						break;
					/* This can accept WRITE_BUFSIZE - 2 ('\n' + '\0') */
					pr_warn("Line length is too long: Should be less than %d\n",
						WRITE_BUFSIZE - 2);
					ret = -EINVAL;
					goto out;
				}
			}
			done += size;

			/* Remove comments */
			tmp = strchr(buf, '#');

			if (tmp)
				*tmp = '\0';

			ret = trace_run_command(buf, createfn);
			if (ret)
				goto out;
			buf += size;

		} while (done < count);
	}
	ret = done;

out:
	kfree(kbuf);

	return ret;
}

9391
__init static int tracer_alloc_buffers(void)
9392
{
9393
	int ring_buf_size;
9394
	int ret = -ENOMEM;
9395

9396 9397

	if (security_locked_down(LOCKDOWN_TRACEFS)) {
9398
		pr_warn("Tracing disabled due to lockdown\n");
9399 9400 9401
		return -EPERM;
	}

9402 9403 9404 9405
	/*
	 * Make sure we don't accidently add more trace options
	 * than we have bits for.
	 */
9406
	BUILD_BUG_ON(TRACE_ITER_LAST_BIT > TRACE_FLAGS_MAX_SIZE);
9407

9408 9409 9410
	if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
		goto out;

9411
	if (!alloc_cpumask_var(&global_trace.tracing_cpumask, GFP_KERNEL))
9412
		goto out_free_buffer_mask;
9413

9414
	/* Only allocate trace_printk buffers if a trace_printk exists */
9415
	if (&__stop___trace_bprintk_fmt != &__start___trace_bprintk_fmt)
9416
		/* Must be called before global_trace.buffer is allocated */
9417 9418
		trace_printk_init_buffers();

9419 9420 9421 9422 9423 9424
	/* To save memory, keep the ring buffer size to its minimum */
	if (ring_buffer_expanded)
		ring_buf_size = trace_buf_size;
	else
		ring_buf_size = 1;

9425
	cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
9426
	cpumask_copy(global_trace.tracing_cpumask, cpu_all_mask);
9427

9428 9429
	raw_spin_lock_init(&global_trace.start_lock);

9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440
	/*
	 * The prepare callbacks allocates some memory for the ring buffer. We
	 * don't free the buffer if the if the CPU goes down. If we were to free
	 * the buffer, then the user would lose any trace that was in the
	 * buffer. The memory will be removed once the "instance" is removed.
	 */
	ret = cpuhp_setup_state_multi(CPUHP_TRACE_RB_PREPARE,
				      "trace/RB:preapre", trace_rb_cpu_prepare,
				      NULL);
	if (ret < 0)
		goto out_free_cpumask;
9441
	/* Used for event triggers */
9442
	ret = -ENOMEM;
9443 9444
	temp_buffer = ring_buffer_alloc(PAGE_SIZE, RB_FL_OVERWRITE);
	if (!temp_buffer)
9445
		goto out_rm_hp_state;
9446

9447 9448 9449
	if (trace_create_savedcmd() < 0)
		goto out_free_temp_buffer;

9450
	/* TODO: make the number of buffers hot pluggable with CPUS */
9451
	if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) {
9452
		MEM_FAIL(1, "tracer: failed to allocate ring buffer!\n");
9453
		goto out_free_savedcmd;
9454
	}
9455

9456 9457
	if (global_trace.buffer_disabled)
		tracing_off();
9458

9459 9460 9461
	if (trace_boot_clock) {
		ret = tracing_set_clock(&global_trace, trace_boot_clock);
		if (ret < 0)
9462 9463
			pr_warn("Trace clock %s not defined, going back to default\n",
				trace_boot_clock);
9464 9465
	}

9466 9467 9468 9469 9470
	/*
	 * register_tracer() might reference current_trace, so it
	 * needs to be set before we register anything. This is
	 * just a bootstrap of current_trace anyway.
	 */
9471 9472
	global_trace.current_trace = &nop_trace;

9473 9474
	global_trace.max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;

9475 9476
	ftrace_init_global_array_ops(&global_trace);

9477 9478
	init_trace_flags_index(&global_trace);

9479 9480
	register_tracer(&nop_trace);

9481 9482 9483
	/* Function tracing may start here (via kernel command line) */
	init_function_trace();

S
Steven Rostedt 已提交
9484 9485
	/* All seems OK, enable tracing */
	tracing_disabled = 0;
9486

9487 9488 9489 9490
	atomic_notifier_chain_register(&panic_notifier_list,
				       &trace_panic_notifier);

	register_die_notifier(&trace_die_notifier);
9491

9492 9493 9494 9495
	global_trace.flags = TRACE_ARRAY_FL_GLOBAL;

	INIT_LIST_HEAD(&global_trace.systems);
	INIT_LIST_HEAD(&global_trace.events);
9496
	INIT_LIST_HEAD(&global_trace.hist_vars);
9497
	INIT_LIST_HEAD(&global_trace.err_log);
9498 9499
	list_add(&global_trace.list, &ftrace_trace_arrays);

9500
	apply_trace_boot_options();
9501

9502 9503
	register_snapshot_cmd();

9504
	return 0;
9505

9506 9507
out_free_savedcmd:
	free_saved_cmdlines_buffer(savedcmd);
9508 9509
out_free_temp_buffer:
	ring_buffer_free(temp_buffer);
9510 9511
out_rm_hp_state:
	cpuhp_remove_multi_state(CPUHP_TRACE_RB_PREPARE);
9512
out_free_cpumask:
9513
	free_cpumask_var(global_trace.tracing_cpumask);
9514 9515 9516 9517
out_free_buffer_mask:
	free_cpumask_var(tracing_buffer_mask);
out:
	return ret;
9518
}
9519

9520
void __init early_trace_init(void)
9521
{
9522 9523 9524
	if (tracepoint_printk) {
		tracepoint_print_iter =
			kmalloc(sizeof(*tracepoint_print_iter), GFP_KERNEL);
9525 9526
		if (MEM_FAIL(!tracepoint_print_iter,
			     "Failed to allocate trace iterator\n"))
9527
			tracepoint_printk = 0;
9528 9529
		else
			static_key_enable(&tracepoint_printk_key.key);
9530
	}
9531
	tracer_alloc_buffers();
9532 9533 9534 9535
}

void __init trace_init(void)
{
9536
	trace_event_init();
9537 9538
}

9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557
__init static int clear_boot_tracer(void)
{
	/*
	 * The default tracer at boot buffer is an init section.
	 * This function is called in lateinit. If we did not
	 * find the boot tracer, then clear it out, to prevent
	 * later registration from accessing the buffer that is
	 * about to be freed.
	 */
	if (!default_bootup_tracer)
		return 0;

	printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
	       default_bootup_tracer);
	default_bootup_tracer = NULL;

	return 0;
}

9558
fs_initcall(tracer_init_tracefs);
9559
late_initcall_sync(clear_boot_tracer);
9560 9561 9562 9563 9564

#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
__init static int tracing_set_default_clock(void)
{
	/* sched_clock_stable() is determined in late_initcall */
9565
	if (!trace_boot_clock && !sched_clock_stable()) {
9566 9567 9568 9569 9570
		if (security_locked_down(LOCKDOWN_TRACEFS)) {
			pr_warn("Can not set tracing clock due to lockdown\n");
			return -EPERM;
		}

9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582
		printk(KERN_WARNING
		       "Unstable clock detected, switching default tracing clock to \"global\"\n"
		       "If you want to keep using the local clock, then add:\n"
		       "  \"trace_clock=local\"\n"
		       "on the kernel command line\n");
		tracing_set_clock(&global_trace, "global");
	}

	return 0;
}
late_initcall_sync(tracing_set_default_clock);
#endif