1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * ring buffer based function tracer 4 * 5 * Copyright (C) 2007-2012 Steven Rostedt <srostedt@redhat.com> 6 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com> 7 * 8 * Originally taken from the RT patch by: 9 * Arnaldo Carvalho de Melo <acme@redhat.com> 10 * 11 * Based on code from the latency_tracer, that is: 12 * 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 #include <linux/stacktrace.h> 18 #include <linux/writeback.h> 19 #include <linux/kallsyms.h> 20 #include <linux/security.h> 21 #include <linux/seq_file.h> 22 #include <linux/irqflags.h> 23 #include <linux/debugfs.h> 24 #include <linux/tracefs.h> 25 #include <linux/pagemap.h> 26 #include <linux/hardirq.h> 27 #include <linux/linkage.h> 28 #include <linux/uaccess.h> 29 #include <linux/vmalloc.h> 30 #include <linux/ftrace.h> 31 #include <linux/module.h> 32 #include <linux/percpu.h> 33 #include <linux/splice.h> 34 #include <linux/kdebug.h> 35 #include <linux/string.h> 36 #include <linux/mount.h> 37 #include <linux/rwsem.h> 38 #include <linux/slab.h> 39 #include <linux/ctype.h> 40 #include <linux/init.h> 41 #include <linux/panic_notifier.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 #include <linux/fsnotify.h> 49 #include <linux/irq_work.h> 50 #include <linux/workqueue.h> 51 52 #include <asm/setup.h> /* COMMAND_LINE_SIZE */ 53 54 #include "trace.h" 55 #include "trace_output.h" 56 57 /* 58 * On boot up, the ring buffer is set to the minimum size, so that 59 * we do not waste memory on systems that are not using tracing. 60 */ 61 bool ring_buffer_expanded; 62 63 /* 64 * We need to change this state when a selftest is running. 65 * A selftest will lurk into the ring-buffer to count the 66 * entries inserted during the selftest although some concurrent 67 * insertions into the ring-buffer such as trace_printk could occurred 68 * at the same time, giving false positive or negative results. 69 */ 70 static bool __read_mostly tracing_selftest_running; 71 72 /* 73 * If boot-time tracing including tracers/events via kernel cmdline 74 * is running, we do not want to run SELFTEST. 75 */ 76 bool __read_mostly tracing_selftest_disabled; 77 78 #ifdef CONFIG_FTRACE_STARTUP_TEST 79 void __init disable_tracing_selftest(const char *reason) 80 { 81 if (!tracing_selftest_disabled) { 82 tracing_selftest_disabled = true; 83 pr_info("Ftrace startup test is disabled due to %s\n", reason); 84 } 85 } 86 #endif 87 88 /* Pipe tracepoints to printk */ 89 static struct trace_iterator *tracepoint_print_iter; 90 int tracepoint_printk; 91 static bool tracepoint_printk_stop_on_boot __initdata; 92 static DEFINE_STATIC_KEY_FALSE(tracepoint_printk_key); 93 94 /* For tracers that don't implement custom flags */ 95 static struct tracer_opt dummy_tracer_opt[] = { 96 { } 97 }; 98 99 static int 100 dummy_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set) 101 { 102 return 0; 103 } 104 105 /* 106 * To prevent the comm cache from being overwritten when no 107 * tracing is active, only save the comm when a trace event 108 * occurred. 109 */ 110 static DEFINE_PER_CPU(bool, trace_taskinfo_save); 111 112 /* 113 * Kill all tracing for good (never come back). 114 * It is initialized to 1 but will turn to zero if the initialization 115 * of the tracer is successful. But that is the only place that sets 116 * this back to zero. 117 */ 118 static int tracing_disabled = 1; 119 120 cpumask_var_t __read_mostly tracing_buffer_mask; 121 122 /* 123 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops 124 * 125 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops 126 * is set, then ftrace_dump is called. This will output the contents 127 * of the ftrace buffers to the console. This is very useful for 128 * capturing traces that lead to crashes and outputing it to a 129 * serial console. 130 * 131 * It is default off, but you can enable it with either specifying 132 * "ftrace_dump_on_oops" in the kernel command line, or setting 133 * /proc/sys/kernel/ftrace_dump_on_oops 134 * Set 1 if you want to dump buffers of all CPUs 135 * Set 2 if you want to dump the buffer of the CPU that triggered oops 136 */ 137 138 enum ftrace_dump_mode ftrace_dump_on_oops; 139 140 /* When set, tracing will stop when a WARN*() is hit */ 141 int __disable_trace_on_warning; 142 143 #ifdef CONFIG_TRACE_EVAL_MAP_FILE 144 /* Map of enums to their values, for "eval_map" file */ 145 struct trace_eval_map_head { 146 struct module *mod; 147 unsigned long length; 148 }; 149 150 union trace_eval_map_item; 151 152 struct trace_eval_map_tail { 153 /* 154 * "end" is first and points to NULL as it must be different 155 * than "mod" or "eval_string" 156 */ 157 union trace_eval_map_item *next; 158 const char *end; /* points to NULL */ 159 }; 160 161 static DEFINE_MUTEX(trace_eval_mutex); 162 163 /* 164 * The trace_eval_maps are saved in an array with two extra elements, 165 * one at the beginning, and one at the end. The beginning item contains 166 * the count of the saved maps (head.length), and the module they 167 * belong to if not built in (head.mod). The ending item contains a 168 * pointer to the next array of saved eval_map items. 169 */ 170 union trace_eval_map_item { 171 struct trace_eval_map map; 172 struct trace_eval_map_head head; 173 struct trace_eval_map_tail tail; 174 }; 175 176 static union trace_eval_map_item *trace_eval_maps; 177 #endif /* CONFIG_TRACE_EVAL_MAP_FILE */ 178 179 int tracing_set_tracer(struct trace_array *tr, const char *buf); 180 static void ftrace_trace_userstack(struct trace_array *tr, 181 struct trace_buffer *buffer, 182 unsigned int trace_ctx); 183 184 #define MAX_TRACER_SIZE 100 185 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata; 186 static char *default_bootup_tracer; 187 188 static bool allocate_snapshot; 189 static bool snapshot_at_boot; 190 191 static char boot_instance_info[COMMAND_LINE_SIZE] __initdata; 192 static int boot_instance_index; 193 194 static char boot_snapshot_info[COMMAND_LINE_SIZE] __initdata; 195 static int boot_snapshot_index; 196 197 static int __init set_cmdline_ftrace(char *str) 198 { 199 strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE); 200 default_bootup_tracer = bootup_tracer_buf; 201 /* We are using ftrace early, expand it */ 202 ring_buffer_expanded = true; 203 return 1; 204 } 205 __setup("ftrace=", set_cmdline_ftrace); 206 207 static int __init set_ftrace_dump_on_oops(char *str) 208 { 209 if (*str++ != '=' || !*str || !strcmp("1", str)) { 210 ftrace_dump_on_oops = DUMP_ALL; 211 return 1; 212 } 213 214 if (!strcmp("orig_cpu", str) || !strcmp("2", str)) { 215 ftrace_dump_on_oops = DUMP_ORIG; 216 return 1; 217 } 218 219 return 0; 220 } 221 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops); 222 223 static int __init stop_trace_on_warning(char *str) 224 { 225 if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0)) 226 __disable_trace_on_warning = 1; 227 return 1; 228 } 229 __setup("traceoff_on_warning", stop_trace_on_warning); 230 231 static int __init boot_alloc_snapshot(char *str) 232 { 233 char *slot = boot_snapshot_info + boot_snapshot_index; 234 int left = sizeof(boot_snapshot_info) - boot_snapshot_index; 235 int ret; 236 237 if (str[0] == '=') { 238 str++; 239 if (strlen(str) >= left) 240 return -1; 241 242 ret = snprintf(slot, left, "%s\t", str); 243 boot_snapshot_index += ret; 244 } else { 245 allocate_snapshot = true; 246 /* We also need the main ring buffer expanded */ 247 ring_buffer_expanded = true; 248 } 249 return 1; 250 } 251 __setup("alloc_snapshot", boot_alloc_snapshot); 252 253 254 static int __init boot_snapshot(char *str) 255 { 256 snapshot_at_boot = true; 257 boot_alloc_snapshot(str); 258 return 1; 259 } 260 __setup("ftrace_boot_snapshot", boot_snapshot); 261 262 263 static int __init boot_instance(char *str) 264 { 265 char *slot = boot_instance_info + boot_instance_index; 266 int left = sizeof(boot_instance_info) - boot_instance_index; 267 int ret; 268 269 if (strlen(str) >= left) 270 return -1; 271 272 ret = snprintf(slot, left, "%s\t", str); 273 boot_instance_index += ret; 274 275 return 1; 276 } 277 __setup("trace_instance=", boot_instance); 278 279 280 static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata; 281 282 static int __init set_trace_boot_options(char *str) 283 { 284 strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE); 285 return 1; 286 } 287 __setup("trace_options=", set_trace_boot_options); 288 289 static char trace_boot_clock_buf[MAX_TRACER_SIZE] __initdata; 290 static char *trace_boot_clock __initdata; 291 292 static int __init set_trace_boot_clock(char *str) 293 { 294 strlcpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE); 295 trace_boot_clock = trace_boot_clock_buf; 296 return 1; 297 } 298 __setup("trace_clock=", set_trace_boot_clock); 299 300 static int __init set_tracepoint_printk(char *str) 301 { 302 /* Ignore the "tp_printk_stop_on_boot" param */ 303 if (*str == '_') 304 return 0; 305 306 if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0)) 307 tracepoint_printk = 1; 308 return 1; 309 } 310 __setup("tp_printk", set_tracepoint_printk); 311 312 static int __init set_tracepoint_printk_stop(char *str) 313 { 314 tracepoint_printk_stop_on_boot = true; 315 return 1; 316 } 317 __setup("tp_printk_stop_on_boot", set_tracepoint_printk_stop); 318 319 unsigned long long ns2usecs(u64 nsec) 320 { 321 nsec += 500; 322 do_div(nsec, 1000); 323 return nsec; 324 } 325 326 static void 327 trace_process_export(struct trace_export *export, 328 struct ring_buffer_event *event, int flag) 329 { 330 struct trace_entry *entry; 331 unsigned int size = 0; 332 333 if (export->flags & flag) { 334 entry = ring_buffer_event_data(event); 335 size = ring_buffer_event_length(event); 336 export->write(export, entry, size); 337 } 338 } 339 340 static DEFINE_MUTEX(ftrace_export_lock); 341 342 static struct trace_export __rcu *ftrace_exports_list __read_mostly; 343 344 static DEFINE_STATIC_KEY_FALSE(trace_function_exports_enabled); 345 static DEFINE_STATIC_KEY_FALSE(trace_event_exports_enabled); 346 static DEFINE_STATIC_KEY_FALSE(trace_marker_exports_enabled); 347 348 static inline void ftrace_exports_enable(struct trace_export *export) 349 { 350 if (export->flags & TRACE_EXPORT_FUNCTION) 351 static_branch_inc(&trace_function_exports_enabled); 352 353 if (export->flags & TRACE_EXPORT_EVENT) 354 static_branch_inc(&trace_event_exports_enabled); 355 356 if (export->flags & TRACE_EXPORT_MARKER) 357 static_branch_inc(&trace_marker_exports_enabled); 358 } 359 360 static inline void ftrace_exports_disable(struct trace_export *export) 361 { 362 if (export->flags & TRACE_EXPORT_FUNCTION) 363 static_branch_dec(&trace_function_exports_enabled); 364 365 if (export->flags & TRACE_EXPORT_EVENT) 366 static_branch_dec(&trace_event_exports_enabled); 367 368 if (export->flags & TRACE_EXPORT_MARKER) 369 static_branch_dec(&trace_marker_exports_enabled); 370 } 371 372 static void ftrace_exports(struct ring_buffer_event *event, int flag) 373 { 374 struct trace_export *export; 375 376 preempt_disable_notrace(); 377 378 export = rcu_dereference_raw_check(ftrace_exports_list); 379 while (export) { 380 trace_process_export(export, event, flag); 381 export = rcu_dereference_raw_check(export->next); 382 } 383 384 preempt_enable_notrace(); 385 } 386 387 static inline void 388 add_trace_export(struct trace_export **list, struct trace_export *export) 389 { 390 rcu_assign_pointer(export->next, *list); 391 /* 392 * We are entering export into the list but another 393 * CPU might be walking that list. We need to make sure 394 * the export->next pointer is valid before another CPU sees 395 * the export pointer included into the list. 396 */ 397 rcu_assign_pointer(*list, export); 398 } 399 400 static inline int 401 rm_trace_export(struct trace_export **list, struct trace_export *export) 402 { 403 struct trace_export **p; 404 405 for (p = list; *p != NULL; p = &(*p)->next) 406 if (*p == export) 407 break; 408 409 if (*p != export) 410 return -1; 411 412 rcu_assign_pointer(*p, (*p)->next); 413 414 return 0; 415 } 416 417 static inline void 418 add_ftrace_export(struct trace_export **list, struct trace_export *export) 419 { 420 ftrace_exports_enable(export); 421 422 add_trace_export(list, export); 423 } 424 425 static inline int 426 rm_ftrace_export(struct trace_export **list, struct trace_export *export) 427 { 428 int ret; 429 430 ret = rm_trace_export(list, export); 431 ftrace_exports_disable(export); 432 433 return ret; 434 } 435 436 int register_ftrace_export(struct trace_export *export) 437 { 438 if (WARN_ON_ONCE(!export->write)) 439 return -1; 440 441 mutex_lock(&ftrace_export_lock); 442 443 add_ftrace_export(&ftrace_exports_list, export); 444 445 mutex_unlock(&ftrace_export_lock); 446 447 return 0; 448 } 449 EXPORT_SYMBOL_GPL(register_ftrace_export); 450 451 int unregister_ftrace_export(struct trace_export *export) 452 { 453 int ret; 454 455 mutex_lock(&ftrace_export_lock); 456 457 ret = rm_ftrace_export(&ftrace_exports_list, export); 458 459 mutex_unlock(&ftrace_export_lock); 460 461 return ret; 462 } 463 EXPORT_SYMBOL_GPL(unregister_ftrace_export); 464 465 /* trace_flags holds trace_options default values */ 466 #define TRACE_DEFAULT_FLAGS \ 467 (FUNCTION_DEFAULT_FLAGS | \ 468 TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | \ 469 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | \ 470 TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE | \ 471 TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS | \ 472 TRACE_ITER_HASH_PTR) 473 474 /* trace_options that are only supported by global_trace */ 475 #define TOP_LEVEL_TRACE_FLAGS (TRACE_ITER_PRINTK | \ 476 TRACE_ITER_PRINTK_MSGONLY | TRACE_ITER_RECORD_CMD) 477 478 /* trace_flags that are default zero for instances */ 479 #define ZEROED_TRACE_FLAGS \ 480 (TRACE_ITER_EVENT_FORK | TRACE_ITER_FUNC_FORK) 481 482 /* 483 * The global_trace is the descriptor that holds the top-level tracing 484 * buffers for the live tracing. 485 */ 486 static struct trace_array global_trace = { 487 .trace_flags = TRACE_DEFAULT_FLAGS, 488 }; 489 490 LIST_HEAD(ftrace_trace_arrays); 491 492 int trace_array_get(struct trace_array *this_tr) 493 { 494 struct trace_array *tr; 495 int ret = -ENODEV; 496 497 mutex_lock(&trace_types_lock); 498 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 499 if (tr == this_tr) { 500 tr->ref++; 501 ret = 0; 502 break; 503 } 504 } 505 mutex_unlock(&trace_types_lock); 506 507 return ret; 508 } 509 510 static void __trace_array_put(struct trace_array *this_tr) 511 { 512 WARN_ON(!this_tr->ref); 513 this_tr->ref--; 514 } 515 516 /** 517 * trace_array_put - Decrement the reference counter for this trace array. 518 * @this_tr : pointer to the trace array 519 * 520 * NOTE: Use this when we no longer need the trace array returned by 521 * trace_array_get_by_name(). This ensures the trace array can be later 522 * destroyed. 523 * 524 */ 525 void trace_array_put(struct trace_array *this_tr) 526 { 527 if (!this_tr) 528 return; 529 530 mutex_lock(&trace_types_lock); 531 __trace_array_put(this_tr); 532 mutex_unlock(&trace_types_lock); 533 } 534 EXPORT_SYMBOL_GPL(trace_array_put); 535 536 int tracing_check_open_get_tr(struct trace_array *tr) 537 { 538 int ret; 539 540 ret = security_locked_down(LOCKDOWN_TRACEFS); 541 if (ret) 542 return ret; 543 544 if (tracing_disabled) 545 return -ENODEV; 546 547 if (tr && trace_array_get(tr) < 0) 548 return -ENODEV; 549 550 return 0; 551 } 552 553 int call_filter_check_discard(struct trace_event_call *call, void *rec, 554 struct trace_buffer *buffer, 555 struct ring_buffer_event *event) 556 { 557 if (unlikely(call->flags & TRACE_EVENT_FL_FILTERED) && 558 !filter_match_preds(call->filter, rec)) { 559 __trace_event_discard_commit(buffer, event); 560 return 1; 561 } 562 563 return 0; 564 } 565 566 /** 567 * trace_find_filtered_pid - check if a pid exists in a filtered_pid list 568 * @filtered_pids: The list of pids to check 569 * @search_pid: The PID to find in @filtered_pids 570 * 571 * Returns true if @search_pid is found in @filtered_pids, and false otherwise. 572 */ 573 bool 574 trace_find_filtered_pid(struct trace_pid_list *filtered_pids, pid_t search_pid) 575 { 576 return trace_pid_list_is_set(filtered_pids, search_pid); 577 } 578 579 /** 580 * trace_ignore_this_task - should a task be ignored for tracing 581 * @filtered_pids: The list of pids to check 582 * @filtered_no_pids: The list of pids not to be traced 583 * @task: The task that should be ignored if not filtered 584 * 585 * Checks if @task should be traced or not from @filtered_pids. 586 * Returns true if @task should *NOT* be traced. 587 * Returns false if @task should be traced. 588 */ 589 bool 590 trace_ignore_this_task(struct trace_pid_list *filtered_pids, 591 struct trace_pid_list *filtered_no_pids, 592 struct task_struct *task) 593 { 594 /* 595 * If filtered_no_pids is not empty, and the task's pid is listed 596 * in filtered_no_pids, then return true. 597 * Otherwise, if filtered_pids is empty, that means we can 598 * trace all tasks. If it has content, then only trace pids 599 * within filtered_pids. 600 */ 601 602 return (filtered_pids && 603 !trace_find_filtered_pid(filtered_pids, task->pid)) || 604 (filtered_no_pids && 605 trace_find_filtered_pid(filtered_no_pids, task->pid)); 606 } 607 608 /** 609 * trace_filter_add_remove_task - Add or remove a task from a pid_list 610 * @pid_list: The list to modify 611 * @self: The current task for fork or NULL for exit 612 * @task: The task to add or remove 613 * 614 * If adding a task, if @self is defined, the task is only added if @self 615 * is also included in @pid_list. This happens on fork and tasks should 616 * only be added when the parent is listed. If @self is NULL, then the 617 * @task pid will be removed from the list, which would happen on exit 618 * of a task. 619 */ 620 void trace_filter_add_remove_task(struct trace_pid_list *pid_list, 621 struct task_struct *self, 622 struct task_struct *task) 623 { 624 if (!pid_list) 625 return; 626 627 /* For forks, we only add if the forking task is listed */ 628 if (self) { 629 if (!trace_find_filtered_pid(pid_list, self->pid)) 630 return; 631 } 632 633 /* "self" is set for forks, and NULL for exits */ 634 if (self) 635 trace_pid_list_set(pid_list, task->pid); 636 else 637 trace_pid_list_clear(pid_list, task->pid); 638 } 639 640 /** 641 * trace_pid_next - Used for seq_file to get to the next pid of a pid_list 642 * @pid_list: The pid list to show 643 * @v: The last pid that was shown (+1 the actual pid to let zero be displayed) 644 * @pos: The position of the file 645 * 646 * This is used by the seq_file "next" operation to iterate the pids 647 * listed in a trace_pid_list structure. 648 * 649 * Returns the pid+1 as we want to display pid of zero, but NULL would 650 * stop the iteration. 651 */ 652 void *trace_pid_next(struct trace_pid_list *pid_list, void *v, loff_t *pos) 653 { 654 long pid = (unsigned long)v; 655 unsigned int next; 656 657 (*pos)++; 658 659 /* pid already is +1 of the actual previous bit */ 660 if (trace_pid_list_next(pid_list, pid, &next) < 0) 661 return NULL; 662 663 pid = next; 664 665 /* Return pid + 1 to allow zero to be represented */ 666 return (void *)(pid + 1); 667 } 668 669 /** 670 * trace_pid_start - Used for seq_file to start reading pid lists 671 * @pid_list: The pid list to show 672 * @pos: The position of the file 673 * 674 * This is used by seq_file "start" operation to start the iteration 675 * of listing pids. 676 * 677 * Returns the pid+1 as we want to display pid of zero, but NULL would 678 * stop the iteration. 679 */ 680 void *trace_pid_start(struct trace_pid_list *pid_list, loff_t *pos) 681 { 682 unsigned long pid; 683 unsigned int first; 684 loff_t l = 0; 685 686 if (trace_pid_list_first(pid_list, &first) < 0) 687 return NULL; 688 689 pid = first; 690 691 /* Return pid + 1 so that zero can be the exit value */ 692 for (pid++; pid && l < *pos; 693 pid = (unsigned long)trace_pid_next(pid_list, (void *)pid, &l)) 694 ; 695 return (void *)pid; 696 } 697 698 /** 699 * trace_pid_show - show the current pid in seq_file processing 700 * @m: The seq_file structure to write into 701 * @v: A void pointer of the pid (+1) value to display 702 * 703 * Can be directly used by seq_file operations to display the current 704 * pid value. 705 */ 706 int trace_pid_show(struct seq_file *m, void *v) 707 { 708 unsigned long pid = (unsigned long)v - 1; 709 710 seq_printf(m, "%lu\n", pid); 711 return 0; 712 } 713 714 /* 128 should be much more than enough */ 715 #define PID_BUF_SIZE 127 716 717 int trace_pid_write(struct trace_pid_list *filtered_pids, 718 struct trace_pid_list **new_pid_list, 719 const char __user *ubuf, size_t cnt) 720 { 721 struct trace_pid_list *pid_list; 722 struct trace_parser parser; 723 unsigned long val; 724 int nr_pids = 0; 725 ssize_t read = 0; 726 ssize_t ret; 727 loff_t pos; 728 pid_t pid; 729 730 if (trace_parser_get_init(&parser, PID_BUF_SIZE + 1)) 731 return -ENOMEM; 732 733 /* 734 * Always recreate a new array. The write is an all or nothing 735 * operation. Always create a new array when adding new pids by 736 * the user. If the operation fails, then the current list is 737 * not modified. 738 */ 739 pid_list = trace_pid_list_alloc(); 740 if (!pid_list) { 741 trace_parser_put(&parser); 742 return -ENOMEM; 743 } 744 745 if (filtered_pids) { 746 /* copy the current bits to the new max */ 747 ret = trace_pid_list_first(filtered_pids, &pid); 748 while (!ret) { 749 trace_pid_list_set(pid_list, pid); 750 ret = trace_pid_list_next(filtered_pids, pid + 1, &pid); 751 nr_pids++; 752 } 753 } 754 755 ret = 0; 756 while (cnt > 0) { 757 758 pos = 0; 759 760 ret = trace_get_user(&parser, ubuf, cnt, &pos); 761 if (ret < 0) 762 break; 763 764 read += ret; 765 ubuf += ret; 766 cnt -= ret; 767 768 if (!trace_parser_loaded(&parser)) 769 break; 770 771 ret = -EINVAL; 772 if (kstrtoul(parser.buffer, 0, &val)) 773 break; 774 775 pid = (pid_t)val; 776 777 if (trace_pid_list_set(pid_list, pid) < 0) { 778 ret = -1; 779 break; 780 } 781 nr_pids++; 782 783 trace_parser_clear(&parser); 784 ret = 0; 785 } 786 trace_parser_put(&parser); 787 788 if (ret < 0) { 789 trace_pid_list_free(pid_list); 790 return ret; 791 } 792 793 if (!nr_pids) { 794 /* Cleared the list of pids */ 795 trace_pid_list_free(pid_list); 796 pid_list = NULL; 797 } 798 799 *new_pid_list = pid_list; 800 801 return read; 802 } 803 804 static u64 buffer_ftrace_now(struct array_buffer *buf, int cpu) 805 { 806 u64 ts; 807 808 /* Early boot up does not have a buffer yet */ 809 if (!buf->buffer) 810 return trace_clock_local(); 811 812 ts = ring_buffer_time_stamp(buf->buffer); 813 ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts); 814 815 return ts; 816 } 817 818 u64 ftrace_now(int cpu) 819 { 820 return buffer_ftrace_now(&global_trace.array_buffer, cpu); 821 } 822 823 /** 824 * tracing_is_enabled - Show if global_trace has been enabled 825 * 826 * Shows if the global trace has been enabled or not. It uses the 827 * mirror flag "buffer_disabled" to be used in fast paths such as for 828 * the irqsoff tracer. But it may be inaccurate due to races. If you 829 * need to know the accurate state, use tracing_is_on() which is a little 830 * slower, but accurate. 831 */ 832 int tracing_is_enabled(void) 833 { 834 /* 835 * For quick access (irqsoff uses this in fast path), just 836 * return the mirror variable of the state of the ring buffer. 837 * It's a little racy, but we don't really care. 838 */ 839 smp_rmb(); 840 return !global_trace.buffer_disabled; 841 } 842 843 /* 844 * trace_buf_size is the size in bytes that is allocated 845 * for a buffer. Note, the number of bytes is always rounded 846 * to page size. 847 * 848 * This number is purposely set to a low number of 16384. 849 * If the dump on oops happens, it will be much appreciated 850 * to not have to wait for all that output. Anyway this can be 851 * boot time and run time configurable. 852 */ 853 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */ 854 855 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT; 856 857 /* trace_types holds a link list of available tracers. */ 858 static struct tracer *trace_types __read_mostly; 859 860 /* 861 * trace_types_lock is used to protect the trace_types list. 862 */ 863 DEFINE_MUTEX(trace_types_lock); 864 865 /* 866 * serialize the access of the ring buffer 867 * 868 * ring buffer serializes readers, but it is low level protection. 869 * The validity of the events (which returns by ring_buffer_peek() ..etc) 870 * are not protected by ring buffer. 871 * 872 * The content of events may become garbage if we allow other process consumes 873 * these events concurrently: 874 * A) the page of the consumed events may become a normal page 875 * (not reader page) in ring buffer, and this page will be rewritten 876 * by events producer. 877 * B) The page of the consumed events may become a page for splice_read, 878 * and this page will be returned to system. 879 * 880 * These primitives allow multi process access to different cpu ring buffer 881 * concurrently. 882 * 883 * These primitives don't distinguish read-only and read-consume access. 884 * Multi read-only access are also serialized. 885 */ 886 887 #ifdef CONFIG_SMP 888 static DECLARE_RWSEM(all_cpu_access_lock); 889 static DEFINE_PER_CPU(struct mutex, cpu_access_lock); 890 891 static inline void trace_access_lock(int cpu) 892 { 893 if (cpu == RING_BUFFER_ALL_CPUS) { 894 /* gain it for accessing the whole ring buffer. */ 895 down_write(&all_cpu_access_lock); 896 } else { 897 /* gain it for accessing a cpu ring buffer. */ 898 899 /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */ 900 down_read(&all_cpu_access_lock); 901 902 /* Secondly block other access to this @cpu ring buffer. */ 903 mutex_lock(&per_cpu(cpu_access_lock, cpu)); 904 } 905 } 906 907 static inline void trace_access_unlock(int cpu) 908 { 909 if (cpu == RING_BUFFER_ALL_CPUS) { 910 up_write(&all_cpu_access_lock); 911 } else { 912 mutex_unlock(&per_cpu(cpu_access_lock, cpu)); 913 up_read(&all_cpu_access_lock); 914 } 915 } 916 917 static inline void trace_access_lock_init(void) 918 { 919 int cpu; 920 921 for_each_possible_cpu(cpu) 922 mutex_init(&per_cpu(cpu_access_lock, cpu)); 923 } 924 925 #else 926 927 static DEFINE_MUTEX(access_lock); 928 929 static inline void trace_access_lock(int cpu) 930 { 931 (void)cpu; 932 mutex_lock(&access_lock); 933 } 934 935 static inline void trace_access_unlock(int cpu) 936 { 937 (void)cpu; 938 mutex_unlock(&access_lock); 939 } 940 941 static inline void trace_access_lock_init(void) 942 { 943 } 944 945 #endif 946 947 #ifdef CONFIG_STACKTRACE 948 static void __ftrace_trace_stack(struct trace_buffer *buffer, 949 unsigned int trace_ctx, 950 int skip, struct pt_regs *regs); 951 static inline void ftrace_trace_stack(struct trace_array *tr, 952 struct trace_buffer *buffer, 953 unsigned int trace_ctx, 954 int skip, struct pt_regs *regs); 955 956 #else 957 static inline void __ftrace_trace_stack(struct trace_buffer *buffer, 958 unsigned int trace_ctx, 959 int skip, struct pt_regs *regs) 960 { 961 } 962 static inline void ftrace_trace_stack(struct trace_array *tr, 963 struct trace_buffer *buffer, 964 unsigned long trace_ctx, 965 int skip, struct pt_regs *regs) 966 { 967 } 968 969 #endif 970 971 static __always_inline void 972 trace_event_setup(struct ring_buffer_event *event, 973 int type, unsigned int trace_ctx) 974 { 975 struct trace_entry *ent = ring_buffer_event_data(event); 976 977 tracing_generic_entry_update(ent, type, trace_ctx); 978 } 979 980 static __always_inline struct ring_buffer_event * 981 __trace_buffer_lock_reserve(struct trace_buffer *buffer, 982 int type, 983 unsigned long len, 984 unsigned int trace_ctx) 985 { 986 struct ring_buffer_event *event; 987 988 event = ring_buffer_lock_reserve(buffer, len); 989 if (event != NULL) 990 trace_event_setup(event, type, trace_ctx); 991 992 return event; 993 } 994 995 void tracer_tracing_on(struct trace_array *tr) 996 { 997 if (tr->array_buffer.buffer) 998 ring_buffer_record_on(tr->array_buffer.buffer); 999 /* 1000 * This flag is looked at when buffers haven't been allocated 1001 * yet, or by some tracers (like irqsoff), that just want to 1002 * know if the ring buffer has been disabled, but it can handle 1003 * races of where it gets disabled but we still do a record. 1004 * As the check is in the fast path of the tracers, it is more 1005 * important to be fast than accurate. 1006 */ 1007 tr->buffer_disabled = 0; 1008 /* Make the flag seen by readers */ 1009 smp_wmb(); 1010 } 1011 1012 /** 1013 * tracing_on - enable tracing buffers 1014 * 1015 * This function enables tracing buffers that may have been 1016 * disabled with tracing_off. 1017 */ 1018 void tracing_on(void) 1019 { 1020 tracer_tracing_on(&global_trace); 1021 } 1022 EXPORT_SYMBOL_GPL(tracing_on); 1023 1024 1025 static __always_inline void 1026 __buffer_unlock_commit(struct trace_buffer *buffer, struct ring_buffer_event *event) 1027 { 1028 __this_cpu_write(trace_taskinfo_save, true); 1029 1030 /* If this is the temp buffer, we need to commit fully */ 1031 if (this_cpu_read(trace_buffered_event) == event) { 1032 /* Length is in event->array[0] */ 1033 ring_buffer_write(buffer, event->array[0], &event->array[1]); 1034 /* Release the temp buffer */ 1035 this_cpu_dec(trace_buffered_event_cnt); 1036 /* ring_buffer_unlock_commit() enables preemption */ 1037 preempt_enable_notrace(); 1038 } else 1039 ring_buffer_unlock_commit(buffer); 1040 } 1041 1042 int __trace_array_puts(struct trace_array *tr, unsigned long ip, 1043 const char *str, int size) 1044 { 1045 struct ring_buffer_event *event; 1046 struct trace_buffer *buffer; 1047 struct print_entry *entry; 1048 unsigned int trace_ctx; 1049 int alloc; 1050 1051 if (!(tr->trace_flags & TRACE_ITER_PRINTK)) 1052 return 0; 1053 1054 if (unlikely(tracing_selftest_running || tracing_disabled)) 1055 return 0; 1056 1057 alloc = sizeof(*entry) + size + 2; /* possible \n added */ 1058 1059 trace_ctx = tracing_gen_ctx(); 1060 buffer = tr->array_buffer.buffer; 1061 ring_buffer_nest_start(buffer); 1062 event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc, 1063 trace_ctx); 1064 if (!event) { 1065 size = 0; 1066 goto out; 1067 } 1068 1069 entry = ring_buffer_event_data(event); 1070 entry->ip = ip; 1071 1072 memcpy(&entry->buf, str, size); 1073 1074 /* Add a newline if necessary */ 1075 if (entry->buf[size - 1] != '\n') { 1076 entry->buf[size] = '\n'; 1077 entry->buf[size + 1] = '\0'; 1078 } else 1079 entry->buf[size] = '\0'; 1080 1081 __buffer_unlock_commit(buffer, event); 1082 ftrace_trace_stack(tr, buffer, trace_ctx, 4, NULL); 1083 out: 1084 ring_buffer_nest_end(buffer); 1085 return size; 1086 } 1087 EXPORT_SYMBOL_GPL(__trace_array_puts); 1088 1089 /** 1090 * __trace_puts - write a constant string into the trace buffer. 1091 * @ip: The address of the caller 1092 * @str: The constant string to write 1093 * @size: The size of the string. 1094 */ 1095 int __trace_puts(unsigned long ip, const char *str, int size) 1096 { 1097 return __trace_array_puts(&global_trace, ip, str, size); 1098 } 1099 EXPORT_SYMBOL_GPL(__trace_puts); 1100 1101 /** 1102 * __trace_bputs - write the pointer to a constant string into trace buffer 1103 * @ip: The address of the caller 1104 * @str: The constant string to write to the buffer to 1105 */ 1106 int __trace_bputs(unsigned long ip, const char *str) 1107 { 1108 struct ring_buffer_event *event; 1109 struct trace_buffer *buffer; 1110 struct bputs_entry *entry; 1111 unsigned int trace_ctx; 1112 int size = sizeof(struct bputs_entry); 1113 int ret = 0; 1114 1115 if (!(global_trace.trace_flags & TRACE_ITER_PRINTK)) 1116 return 0; 1117 1118 if (unlikely(tracing_selftest_running || tracing_disabled)) 1119 return 0; 1120 1121 trace_ctx = tracing_gen_ctx(); 1122 buffer = global_trace.array_buffer.buffer; 1123 1124 ring_buffer_nest_start(buffer); 1125 event = __trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size, 1126 trace_ctx); 1127 if (!event) 1128 goto out; 1129 1130 entry = ring_buffer_event_data(event); 1131 entry->ip = ip; 1132 entry->str = str; 1133 1134 __buffer_unlock_commit(buffer, event); 1135 ftrace_trace_stack(&global_trace, buffer, trace_ctx, 4, NULL); 1136 1137 ret = 1; 1138 out: 1139 ring_buffer_nest_end(buffer); 1140 return ret; 1141 } 1142 EXPORT_SYMBOL_GPL(__trace_bputs); 1143 1144 #ifdef CONFIG_TRACER_SNAPSHOT 1145 static void tracing_snapshot_instance_cond(struct trace_array *tr, 1146 void *cond_data) 1147 { 1148 struct tracer *tracer = tr->current_trace; 1149 unsigned long flags; 1150 1151 if (in_nmi()) { 1152 internal_trace_puts("*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n"); 1153 internal_trace_puts("*** snapshot is being ignored ***\n"); 1154 return; 1155 } 1156 1157 if (!tr->allocated_snapshot) { 1158 internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n"); 1159 internal_trace_puts("*** stopping trace here! ***\n"); 1160 tracing_off(); 1161 return; 1162 } 1163 1164 /* Note, snapshot can not be used when the tracer uses it */ 1165 if (tracer->use_max_tr) { 1166 internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n"); 1167 internal_trace_puts("*** Can not use snapshot (sorry) ***\n"); 1168 return; 1169 } 1170 1171 local_irq_save(flags); 1172 update_max_tr(tr, current, smp_processor_id(), cond_data); 1173 local_irq_restore(flags); 1174 } 1175 1176 void tracing_snapshot_instance(struct trace_array *tr) 1177 { 1178 tracing_snapshot_instance_cond(tr, NULL); 1179 } 1180 1181 /** 1182 * tracing_snapshot - take a snapshot of the current buffer. 1183 * 1184 * This causes a swap between the snapshot buffer and the current live 1185 * tracing buffer. You can use this to take snapshots of the live 1186 * trace when some condition is triggered, but continue to trace. 1187 * 1188 * Note, make sure to allocate the snapshot with either 1189 * a tracing_snapshot_alloc(), or by doing it manually 1190 * with: echo 1 > /sys/kernel/tracing/snapshot 1191 * 1192 * If the snapshot buffer is not allocated, it will stop tracing. 1193 * Basically making a permanent snapshot. 1194 */ 1195 void tracing_snapshot(void) 1196 { 1197 struct trace_array *tr = &global_trace; 1198 1199 tracing_snapshot_instance(tr); 1200 } 1201 EXPORT_SYMBOL_GPL(tracing_snapshot); 1202 1203 /** 1204 * tracing_snapshot_cond - conditionally take a snapshot of the current buffer. 1205 * @tr: The tracing instance to snapshot 1206 * @cond_data: The data to be tested conditionally, and possibly saved 1207 * 1208 * This is the same as tracing_snapshot() except that the snapshot is 1209 * conditional - the snapshot will only happen if the 1210 * cond_snapshot.update() implementation receiving the cond_data 1211 * returns true, which means that the trace array's cond_snapshot 1212 * update() operation used the cond_data to determine whether the 1213 * snapshot should be taken, and if it was, presumably saved it along 1214 * with the snapshot. 1215 */ 1216 void tracing_snapshot_cond(struct trace_array *tr, void *cond_data) 1217 { 1218 tracing_snapshot_instance_cond(tr, cond_data); 1219 } 1220 EXPORT_SYMBOL_GPL(tracing_snapshot_cond); 1221 1222 /** 1223 * tracing_cond_snapshot_data - get the user data associated with a snapshot 1224 * @tr: The tracing instance 1225 * 1226 * When the user enables a conditional snapshot using 1227 * tracing_snapshot_cond_enable(), the user-defined cond_data is saved 1228 * with the snapshot. This accessor is used to retrieve it. 1229 * 1230 * Should not be called from cond_snapshot.update(), since it takes 1231 * the tr->max_lock lock, which the code calling 1232 * cond_snapshot.update() has already done. 1233 * 1234 * Returns the cond_data associated with the trace array's snapshot. 1235 */ 1236 void *tracing_cond_snapshot_data(struct trace_array *tr) 1237 { 1238 void *cond_data = NULL; 1239 1240 local_irq_disable(); 1241 arch_spin_lock(&tr->max_lock); 1242 1243 if (tr->cond_snapshot) 1244 cond_data = tr->cond_snapshot->cond_data; 1245 1246 arch_spin_unlock(&tr->max_lock); 1247 local_irq_enable(); 1248 1249 return cond_data; 1250 } 1251 EXPORT_SYMBOL_GPL(tracing_cond_snapshot_data); 1252 1253 static int resize_buffer_duplicate_size(struct array_buffer *trace_buf, 1254 struct array_buffer *size_buf, int cpu_id); 1255 static void set_buffer_entries(struct array_buffer *buf, unsigned long val); 1256 1257 int tracing_alloc_snapshot_instance(struct trace_array *tr) 1258 { 1259 int ret; 1260 1261 if (!tr->allocated_snapshot) { 1262 1263 /* allocate spare buffer */ 1264 ret = resize_buffer_duplicate_size(&tr->max_buffer, 1265 &tr->array_buffer, RING_BUFFER_ALL_CPUS); 1266 if (ret < 0) 1267 return ret; 1268 1269 tr->allocated_snapshot = true; 1270 } 1271 1272 return 0; 1273 } 1274 1275 static void free_snapshot(struct trace_array *tr) 1276 { 1277 /* 1278 * We don't free the ring buffer. instead, resize it because 1279 * The max_tr ring buffer has some state (e.g. ring->clock) and 1280 * we want preserve it. 1281 */ 1282 ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS); 1283 set_buffer_entries(&tr->max_buffer, 1); 1284 tracing_reset_online_cpus(&tr->max_buffer); 1285 tr->allocated_snapshot = false; 1286 } 1287 1288 /** 1289 * tracing_alloc_snapshot - allocate snapshot buffer. 1290 * 1291 * This only allocates the snapshot buffer if it isn't already 1292 * allocated - it doesn't also take a snapshot. 1293 * 1294 * This is meant to be used in cases where the snapshot buffer needs 1295 * to be set up for events that can't sleep but need to be able to 1296 * trigger a snapshot. 1297 */ 1298 int tracing_alloc_snapshot(void) 1299 { 1300 struct trace_array *tr = &global_trace; 1301 int ret; 1302 1303 ret = tracing_alloc_snapshot_instance(tr); 1304 WARN_ON(ret < 0); 1305 1306 return ret; 1307 } 1308 EXPORT_SYMBOL_GPL(tracing_alloc_snapshot); 1309 1310 /** 1311 * tracing_snapshot_alloc - allocate and take a snapshot of the current buffer. 1312 * 1313 * This is similar to tracing_snapshot(), but it will allocate the 1314 * snapshot buffer if it isn't already allocated. Use this only 1315 * where it is safe to sleep, as the allocation may sleep. 1316 * 1317 * This causes a swap between the snapshot buffer and the current live 1318 * tracing buffer. You can use this to take snapshots of the live 1319 * trace when some condition is triggered, but continue to trace. 1320 */ 1321 void tracing_snapshot_alloc(void) 1322 { 1323 int ret; 1324 1325 ret = tracing_alloc_snapshot(); 1326 if (ret < 0) 1327 return; 1328 1329 tracing_snapshot(); 1330 } 1331 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc); 1332 1333 /** 1334 * tracing_snapshot_cond_enable - enable conditional snapshot for an instance 1335 * @tr: The tracing instance 1336 * @cond_data: User data to associate with the snapshot 1337 * @update: Implementation of the cond_snapshot update function 1338 * 1339 * Check whether the conditional snapshot for the given instance has 1340 * already been enabled, or if the current tracer is already using a 1341 * snapshot; if so, return -EBUSY, else create a cond_snapshot and 1342 * save the cond_data and update function inside. 1343 * 1344 * Returns 0 if successful, error otherwise. 1345 */ 1346 int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data, 1347 cond_update_fn_t update) 1348 { 1349 struct cond_snapshot *cond_snapshot; 1350 int ret = 0; 1351 1352 cond_snapshot = kzalloc(sizeof(*cond_snapshot), GFP_KERNEL); 1353 if (!cond_snapshot) 1354 return -ENOMEM; 1355 1356 cond_snapshot->cond_data = cond_data; 1357 cond_snapshot->update = update; 1358 1359 mutex_lock(&trace_types_lock); 1360 1361 ret = tracing_alloc_snapshot_instance(tr); 1362 if (ret) 1363 goto fail_unlock; 1364 1365 if (tr->current_trace->use_max_tr) { 1366 ret = -EBUSY; 1367 goto fail_unlock; 1368 } 1369 1370 /* 1371 * The cond_snapshot can only change to NULL without the 1372 * trace_types_lock. We don't care if we race with it going 1373 * to NULL, but we want to make sure that it's not set to 1374 * something other than NULL when we get here, which we can 1375 * do safely with only holding the trace_types_lock and not 1376 * having to take the max_lock. 1377 */ 1378 if (tr->cond_snapshot) { 1379 ret = -EBUSY; 1380 goto fail_unlock; 1381 } 1382 1383 local_irq_disable(); 1384 arch_spin_lock(&tr->max_lock); 1385 tr->cond_snapshot = cond_snapshot; 1386 arch_spin_unlock(&tr->max_lock); 1387 local_irq_enable(); 1388 1389 mutex_unlock(&trace_types_lock); 1390 1391 return ret; 1392 1393 fail_unlock: 1394 mutex_unlock(&trace_types_lock); 1395 kfree(cond_snapshot); 1396 return ret; 1397 } 1398 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_enable); 1399 1400 /** 1401 * tracing_snapshot_cond_disable - disable conditional snapshot for an instance 1402 * @tr: The tracing instance 1403 * 1404 * Check whether the conditional snapshot for the given instance is 1405 * enabled; if so, free the cond_snapshot associated with it, 1406 * otherwise return -EINVAL. 1407 * 1408 * Returns 0 if successful, error otherwise. 1409 */ 1410 int tracing_snapshot_cond_disable(struct trace_array *tr) 1411 { 1412 int ret = 0; 1413 1414 local_irq_disable(); 1415 arch_spin_lock(&tr->max_lock); 1416 1417 if (!tr->cond_snapshot) 1418 ret = -EINVAL; 1419 else { 1420 kfree(tr->cond_snapshot); 1421 tr->cond_snapshot = NULL; 1422 } 1423 1424 arch_spin_unlock(&tr->max_lock); 1425 local_irq_enable(); 1426 1427 return ret; 1428 } 1429 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_disable); 1430 #else 1431 void tracing_snapshot(void) 1432 { 1433 WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used"); 1434 } 1435 EXPORT_SYMBOL_GPL(tracing_snapshot); 1436 void tracing_snapshot_cond(struct trace_array *tr, void *cond_data) 1437 { 1438 WARN_ONCE(1, "Snapshot feature not enabled, but internal conditional snapshot used"); 1439 } 1440 EXPORT_SYMBOL_GPL(tracing_snapshot_cond); 1441 int tracing_alloc_snapshot(void) 1442 { 1443 WARN_ONCE(1, "Snapshot feature not enabled, but snapshot allocation used"); 1444 return -ENODEV; 1445 } 1446 EXPORT_SYMBOL_GPL(tracing_alloc_snapshot); 1447 void tracing_snapshot_alloc(void) 1448 { 1449 /* Give warning */ 1450 tracing_snapshot(); 1451 } 1452 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc); 1453 void *tracing_cond_snapshot_data(struct trace_array *tr) 1454 { 1455 return NULL; 1456 } 1457 EXPORT_SYMBOL_GPL(tracing_cond_snapshot_data); 1458 int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data, cond_update_fn_t update) 1459 { 1460 return -ENODEV; 1461 } 1462 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_enable); 1463 int tracing_snapshot_cond_disable(struct trace_array *tr) 1464 { 1465 return false; 1466 } 1467 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_disable); 1468 #define free_snapshot(tr) do { } while (0) 1469 #endif /* CONFIG_TRACER_SNAPSHOT */ 1470 1471 void tracer_tracing_off(struct trace_array *tr) 1472 { 1473 if (tr->array_buffer.buffer) 1474 ring_buffer_record_off(tr->array_buffer.buffer); 1475 /* 1476 * This flag is looked at when buffers haven't been allocated 1477 * yet, or by some tracers (like irqsoff), that just want to 1478 * know if the ring buffer has been disabled, but it can handle 1479 * races of where it gets disabled but we still do a record. 1480 * As the check is in the fast path of the tracers, it is more 1481 * important to be fast than accurate. 1482 */ 1483 tr->buffer_disabled = 1; 1484 /* Make the flag seen by readers */ 1485 smp_wmb(); 1486 } 1487 1488 /** 1489 * tracing_off - turn off tracing buffers 1490 * 1491 * This function stops the tracing buffers from recording data. 1492 * It does not disable any overhead the tracers themselves may 1493 * be causing. This function simply causes all recording to 1494 * the ring buffers to fail. 1495 */ 1496 void tracing_off(void) 1497 { 1498 tracer_tracing_off(&global_trace); 1499 } 1500 EXPORT_SYMBOL_GPL(tracing_off); 1501 1502 void disable_trace_on_warning(void) 1503 { 1504 if (__disable_trace_on_warning) { 1505 trace_array_printk_buf(global_trace.array_buffer.buffer, _THIS_IP_, 1506 "Disabling tracing due to warning\n"); 1507 tracing_off(); 1508 } 1509 } 1510 1511 /** 1512 * tracer_tracing_is_on - show real state of ring buffer enabled 1513 * @tr : the trace array to know if ring buffer is enabled 1514 * 1515 * Shows real state of the ring buffer if it is enabled or not. 1516 */ 1517 bool tracer_tracing_is_on(struct trace_array *tr) 1518 { 1519 if (tr->array_buffer.buffer) 1520 return ring_buffer_record_is_on(tr->array_buffer.buffer); 1521 return !tr->buffer_disabled; 1522 } 1523 1524 /** 1525 * tracing_is_on - show state of ring buffers enabled 1526 */ 1527 int tracing_is_on(void) 1528 { 1529 return tracer_tracing_is_on(&global_trace); 1530 } 1531 EXPORT_SYMBOL_GPL(tracing_is_on); 1532 1533 static int __init set_buf_size(char *str) 1534 { 1535 unsigned long buf_size; 1536 1537 if (!str) 1538 return 0; 1539 buf_size = memparse(str, &str); 1540 /* 1541 * nr_entries can not be zero and the startup 1542 * tests require some buffer space. Therefore 1543 * ensure we have at least 4096 bytes of buffer. 1544 */ 1545 trace_buf_size = max(4096UL, buf_size); 1546 return 1; 1547 } 1548 __setup("trace_buf_size=", set_buf_size); 1549 1550 static int __init set_tracing_thresh(char *str) 1551 { 1552 unsigned long threshold; 1553 int ret; 1554 1555 if (!str) 1556 return 0; 1557 ret = kstrtoul(str, 0, &threshold); 1558 if (ret < 0) 1559 return 0; 1560 tracing_thresh = threshold * 1000; 1561 return 1; 1562 } 1563 __setup("tracing_thresh=", set_tracing_thresh); 1564 1565 unsigned long nsecs_to_usecs(unsigned long nsecs) 1566 { 1567 return nsecs / 1000; 1568 } 1569 1570 /* 1571 * TRACE_FLAGS is defined as a tuple matching bit masks with strings. 1572 * It uses C(a, b) where 'a' is the eval (enum) name and 'b' is the string that 1573 * matches it. By defining "C(a, b) b", TRACE_FLAGS becomes a list 1574 * of strings in the order that the evals (enum) were defined. 1575 */ 1576 #undef C 1577 #define C(a, b) b 1578 1579 /* These must match the bit positions in trace_iterator_flags */ 1580 static const char *trace_options[] = { 1581 TRACE_FLAGS 1582 NULL 1583 }; 1584 1585 static struct { 1586 u64 (*func)(void); 1587 const char *name; 1588 int in_ns; /* is this clock in nanoseconds? */ 1589 } trace_clocks[] = { 1590 { trace_clock_local, "local", 1 }, 1591 { trace_clock_global, "global", 1 }, 1592 { trace_clock_counter, "counter", 0 }, 1593 { trace_clock_jiffies, "uptime", 0 }, 1594 { trace_clock, "perf", 1 }, 1595 { ktime_get_mono_fast_ns, "mono", 1 }, 1596 { ktime_get_raw_fast_ns, "mono_raw", 1 }, 1597 { ktime_get_boot_fast_ns, "boot", 1 }, 1598 { ktime_get_tai_fast_ns, "tai", 1 }, 1599 ARCH_TRACE_CLOCKS 1600 }; 1601 1602 bool trace_clock_in_ns(struct trace_array *tr) 1603 { 1604 if (trace_clocks[tr->clock_id].in_ns) 1605 return true; 1606 1607 return false; 1608 } 1609 1610 /* 1611 * trace_parser_get_init - gets the buffer for trace parser 1612 */ 1613 int trace_parser_get_init(struct trace_parser *parser, int size) 1614 { 1615 memset(parser, 0, sizeof(*parser)); 1616 1617 parser->buffer = kmalloc(size, GFP_KERNEL); 1618 if (!parser->buffer) 1619 return 1; 1620 1621 parser->size = size; 1622 return 0; 1623 } 1624 1625 /* 1626 * trace_parser_put - frees the buffer for trace parser 1627 */ 1628 void trace_parser_put(struct trace_parser *parser) 1629 { 1630 kfree(parser->buffer); 1631 parser->buffer = NULL; 1632 } 1633 1634 /* 1635 * trace_get_user - reads the user input string separated by space 1636 * (matched by isspace(ch)) 1637 * 1638 * For each string found the 'struct trace_parser' is updated, 1639 * and the function returns. 1640 * 1641 * Returns number of bytes read. 1642 * 1643 * See kernel/trace/trace.h for 'struct trace_parser' details. 1644 */ 1645 int trace_get_user(struct trace_parser *parser, const char __user *ubuf, 1646 size_t cnt, loff_t *ppos) 1647 { 1648 char ch; 1649 size_t read = 0; 1650 ssize_t ret; 1651 1652 if (!*ppos) 1653 trace_parser_clear(parser); 1654 1655 ret = get_user(ch, ubuf++); 1656 if (ret) 1657 goto out; 1658 1659 read++; 1660 cnt--; 1661 1662 /* 1663 * The parser is not finished with the last write, 1664 * continue reading the user input without skipping spaces. 1665 */ 1666 if (!parser->cont) { 1667 /* skip white space */ 1668 while (cnt && isspace(ch)) { 1669 ret = get_user(ch, ubuf++); 1670 if (ret) 1671 goto out; 1672 read++; 1673 cnt--; 1674 } 1675 1676 parser->idx = 0; 1677 1678 /* only spaces were written */ 1679 if (isspace(ch) || !ch) { 1680 *ppos += read; 1681 ret = read; 1682 goto out; 1683 } 1684 } 1685 1686 /* read the non-space input */ 1687 while (cnt && !isspace(ch) && ch) { 1688 if (parser->idx < parser->size - 1) 1689 parser->buffer[parser->idx++] = ch; 1690 else { 1691 ret = -EINVAL; 1692 goto out; 1693 } 1694 ret = get_user(ch, ubuf++); 1695 if (ret) 1696 goto out; 1697 read++; 1698 cnt--; 1699 } 1700 1701 /* We either got finished input or we have to wait for another call. */ 1702 if (isspace(ch) || !ch) { 1703 parser->buffer[parser->idx] = 0; 1704 parser->cont = false; 1705 } else if (parser->idx < parser->size - 1) { 1706 parser->cont = true; 1707 parser->buffer[parser->idx++] = ch; 1708 /* Make sure the parsed string always terminates with '\0'. */ 1709 parser->buffer[parser->idx] = 0; 1710 } else { 1711 ret = -EINVAL; 1712 goto out; 1713 } 1714 1715 *ppos += read; 1716 ret = read; 1717 1718 out: 1719 return ret; 1720 } 1721 1722 /* TODO add a seq_buf_to_buffer() */ 1723 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt) 1724 { 1725 int len; 1726 1727 if (trace_seq_used(s) <= s->seq.readpos) 1728 return -EBUSY; 1729 1730 len = trace_seq_used(s) - s->seq.readpos; 1731 if (cnt > len) 1732 cnt = len; 1733 memcpy(buf, s->buffer + s->seq.readpos, cnt); 1734 1735 s->seq.readpos += cnt; 1736 return cnt; 1737 } 1738 1739 unsigned long __read_mostly tracing_thresh; 1740 1741 #ifdef CONFIG_TRACER_MAX_TRACE 1742 static const struct file_operations tracing_max_lat_fops; 1743 1744 #ifdef LATENCY_FS_NOTIFY 1745 1746 static struct workqueue_struct *fsnotify_wq; 1747 1748 static void latency_fsnotify_workfn(struct work_struct *work) 1749 { 1750 struct trace_array *tr = container_of(work, struct trace_array, 1751 fsnotify_work); 1752 fsnotify_inode(tr->d_max_latency->d_inode, FS_MODIFY); 1753 } 1754 1755 static void latency_fsnotify_workfn_irq(struct irq_work *iwork) 1756 { 1757 struct trace_array *tr = container_of(iwork, struct trace_array, 1758 fsnotify_irqwork); 1759 queue_work(fsnotify_wq, &tr->fsnotify_work); 1760 } 1761 1762 static void trace_create_maxlat_file(struct trace_array *tr, 1763 struct dentry *d_tracer) 1764 { 1765 INIT_WORK(&tr->fsnotify_work, latency_fsnotify_workfn); 1766 init_irq_work(&tr->fsnotify_irqwork, latency_fsnotify_workfn_irq); 1767 tr->d_max_latency = trace_create_file("tracing_max_latency", 1768 TRACE_MODE_WRITE, 1769 d_tracer, &tr->max_latency, 1770 &tracing_max_lat_fops); 1771 } 1772 1773 __init static int latency_fsnotify_init(void) 1774 { 1775 fsnotify_wq = alloc_workqueue("tr_max_lat_wq", 1776 WQ_UNBOUND | WQ_HIGHPRI, 0); 1777 if (!fsnotify_wq) { 1778 pr_err("Unable to allocate tr_max_lat_wq\n"); 1779 return -ENOMEM; 1780 } 1781 return 0; 1782 } 1783 1784 late_initcall_sync(latency_fsnotify_init); 1785 1786 void latency_fsnotify(struct trace_array *tr) 1787 { 1788 if (!fsnotify_wq) 1789 return; 1790 /* 1791 * We cannot call queue_work(&tr->fsnotify_work) from here because it's 1792 * possible that we are called from __schedule() or do_idle(), which 1793 * could cause a deadlock. 1794 */ 1795 irq_work_queue(&tr->fsnotify_irqwork); 1796 } 1797 1798 #else /* !LATENCY_FS_NOTIFY */ 1799 1800 #define trace_create_maxlat_file(tr, d_tracer) \ 1801 trace_create_file("tracing_max_latency", TRACE_MODE_WRITE, \ 1802 d_tracer, &tr->max_latency, &tracing_max_lat_fops) 1803 1804 #endif 1805 1806 /* 1807 * Copy the new maximum trace into the separate maximum-trace 1808 * structure. (this way the maximum trace is permanently saved, 1809 * for later retrieval via /sys/kernel/tracing/tracing_max_latency) 1810 */ 1811 static void 1812 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu) 1813 { 1814 struct array_buffer *trace_buf = &tr->array_buffer; 1815 struct array_buffer *max_buf = &tr->max_buffer; 1816 struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu); 1817 struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu); 1818 1819 max_buf->cpu = cpu; 1820 max_buf->time_start = data->preempt_timestamp; 1821 1822 max_data->saved_latency = tr->max_latency; 1823 max_data->critical_start = data->critical_start; 1824 max_data->critical_end = data->critical_end; 1825 1826 strncpy(max_data->comm, tsk->comm, TASK_COMM_LEN); 1827 max_data->pid = tsk->pid; 1828 /* 1829 * If tsk == current, then use current_uid(), as that does not use 1830 * RCU. The irq tracer can be called out of RCU scope. 1831 */ 1832 if (tsk == current) 1833 max_data->uid = current_uid(); 1834 else 1835 max_data->uid = task_uid(tsk); 1836 1837 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO; 1838 max_data->policy = tsk->policy; 1839 max_data->rt_priority = tsk->rt_priority; 1840 1841 /* record this tasks comm */ 1842 tracing_record_cmdline(tsk); 1843 latency_fsnotify(tr); 1844 } 1845 1846 /** 1847 * update_max_tr - snapshot all trace buffers from global_trace to max_tr 1848 * @tr: tracer 1849 * @tsk: the task with the latency 1850 * @cpu: The cpu that initiated the trace. 1851 * @cond_data: User data associated with a conditional snapshot 1852 * 1853 * Flip the buffers between the @tr and the max_tr and record information 1854 * about which task was the cause of this latency. 1855 */ 1856 void 1857 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu, 1858 void *cond_data) 1859 { 1860 if (tr->stop_count) 1861 return; 1862 1863 WARN_ON_ONCE(!irqs_disabled()); 1864 1865 if (!tr->allocated_snapshot) { 1866 /* Only the nop tracer should hit this when disabling */ 1867 WARN_ON_ONCE(tr->current_trace != &nop_trace); 1868 return; 1869 } 1870 1871 arch_spin_lock(&tr->max_lock); 1872 1873 /* Inherit the recordable setting from array_buffer */ 1874 if (ring_buffer_record_is_set_on(tr->array_buffer.buffer)) 1875 ring_buffer_record_on(tr->max_buffer.buffer); 1876 else 1877 ring_buffer_record_off(tr->max_buffer.buffer); 1878 1879 #ifdef CONFIG_TRACER_SNAPSHOT 1880 if (tr->cond_snapshot && !tr->cond_snapshot->update(tr, cond_data)) { 1881 arch_spin_unlock(&tr->max_lock); 1882 return; 1883 } 1884 #endif 1885 swap(tr->array_buffer.buffer, tr->max_buffer.buffer); 1886 1887 __update_max_tr(tr, tsk, cpu); 1888 1889 arch_spin_unlock(&tr->max_lock); 1890 } 1891 1892 /** 1893 * update_max_tr_single - only copy one trace over, and reset the rest 1894 * @tr: tracer 1895 * @tsk: task with the latency 1896 * @cpu: the cpu of the buffer to copy. 1897 * 1898 * Flip the trace of a single CPU buffer between the @tr and the max_tr. 1899 */ 1900 void 1901 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu) 1902 { 1903 int ret; 1904 1905 if (tr->stop_count) 1906 return; 1907 1908 WARN_ON_ONCE(!irqs_disabled()); 1909 if (!tr->allocated_snapshot) { 1910 /* Only the nop tracer should hit this when disabling */ 1911 WARN_ON_ONCE(tr->current_trace != &nop_trace); 1912 return; 1913 } 1914 1915 arch_spin_lock(&tr->max_lock); 1916 1917 ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->array_buffer.buffer, cpu); 1918 1919 if (ret == -EBUSY) { 1920 /* 1921 * We failed to swap the buffer due to a commit taking 1922 * place on this CPU. We fail to record, but we reset 1923 * the max trace buffer (no one writes directly to it) 1924 * and flag that it failed. 1925 */ 1926 trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_, 1927 "Failed to swap buffers due to commit in progress\n"); 1928 } 1929 1930 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY); 1931 1932 __update_max_tr(tr, tsk, cpu); 1933 arch_spin_unlock(&tr->max_lock); 1934 } 1935 1936 #endif /* CONFIG_TRACER_MAX_TRACE */ 1937 1938 static int wait_on_pipe(struct trace_iterator *iter, int full) 1939 { 1940 /* Iterators are static, they should be filled or empty */ 1941 if (trace_buffer_iter(iter, iter->cpu_file)) 1942 return 0; 1943 1944 return ring_buffer_wait(iter->array_buffer->buffer, iter->cpu_file, 1945 full); 1946 } 1947 1948 #ifdef CONFIG_FTRACE_STARTUP_TEST 1949 static bool selftests_can_run; 1950 1951 struct trace_selftests { 1952 struct list_head list; 1953 struct tracer *type; 1954 }; 1955 1956 static LIST_HEAD(postponed_selftests); 1957 1958 static int save_selftest(struct tracer *type) 1959 { 1960 struct trace_selftests *selftest; 1961 1962 selftest = kmalloc(sizeof(*selftest), GFP_KERNEL); 1963 if (!selftest) 1964 return -ENOMEM; 1965 1966 selftest->type = type; 1967 list_add(&selftest->list, &postponed_selftests); 1968 return 0; 1969 } 1970 1971 static int run_tracer_selftest(struct tracer *type) 1972 { 1973 struct trace_array *tr = &global_trace; 1974 struct tracer *saved_tracer = tr->current_trace; 1975 int ret; 1976 1977 if (!type->selftest || tracing_selftest_disabled) 1978 return 0; 1979 1980 /* 1981 * If a tracer registers early in boot up (before scheduling is 1982 * initialized and such), then do not run its selftests yet. 1983 * Instead, run it a little later in the boot process. 1984 */ 1985 if (!selftests_can_run) 1986 return save_selftest(type); 1987 1988 if (!tracing_is_on()) { 1989 pr_warn("Selftest for tracer %s skipped due to tracing disabled\n", 1990 type->name); 1991 return 0; 1992 } 1993 1994 /* 1995 * Run a selftest on this tracer. 1996 * Here we reset the trace buffer, and set the current 1997 * tracer to be this tracer. The tracer can then run some 1998 * internal tracing to verify that everything is in order. 1999 * If we fail, we do not register this tracer. 2000 */ 2001 tracing_reset_online_cpus(&tr->array_buffer); 2002 2003 tr->current_trace = type; 2004 2005 #ifdef CONFIG_TRACER_MAX_TRACE 2006 if (type->use_max_tr) { 2007 /* If we expanded the buffers, make sure the max is expanded too */ 2008 if (ring_buffer_expanded) 2009 ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size, 2010 RING_BUFFER_ALL_CPUS); 2011 tr->allocated_snapshot = true; 2012 } 2013 #endif 2014 2015 /* the test is responsible for initializing and enabling */ 2016 pr_info("Testing tracer %s: ", type->name); 2017 ret = type->selftest(type, tr); 2018 /* the test is responsible for resetting too */ 2019 tr->current_trace = saved_tracer; 2020 if (ret) { 2021 printk(KERN_CONT "FAILED!\n"); 2022 /* Add the warning after printing 'FAILED' */ 2023 WARN_ON(1); 2024 return -1; 2025 } 2026 /* Only reset on passing, to avoid touching corrupted buffers */ 2027 tracing_reset_online_cpus(&tr->array_buffer); 2028 2029 #ifdef CONFIG_TRACER_MAX_TRACE 2030 if (type->use_max_tr) { 2031 tr->allocated_snapshot = false; 2032 2033 /* Shrink the max buffer again */ 2034 if (ring_buffer_expanded) 2035 ring_buffer_resize(tr->max_buffer.buffer, 1, 2036 RING_BUFFER_ALL_CPUS); 2037 } 2038 #endif 2039 2040 printk(KERN_CONT "PASSED\n"); 2041 return 0; 2042 } 2043 2044 static __init int init_trace_selftests(void) 2045 { 2046 struct trace_selftests *p, *n; 2047 struct tracer *t, **last; 2048 int ret; 2049 2050 selftests_can_run = true; 2051 2052 mutex_lock(&trace_types_lock); 2053 2054 if (list_empty(&postponed_selftests)) 2055 goto out; 2056 2057 pr_info("Running postponed tracer tests:\n"); 2058 2059 tracing_selftest_running = true; 2060 list_for_each_entry_safe(p, n, &postponed_selftests, list) { 2061 /* This loop can take minutes when sanitizers are enabled, so 2062 * lets make sure we allow RCU processing. 2063 */ 2064 cond_resched(); 2065 ret = run_tracer_selftest(p->type); 2066 /* If the test fails, then warn and remove from available_tracers */ 2067 if (ret < 0) { 2068 WARN(1, "tracer: %s failed selftest, disabling\n", 2069 p->type->name); 2070 last = &trace_types; 2071 for (t = trace_types; t; t = t->next) { 2072 if (t == p->type) { 2073 *last = t->next; 2074 break; 2075 } 2076 last = &t->next; 2077 } 2078 } 2079 list_del(&p->list); 2080 kfree(p); 2081 } 2082 tracing_selftest_running = false; 2083 2084 out: 2085 mutex_unlock(&trace_types_lock); 2086 2087 return 0; 2088 } 2089 core_initcall(init_trace_selftests); 2090 #else 2091 static inline int run_tracer_selftest(struct tracer *type) 2092 { 2093 return 0; 2094 } 2095 #endif /* CONFIG_FTRACE_STARTUP_TEST */ 2096 2097 static void add_tracer_options(struct trace_array *tr, struct tracer *t); 2098 2099 static void __init apply_trace_boot_options(void); 2100 2101 /** 2102 * register_tracer - register a tracer with the ftrace system. 2103 * @type: the plugin for the tracer 2104 * 2105 * Register a new plugin tracer. 2106 */ 2107 int __init register_tracer(struct tracer *type) 2108 { 2109 struct tracer *t; 2110 int ret = 0; 2111 2112 if (!type->name) { 2113 pr_info("Tracer must have a name\n"); 2114 return -1; 2115 } 2116 2117 if (strlen(type->name) >= MAX_TRACER_SIZE) { 2118 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE); 2119 return -1; 2120 } 2121 2122 if (security_locked_down(LOCKDOWN_TRACEFS)) { 2123 pr_warn("Can not register tracer %s due to lockdown\n", 2124 type->name); 2125 return -EPERM; 2126 } 2127 2128 mutex_lock(&trace_types_lock); 2129 2130 tracing_selftest_running = true; 2131 2132 for (t = trace_types; t; t = t->next) { 2133 if (strcmp(type->name, t->name) == 0) { 2134 /* already found */ 2135 pr_info("Tracer %s already registered\n", 2136 type->name); 2137 ret = -1; 2138 goto out; 2139 } 2140 } 2141 2142 if (!type->set_flag) 2143 type->set_flag = &dummy_set_flag; 2144 if (!type->flags) { 2145 /*allocate a dummy tracer_flags*/ 2146 type->flags = kmalloc(sizeof(*type->flags), GFP_KERNEL); 2147 if (!type->flags) { 2148 ret = -ENOMEM; 2149 goto out; 2150 } 2151 type->flags->val = 0; 2152 type->flags->opts = dummy_tracer_opt; 2153 } else 2154 if (!type->flags->opts) 2155 type->flags->opts = dummy_tracer_opt; 2156 2157 /* store the tracer for __set_tracer_option */ 2158 type->flags->trace = type; 2159 2160 ret = run_tracer_selftest(type); 2161 if (ret < 0) 2162 goto out; 2163 2164 type->next = trace_types; 2165 trace_types = type; 2166 add_tracer_options(&global_trace, type); 2167 2168 out: 2169 tracing_selftest_running = false; 2170 mutex_unlock(&trace_types_lock); 2171 2172 if (ret || !default_bootup_tracer) 2173 goto out_unlock; 2174 2175 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE)) 2176 goto out_unlock; 2177 2178 printk(KERN_INFO "Starting tracer '%s'\n", type->name); 2179 /* Do we want this tracer to start on bootup? */ 2180 tracing_set_tracer(&global_trace, type->name); 2181 default_bootup_tracer = NULL; 2182 2183 apply_trace_boot_options(); 2184 2185 /* disable other selftests, since this will break it. */ 2186 disable_tracing_selftest("running a tracer"); 2187 2188 out_unlock: 2189 return ret; 2190 } 2191 2192 static void tracing_reset_cpu(struct array_buffer *buf, int cpu) 2193 { 2194 struct trace_buffer *buffer = buf->buffer; 2195 2196 if (!buffer) 2197 return; 2198 2199 ring_buffer_record_disable(buffer); 2200 2201 /* Make sure all commits have finished */ 2202 synchronize_rcu(); 2203 ring_buffer_reset_cpu(buffer, cpu); 2204 2205 ring_buffer_record_enable(buffer); 2206 } 2207 2208 void tracing_reset_online_cpus(struct array_buffer *buf) 2209 { 2210 struct trace_buffer *buffer = buf->buffer; 2211 2212 if (!buffer) 2213 return; 2214 2215 ring_buffer_record_disable(buffer); 2216 2217 /* Make sure all commits have finished */ 2218 synchronize_rcu(); 2219 2220 buf->time_start = buffer_ftrace_now(buf, buf->cpu); 2221 2222 ring_buffer_reset_online_cpus(buffer); 2223 2224 ring_buffer_record_enable(buffer); 2225 } 2226 2227 /* Must have trace_types_lock held */ 2228 void tracing_reset_all_online_cpus_unlocked(void) 2229 { 2230 struct trace_array *tr; 2231 2232 lockdep_assert_held(&trace_types_lock); 2233 2234 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 2235 if (!tr->clear_trace) 2236 continue; 2237 tr->clear_trace = false; 2238 tracing_reset_online_cpus(&tr->array_buffer); 2239 #ifdef CONFIG_TRACER_MAX_TRACE 2240 tracing_reset_online_cpus(&tr->max_buffer); 2241 #endif 2242 } 2243 } 2244 2245 void tracing_reset_all_online_cpus(void) 2246 { 2247 mutex_lock(&trace_types_lock); 2248 tracing_reset_all_online_cpus_unlocked(); 2249 mutex_unlock(&trace_types_lock); 2250 } 2251 2252 /* 2253 * The tgid_map array maps from pid to tgid; i.e. the value stored at index i 2254 * is the tgid last observed corresponding to pid=i. 2255 */ 2256 static int *tgid_map; 2257 2258 /* The maximum valid index into tgid_map. */ 2259 static size_t tgid_map_max; 2260 2261 #define SAVED_CMDLINES_DEFAULT 128 2262 #define NO_CMDLINE_MAP UINT_MAX 2263 /* 2264 * Preemption must be disabled before acquiring trace_cmdline_lock. 2265 * The various trace_arrays' max_lock must be acquired in a context 2266 * where interrupt is disabled. 2267 */ 2268 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED; 2269 struct saved_cmdlines_buffer { 2270 unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1]; 2271 unsigned *map_cmdline_to_pid; 2272 unsigned cmdline_num; 2273 int cmdline_idx; 2274 char *saved_cmdlines; 2275 }; 2276 static struct saved_cmdlines_buffer *savedcmd; 2277 2278 static inline char *get_saved_cmdlines(int idx) 2279 { 2280 return &savedcmd->saved_cmdlines[idx * TASK_COMM_LEN]; 2281 } 2282 2283 static inline void set_cmdline(int idx, const char *cmdline) 2284 { 2285 strncpy(get_saved_cmdlines(idx), cmdline, TASK_COMM_LEN); 2286 } 2287 2288 static int allocate_cmdlines_buffer(unsigned int val, 2289 struct saved_cmdlines_buffer *s) 2290 { 2291 s->map_cmdline_to_pid = kmalloc_array(val, 2292 sizeof(*s->map_cmdline_to_pid), 2293 GFP_KERNEL); 2294 if (!s->map_cmdline_to_pid) 2295 return -ENOMEM; 2296 2297 s->saved_cmdlines = kmalloc_array(TASK_COMM_LEN, val, GFP_KERNEL); 2298 if (!s->saved_cmdlines) { 2299 kfree(s->map_cmdline_to_pid); 2300 return -ENOMEM; 2301 } 2302 2303 s->cmdline_idx = 0; 2304 s->cmdline_num = val; 2305 memset(&s->map_pid_to_cmdline, NO_CMDLINE_MAP, 2306 sizeof(s->map_pid_to_cmdline)); 2307 memset(s->map_cmdline_to_pid, NO_CMDLINE_MAP, 2308 val * sizeof(*s->map_cmdline_to_pid)); 2309 2310 return 0; 2311 } 2312 2313 static int trace_create_savedcmd(void) 2314 { 2315 int ret; 2316 2317 savedcmd = kmalloc(sizeof(*savedcmd), GFP_KERNEL); 2318 if (!savedcmd) 2319 return -ENOMEM; 2320 2321 ret = allocate_cmdlines_buffer(SAVED_CMDLINES_DEFAULT, savedcmd); 2322 if (ret < 0) { 2323 kfree(savedcmd); 2324 savedcmd = NULL; 2325 return -ENOMEM; 2326 } 2327 2328 return 0; 2329 } 2330 2331 int is_tracing_stopped(void) 2332 { 2333 return global_trace.stop_count; 2334 } 2335 2336 /** 2337 * tracing_start - quick start of the tracer 2338 * 2339 * If tracing is enabled but was stopped by tracing_stop, 2340 * this will start the tracer back up. 2341 */ 2342 void tracing_start(void) 2343 { 2344 struct trace_buffer *buffer; 2345 unsigned long flags; 2346 2347 if (tracing_disabled) 2348 return; 2349 2350 raw_spin_lock_irqsave(&global_trace.start_lock, flags); 2351 if (--global_trace.stop_count) { 2352 if (global_trace.stop_count < 0) { 2353 /* Someone screwed up their debugging */ 2354 WARN_ON_ONCE(1); 2355 global_trace.stop_count = 0; 2356 } 2357 goto out; 2358 } 2359 2360 /* Prevent the buffers from switching */ 2361 arch_spin_lock(&global_trace.max_lock); 2362 2363 buffer = global_trace.array_buffer.buffer; 2364 if (buffer) 2365 ring_buffer_record_enable(buffer); 2366 2367 #ifdef CONFIG_TRACER_MAX_TRACE 2368 buffer = global_trace.max_buffer.buffer; 2369 if (buffer) 2370 ring_buffer_record_enable(buffer); 2371 #endif 2372 2373 arch_spin_unlock(&global_trace.max_lock); 2374 2375 out: 2376 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags); 2377 } 2378 2379 static void tracing_start_tr(struct trace_array *tr) 2380 { 2381 struct trace_buffer *buffer; 2382 unsigned long flags; 2383 2384 if (tracing_disabled) 2385 return; 2386 2387 /* If global, we need to also start the max tracer */ 2388 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) 2389 return tracing_start(); 2390 2391 raw_spin_lock_irqsave(&tr->start_lock, flags); 2392 2393 if (--tr->stop_count) { 2394 if (tr->stop_count < 0) { 2395 /* Someone screwed up their debugging */ 2396 WARN_ON_ONCE(1); 2397 tr->stop_count = 0; 2398 } 2399 goto out; 2400 } 2401 2402 buffer = tr->array_buffer.buffer; 2403 if (buffer) 2404 ring_buffer_record_enable(buffer); 2405 2406 out: 2407 raw_spin_unlock_irqrestore(&tr->start_lock, flags); 2408 } 2409 2410 /** 2411 * tracing_stop - quick stop of the tracer 2412 * 2413 * Light weight way to stop tracing. Use in conjunction with 2414 * tracing_start. 2415 */ 2416 void tracing_stop(void) 2417 { 2418 struct trace_buffer *buffer; 2419 unsigned long flags; 2420 2421 raw_spin_lock_irqsave(&global_trace.start_lock, flags); 2422 if (global_trace.stop_count++) 2423 goto out; 2424 2425 /* Prevent the buffers from switching */ 2426 arch_spin_lock(&global_trace.max_lock); 2427 2428 buffer = global_trace.array_buffer.buffer; 2429 if (buffer) 2430 ring_buffer_record_disable(buffer); 2431 2432 #ifdef CONFIG_TRACER_MAX_TRACE 2433 buffer = global_trace.max_buffer.buffer; 2434 if (buffer) 2435 ring_buffer_record_disable(buffer); 2436 #endif 2437 2438 arch_spin_unlock(&global_trace.max_lock); 2439 2440 out: 2441 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags); 2442 } 2443 2444 static void tracing_stop_tr(struct trace_array *tr) 2445 { 2446 struct trace_buffer *buffer; 2447 unsigned long flags; 2448 2449 /* If global, we need to also stop the max tracer */ 2450 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) 2451 return tracing_stop(); 2452 2453 raw_spin_lock_irqsave(&tr->start_lock, flags); 2454 if (tr->stop_count++) 2455 goto out; 2456 2457 buffer = tr->array_buffer.buffer; 2458 if (buffer) 2459 ring_buffer_record_disable(buffer); 2460 2461 out: 2462 raw_spin_unlock_irqrestore(&tr->start_lock, flags); 2463 } 2464 2465 static int trace_save_cmdline(struct task_struct *tsk) 2466 { 2467 unsigned tpid, idx; 2468 2469 /* treat recording of idle task as a success */ 2470 if (!tsk->pid) 2471 return 1; 2472 2473 tpid = tsk->pid & (PID_MAX_DEFAULT - 1); 2474 2475 /* 2476 * It's not the end of the world if we don't get 2477 * the lock, but we also don't want to spin 2478 * nor do we want to disable interrupts, 2479 * so if we miss here, then better luck next time. 2480 * 2481 * This is called within the scheduler and wake up, so interrupts 2482 * had better been disabled and run queue lock been held. 2483 */ 2484 lockdep_assert_preemption_disabled(); 2485 if (!arch_spin_trylock(&trace_cmdline_lock)) 2486 return 0; 2487 2488 idx = savedcmd->map_pid_to_cmdline[tpid]; 2489 if (idx == NO_CMDLINE_MAP) { 2490 idx = (savedcmd->cmdline_idx + 1) % savedcmd->cmdline_num; 2491 2492 savedcmd->map_pid_to_cmdline[tpid] = idx; 2493 savedcmd->cmdline_idx = idx; 2494 } 2495 2496 savedcmd->map_cmdline_to_pid[idx] = tsk->pid; 2497 set_cmdline(idx, tsk->comm); 2498 2499 arch_spin_unlock(&trace_cmdline_lock); 2500 2501 return 1; 2502 } 2503 2504 static void __trace_find_cmdline(int pid, char comm[]) 2505 { 2506 unsigned map; 2507 int tpid; 2508 2509 if (!pid) { 2510 strcpy(comm, "<idle>"); 2511 return; 2512 } 2513 2514 if (WARN_ON_ONCE(pid < 0)) { 2515 strcpy(comm, "<XXX>"); 2516 return; 2517 } 2518 2519 tpid = pid & (PID_MAX_DEFAULT - 1); 2520 map = savedcmd->map_pid_to_cmdline[tpid]; 2521 if (map != NO_CMDLINE_MAP) { 2522 tpid = savedcmd->map_cmdline_to_pid[map]; 2523 if (tpid == pid) { 2524 strlcpy(comm, get_saved_cmdlines(map), TASK_COMM_LEN); 2525 return; 2526 } 2527 } 2528 strcpy(comm, "<...>"); 2529 } 2530 2531 void trace_find_cmdline(int pid, char comm[]) 2532 { 2533 preempt_disable(); 2534 arch_spin_lock(&trace_cmdline_lock); 2535 2536 __trace_find_cmdline(pid, comm); 2537 2538 arch_spin_unlock(&trace_cmdline_lock); 2539 preempt_enable(); 2540 } 2541 2542 static int *trace_find_tgid_ptr(int pid) 2543 { 2544 /* 2545 * Pairs with the smp_store_release in set_tracer_flag() to ensure that 2546 * if we observe a non-NULL tgid_map then we also observe the correct 2547 * tgid_map_max. 2548 */ 2549 int *map = smp_load_acquire(&tgid_map); 2550 2551 if (unlikely(!map || pid > tgid_map_max)) 2552 return NULL; 2553 2554 return &map[pid]; 2555 } 2556 2557 int trace_find_tgid(int pid) 2558 { 2559 int *ptr = trace_find_tgid_ptr(pid); 2560 2561 return ptr ? *ptr : 0; 2562 } 2563 2564 static int trace_save_tgid(struct task_struct *tsk) 2565 { 2566 int *ptr; 2567 2568 /* treat recording of idle task as a success */ 2569 if (!tsk->pid) 2570 return 1; 2571 2572 ptr = trace_find_tgid_ptr(tsk->pid); 2573 if (!ptr) 2574 return 0; 2575 2576 *ptr = tsk->tgid; 2577 return 1; 2578 } 2579 2580 static bool tracing_record_taskinfo_skip(int flags) 2581 { 2582 if (unlikely(!(flags & (TRACE_RECORD_CMDLINE | TRACE_RECORD_TGID)))) 2583 return true; 2584 if (!__this_cpu_read(trace_taskinfo_save)) 2585 return true; 2586 return false; 2587 } 2588 2589 /** 2590 * tracing_record_taskinfo - record the task info of a task 2591 * 2592 * @task: task to record 2593 * @flags: TRACE_RECORD_CMDLINE for recording comm 2594 * TRACE_RECORD_TGID for recording tgid 2595 */ 2596 void tracing_record_taskinfo(struct task_struct *task, int flags) 2597 { 2598 bool done; 2599 2600 if (tracing_record_taskinfo_skip(flags)) 2601 return; 2602 2603 /* 2604 * Record as much task information as possible. If some fail, continue 2605 * to try to record the others. 2606 */ 2607 done = !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(task); 2608 done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(task); 2609 2610 /* If recording any information failed, retry again soon. */ 2611 if (!done) 2612 return; 2613 2614 __this_cpu_write(trace_taskinfo_save, false); 2615 } 2616 2617 /** 2618 * tracing_record_taskinfo_sched_switch - record task info for sched_switch 2619 * 2620 * @prev: previous task during sched_switch 2621 * @next: next task during sched_switch 2622 * @flags: TRACE_RECORD_CMDLINE for recording comm 2623 * TRACE_RECORD_TGID for recording tgid 2624 */ 2625 void tracing_record_taskinfo_sched_switch(struct task_struct *prev, 2626 struct task_struct *next, int flags) 2627 { 2628 bool done; 2629 2630 if (tracing_record_taskinfo_skip(flags)) 2631 return; 2632 2633 /* 2634 * Record as much task information as possible. If some fail, continue 2635 * to try to record the others. 2636 */ 2637 done = !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(prev); 2638 done &= !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(next); 2639 done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(prev); 2640 done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(next); 2641 2642 /* If recording any information failed, retry again soon. */ 2643 if (!done) 2644 return; 2645 2646 __this_cpu_write(trace_taskinfo_save, false); 2647 } 2648 2649 /* Helpers to record a specific task information */ 2650 void tracing_record_cmdline(struct task_struct *task) 2651 { 2652 tracing_record_taskinfo(task, TRACE_RECORD_CMDLINE); 2653 } 2654 2655 void tracing_record_tgid(struct task_struct *task) 2656 { 2657 tracing_record_taskinfo(task, TRACE_RECORD_TGID); 2658 } 2659 2660 /* 2661 * Several functions return TRACE_TYPE_PARTIAL_LINE if the trace_seq 2662 * overflowed, and TRACE_TYPE_HANDLED otherwise. This helper function 2663 * simplifies those functions and keeps them in sync. 2664 */ 2665 enum print_line_t trace_handle_return(struct trace_seq *s) 2666 { 2667 return trace_seq_has_overflowed(s) ? 2668 TRACE_TYPE_PARTIAL_LINE : TRACE_TYPE_HANDLED; 2669 } 2670 EXPORT_SYMBOL_GPL(trace_handle_return); 2671 2672 static unsigned short migration_disable_value(void) 2673 { 2674 #if defined(CONFIG_SMP) 2675 return current->migration_disabled; 2676 #else 2677 return 0; 2678 #endif 2679 } 2680 2681 unsigned int tracing_gen_ctx_irq_test(unsigned int irqs_status) 2682 { 2683 unsigned int trace_flags = irqs_status; 2684 unsigned int pc; 2685 2686 pc = preempt_count(); 2687 2688 if (pc & NMI_MASK) 2689 trace_flags |= TRACE_FLAG_NMI; 2690 if (pc & HARDIRQ_MASK) 2691 trace_flags |= TRACE_FLAG_HARDIRQ; 2692 if (in_serving_softirq()) 2693 trace_flags |= TRACE_FLAG_SOFTIRQ; 2694 if (softirq_count() >> (SOFTIRQ_SHIFT + 1)) 2695 trace_flags |= TRACE_FLAG_BH_OFF; 2696 2697 if (tif_need_resched()) 2698 trace_flags |= TRACE_FLAG_NEED_RESCHED; 2699 if (test_preempt_need_resched()) 2700 trace_flags |= TRACE_FLAG_PREEMPT_RESCHED; 2701 return (trace_flags << 16) | (min_t(unsigned int, pc & 0xff, 0xf)) | 2702 (min_t(unsigned int, migration_disable_value(), 0xf)) << 4; 2703 } 2704 2705 struct ring_buffer_event * 2706 trace_buffer_lock_reserve(struct trace_buffer *buffer, 2707 int type, 2708 unsigned long len, 2709 unsigned int trace_ctx) 2710 { 2711 return __trace_buffer_lock_reserve(buffer, type, len, trace_ctx); 2712 } 2713 2714 DEFINE_PER_CPU(struct ring_buffer_event *, trace_buffered_event); 2715 DEFINE_PER_CPU(int, trace_buffered_event_cnt); 2716 static int trace_buffered_event_ref; 2717 2718 /** 2719 * trace_buffered_event_enable - enable buffering events 2720 * 2721 * When events are being filtered, it is quicker to use a temporary 2722 * buffer to write the event data into if there's a likely chance 2723 * that it will not be committed. The discard of the ring buffer 2724 * is not as fast as committing, and is much slower than copying 2725 * a commit. 2726 * 2727 * When an event is to be filtered, allocate per cpu buffers to 2728 * write the event data into, and if the event is filtered and discarded 2729 * it is simply dropped, otherwise, the entire data is to be committed 2730 * in one shot. 2731 */ 2732 void trace_buffered_event_enable(void) 2733 { 2734 struct ring_buffer_event *event; 2735 struct page *page; 2736 int cpu; 2737 2738 WARN_ON_ONCE(!mutex_is_locked(&event_mutex)); 2739 2740 if (trace_buffered_event_ref++) 2741 return; 2742 2743 for_each_tracing_cpu(cpu) { 2744 page = alloc_pages_node(cpu_to_node(cpu), 2745 GFP_KERNEL | __GFP_NORETRY, 0); 2746 if (!page) 2747 goto failed; 2748 2749 event = page_address(page); 2750 memset(event, 0, sizeof(*event)); 2751 2752 per_cpu(trace_buffered_event, cpu) = event; 2753 2754 preempt_disable(); 2755 if (cpu == smp_processor_id() && 2756 __this_cpu_read(trace_buffered_event) != 2757 per_cpu(trace_buffered_event, cpu)) 2758 WARN_ON_ONCE(1); 2759 preempt_enable(); 2760 } 2761 2762 return; 2763 failed: 2764 trace_buffered_event_disable(); 2765 } 2766 2767 static void enable_trace_buffered_event(void *data) 2768 { 2769 /* Probably not needed, but do it anyway */ 2770 smp_rmb(); 2771 this_cpu_dec(trace_buffered_event_cnt); 2772 } 2773 2774 static void disable_trace_buffered_event(void *data) 2775 { 2776 this_cpu_inc(trace_buffered_event_cnt); 2777 } 2778 2779 /** 2780 * trace_buffered_event_disable - disable buffering events 2781 * 2782 * When a filter is removed, it is faster to not use the buffered 2783 * events, and to commit directly into the ring buffer. Free up 2784 * the temp buffers when there are no more users. This requires 2785 * special synchronization with current events. 2786 */ 2787 void trace_buffered_event_disable(void) 2788 { 2789 int cpu; 2790 2791 WARN_ON_ONCE(!mutex_is_locked(&event_mutex)); 2792 2793 if (WARN_ON_ONCE(!trace_buffered_event_ref)) 2794 return; 2795 2796 if (--trace_buffered_event_ref) 2797 return; 2798 2799 preempt_disable(); 2800 /* For each CPU, set the buffer as used. */ 2801 smp_call_function_many(tracing_buffer_mask, 2802 disable_trace_buffered_event, NULL, 1); 2803 preempt_enable(); 2804 2805 /* Wait for all current users to finish */ 2806 synchronize_rcu(); 2807 2808 for_each_tracing_cpu(cpu) { 2809 free_page((unsigned long)per_cpu(trace_buffered_event, cpu)); 2810 per_cpu(trace_buffered_event, cpu) = NULL; 2811 } 2812 /* 2813 * Make sure trace_buffered_event is NULL before clearing 2814 * trace_buffered_event_cnt. 2815 */ 2816 smp_wmb(); 2817 2818 preempt_disable(); 2819 /* Do the work on each cpu */ 2820 smp_call_function_many(tracing_buffer_mask, 2821 enable_trace_buffered_event, NULL, 1); 2822 preempt_enable(); 2823 } 2824 2825 static struct trace_buffer *temp_buffer; 2826 2827 struct ring_buffer_event * 2828 trace_event_buffer_lock_reserve(struct trace_buffer **current_rb, 2829 struct trace_event_file *trace_file, 2830 int type, unsigned long len, 2831 unsigned int trace_ctx) 2832 { 2833 struct ring_buffer_event *entry; 2834 struct trace_array *tr = trace_file->tr; 2835 int val; 2836 2837 *current_rb = tr->array_buffer.buffer; 2838 2839 if (!tr->no_filter_buffering_ref && 2840 (trace_file->flags & (EVENT_FILE_FL_SOFT_DISABLED | EVENT_FILE_FL_FILTERED))) { 2841 preempt_disable_notrace(); 2842 /* 2843 * Filtering is on, so try to use the per cpu buffer first. 2844 * This buffer will simulate a ring_buffer_event, 2845 * where the type_len is zero and the array[0] will 2846 * hold the full length. 2847 * (see include/linux/ring-buffer.h for details on 2848 * how the ring_buffer_event is structured). 2849 * 2850 * Using a temp buffer during filtering and copying it 2851 * on a matched filter is quicker than writing directly 2852 * into the ring buffer and then discarding it when 2853 * it doesn't match. That is because the discard 2854 * requires several atomic operations to get right. 2855 * Copying on match and doing nothing on a failed match 2856 * is still quicker than no copy on match, but having 2857 * to discard out of the ring buffer on a failed match. 2858 */ 2859 if ((entry = __this_cpu_read(trace_buffered_event))) { 2860 int max_len = PAGE_SIZE - struct_size(entry, array, 1); 2861 2862 val = this_cpu_inc_return(trace_buffered_event_cnt); 2863 2864 /* 2865 * Preemption is disabled, but interrupts and NMIs 2866 * can still come in now. If that happens after 2867 * the above increment, then it will have to go 2868 * back to the old method of allocating the event 2869 * on the ring buffer, and if the filter fails, it 2870 * will have to call ring_buffer_discard_commit() 2871 * to remove it. 2872 * 2873 * Need to also check the unlikely case that the 2874 * length is bigger than the temp buffer size. 2875 * If that happens, then the reserve is pretty much 2876 * guaranteed to fail, as the ring buffer currently 2877 * only allows events less than a page. But that may 2878 * change in the future, so let the ring buffer reserve 2879 * handle the failure in that case. 2880 */ 2881 if (val == 1 && likely(len <= max_len)) { 2882 trace_event_setup(entry, type, trace_ctx); 2883 entry->array[0] = len; 2884 /* Return with preemption disabled */ 2885 return entry; 2886 } 2887 this_cpu_dec(trace_buffered_event_cnt); 2888 } 2889 /* __trace_buffer_lock_reserve() disables preemption */ 2890 preempt_enable_notrace(); 2891 } 2892 2893 entry = __trace_buffer_lock_reserve(*current_rb, type, len, 2894 trace_ctx); 2895 /* 2896 * If tracing is off, but we have triggers enabled 2897 * we still need to look at the event data. Use the temp_buffer 2898 * to store the trace event for the trigger to use. It's recursive 2899 * safe and will not be recorded anywhere. 2900 */ 2901 if (!entry && trace_file->flags & EVENT_FILE_FL_TRIGGER_COND) { 2902 *current_rb = temp_buffer; 2903 entry = __trace_buffer_lock_reserve(*current_rb, type, len, 2904 trace_ctx); 2905 } 2906 return entry; 2907 } 2908 EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve); 2909 2910 static DEFINE_RAW_SPINLOCK(tracepoint_iter_lock); 2911 static DEFINE_MUTEX(tracepoint_printk_mutex); 2912 2913 static void output_printk(struct trace_event_buffer *fbuffer) 2914 { 2915 struct trace_event_call *event_call; 2916 struct trace_event_file *file; 2917 struct trace_event *event; 2918 unsigned long flags; 2919 struct trace_iterator *iter = tracepoint_print_iter; 2920 2921 /* We should never get here if iter is NULL */ 2922 if (WARN_ON_ONCE(!iter)) 2923 return; 2924 2925 event_call = fbuffer->trace_file->event_call; 2926 if (!event_call || !event_call->event.funcs || 2927 !event_call->event.funcs->trace) 2928 return; 2929 2930 file = fbuffer->trace_file; 2931 if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) || 2932 (unlikely(file->flags & EVENT_FILE_FL_FILTERED) && 2933 !filter_match_preds(file->filter, fbuffer->entry))) 2934 return; 2935 2936 event = &fbuffer->trace_file->event_call->event; 2937 2938 raw_spin_lock_irqsave(&tracepoint_iter_lock, flags); 2939 trace_seq_init(&iter->seq); 2940 iter->ent = fbuffer->entry; 2941 event_call->event.funcs->trace(iter, 0, event); 2942 trace_seq_putc(&iter->seq, 0); 2943 printk("%s", iter->seq.buffer); 2944 2945 raw_spin_unlock_irqrestore(&tracepoint_iter_lock, flags); 2946 } 2947 2948 int tracepoint_printk_sysctl(struct ctl_table *table, int write, 2949 void *buffer, size_t *lenp, 2950 loff_t *ppos) 2951 { 2952 int save_tracepoint_printk; 2953 int ret; 2954 2955 mutex_lock(&tracepoint_printk_mutex); 2956 save_tracepoint_printk = tracepoint_printk; 2957 2958 ret = proc_dointvec(table, write, buffer, lenp, ppos); 2959 2960 /* 2961 * This will force exiting early, as tracepoint_printk 2962 * is always zero when tracepoint_printk_iter is not allocated 2963 */ 2964 if (!tracepoint_print_iter) 2965 tracepoint_printk = 0; 2966 2967 if (save_tracepoint_printk == tracepoint_printk) 2968 goto out; 2969 2970 if (tracepoint_printk) 2971 static_key_enable(&tracepoint_printk_key.key); 2972 else 2973 static_key_disable(&tracepoint_printk_key.key); 2974 2975 out: 2976 mutex_unlock(&tracepoint_printk_mutex); 2977 2978 return ret; 2979 } 2980 2981 void trace_event_buffer_commit(struct trace_event_buffer *fbuffer) 2982 { 2983 enum event_trigger_type tt = ETT_NONE; 2984 struct trace_event_file *file = fbuffer->trace_file; 2985 2986 if (__event_trigger_test_discard(file, fbuffer->buffer, fbuffer->event, 2987 fbuffer->entry, &tt)) 2988 goto discard; 2989 2990 if (static_key_false(&tracepoint_printk_key.key)) 2991 output_printk(fbuffer); 2992 2993 if (static_branch_unlikely(&trace_event_exports_enabled)) 2994 ftrace_exports(fbuffer->event, TRACE_EXPORT_EVENT); 2995 2996 trace_buffer_unlock_commit_regs(file->tr, fbuffer->buffer, 2997 fbuffer->event, fbuffer->trace_ctx, fbuffer->regs); 2998 2999 discard: 3000 if (tt) 3001 event_triggers_post_call(file, tt); 3002 3003 } 3004 EXPORT_SYMBOL_GPL(trace_event_buffer_commit); 3005 3006 /* 3007 * Skip 3: 3008 * 3009 * trace_buffer_unlock_commit_regs() 3010 * trace_event_buffer_commit() 3011 * trace_event_raw_event_xxx() 3012 */ 3013 # define STACK_SKIP 3 3014 3015 void trace_buffer_unlock_commit_regs(struct trace_array *tr, 3016 struct trace_buffer *buffer, 3017 struct ring_buffer_event *event, 3018 unsigned int trace_ctx, 3019 struct pt_regs *regs) 3020 { 3021 __buffer_unlock_commit(buffer, event); 3022 3023 /* 3024 * If regs is not set, then skip the necessary functions. 3025 * Note, we can still get here via blktrace, wakeup tracer 3026 * and mmiotrace, but that's ok if they lose a function or 3027 * two. They are not that meaningful. 3028 */ 3029 ftrace_trace_stack(tr, buffer, trace_ctx, regs ? 0 : STACK_SKIP, regs); 3030 ftrace_trace_userstack(tr, buffer, trace_ctx); 3031 } 3032 3033 /* 3034 * Similar to trace_buffer_unlock_commit_regs() but do not dump stack. 3035 */ 3036 void 3037 trace_buffer_unlock_commit_nostack(struct trace_buffer *buffer, 3038 struct ring_buffer_event *event) 3039 { 3040 __buffer_unlock_commit(buffer, event); 3041 } 3042 3043 void 3044 trace_function(struct trace_array *tr, unsigned long ip, unsigned long 3045 parent_ip, unsigned int trace_ctx) 3046 { 3047 struct trace_event_call *call = &event_function; 3048 struct trace_buffer *buffer = tr->array_buffer.buffer; 3049 struct ring_buffer_event *event; 3050 struct ftrace_entry *entry; 3051 3052 event = __trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry), 3053 trace_ctx); 3054 if (!event) 3055 return; 3056 entry = ring_buffer_event_data(event); 3057 entry->ip = ip; 3058 entry->parent_ip = parent_ip; 3059 3060 if (!call_filter_check_discard(call, entry, buffer, event)) { 3061 if (static_branch_unlikely(&trace_function_exports_enabled)) 3062 ftrace_exports(event, TRACE_EXPORT_FUNCTION); 3063 __buffer_unlock_commit(buffer, event); 3064 } 3065 } 3066 3067 #ifdef CONFIG_STACKTRACE 3068 3069 /* Allow 4 levels of nesting: normal, softirq, irq, NMI */ 3070 #define FTRACE_KSTACK_NESTING 4 3071 3072 #define FTRACE_KSTACK_ENTRIES (PAGE_SIZE / FTRACE_KSTACK_NESTING) 3073 3074 struct ftrace_stack { 3075 unsigned long calls[FTRACE_KSTACK_ENTRIES]; 3076 }; 3077 3078 3079 struct ftrace_stacks { 3080 struct ftrace_stack stacks[FTRACE_KSTACK_NESTING]; 3081 }; 3082 3083 static DEFINE_PER_CPU(struct ftrace_stacks, ftrace_stacks); 3084 static DEFINE_PER_CPU(int, ftrace_stack_reserve); 3085 3086 static void __ftrace_trace_stack(struct trace_buffer *buffer, 3087 unsigned int trace_ctx, 3088 int skip, struct pt_regs *regs) 3089 { 3090 struct trace_event_call *call = &event_kernel_stack; 3091 struct ring_buffer_event *event; 3092 unsigned int size, nr_entries; 3093 struct ftrace_stack *fstack; 3094 struct stack_entry *entry; 3095 int stackidx; 3096 3097 /* 3098 * Add one, for this function and the call to save_stack_trace() 3099 * If regs is set, then these functions will not be in the way. 3100 */ 3101 #ifndef CONFIG_UNWINDER_ORC 3102 if (!regs) 3103 skip++; 3104 #endif 3105 3106 preempt_disable_notrace(); 3107 3108 stackidx = __this_cpu_inc_return(ftrace_stack_reserve) - 1; 3109 3110 /* This should never happen. If it does, yell once and skip */ 3111 if (WARN_ON_ONCE(stackidx >= FTRACE_KSTACK_NESTING)) 3112 goto out; 3113 3114 /* 3115 * The above __this_cpu_inc_return() is 'atomic' cpu local. An 3116 * interrupt will either see the value pre increment or post 3117 * increment. If the interrupt happens pre increment it will have 3118 * restored the counter when it returns. We just need a barrier to 3119 * keep gcc from moving things around. 3120 */ 3121 barrier(); 3122 3123 fstack = this_cpu_ptr(ftrace_stacks.stacks) + stackidx; 3124 size = ARRAY_SIZE(fstack->calls); 3125 3126 if (regs) { 3127 nr_entries = stack_trace_save_regs(regs, fstack->calls, 3128 size, skip); 3129 } else { 3130 nr_entries = stack_trace_save(fstack->calls, size, skip); 3131 } 3132 3133 size = nr_entries * sizeof(unsigned long); 3134 event = __trace_buffer_lock_reserve(buffer, TRACE_STACK, 3135 (sizeof(*entry) - sizeof(entry->caller)) + size, 3136 trace_ctx); 3137 if (!event) 3138 goto out; 3139 entry = ring_buffer_event_data(event); 3140 3141 memcpy(&entry->caller, fstack->calls, size); 3142 entry->size = nr_entries; 3143 3144 if (!call_filter_check_discard(call, entry, buffer, event)) 3145 __buffer_unlock_commit(buffer, event); 3146 3147 out: 3148 /* Again, don't let gcc optimize things here */ 3149 barrier(); 3150 __this_cpu_dec(ftrace_stack_reserve); 3151 preempt_enable_notrace(); 3152 3153 } 3154 3155 static inline void ftrace_trace_stack(struct trace_array *tr, 3156 struct trace_buffer *buffer, 3157 unsigned int trace_ctx, 3158 int skip, struct pt_regs *regs) 3159 { 3160 if (!(tr->trace_flags & TRACE_ITER_STACKTRACE)) 3161 return; 3162 3163 __ftrace_trace_stack(buffer, trace_ctx, skip, regs); 3164 } 3165 3166 void __trace_stack(struct trace_array *tr, unsigned int trace_ctx, 3167 int skip) 3168 { 3169 struct trace_buffer *buffer = tr->array_buffer.buffer; 3170 3171 if (rcu_is_watching()) { 3172 __ftrace_trace_stack(buffer, trace_ctx, skip, NULL); 3173 return; 3174 } 3175 3176 if (WARN_ON_ONCE(IS_ENABLED(CONFIG_GENERIC_ENTRY))) 3177 return; 3178 3179 /* 3180 * When an NMI triggers, RCU is enabled via ct_nmi_enter(), 3181 * but if the above rcu_is_watching() failed, then the NMI 3182 * triggered someplace critical, and ct_irq_enter() should 3183 * not be called from NMI. 3184 */ 3185 if (unlikely(in_nmi())) 3186 return; 3187 3188 ct_irq_enter_irqson(); 3189 __ftrace_trace_stack(buffer, trace_ctx, skip, NULL); 3190 ct_irq_exit_irqson(); 3191 } 3192 3193 /** 3194 * trace_dump_stack - record a stack back trace in the trace buffer 3195 * @skip: Number of functions to skip (helper handlers) 3196 */ 3197 void trace_dump_stack(int skip) 3198 { 3199 if (tracing_disabled || tracing_selftest_running) 3200 return; 3201 3202 #ifndef CONFIG_UNWINDER_ORC 3203 /* Skip 1 to skip this function. */ 3204 skip++; 3205 #endif 3206 __ftrace_trace_stack(global_trace.array_buffer.buffer, 3207 tracing_gen_ctx(), skip, NULL); 3208 } 3209 EXPORT_SYMBOL_GPL(trace_dump_stack); 3210 3211 #ifdef CONFIG_USER_STACKTRACE_SUPPORT 3212 static DEFINE_PER_CPU(int, user_stack_count); 3213 3214 static void 3215 ftrace_trace_userstack(struct trace_array *tr, 3216 struct trace_buffer *buffer, unsigned int trace_ctx) 3217 { 3218 struct trace_event_call *call = &event_user_stack; 3219 struct ring_buffer_event *event; 3220 struct userstack_entry *entry; 3221 3222 if (!(tr->trace_flags & TRACE_ITER_USERSTACKTRACE)) 3223 return; 3224 3225 /* 3226 * NMIs can not handle page faults, even with fix ups. 3227 * The save user stack can (and often does) fault. 3228 */ 3229 if (unlikely(in_nmi())) 3230 return; 3231 3232 /* 3233 * prevent recursion, since the user stack tracing may 3234 * trigger other kernel events. 3235 */ 3236 preempt_disable(); 3237 if (__this_cpu_read(user_stack_count)) 3238 goto out; 3239 3240 __this_cpu_inc(user_stack_count); 3241 3242 event = __trace_buffer_lock_reserve(buffer, TRACE_USER_STACK, 3243 sizeof(*entry), trace_ctx); 3244 if (!event) 3245 goto out_drop_count; 3246 entry = ring_buffer_event_data(event); 3247 3248 entry->tgid = current->tgid; 3249 memset(&entry->caller, 0, sizeof(entry->caller)); 3250 3251 stack_trace_save_user(entry->caller, FTRACE_STACK_ENTRIES); 3252 if (!call_filter_check_discard(call, entry, buffer, event)) 3253 __buffer_unlock_commit(buffer, event); 3254 3255 out_drop_count: 3256 __this_cpu_dec(user_stack_count); 3257 out: 3258 preempt_enable(); 3259 } 3260 #else /* CONFIG_USER_STACKTRACE_SUPPORT */ 3261 static void ftrace_trace_userstack(struct trace_array *tr, 3262 struct trace_buffer *buffer, 3263 unsigned int trace_ctx) 3264 { 3265 } 3266 #endif /* !CONFIG_USER_STACKTRACE_SUPPORT */ 3267 3268 #endif /* CONFIG_STACKTRACE */ 3269 3270 static inline void 3271 func_repeats_set_delta_ts(struct func_repeats_entry *entry, 3272 unsigned long long delta) 3273 { 3274 entry->bottom_delta_ts = delta & U32_MAX; 3275 entry->top_delta_ts = (delta >> 32); 3276 } 3277 3278 void trace_last_func_repeats(struct trace_array *tr, 3279 struct trace_func_repeats *last_info, 3280 unsigned int trace_ctx) 3281 { 3282 struct trace_buffer *buffer = tr->array_buffer.buffer; 3283 struct func_repeats_entry *entry; 3284 struct ring_buffer_event *event; 3285 u64 delta; 3286 3287 event = __trace_buffer_lock_reserve(buffer, TRACE_FUNC_REPEATS, 3288 sizeof(*entry), trace_ctx); 3289 if (!event) 3290 return; 3291 3292 delta = ring_buffer_event_time_stamp(buffer, event) - 3293 last_info->ts_last_call; 3294 3295 entry = ring_buffer_event_data(event); 3296 entry->ip = last_info->ip; 3297 entry->parent_ip = last_info->parent_ip; 3298 entry->count = last_info->count; 3299 func_repeats_set_delta_ts(entry, delta); 3300 3301 __buffer_unlock_commit(buffer, event); 3302 } 3303 3304 /* created for use with alloc_percpu */ 3305 struct trace_buffer_struct { 3306 int nesting; 3307 char buffer[4][TRACE_BUF_SIZE]; 3308 }; 3309 3310 static struct trace_buffer_struct __percpu *trace_percpu_buffer; 3311 3312 /* 3313 * This allows for lockless recording. If we're nested too deeply, then 3314 * this returns NULL. 3315 */ 3316 static char *get_trace_buf(void) 3317 { 3318 struct trace_buffer_struct *buffer = this_cpu_ptr(trace_percpu_buffer); 3319 3320 if (!trace_percpu_buffer || buffer->nesting >= 4) 3321 return NULL; 3322 3323 buffer->nesting++; 3324 3325 /* Interrupts must see nesting incremented before we use the buffer */ 3326 barrier(); 3327 return &buffer->buffer[buffer->nesting - 1][0]; 3328 } 3329 3330 static void put_trace_buf(void) 3331 { 3332 /* Don't let the decrement of nesting leak before this */ 3333 barrier(); 3334 this_cpu_dec(trace_percpu_buffer->nesting); 3335 } 3336 3337 static int alloc_percpu_trace_buffer(void) 3338 { 3339 struct trace_buffer_struct __percpu *buffers; 3340 3341 if (trace_percpu_buffer) 3342 return 0; 3343 3344 buffers = alloc_percpu(struct trace_buffer_struct); 3345 if (MEM_FAIL(!buffers, "Could not allocate percpu trace_printk buffer")) 3346 return -ENOMEM; 3347 3348 trace_percpu_buffer = buffers; 3349 return 0; 3350 } 3351 3352 static int buffers_allocated; 3353 3354 void trace_printk_init_buffers(void) 3355 { 3356 if (buffers_allocated) 3357 return; 3358 3359 if (alloc_percpu_trace_buffer()) 3360 return; 3361 3362 /* trace_printk() is for debug use only. Don't use it in production. */ 3363 3364 pr_warn("\n"); 3365 pr_warn("**********************************************************\n"); 3366 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n"); 3367 pr_warn("** **\n"); 3368 pr_warn("** trace_printk() being used. Allocating extra memory. **\n"); 3369 pr_warn("** **\n"); 3370 pr_warn("** This means that this is a DEBUG kernel and it is **\n"); 3371 pr_warn("** unsafe for production use. **\n"); 3372 pr_warn("** **\n"); 3373 pr_warn("** If you see this message and you are not debugging **\n"); 3374 pr_warn("** the kernel, report this immediately to your vendor! **\n"); 3375 pr_warn("** **\n"); 3376 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n"); 3377 pr_warn("**********************************************************\n"); 3378 3379 /* Expand the buffers to set size */ 3380 tracing_update_buffers(); 3381 3382 buffers_allocated = 1; 3383 3384 /* 3385 * trace_printk_init_buffers() can be called by modules. 3386 * If that happens, then we need to start cmdline recording 3387 * directly here. If the global_trace.buffer is already 3388 * allocated here, then this was called by module code. 3389 */ 3390 if (global_trace.array_buffer.buffer) 3391 tracing_start_cmdline_record(); 3392 } 3393 EXPORT_SYMBOL_GPL(trace_printk_init_buffers); 3394 3395 void trace_printk_start_comm(void) 3396 { 3397 /* Start tracing comms if trace printk is set */ 3398 if (!buffers_allocated) 3399 return; 3400 tracing_start_cmdline_record(); 3401 } 3402 3403 static void trace_printk_start_stop_comm(int enabled) 3404 { 3405 if (!buffers_allocated) 3406 return; 3407 3408 if (enabled) 3409 tracing_start_cmdline_record(); 3410 else 3411 tracing_stop_cmdline_record(); 3412 } 3413 3414 /** 3415 * trace_vbprintk - write binary msg to tracing buffer 3416 * @ip: The address of the caller 3417 * @fmt: The string format to write to the buffer 3418 * @args: Arguments for @fmt 3419 */ 3420 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args) 3421 { 3422 struct trace_event_call *call = &event_bprint; 3423 struct ring_buffer_event *event; 3424 struct trace_buffer *buffer; 3425 struct trace_array *tr = &global_trace; 3426 struct bprint_entry *entry; 3427 unsigned int trace_ctx; 3428 char *tbuffer; 3429 int len = 0, size; 3430 3431 if (unlikely(tracing_selftest_running || tracing_disabled)) 3432 return 0; 3433 3434 /* Don't pollute graph traces with trace_vprintk internals */ 3435 pause_graph_tracing(); 3436 3437 trace_ctx = tracing_gen_ctx(); 3438 preempt_disable_notrace(); 3439 3440 tbuffer = get_trace_buf(); 3441 if (!tbuffer) { 3442 len = 0; 3443 goto out_nobuffer; 3444 } 3445 3446 len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args); 3447 3448 if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0) 3449 goto out_put; 3450 3451 size = sizeof(*entry) + sizeof(u32) * len; 3452 buffer = tr->array_buffer.buffer; 3453 ring_buffer_nest_start(buffer); 3454 event = __trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size, 3455 trace_ctx); 3456 if (!event) 3457 goto out; 3458 entry = ring_buffer_event_data(event); 3459 entry->ip = ip; 3460 entry->fmt = fmt; 3461 3462 memcpy(entry->buf, tbuffer, sizeof(u32) * len); 3463 if (!call_filter_check_discard(call, entry, buffer, event)) { 3464 __buffer_unlock_commit(buffer, event); 3465 ftrace_trace_stack(tr, buffer, trace_ctx, 6, NULL); 3466 } 3467 3468 out: 3469 ring_buffer_nest_end(buffer); 3470 out_put: 3471 put_trace_buf(); 3472 3473 out_nobuffer: 3474 preempt_enable_notrace(); 3475 unpause_graph_tracing(); 3476 3477 return len; 3478 } 3479 EXPORT_SYMBOL_GPL(trace_vbprintk); 3480 3481 __printf(3, 0) 3482 static int 3483 __trace_array_vprintk(struct trace_buffer *buffer, 3484 unsigned long ip, const char *fmt, va_list args) 3485 { 3486 struct trace_event_call *call = &event_print; 3487 struct ring_buffer_event *event; 3488 int len = 0, size; 3489 struct print_entry *entry; 3490 unsigned int trace_ctx; 3491 char *tbuffer; 3492 3493 if (tracing_disabled || tracing_selftest_running) 3494 return 0; 3495 3496 /* Don't pollute graph traces with trace_vprintk internals */ 3497 pause_graph_tracing(); 3498 3499 trace_ctx = tracing_gen_ctx(); 3500 preempt_disable_notrace(); 3501 3502 3503 tbuffer = get_trace_buf(); 3504 if (!tbuffer) { 3505 len = 0; 3506 goto out_nobuffer; 3507 } 3508 3509 len = vscnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args); 3510 3511 size = sizeof(*entry) + len + 1; 3512 ring_buffer_nest_start(buffer); 3513 event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, size, 3514 trace_ctx); 3515 if (!event) 3516 goto out; 3517 entry = ring_buffer_event_data(event); 3518 entry->ip = ip; 3519 3520 memcpy(&entry->buf, tbuffer, len + 1); 3521 if (!call_filter_check_discard(call, entry, buffer, event)) { 3522 __buffer_unlock_commit(buffer, event); 3523 ftrace_trace_stack(&global_trace, buffer, trace_ctx, 6, NULL); 3524 } 3525 3526 out: 3527 ring_buffer_nest_end(buffer); 3528 put_trace_buf(); 3529 3530 out_nobuffer: 3531 preempt_enable_notrace(); 3532 unpause_graph_tracing(); 3533 3534 return len; 3535 } 3536 3537 __printf(3, 0) 3538 int trace_array_vprintk(struct trace_array *tr, 3539 unsigned long ip, const char *fmt, va_list args) 3540 { 3541 return __trace_array_vprintk(tr->array_buffer.buffer, ip, fmt, args); 3542 } 3543 3544 /** 3545 * trace_array_printk - Print a message to a specific instance 3546 * @tr: The instance trace_array descriptor 3547 * @ip: The instruction pointer that this is called from. 3548 * @fmt: The format to print (printf format) 3549 * 3550 * If a subsystem sets up its own instance, they have the right to 3551 * printk strings into their tracing instance buffer using this 3552 * function. Note, this function will not write into the top level 3553 * buffer (use trace_printk() for that), as writing into the top level 3554 * buffer should only have events that can be individually disabled. 3555 * trace_printk() is only used for debugging a kernel, and should not 3556 * be ever incorporated in normal use. 3557 * 3558 * trace_array_printk() can be used, as it will not add noise to the 3559 * top level tracing buffer. 3560 * 3561 * Note, trace_array_init_printk() must be called on @tr before this 3562 * can be used. 3563 */ 3564 __printf(3, 0) 3565 int trace_array_printk(struct trace_array *tr, 3566 unsigned long ip, const char *fmt, ...) 3567 { 3568 int ret; 3569 va_list ap; 3570 3571 if (!tr) 3572 return -ENOENT; 3573 3574 /* This is only allowed for created instances */ 3575 if (tr == &global_trace) 3576 return 0; 3577 3578 if (!(tr->trace_flags & TRACE_ITER_PRINTK)) 3579 return 0; 3580 3581 va_start(ap, fmt); 3582 ret = trace_array_vprintk(tr, ip, fmt, ap); 3583 va_end(ap); 3584 return ret; 3585 } 3586 EXPORT_SYMBOL_GPL(trace_array_printk); 3587 3588 /** 3589 * trace_array_init_printk - Initialize buffers for trace_array_printk() 3590 * @tr: The trace array to initialize the buffers for 3591 * 3592 * As trace_array_printk() only writes into instances, they are OK to 3593 * have in the kernel (unlike trace_printk()). This needs to be called 3594 * before trace_array_printk() can be used on a trace_array. 3595 */ 3596 int trace_array_init_printk(struct trace_array *tr) 3597 { 3598 if (!tr) 3599 return -ENOENT; 3600 3601 /* This is only allowed for created instances */ 3602 if (tr == &global_trace) 3603 return -EINVAL; 3604 3605 return alloc_percpu_trace_buffer(); 3606 } 3607 EXPORT_SYMBOL_GPL(trace_array_init_printk); 3608 3609 __printf(3, 4) 3610 int trace_array_printk_buf(struct trace_buffer *buffer, 3611 unsigned long ip, const char *fmt, ...) 3612 { 3613 int ret; 3614 va_list ap; 3615 3616 if (!(global_trace.trace_flags & TRACE_ITER_PRINTK)) 3617 return 0; 3618 3619 va_start(ap, fmt); 3620 ret = __trace_array_vprintk(buffer, ip, fmt, ap); 3621 va_end(ap); 3622 return ret; 3623 } 3624 3625 __printf(2, 0) 3626 int trace_vprintk(unsigned long ip, const char *fmt, va_list args) 3627 { 3628 return trace_array_vprintk(&global_trace, ip, fmt, args); 3629 } 3630 EXPORT_SYMBOL_GPL(trace_vprintk); 3631 3632 static void trace_iterator_increment(struct trace_iterator *iter) 3633 { 3634 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu); 3635 3636 iter->idx++; 3637 if (buf_iter) 3638 ring_buffer_iter_advance(buf_iter); 3639 } 3640 3641 static struct trace_entry * 3642 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts, 3643 unsigned long *lost_events) 3644 { 3645 struct ring_buffer_event *event; 3646 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu); 3647 3648 if (buf_iter) { 3649 event = ring_buffer_iter_peek(buf_iter, ts); 3650 if (lost_events) 3651 *lost_events = ring_buffer_iter_dropped(buf_iter) ? 3652 (unsigned long)-1 : 0; 3653 } else { 3654 event = ring_buffer_peek(iter->array_buffer->buffer, cpu, ts, 3655 lost_events); 3656 } 3657 3658 if (event) { 3659 iter->ent_size = ring_buffer_event_length(event); 3660 return ring_buffer_event_data(event); 3661 } 3662 iter->ent_size = 0; 3663 return NULL; 3664 } 3665 3666 static struct trace_entry * 3667 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, 3668 unsigned long *missing_events, u64 *ent_ts) 3669 { 3670 struct trace_buffer *buffer = iter->array_buffer->buffer; 3671 struct trace_entry *ent, *next = NULL; 3672 unsigned long lost_events = 0, next_lost = 0; 3673 int cpu_file = iter->cpu_file; 3674 u64 next_ts = 0, ts; 3675 int next_cpu = -1; 3676 int next_size = 0; 3677 int cpu; 3678 3679 /* 3680 * If we are in a per_cpu trace file, don't bother by iterating over 3681 * all cpu and peek directly. 3682 */ 3683 if (cpu_file > RING_BUFFER_ALL_CPUS) { 3684 if (ring_buffer_empty_cpu(buffer, cpu_file)) 3685 return NULL; 3686 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events); 3687 if (ent_cpu) 3688 *ent_cpu = cpu_file; 3689 3690 return ent; 3691 } 3692 3693 for_each_tracing_cpu(cpu) { 3694 3695 if (ring_buffer_empty_cpu(buffer, cpu)) 3696 continue; 3697 3698 ent = peek_next_entry(iter, cpu, &ts, &lost_events); 3699 3700 /* 3701 * Pick the entry with the smallest timestamp: 3702 */ 3703 if (ent && (!next || ts < next_ts)) { 3704 next = ent; 3705 next_cpu = cpu; 3706 next_ts = ts; 3707 next_lost = lost_events; 3708 next_size = iter->ent_size; 3709 } 3710 } 3711 3712 iter->ent_size = next_size; 3713 3714 if (ent_cpu) 3715 *ent_cpu = next_cpu; 3716 3717 if (ent_ts) 3718 *ent_ts = next_ts; 3719 3720 if (missing_events) 3721 *missing_events = next_lost; 3722 3723 return next; 3724 } 3725 3726 #define STATIC_FMT_BUF_SIZE 128 3727 static char static_fmt_buf[STATIC_FMT_BUF_SIZE]; 3728 3729 static char *trace_iter_expand_format(struct trace_iterator *iter) 3730 { 3731 char *tmp; 3732 3733 /* 3734 * iter->tr is NULL when used with tp_printk, which makes 3735 * this get called where it is not safe to call krealloc(). 3736 */ 3737 if (!iter->tr || iter->fmt == static_fmt_buf) 3738 return NULL; 3739 3740 tmp = krealloc(iter->fmt, iter->fmt_size + STATIC_FMT_BUF_SIZE, 3741 GFP_KERNEL); 3742 if (tmp) { 3743 iter->fmt_size += STATIC_FMT_BUF_SIZE; 3744 iter->fmt = tmp; 3745 } 3746 3747 return tmp; 3748 } 3749 3750 /* Returns true if the string is safe to dereference from an event */ 3751 static bool trace_safe_str(struct trace_iterator *iter, const char *str, 3752 bool star, int len) 3753 { 3754 unsigned long addr = (unsigned long)str; 3755 struct trace_event *trace_event; 3756 struct trace_event_call *event; 3757 3758 /* Ignore strings with no length */ 3759 if (star && !len) 3760 return true; 3761 3762 /* OK if part of the event data */ 3763 if ((addr >= (unsigned long)iter->ent) && 3764 (addr < (unsigned long)iter->ent + iter->ent_size)) 3765 return true; 3766 3767 /* OK if part of the temp seq buffer */ 3768 if ((addr >= (unsigned long)iter->tmp_seq.buffer) && 3769 (addr < (unsigned long)iter->tmp_seq.buffer + PAGE_SIZE)) 3770 return true; 3771 3772 /* Core rodata can not be freed */ 3773 if (is_kernel_rodata(addr)) 3774 return true; 3775 3776 if (trace_is_tracepoint_string(str)) 3777 return true; 3778 3779 /* 3780 * Now this could be a module event, referencing core module 3781 * data, which is OK. 3782 */ 3783 if (!iter->ent) 3784 return false; 3785 3786 trace_event = ftrace_find_event(iter->ent->type); 3787 if (!trace_event) 3788 return false; 3789 3790 event = container_of(trace_event, struct trace_event_call, event); 3791 if ((event->flags & TRACE_EVENT_FL_DYNAMIC) || !event->module) 3792 return false; 3793 3794 /* Would rather have rodata, but this will suffice */ 3795 if (within_module_core(addr, event->module)) 3796 return true; 3797 3798 return false; 3799 } 3800 3801 static const char *show_buffer(struct trace_seq *s) 3802 { 3803 struct seq_buf *seq = &s->seq; 3804 3805 seq_buf_terminate(seq); 3806 3807 return seq->buffer; 3808 } 3809 3810 static DEFINE_STATIC_KEY_FALSE(trace_no_verify); 3811 3812 static int test_can_verify_check(const char *fmt, ...) 3813 { 3814 char buf[16]; 3815 va_list ap; 3816 int ret; 3817 3818 /* 3819 * The verifier is dependent on vsnprintf() modifies the va_list 3820 * passed to it, where it is sent as a reference. Some architectures 3821 * (like x86_32) passes it by value, which means that vsnprintf() 3822 * does not modify the va_list passed to it, and the verifier 3823 * would then need to be able to understand all the values that 3824 * vsnprintf can use. If it is passed by value, then the verifier 3825 * is disabled. 3826 */ 3827 va_start(ap, fmt); 3828 vsnprintf(buf, 16, "%d", ap); 3829 ret = va_arg(ap, int); 3830 va_end(ap); 3831 3832 return ret; 3833 } 3834 3835 static void test_can_verify(void) 3836 { 3837 if (!test_can_verify_check("%d %d", 0, 1)) { 3838 pr_info("trace event string verifier disabled\n"); 3839 static_branch_inc(&trace_no_verify); 3840 } 3841 } 3842 3843 /** 3844 * trace_check_vprintf - Check dereferenced strings while writing to the seq buffer 3845 * @iter: The iterator that holds the seq buffer and the event being printed 3846 * @fmt: The format used to print the event 3847 * @ap: The va_list holding the data to print from @fmt. 3848 * 3849 * This writes the data into the @iter->seq buffer using the data from 3850 * @fmt and @ap. If the format has a %s, then the source of the string 3851 * is examined to make sure it is safe to print, otherwise it will 3852 * warn and print "[UNSAFE MEMORY]" in place of the dereferenced string 3853 * pointer. 3854 */ 3855 void trace_check_vprintf(struct trace_iterator *iter, const char *fmt, 3856 va_list ap) 3857 { 3858 const char *p = fmt; 3859 const char *str; 3860 int i, j; 3861 3862 if (WARN_ON_ONCE(!fmt)) 3863 return; 3864 3865 if (static_branch_unlikely(&trace_no_verify)) 3866 goto print; 3867 3868 /* Don't bother checking when doing a ftrace_dump() */ 3869 if (iter->fmt == static_fmt_buf) 3870 goto print; 3871 3872 while (*p) { 3873 bool star = false; 3874 int len = 0; 3875 3876 j = 0; 3877 3878 /* We only care about %s and variants */ 3879 for (i = 0; p[i]; i++) { 3880 if (i + 1 >= iter->fmt_size) { 3881 /* 3882 * If we can't expand the copy buffer, 3883 * just print it. 3884 */ 3885 if (!trace_iter_expand_format(iter)) 3886 goto print; 3887 } 3888 3889 if (p[i] == '\\' && p[i+1]) { 3890 i++; 3891 continue; 3892 } 3893 if (p[i] == '%') { 3894 /* Need to test cases like %08.*s */ 3895 for (j = 1; p[i+j]; j++) { 3896 if (isdigit(p[i+j]) || 3897 p[i+j] == '.') 3898 continue; 3899 if (p[i+j] == '*') { 3900 star = true; 3901 continue; 3902 } 3903 break; 3904 } 3905 if (p[i+j] == 's') 3906 break; 3907 star = false; 3908 } 3909 j = 0; 3910 } 3911 /* If no %s found then just print normally */ 3912 if (!p[i]) 3913 break; 3914 3915 /* Copy up to the %s, and print that */ 3916 strncpy(iter->fmt, p, i); 3917 iter->fmt[i] = '\0'; 3918 trace_seq_vprintf(&iter->seq, iter->fmt, ap); 3919 3920 /* 3921 * If iter->seq is full, the above call no longer guarantees 3922 * that ap is in sync with fmt processing, and further calls 3923 * to va_arg() can return wrong positional arguments. 3924 * 3925 * Ensure that ap is no longer used in this case. 3926 */ 3927 if (iter->seq.full) { 3928 p = ""; 3929 break; 3930 } 3931 3932 if (star) 3933 len = va_arg(ap, int); 3934 3935 /* The ap now points to the string data of the %s */ 3936 str = va_arg(ap, const char *); 3937 3938 /* 3939 * If you hit this warning, it is likely that the 3940 * trace event in question used %s on a string that 3941 * was saved at the time of the event, but may not be 3942 * around when the trace is read. Use __string(), 3943 * __assign_str() and __get_str() helpers in the TRACE_EVENT() 3944 * instead. See samples/trace_events/trace-events-sample.h 3945 * for reference. 3946 */ 3947 if (WARN_ONCE(!trace_safe_str(iter, str, star, len), 3948 "fmt: '%s' current_buffer: '%s'", 3949 fmt, show_buffer(&iter->seq))) { 3950 int ret; 3951 3952 /* Try to safely read the string */ 3953 if (star) { 3954 if (len + 1 > iter->fmt_size) 3955 len = iter->fmt_size - 1; 3956 if (len < 0) 3957 len = 0; 3958 ret = copy_from_kernel_nofault(iter->fmt, str, len); 3959 iter->fmt[len] = 0; 3960 star = false; 3961 } else { 3962 ret = strncpy_from_kernel_nofault(iter->fmt, str, 3963 iter->fmt_size); 3964 } 3965 if (ret < 0) 3966 trace_seq_printf(&iter->seq, "(0x%px)", str); 3967 else 3968 trace_seq_printf(&iter->seq, "(0x%px:%s)", 3969 str, iter->fmt); 3970 str = "[UNSAFE-MEMORY]"; 3971 strcpy(iter->fmt, "%s"); 3972 } else { 3973 strncpy(iter->fmt, p + i, j + 1); 3974 iter->fmt[j+1] = '\0'; 3975 } 3976 if (star) 3977 trace_seq_printf(&iter->seq, iter->fmt, len, str); 3978 else 3979 trace_seq_printf(&iter->seq, iter->fmt, str); 3980 3981 p += i + j + 1; 3982 } 3983 print: 3984 if (*p) 3985 trace_seq_vprintf(&iter->seq, p, ap); 3986 } 3987 3988 const char *trace_event_format(struct trace_iterator *iter, const char *fmt) 3989 { 3990 const char *p, *new_fmt; 3991 char *q; 3992 3993 if (WARN_ON_ONCE(!fmt)) 3994 return fmt; 3995 3996 if (!iter->tr || iter->tr->trace_flags & TRACE_ITER_HASH_PTR) 3997 return fmt; 3998 3999 p = fmt; 4000 new_fmt = q = iter->fmt; 4001 while (*p) { 4002 if (unlikely(q - new_fmt + 3 > iter->fmt_size)) { 4003 if (!trace_iter_expand_format(iter)) 4004 return fmt; 4005 4006 q += iter->fmt - new_fmt; 4007 new_fmt = iter->fmt; 4008 } 4009 4010 *q++ = *p++; 4011 4012 /* Replace %p with %px */ 4013 if (p[-1] == '%') { 4014 if (p[0] == '%') { 4015 *q++ = *p++; 4016 } else if (p[0] == 'p' && !isalnum(p[1])) { 4017 *q++ = *p++; 4018 *q++ = 'x'; 4019 } 4020 } 4021 } 4022 *q = '\0'; 4023 4024 return new_fmt; 4025 } 4026 4027 #define STATIC_TEMP_BUF_SIZE 128 4028 static char static_temp_buf[STATIC_TEMP_BUF_SIZE] __aligned(4); 4029 4030 /* Find the next real entry, without updating the iterator itself */ 4031 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter, 4032 int *ent_cpu, u64 *ent_ts) 4033 { 4034 /* __find_next_entry will reset ent_size */ 4035 int ent_size = iter->ent_size; 4036 struct trace_entry *entry; 4037 4038 /* 4039 * If called from ftrace_dump(), then the iter->temp buffer 4040 * will be the static_temp_buf and not created from kmalloc. 4041 * If the entry size is greater than the buffer, we can 4042 * not save it. Just return NULL in that case. This is only 4043 * used to add markers when two consecutive events' time 4044 * stamps have a large delta. See trace_print_lat_context() 4045 */ 4046 if (iter->temp == static_temp_buf && 4047 STATIC_TEMP_BUF_SIZE < ent_size) 4048 return NULL; 4049 4050 /* 4051 * The __find_next_entry() may call peek_next_entry(), which may 4052 * call ring_buffer_peek() that may make the contents of iter->ent 4053 * undefined. Need to copy iter->ent now. 4054 */ 4055 if (iter->ent && iter->ent != iter->temp) { 4056 if ((!iter->temp || iter->temp_size < iter->ent_size) && 4057 !WARN_ON_ONCE(iter->temp == static_temp_buf)) { 4058 void *temp; 4059 temp = kmalloc(iter->ent_size, GFP_KERNEL); 4060 if (!temp) 4061 return NULL; 4062 kfree(iter->temp); 4063 iter->temp = temp; 4064 iter->temp_size = iter->ent_size; 4065 } 4066 memcpy(iter->temp, iter->ent, iter->ent_size); 4067 iter->ent = iter->temp; 4068 } 4069 entry = __find_next_entry(iter, ent_cpu, NULL, ent_ts); 4070 /* Put back the original ent_size */ 4071 iter->ent_size = ent_size; 4072 4073 return entry; 4074 } 4075 4076 /* Find the next real entry, and increment the iterator to the next entry */ 4077 void *trace_find_next_entry_inc(struct trace_iterator *iter) 4078 { 4079 iter->ent = __find_next_entry(iter, &iter->cpu, 4080 &iter->lost_events, &iter->ts); 4081 4082 if (iter->ent) 4083 trace_iterator_increment(iter); 4084 4085 return iter->ent ? iter : NULL; 4086 } 4087 4088 static void trace_consume(struct trace_iterator *iter) 4089 { 4090 ring_buffer_consume(iter->array_buffer->buffer, iter->cpu, &iter->ts, 4091 &iter->lost_events); 4092 } 4093 4094 static void *s_next(struct seq_file *m, void *v, loff_t *pos) 4095 { 4096 struct trace_iterator *iter = m->private; 4097 int i = (int)*pos; 4098 void *ent; 4099 4100 WARN_ON_ONCE(iter->leftover); 4101 4102 (*pos)++; 4103 4104 /* can't go backwards */ 4105 if (iter->idx > i) 4106 return NULL; 4107 4108 if (iter->idx < 0) 4109 ent = trace_find_next_entry_inc(iter); 4110 else 4111 ent = iter; 4112 4113 while (ent && iter->idx < i) 4114 ent = trace_find_next_entry_inc(iter); 4115 4116 iter->pos = *pos; 4117 4118 return ent; 4119 } 4120 4121 void tracing_iter_reset(struct trace_iterator *iter, int cpu) 4122 { 4123 struct ring_buffer_iter *buf_iter; 4124 unsigned long entries = 0; 4125 u64 ts; 4126 4127 per_cpu_ptr(iter->array_buffer->data, cpu)->skipped_entries = 0; 4128 4129 buf_iter = trace_buffer_iter(iter, cpu); 4130 if (!buf_iter) 4131 return; 4132 4133 ring_buffer_iter_reset(buf_iter); 4134 4135 /* 4136 * We could have the case with the max latency tracers 4137 * that a reset never took place on a cpu. This is evident 4138 * by the timestamp being before the start of the buffer. 4139 */ 4140 while (ring_buffer_iter_peek(buf_iter, &ts)) { 4141 if (ts >= iter->array_buffer->time_start) 4142 break; 4143 entries++; 4144 ring_buffer_iter_advance(buf_iter); 4145 } 4146 4147 per_cpu_ptr(iter->array_buffer->data, cpu)->skipped_entries = entries; 4148 } 4149 4150 /* 4151 * The current tracer is copied to avoid a global locking 4152 * all around. 4153 */ 4154 static void *s_start(struct seq_file *m, loff_t *pos) 4155 { 4156 struct trace_iterator *iter = m->private; 4157 struct trace_array *tr = iter->tr; 4158 int cpu_file = iter->cpu_file; 4159 void *p = NULL; 4160 loff_t l = 0; 4161 int cpu; 4162 4163 /* 4164 * copy the tracer to avoid using a global lock all around. 4165 * iter->trace is a copy of current_trace, the pointer to the 4166 * name may be used instead of a strcmp(), as iter->trace->name 4167 * will point to the same string as current_trace->name. 4168 */ 4169 mutex_lock(&trace_types_lock); 4170 if (unlikely(tr->current_trace && iter->trace->name != tr->current_trace->name)) 4171 *iter->trace = *tr->current_trace; 4172 mutex_unlock(&trace_types_lock); 4173 4174 #ifdef CONFIG_TRACER_MAX_TRACE 4175 if (iter->snapshot && iter->trace->use_max_tr) 4176 return ERR_PTR(-EBUSY); 4177 #endif 4178 4179 if (*pos != iter->pos) { 4180 iter->ent = NULL; 4181 iter->cpu = 0; 4182 iter->idx = -1; 4183 4184 if (cpu_file == RING_BUFFER_ALL_CPUS) { 4185 for_each_tracing_cpu(cpu) 4186 tracing_iter_reset(iter, cpu); 4187 } else 4188 tracing_iter_reset(iter, cpu_file); 4189 4190 iter->leftover = 0; 4191 for (p = iter; p && l < *pos; p = s_next(m, p, &l)) 4192 ; 4193 4194 } else { 4195 /* 4196 * If we overflowed the seq_file before, then we want 4197 * to just reuse the trace_seq buffer again. 4198 */ 4199 if (iter->leftover) 4200 p = iter; 4201 else { 4202 l = *pos - 1; 4203 p = s_next(m, p, &l); 4204 } 4205 } 4206 4207 trace_event_read_lock(); 4208 trace_access_lock(cpu_file); 4209 return p; 4210 } 4211 4212 static void s_stop(struct seq_file *m, void *p) 4213 { 4214 struct trace_iterator *iter = m->private; 4215 4216 #ifdef CONFIG_TRACER_MAX_TRACE 4217 if (iter->snapshot && iter->trace->use_max_tr) 4218 return; 4219 #endif 4220 4221 trace_access_unlock(iter->cpu_file); 4222 trace_event_read_unlock(); 4223 } 4224 4225 static void 4226 get_total_entries_cpu(struct array_buffer *buf, unsigned long *total, 4227 unsigned long *entries, int cpu) 4228 { 4229 unsigned long count; 4230 4231 count = ring_buffer_entries_cpu(buf->buffer, cpu); 4232 /* 4233 * If this buffer has skipped entries, then we hold all 4234 * entries for the trace and we need to ignore the 4235 * ones before the time stamp. 4236 */ 4237 if (per_cpu_ptr(buf->data, cpu)->skipped_entries) { 4238 count -= per_cpu_ptr(buf->data, cpu)->skipped_entries; 4239 /* total is the same as the entries */ 4240 *total = count; 4241 } else 4242 *total = count + 4243 ring_buffer_overrun_cpu(buf->buffer, cpu); 4244 *entries = count; 4245 } 4246 4247 static void 4248 get_total_entries(struct array_buffer *buf, 4249 unsigned long *total, unsigned long *entries) 4250 { 4251 unsigned long t, e; 4252 int cpu; 4253 4254 *total = 0; 4255 *entries = 0; 4256 4257 for_each_tracing_cpu(cpu) { 4258 get_total_entries_cpu(buf, &t, &e, cpu); 4259 *total += t; 4260 *entries += e; 4261 } 4262 } 4263 4264 unsigned long trace_total_entries_cpu(struct trace_array *tr, int cpu) 4265 { 4266 unsigned long total, entries; 4267 4268 if (!tr) 4269 tr = &global_trace; 4270 4271 get_total_entries_cpu(&tr->array_buffer, &total, &entries, cpu); 4272 4273 return entries; 4274 } 4275 4276 unsigned long trace_total_entries(struct trace_array *tr) 4277 { 4278 unsigned long total, entries; 4279 4280 if (!tr) 4281 tr = &global_trace; 4282 4283 get_total_entries(&tr->array_buffer, &total, &entries); 4284 4285 return entries; 4286 } 4287 4288 static void print_lat_help_header(struct seq_file *m) 4289 { 4290 seq_puts(m, "# _------=> CPU# \n" 4291 "# / _-----=> irqs-off/BH-disabled\n" 4292 "# | / _----=> need-resched \n" 4293 "# || / _---=> hardirq/softirq \n" 4294 "# ||| / _--=> preempt-depth \n" 4295 "# |||| / _-=> migrate-disable \n" 4296 "# ||||| / delay \n" 4297 "# cmd pid |||||| time | caller \n" 4298 "# \\ / |||||| \\ | / \n"); 4299 } 4300 4301 static void print_event_info(struct array_buffer *buf, struct seq_file *m) 4302 { 4303 unsigned long total; 4304 unsigned long entries; 4305 4306 get_total_entries(buf, &total, &entries); 4307 seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n", 4308 entries, total, num_online_cpus()); 4309 seq_puts(m, "#\n"); 4310 } 4311 4312 static void print_func_help_header(struct array_buffer *buf, struct seq_file *m, 4313 unsigned int flags) 4314 { 4315 bool tgid = flags & TRACE_ITER_RECORD_TGID; 4316 4317 print_event_info(buf, m); 4318 4319 seq_printf(m, "# TASK-PID %s CPU# TIMESTAMP FUNCTION\n", tgid ? " TGID " : ""); 4320 seq_printf(m, "# | | %s | | |\n", tgid ? " | " : ""); 4321 } 4322 4323 static void print_func_help_header_irq(struct array_buffer *buf, struct seq_file *m, 4324 unsigned int flags) 4325 { 4326 bool tgid = flags & TRACE_ITER_RECORD_TGID; 4327 static const char space[] = " "; 4328 int prec = tgid ? 12 : 2; 4329 4330 print_event_info(buf, m); 4331 4332 seq_printf(m, "# %.*s _-----=> irqs-off/BH-disabled\n", prec, space); 4333 seq_printf(m, "# %.*s / _----=> need-resched\n", prec, space); 4334 seq_printf(m, "# %.*s| / _---=> hardirq/softirq\n", prec, space); 4335 seq_printf(m, "# %.*s|| / _--=> preempt-depth\n", prec, space); 4336 seq_printf(m, "# %.*s||| / _-=> migrate-disable\n", prec, space); 4337 seq_printf(m, "# %.*s|||| / delay\n", prec, space); 4338 seq_printf(m, "# TASK-PID %.*s CPU# ||||| TIMESTAMP FUNCTION\n", prec, " TGID "); 4339 seq_printf(m, "# | | %.*s | ||||| | |\n", prec, " | "); 4340 } 4341 4342 void 4343 print_trace_header(struct seq_file *m, struct trace_iterator *iter) 4344 { 4345 unsigned long sym_flags = (global_trace.trace_flags & TRACE_ITER_SYM_MASK); 4346 struct array_buffer *buf = iter->array_buffer; 4347 struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu); 4348 struct tracer *type = iter->trace; 4349 unsigned long entries; 4350 unsigned long total; 4351 const char *name = type->name; 4352 4353 get_total_entries(buf, &total, &entries); 4354 4355 seq_printf(m, "# %s latency trace v1.1.5 on %s\n", 4356 name, UTS_RELEASE); 4357 seq_puts(m, "# -----------------------------------" 4358 "---------------------------------\n"); 4359 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |" 4360 " (M:%s VP:%d, KP:%d, SP:%d HP:%d", 4361 nsecs_to_usecs(data->saved_latency), 4362 entries, 4363 total, 4364 buf->cpu, 4365 preempt_model_none() ? "server" : 4366 preempt_model_voluntary() ? "desktop" : 4367 preempt_model_full() ? "preempt" : 4368 preempt_model_rt() ? "preempt_rt" : 4369 "unknown", 4370 /* These are reserved for later use */ 4371 0, 0, 0, 0); 4372 #ifdef CONFIG_SMP 4373 seq_printf(m, " #P:%d)\n", num_online_cpus()); 4374 #else 4375 seq_puts(m, ")\n"); 4376 #endif 4377 seq_puts(m, "# -----------------\n"); 4378 seq_printf(m, "# | task: %.16s-%d " 4379 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n", 4380 data->comm, data->pid, 4381 from_kuid_munged(seq_user_ns(m), data->uid), data->nice, 4382 data->policy, data->rt_priority); 4383 seq_puts(m, "# -----------------\n"); 4384 4385 if (data->critical_start) { 4386 seq_puts(m, "# => started at: "); 4387 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags); 4388 trace_print_seq(m, &iter->seq); 4389 seq_puts(m, "\n# => ended at: "); 4390 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags); 4391 trace_print_seq(m, &iter->seq); 4392 seq_puts(m, "\n#\n"); 4393 } 4394 4395 seq_puts(m, "#\n"); 4396 } 4397 4398 static void test_cpu_buff_start(struct trace_iterator *iter) 4399 { 4400 struct trace_seq *s = &iter->seq; 4401 struct trace_array *tr = iter->tr; 4402 4403 if (!(tr->trace_flags & TRACE_ITER_ANNOTATE)) 4404 return; 4405 4406 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE)) 4407 return; 4408 4409 if (cpumask_available(iter->started) && 4410 cpumask_test_cpu(iter->cpu, iter->started)) 4411 return; 4412 4413 if (per_cpu_ptr(iter->array_buffer->data, iter->cpu)->skipped_entries) 4414 return; 4415 4416 if (cpumask_available(iter->started)) 4417 cpumask_set_cpu(iter->cpu, iter->started); 4418 4419 /* Don't print started cpu buffer for the first entry of the trace */ 4420 if (iter->idx > 1) 4421 trace_seq_printf(s, "##### CPU %u buffer started ####\n", 4422 iter->cpu); 4423 } 4424 4425 static enum print_line_t print_trace_fmt(struct trace_iterator *iter) 4426 { 4427 struct trace_array *tr = iter->tr; 4428 struct trace_seq *s = &iter->seq; 4429 unsigned long sym_flags = (tr->trace_flags & TRACE_ITER_SYM_MASK); 4430 struct trace_entry *entry; 4431 struct trace_event *event; 4432 4433 entry = iter->ent; 4434 4435 test_cpu_buff_start(iter); 4436 4437 event = ftrace_find_event(entry->type); 4438 4439 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) { 4440 if (iter->iter_flags & TRACE_FILE_LAT_FMT) 4441 trace_print_lat_context(iter); 4442 else 4443 trace_print_context(iter); 4444 } 4445 4446 if (trace_seq_has_overflowed(s)) 4447 return TRACE_TYPE_PARTIAL_LINE; 4448 4449 if (event) 4450 return event->funcs->trace(iter, sym_flags, event); 4451 4452 trace_seq_printf(s, "Unknown type %d\n", entry->type); 4453 4454 return trace_handle_return(s); 4455 } 4456 4457 static enum print_line_t print_raw_fmt(struct trace_iterator *iter) 4458 { 4459 struct trace_array *tr = iter->tr; 4460 struct trace_seq *s = &iter->seq; 4461 struct trace_entry *entry; 4462 struct trace_event *event; 4463 4464 entry = iter->ent; 4465 4466 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) 4467 trace_seq_printf(s, "%d %d %llu ", 4468 entry->pid, iter->cpu, iter->ts); 4469 4470 if (trace_seq_has_overflowed(s)) 4471 return TRACE_TYPE_PARTIAL_LINE; 4472 4473 event = ftrace_find_event(entry->type); 4474 if (event) 4475 return event->funcs->raw(iter, 0, event); 4476 4477 trace_seq_printf(s, "%d ?\n", entry->type); 4478 4479 return trace_handle_return(s); 4480 } 4481 4482 static enum print_line_t print_hex_fmt(struct trace_iterator *iter) 4483 { 4484 struct trace_array *tr = iter->tr; 4485 struct trace_seq *s = &iter->seq; 4486 unsigned char newline = '\n'; 4487 struct trace_entry *entry; 4488 struct trace_event *event; 4489 4490 entry = iter->ent; 4491 4492 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) { 4493 SEQ_PUT_HEX_FIELD(s, entry->pid); 4494 SEQ_PUT_HEX_FIELD(s, iter->cpu); 4495 SEQ_PUT_HEX_FIELD(s, iter->ts); 4496 if (trace_seq_has_overflowed(s)) 4497 return TRACE_TYPE_PARTIAL_LINE; 4498 } 4499 4500 event = ftrace_find_event(entry->type); 4501 if (event) { 4502 enum print_line_t ret = event->funcs->hex(iter, 0, event); 4503 if (ret != TRACE_TYPE_HANDLED) 4504 return ret; 4505 } 4506 4507 SEQ_PUT_FIELD(s, newline); 4508 4509 return trace_handle_return(s); 4510 } 4511 4512 static enum print_line_t print_bin_fmt(struct trace_iterator *iter) 4513 { 4514 struct trace_array *tr = iter->tr; 4515 struct trace_seq *s = &iter->seq; 4516 struct trace_entry *entry; 4517 struct trace_event *event; 4518 4519 entry = iter->ent; 4520 4521 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) { 4522 SEQ_PUT_FIELD(s, entry->pid); 4523 SEQ_PUT_FIELD(s, iter->cpu); 4524 SEQ_PUT_FIELD(s, iter->ts); 4525 if (trace_seq_has_overflowed(s)) 4526 return TRACE_TYPE_PARTIAL_LINE; 4527 } 4528 4529 event = ftrace_find_event(entry->type); 4530 return event ? event->funcs->binary(iter, 0, event) : 4531 TRACE_TYPE_HANDLED; 4532 } 4533 4534 int trace_empty(struct trace_iterator *iter) 4535 { 4536 struct ring_buffer_iter *buf_iter; 4537 int cpu; 4538 4539 /* If we are looking at one CPU buffer, only check that one */ 4540 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) { 4541 cpu = iter->cpu_file; 4542 buf_iter = trace_buffer_iter(iter, cpu); 4543 if (buf_iter) { 4544 if (!ring_buffer_iter_empty(buf_iter)) 4545 return 0; 4546 } else { 4547 if (!ring_buffer_empty_cpu(iter->array_buffer->buffer, cpu)) 4548 return 0; 4549 } 4550 return 1; 4551 } 4552 4553 for_each_tracing_cpu(cpu) { 4554 buf_iter = trace_buffer_iter(iter, cpu); 4555 if (buf_iter) { 4556 if (!ring_buffer_iter_empty(buf_iter)) 4557 return 0; 4558 } else { 4559 if (!ring_buffer_empty_cpu(iter->array_buffer->buffer, cpu)) 4560 return 0; 4561 } 4562 } 4563 4564 return 1; 4565 } 4566 4567 /* Called with trace_event_read_lock() held. */ 4568 enum print_line_t print_trace_line(struct trace_iterator *iter) 4569 { 4570 struct trace_array *tr = iter->tr; 4571 unsigned long trace_flags = tr->trace_flags; 4572 enum print_line_t ret; 4573 4574 if (iter->lost_events) { 4575 if (iter->lost_events == (unsigned long)-1) 4576 trace_seq_printf(&iter->seq, "CPU:%d [LOST EVENTS]\n", 4577 iter->cpu); 4578 else 4579 trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n", 4580 iter->cpu, iter->lost_events); 4581 if (trace_seq_has_overflowed(&iter->seq)) 4582 return TRACE_TYPE_PARTIAL_LINE; 4583 } 4584 4585 if (iter->trace && iter->trace->print_line) { 4586 ret = iter->trace->print_line(iter); 4587 if (ret != TRACE_TYPE_UNHANDLED) 4588 return ret; 4589 } 4590 4591 if (iter->ent->type == TRACE_BPUTS && 4592 trace_flags & TRACE_ITER_PRINTK && 4593 trace_flags & TRACE_ITER_PRINTK_MSGONLY) 4594 return trace_print_bputs_msg_only(iter); 4595 4596 if (iter->ent->type == TRACE_BPRINT && 4597 trace_flags & TRACE_ITER_PRINTK && 4598 trace_flags & TRACE_ITER_PRINTK_MSGONLY) 4599 return trace_print_bprintk_msg_only(iter); 4600 4601 if (iter->ent->type == TRACE_PRINT && 4602 trace_flags & TRACE_ITER_PRINTK && 4603 trace_flags & TRACE_ITER_PRINTK_MSGONLY) 4604 return trace_print_printk_msg_only(iter); 4605 4606 if (trace_flags & TRACE_ITER_BIN) 4607 return print_bin_fmt(iter); 4608 4609 if (trace_flags & TRACE_ITER_HEX) 4610 return print_hex_fmt(iter); 4611 4612 if (trace_flags & TRACE_ITER_RAW) 4613 return print_raw_fmt(iter); 4614 4615 return print_trace_fmt(iter); 4616 } 4617 4618 void trace_latency_header(struct seq_file *m) 4619 { 4620 struct trace_iterator *iter = m->private; 4621 struct trace_array *tr = iter->tr; 4622 4623 /* print nothing if the buffers are empty */ 4624 if (trace_empty(iter)) 4625 return; 4626 4627 if (iter->iter_flags & TRACE_FILE_LAT_FMT) 4628 print_trace_header(m, iter); 4629 4630 if (!(tr->trace_flags & TRACE_ITER_VERBOSE)) 4631 print_lat_help_header(m); 4632 } 4633 4634 void trace_default_header(struct seq_file *m) 4635 { 4636 struct trace_iterator *iter = m->private; 4637 struct trace_array *tr = iter->tr; 4638 unsigned long trace_flags = tr->trace_flags; 4639 4640 if (!(trace_flags & TRACE_ITER_CONTEXT_INFO)) 4641 return; 4642 4643 if (iter->iter_flags & TRACE_FILE_LAT_FMT) { 4644 /* print nothing if the buffers are empty */ 4645 if (trace_empty(iter)) 4646 return; 4647 print_trace_header(m, iter); 4648 if (!(trace_flags & TRACE_ITER_VERBOSE)) 4649 print_lat_help_header(m); 4650 } else { 4651 if (!(trace_flags & TRACE_ITER_VERBOSE)) { 4652 if (trace_flags & TRACE_ITER_IRQ_INFO) 4653 print_func_help_header_irq(iter->array_buffer, 4654 m, trace_flags); 4655 else 4656 print_func_help_header(iter->array_buffer, m, 4657 trace_flags); 4658 } 4659 } 4660 } 4661 4662 static void test_ftrace_alive(struct seq_file *m) 4663 { 4664 if (!ftrace_is_dead()) 4665 return; 4666 seq_puts(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n" 4667 "# MAY BE MISSING FUNCTION EVENTS\n"); 4668 } 4669 4670 #ifdef CONFIG_TRACER_MAX_TRACE 4671 static void show_snapshot_main_help(struct seq_file *m) 4672 { 4673 seq_puts(m, "# echo 0 > snapshot : Clears and frees snapshot buffer\n" 4674 "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n" 4675 "# Takes a snapshot of the main buffer.\n" 4676 "# echo 2 > snapshot : Clears snapshot buffer (but does not allocate or free)\n" 4677 "# (Doesn't have to be '2' works with any number that\n" 4678 "# is not a '0' or '1')\n"); 4679 } 4680 4681 static void show_snapshot_percpu_help(struct seq_file *m) 4682 { 4683 seq_puts(m, "# echo 0 > snapshot : Invalid for per_cpu snapshot file.\n"); 4684 #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP 4685 seq_puts(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n" 4686 "# Takes a snapshot of the main buffer for this cpu.\n"); 4687 #else 4688 seq_puts(m, "# echo 1 > snapshot : Not supported with this kernel.\n" 4689 "# Must use main snapshot file to allocate.\n"); 4690 #endif 4691 seq_puts(m, "# echo 2 > snapshot : Clears this cpu's snapshot buffer (but does not allocate)\n" 4692 "# (Doesn't have to be '2' works with any number that\n" 4693 "# is not a '0' or '1')\n"); 4694 } 4695 4696 static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) 4697 { 4698 if (iter->tr->allocated_snapshot) 4699 seq_puts(m, "#\n# * Snapshot is allocated *\n#\n"); 4700 else 4701 seq_puts(m, "#\n# * Snapshot is freed *\n#\n"); 4702 4703 seq_puts(m, "# Snapshot commands:\n"); 4704 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) 4705 show_snapshot_main_help(m); 4706 else 4707 show_snapshot_percpu_help(m); 4708 } 4709 #else 4710 /* Should never be called */ 4711 static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { } 4712 #endif 4713 4714 static int s_show(struct seq_file *m, void *v) 4715 { 4716 struct trace_iterator *iter = v; 4717 int ret; 4718 4719 if (iter->ent == NULL) { 4720 if (iter->tr) { 4721 seq_printf(m, "# tracer: %s\n", iter->trace->name); 4722 seq_puts(m, "#\n"); 4723 test_ftrace_alive(m); 4724 } 4725 if (iter->snapshot && trace_empty(iter)) 4726 print_snapshot_help(m, iter); 4727 else if (iter->trace && iter->trace->print_header) 4728 iter->trace->print_header(m); 4729 else 4730 trace_default_header(m); 4731 4732 } else if (iter->leftover) { 4733 /* 4734 * If we filled the seq_file buffer earlier, we 4735 * want to just show it now. 4736 */ 4737 ret = trace_print_seq(m, &iter->seq); 4738 4739 /* ret should this time be zero, but you never know */ 4740 iter->leftover = ret; 4741 4742 } else { 4743 print_trace_line(iter); 4744 ret = trace_print_seq(m, &iter->seq); 4745 /* 4746 * If we overflow the seq_file buffer, then it will 4747 * ask us for this data again at start up. 4748 * Use that instead. 4749 * ret is 0 if seq_file write succeeded. 4750 * -1 otherwise. 4751 */ 4752 iter->leftover = ret; 4753 } 4754 4755 return 0; 4756 } 4757 4758 /* 4759 * Should be used after trace_array_get(), trace_types_lock 4760 * ensures that i_cdev was already initialized. 4761 */ 4762 static inline int tracing_get_cpu(struct inode *inode) 4763 { 4764 if (inode->i_cdev) /* See trace_create_cpu_file() */ 4765 return (long)inode->i_cdev - 1; 4766 return RING_BUFFER_ALL_CPUS; 4767 } 4768 4769 static const struct seq_operations tracer_seq_ops = { 4770 .start = s_start, 4771 .next = s_next, 4772 .stop = s_stop, 4773 .show = s_show, 4774 }; 4775 4776 static struct trace_iterator * 4777 __tracing_open(struct inode *inode, struct file *file, bool snapshot) 4778 { 4779 struct trace_array *tr = inode->i_private; 4780 struct trace_iterator *iter; 4781 int cpu; 4782 4783 if (tracing_disabled) 4784 return ERR_PTR(-ENODEV); 4785 4786 iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter)); 4787 if (!iter) 4788 return ERR_PTR(-ENOMEM); 4789 4790 iter->buffer_iter = kcalloc(nr_cpu_ids, sizeof(*iter->buffer_iter), 4791 GFP_KERNEL); 4792 if (!iter->buffer_iter) 4793 goto release; 4794 4795 /* 4796 * trace_find_next_entry() may need to save off iter->ent. 4797 * It will place it into the iter->temp buffer. As most 4798 * events are less than 128, allocate a buffer of that size. 4799 * If one is greater, then trace_find_next_entry() will 4800 * allocate a new buffer to adjust for the bigger iter->ent. 4801 * It's not critical if it fails to get allocated here. 4802 */ 4803 iter->temp = kmalloc(128, GFP_KERNEL); 4804 if (iter->temp) 4805 iter->temp_size = 128; 4806 4807 /* 4808 * trace_event_printf() may need to modify given format 4809 * string to replace %p with %px so that it shows real address 4810 * instead of hash value. However, that is only for the event 4811 * tracing, other tracer may not need. Defer the allocation 4812 * until it is needed. 4813 */ 4814 iter->fmt = NULL; 4815 iter->fmt_size = 0; 4816 4817 /* 4818 * We make a copy of the current tracer to avoid concurrent 4819 * changes on it while we are reading. 4820 */ 4821 mutex_lock(&trace_types_lock); 4822 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL); 4823 if (!iter->trace) 4824 goto fail; 4825 4826 *iter->trace = *tr->current_trace; 4827 4828 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL)) 4829 goto fail; 4830 4831 iter->tr = tr; 4832 4833 #ifdef CONFIG_TRACER_MAX_TRACE 4834 /* Currently only the top directory has a snapshot */ 4835 if (tr->current_trace->print_max || snapshot) 4836 iter->array_buffer = &tr->max_buffer; 4837 else 4838 #endif 4839 iter->array_buffer = &tr->array_buffer; 4840 iter->snapshot = snapshot; 4841 iter->pos = -1; 4842 iter->cpu_file = tracing_get_cpu(inode); 4843 mutex_init(&iter->mutex); 4844 4845 /* Notify the tracer early; before we stop tracing. */ 4846 if (iter->trace->open) 4847 iter->trace->open(iter); 4848 4849 /* Annotate start of buffers if we had overruns */ 4850 if (ring_buffer_overruns(iter->array_buffer->buffer)) 4851 iter->iter_flags |= TRACE_FILE_ANNOTATE; 4852 4853 /* Output in nanoseconds only if we are using a clock in nanoseconds. */ 4854 if (trace_clocks[tr->clock_id].in_ns) 4855 iter->iter_flags |= TRACE_FILE_TIME_IN_NS; 4856 4857 /* 4858 * If pause-on-trace is enabled, then stop the trace while 4859 * dumping, unless this is the "snapshot" file 4860 */ 4861 if (!iter->snapshot && (tr->trace_flags & TRACE_ITER_PAUSE_ON_TRACE)) 4862 tracing_stop_tr(tr); 4863 4864 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) { 4865 for_each_tracing_cpu(cpu) { 4866 iter->buffer_iter[cpu] = 4867 ring_buffer_read_prepare(iter->array_buffer->buffer, 4868 cpu, GFP_KERNEL); 4869 } 4870 ring_buffer_read_prepare_sync(); 4871 for_each_tracing_cpu(cpu) { 4872 ring_buffer_read_start(iter->buffer_iter[cpu]); 4873 tracing_iter_reset(iter, cpu); 4874 } 4875 } else { 4876 cpu = iter->cpu_file; 4877 iter->buffer_iter[cpu] = 4878 ring_buffer_read_prepare(iter->array_buffer->buffer, 4879 cpu, GFP_KERNEL); 4880 ring_buffer_read_prepare_sync(); 4881 ring_buffer_read_start(iter->buffer_iter[cpu]); 4882 tracing_iter_reset(iter, cpu); 4883 } 4884 4885 mutex_unlock(&trace_types_lock); 4886 4887 return iter; 4888 4889 fail: 4890 mutex_unlock(&trace_types_lock); 4891 kfree(iter->trace); 4892 kfree(iter->temp); 4893 kfree(iter->buffer_iter); 4894 release: 4895 seq_release_private(inode, file); 4896 return ERR_PTR(-ENOMEM); 4897 } 4898 4899 int tracing_open_generic(struct inode *inode, struct file *filp) 4900 { 4901 int ret; 4902 4903 ret = tracing_check_open_get_tr(NULL); 4904 if (ret) 4905 return ret; 4906 4907 filp->private_data = inode->i_private; 4908 return 0; 4909 } 4910 4911 bool tracing_is_disabled(void) 4912 { 4913 return (tracing_disabled) ? true: false; 4914 } 4915 4916 /* 4917 * Open and update trace_array ref count. 4918 * Must have the current trace_array passed to it. 4919 */ 4920 int tracing_open_generic_tr(struct inode *inode, struct file *filp) 4921 { 4922 struct trace_array *tr = inode->i_private; 4923 int ret; 4924 4925 ret = tracing_check_open_get_tr(tr); 4926 if (ret) 4927 return ret; 4928 4929 filp->private_data = inode->i_private; 4930 4931 return 0; 4932 } 4933 4934 static int tracing_mark_open(struct inode *inode, struct file *filp) 4935 { 4936 stream_open(inode, filp); 4937 return tracing_open_generic_tr(inode, filp); 4938 } 4939 4940 static int tracing_release(struct inode *inode, struct file *file) 4941 { 4942 struct trace_array *tr = inode->i_private; 4943 struct seq_file *m = file->private_data; 4944 struct trace_iterator *iter; 4945 int cpu; 4946 4947 if (!(file->f_mode & FMODE_READ)) { 4948 trace_array_put(tr); 4949 return 0; 4950 } 4951 4952 /* Writes do not use seq_file */ 4953 iter = m->private; 4954 mutex_lock(&trace_types_lock); 4955 4956 for_each_tracing_cpu(cpu) { 4957 if (iter->buffer_iter[cpu]) 4958 ring_buffer_read_finish(iter->buffer_iter[cpu]); 4959 } 4960 4961 if (iter->trace && iter->trace->close) 4962 iter->trace->close(iter); 4963 4964 if (!iter->snapshot && tr->stop_count) 4965 /* reenable tracing if it was previously enabled */ 4966 tracing_start_tr(tr); 4967 4968 __trace_array_put(tr); 4969 4970 mutex_unlock(&trace_types_lock); 4971 4972 mutex_destroy(&iter->mutex); 4973 free_cpumask_var(iter->started); 4974 kfree(iter->fmt); 4975 kfree(iter->temp); 4976 kfree(iter->trace); 4977 kfree(iter->buffer_iter); 4978 seq_release_private(inode, file); 4979 4980 return 0; 4981 } 4982 4983 static int tracing_release_generic_tr(struct inode *inode, struct file *file) 4984 { 4985 struct trace_array *tr = inode->i_private; 4986 4987 trace_array_put(tr); 4988 return 0; 4989 } 4990 4991 static int tracing_single_release_tr(struct inode *inode, struct file *file) 4992 { 4993 struct trace_array *tr = inode->i_private; 4994 4995 trace_array_put(tr); 4996 4997 return single_release(inode, file); 4998 } 4999 5000 static int tracing_open(struct inode *inode, struct file *file) 5001 { 5002 struct trace_array *tr = inode->i_private; 5003 struct trace_iterator *iter; 5004 int ret; 5005 5006 ret = tracing_check_open_get_tr(tr); 5007 if (ret) 5008 return ret; 5009 5010 /* If this file was open for write, then erase contents */ 5011 if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) { 5012 int cpu = tracing_get_cpu(inode); 5013 struct array_buffer *trace_buf = &tr->array_buffer; 5014 5015 #ifdef CONFIG_TRACER_MAX_TRACE 5016 if (tr->current_trace->print_max) 5017 trace_buf = &tr->max_buffer; 5018 #endif 5019 5020 if (cpu == RING_BUFFER_ALL_CPUS) 5021 tracing_reset_online_cpus(trace_buf); 5022 else 5023 tracing_reset_cpu(trace_buf, cpu); 5024 } 5025 5026 if (file->f_mode & FMODE_READ) { 5027 iter = __tracing_open(inode, file, false); 5028 if (IS_ERR(iter)) 5029 ret = PTR_ERR(iter); 5030 else if (tr->trace_flags & TRACE_ITER_LATENCY_FMT) 5031 iter->iter_flags |= TRACE_FILE_LAT_FMT; 5032 } 5033 5034 if (ret < 0) 5035 trace_array_put(tr); 5036 5037 return ret; 5038 } 5039 5040 /* 5041 * Some tracers are not suitable for instance buffers. 5042 * A tracer is always available for the global array (toplevel) 5043 * or if it explicitly states that it is. 5044 */ 5045 static bool 5046 trace_ok_for_array(struct tracer *t, struct trace_array *tr) 5047 { 5048 return (tr->flags & TRACE_ARRAY_FL_GLOBAL) || t->allow_instances; 5049 } 5050 5051 /* Find the next tracer that this trace array may use */ 5052 static struct tracer * 5053 get_tracer_for_array(struct trace_array *tr, struct tracer *t) 5054 { 5055 while (t && !trace_ok_for_array(t, tr)) 5056 t = t->next; 5057 5058 return t; 5059 } 5060 5061 static void * 5062 t_next(struct seq_file *m, void *v, loff_t *pos) 5063 { 5064 struct trace_array *tr = m->private; 5065 struct tracer *t = v; 5066 5067 (*pos)++; 5068 5069 if (t) 5070 t = get_tracer_for_array(tr, t->next); 5071 5072 return t; 5073 } 5074 5075 static void *t_start(struct seq_file *m, loff_t *pos) 5076 { 5077 struct trace_array *tr = m->private; 5078 struct tracer *t; 5079 loff_t l = 0; 5080 5081 mutex_lock(&trace_types_lock); 5082 5083 t = get_tracer_for_array(tr, trace_types); 5084 for (; t && l < *pos; t = t_next(m, t, &l)) 5085 ; 5086 5087 return t; 5088 } 5089 5090 static void t_stop(struct seq_file *m, void *p) 5091 { 5092 mutex_unlock(&trace_types_lock); 5093 } 5094 5095 static int t_show(struct seq_file *m, void *v) 5096 { 5097 struct tracer *t = v; 5098 5099 if (!t) 5100 return 0; 5101 5102 seq_puts(m, t->name); 5103 if (t->next) 5104 seq_putc(m, ' '); 5105 else 5106 seq_putc(m, '\n'); 5107 5108 return 0; 5109 } 5110 5111 static const struct seq_operations show_traces_seq_ops = { 5112 .start = t_start, 5113 .next = t_next, 5114 .stop = t_stop, 5115 .show = t_show, 5116 }; 5117 5118 static int show_traces_open(struct inode *inode, struct file *file) 5119 { 5120 struct trace_array *tr = inode->i_private; 5121 struct seq_file *m; 5122 int ret; 5123 5124 ret = tracing_check_open_get_tr(tr); 5125 if (ret) 5126 return ret; 5127 5128 ret = seq_open(file, &show_traces_seq_ops); 5129 if (ret) { 5130 trace_array_put(tr); 5131 return ret; 5132 } 5133 5134 m = file->private_data; 5135 m->private = tr; 5136 5137 return 0; 5138 } 5139 5140 static int show_traces_release(struct inode *inode, struct file *file) 5141 { 5142 struct trace_array *tr = inode->i_private; 5143 5144 trace_array_put(tr); 5145 return seq_release(inode, file); 5146 } 5147 5148 static ssize_t 5149 tracing_write_stub(struct file *filp, const char __user *ubuf, 5150 size_t count, loff_t *ppos) 5151 { 5152 return count; 5153 } 5154 5155 loff_t tracing_lseek(struct file *file, loff_t offset, int whence) 5156 { 5157 int ret; 5158 5159 if (file->f_mode & FMODE_READ) 5160 ret = seq_lseek(file, offset, whence); 5161 else 5162 file->f_pos = ret = 0; 5163 5164 return ret; 5165 } 5166 5167 static const struct file_operations tracing_fops = { 5168 .open = tracing_open, 5169 .read = seq_read, 5170 .read_iter = seq_read_iter, 5171 .splice_read = generic_file_splice_read, 5172 .write = tracing_write_stub, 5173 .llseek = tracing_lseek, 5174 .release = tracing_release, 5175 }; 5176 5177 static const struct file_operations show_traces_fops = { 5178 .open = show_traces_open, 5179 .read = seq_read, 5180 .llseek = seq_lseek, 5181 .release = show_traces_release, 5182 }; 5183 5184 static ssize_t 5185 tracing_cpumask_read(struct file *filp, char __user *ubuf, 5186 size_t count, loff_t *ppos) 5187 { 5188 struct trace_array *tr = file_inode(filp)->i_private; 5189 char *mask_str; 5190 int len; 5191 5192 len = snprintf(NULL, 0, "%*pb\n", 5193 cpumask_pr_args(tr->tracing_cpumask)) + 1; 5194 mask_str = kmalloc(len, GFP_KERNEL); 5195 if (!mask_str) 5196 return -ENOMEM; 5197 5198 len = snprintf(mask_str, len, "%*pb\n", 5199 cpumask_pr_args(tr->tracing_cpumask)); 5200 if (len >= count) { 5201 count = -EINVAL; 5202 goto out_err; 5203 } 5204 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, len); 5205 5206 out_err: 5207 kfree(mask_str); 5208 5209 return count; 5210 } 5211 5212 int tracing_set_cpumask(struct trace_array *tr, 5213 cpumask_var_t tracing_cpumask_new) 5214 { 5215 int cpu; 5216 5217 if (!tr) 5218 return -EINVAL; 5219 5220 local_irq_disable(); 5221 arch_spin_lock(&tr->max_lock); 5222 for_each_tracing_cpu(cpu) { 5223 /* 5224 * Increase/decrease the disabled counter if we are 5225 * about to flip a bit in the cpumask: 5226 */ 5227 if (cpumask_test_cpu(cpu, tr->tracing_cpumask) && 5228 !cpumask_test_cpu(cpu, tracing_cpumask_new)) { 5229 atomic_inc(&per_cpu_ptr(tr->array_buffer.data, cpu)->disabled); 5230 ring_buffer_record_disable_cpu(tr->array_buffer.buffer, cpu); 5231 } 5232 if (!cpumask_test_cpu(cpu, tr->tracing_cpumask) && 5233 cpumask_test_cpu(cpu, tracing_cpumask_new)) { 5234 atomic_dec(&per_cpu_ptr(tr->array_buffer.data, cpu)->disabled); 5235 ring_buffer_record_enable_cpu(tr->array_buffer.buffer, cpu); 5236 } 5237 } 5238 arch_spin_unlock(&tr->max_lock); 5239 local_irq_enable(); 5240 5241 cpumask_copy(tr->tracing_cpumask, tracing_cpumask_new); 5242 5243 return 0; 5244 } 5245 5246 static ssize_t 5247 tracing_cpumask_write(struct file *filp, const char __user *ubuf, 5248 size_t count, loff_t *ppos) 5249 { 5250 struct trace_array *tr = file_inode(filp)->i_private; 5251 cpumask_var_t tracing_cpumask_new; 5252 int err; 5253 5254 if (!zalloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL)) 5255 return -ENOMEM; 5256 5257 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new); 5258 if (err) 5259 goto err_free; 5260 5261 err = tracing_set_cpumask(tr, tracing_cpumask_new); 5262 if (err) 5263 goto err_free; 5264 5265 free_cpumask_var(tracing_cpumask_new); 5266 5267 return count; 5268 5269 err_free: 5270 free_cpumask_var(tracing_cpumask_new); 5271 5272 return err; 5273 } 5274 5275 static const struct file_operations tracing_cpumask_fops = { 5276 .open = tracing_open_generic_tr, 5277 .read = tracing_cpumask_read, 5278 .write = tracing_cpumask_write, 5279 .release = tracing_release_generic_tr, 5280 .llseek = generic_file_llseek, 5281 }; 5282 5283 static int tracing_trace_options_show(struct seq_file *m, void *v) 5284 { 5285 struct tracer_opt *trace_opts; 5286 struct trace_array *tr = m->private; 5287 u32 tracer_flags; 5288 int i; 5289 5290 mutex_lock(&trace_types_lock); 5291 tracer_flags = tr->current_trace->flags->val; 5292 trace_opts = tr->current_trace->flags->opts; 5293 5294 for (i = 0; trace_options[i]; i++) { 5295 if (tr->trace_flags & (1 << i)) 5296 seq_printf(m, "%s\n", trace_options[i]); 5297 else 5298 seq_printf(m, "no%s\n", trace_options[i]); 5299 } 5300 5301 for (i = 0; trace_opts[i].name; i++) { 5302 if (tracer_flags & trace_opts[i].bit) 5303 seq_printf(m, "%s\n", trace_opts[i].name); 5304 else 5305 seq_printf(m, "no%s\n", trace_opts[i].name); 5306 } 5307 mutex_unlock(&trace_types_lock); 5308 5309 return 0; 5310 } 5311 5312 static int __set_tracer_option(struct trace_array *tr, 5313 struct tracer_flags *tracer_flags, 5314 struct tracer_opt *opts, int neg) 5315 { 5316 struct tracer *trace = tracer_flags->trace; 5317 int ret; 5318 5319 ret = trace->set_flag(tr, tracer_flags->val, opts->bit, !neg); 5320 if (ret) 5321 return ret; 5322 5323 if (neg) 5324 tracer_flags->val &= ~opts->bit; 5325 else 5326 tracer_flags->val |= opts->bit; 5327 return 0; 5328 } 5329 5330 /* Try to assign a tracer specific option */ 5331 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg) 5332 { 5333 struct tracer *trace = tr->current_trace; 5334 struct tracer_flags *tracer_flags = trace->flags; 5335 struct tracer_opt *opts = NULL; 5336 int i; 5337 5338 for (i = 0; tracer_flags->opts[i].name; i++) { 5339 opts = &tracer_flags->opts[i]; 5340 5341 if (strcmp(cmp, opts->name) == 0) 5342 return __set_tracer_option(tr, trace->flags, opts, neg); 5343 } 5344 5345 return -EINVAL; 5346 } 5347 5348 /* Some tracers require overwrite to stay enabled */ 5349 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set) 5350 { 5351 if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set) 5352 return -1; 5353 5354 return 0; 5355 } 5356 5357 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled) 5358 { 5359 int *map; 5360 5361 if ((mask == TRACE_ITER_RECORD_TGID) || 5362 (mask == TRACE_ITER_RECORD_CMD)) 5363 lockdep_assert_held(&event_mutex); 5364 5365 /* do nothing if flag is already set */ 5366 if (!!(tr->trace_flags & mask) == !!enabled) 5367 return 0; 5368 5369 /* Give the tracer a chance to approve the change */ 5370 if (tr->current_trace->flag_changed) 5371 if (tr->current_trace->flag_changed(tr, mask, !!enabled)) 5372 return -EINVAL; 5373 5374 if (enabled) 5375 tr->trace_flags |= mask; 5376 else 5377 tr->trace_flags &= ~mask; 5378 5379 if (mask == TRACE_ITER_RECORD_CMD) 5380 trace_event_enable_cmd_record(enabled); 5381 5382 if (mask == TRACE_ITER_RECORD_TGID) { 5383 if (!tgid_map) { 5384 tgid_map_max = pid_max; 5385 map = kvcalloc(tgid_map_max + 1, sizeof(*tgid_map), 5386 GFP_KERNEL); 5387 5388 /* 5389 * Pairs with smp_load_acquire() in 5390 * trace_find_tgid_ptr() to ensure that if it observes 5391 * the tgid_map we just allocated then it also observes 5392 * the corresponding tgid_map_max value. 5393 */ 5394 smp_store_release(&tgid_map, map); 5395 } 5396 if (!tgid_map) { 5397 tr->trace_flags &= ~TRACE_ITER_RECORD_TGID; 5398 return -ENOMEM; 5399 } 5400 5401 trace_event_enable_tgid_record(enabled); 5402 } 5403 5404 if (mask == TRACE_ITER_EVENT_FORK) 5405 trace_event_follow_fork(tr, enabled); 5406 5407 if (mask == TRACE_ITER_FUNC_FORK) 5408 ftrace_pid_follow_fork(tr, enabled); 5409 5410 if (mask == TRACE_ITER_OVERWRITE) { 5411 ring_buffer_change_overwrite(tr->array_buffer.buffer, enabled); 5412 #ifdef CONFIG_TRACER_MAX_TRACE 5413 ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled); 5414 #endif 5415 } 5416 5417 if (mask == TRACE_ITER_PRINTK) { 5418 trace_printk_start_stop_comm(enabled); 5419 trace_printk_control(enabled); 5420 } 5421 5422 return 0; 5423 } 5424 5425 int trace_set_options(struct trace_array *tr, char *option) 5426 { 5427 char *cmp; 5428 int neg = 0; 5429 int ret; 5430 size_t orig_len = strlen(option); 5431 int len; 5432 5433 cmp = strstrip(option); 5434 5435 len = str_has_prefix(cmp, "no"); 5436 if (len) 5437 neg = 1; 5438 5439 cmp += len; 5440 5441 mutex_lock(&event_mutex); 5442 mutex_lock(&trace_types_lock); 5443 5444 ret = match_string(trace_options, -1, cmp); 5445 /* If no option could be set, test the specific tracer options */ 5446 if (ret < 0) 5447 ret = set_tracer_option(tr, cmp, neg); 5448 else 5449 ret = set_tracer_flag(tr, 1 << ret, !neg); 5450 5451 mutex_unlock(&trace_types_lock); 5452 mutex_unlock(&event_mutex); 5453 5454 /* 5455 * If the first trailing whitespace is replaced with '\0' by strstrip, 5456 * turn it back into a space. 5457 */ 5458 if (orig_len > strlen(option)) 5459 option[strlen(option)] = ' '; 5460 5461 return ret; 5462 } 5463 5464 static void __init apply_trace_boot_options(void) 5465 { 5466 char *buf = trace_boot_options_buf; 5467 char *option; 5468 5469 while (true) { 5470 option = strsep(&buf, ","); 5471 5472 if (!option) 5473 break; 5474 5475 if (*option) 5476 trace_set_options(&global_trace, option); 5477 5478 /* Put back the comma to allow this to be called again */ 5479 if (buf) 5480 *(buf - 1) = ','; 5481 } 5482 } 5483 5484 static ssize_t 5485 tracing_trace_options_write(struct file *filp, const char __user *ubuf, 5486 size_t cnt, loff_t *ppos) 5487 { 5488 struct seq_file *m = filp->private_data; 5489 struct trace_array *tr = m->private; 5490 char buf[64]; 5491 int ret; 5492 5493 if (cnt >= sizeof(buf)) 5494 return -EINVAL; 5495 5496 if (copy_from_user(buf, ubuf, cnt)) 5497 return -EFAULT; 5498 5499 buf[cnt] = 0; 5500 5501 ret = trace_set_options(tr, buf); 5502 if (ret < 0) 5503 return ret; 5504 5505 *ppos += cnt; 5506 5507 return cnt; 5508 } 5509 5510 static int tracing_trace_options_open(struct inode *inode, struct file *file) 5511 { 5512 struct trace_array *tr = inode->i_private; 5513 int ret; 5514 5515 ret = tracing_check_open_get_tr(tr); 5516 if (ret) 5517 return ret; 5518 5519 ret = single_open(file, tracing_trace_options_show, inode->i_private); 5520 if (ret < 0) 5521 trace_array_put(tr); 5522 5523 return ret; 5524 } 5525 5526 static const struct file_operations tracing_iter_fops = { 5527 .open = tracing_trace_options_open, 5528 .read = seq_read, 5529 .llseek = seq_lseek, 5530 .release = tracing_single_release_tr, 5531 .write = tracing_trace_options_write, 5532 }; 5533 5534 static const char readme_msg[] = 5535 "tracing mini-HOWTO:\n\n" 5536 "# echo 0 > tracing_on : quick way to disable tracing\n" 5537 "# echo 1 > tracing_on : quick way to re-enable tracing\n\n" 5538 " Important files:\n" 5539 " trace\t\t\t- The static contents of the buffer\n" 5540 "\t\t\t To clear the buffer write into this file: echo > trace\n" 5541 " trace_pipe\t\t- A consuming read to see the contents of the buffer\n" 5542 " current_tracer\t- function and latency tracers\n" 5543 " available_tracers\t- list of configured tracers for current_tracer\n" 5544 " error_log\t- error log for failed commands (that support it)\n" 5545 " buffer_size_kb\t- view and modify size of per cpu buffer\n" 5546 " buffer_total_size_kb - view total size of all cpu buffers\n\n" 5547 " trace_clock\t\t- change the clock used to order events\n" 5548 " local: Per cpu clock but may not be synced across CPUs\n" 5549 " global: Synced across CPUs but slows tracing down.\n" 5550 " counter: Not a clock, but just an increment\n" 5551 " uptime: Jiffy counter from time of boot\n" 5552 " perf: Same clock that perf events use\n" 5553 #ifdef CONFIG_X86_64 5554 " x86-tsc: TSC cycle counter\n" 5555 #endif 5556 "\n timestamp_mode\t- view the mode used to timestamp events\n" 5557 " delta: Delta difference against a buffer-wide timestamp\n" 5558 " absolute: Absolute (standalone) timestamp\n" 5559 "\n trace_marker\t\t- Writes into this file writes into the kernel buffer\n" 5560 "\n trace_marker_raw\t\t- Writes into this file writes binary data into the kernel buffer\n" 5561 " tracing_cpumask\t- Limit which CPUs to trace\n" 5562 " instances\t\t- Make sub-buffers with: mkdir instances/foo\n" 5563 "\t\t\t Remove sub-buffer with rmdir\n" 5564 " trace_options\t\t- Set format or modify how tracing happens\n" 5565 "\t\t\t Disable an option by prefixing 'no' to the\n" 5566 "\t\t\t option name\n" 5567 " saved_cmdlines_size\t- echo command number in here to store comm-pid list\n" 5568 #ifdef CONFIG_DYNAMIC_FTRACE 5569 "\n available_filter_functions - list of functions that can be filtered on\n" 5570 " set_ftrace_filter\t- echo function name in here to only trace these\n" 5571 "\t\t\t functions\n" 5572 "\t accepts: func_full_name or glob-matching-pattern\n" 5573 "\t modules: Can select a group via module\n" 5574 "\t Format: :mod:<module-name>\n" 5575 "\t example: echo :mod:ext3 > set_ftrace_filter\n" 5576 "\t triggers: a command to perform when function is hit\n" 5577 "\t Format: <function>:<trigger>[:count]\n" 5578 "\t trigger: traceon, traceoff\n" 5579 "\t\t enable_event:<system>:<event>\n" 5580 "\t\t disable_event:<system>:<event>\n" 5581 #ifdef CONFIG_STACKTRACE 5582 "\t\t stacktrace\n" 5583 #endif 5584 #ifdef CONFIG_TRACER_SNAPSHOT 5585 "\t\t snapshot\n" 5586 #endif 5587 "\t\t dump\n" 5588 "\t\t cpudump\n" 5589 "\t example: echo do_fault:traceoff > set_ftrace_filter\n" 5590 "\t echo do_trap:traceoff:3 > set_ftrace_filter\n" 5591 "\t The first one will disable tracing every time do_fault is hit\n" 5592 "\t The second will disable tracing at most 3 times when do_trap is hit\n" 5593 "\t The first time do trap is hit and it disables tracing, the\n" 5594 "\t counter will decrement to 2. If tracing is already disabled,\n" 5595 "\t the counter will not decrement. It only decrements when the\n" 5596 "\t trigger did work\n" 5597 "\t To remove trigger without count:\n" 5598 "\t echo '!<function>:<trigger> > set_ftrace_filter\n" 5599 "\t To remove trigger with a count:\n" 5600 "\t echo '!<function>:<trigger>:0 > set_ftrace_filter\n" 5601 " set_ftrace_notrace\t- echo function name in here to never trace.\n" 5602 "\t accepts: func_full_name, *func_end, func_begin*, *func_middle*\n" 5603 "\t modules: Can select a group via module command :mod:\n" 5604 "\t Does not accept triggers\n" 5605 #endif /* CONFIG_DYNAMIC_FTRACE */ 5606 #ifdef CONFIG_FUNCTION_TRACER 5607 " set_ftrace_pid\t- Write pid(s) to only function trace those pids\n" 5608 "\t\t (function)\n" 5609 " set_ftrace_notrace_pid\t- Write pid(s) to not function trace those pids\n" 5610 "\t\t (function)\n" 5611 #endif 5612 #ifdef CONFIG_FUNCTION_GRAPH_TRACER 5613 " set_graph_function\t- Trace the nested calls of a function (function_graph)\n" 5614 " set_graph_notrace\t- Do not trace the nested calls of a function (function_graph)\n" 5615 " max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n" 5616 #endif 5617 #ifdef CONFIG_TRACER_SNAPSHOT 5618 "\n snapshot\t\t- Like 'trace' but shows the content of the static\n" 5619 "\t\t\t snapshot buffer. Read the contents for more\n" 5620 "\t\t\t information\n" 5621 #endif 5622 #ifdef CONFIG_STACK_TRACER 5623 " stack_trace\t\t- Shows the max stack trace when active\n" 5624 " stack_max_size\t- Shows current max stack size that was traced\n" 5625 "\t\t\t Write into this file to reset the max size (trigger a\n" 5626 "\t\t\t new trace)\n" 5627 #ifdef CONFIG_DYNAMIC_FTRACE 5628 " stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace\n" 5629 "\t\t\t traces\n" 5630 #endif 5631 #endif /* CONFIG_STACK_TRACER */ 5632 #ifdef CONFIG_DYNAMIC_EVENTS 5633 " dynamic_events\t\t- Create/append/remove/show the generic dynamic events\n" 5634 "\t\t\t Write into this file to define/undefine new trace events.\n" 5635 #endif 5636 #ifdef CONFIG_KPROBE_EVENTS 5637 " kprobe_events\t\t- Create/append/remove/show the kernel dynamic events\n" 5638 "\t\t\t Write into this file to define/undefine new trace events.\n" 5639 #endif 5640 #ifdef CONFIG_UPROBE_EVENTS 5641 " uprobe_events\t\t- Create/append/remove/show the userspace dynamic events\n" 5642 "\t\t\t Write into this file to define/undefine new trace events.\n" 5643 #endif 5644 #if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS) 5645 "\t accepts: event-definitions (one definition per line)\n" 5646 "\t Format: p[:[<group>/][<event>]] <place> [<args>]\n" 5647 "\t r[maxactive][:[<group>/][<event>]] <place> [<args>]\n" 5648 #ifdef CONFIG_HIST_TRIGGERS 5649 "\t s:[synthetic/]<event> <field> [<field>]\n" 5650 #endif 5651 "\t e[:[<group>/][<event>]] <attached-group>.<attached-event> [<args>] [if <filter>]\n" 5652 "\t -:[<group>/][<event>]\n" 5653 #ifdef CONFIG_KPROBE_EVENTS 5654 "\t place: [<module>:]<symbol>[+<offset>]|<memaddr>\n" 5655 "place (kretprobe): [<module>:]<symbol>[+<offset>]%return|<memaddr>\n" 5656 #endif 5657 #ifdef CONFIG_UPROBE_EVENTS 5658 " place (uprobe): <path>:<offset>[%return][(ref_ctr_offset)]\n" 5659 #endif 5660 "\t args: <name>=fetcharg[:type]\n" 5661 "\t fetcharg: (%<register>|$<efield>), @<address>, @<symbol>[+|-<offset>],\n" 5662 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API 5663 "\t $stack<index>, $stack, $retval, $comm, $arg<N>,\n" 5664 #else 5665 "\t $stack<index>, $stack, $retval, $comm,\n" 5666 #endif 5667 "\t +|-[u]<offset>(<fetcharg>), \\imm-value, \\\"imm-string\"\n" 5668 "\t type: s8/16/32/64, u8/16/32/64, x8/16/32/64, char, string, symbol,\n" 5669 "\t b<bit-width>@<bit-offset>/<container-size>, ustring,\n" 5670 "\t symstr, <type>\\[<array-size>\\]\n" 5671 #ifdef CONFIG_HIST_TRIGGERS 5672 "\t field: <stype> <name>;\n" 5673 "\t stype: u8/u16/u32/u64, s8/s16/s32/s64, pid_t,\n" 5674 "\t [unsigned] char/int/long\n" 5675 #endif 5676 "\t efield: For event probes ('e' types), the field is on of the fields\n" 5677 "\t of the <attached-group>/<attached-event>.\n" 5678 #endif 5679 " events/\t\t- Directory containing all trace event subsystems:\n" 5680 " enable\t\t- Write 0/1 to enable/disable tracing of all events\n" 5681 " events/<system>/\t- Directory containing all trace events for <system>:\n" 5682 " enable\t\t- Write 0/1 to enable/disable tracing of all <system>\n" 5683 "\t\t\t events\n" 5684 " filter\t\t- If set, only events passing filter are traced\n" 5685 " events/<system>/<event>/\t- Directory containing control files for\n" 5686 "\t\t\t <event>:\n" 5687 " enable\t\t- Write 0/1 to enable/disable tracing of <event>\n" 5688 " filter\t\t- If set, only events passing filter are traced\n" 5689 " trigger\t\t- If set, a command to perform when event is hit\n" 5690 "\t Format: <trigger>[:count][if <filter>]\n" 5691 "\t trigger: traceon, traceoff\n" 5692 "\t enable_event:<system>:<event>\n" 5693 "\t disable_event:<system>:<event>\n" 5694 #ifdef CONFIG_HIST_TRIGGERS 5695 "\t enable_hist:<system>:<event>\n" 5696 "\t disable_hist:<system>:<event>\n" 5697 #endif 5698 #ifdef CONFIG_STACKTRACE 5699 "\t\t stacktrace\n" 5700 #endif 5701 #ifdef CONFIG_TRACER_SNAPSHOT 5702 "\t\t snapshot\n" 5703 #endif 5704 #ifdef CONFIG_HIST_TRIGGERS 5705 "\t\t hist (see below)\n" 5706 #endif 5707 "\t example: echo traceoff > events/block/block_unplug/trigger\n" 5708 "\t echo traceoff:3 > events/block/block_unplug/trigger\n" 5709 "\t echo 'enable_event:kmem:kmalloc:3 if nr_rq > 1' > \\\n" 5710 "\t events/block/block_unplug/trigger\n" 5711 "\t The first disables tracing every time block_unplug is hit.\n" 5712 "\t The second disables tracing the first 3 times block_unplug is hit.\n" 5713 "\t The third enables the kmalloc event the first 3 times block_unplug\n" 5714 "\t is hit and has value of greater than 1 for the 'nr_rq' event field.\n" 5715 "\t Like function triggers, the counter is only decremented if it\n" 5716 "\t enabled or disabled tracing.\n" 5717 "\t To remove a trigger without a count:\n" 5718 "\t echo '!<trigger> > <system>/<event>/trigger\n" 5719 "\t To remove a trigger with a count:\n" 5720 "\t echo '!<trigger>:0 > <system>/<event>/trigger\n" 5721 "\t Filters can be ignored when removing a trigger.\n" 5722 #ifdef CONFIG_HIST_TRIGGERS 5723 " hist trigger\t- If set, event hits are aggregated into a hash table\n" 5724 "\t Format: hist:keys=<field1[,field2,...]>\n" 5725 "\t [:<var1>=<field|var_ref|numeric_literal>[,<var2>=...]]\n" 5726 "\t [:values=<field1[,field2,...]>]\n" 5727 "\t [:sort=<field1[,field2,...]>]\n" 5728 "\t [:size=#entries]\n" 5729 "\t [:pause][:continue][:clear]\n" 5730 "\t [:name=histname1]\n" 5731 "\t [:nohitcount]\n" 5732 "\t [:<handler>.<action>]\n" 5733 "\t [if <filter>]\n\n" 5734 "\t Note, special fields can be used as well:\n" 5735 "\t common_timestamp - to record current timestamp\n" 5736 "\t common_cpu - to record the CPU the event happened on\n" 5737 "\n" 5738 "\t A hist trigger variable can be:\n" 5739 "\t - a reference to a field e.g. x=current_timestamp,\n" 5740 "\t - a reference to another variable e.g. y=$x,\n" 5741 "\t - a numeric literal: e.g. ms_per_sec=1000,\n" 5742 "\t - an arithmetic expression: e.g. time_secs=current_timestamp/1000\n" 5743 "\n" 5744 "\t hist trigger arithmetic expressions support addition(+), subtraction(-),\n" 5745 "\t multiplication(*) and division(/) operators. An operand can be either a\n" 5746 "\t variable reference, field or numeric literal.\n" 5747 "\n" 5748 "\t When a matching event is hit, an entry is added to a hash\n" 5749 "\t table using the key(s) and value(s) named, and the value of a\n" 5750 "\t sum called 'hitcount' is incremented. Keys and values\n" 5751 "\t correspond to fields in the event's format description. Keys\n" 5752 "\t can be any field, or the special string 'stacktrace'.\n" 5753 "\t Compound keys consisting of up to two fields can be specified\n" 5754 "\t by the 'keys' keyword. Values must correspond to numeric\n" 5755 "\t fields. Sort keys consisting of up to two fields can be\n" 5756 "\t specified using the 'sort' keyword. The sort direction can\n" 5757 "\t be modified by appending '.descending' or '.ascending' to a\n" 5758 "\t sort field. The 'size' parameter can be used to specify more\n" 5759 "\t or fewer than the default 2048 entries for the hashtable size.\n" 5760 "\t If a hist trigger is given a name using the 'name' parameter,\n" 5761 "\t its histogram data will be shared with other triggers of the\n" 5762 "\t same name, and trigger hits will update this common data.\n\n" 5763 "\t Reading the 'hist' file for the event will dump the hash\n" 5764 "\t table in its entirety to stdout. If there are multiple hist\n" 5765 "\t triggers attached to an event, there will be a table for each\n" 5766 "\t trigger in the output. The table displayed for a named\n" 5767 "\t trigger will be the same as any other instance having the\n" 5768 "\t same name. The default format used to display a given field\n" 5769 "\t can be modified by appending any of the following modifiers\n" 5770 "\t to the field name, as applicable:\n\n" 5771 "\t .hex display a number as a hex value\n" 5772 "\t .sym display an address as a symbol\n" 5773 "\t .sym-offset display an address as a symbol and offset\n" 5774 "\t .execname display a common_pid as a program name\n" 5775 "\t .syscall display a syscall id as a syscall name\n" 5776 "\t .log2 display log2 value rather than raw number\n" 5777 "\t .buckets=size display values in groups of size rather than raw number\n" 5778 "\t .usecs display a common_timestamp in microseconds\n" 5779 "\t .percent display a number of percentage value\n" 5780 "\t .graph display a bar-graph of a value\n\n" 5781 "\t The 'pause' parameter can be used to pause an existing hist\n" 5782 "\t trigger or to start a hist trigger but not log any events\n" 5783 "\t until told to do so. 'continue' can be used to start or\n" 5784 "\t restart a paused hist trigger.\n\n" 5785 "\t The 'clear' parameter will clear the contents of a running\n" 5786 "\t hist trigger and leave its current paused/active state\n" 5787 "\t unchanged.\n\n" 5788 "\t The 'nohitcount' (or NOHC) parameter will suppress display of\n" 5789 "\t raw hitcount in the histogram.\n\n" 5790 "\t The enable_hist and disable_hist triggers can be used to\n" 5791 "\t have one event conditionally start and stop another event's\n" 5792 "\t already-attached hist trigger. The syntax is analogous to\n" 5793 "\t the enable_event and disable_event triggers.\n\n" 5794 "\t Hist trigger handlers and actions are executed whenever a\n" 5795 "\t a histogram entry is added or updated. They take the form:\n\n" 5796 "\t <handler>.<action>\n\n" 5797 "\t The available handlers are:\n\n" 5798 "\t onmatch(matching.event) - invoke on addition or update\n" 5799 "\t onmax(var) - invoke if var exceeds current max\n" 5800 "\t onchange(var) - invoke action if var changes\n\n" 5801 "\t The available actions are:\n\n" 5802 "\t trace(<synthetic_event>,param list) - generate synthetic event\n" 5803 "\t save(field,...) - save current event fields\n" 5804 #ifdef CONFIG_TRACER_SNAPSHOT 5805 "\t snapshot() - snapshot the trace buffer\n\n" 5806 #endif 5807 #ifdef CONFIG_SYNTH_EVENTS 5808 " events/synthetic_events\t- Create/append/remove/show synthetic events\n" 5809 "\t Write into this file to define/undefine new synthetic events.\n" 5810 "\t example: echo 'myevent u64 lat; char name[]; long[] stack' >> synthetic_events\n" 5811 #endif 5812 #endif 5813 ; 5814 5815 static ssize_t 5816 tracing_readme_read(struct file *filp, char __user *ubuf, 5817 size_t cnt, loff_t *ppos) 5818 { 5819 return simple_read_from_buffer(ubuf, cnt, ppos, 5820 readme_msg, strlen(readme_msg)); 5821 } 5822 5823 static const struct file_operations tracing_readme_fops = { 5824 .open = tracing_open_generic, 5825 .read = tracing_readme_read, 5826 .llseek = generic_file_llseek, 5827 }; 5828 5829 static void *saved_tgids_next(struct seq_file *m, void *v, loff_t *pos) 5830 { 5831 int pid = ++(*pos); 5832 5833 return trace_find_tgid_ptr(pid); 5834 } 5835 5836 static void *saved_tgids_start(struct seq_file *m, loff_t *pos) 5837 { 5838 int pid = *pos; 5839 5840 return trace_find_tgid_ptr(pid); 5841 } 5842 5843 static void saved_tgids_stop(struct seq_file *m, void *v) 5844 { 5845 } 5846 5847 static int saved_tgids_show(struct seq_file *m, void *v) 5848 { 5849 int *entry = (int *)v; 5850 int pid = entry - tgid_map; 5851 int tgid = *entry; 5852 5853 if (tgid == 0) 5854 return SEQ_SKIP; 5855 5856 seq_printf(m, "%d %d\n", pid, tgid); 5857 return 0; 5858 } 5859 5860 static const struct seq_operations tracing_saved_tgids_seq_ops = { 5861 .start = saved_tgids_start, 5862 .stop = saved_tgids_stop, 5863 .next = saved_tgids_next, 5864 .show = saved_tgids_show, 5865 }; 5866 5867 static int tracing_saved_tgids_open(struct inode *inode, struct file *filp) 5868 { 5869 int ret; 5870 5871 ret = tracing_check_open_get_tr(NULL); 5872 if (ret) 5873 return ret; 5874 5875 return seq_open(filp, &tracing_saved_tgids_seq_ops); 5876 } 5877 5878 5879 static const struct file_operations tracing_saved_tgids_fops = { 5880 .open = tracing_saved_tgids_open, 5881 .read = seq_read, 5882 .llseek = seq_lseek, 5883 .release = seq_release, 5884 }; 5885 5886 static void *saved_cmdlines_next(struct seq_file *m, void *v, loff_t *pos) 5887 { 5888 unsigned int *ptr = v; 5889 5890 if (*pos || m->count) 5891 ptr++; 5892 5893 (*pos)++; 5894 5895 for (; ptr < &savedcmd->map_cmdline_to_pid[savedcmd->cmdline_num]; 5896 ptr++) { 5897 if (*ptr == -1 || *ptr == NO_CMDLINE_MAP) 5898 continue; 5899 5900 return ptr; 5901 } 5902 5903 return NULL; 5904 } 5905 5906 static void *saved_cmdlines_start(struct seq_file *m, loff_t *pos) 5907 { 5908 void *v; 5909 loff_t l = 0; 5910 5911 preempt_disable(); 5912 arch_spin_lock(&trace_cmdline_lock); 5913 5914 v = &savedcmd->map_cmdline_to_pid[0]; 5915 while (l <= *pos) { 5916 v = saved_cmdlines_next(m, v, &l); 5917 if (!v) 5918 return NULL; 5919 } 5920 5921 return v; 5922 } 5923 5924 static void saved_cmdlines_stop(struct seq_file *m, void *v) 5925 { 5926 arch_spin_unlock(&trace_cmdline_lock); 5927 preempt_enable(); 5928 } 5929 5930 static int saved_cmdlines_show(struct seq_file *m, void *v) 5931 { 5932 char buf[TASK_COMM_LEN]; 5933 unsigned int *pid = v; 5934 5935 __trace_find_cmdline(*pid, buf); 5936 seq_printf(m, "%d %s\n", *pid, buf); 5937 return 0; 5938 } 5939 5940 static const struct seq_operations tracing_saved_cmdlines_seq_ops = { 5941 .start = saved_cmdlines_start, 5942 .next = saved_cmdlines_next, 5943 .stop = saved_cmdlines_stop, 5944 .show = saved_cmdlines_show, 5945 }; 5946 5947 static int tracing_saved_cmdlines_open(struct inode *inode, struct file *filp) 5948 { 5949 int ret; 5950 5951 ret = tracing_check_open_get_tr(NULL); 5952 if (ret) 5953 return ret; 5954 5955 return seq_open(filp, &tracing_saved_cmdlines_seq_ops); 5956 } 5957 5958 static const struct file_operations tracing_saved_cmdlines_fops = { 5959 .open = tracing_saved_cmdlines_open, 5960 .read = seq_read, 5961 .llseek = seq_lseek, 5962 .release = seq_release, 5963 }; 5964 5965 static ssize_t 5966 tracing_saved_cmdlines_size_read(struct file *filp, char __user *ubuf, 5967 size_t cnt, loff_t *ppos) 5968 { 5969 char buf[64]; 5970 int r; 5971 5972 preempt_disable(); 5973 arch_spin_lock(&trace_cmdline_lock); 5974 r = scnprintf(buf, sizeof(buf), "%u\n", savedcmd->cmdline_num); 5975 arch_spin_unlock(&trace_cmdline_lock); 5976 preempt_enable(); 5977 5978 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 5979 } 5980 5981 static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s) 5982 { 5983 kfree(s->saved_cmdlines); 5984 kfree(s->map_cmdline_to_pid); 5985 kfree(s); 5986 } 5987 5988 static int tracing_resize_saved_cmdlines(unsigned int val) 5989 { 5990 struct saved_cmdlines_buffer *s, *savedcmd_temp; 5991 5992 s = kmalloc(sizeof(*s), GFP_KERNEL); 5993 if (!s) 5994 return -ENOMEM; 5995 5996 if (allocate_cmdlines_buffer(val, s) < 0) { 5997 kfree(s); 5998 return -ENOMEM; 5999 } 6000 6001 preempt_disable(); 6002 arch_spin_lock(&trace_cmdline_lock); 6003 savedcmd_temp = savedcmd; 6004 savedcmd = s; 6005 arch_spin_unlock(&trace_cmdline_lock); 6006 preempt_enable(); 6007 free_saved_cmdlines_buffer(savedcmd_temp); 6008 6009 return 0; 6010 } 6011 6012 static ssize_t 6013 tracing_saved_cmdlines_size_write(struct file *filp, const char __user *ubuf, 6014 size_t cnt, loff_t *ppos) 6015 { 6016 unsigned long val; 6017 int ret; 6018 6019 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 6020 if (ret) 6021 return ret; 6022 6023 /* must have at least 1 entry or less than PID_MAX_DEFAULT */ 6024 if (!val || val > PID_MAX_DEFAULT) 6025 return -EINVAL; 6026 6027 ret = tracing_resize_saved_cmdlines((unsigned int)val); 6028 if (ret < 0) 6029 return ret; 6030 6031 *ppos += cnt; 6032 6033 return cnt; 6034 } 6035 6036 static const struct file_operations tracing_saved_cmdlines_size_fops = { 6037 .open = tracing_open_generic, 6038 .read = tracing_saved_cmdlines_size_read, 6039 .write = tracing_saved_cmdlines_size_write, 6040 }; 6041 6042 #ifdef CONFIG_TRACE_EVAL_MAP_FILE 6043 static union trace_eval_map_item * 6044 update_eval_map(union trace_eval_map_item *ptr) 6045 { 6046 if (!ptr->map.eval_string) { 6047 if (ptr->tail.next) { 6048 ptr = ptr->tail.next; 6049 /* Set ptr to the next real item (skip head) */ 6050 ptr++; 6051 } else 6052 return NULL; 6053 } 6054 return ptr; 6055 } 6056 6057 static void *eval_map_next(struct seq_file *m, void *v, loff_t *pos) 6058 { 6059 union trace_eval_map_item *ptr = v; 6060 6061 /* 6062 * Paranoid! If ptr points to end, we don't want to increment past it. 6063 * This really should never happen. 6064 */ 6065 (*pos)++; 6066 ptr = update_eval_map(ptr); 6067 if (WARN_ON_ONCE(!ptr)) 6068 return NULL; 6069 6070 ptr++; 6071 ptr = update_eval_map(ptr); 6072 6073 return ptr; 6074 } 6075 6076 static void *eval_map_start(struct seq_file *m, loff_t *pos) 6077 { 6078 union trace_eval_map_item *v; 6079 loff_t l = 0; 6080 6081 mutex_lock(&trace_eval_mutex); 6082 6083 v = trace_eval_maps; 6084 if (v) 6085 v++; 6086 6087 while (v && l < *pos) { 6088 v = eval_map_next(m, v, &l); 6089 } 6090 6091 return v; 6092 } 6093 6094 static void eval_map_stop(struct seq_file *m, void *v) 6095 { 6096 mutex_unlock(&trace_eval_mutex); 6097 } 6098 6099 static int eval_map_show(struct seq_file *m, void *v) 6100 { 6101 union trace_eval_map_item *ptr = v; 6102 6103 seq_printf(m, "%s %ld (%s)\n", 6104 ptr->map.eval_string, ptr->map.eval_value, 6105 ptr->map.system); 6106 6107 return 0; 6108 } 6109 6110 static const struct seq_operations tracing_eval_map_seq_ops = { 6111 .start = eval_map_start, 6112 .next = eval_map_next, 6113 .stop = eval_map_stop, 6114 .show = eval_map_show, 6115 }; 6116 6117 static int tracing_eval_map_open(struct inode *inode, struct file *filp) 6118 { 6119 int ret; 6120 6121 ret = tracing_check_open_get_tr(NULL); 6122 if (ret) 6123 return ret; 6124 6125 return seq_open(filp, &tracing_eval_map_seq_ops); 6126 } 6127 6128 static const struct file_operations tracing_eval_map_fops = { 6129 .open = tracing_eval_map_open, 6130 .read = seq_read, 6131 .llseek = seq_lseek, 6132 .release = seq_release, 6133 }; 6134 6135 static inline union trace_eval_map_item * 6136 trace_eval_jmp_to_tail(union trace_eval_map_item *ptr) 6137 { 6138 /* Return tail of array given the head */ 6139 return ptr + ptr->head.length + 1; 6140 } 6141 6142 static void 6143 trace_insert_eval_map_file(struct module *mod, struct trace_eval_map **start, 6144 int len) 6145 { 6146 struct trace_eval_map **stop; 6147 struct trace_eval_map **map; 6148 union trace_eval_map_item *map_array; 6149 union trace_eval_map_item *ptr; 6150 6151 stop = start + len; 6152 6153 /* 6154 * The trace_eval_maps contains the map plus a head and tail item, 6155 * where the head holds the module and length of array, and the 6156 * tail holds a pointer to the next list. 6157 */ 6158 map_array = kmalloc_array(len + 2, sizeof(*map_array), GFP_KERNEL); 6159 if (!map_array) { 6160 pr_warn("Unable to allocate trace eval mapping\n"); 6161 return; 6162 } 6163 6164 mutex_lock(&trace_eval_mutex); 6165 6166 if (!trace_eval_maps) 6167 trace_eval_maps = map_array; 6168 else { 6169 ptr = trace_eval_maps; 6170 for (;;) { 6171 ptr = trace_eval_jmp_to_tail(ptr); 6172 if (!ptr->tail.next) 6173 break; 6174 ptr = ptr->tail.next; 6175 6176 } 6177 ptr->tail.next = map_array; 6178 } 6179 map_array->head.mod = mod; 6180 map_array->head.length = len; 6181 map_array++; 6182 6183 for (map = start; (unsigned long)map < (unsigned long)stop; map++) { 6184 map_array->map = **map; 6185 map_array++; 6186 } 6187 memset(map_array, 0, sizeof(*map_array)); 6188 6189 mutex_unlock(&trace_eval_mutex); 6190 } 6191 6192 static void trace_create_eval_file(struct dentry *d_tracer) 6193 { 6194 trace_create_file("eval_map", TRACE_MODE_READ, d_tracer, 6195 NULL, &tracing_eval_map_fops); 6196 } 6197 6198 #else /* CONFIG_TRACE_EVAL_MAP_FILE */ 6199 static inline void trace_create_eval_file(struct dentry *d_tracer) { } 6200 static inline void trace_insert_eval_map_file(struct module *mod, 6201 struct trace_eval_map **start, int len) { } 6202 #endif /* !CONFIG_TRACE_EVAL_MAP_FILE */ 6203 6204 static void trace_insert_eval_map(struct module *mod, 6205 struct trace_eval_map **start, int len) 6206 { 6207 struct trace_eval_map **map; 6208 6209 if (len <= 0) 6210 return; 6211 6212 map = start; 6213 6214 trace_event_eval_update(map, len); 6215 6216 trace_insert_eval_map_file(mod, start, len); 6217 } 6218 6219 static ssize_t 6220 tracing_set_trace_read(struct file *filp, char __user *ubuf, 6221 size_t cnt, loff_t *ppos) 6222 { 6223 struct trace_array *tr = filp->private_data; 6224 char buf[MAX_TRACER_SIZE+2]; 6225 int r; 6226 6227 mutex_lock(&trace_types_lock); 6228 r = sprintf(buf, "%s\n", tr->current_trace->name); 6229 mutex_unlock(&trace_types_lock); 6230 6231 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 6232 } 6233 6234 int tracer_init(struct tracer *t, struct trace_array *tr) 6235 { 6236 tracing_reset_online_cpus(&tr->array_buffer); 6237 return t->init(tr); 6238 } 6239 6240 static void set_buffer_entries(struct array_buffer *buf, unsigned long val) 6241 { 6242 int cpu; 6243 6244 for_each_tracing_cpu(cpu) 6245 per_cpu_ptr(buf->data, cpu)->entries = val; 6246 } 6247 6248 #ifdef CONFIG_TRACER_MAX_TRACE 6249 /* resize @tr's buffer to the size of @size_tr's entries */ 6250 static int resize_buffer_duplicate_size(struct array_buffer *trace_buf, 6251 struct array_buffer *size_buf, int cpu_id) 6252 { 6253 int cpu, ret = 0; 6254 6255 if (cpu_id == RING_BUFFER_ALL_CPUS) { 6256 for_each_tracing_cpu(cpu) { 6257 ret = ring_buffer_resize(trace_buf->buffer, 6258 per_cpu_ptr(size_buf->data, cpu)->entries, cpu); 6259 if (ret < 0) 6260 break; 6261 per_cpu_ptr(trace_buf->data, cpu)->entries = 6262 per_cpu_ptr(size_buf->data, cpu)->entries; 6263 } 6264 } else { 6265 ret = ring_buffer_resize(trace_buf->buffer, 6266 per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id); 6267 if (ret == 0) 6268 per_cpu_ptr(trace_buf->data, cpu_id)->entries = 6269 per_cpu_ptr(size_buf->data, cpu_id)->entries; 6270 } 6271 6272 return ret; 6273 } 6274 #endif /* CONFIG_TRACER_MAX_TRACE */ 6275 6276 static int __tracing_resize_ring_buffer(struct trace_array *tr, 6277 unsigned long size, int cpu) 6278 { 6279 int ret; 6280 6281 /* 6282 * If kernel or user changes the size of the ring buffer 6283 * we use the size that was given, and we can forget about 6284 * expanding it later. 6285 */ 6286 ring_buffer_expanded = true; 6287 6288 /* May be called before buffers are initialized */ 6289 if (!tr->array_buffer.buffer) 6290 return 0; 6291 6292 ret = ring_buffer_resize(tr->array_buffer.buffer, size, cpu); 6293 if (ret < 0) 6294 return ret; 6295 6296 #ifdef CONFIG_TRACER_MAX_TRACE 6297 if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) || 6298 !tr->current_trace->use_max_tr) 6299 goto out; 6300 6301 ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu); 6302 if (ret < 0) { 6303 int r = resize_buffer_duplicate_size(&tr->array_buffer, 6304 &tr->array_buffer, cpu); 6305 if (r < 0) { 6306 /* 6307 * AARGH! We are left with different 6308 * size max buffer!!!! 6309 * The max buffer is our "snapshot" buffer. 6310 * When a tracer needs a snapshot (one of the 6311 * latency tracers), it swaps the max buffer 6312 * with the saved snap shot. We succeeded to 6313 * update the size of the main buffer, but failed to 6314 * update the size of the max buffer. But when we tried 6315 * to reset the main buffer to the original size, we 6316 * failed there too. This is very unlikely to 6317 * happen, but if it does, warn and kill all 6318 * tracing. 6319 */ 6320 WARN_ON(1); 6321 tracing_disabled = 1; 6322 } 6323 return ret; 6324 } 6325 6326 if (cpu == RING_BUFFER_ALL_CPUS) 6327 set_buffer_entries(&tr->max_buffer, size); 6328 else 6329 per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size; 6330 6331 out: 6332 #endif /* CONFIG_TRACER_MAX_TRACE */ 6333 6334 if (cpu == RING_BUFFER_ALL_CPUS) 6335 set_buffer_entries(&tr->array_buffer, size); 6336 else 6337 per_cpu_ptr(tr->array_buffer.data, cpu)->entries = size; 6338 6339 return ret; 6340 } 6341 6342 ssize_t tracing_resize_ring_buffer(struct trace_array *tr, 6343 unsigned long size, int cpu_id) 6344 { 6345 int ret; 6346 6347 mutex_lock(&trace_types_lock); 6348 6349 if (cpu_id != RING_BUFFER_ALL_CPUS) { 6350 /* make sure, this cpu is enabled in the mask */ 6351 if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) { 6352 ret = -EINVAL; 6353 goto out; 6354 } 6355 } 6356 6357 ret = __tracing_resize_ring_buffer(tr, size, cpu_id); 6358 if (ret < 0) 6359 ret = -ENOMEM; 6360 6361 out: 6362 mutex_unlock(&trace_types_lock); 6363 6364 return ret; 6365 } 6366 6367 6368 /** 6369 * tracing_update_buffers - used by tracing facility to expand ring buffers 6370 * 6371 * To save on memory when the tracing is never used on a system with it 6372 * configured in. The ring buffers are set to a minimum size. But once 6373 * a user starts to use the tracing facility, then they need to grow 6374 * to their default size. 6375 * 6376 * This function is to be called when a tracer is about to be used. 6377 */ 6378 int tracing_update_buffers(void) 6379 { 6380 int ret = 0; 6381 6382 mutex_lock(&trace_types_lock); 6383 if (!ring_buffer_expanded) 6384 ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size, 6385 RING_BUFFER_ALL_CPUS); 6386 mutex_unlock(&trace_types_lock); 6387 6388 return ret; 6389 } 6390 6391 struct trace_option_dentry; 6392 6393 static void 6394 create_trace_option_files(struct trace_array *tr, struct tracer *tracer); 6395 6396 /* 6397 * Used to clear out the tracer before deletion of an instance. 6398 * Must have trace_types_lock held. 6399 */ 6400 static void tracing_set_nop(struct trace_array *tr) 6401 { 6402 if (tr->current_trace == &nop_trace) 6403 return; 6404 6405 tr->current_trace->enabled--; 6406 6407 if (tr->current_trace->reset) 6408 tr->current_trace->reset(tr); 6409 6410 tr->current_trace = &nop_trace; 6411 } 6412 6413 static bool tracer_options_updated; 6414 6415 static void add_tracer_options(struct trace_array *tr, struct tracer *t) 6416 { 6417 /* Only enable if the directory has been created already. */ 6418 if (!tr->dir) 6419 return; 6420 6421 /* Only create trace option files after update_tracer_options finish */ 6422 if (!tracer_options_updated) 6423 return; 6424 6425 create_trace_option_files(tr, t); 6426 } 6427 6428 int tracing_set_tracer(struct trace_array *tr, const char *buf) 6429 { 6430 struct tracer *t; 6431 #ifdef CONFIG_TRACER_MAX_TRACE 6432 bool had_max_tr; 6433 #endif 6434 int ret = 0; 6435 6436 mutex_lock(&trace_types_lock); 6437 6438 if (!ring_buffer_expanded) { 6439 ret = __tracing_resize_ring_buffer(tr, trace_buf_size, 6440 RING_BUFFER_ALL_CPUS); 6441 if (ret < 0) 6442 goto out; 6443 ret = 0; 6444 } 6445 6446 for (t = trace_types; t; t = t->next) { 6447 if (strcmp(t->name, buf) == 0) 6448 break; 6449 } 6450 if (!t) { 6451 ret = -EINVAL; 6452 goto out; 6453 } 6454 if (t == tr->current_trace) 6455 goto out; 6456 6457 #ifdef CONFIG_TRACER_SNAPSHOT 6458 if (t->use_max_tr) { 6459 local_irq_disable(); 6460 arch_spin_lock(&tr->max_lock); 6461 if (tr->cond_snapshot) 6462 ret = -EBUSY; 6463 arch_spin_unlock(&tr->max_lock); 6464 local_irq_enable(); 6465 if (ret) 6466 goto out; 6467 } 6468 #endif 6469 /* Some tracers won't work on kernel command line */ 6470 if (system_state < SYSTEM_RUNNING && t->noboot) { 6471 pr_warn("Tracer '%s' is not allowed on command line, ignored\n", 6472 t->name); 6473 goto out; 6474 } 6475 6476 /* Some tracers are only allowed for the top level buffer */ 6477 if (!trace_ok_for_array(t, tr)) { 6478 ret = -EINVAL; 6479 goto out; 6480 } 6481 6482 /* If trace pipe files are being read, we can't change the tracer */ 6483 if (tr->trace_ref) { 6484 ret = -EBUSY; 6485 goto out; 6486 } 6487 6488 trace_branch_disable(); 6489 6490 tr->current_trace->enabled--; 6491 6492 if (tr->current_trace->reset) 6493 tr->current_trace->reset(tr); 6494 6495 #ifdef CONFIG_TRACER_MAX_TRACE 6496 had_max_tr = tr->current_trace->use_max_tr; 6497 6498 /* Current trace needs to be nop_trace before synchronize_rcu */ 6499 tr->current_trace = &nop_trace; 6500 6501 if (had_max_tr && !t->use_max_tr) { 6502 /* 6503 * We need to make sure that the update_max_tr sees that 6504 * current_trace changed to nop_trace to keep it from 6505 * swapping the buffers after we resize it. 6506 * The update_max_tr is called from interrupts disabled 6507 * so a synchronized_sched() is sufficient. 6508 */ 6509 synchronize_rcu(); 6510 free_snapshot(tr); 6511 } 6512 6513 if (t->use_max_tr && !tr->allocated_snapshot) { 6514 ret = tracing_alloc_snapshot_instance(tr); 6515 if (ret < 0) 6516 goto out; 6517 } 6518 #else 6519 tr->current_trace = &nop_trace; 6520 #endif 6521 6522 if (t->init) { 6523 ret = tracer_init(t, tr); 6524 if (ret) 6525 goto out; 6526 } 6527 6528 tr->current_trace = t; 6529 tr->current_trace->enabled++; 6530 trace_branch_enable(tr); 6531 out: 6532 mutex_unlock(&trace_types_lock); 6533 6534 return ret; 6535 } 6536 6537 static ssize_t 6538 tracing_set_trace_write(struct file *filp, const char __user *ubuf, 6539 size_t cnt, loff_t *ppos) 6540 { 6541 struct trace_array *tr = filp->private_data; 6542 char buf[MAX_TRACER_SIZE+1]; 6543 char *name; 6544 size_t ret; 6545 int err; 6546 6547 ret = cnt; 6548 6549 if (cnt > MAX_TRACER_SIZE) 6550 cnt = MAX_TRACER_SIZE; 6551 6552 if (copy_from_user(buf, ubuf, cnt)) 6553 return -EFAULT; 6554 6555 buf[cnt] = 0; 6556 6557 name = strim(buf); 6558 6559 err = tracing_set_tracer(tr, name); 6560 if (err) 6561 return err; 6562 6563 *ppos += ret; 6564 6565 return ret; 6566 } 6567 6568 static ssize_t 6569 tracing_nsecs_read(unsigned long *ptr, char __user *ubuf, 6570 size_t cnt, loff_t *ppos) 6571 { 6572 char buf[64]; 6573 int r; 6574 6575 r = snprintf(buf, sizeof(buf), "%ld\n", 6576 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr)); 6577 if (r > sizeof(buf)) 6578 r = sizeof(buf); 6579 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 6580 } 6581 6582 static ssize_t 6583 tracing_nsecs_write(unsigned long *ptr, const char __user *ubuf, 6584 size_t cnt, loff_t *ppos) 6585 { 6586 unsigned long val; 6587 int ret; 6588 6589 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 6590 if (ret) 6591 return ret; 6592 6593 *ptr = val * 1000; 6594 6595 return cnt; 6596 } 6597 6598 static ssize_t 6599 tracing_thresh_read(struct file *filp, char __user *ubuf, 6600 size_t cnt, loff_t *ppos) 6601 { 6602 return tracing_nsecs_read(&tracing_thresh, ubuf, cnt, ppos); 6603 } 6604 6605 static ssize_t 6606 tracing_thresh_write(struct file *filp, const char __user *ubuf, 6607 size_t cnt, loff_t *ppos) 6608 { 6609 struct trace_array *tr = filp->private_data; 6610 int ret; 6611 6612 mutex_lock(&trace_types_lock); 6613 ret = tracing_nsecs_write(&tracing_thresh, ubuf, cnt, ppos); 6614 if (ret < 0) 6615 goto out; 6616 6617 if (tr->current_trace->update_thresh) { 6618 ret = tr->current_trace->update_thresh(tr); 6619 if (ret < 0) 6620 goto out; 6621 } 6622 6623 ret = cnt; 6624 out: 6625 mutex_unlock(&trace_types_lock); 6626 6627 return ret; 6628 } 6629 6630 #ifdef CONFIG_TRACER_MAX_TRACE 6631 6632 static ssize_t 6633 tracing_max_lat_read(struct file *filp, char __user *ubuf, 6634 size_t cnt, loff_t *ppos) 6635 { 6636 return tracing_nsecs_read(filp->private_data, ubuf, cnt, ppos); 6637 } 6638 6639 static ssize_t 6640 tracing_max_lat_write(struct file *filp, const char __user *ubuf, 6641 size_t cnt, loff_t *ppos) 6642 { 6643 return tracing_nsecs_write(filp->private_data, ubuf, cnt, ppos); 6644 } 6645 6646 #endif 6647 6648 static int tracing_open_pipe(struct inode *inode, struct file *filp) 6649 { 6650 struct trace_array *tr = inode->i_private; 6651 struct trace_iterator *iter; 6652 int ret; 6653 6654 ret = tracing_check_open_get_tr(tr); 6655 if (ret) 6656 return ret; 6657 6658 mutex_lock(&trace_types_lock); 6659 6660 /* create a buffer to store the information to pass to userspace */ 6661 iter = kzalloc(sizeof(*iter), GFP_KERNEL); 6662 if (!iter) { 6663 ret = -ENOMEM; 6664 __trace_array_put(tr); 6665 goto out; 6666 } 6667 6668 trace_seq_init(&iter->seq); 6669 iter->trace = tr->current_trace; 6670 6671 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) { 6672 ret = -ENOMEM; 6673 goto fail; 6674 } 6675 6676 /* trace pipe does not show start of buffer */ 6677 cpumask_setall(iter->started); 6678 6679 if (tr->trace_flags & TRACE_ITER_LATENCY_FMT) 6680 iter->iter_flags |= TRACE_FILE_LAT_FMT; 6681 6682 /* Output in nanoseconds only if we are using a clock in nanoseconds. */ 6683 if (trace_clocks[tr->clock_id].in_ns) 6684 iter->iter_flags |= TRACE_FILE_TIME_IN_NS; 6685 6686 iter->tr = tr; 6687 iter->array_buffer = &tr->array_buffer; 6688 iter->cpu_file = tracing_get_cpu(inode); 6689 mutex_init(&iter->mutex); 6690 filp->private_data = iter; 6691 6692 if (iter->trace->pipe_open) 6693 iter->trace->pipe_open(iter); 6694 6695 nonseekable_open(inode, filp); 6696 6697 tr->trace_ref++; 6698 out: 6699 mutex_unlock(&trace_types_lock); 6700 return ret; 6701 6702 fail: 6703 kfree(iter); 6704 __trace_array_put(tr); 6705 mutex_unlock(&trace_types_lock); 6706 return ret; 6707 } 6708 6709 static int tracing_release_pipe(struct inode *inode, struct file *file) 6710 { 6711 struct trace_iterator *iter = file->private_data; 6712 struct trace_array *tr = inode->i_private; 6713 6714 mutex_lock(&trace_types_lock); 6715 6716 tr->trace_ref--; 6717 6718 if (iter->trace->pipe_close) 6719 iter->trace->pipe_close(iter); 6720 6721 mutex_unlock(&trace_types_lock); 6722 6723 free_cpumask_var(iter->started); 6724 kfree(iter->fmt); 6725 mutex_destroy(&iter->mutex); 6726 kfree(iter); 6727 6728 trace_array_put(tr); 6729 6730 return 0; 6731 } 6732 6733 static __poll_t 6734 trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table) 6735 { 6736 struct trace_array *tr = iter->tr; 6737 6738 /* Iterators are static, they should be filled or empty */ 6739 if (trace_buffer_iter(iter, iter->cpu_file)) 6740 return EPOLLIN | EPOLLRDNORM; 6741 6742 if (tr->trace_flags & TRACE_ITER_BLOCK) 6743 /* 6744 * Always select as readable when in blocking mode 6745 */ 6746 return EPOLLIN | EPOLLRDNORM; 6747 else 6748 return ring_buffer_poll_wait(iter->array_buffer->buffer, iter->cpu_file, 6749 filp, poll_table, iter->tr->buffer_percent); 6750 } 6751 6752 static __poll_t 6753 tracing_poll_pipe(struct file *filp, poll_table *poll_table) 6754 { 6755 struct trace_iterator *iter = filp->private_data; 6756 6757 return trace_poll(iter, filp, poll_table); 6758 } 6759 6760 /* Must be called with iter->mutex held. */ 6761 static int tracing_wait_pipe(struct file *filp) 6762 { 6763 struct trace_iterator *iter = filp->private_data; 6764 int ret; 6765 6766 while (trace_empty(iter)) { 6767 6768 if ((filp->f_flags & O_NONBLOCK)) { 6769 return -EAGAIN; 6770 } 6771 6772 /* 6773 * We block until we read something and tracing is disabled. 6774 * We still block if tracing is disabled, but we have never 6775 * read anything. This allows a user to cat this file, and 6776 * then enable tracing. But after we have read something, 6777 * we give an EOF when tracing is again disabled. 6778 * 6779 * iter->pos will be 0 if we haven't read anything. 6780 */ 6781 if (!tracer_tracing_is_on(iter->tr) && iter->pos) 6782 break; 6783 6784 mutex_unlock(&iter->mutex); 6785 6786 ret = wait_on_pipe(iter, 0); 6787 6788 mutex_lock(&iter->mutex); 6789 6790 if (ret) 6791 return ret; 6792 } 6793 6794 return 1; 6795 } 6796 6797 /* 6798 * Consumer reader. 6799 */ 6800 static ssize_t 6801 tracing_read_pipe(struct file *filp, char __user *ubuf, 6802 size_t cnt, loff_t *ppos) 6803 { 6804 struct trace_iterator *iter = filp->private_data; 6805 ssize_t sret; 6806 6807 /* 6808 * Avoid more than one consumer on a single file descriptor 6809 * This is just a matter of traces coherency, the ring buffer itself 6810 * is protected. 6811 */ 6812 mutex_lock(&iter->mutex); 6813 6814 /* return any leftover data */ 6815 sret = trace_seq_to_user(&iter->seq, ubuf, cnt); 6816 if (sret != -EBUSY) 6817 goto out; 6818 6819 trace_seq_init(&iter->seq); 6820 6821 if (iter->trace->read) { 6822 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos); 6823 if (sret) 6824 goto out; 6825 } 6826 6827 waitagain: 6828 sret = tracing_wait_pipe(filp); 6829 if (sret <= 0) 6830 goto out; 6831 6832 /* stop when tracing is finished */ 6833 if (trace_empty(iter)) { 6834 sret = 0; 6835 goto out; 6836 } 6837 6838 if (cnt >= PAGE_SIZE) 6839 cnt = PAGE_SIZE - 1; 6840 6841 /* reset all but tr, trace, and overruns */ 6842 trace_iterator_reset(iter); 6843 cpumask_clear(iter->started); 6844 trace_seq_init(&iter->seq); 6845 6846 trace_event_read_lock(); 6847 trace_access_lock(iter->cpu_file); 6848 while (trace_find_next_entry_inc(iter) != NULL) { 6849 enum print_line_t ret; 6850 int save_len = iter->seq.seq.len; 6851 6852 ret = print_trace_line(iter); 6853 if (ret == TRACE_TYPE_PARTIAL_LINE) { 6854 /* 6855 * If one print_trace_line() fills entire trace_seq in one shot, 6856 * trace_seq_to_user() will returns -EBUSY because save_len == 0, 6857 * In this case, we need to consume it, otherwise, loop will peek 6858 * this event next time, resulting in an infinite loop. 6859 */ 6860 if (save_len == 0) { 6861 iter->seq.full = 0; 6862 trace_seq_puts(&iter->seq, "[LINE TOO BIG]\n"); 6863 trace_consume(iter); 6864 break; 6865 } 6866 6867 /* In other cases, don't print partial lines */ 6868 iter->seq.seq.len = save_len; 6869 break; 6870 } 6871 if (ret != TRACE_TYPE_NO_CONSUME) 6872 trace_consume(iter); 6873 6874 if (trace_seq_used(&iter->seq) >= cnt) 6875 break; 6876 6877 /* 6878 * Setting the full flag means we reached the trace_seq buffer 6879 * size and we should leave by partial output condition above. 6880 * One of the trace_seq_* functions is not used properly. 6881 */ 6882 WARN_ONCE(iter->seq.full, "full flag set for trace type %d", 6883 iter->ent->type); 6884 } 6885 trace_access_unlock(iter->cpu_file); 6886 trace_event_read_unlock(); 6887 6888 /* Now copy what we have to the user */ 6889 sret = trace_seq_to_user(&iter->seq, ubuf, cnt); 6890 if (iter->seq.seq.readpos >= trace_seq_used(&iter->seq)) 6891 trace_seq_init(&iter->seq); 6892 6893 /* 6894 * If there was nothing to send to user, in spite of consuming trace 6895 * entries, go back to wait for more entries. 6896 */ 6897 if (sret == -EBUSY) 6898 goto waitagain; 6899 6900 out: 6901 mutex_unlock(&iter->mutex); 6902 6903 return sret; 6904 } 6905 6906 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd, 6907 unsigned int idx) 6908 { 6909 __free_page(spd->pages[idx]); 6910 } 6911 6912 static size_t 6913 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter) 6914 { 6915 size_t count; 6916 int save_len; 6917 int ret; 6918 6919 /* Seq buffer is page-sized, exactly what we need. */ 6920 for (;;) { 6921 save_len = iter->seq.seq.len; 6922 ret = print_trace_line(iter); 6923 6924 if (trace_seq_has_overflowed(&iter->seq)) { 6925 iter->seq.seq.len = save_len; 6926 break; 6927 } 6928 6929 /* 6930 * This should not be hit, because it should only 6931 * be set if the iter->seq overflowed. But check it 6932 * anyway to be safe. 6933 */ 6934 if (ret == TRACE_TYPE_PARTIAL_LINE) { 6935 iter->seq.seq.len = save_len; 6936 break; 6937 } 6938 6939 count = trace_seq_used(&iter->seq) - save_len; 6940 if (rem < count) { 6941 rem = 0; 6942 iter->seq.seq.len = save_len; 6943 break; 6944 } 6945 6946 if (ret != TRACE_TYPE_NO_CONSUME) 6947 trace_consume(iter); 6948 rem -= count; 6949 if (!trace_find_next_entry_inc(iter)) { 6950 rem = 0; 6951 iter->ent = NULL; 6952 break; 6953 } 6954 } 6955 6956 return rem; 6957 } 6958 6959 static ssize_t tracing_splice_read_pipe(struct file *filp, 6960 loff_t *ppos, 6961 struct pipe_inode_info *pipe, 6962 size_t len, 6963 unsigned int flags) 6964 { 6965 struct page *pages_def[PIPE_DEF_BUFFERS]; 6966 struct partial_page partial_def[PIPE_DEF_BUFFERS]; 6967 struct trace_iterator *iter = filp->private_data; 6968 struct splice_pipe_desc spd = { 6969 .pages = pages_def, 6970 .partial = partial_def, 6971 .nr_pages = 0, /* This gets updated below. */ 6972 .nr_pages_max = PIPE_DEF_BUFFERS, 6973 .ops = &default_pipe_buf_ops, 6974 .spd_release = tracing_spd_release_pipe, 6975 }; 6976 ssize_t ret; 6977 size_t rem; 6978 unsigned int i; 6979 6980 if (splice_grow_spd(pipe, &spd)) 6981 return -ENOMEM; 6982 6983 mutex_lock(&iter->mutex); 6984 6985 if (iter->trace->splice_read) { 6986 ret = iter->trace->splice_read(iter, filp, 6987 ppos, pipe, len, flags); 6988 if (ret) 6989 goto out_err; 6990 } 6991 6992 ret = tracing_wait_pipe(filp); 6993 if (ret <= 0) 6994 goto out_err; 6995 6996 if (!iter->ent && !trace_find_next_entry_inc(iter)) { 6997 ret = -EFAULT; 6998 goto out_err; 6999 } 7000 7001 trace_event_read_lock(); 7002 trace_access_lock(iter->cpu_file); 7003 7004 /* Fill as many pages as possible. */ 7005 for (i = 0, rem = len; i < spd.nr_pages_max && rem; i++) { 7006 spd.pages[i] = alloc_page(GFP_KERNEL); 7007 if (!spd.pages[i]) 7008 break; 7009 7010 rem = tracing_fill_pipe_page(rem, iter); 7011 7012 /* Copy the data into the page, so we can start over. */ 7013 ret = trace_seq_to_buffer(&iter->seq, 7014 page_address(spd.pages[i]), 7015 trace_seq_used(&iter->seq)); 7016 if (ret < 0) { 7017 __free_page(spd.pages[i]); 7018 break; 7019 } 7020 spd.partial[i].offset = 0; 7021 spd.partial[i].len = trace_seq_used(&iter->seq); 7022 7023 trace_seq_init(&iter->seq); 7024 } 7025 7026 trace_access_unlock(iter->cpu_file); 7027 trace_event_read_unlock(); 7028 mutex_unlock(&iter->mutex); 7029 7030 spd.nr_pages = i; 7031 7032 if (i) 7033 ret = splice_to_pipe(pipe, &spd); 7034 else 7035 ret = 0; 7036 out: 7037 splice_shrink_spd(&spd); 7038 return ret; 7039 7040 out_err: 7041 mutex_unlock(&iter->mutex); 7042 goto out; 7043 } 7044 7045 static ssize_t 7046 tracing_entries_read(struct file *filp, char __user *ubuf, 7047 size_t cnt, loff_t *ppos) 7048 { 7049 struct inode *inode = file_inode(filp); 7050 struct trace_array *tr = inode->i_private; 7051 int cpu = tracing_get_cpu(inode); 7052 char buf[64]; 7053 int r = 0; 7054 ssize_t ret; 7055 7056 mutex_lock(&trace_types_lock); 7057 7058 if (cpu == RING_BUFFER_ALL_CPUS) { 7059 int cpu, buf_size_same; 7060 unsigned long size; 7061 7062 size = 0; 7063 buf_size_same = 1; 7064 /* check if all cpu sizes are same */ 7065 for_each_tracing_cpu(cpu) { 7066 /* fill in the size from first enabled cpu */ 7067 if (size == 0) 7068 size = per_cpu_ptr(tr->array_buffer.data, cpu)->entries; 7069 if (size != per_cpu_ptr(tr->array_buffer.data, cpu)->entries) { 7070 buf_size_same = 0; 7071 break; 7072 } 7073 } 7074 7075 if (buf_size_same) { 7076 if (!ring_buffer_expanded) 7077 r = sprintf(buf, "%lu (expanded: %lu)\n", 7078 size >> 10, 7079 trace_buf_size >> 10); 7080 else 7081 r = sprintf(buf, "%lu\n", size >> 10); 7082 } else 7083 r = sprintf(buf, "X\n"); 7084 } else 7085 r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->array_buffer.data, cpu)->entries >> 10); 7086 7087 mutex_unlock(&trace_types_lock); 7088 7089 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 7090 return ret; 7091 } 7092 7093 static ssize_t 7094 tracing_entries_write(struct file *filp, const char __user *ubuf, 7095 size_t cnt, loff_t *ppos) 7096 { 7097 struct inode *inode = file_inode(filp); 7098 struct trace_array *tr = inode->i_private; 7099 unsigned long val; 7100 int ret; 7101 7102 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 7103 if (ret) 7104 return ret; 7105 7106 /* must have at least 1 entry */ 7107 if (!val) 7108 return -EINVAL; 7109 7110 /* value is in KB */ 7111 val <<= 10; 7112 ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode)); 7113 if (ret < 0) 7114 return ret; 7115 7116 *ppos += cnt; 7117 7118 return cnt; 7119 } 7120 7121 static ssize_t 7122 tracing_total_entries_read(struct file *filp, char __user *ubuf, 7123 size_t cnt, loff_t *ppos) 7124 { 7125 struct trace_array *tr = filp->private_data; 7126 char buf[64]; 7127 int r, cpu; 7128 unsigned long size = 0, expanded_size = 0; 7129 7130 mutex_lock(&trace_types_lock); 7131 for_each_tracing_cpu(cpu) { 7132 size += per_cpu_ptr(tr->array_buffer.data, cpu)->entries >> 10; 7133 if (!ring_buffer_expanded) 7134 expanded_size += trace_buf_size >> 10; 7135 } 7136 if (ring_buffer_expanded) 7137 r = sprintf(buf, "%lu\n", size); 7138 else 7139 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size); 7140 mutex_unlock(&trace_types_lock); 7141 7142 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 7143 } 7144 7145 static ssize_t 7146 tracing_free_buffer_write(struct file *filp, const char __user *ubuf, 7147 size_t cnt, loff_t *ppos) 7148 { 7149 /* 7150 * There is no need to read what the user has written, this function 7151 * is just to make sure that there is no error when "echo" is used 7152 */ 7153 7154 *ppos += cnt; 7155 7156 return cnt; 7157 } 7158 7159 static int 7160 tracing_free_buffer_release(struct inode *inode, struct file *filp) 7161 { 7162 struct trace_array *tr = inode->i_private; 7163 7164 /* disable tracing ? */ 7165 if (tr->trace_flags & TRACE_ITER_STOP_ON_FREE) 7166 tracer_tracing_off(tr); 7167 /* resize the ring buffer to 0 */ 7168 tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS); 7169 7170 trace_array_put(tr); 7171 7172 return 0; 7173 } 7174 7175 static ssize_t 7176 tracing_mark_write(struct file *filp, const char __user *ubuf, 7177 size_t cnt, loff_t *fpos) 7178 { 7179 struct trace_array *tr = filp->private_data; 7180 struct ring_buffer_event *event; 7181 enum event_trigger_type tt = ETT_NONE; 7182 struct trace_buffer *buffer; 7183 struct print_entry *entry; 7184 ssize_t written; 7185 int size; 7186 int len; 7187 7188 /* Used in tracing_mark_raw_write() as well */ 7189 #define FAULTED_STR "<faulted>" 7190 #define FAULTED_SIZE (sizeof(FAULTED_STR) - 1) /* '\0' is already accounted for */ 7191 7192 if (tracing_disabled) 7193 return -EINVAL; 7194 7195 if (!(tr->trace_flags & TRACE_ITER_MARKERS)) 7196 return -EINVAL; 7197 7198 if (cnt > TRACE_BUF_SIZE) 7199 cnt = TRACE_BUF_SIZE; 7200 7201 BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE); 7202 7203 size = sizeof(*entry) + cnt + 2; /* add '\0' and possible '\n' */ 7204 7205 /* If less than "<faulted>", then make sure we can still add that */ 7206 if (cnt < FAULTED_SIZE) 7207 size += FAULTED_SIZE - cnt; 7208 7209 buffer = tr->array_buffer.buffer; 7210 event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, size, 7211 tracing_gen_ctx()); 7212 if (unlikely(!event)) 7213 /* Ring buffer disabled, return as if not open for write */ 7214 return -EBADF; 7215 7216 entry = ring_buffer_event_data(event); 7217 entry->ip = _THIS_IP_; 7218 7219 len = __copy_from_user_inatomic(&entry->buf, ubuf, cnt); 7220 if (len) { 7221 memcpy(&entry->buf, FAULTED_STR, FAULTED_SIZE); 7222 cnt = FAULTED_SIZE; 7223 written = -EFAULT; 7224 } else 7225 written = cnt; 7226 7227 if (tr->trace_marker_file && !list_empty(&tr->trace_marker_file->triggers)) { 7228 /* do not add \n before testing triggers, but add \0 */ 7229 entry->buf[cnt] = '\0'; 7230 tt = event_triggers_call(tr->trace_marker_file, buffer, entry, event); 7231 } 7232 7233 if (entry->buf[cnt - 1] != '\n') { 7234 entry->buf[cnt] = '\n'; 7235 entry->buf[cnt + 1] = '\0'; 7236 } else 7237 entry->buf[cnt] = '\0'; 7238 7239 if (static_branch_unlikely(&trace_marker_exports_enabled)) 7240 ftrace_exports(event, TRACE_EXPORT_MARKER); 7241 __buffer_unlock_commit(buffer, event); 7242 7243 if (tt) 7244 event_triggers_post_call(tr->trace_marker_file, tt); 7245 7246 return written; 7247 } 7248 7249 /* Limit it for now to 3K (including tag) */ 7250 #define RAW_DATA_MAX_SIZE (1024*3) 7251 7252 static ssize_t 7253 tracing_mark_raw_write(struct file *filp, const char __user *ubuf, 7254 size_t cnt, loff_t *fpos) 7255 { 7256 struct trace_array *tr = filp->private_data; 7257 struct ring_buffer_event *event; 7258 struct trace_buffer *buffer; 7259 struct raw_data_entry *entry; 7260 ssize_t written; 7261 int size; 7262 int len; 7263 7264 #define FAULT_SIZE_ID (FAULTED_SIZE + sizeof(int)) 7265 7266 if (tracing_disabled) 7267 return -EINVAL; 7268 7269 if (!(tr->trace_flags & TRACE_ITER_MARKERS)) 7270 return -EINVAL; 7271 7272 /* The marker must at least have a tag id */ 7273 if (cnt < sizeof(unsigned int) || cnt > RAW_DATA_MAX_SIZE) 7274 return -EINVAL; 7275 7276 if (cnt > TRACE_BUF_SIZE) 7277 cnt = TRACE_BUF_SIZE; 7278 7279 BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE); 7280 7281 size = sizeof(*entry) + cnt; 7282 if (cnt < FAULT_SIZE_ID) 7283 size += FAULT_SIZE_ID - cnt; 7284 7285 buffer = tr->array_buffer.buffer; 7286 event = __trace_buffer_lock_reserve(buffer, TRACE_RAW_DATA, size, 7287 tracing_gen_ctx()); 7288 if (!event) 7289 /* Ring buffer disabled, return as if not open for write */ 7290 return -EBADF; 7291 7292 entry = ring_buffer_event_data(event); 7293 7294 len = __copy_from_user_inatomic(&entry->id, ubuf, cnt); 7295 if (len) { 7296 entry->id = -1; 7297 memcpy(&entry->buf, FAULTED_STR, FAULTED_SIZE); 7298 written = -EFAULT; 7299 } else 7300 written = cnt; 7301 7302 __buffer_unlock_commit(buffer, event); 7303 7304 return written; 7305 } 7306 7307 static int tracing_clock_show(struct seq_file *m, void *v) 7308 { 7309 struct trace_array *tr = m->private; 7310 int i; 7311 7312 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) 7313 seq_printf(m, 7314 "%s%s%s%s", i ? " " : "", 7315 i == tr->clock_id ? "[" : "", trace_clocks[i].name, 7316 i == tr->clock_id ? "]" : ""); 7317 seq_putc(m, '\n'); 7318 7319 return 0; 7320 } 7321 7322 int tracing_set_clock(struct trace_array *tr, const char *clockstr) 7323 { 7324 int i; 7325 7326 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) { 7327 if (strcmp(trace_clocks[i].name, clockstr) == 0) 7328 break; 7329 } 7330 if (i == ARRAY_SIZE(trace_clocks)) 7331 return -EINVAL; 7332 7333 mutex_lock(&trace_types_lock); 7334 7335 tr->clock_id = i; 7336 7337 ring_buffer_set_clock(tr->array_buffer.buffer, trace_clocks[i].func); 7338 7339 /* 7340 * New clock may not be consistent with the previous clock. 7341 * Reset the buffer so that it doesn't have incomparable timestamps. 7342 */ 7343 tracing_reset_online_cpus(&tr->array_buffer); 7344 7345 #ifdef CONFIG_TRACER_MAX_TRACE 7346 if (tr->max_buffer.buffer) 7347 ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func); 7348 tracing_reset_online_cpus(&tr->max_buffer); 7349 #endif 7350 7351 mutex_unlock(&trace_types_lock); 7352 7353 return 0; 7354 } 7355 7356 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf, 7357 size_t cnt, loff_t *fpos) 7358 { 7359 struct seq_file *m = filp->private_data; 7360 struct trace_array *tr = m->private; 7361 char buf[64]; 7362 const char *clockstr; 7363 int ret; 7364 7365 if (cnt >= sizeof(buf)) 7366 return -EINVAL; 7367 7368 if (copy_from_user(buf, ubuf, cnt)) 7369 return -EFAULT; 7370 7371 buf[cnt] = 0; 7372 7373 clockstr = strstrip(buf); 7374 7375 ret = tracing_set_clock(tr, clockstr); 7376 if (ret) 7377 return ret; 7378 7379 *fpos += cnt; 7380 7381 return cnt; 7382 } 7383 7384 static int tracing_clock_open(struct inode *inode, struct file *file) 7385 { 7386 struct trace_array *tr = inode->i_private; 7387 int ret; 7388 7389 ret = tracing_check_open_get_tr(tr); 7390 if (ret) 7391 return ret; 7392 7393 ret = single_open(file, tracing_clock_show, inode->i_private); 7394 if (ret < 0) 7395 trace_array_put(tr); 7396 7397 return ret; 7398 } 7399 7400 static int tracing_time_stamp_mode_show(struct seq_file *m, void *v) 7401 { 7402 struct trace_array *tr = m->private; 7403 7404 mutex_lock(&trace_types_lock); 7405 7406 if (ring_buffer_time_stamp_abs(tr->array_buffer.buffer)) 7407 seq_puts(m, "delta [absolute]\n"); 7408 else 7409 seq_puts(m, "[delta] absolute\n"); 7410 7411 mutex_unlock(&trace_types_lock); 7412 7413 return 0; 7414 } 7415 7416 static int tracing_time_stamp_mode_open(struct inode *inode, struct file *file) 7417 { 7418 struct trace_array *tr = inode->i_private; 7419 int ret; 7420 7421 ret = tracing_check_open_get_tr(tr); 7422 if (ret) 7423 return ret; 7424 7425 ret = single_open(file, tracing_time_stamp_mode_show, inode->i_private); 7426 if (ret < 0) 7427 trace_array_put(tr); 7428 7429 return ret; 7430 } 7431 7432 u64 tracing_event_time_stamp(struct trace_buffer *buffer, struct ring_buffer_event *rbe) 7433 { 7434 if (rbe == this_cpu_read(trace_buffered_event)) 7435 return ring_buffer_time_stamp(buffer); 7436 7437 return ring_buffer_event_time_stamp(buffer, rbe); 7438 } 7439 7440 /* 7441 * Set or disable using the per CPU trace_buffer_event when possible. 7442 */ 7443 int tracing_set_filter_buffering(struct trace_array *tr, bool set) 7444 { 7445 int ret = 0; 7446 7447 mutex_lock(&trace_types_lock); 7448 7449 if (set && tr->no_filter_buffering_ref++) 7450 goto out; 7451 7452 if (!set) { 7453 if (WARN_ON_ONCE(!tr->no_filter_buffering_ref)) { 7454 ret = -EINVAL; 7455 goto out; 7456 } 7457 7458 --tr->no_filter_buffering_ref; 7459 } 7460 out: 7461 mutex_unlock(&trace_types_lock); 7462 7463 return ret; 7464 } 7465 7466 struct ftrace_buffer_info { 7467 struct trace_iterator iter; 7468 void *spare; 7469 unsigned int spare_cpu; 7470 unsigned int read; 7471 }; 7472 7473 #ifdef CONFIG_TRACER_SNAPSHOT 7474 static int tracing_snapshot_open(struct inode *inode, struct file *file) 7475 { 7476 struct trace_array *tr = inode->i_private; 7477 struct trace_iterator *iter; 7478 struct seq_file *m; 7479 int ret; 7480 7481 ret = tracing_check_open_get_tr(tr); 7482 if (ret) 7483 return ret; 7484 7485 if (file->f_mode & FMODE_READ) { 7486 iter = __tracing_open(inode, file, true); 7487 if (IS_ERR(iter)) 7488 ret = PTR_ERR(iter); 7489 } else { 7490 /* Writes still need the seq_file to hold the private data */ 7491 ret = -ENOMEM; 7492 m = kzalloc(sizeof(*m), GFP_KERNEL); 7493 if (!m) 7494 goto out; 7495 iter = kzalloc(sizeof(*iter), GFP_KERNEL); 7496 if (!iter) { 7497 kfree(m); 7498 goto out; 7499 } 7500 ret = 0; 7501 7502 iter->tr = tr; 7503 iter->array_buffer = &tr->max_buffer; 7504 iter->cpu_file = tracing_get_cpu(inode); 7505 m->private = iter; 7506 file->private_data = m; 7507 } 7508 out: 7509 if (ret < 0) 7510 trace_array_put(tr); 7511 7512 return ret; 7513 } 7514 7515 static ssize_t 7516 tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt, 7517 loff_t *ppos) 7518 { 7519 struct seq_file *m = filp->private_data; 7520 struct trace_iterator *iter = m->private; 7521 struct trace_array *tr = iter->tr; 7522 unsigned long val; 7523 int ret; 7524 7525 ret = tracing_update_buffers(); 7526 if (ret < 0) 7527 return ret; 7528 7529 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 7530 if (ret) 7531 return ret; 7532 7533 mutex_lock(&trace_types_lock); 7534 7535 if (tr->current_trace->use_max_tr) { 7536 ret = -EBUSY; 7537 goto out; 7538 } 7539 7540 local_irq_disable(); 7541 arch_spin_lock(&tr->max_lock); 7542 if (tr->cond_snapshot) 7543 ret = -EBUSY; 7544 arch_spin_unlock(&tr->max_lock); 7545 local_irq_enable(); 7546 if (ret) 7547 goto out; 7548 7549 switch (val) { 7550 case 0: 7551 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) { 7552 ret = -EINVAL; 7553 break; 7554 } 7555 if (tr->allocated_snapshot) 7556 free_snapshot(tr); 7557 break; 7558 case 1: 7559 /* Only allow per-cpu swap if the ring buffer supports it */ 7560 #ifndef CONFIG_RING_BUFFER_ALLOW_SWAP 7561 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) { 7562 ret = -EINVAL; 7563 break; 7564 } 7565 #endif 7566 if (tr->allocated_snapshot) 7567 ret = resize_buffer_duplicate_size(&tr->max_buffer, 7568 &tr->array_buffer, iter->cpu_file); 7569 else 7570 ret = tracing_alloc_snapshot_instance(tr); 7571 if (ret < 0) 7572 break; 7573 local_irq_disable(); 7574 /* Now, we're going to swap */ 7575 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) 7576 update_max_tr(tr, current, smp_processor_id(), NULL); 7577 else 7578 update_max_tr_single(tr, current, iter->cpu_file); 7579 local_irq_enable(); 7580 break; 7581 default: 7582 if (tr->allocated_snapshot) { 7583 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) 7584 tracing_reset_online_cpus(&tr->max_buffer); 7585 else 7586 tracing_reset_cpu(&tr->max_buffer, iter->cpu_file); 7587 } 7588 break; 7589 } 7590 7591 if (ret >= 0) { 7592 *ppos += cnt; 7593 ret = cnt; 7594 } 7595 out: 7596 mutex_unlock(&trace_types_lock); 7597 return ret; 7598 } 7599 7600 static int tracing_snapshot_release(struct inode *inode, struct file *file) 7601 { 7602 struct seq_file *m = file->private_data; 7603 int ret; 7604 7605 ret = tracing_release(inode, file); 7606 7607 if (file->f_mode & FMODE_READ) 7608 return ret; 7609 7610 /* If write only, the seq_file is just a stub */ 7611 if (m) 7612 kfree(m->private); 7613 kfree(m); 7614 7615 return 0; 7616 } 7617 7618 static int tracing_buffers_open(struct inode *inode, struct file *filp); 7619 static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf, 7620 size_t count, loff_t *ppos); 7621 static int tracing_buffers_release(struct inode *inode, struct file *file); 7622 static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos, 7623 struct pipe_inode_info *pipe, size_t len, unsigned int flags); 7624 7625 static int snapshot_raw_open(struct inode *inode, struct file *filp) 7626 { 7627 struct ftrace_buffer_info *info; 7628 int ret; 7629 7630 /* The following checks for tracefs lockdown */ 7631 ret = tracing_buffers_open(inode, filp); 7632 if (ret < 0) 7633 return ret; 7634 7635 info = filp->private_data; 7636 7637 if (info->iter.trace->use_max_tr) { 7638 tracing_buffers_release(inode, filp); 7639 return -EBUSY; 7640 } 7641 7642 info->iter.snapshot = true; 7643 info->iter.array_buffer = &info->iter.tr->max_buffer; 7644 7645 return ret; 7646 } 7647 7648 #endif /* CONFIG_TRACER_SNAPSHOT */ 7649 7650 7651 static const struct file_operations tracing_thresh_fops = { 7652 .open = tracing_open_generic, 7653 .read = tracing_thresh_read, 7654 .write = tracing_thresh_write, 7655 .llseek = generic_file_llseek, 7656 }; 7657 7658 #ifdef CONFIG_TRACER_MAX_TRACE 7659 static const struct file_operations tracing_max_lat_fops = { 7660 .open = tracing_open_generic, 7661 .read = tracing_max_lat_read, 7662 .write = tracing_max_lat_write, 7663 .llseek = generic_file_llseek, 7664 }; 7665 #endif 7666 7667 static const struct file_operations set_tracer_fops = { 7668 .open = tracing_open_generic, 7669 .read = tracing_set_trace_read, 7670 .write = tracing_set_trace_write, 7671 .llseek = generic_file_llseek, 7672 }; 7673 7674 static const struct file_operations tracing_pipe_fops = { 7675 .open = tracing_open_pipe, 7676 .poll = tracing_poll_pipe, 7677 .read = tracing_read_pipe, 7678 .splice_read = tracing_splice_read_pipe, 7679 .release = tracing_release_pipe, 7680 .llseek = no_llseek, 7681 }; 7682 7683 static const struct file_operations tracing_entries_fops = { 7684 .open = tracing_open_generic_tr, 7685 .read = tracing_entries_read, 7686 .write = tracing_entries_write, 7687 .llseek = generic_file_llseek, 7688 .release = tracing_release_generic_tr, 7689 }; 7690 7691 static const struct file_operations tracing_total_entries_fops = { 7692 .open = tracing_open_generic_tr, 7693 .read = tracing_total_entries_read, 7694 .llseek = generic_file_llseek, 7695 .release = tracing_release_generic_tr, 7696 }; 7697 7698 static const struct file_operations tracing_free_buffer_fops = { 7699 .open = tracing_open_generic_tr, 7700 .write = tracing_free_buffer_write, 7701 .release = tracing_free_buffer_release, 7702 }; 7703 7704 static const struct file_operations tracing_mark_fops = { 7705 .open = tracing_mark_open, 7706 .write = tracing_mark_write, 7707 .release = tracing_release_generic_tr, 7708 }; 7709 7710 static const struct file_operations tracing_mark_raw_fops = { 7711 .open = tracing_mark_open, 7712 .write = tracing_mark_raw_write, 7713 .release = tracing_release_generic_tr, 7714 }; 7715 7716 static const struct file_operations trace_clock_fops = { 7717 .open = tracing_clock_open, 7718 .read = seq_read, 7719 .llseek = seq_lseek, 7720 .release = tracing_single_release_tr, 7721 .write = tracing_clock_write, 7722 }; 7723 7724 static const struct file_operations trace_time_stamp_mode_fops = { 7725 .open = tracing_time_stamp_mode_open, 7726 .read = seq_read, 7727 .llseek = seq_lseek, 7728 .release = tracing_single_release_tr, 7729 }; 7730 7731 #ifdef CONFIG_TRACER_SNAPSHOT 7732 static const struct file_operations snapshot_fops = { 7733 .open = tracing_snapshot_open, 7734 .read = seq_read, 7735 .write = tracing_snapshot_write, 7736 .llseek = tracing_lseek, 7737 .release = tracing_snapshot_release, 7738 }; 7739 7740 static const struct file_operations snapshot_raw_fops = { 7741 .open = snapshot_raw_open, 7742 .read = tracing_buffers_read, 7743 .release = tracing_buffers_release, 7744 .splice_read = tracing_buffers_splice_read, 7745 .llseek = no_llseek, 7746 }; 7747 7748 #endif /* CONFIG_TRACER_SNAPSHOT */ 7749 7750 /* 7751 * trace_min_max_write - Write a u64 value to a trace_min_max_param struct 7752 * @filp: The active open file structure 7753 * @ubuf: The userspace provided buffer to read value into 7754 * @cnt: The maximum number of bytes to read 7755 * @ppos: The current "file" position 7756 * 7757 * This function implements the write interface for a struct trace_min_max_param. 7758 * The filp->private_data must point to a trace_min_max_param structure that 7759 * defines where to write the value, the min and the max acceptable values, 7760 * and a lock to protect the write. 7761 */ 7762 static ssize_t 7763 trace_min_max_write(struct file *filp, const char __user *ubuf, size_t cnt, loff_t *ppos) 7764 { 7765 struct trace_min_max_param *param = filp->private_data; 7766 u64 val; 7767 int err; 7768 7769 if (!param) 7770 return -EFAULT; 7771 7772 err = kstrtoull_from_user(ubuf, cnt, 10, &val); 7773 if (err) 7774 return err; 7775 7776 if (param->lock) 7777 mutex_lock(param->lock); 7778 7779 if (param->min && val < *param->min) 7780 err = -EINVAL; 7781 7782 if (param->max && val > *param->max) 7783 err = -EINVAL; 7784 7785 if (!err) 7786 *param->val = val; 7787 7788 if (param->lock) 7789 mutex_unlock(param->lock); 7790 7791 if (err) 7792 return err; 7793 7794 return cnt; 7795 } 7796 7797 /* 7798 * trace_min_max_read - Read a u64 value from a trace_min_max_param struct 7799 * @filp: The active open file structure 7800 * @ubuf: The userspace provided buffer to read value into 7801 * @cnt: The maximum number of bytes to read 7802 * @ppos: The current "file" position 7803 * 7804 * This function implements the read interface for a struct trace_min_max_param. 7805 * The filp->private_data must point to a trace_min_max_param struct with valid 7806 * data. 7807 */ 7808 static ssize_t 7809 trace_min_max_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos) 7810 { 7811 struct trace_min_max_param *param = filp->private_data; 7812 char buf[U64_STR_SIZE]; 7813 int len; 7814 u64 val; 7815 7816 if (!param) 7817 return -EFAULT; 7818 7819 val = *param->val; 7820 7821 if (cnt > sizeof(buf)) 7822 cnt = sizeof(buf); 7823 7824 len = snprintf(buf, sizeof(buf), "%llu\n", val); 7825 7826 return simple_read_from_buffer(ubuf, cnt, ppos, buf, len); 7827 } 7828 7829 const struct file_operations trace_min_max_fops = { 7830 .open = tracing_open_generic, 7831 .read = trace_min_max_read, 7832 .write = trace_min_max_write, 7833 }; 7834 7835 #define TRACING_LOG_ERRS_MAX 8 7836 #define TRACING_LOG_LOC_MAX 128 7837 7838 #define CMD_PREFIX " Command: " 7839 7840 struct err_info { 7841 const char **errs; /* ptr to loc-specific array of err strings */ 7842 u8 type; /* index into errs -> specific err string */ 7843 u16 pos; /* caret position */ 7844 u64 ts; 7845 }; 7846 7847 struct tracing_log_err { 7848 struct list_head list; 7849 struct err_info info; 7850 char loc[TRACING_LOG_LOC_MAX]; /* err location */ 7851 char *cmd; /* what caused err */ 7852 }; 7853 7854 static DEFINE_MUTEX(tracing_err_log_lock); 7855 7856 static struct tracing_log_err *alloc_tracing_log_err(int len) 7857 { 7858 struct tracing_log_err *err; 7859 7860 err = kzalloc(sizeof(*err), GFP_KERNEL); 7861 if (!err) 7862 return ERR_PTR(-ENOMEM); 7863 7864 err->cmd = kzalloc(len, GFP_KERNEL); 7865 if (!err->cmd) { 7866 kfree(err); 7867 return ERR_PTR(-ENOMEM); 7868 } 7869 7870 return err; 7871 } 7872 7873 static void free_tracing_log_err(struct tracing_log_err *err) 7874 { 7875 kfree(err->cmd); 7876 kfree(err); 7877 } 7878 7879 static struct tracing_log_err *get_tracing_log_err(struct trace_array *tr, 7880 int len) 7881 { 7882 struct tracing_log_err *err; 7883 char *cmd; 7884 7885 if (tr->n_err_log_entries < TRACING_LOG_ERRS_MAX) { 7886 err = alloc_tracing_log_err(len); 7887 if (PTR_ERR(err) != -ENOMEM) 7888 tr->n_err_log_entries++; 7889 7890 return err; 7891 } 7892 cmd = kzalloc(len, GFP_KERNEL); 7893 if (!cmd) 7894 return ERR_PTR(-ENOMEM); 7895 err = list_first_entry(&tr->err_log, struct tracing_log_err, list); 7896 kfree(err->cmd); 7897 err->cmd = cmd; 7898 list_del(&err->list); 7899 7900 return err; 7901 } 7902 7903 /** 7904 * err_pos - find the position of a string within a command for error careting 7905 * @cmd: The tracing command that caused the error 7906 * @str: The string to position the caret at within @cmd 7907 * 7908 * Finds the position of the first occurrence of @str within @cmd. The 7909 * return value can be passed to tracing_log_err() for caret placement 7910 * within @cmd. 7911 * 7912 * Returns the index within @cmd of the first occurrence of @str or 0 7913 * if @str was not found. 7914 */ 7915 unsigned int err_pos(char *cmd, const char *str) 7916 { 7917 char *found; 7918 7919 if (WARN_ON(!strlen(cmd))) 7920 return 0; 7921 7922 found = strstr(cmd, str); 7923 if (found) 7924 return found - cmd; 7925 7926 return 0; 7927 } 7928 7929 /** 7930 * tracing_log_err - write an error to the tracing error log 7931 * @tr: The associated trace array for the error (NULL for top level array) 7932 * @loc: A string describing where the error occurred 7933 * @cmd: The tracing command that caused the error 7934 * @errs: The array of loc-specific static error strings 7935 * @type: The index into errs[], which produces the specific static err string 7936 * @pos: The position the caret should be placed in the cmd 7937 * 7938 * Writes an error into tracing/error_log of the form: 7939 * 7940 * <loc>: error: <text> 7941 * Command: <cmd> 7942 * ^ 7943 * 7944 * tracing/error_log is a small log file containing the last 7945 * TRACING_LOG_ERRS_MAX errors (8). Memory for errors isn't allocated 7946 * unless there has been a tracing error, and the error log can be 7947 * cleared and have its memory freed by writing the empty string in 7948 * truncation mode to it i.e. echo > tracing/error_log. 7949 * 7950 * NOTE: the @errs array along with the @type param are used to 7951 * produce a static error string - this string is not copied and saved 7952 * when the error is logged - only a pointer to it is saved. See 7953 * existing callers for examples of how static strings are typically 7954 * defined for use with tracing_log_err(). 7955 */ 7956 void tracing_log_err(struct trace_array *tr, 7957 const char *loc, const char *cmd, 7958 const char **errs, u8 type, u16 pos) 7959 { 7960 struct tracing_log_err *err; 7961 int len = 0; 7962 7963 if (!tr) 7964 tr = &global_trace; 7965 7966 len += sizeof(CMD_PREFIX) + 2 * sizeof("\n") + strlen(cmd) + 1; 7967 7968 mutex_lock(&tracing_err_log_lock); 7969 err = get_tracing_log_err(tr, len); 7970 if (PTR_ERR(err) == -ENOMEM) { 7971 mutex_unlock(&tracing_err_log_lock); 7972 return; 7973 } 7974 7975 snprintf(err->loc, TRACING_LOG_LOC_MAX, "%s: error: ", loc); 7976 snprintf(err->cmd, len, "\n" CMD_PREFIX "%s\n", cmd); 7977 7978 err->info.errs = errs; 7979 err->info.type = type; 7980 err->info.pos = pos; 7981 err->info.ts = local_clock(); 7982 7983 list_add_tail(&err->list, &tr->err_log); 7984 mutex_unlock(&tracing_err_log_lock); 7985 } 7986 7987 static void clear_tracing_err_log(struct trace_array *tr) 7988 { 7989 struct tracing_log_err *err, *next; 7990 7991 mutex_lock(&tracing_err_log_lock); 7992 list_for_each_entry_safe(err, next, &tr->err_log, list) { 7993 list_del(&err->list); 7994 free_tracing_log_err(err); 7995 } 7996 7997 tr->n_err_log_entries = 0; 7998 mutex_unlock(&tracing_err_log_lock); 7999 } 8000 8001 static void *tracing_err_log_seq_start(struct seq_file *m, loff_t *pos) 8002 { 8003 struct trace_array *tr = m->private; 8004 8005 mutex_lock(&tracing_err_log_lock); 8006 8007 return seq_list_start(&tr->err_log, *pos); 8008 } 8009 8010 static void *tracing_err_log_seq_next(struct seq_file *m, void *v, loff_t *pos) 8011 { 8012 struct trace_array *tr = m->private; 8013 8014 return seq_list_next(v, &tr->err_log, pos); 8015 } 8016 8017 static void tracing_err_log_seq_stop(struct seq_file *m, void *v) 8018 { 8019 mutex_unlock(&tracing_err_log_lock); 8020 } 8021 8022 static void tracing_err_log_show_pos(struct seq_file *m, u16 pos) 8023 { 8024 u16 i; 8025 8026 for (i = 0; i < sizeof(CMD_PREFIX) - 1; i++) 8027 seq_putc(m, ' '); 8028 for (i = 0; i < pos; i++) 8029 seq_putc(m, ' '); 8030 seq_puts(m, "^\n"); 8031 } 8032 8033 static int tracing_err_log_seq_show(struct seq_file *m, void *v) 8034 { 8035 struct tracing_log_err *err = v; 8036 8037 if (err) { 8038 const char *err_text = err->info.errs[err->info.type]; 8039 u64 sec = err->info.ts; 8040 u32 nsec; 8041 8042 nsec = do_div(sec, NSEC_PER_SEC); 8043 seq_printf(m, "[%5llu.%06u] %s%s", sec, nsec / 1000, 8044 err->loc, err_text); 8045 seq_printf(m, "%s", err->cmd); 8046 tracing_err_log_show_pos(m, err->info.pos); 8047 } 8048 8049 return 0; 8050 } 8051 8052 static const struct seq_operations tracing_err_log_seq_ops = { 8053 .start = tracing_err_log_seq_start, 8054 .next = tracing_err_log_seq_next, 8055 .stop = tracing_err_log_seq_stop, 8056 .show = tracing_err_log_seq_show 8057 }; 8058 8059 static int tracing_err_log_open(struct inode *inode, struct file *file) 8060 { 8061 struct trace_array *tr = inode->i_private; 8062 int ret = 0; 8063 8064 ret = tracing_check_open_get_tr(tr); 8065 if (ret) 8066 return ret; 8067 8068 /* If this file was opened for write, then erase contents */ 8069 if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) 8070 clear_tracing_err_log(tr); 8071 8072 if (file->f_mode & FMODE_READ) { 8073 ret = seq_open(file, &tracing_err_log_seq_ops); 8074 if (!ret) { 8075 struct seq_file *m = file->private_data; 8076 m->private = tr; 8077 } else { 8078 trace_array_put(tr); 8079 } 8080 } 8081 return ret; 8082 } 8083 8084 static ssize_t tracing_err_log_write(struct file *file, 8085 const char __user *buffer, 8086 size_t count, loff_t *ppos) 8087 { 8088 return count; 8089 } 8090 8091 static int tracing_err_log_release(struct inode *inode, struct file *file) 8092 { 8093 struct trace_array *tr = inode->i_private; 8094 8095 trace_array_put(tr); 8096 8097 if (file->f_mode & FMODE_READ) 8098 seq_release(inode, file); 8099 8100 return 0; 8101 } 8102 8103 static const struct file_operations tracing_err_log_fops = { 8104 .open = tracing_err_log_open, 8105 .write = tracing_err_log_write, 8106 .read = seq_read, 8107 .llseek = seq_lseek, 8108 .release = tracing_err_log_release, 8109 }; 8110 8111 static int tracing_buffers_open(struct inode *inode, struct file *filp) 8112 { 8113 struct trace_array *tr = inode->i_private; 8114 struct ftrace_buffer_info *info; 8115 int ret; 8116 8117 ret = tracing_check_open_get_tr(tr); 8118 if (ret) 8119 return ret; 8120 8121 info = kvzalloc(sizeof(*info), GFP_KERNEL); 8122 if (!info) { 8123 trace_array_put(tr); 8124 return -ENOMEM; 8125 } 8126 8127 mutex_lock(&trace_types_lock); 8128 8129 info->iter.tr = tr; 8130 info->iter.cpu_file = tracing_get_cpu(inode); 8131 info->iter.trace = tr->current_trace; 8132 info->iter.array_buffer = &tr->array_buffer; 8133 info->spare = NULL; 8134 /* Force reading ring buffer for first read */ 8135 info->read = (unsigned int)-1; 8136 8137 filp->private_data = info; 8138 8139 tr->trace_ref++; 8140 8141 mutex_unlock(&trace_types_lock); 8142 8143 ret = nonseekable_open(inode, filp); 8144 if (ret < 0) 8145 trace_array_put(tr); 8146 8147 return ret; 8148 } 8149 8150 static __poll_t 8151 tracing_buffers_poll(struct file *filp, poll_table *poll_table) 8152 { 8153 struct ftrace_buffer_info *info = filp->private_data; 8154 struct trace_iterator *iter = &info->iter; 8155 8156 return trace_poll(iter, filp, poll_table); 8157 } 8158 8159 static ssize_t 8160 tracing_buffers_read(struct file *filp, char __user *ubuf, 8161 size_t count, loff_t *ppos) 8162 { 8163 struct ftrace_buffer_info *info = filp->private_data; 8164 struct trace_iterator *iter = &info->iter; 8165 ssize_t ret = 0; 8166 ssize_t size; 8167 8168 if (!count) 8169 return 0; 8170 8171 #ifdef CONFIG_TRACER_MAX_TRACE 8172 if (iter->snapshot && iter->tr->current_trace->use_max_tr) 8173 return -EBUSY; 8174 #endif 8175 8176 if (!info->spare) { 8177 info->spare = ring_buffer_alloc_read_page(iter->array_buffer->buffer, 8178 iter->cpu_file); 8179 if (IS_ERR(info->spare)) { 8180 ret = PTR_ERR(info->spare); 8181 info->spare = NULL; 8182 } else { 8183 info->spare_cpu = iter->cpu_file; 8184 } 8185 } 8186 if (!info->spare) 8187 return ret; 8188 8189 /* Do we have previous read data to read? */ 8190 if (info->read < PAGE_SIZE) 8191 goto read; 8192 8193 again: 8194 trace_access_lock(iter->cpu_file); 8195 ret = ring_buffer_read_page(iter->array_buffer->buffer, 8196 &info->spare, 8197 count, 8198 iter->cpu_file, 0); 8199 trace_access_unlock(iter->cpu_file); 8200 8201 if (ret < 0) { 8202 if (trace_empty(iter)) { 8203 if ((filp->f_flags & O_NONBLOCK)) 8204 return -EAGAIN; 8205 8206 ret = wait_on_pipe(iter, 0); 8207 if (ret) 8208 return ret; 8209 8210 goto again; 8211 } 8212 return 0; 8213 } 8214 8215 info->read = 0; 8216 read: 8217 size = PAGE_SIZE - info->read; 8218 if (size > count) 8219 size = count; 8220 8221 ret = copy_to_user(ubuf, info->spare + info->read, size); 8222 if (ret == size) 8223 return -EFAULT; 8224 8225 size -= ret; 8226 8227 *ppos += size; 8228 info->read += size; 8229 8230 return size; 8231 } 8232 8233 static int tracing_buffers_release(struct inode *inode, struct file *file) 8234 { 8235 struct ftrace_buffer_info *info = file->private_data; 8236 struct trace_iterator *iter = &info->iter; 8237 8238 mutex_lock(&trace_types_lock); 8239 8240 iter->tr->trace_ref--; 8241 8242 __trace_array_put(iter->tr); 8243 8244 iter->wait_index++; 8245 /* Make sure the waiters see the new wait_index */ 8246 smp_wmb(); 8247 8248 ring_buffer_wake_waiters(iter->array_buffer->buffer, iter->cpu_file); 8249 8250 if (info->spare) 8251 ring_buffer_free_read_page(iter->array_buffer->buffer, 8252 info->spare_cpu, info->spare); 8253 kvfree(info); 8254 8255 mutex_unlock(&trace_types_lock); 8256 8257 return 0; 8258 } 8259 8260 struct buffer_ref { 8261 struct trace_buffer *buffer; 8262 void *page; 8263 int cpu; 8264 refcount_t refcount; 8265 }; 8266 8267 static void buffer_ref_release(struct buffer_ref *ref) 8268 { 8269 if (!refcount_dec_and_test(&ref->refcount)) 8270 return; 8271 ring_buffer_free_read_page(ref->buffer, ref->cpu, ref->page); 8272 kfree(ref); 8273 } 8274 8275 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe, 8276 struct pipe_buffer *buf) 8277 { 8278 struct buffer_ref *ref = (struct buffer_ref *)buf->private; 8279 8280 buffer_ref_release(ref); 8281 buf->private = 0; 8282 } 8283 8284 static bool buffer_pipe_buf_get(struct pipe_inode_info *pipe, 8285 struct pipe_buffer *buf) 8286 { 8287 struct buffer_ref *ref = (struct buffer_ref *)buf->private; 8288 8289 if (refcount_read(&ref->refcount) > INT_MAX/2) 8290 return false; 8291 8292 refcount_inc(&ref->refcount); 8293 return true; 8294 } 8295 8296 /* Pipe buffer operations for a buffer. */ 8297 static const struct pipe_buf_operations buffer_pipe_buf_ops = { 8298 .release = buffer_pipe_buf_release, 8299 .get = buffer_pipe_buf_get, 8300 }; 8301 8302 /* 8303 * Callback from splice_to_pipe(), if we need to release some pages 8304 * at the end of the spd in case we error'ed out in filling the pipe. 8305 */ 8306 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i) 8307 { 8308 struct buffer_ref *ref = 8309 (struct buffer_ref *)spd->partial[i].private; 8310 8311 buffer_ref_release(ref); 8312 spd->partial[i].private = 0; 8313 } 8314 8315 static ssize_t 8316 tracing_buffers_splice_read(struct file *file, loff_t *ppos, 8317 struct pipe_inode_info *pipe, size_t len, 8318 unsigned int flags) 8319 { 8320 struct ftrace_buffer_info *info = file->private_data; 8321 struct trace_iterator *iter = &info->iter; 8322 struct partial_page partial_def[PIPE_DEF_BUFFERS]; 8323 struct page *pages_def[PIPE_DEF_BUFFERS]; 8324 struct splice_pipe_desc spd = { 8325 .pages = pages_def, 8326 .partial = partial_def, 8327 .nr_pages_max = PIPE_DEF_BUFFERS, 8328 .ops = &buffer_pipe_buf_ops, 8329 .spd_release = buffer_spd_release, 8330 }; 8331 struct buffer_ref *ref; 8332 int entries, i; 8333 ssize_t ret = 0; 8334 8335 #ifdef CONFIG_TRACER_MAX_TRACE 8336 if (iter->snapshot && iter->tr->current_trace->use_max_tr) 8337 return -EBUSY; 8338 #endif 8339 8340 if (*ppos & (PAGE_SIZE - 1)) 8341 return -EINVAL; 8342 8343 if (len & (PAGE_SIZE - 1)) { 8344 if (len < PAGE_SIZE) 8345 return -EINVAL; 8346 len &= PAGE_MASK; 8347 } 8348 8349 if (splice_grow_spd(pipe, &spd)) 8350 return -ENOMEM; 8351 8352 again: 8353 trace_access_lock(iter->cpu_file); 8354 entries = ring_buffer_entries_cpu(iter->array_buffer->buffer, iter->cpu_file); 8355 8356 for (i = 0; i < spd.nr_pages_max && len && entries; i++, len -= PAGE_SIZE) { 8357 struct page *page; 8358 int r; 8359 8360 ref = kzalloc(sizeof(*ref), GFP_KERNEL); 8361 if (!ref) { 8362 ret = -ENOMEM; 8363 break; 8364 } 8365 8366 refcount_set(&ref->refcount, 1); 8367 ref->buffer = iter->array_buffer->buffer; 8368 ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file); 8369 if (IS_ERR(ref->page)) { 8370 ret = PTR_ERR(ref->page); 8371 ref->page = NULL; 8372 kfree(ref); 8373 break; 8374 } 8375 ref->cpu = iter->cpu_file; 8376 8377 r = ring_buffer_read_page(ref->buffer, &ref->page, 8378 len, iter->cpu_file, 1); 8379 if (r < 0) { 8380 ring_buffer_free_read_page(ref->buffer, ref->cpu, 8381 ref->page); 8382 kfree(ref); 8383 break; 8384 } 8385 8386 page = virt_to_page(ref->page); 8387 8388 spd.pages[i] = page; 8389 spd.partial[i].len = PAGE_SIZE; 8390 spd.partial[i].offset = 0; 8391 spd.partial[i].private = (unsigned long)ref; 8392 spd.nr_pages++; 8393 *ppos += PAGE_SIZE; 8394 8395 entries = ring_buffer_entries_cpu(iter->array_buffer->buffer, iter->cpu_file); 8396 } 8397 8398 trace_access_unlock(iter->cpu_file); 8399 spd.nr_pages = i; 8400 8401 /* did we read anything? */ 8402 if (!spd.nr_pages) { 8403 long wait_index; 8404 8405 if (ret) 8406 goto out; 8407 8408 ret = -EAGAIN; 8409 if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK)) 8410 goto out; 8411 8412 wait_index = READ_ONCE(iter->wait_index); 8413 8414 ret = wait_on_pipe(iter, iter->tr->buffer_percent); 8415 if (ret) 8416 goto out; 8417 8418 /* No need to wait after waking up when tracing is off */ 8419 if (!tracer_tracing_is_on(iter->tr)) 8420 goto out; 8421 8422 /* Make sure we see the new wait_index */ 8423 smp_rmb(); 8424 if (wait_index != iter->wait_index) 8425 goto out; 8426 8427 goto again; 8428 } 8429 8430 ret = splice_to_pipe(pipe, &spd); 8431 out: 8432 splice_shrink_spd(&spd); 8433 8434 return ret; 8435 } 8436 8437 /* An ioctl call with cmd 0 to the ring buffer file will wake up all waiters */ 8438 static long tracing_buffers_ioctl(struct file *file, unsigned int cmd, unsigned long arg) 8439 { 8440 struct ftrace_buffer_info *info = file->private_data; 8441 struct trace_iterator *iter = &info->iter; 8442 8443 if (cmd) 8444 return -ENOIOCTLCMD; 8445 8446 mutex_lock(&trace_types_lock); 8447 8448 iter->wait_index++; 8449 /* Make sure the waiters see the new wait_index */ 8450 smp_wmb(); 8451 8452 ring_buffer_wake_waiters(iter->array_buffer->buffer, iter->cpu_file); 8453 8454 mutex_unlock(&trace_types_lock); 8455 return 0; 8456 } 8457 8458 static const struct file_operations tracing_buffers_fops = { 8459 .open = tracing_buffers_open, 8460 .read = tracing_buffers_read, 8461 .poll = tracing_buffers_poll, 8462 .release = tracing_buffers_release, 8463 .splice_read = tracing_buffers_splice_read, 8464 .unlocked_ioctl = tracing_buffers_ioctl, 8465 .llseek = no_llseek, 8466 }; 8467 8468 static ssize_t 8469 tracing_stats_read(struct file *filp, char __user *ubuf, 8470 size_t count, loff_t *ppos) 8471 { 8472 struct inode *inode = file_inode(filp); 8473 struct trace_array *tr = inode->i_private; 8474 struct array_buffer *trace_buf = &tr->array_buffer; 8475 int cpu = tracing_get_cpu(inode); 8476 struct trace_seq *s; 8477 unsigned long cnt; 8478 unsigned long long t; 8479 unsigned long usec_rem; 8480 8481 s = kmalloc(sizeof(*s), GFP_KERNEL); 8482 if (!s) 8483 return -ENOMEM; 8484 8485 trace_seq_init(s); 8486 8487 cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu); 8488 trace_seq_printf(s, "entries: %ld\n", cnt); 8489 8490 cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu); 8491 trace_seq_printf(s, "overrun: %ld\n", cnt); 8492 8493 cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu); 8494 trace_seq_printf(s, "commit overrun: %ld\n", cnt); 8495 8496 cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu); 8497 trace_seq_printf(s, "bytes: %ld\n", cnt); 8498 8499 if (trace_clocks[tr->clock_id].in_ns) { 8500 /* local or global for trace_clock */ 8501 t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu)); 8502 usec_rem = do_div(t, USEC_PER_SEC); 8503 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n", 8504 t, usec_rem); 8505 8506 t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer)); 8507 usec_rem = do_div(t, USEC_PER_SEC); 8508 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem); 8509 } else { 8510 /* counter or tsc mode for trace_clock */ 8511 trace_seq_printf(s, "oldest event ts: %llu\n", 8512 ring_buffer_oldest_event_ts(trace_buf->buffer, cpu)); 8513 8514 trace_seq_printf(s, "now ts: %llu\n", 8515 ring_buffer_time_stamp(trace_buf->buffer)); 8516 } 8517 8518 cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu); 8519 trace_seq_printf(s, "dropped events: %ld\n", cnt); 8520 8521 cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu); 8522 trace_seq_printf(s, "read events: %ld\n", cnt); 8523 8524 count = simple_read_from_buffer(ubuf, count, ppos, 8525 s->buffer, trace_seq_used(s)); 8526 8527 kfree(s); 8528 8529 return count; 8530 } 8531 8532 static const struct file_operations tracing_stats_fops = { 8533 .open = tracing_open_generic_tr, 8534 .read = tracing_stats_read, 8535 .llseek = generic_file_llseek, 8536 .release = tracing_release_generic_tr, 8537 }; 8538 8539 #ifdef CONFIG_DYNAMIC_FTRACE 8540 8541 static ssize_t 8542 tracing_read_dyn_info(struct file *filp, char __user *ubuf, 8543 size_t cnt, loff_t *ppos) 8544 { 8545 ssize_t ret; 8546 char *buf; 8547 int r; 8548 8549 /* 256 should be plenty to hold the amount needed */ 8550 buf = kmalloc(256, GFP_KERNEL); 8551 if (!buf) 8552 return -ENOMEM; 8553 8554 r = scnprintf(buf, 256, "%ld pages:%ld groups: %ld\n", 8555 ftrace_update_tot_cnt, 8556 ftrace_number_of_pages, 8557 ftrace_number_of_groups); 8558 8559 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 8560 kfree(buf); 8561 return ret; 8562 } 8563 8564 static const struct file_operations tracing_dyn_info_fops = { 8565 .open = tracing_open_generic, 8566 .read = tracing_read_dyn_info, 8567 .llseek = generic_file_llseek, 8568 }; 8569 #endif /* CONFIG_DYNAMIC_FTRACE */ 8570 8571 #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) 8572 static void 8573 ftrace_snapshot(unsigned long ip, unsigned long parent_ip, 8574 struct trace_array *tr, struct ftrace_probe_ops *ops, 8575 void *data) 8576 { 8577 tracing_snapshot_instance(tr); 8578 } 8579 8580 static void 8581 ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip, 8582 struct trace_array *tr, struct ftrace_probe_ops *ops, 8583 void *data) 8584 { 8585 struct ftrace_func_mapper *mapper = data; 8586 long *count = NULL; 8587 8588 if (mapper) 8589 count = (long *)ftrace_func_mapper_find_ip(mapper, ip); 8590 8591 if (count) { 8592 8593 if (*count <= 0) 8594 return; 8595 8596 (*count)--; 8597 } 8598 8599 tracing_snapshot_instance(tr); 8600 } 8601 8602 static int 8603 ftrace_snapshot_print(struct seq_file *m, unsigned long ip, 8604 struct ftrace_probe_ops *ops, void *data) 8605 { 8606 struct ftrace_func_mapper *mapper = data; 8607 long *count = NULL; 8608 8609 seq_printf(m, "%ps:", (void *)ip); 8610 8611 seq_puts(m, "snapshot"); 8612 8613 if (mapper) 8614 count = (long *)ftrace_func_mapper_find_ip(mapper, ip); 8615 8616 if (count) 8617 seq_printf(m, ":count=%ld\n", *count); 8618 else 8619 seq_puts(m, ":unlimited\n"); 8620 8621 return 0; 8622 } 8623 8624 static int 8625 ftrace_snapshot_init(struct ftrace_probe_ops *ops, struct trace_array *tr, 8626 unsigned long ip, void *init_data, void **data) 8627 { 8628 struct ftrace_func_mapper *mapper = *data; 8629 8630 if (!mapper) { 8631 mapper = allocate_ftrace_func_mapper(); 8632 if (!mapper) 8633 return -ENOMEM; 8634 *data = mapper; 8635 } 8636 8637 return ftrace_func_mapper_add_ip(mapper, ip, init_data); 8638 } 8639 8640 static void 8641 ftrace_snapshot_free(struct ftrace_probe_ops *ops, struct trace_array *tr, 8642 unsigned long ip, void *data) 8643 { 8644 struct ftrace_func_mapper *mapper = data; 8645 8646 if (!ip) { 8647 if (!mapper) 8648 return; 8649 free_ftrace_func_mapper(mapper, NULL); 8650 return; 8651 } 8652 8653 ftrace_func_mapper_remove_ip(mapper, ip); 8654 } 8655 8656 static struct ftrace_probe_ops snapshot_probe_ops = { 8657 .func = ftrace_snapshot, 8658 .print = ftrace_snapshot_print, 8659 }; 8660 8661 static struct ftrace_probe_ops snapshot_count_probe_ops = { 8662 .func = ftrace_count_snapshot, 8663 .print = ftrace_snapshot_print, 8664 .init = ftrace_snapshot_init, 8665 .free = ftrace_snapshot_free, 8666 }; 8667 8668 static int 8669 ftrace_trace_snapshot_callback(struct trace_array *tr, struct ftrace_hash *hash, 8670 char *glob, char *cmd, char *param, int enable) 8671 { 8672 struct ftrace_probe_ops *ops; 8673 void *count = (void *)-1; 8674 char *number; 8675 int ret; 8676 8677 if (!tr) 8678 return -ENODEV; 8679 8680 /* hash funcs only work with set_ftrace_filter */ 8681 if (!enable) 8682 return -EINVAL; 8683 8684 ops = param ? &snapshot_count_probe_ops : &snapshot_probe_ops; 8685 8686 if (glob[0] == '!') 8687 return unregister_ftrace_function_probe_func(glob+1, tr, ops); 8688 8689 if (!param) 8690 goto out_reg; 8691 8692 number = strsep(¶m, ":"); 8693 8694 if (!strlen(number)) 8695 goto out_reg; 8696 8697 /* 8698 * We use the callback data field (which is a pointer) 8699 * as our counter. 8700 */ 8701 ret = kstrtoul(number, 0, (unsigned long *)&count); 8702 if (ret) 8703 return ret; 8704 8705 out_reg: 8706 ret = tracing_alloc_snapshot_instance(tr); 8707 if (ret < 0) 8708 goto out; 8709 8710 ret = register_ftrace_function_probe(glob, tr, ops, count); 8711 8712 out: 8713 return ret < 0 ? ret : 0; 8714 } 8715 8716 static struct ftrace_func_command ftrace_snapshot_cmd = { 8717 .name = "snapshot", 8718 .func = ftrace_trace_snapshot_callback, 8719 }; 8720 8721 static __init int register_snapshot_cmd(void) 8722 { 8723 return register_ftrace_command(&ftrace_snapshot_cmd); 8724 } 8725 #else 8726 static inline __init int register_snapshot_cmd(void) { return 0; } 8727 #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */ 8728 8729 static struct dentry *tracing_get_dentry(struct trace_array *tr) 8730 { 8731 if (WARN_ON(!tr->dir)) 8732 return ERR_PTR(-ENODEV); 8733 8734 /* Top directory uses NULL as the parent */ 8735 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) 8736 return NULL; 8737 8738 /* All sub buffers have a descriptor */ 8739 return tr->dir; 8740 } 8741 8742 static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu) 8743 { 8744 struct dentry *d_tracer; 8745 8746 if (tr->percpu_dir) 8747 return tr->percpu_dir; 8748 8749 d_tracer = tracing_get_dentry(tr); 8750 if (IS_ERR(d_tracer)) 8751 return NULL; 8752 8753 tr->percpu_dir = tracefs_create_dir("per_cpu", d_tracer); 8754 8755 MEM_FAIL(!tr->percpu_dir, 8756 "Could not create tracefs directory 'per_cpu/%d'\n", cpu); 8757 8758 return tr->percpu_dir; 8759 } 8760 8761 static struct dentry * 8762 trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent, 8763 void *data, long cpu, const struct file_operations *fops) 8764 { 8765 struct dentry *ret = trace_create_file(name, mode, parent, data, fops); 8766 8767 if (ret) /* See tracing_get_cpu() */ 8768 d_inode(ret)->i_cdev = (void *)(cpu + 1); 8769 return ret; 8770 } 8771 8772 static void 8773 tracing_init_tracefs_percpu(struct trace_array *tr, long cpu) 8774 { 8775 struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu); 8776 struct dentry *d_cpu; 8777 char cpu_dir[30]; /* 30 characters should be more than enough */ 8778 8779 if (!d_percpu) 8780 return; 8781 8782 snprintf(cpu_dir, 30, "cpu%ld", cpu); 8783 d_cpu = tracefs_create_dir(cpu_dir, d_percpu); 8784 if (!d_cpu) { 8785 pr_warn("Could not create tracefs '%s' entry\n", cpu_dir); 8786 return; 8787 } 8788 8789 /* per cpu trace_pipe */ 8790 trace_create_cpu_file("trace_pipe", TRACE_MODE_READ, d_cpu, 8791 tr, cpu, &tracing_pipe_fops); 8792 8793 /* per cpu trace */ 8794 trace_create_cpu_file("trace", TRACE_MODE_WRITE, d_cpu, 8795 tr, cpu, &tracing_fops); 8796 8797 trace_create_cpu_file("trace_pipe_raw", TRACE_MODE_READ, d_cpu, 8798 tr, cpu, &tracing_buffers_fops); 8799 8800 trace_create_cpu_file("stats", TRACE_MODE_READ, d_cpu, 8801 tr, cpu, &tracing_stats_fops); 8802 8803 trace_create_cpu_file("buffer_size_kb", TRACE_MODE_READ, d_cpu, 8804 tr, cpu, &tracing_entries_fops); 8805 8806 #ifdef CONFIG_TRACER_SNAPSHOT 8807 trace_create_cpu_file("snapshot", TRACE_MODE_WRITE, d_cpu, 8808 tr, cpu, &snapshot_fops); 8809 8810 trace_create_cpu_file("snapshot_raw", TRACE_MODE_READ, d_cpu, 8811 tr, cpu, &snapshot_raw_fops); 8812 #endif 8813 } 8814 8815 #ifdef CONFIG_FTRACE_SELFTEST 8816 /* Let selftest have access to static functions in this file */ 8817 #include "trace_selftest.c" 8818 #endif 8819 8820 static ssize_t 8821 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt, 8822 loff_t *ppos) 8823 { 8824 struct trace_option_dentry *topt = filp->private_data; 8825 char *buf; 8826 8827 if (topt->flags->val & topt->opt->bit) 8828 buf = "1\n"; 8829 else 8830 buf = "0\n"; 8831 8832 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2); 8833 } 8834 8835 static ssize_t 8836 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt, 8837 loff_t *ppos) 8838 { 8839 struct trace_option_dentry *topt = filp->private_data; 8840 unsigned long val; 8841 int ret; 8842 8843 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 8844 if (ret) 8845 return ret; 8846 8847 if (val != 0 && val != 1) 8848 return -EINVAL; 8849 8850 if (!!(topt->flags->val & topt->opt->bit) != val) { 8851 mutex_lock(&trace_types_lock); 8852 ret = __set_tracer_option(topt->tr, topt->flags, 8853 topt->opt, !val); 8854 mutex_unlock(&trace_types_lock); 8855 if (ret) 8856 return ret; 8857 } 8858 8859 *ppos += cnt; 8860 8861 return cnt; 8862 } 8863 8864 8865 static const struct file_operations trace_options_fops = { 8866 .open = tracing_open_generic, 8867 .read = trace_options_read, 8868 .write = trace_options_write, 8869 .llseek = generic_file_llseek, 8870 }; 8871 8872 /* 8873 * In order to pass in both the trace_array descriptor as well as the index 8874 * to the flag that the trace option file represents, the trace_array 8875 * has a character array of trace_flags_index[], which holds the index 8876 * of the bit for the flag it represents. index[0] == 0, index[1] == 1, etc. 8877 * The address of this character array is passed to the flag option file 8878 * read/write callbacks. 8879 * 8880 * In order to extract both the index and the trace_array descriptor, 8881 * get_tr_index() uses the following algorithm. 8882 * 8883 * idx = *ptr; 8884 * 8885 * As the pointer itself contains the address of the index (remember 8886 * index[1] == 1). 8887 * 8888 * Then to get the trace_array descriptor, by subtracting that index 8889 * from the ptr, we get to the start of the index itself. 8890 * 8891 * ptr - idx == &index[0] 8892 * 8893 * Then a simple container_of() from that pointer gets us to the 8894 * trace_array descriptor. 8895 */ 8896 static void get_tr_index(void *data, struct trace_array **ptr, 8897 unsigned int *pindex) 8898 { 8899 *pindex = *(unsigned char *)data; 8900 8901 *ptr = container_of(data - *pindex, struct trace_array, 8902 trace_flags_index); 8903 } 8904 8905 static ssize_t 8906 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt, 8907 loff_t *ppos) 8908 { 8909 void *tr_index = filp->private_data; 8910 struct trace_array *tr; 8911 unsigned int index; 8912 char *buf; 8913 8914 get_tr_index(tr_index, &tr, &index); 8915 8916 if (tr->trace_flags & (1 << index)) 8917 buf = "1\n"; 8918 else 8919 buf = "0\n"; 8920 8921 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2); 8922 } 8923 8924 static ssize_t 8925 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt, 8926 loff_t *ppos) 8927 { 8928 void *tr_index = filp->private_data; 8929 struct trace_array *tr; 8930 unsigned int index; 8931 unsigned long val; 8932 int ret; 8933 8934 get_tr_index(tr_index, &tr, &index); 8935 8936 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 8937 if (ret) 8938 return ret; 8939 8940 if (val != 0 && val != 1) 8941 return -EINVAL; 8942 8943 mutex_lock(&event_mutex); 8944 mutex_lock(&trace_types_lock); 8945 ret = set_tracer_flag(tr, 1 << index, val); 8946 mutex_unlock(&trace_types_lock); 8947 mutex_unlock(&event_mutex); 8948 8949 if (ret < 0) 8950 return ret; 8951 8952 *ppos += cnt; 8953 8954 return cnt; 8955 } 8956 8957 static const struct file_operations trace_options_core_fops = { 8958 .open = tracing_open_generic, 8959 .read = trace_options_core_read, 8960 .write = trace_options_core_write, 8961 .llseek = generic_file_llseek, 8962 }; 8963 8964 struct dentry *trace_create_file(const char *name, 8965 umode_t mode, 8966 struct dentry *parent, 8967 void *data, 8968 const struct file_operations *fops) 8969 { 8970 struct dentry *ret; 8971 8972 ret = tracefs_create_file(name, mode, parent, data, fops); 8973 if (!ret) 8974 pr_warn("Could not create tracefs '%s' entry\n", name); 8975 8976 return ret; 8977 } 8978 8979 8980 static struct dentry *trace_options_init_dentry(struct trace_array *tr) 8981 { 8982 struct dentry *d_tracer; 8983 8984 if (tr->options) 8985 return tr->options; 8986 8987 d_tracer = tracing_get_dentry(tr); 8988 if (IS_ERR(d_tracer)) 8989 return NULL; 8990 8991 tr->options = tracefs_create_dir("options", d_tracer); 8992 if (!tr->options) { 8993 pr_warn("Could not create tracefs directory 'options'\n"); 8994 return NULL; 8995 } 8996 8997 return tr->options; 8998 } 8999 9000 static void 9001 create_trace_option_file(struct trace_array *tr, 9002 struct trace_option_dentry *topt, 9003 struct tracer_flags *flags, 9004 struct tracer_opt *opt) 9005 { 9006 struct dentry *t_options; 9007 9008 t_options = trace_options_init_dentry(tr); 9009 if (!t_options) 9010 return; 9011 9012 topt->flags = flags; 9013 topt->opt = opt; 9014 topt->tr = tr; 9015 9016 topt->entry = trace_create_file(opt->name, TRACE_MODE_WRITE, 9017 t_options, topt, &trace_options_fops); 9018 9019 } 9020 9021 static void 9022 create_trace_option_files(struct trace_array *tr, struct tracer *tracer) 9023 { 9024 struct trace_option_dentry *topts; 9025 struct trace_options *tr_topts; 9026 struct tracer_flags *flags; 9027 struct tracer_opt *opts; 9028 int cnt; 9029 int i; 9030 9031 if (!tracer) 9032 return; 9033 9034 flags = tracer->flags; 9035 9036 if (!flags || !flags->opts) 9037 return; 9038 9039 /* 9040 * If this is an instance, only create flags for tracers 9041 * the instance may have. 9042 */ 9043 if (!trace_ok_for_array(tracer, tr)) 9044 return; 9045 9046 for (i = 0; i < tr->nr_topts; i++) { 9047 /* Make sure there's no duplicate flags. */ 9048 if (WARN_ON_ONCE(tr->topts[i].tracer->flags == tracer->flags)) 9049 return; 9050 } 9051 9052 opts = flags->opts; 9053 9054 for (cnt = 0; opts[cnt].name; cnt++) 9055 ; 9056 9057 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL); 9058 if (!topts) 9059 return; 9060 9061 tr_topts = krealloc(tr->topts, sizeof(*tr->topts) * (tr->nr_topts + 1), 9062 GFP_KERNEL); 9063 if (!tr_topts) { 9064 kfree(topts); 9065 return; 9066 } 9067 9068 tr->topts = tr_topts; 9069 tr->topts[tr->nr_topts].tracer = tracer; 9070 tr->topts[tr->nr_topts].topts = topts; 9071 tr->nr_topts++; 9072 9073 for (cnt = 0; opts[cnt].name; cnt++) { 9074 create_trace_option_file(tr, &topts[cnt], flags, 9075 &opts[cnt]); 9076 MEM_FAIL(topts[cnt].entry == NULL, 9077 "Failed to create trace option: %s", 9078 opts[cnt].name); 9079 } 9080 } 9081 9082 static struct dentry * 9083 create_trace_option_core_file(struct trace_array *tr, 9084 const char *option, long index) 9085 { 9086 struct dentry *t_options; 9087 9088 t_options = trace_options_init_dentry(tr); 9089 if (!t_options) 9090 return NULL; 9091 9092 return trace_create_file(option, TRACE_MODE_WRITE, t_options, 9093 (void *)&tr->trace_flags_index[index], 9094 &trace_options_core_fops); 9095 } 9096 9097 static void create_trace_options_dir(struct trace_array *tr) 9098 { 9099 struct dentry *t_options; 9100 bool top_level = tr == &global_trace; 9101 int i; 9102 9103 t_options = trace_options_init_dentry(tr); 9104 if (!t_options) 9105 return; 9106 9107 for (i = 0; trace_options[i]; i++) { 9108 if (top_level || 9109 !((1 << i) & TOP_LEVEL_TRACE_FLAGS)) 9110 create_trace_option_core_file(tr, trace_options[i], i); 9111 } 9112 } 9113 9114 static ssize_t 9115 rb_simple_read(struct file *filp, char __user *ubuf, 9116 size_t cnt, loff_t *ppos) 9117 { 9118 struct trace_array *tr = filp->private_data; 9119 char buf[64]; 9120 int r; 9121 9122 r = tracer_tracing_is_on(tr); 9123 r = sprintf(buf, "%d\n", r); 9124 9125 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 9126 } 9127 9128 static ssize_t 9129 rb_simple_write(struct file *filp, const char __user *ubuf, 9130 size_t cnt, loff_t *ppos) 9131 { 9132 struct trace_array *tr = filp->private_data; 9133 struct trace_buffer *buffer = tr->array_buffer.buffer; 9134 unsigned long val; 9135 int ret; 9136 9137 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 9138 if (ret) 9139 return ret; 9140 9141 if (buffer) { 9142 mutex_lock(&trace_types_lock); 9143 if (!!val == tracer_tracing_is_on(tr)) { 9144 val = 0; /* do nothing */ 9145 } else if (val) { 9146 tracer_tracing_on(tr); 9147 if (tr->current_trace->start) 9148 tr->current_trace->start(tr); 9149 } else { 9150 tracer_tracing_off(tr); 9151 if (tr->current_trace->stop) 9152 tr->current_trace->stop(tr); 9153 /* Wake up any waiters */ 9154 ring_buffer_wake_waiters(buffer, RING_BUFFER_ALL_CPUS); 9155 } 9156 mutex_unlock(&trace_types_lock); 9157 } 9158 9159 (*ppos)++; 9160 9161 return cnt; 9162 } 9163 9164 static const struct file_operations rb_simple_fops = { 9165 .open = tracing_open_generic_tr, 9166 .read = rb_simple_read, 9167 .write = rb_simple_write, 9168 .release = tracing_release_generic_tr, 9169 .llseek = default_llseek, 9170 }; 9171 9172 static ssize_t 9173 buffer_percent_read(struct file *filp, char __user *ubuf, 9174 size_t cnt, loff_t *ppos) 9175 { 9176 struct trace_array *tr = filp->private_data; 9177 char buf[64]; 9178 int r; 9179 9180 r = tr->buffer_percent; 9181 r = sprintf(buf, "%d\n", r); 9182 9183 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 9184 } 9185 9186 static ssize_t 9187 buffer_percent_write(struct file *filp, const char __user *ubuf, 9188 size_t cnt, loff_t *ppos) 9189 { 9190 struct trace_array *tr = filp->private_data; 9191 unsigned long val; 9192 int ret; 9193 9194 ret = kstrtoul_from_user(ubuf, cnt, 10, &val); 9195 if (ret) 9196 return ret; 9197 9198 if (val > 100) 9199 return -EINVAL; 9200 9201 tr->buffer_percent = val; 9202 9203 (*ppos)++; 9204 9205 return cnt; 9206 } 9207 9208 static const struct file_operations buffer_percent_fops = { 9209 .open = tracing_open_generic_tr, 9210 .read = buffer_percent_read, 9211 .write = buffer_percent_write, 9212 .release = tracing_release_generic_tr, 9213 .llseek = default_llseek, 9214 }; 9215 9216 static struct dentry *trace_instance_dir; 9217 9218 static void 9219 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer); 9220 9221 static int 9222 allocate_trace_buffer(struct trace_array *tr, struct array_buffer *buf, int size) 9223 { 9224 enum ring_buffer_flags rb_flags; 9225 9226 rb_flags = tr->trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0; 9227 9228 buf->tr = tr; 9229 9230 buf->buffer = ring_buffer_alloc(size, rb_flags); 9231 if (!buf->buffer) 9232 return -ENOMEM; 9233 9234 buf->data = alloc_percpu(struct trace_array_cpu); 9235 if (!buf->data) { 9236 ring_buffer_free(buf->buffer); 9237 buf->buffer = NULL; 9238 return -ENOMEM; 9239 } 9240 9241 /* Allocate the first page for all buffers */ 9242 set_buffer_entries(&tr->array_buffer, 9243 ring_buffer_size(tr->array_buffer.buffer, 0)); 9244 9245 return 0; 9246 } 9247 9248 static void free_trace_buffer(struct array_buffer *buf) 9249 { 9250 if (buf->buffer) { 9251 ring_buffer_free(buf->buffer); 9252 buf->buffer = NULL; 9253 free_percpu(buf->data); 9254 buf->data = NULL; 9255 } 9256 } 9257 9258 static int allocate_trace_buffers(struct trace_array *tr, int size) 9259 { 9260 int ret; 9261 9262 ret = allocate_trace_buffer(tr, &tr->array_buffer, size); 9263 if (ret) 9264 return ret; 9265 9266 #ifdef CONFIG_TRACER_MAX_TRACE 9267 ret = allocate_trace_buffer(tr, &tr->max_buffer, 9268 allocate_snapshot ? size : 1); 9269 if (MEM_FAIL(ret, "Failed to allocate trace buffer\n")) { 9270 free_trace_buffer(&tr->array_buffer); 9271 return -ENOMEM; 9272 } 9273 tr->allocated_snapshot = allocate_snapshot; 9274 9275 allocate_snapshot = false; 9276 #endif 9277 9278 return 0; 9279 } 9280 9281 static void free_trace_buffers(struct trace_array *tr) 9282 { 9283 if (!tr) 9284 return; 9285 9286 free_trace_buffer(&tr->array_buffer); 9287 9288 #ifdef CONFIG_TRACER_MAX_TRACE 9289 free_trace_buffer(&tr->max_buffer); 9290 #endif 9291 } 9292 9293 static void init_trace_flags_index(struct trace_array *tr) 9294 { 9295 int i; 9296 9297 /* Used by the trace options files */ 9298 for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++) 9299 tr->trace_flags_index[i] = i; 9300 } 9301 9302 static void __update_tracer_options(struct trace_array *tr) 9303 { 9304 struct tracer *t; 9305 9306 for (t = trace_types; t; t = t->next) 9307 add_tracer_options(tr, t); 9308 } 9309 9310 static void update_tracer_options(struct trace_array *tr) 9311 { 9312 mutex_lock(&trace_types_lock); 9313 tracer_options_updated = true; 9314 __update_tracer_options(tr); 9315 mutex_unlock(&trace_types_lock); 9316 } 9317 9318 /* Must have trace_types_lock held */ 9319 struct trace_array *trace_array_find(const char *instance) 9320 { 9321 struct trace_array *tr, *found = NULL; 9322 9323 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 9324 if (tr->name && strcmp(tr->name, instance) == 0) { 9325 found = tr; 9326 break; 9327 } 9328 } 9329 9330 return found; 9331 } 9332 9333 struct trace_array *trace_array_find_get(const char *instance) 9334 { 9335 struct trace_array *tr; 9336 9337 mutex_lock(&trace_types_lock); 9338 tr = trace_array_find(instance); 9339 if (tr) 9340 tr->ref++; 9341 mutex_unlock(&trace_types_lock); 9342 9343 return tr; 9344 } 9345 9346 static int trace_array_create_dir(struct trace_array *tr) 9347 { 9348 int ret; 9349 9350 tr->dir = tracefs_create_dir(tr->name, trace_instance_dir); 9351 if (!tr->dir) 9352 return -EINVAL; 9353 9354 ret = event_trace_add_tracer(tr->dir, tr); 9355 if (ret) { 9356 tracefs_remove(tr->dir); 9357 return ret; 9358 } 9359 9360 init_tracer_tracefs(tr, tr->dir); 9361 __update_tracer_options(tr); 9362 9363 return ret; 9364 } 9365 9366 static struct trace_array *trace_array_create(const char *name) 9367 { 9368 struct trace_array *tr; 9369 int ret; 9370 9371 ret = -ENOMEM; 9372 tr = kzalloc(sizeof(*tr), GFP_KERNEL); 9373 if (!tr) 9374 return ERR_PTR(ret); 9375 9376 tr->name = kstrdup(name, GFP_KERNEL); 9377 if (!tr->name) 9378 goto out_free_tr; 9379 9380 if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL)) 9381 goto out_free_tr; 9382 9383 tr->trace_flags = global_trace.trace_flags & ~ZEROED_TRACE_FLAGS; 9384 9385 cpumask_copy(tr->tracing_cpumask, cpu_all_mask); 9386 9387 raw_spin_lock_init(&tr->start_lock); 9388 9389 tr->max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED; 9390 9391 tr->current_trace = &nop_trace; 9392 9393 INIT_LIST_HEAD(&tr->systems); 9394 INIT_LIST_HEAD(&tr->events); 9395 INIT_LIST_HEAD(&tr->hist_vars); 9396 INIT_LIST_HEAD(&tr->err_log); 9397 9398 if (allocate_trace_buffers(tr, trace_buf_size) < 0) 9399 goto out_free_tr; 9400 9401 if (ftrace_allocate_ftrace_ops(tr) < 0) 9402 goto out_free_tr; 9403 9404 ftrace_init_trace_array(tr); 9405 9406 init_trace_flags_index(tr); 9407 9408 if (trace_instance_dir) { 9409 ret = trace_array_create_dir(tr); 9410 if (ret) 9411 goto out_free_tr; 9412 } else 9413 __trace_early_add_events(tr); 9414 9415 list_add(&tr->list, &ftrace_trace_arrays); 9416 9417 tr->ref++; 9418 9419 return tr; 9420 9421 out_free_tr: 9422 ftrace_free_ftrace_ops(tr); 9423 free_trace_buffers(tr); 9424 free_cpumask_var(tr->tracing_cpumask); 9425 kfree(tr->name); 9426 kfree(tr); 9427 9428 return ERR_PTR(ret); 9429 } 9430 9431 static int instance_mkdir(const char *name) 9432 { 9433 struct trace_array *tr; 9434 int ret; 9435 9436 mutex_lock(&event_mutex); 9437 mutex_lock(&trace_types_lock); 9438 9439 ret = -EEXIST; 9440 if (trace_array_find(name)) 9441 goto out_unlock; 9442 9443 tr = trace_array_create(name); 9444 9445 ret = PTR_ERR_OR_ZERO(tr); 9446 9447 out_unlock: 9448 mutex_unlock(&trace_types_lock); 9449 mutex_unlock(&event_mutex); 9450 return ret; 9451 } 9452 9453 /** 9454 * trace_array_get_by_name - Create/Lookup a trace array, given its name. 9455 * @name: The name of the trace array to be looked up/created. 9456 * 9457 * Returns pointer to trace array with given name. 9458 * NULL, if it cannot be created. 9459 * 9460 * NOTE: This function increments the reference counter associated with the 9461 * trace array returned. This makes sure it cannot be freed while in use. 9462 * Use trace_array_put() once the trace array is no longer needed. 9463 * If the trace_array is to be freed, trace_array_destroy() needs to 9464 * be called after the trace_array_put(), or simply let user space delete 9465 * it from the tracefs instances directory. But until the 9466 * trace_array_put() is called, user space can not delete it. 9467 * 9468 */ 9469 struct trace_array *trace_array_get_by_name(const char *name) 9470 { 9471 struct trace_array *tr; 9472 9473 mutex_lock(&event_mutex); 9474 mutex_lock(&trace_types_lock); 9475 9476 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 9477 if (tr->name && strcmp(tr->name, name) == 0) 9478 goto out_unlock; 9479 } 9480 9481 tr = trace_array_create(name); 9482 9483 if (IS_ERR(tr)) 9484 tr = NULL; 9485 out_unlock: 9486 if (tr) 9487 tr->ref++; 9488 9489 mutex_unlock(&trace_types_lock); 9490 mutex_unlock(&event_mutex); 9491 return tr; 9492 } 9493 EXPORT_SYMBOL_GPL(trace_array_get_by_name); 9494 9495 static int __remove_instance(struct trace_array *tr) 9496 { 9497 int i; 9498 9499 /* Reference counter for a newly created trace array = 1. */ 9500 if (tr->ref > 1 || (tr->current_trace && tr->trace_ref)) 9501 return -EBUSY; 9502 9503 list_del(&tr->list); 9504 9505 /* Disable all the flags that were enabled coming in */ 9506 for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++) { 9507 if ((1 << i) & ZEROED_TRACE_FLAGS) 9508 set_tracer_flag(tr, 1 << i, 0); 9509 } 9510 9511 tracing_set_nop(tr); 9512 clear_ftrace_function_probes(tr); 9513 event_trace_del_tracer(tr); 9514 ftrace_clear_pids(tr); 9515 ftrace_destroy_function_files(tr); 9516 tracefs_remove(tr->dir); 9517 free_percpu(tr->last_func_repeats); 9518 free_trace_buffers(tr); 9519 9520 for (i = 0; i < tr->nr_topts; i++) { 9521 kfree(tr->topts[i].topts); 9522 } 9523 kfree(tr->topts); 9524 9525 free_cpumask_var(tr->tracing_cpumask); 9526 kfree(tr->name); 9527 kfree(tr); 9528 9529 return 0; 9530 } 9531 9532 int trace_array_destroy(struct trace_array *this_tr) 9533 { 9534 struct trace_array *tr; 9535 int ret; 9536 9537 if (!this_tr) 9538 return -EINVAL; 9539 9540 mutex_lock(&event_mutex); 9541 mutex_lock(&trace_types_lock); 9542 9543 ret = -ENODEV; 9544 9545 /* Making sure trace array exists before destroying it. */ 9546 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 9547 if (tr == this_tr) { 9548 ret = __remove_instance(tr); 9549 break; 9550 } 9551 } 9552 9553 mutex_unlock(&trace_types_lock); 9554 mutex_unlock(&event_mutex); 9555 9556 return ret; 9557 } 9558 EXPORT_SYMBOL_GPL(trace_array_destroy); 9559 9560 static int instance_rmdir(const char *name) 9561 { 9562 struct trace_array *tr; 9563 int ret; 9564 9565 mutex_lock(&event_mutex); 9566 mutex_lock(&trace_types_lock); 9567 9568 ret = -ENODEV; 9569 tr = trace_array_find(name); 9570 if (tr) 9571 ret = __remove_instance(tr); 9572 9573 mutex_unlock(&trace_types_lock); 9574 mutex_unlock(&event_mutex); 9575 9576 return ret; 9577 } 9578 9579 static __init void create_trace_instances(struct dentry *d_tracer) 9580 { 9581 struct trace_array *tr; 9582 9583 trace_instance_dir = tracefs_create_instance_dir("instances", d_tracer, 9584 instance_mkdir, 9585 instance_rmdir); 9586 if (MEM_FAIL(!trace_instance_dir, "Failed to create instances directory\n")) 9587 return; 9588 9589 mutex_lock(&event_mutex); 9590 mutex_lock(&trace_types_lock); 9591 9592 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 9593 if (!tr->name) 9594 continue; 9595 if (MEM_FAIL(trace_array_create_dir(tr) < 0, 9596 "Failed to create instance directory\n")) 9597 break; 9598 } 9599 9600 mutex_unlock(&trace_types_lock); 9601 mutex_unlock(&event_mutex); 9602 } 9603 9604 static void 9605 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer) 9606 { 9607 struct trace_event_file *file; 9608 int cpu; 9609 9610 trace_create_file("available_tracers", TRACE_MODE_READ, d_tracer, 9611 tr, &show_traces_fops); 9612 9613 trace_create_file("current_tracer", TRACE_MODE_WRITE, d_tracer, 9614 tr, &set_tracer_fops); 9615 9616 trace_create_file("tracing_cpumask", TRACE_MODE_WRITE, d_tracer, 9617 tr, &tracing_cpumask_fops); 9618 9619 trace_create_file("trace_options", TRACE_MODE_WRITE, d_tracer, 9620 tr, &tracing_iter_fops); 9621 9622 trace_create_file("trace", TRACE_MODE_WRITE, d_tracer, 9623 tr, &tracing_fops); 9624 9625 trace_create_file("trace_pipe", TRACE_MODE_READ, d_tracer, 9626 tr, &tracing_pipe_fops); 9627 9628 trace_create_file("buffer_size_kb", TRACE_MODE_WRITE, d_tracer, 9629 tr, &tracing_entries_fops); 9630 9631 trace_create_file("buffer_total_size_kb", TRACE_MODE_READ, d_tracer, 9632 tr, &tracing_total_entries_fops); 9633 9634 trace_create_file("free_buffer", 0200, d_tracer, 9635 tr, &tracing_free_buffer_fops); 9636 9637 trace_create_file("trace_marker", 0220, d_tracer, 9638 tr, &tracing_mark_fops); 9639 9640 file = __find_event_file(tr, "ftrace", "print"); 9641 if (file && file->dir) 9642 trace_create_file("trigger", TRACE_MODE_WRITE, file->dir, 9643 file, &event_trigger_fops); 9644 tr->trace_marker_file = file; 9645 9646 trace_create_file("trace_marker_raw", 0220, d_tracer, 9647 tr, &tracing_mark_raw_fops); 9648 9649 trace_create_file("trace_clock", TRACE_MODE_WRITE, d_tracer, tr, 9650 &trace_clock_fops); 9651 9652 trace_create_file("tracing_on", TRACE_MODE_WRITE, d_tracer, 9653 tr, &rb_simple_fops); 9654 9655 trace_create_file("timestamp_mode", TRACE_MODE_READ, d_tracer, tr, 9656 &trace_time_stamp_mode_fops); 9657 9658 tr->buffer_percent = 50; 9659 9660 trace_create_file("buffer_percent", TRACE_MODE_READ, d_tracer, 9661 tr, &buffer_percent_fops); 9662 9663 create_trace_options_dir(tr); 9664 9665 #ifdef CONFIG_TRACER_MAX_TRACE 9666 trace_create_maxlat_file(tr, d_tracer); 9667 #endif 9668 9669 if (ftrace_create_function_files(tr, d_tracer)) 9670 MEM_FAIL(1, "Could not allocate function filter files"); 9671 9672 #ifdef CONFIG_TRACER_SNAPSHOT 9673 trace_create_file("snapshot", TRACE_MODE_WRITE, d_tracer, 9674 tr, &snapshot_fops); 9675 #endif 9676 9677 trace_create_file("error_log", TRACE_MODE_WRITE, d_tracer, 9678 tr, &tracing_err_log_fops); 9679 9680 for_each_tracing_cpu(cpu) 9681 tracing_init_tracefs_percpu(tr, cpu); 9682 9683 ftrace_init_tracefs(tr, d_tracer); 9684 } 9685 9686 static struct vfsmount *trace_automount(struct dentry *mntpt, void *ingore) 9687 { 9688 struct vfsmount *mnt; 9689 struct file_system_type *type; 9690 9691 /* 9692 * To maintain backward compatibility for tools that mount 9693 * debugfs to get to the tracing facility, tracefs is automatically 9694 * mounted to the debugfs/tracing directory. 9695 */ 9696 type = get_fs_type("tracefs"); 9697 if (!type) 9698 return NULL; 9699 mnt = vfs_submount(mntpt, type, "tracefs", NULL); 9700 put_filesystem(type); 9701 if (IS_ERR(mnt)) 9702 return NULL; 9703 mntget(mnt); 9704 9705 return mnt; 9706 } 9707 9708 /** 9709 * tracing_init_dentry - initialize top level trace array 9710 * 9711 * This is called when creating files or directories in the tracing 9712 * directory. It is called via fs_initcall() by any of the boot up code 9713 * and expects to return the dentry of the top level tracing directory. 9714 */ 9715 int tracing_init_dentry(void) 9716 { 9717 struct trace_array *tr = &global_trace; 9718 9719 if (security_locked_down(LOCKDOWN_TRACEFS)) { 9720 pr_warn("Tracing disabled due to lockdown\n"); 9721 return -EPERM; 9722 } 9723 9724 /* The top level trace array uses NULL as parent */ 9725 if (tr->dir) 9726 return 0; 9727 9728 if (WARN_ON(!tracefs_initialized())) 9729 return -ENODEV; 9730 9731 /* 9732 * As there may still be users that expect the tracing 9733 * files to exist in debugfs/tracing, we must automount 9734 * the tracefs file system there, so older tools still 9735 * work with the newer kernel. 9736 */ 9737 tr->dir = debugfs_create_automount("tracing", NULL, 9738 trace_automount, NULL); 9739 9740 return 0; 9741 } 9742 9743 extern struct trace_eval_map *__start_ftrace_eval_maps[]; 9744 extern struct trace_eval_map *__stop_ftrace_eval_maps[]; 9745 9746 static struct workqueue_struct *eval_map_wq __initdata; 9747 static struct work_struct eval_map_work __initdata; 9748 static struct work_struct tracerfs_init_work __initdata; 9749 9750 static void __init eval_map_work_func(struct work_struct *work) 9751 { 9752 int len; 9753 9754 len = __stop_ftrace_eval_maps - __start_ftrace_eval_maps; 9755 trace_insert_eval_map(NULL, __start_ftrace_eval_maps, len); 9756 } 9757 9758 static int __init trace_eval_init(void) 9759 { 9760 INIT_WORK(&eval_map_work, eval_map_work_func); 9761 9762 eval_map_wq = alloc_workqueue("eval_map_wq", WQ_UNBOUND, 0); 9763 if (!eval_map_wq) { 9764 pr_err("Unable to allocate eval_map_wq\n"); 9765 /* Do work here */ 9766 eval_map_work_func(&eval_map_work); 9767 return -ENOMEM; 9768 } 9769 9770 queue_work(eval_map_wq, &eval_map_work); 9771 return 0; 9772 } 9773 9774 subsys_initcall(trace_eval_init); 9775 9776 static int __init trace_eval_sync(void) 9777 { 9778 /* Make sure the eval map updates are finished */ 9779 if (eval_map_wq) 9780 destroy_workqueue(eval_map_wq); 9781 return 0; 9782 } 9783 9784 late_initcall_sync(trace_eval_sync); 9785 9786 9787 #ifdef CONFIG_MODULES 9788 static void trace_module_add_evals(struct module *mod) 9789 { 9790 if (!mod->num_trace_evals) 9791 return; 9792 9793 /* 9794 * Modules with bad taint do not have events created, do 9795 * not bother with enums either. 9796 */ 9797 if (trace_module_has_bad_taint(mod)) 9798 return; 9799 9800 trace_insert_eval_map(mod, mod->trace_evals, mod->num_trace_evals); 9801 } 9802 9803 #ifdef CONFIG_TRACE_EVAL_MAP_FILE 9804 static void trace_module_remove_evals(struct module *mod) 9805 { 9806 union trace_eval_map_item *map; 9807 union trace_eval_map_item **last = &trace_eval_maps; 9808 9809 if (!mod->num_trace_evals) 9810 return; 9811 9812 mutex_lock(&trace_eval_mutex); 9813 9814 map = trace_eval_maps; 9815 9816 while (map) { 9817 if (map->head.mod == mod) 9818 break; 9819 map = trace_eval_jmp_to_tail(map); 9820 last = &map->tail.next; 9821 map = map->tail.next; 9822 } 9823 if (!map) 9824 goto out; 9825 9826 *last = trace_eval_jmp_to_tail(map)->tail.next; 9827 kfree(map); 9828 out: 9829 mutex_unlock(&trace_eval_mutex); 9830 } 9831 #else 9832 static inline void trace_module_remove_evals(struct module *mod) { } 9833 #endif /* CONFIG_TRACE_EVAL_MAP_FILE */ 9834 9835 static int trace_module_notify(struct notifier_block *self, 9836 unsigned long val, void *data) 9837 { 9838 struct module *mod = data; 9839 9840 switch (val) { 9841 case MODULE_STATE_COMING: 9842 trace_module_add_evals(mod); 9843 break; 9844 case MODULE_STATE_GOING: 9845 trace_module_remove_evals(mod); 9846 break; 9847 } 9848 9849 return NOTIFY_OK; 9850 } 9851 9852 static struct notifier_block trace_module_nb = { 9853 .notifier_call = trace_module_notify, 9854 .priority = 0, 9855 }; 9856 #endif /* CONFIG_MODULES */ 9857 9858 static __init void tracer_init_tracefs_work_func(struct work_struct *work) 9859 { 9860 9861 event_trace_init(); 9862 9863 init_tracer_tracefs(&global_trace, NULL); 9864 ftrace_init_tracefs_toplevel(&global_trace, NULL); 9865 9866 trace_create_file("tracing_thresh", TRACE_MODE_WRITE, NULL, 9867 &global_trace, &tracing_thresh_fops); 9868 9869 trace_create_file("README", TRACE_MODE_READ, NULL, 9870 NULL, &tracing_readme_fops); 9871 9872 trace_create_file("saved_cmdlines", TRACE_MODE_READ, NULL, 9873 NULL, &tracing_saved_cmdlines_fops); 9874 9875 trace_create_file("saved_cmdlines_size", TRACE_MODE_WRITE, NULL, 9876 NULL, &tracing_saved_cmdlines_size_fops); 9877 9878 trace_create_file("saved_tgids", TRACE_MODE_READ, NULL, 9879 NULL, &tracing_saved_tgids_fops); 9880 9881 trace_create_eval_file(NULL); 9882 9883 #ifdef CONFIG_MODULES 9884 register_module_notifier(&trace_module_nb); 9885 #endif 9886 9887 #ifdef CONFIG_DYNAMIC_FTRACE 9888 trace_create_file("dyn_ftrace_total_info", TRACE_MODE_READ, NULL, 9889 NULL, &tracing_dyn_info_fops); 9890 #endif 9891 9892 create_trace_instances(NULL); 9893 9894 update_tracer_options(&global_trace); 9895 } 9896 9897 static __init int tracer_init_tracefs(void) 9898 { 9899 int ret; 9900 9901 trace_access_lock_init(); 9902 9903 ret = tracing_init_dentry(); 9904 if (ret) 9905 return 0; 9906 9907 if (eval_map_wq) { 9908 INIT_WORK(&tracerfs_init_work, tracer_init_tracefs_work_func); 9909 queue_work(eval_map_wq, &tracerfs_init_work); 9910 } else { 9911 tracer_init_tracefs_work_func(NULL); 9912 } 9913 9914 rv_init_interface(); 9915 9916 return 0; 9917 } 9918 9919 fs_initcall(tracer_init_tracefs); 9920 9921 static int trace_die_panic_handler(struct notifier_block *self, 9922 unsigned long ev, void *unused); 9923 9924 static struct notifier_block trace_panic_notifier = { 9925 .notifier_call = trace_die_panic_handler, 9926 .priority = INT_MAX - 1, 9927 }; 9928 9929 static struct notifier_block trace_die_notifier = { 9930 .notifier_call = trace_die_panic_handler, 9931 .priority = INT_MAX - 1, 9932 }; 9933 9934 /* 9935 * The idea is to execute the following die/panic callback early, in order 9936 * to avoid showing irrelevant information in the trace (like other panic 9937 * notifier functions); we are the 2nd to run, after hung_task/rcu_stall 9938 * warnings get disabled (to prevent potential log flooding). 9939 */ 9940 static int trace_die_panic_handler(struct notifier_block *self, 9941 unsigned long ev, void *unused) 9942 { 9943 if (!ftrace_dump_on_oops) 9944 return NOTIFY_DONE; 9945 9946 /* The die notifier requires DIE_OOPS to trigger */ 9947 if (self == &trace_die_notifier && ev != DIE_OOPS) 9948 return NOTIFY_DONE; 9949 9950 ftrace_dump(ftrace_dump_on_oops); 9951 9952 return NOTIFY_DONE; 9953 } 9954 9955 /* 9956 * printk is set to max of 1024, we really don't need it that big. 9957 * Nothing should be printing 1000 characters anyway. 9958 */ 9959 #define TRACE_MAX_PRINT 1000 9960 9961 /* 9962 * Define here KERN_TRACE so that we have one place to modify 9963 * it if we decide to change what log level the ftrace dump 9964 * should be at. 9965 */ 9966 #define KERN_TRACE KERN_EMERG 9967 9968 void 9969 trace_printk_seq(struct trace_seq *s) 9970 { 9971 /* Probably should print a warning here. */ 9972 if (s->seq.len >= TRACE_MAX_PRINT) 9973 s->seq.len = TRACE_MAX_PRINT; 9974 9975 /* 9976 * More paranoid code. Although the buffer size is set to 9977 * PAGE_SIZE, and TRACE_MAX_PRINT is 1000, this is just 9978 * an extra layer of protection. 9979 */ 9980 if (WARN_ON_ONCE(s->seq.len >= s->seq.size)) 9981 s->seq.len = s->seq.size - 1; 9982 9983 /* should be zero ended, but we are paranoid. */ 9984 s->buffer[s->seq.len] = 0; 9985 9986 printk(KERN_TRACE "%s", s->buffer); 9987 9988 trace_seq_init(s); 9989 } 9990 9991 void trace_init_global_iter(struct trace_iterator *iter) 9992 { 9993 iter->tr = &global_trace; 9994 iter->trace = iter->tr->current_trace; 9995 iter->cpu_file = RING_BUFFER_ALL_CPUS; 9996 iter->array_buffer = &global_trace.array_buffer; 9997 9998 if (iter->trace && iter->trace->open) 9999 iter->trace->open(iter); 10000 10001 /* Annotate start of buffers if we had overruns */ 10002 if (ring_buffer_overruns(iter->array_buffer->buffer)) 10003 iter->iter_flags |= TRACE_FILE_ANNOTATE; 10004 10005 /* Output in nanoseconds only if we are using a clock in nanoseconds. */ 10006 if (trace_clocks[iter->tr->clock_id].in_ns) 10007 iter->iter_flags |= TRACE_FILE_TIME_IN_NS; 10008 10009 /* Can not use kmalloc for iter.temp and iter.fmt */ 10010 iter->temp = static_temp_buf; 10011 iter->temp_size = STATIC_TEMP_BUF_SIZE; 10012 iter->fmt = static_fmt_buf; 10013 iter->fmt_size = STATIC_FMT_BUF_SIZE; 10014 } 10015 10016 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) 10017 { 10018 /* use static because iter can be a bit big for the stack */ 10019 static struct trace_iterator iter; 10020 static atomic_t dump_running; 10021 struct trace_array *tr = &global_trace; 10022 unsigned int old_userobj; 10023 unsigned long flags; 10024 int cnt = 0, cpu; 10025 10026 /* Only allow one dump user at a time. */ 10027 if (atomic_inc_return(&dump_running) != 1) { 10028 atomic_dec(&dump_running); 10029 return; 10030 } 10031 10032 /* 10033 * Always turn off tracing when we dump. 10034 * We don't need to show trace output of what happens 10035 * between multiple crashes. 10036 * 10037 * If the user does a sysrq-z, then they can re-enable 10038 * tracing with echo 1 > tracing_on. 10039 */ 10040 tracing_off(); 10041 10042 local_irq_save(flags); 10043 10044 /* Simulate the iterator */ 10045 trace_init_global_iter(&iter); 10046 10047 for_each_tracing_cpu(cpu) { 10048 atomic_inc(&per_cpu_ptr(iter.array_buffer->data, cpu)->disabled); 10049 } 10050 10051 old_userobj = tr->trace_flags & TRACE_ITER_SYM_USEROBJ; 10052 10053 /* don't look at user memory in panic mode */ 10054 tr->trace_flags &= ~TRACE_ITER_SYM_USEROBJ; 10055 10056 switch (oops_dump_mode) { 10057 case DUMP_ALL: 10058 iter.cpu_file = RING_BUFFER_ALL_CPUS; 10059 break; 10060 case DUMP_ORIG: 10061 iter.cpu_file = raw_smp_processor_id(); 10062 break; 10063 case DUMP_NONE: 10064 goto out_enable; 10065 default: 10066 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n"); 10067 iter.cpu_file = RING_BUFFER_ALL_CPUS; 10068 } 10069 10070 printk(KERN_TRACE "Dumping ftrace buffer:\n"); 10071 10072 /* Did function tracer already get disabled? */ 10073 if (ftrace_is_dead()) { 10074 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n"); 10075 printk("# MAY BE MISSING FUNCTION EVENTS\n"); 10076 } 10077 10078 /* 10079 * We need to stop all tracing on all CPUS to read 10080 * the next buffer. This is a bit expensive, but is 10081 * not done often. We fill all what we can read, 10082 * and then release the locks again. 10083 */ 10084 10085 while (!trace_empty(&iter)) { 10086 10087 if (!cnt) 10088 printk(KERN_TRACE "---------------------------------\n"); 10089 10090 cnt++; 10091 10092 trace_iterator_reset(&iter); 10093 iter.iter_flags |= TRACE_FILE_LAT_FMT; 10094 10095 if (trace_find_next_entry_inc(&iter) != NULL) { 10096 int ret; 10097 10098 ret = print_trace_line(&iter); 10099 if (ret != TRACE_TYPE_NO_CONSUME) 10100 trace_consume(&iter); 10101 } 10102 touch_nmi_watchdog(); 10103 10104 trace_printk_seq(&iter.seq); 10105 } 10106 10107 if (!cnt) 10108 printk(KERN_TRACE " (ftrace buffer empty)\n"); 10109 else 10110 printk(KERN_TRACE "---------------------------------\n"); 10111 10112 out_enable: 10113 tr->trace_flags |= old_userobj; 10114 10115 for_each_tracing_cpu(cpu) { 10116 atomic_dec(&per_cpu_ptr(iter.array_buffer->data, cpu)->disabled); 10117 } 10118 atomic_dec(&dump_running); 10119 local_irq_restore(flags); 10120 } 10121 EXPORT_SYMBOL_GPL(ftrace_dump); 10122 10123 #define WRITE_BUFSIZE 4096 10124 10125 ssize_t trace_parse_run_command(struct file *file, const char __user *buffer, 10126 size_t count, loff_t *ppos, 10127 int (*createfn)(const char *)) 10128 { 10129 char *kbuf, *buf, *tmp; 10130 int ret = 0; 10131 size_t done = 0; 10132 size_t size; 10133 10134 kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL); 10135 if (!kbuf) 10136 return -ENOMEM; 10137 10138 while (done < count) { 10139 size = count - done; 10140 10141 if (size >= WRITE_BUFSIZE) 10142 size = WRITE_BUFSIZE - 1; 10143 10144 if (copy_from_user(kbuf, buffer + done, size)) { 10145 ret = -EFAULT; 10146 goto out; 10147 } 10148 kbuf[size] = '\0'; 10149 buf = kbuf; 10150 do { 10151 tmp = strchr(buf, '\n'); 10152 if (tmp) { 10153 *tmp = '\0'; 10154 size = tmp - buf + 1; 10155 } else { 10156 size = strlen(buf); 10157 if (done + size < count) { 10158 if (buf != kbuf) 10159 break; 10160 /* This can accept WRITE_BUFSIZE - 2 ('\n' + '\0') */ 10161 pr_warn("Line length is too long: Should be less than %d\n", 10162 WRITE_BUFSIZE - 2); 10163 ret = -EINVAL; 10164 goto out; 10165 } 10166 } 10167 done += size; 10168 10169 /* Remove comments */ 10170 tmp = strchr(buf, '#'); 10171 10172 if (tmp) 10173 *tmp = '\0'; 10174 10175 ret = createfn(buf); 10176 if (ret) 10177 goto out; 10178 buf += size; 10179 10180 } while (done < count); 10181 } 10182 ret = done; 10183 10184 out: 10185 kfree(kbuf); 10186 10187 return ret; 10188 } 10189 10190 #ifdef CONFIG_TRACER_MAX_TRACE 10191 __init static bool tr_needs_alloc_snapshot(const char *name) 10192 { 10193 char *test; 10194 int len = strlen(name); 10195 bool ret; 10196 10197 if (!boot_snapshot_index) 10198 return false; 10199 10200 if (strncmp(name, boot_snapshot_info, len) == 0 && 10201 boot_snapshot_info[len] == '\t') 10202 return true; 10203 10204 test = kmalloc(strlen(name) + 3, GFP_KERNEL); 10205 if (!test) 10206 return false; 10207 10208 sprintf(test, "\t%s\t", name); 10209 ret = strstr(boot_snapshot_info, test) == NULL; 10210 kfree(test); 10211 return ret; 10212 } 10213 10214 __init static void do_allocate_snapshot(const char *name) 10215 { 10216 if (!tr_needs_alloc_snapshot(name)) 10217 return; 10218 10219 /* 10220 * When allocate_snapshot is set, the next call to 10221 * allocate_trace_buffers() (called by trace_array_get_by_name()) 10222 * will allocate the snapshot buffer. That will alse clear 10223 * this flag. 10224 */ 10225 allocate_snapshot = true; 10226 } 10227 #else 10228 static inline void do_allocate_snapshot(const char *name) { } 10229 #endif 10230 10231 __init static void enable_instances(void) 10232 { 10233 struct trace_array *tr; 10234 char *curr_str; 10235 char *str; 10236 char *tok; 10237 10238 /* A tab is always appended */ 10239 boot_instance_info[boot_instance_index - 1] = '\0'; 10240 str = boot_instance_info; 10241 10242 while ((curr_str = strsep(&str, "\t"))) { 10243 10244 tok = strsep(&curr_str, ","); 10245 10246 if (IS_ENABLED(CONFIG_TRACER_MAX_TRACE)) 10247 do_allocate_snapshot(tok); 10248 10249 tr = trace_array_get_by_name(tok); 10250 if (!tr) { 10251 pr_warn("Failed to create instance buffer %s\n", curr_str); 10252 continue; 10253 } 10254 /* Allow user space to delete it */ 10255 trace_array_put(tr); 10256 10257 while ((tok = strsep(&curr_str, ","))) { 10258 early_enable_events(tr, tok, true); 10259 } 10260 } 10261 } 10262 10263 __init static int tracer_alloc_buffers(void) 10264 { 10265 int ring_buf_size; 10266 int ret = -ENOMEM; 10267 10268 10269 if (security_locked_down(LOCKDOWN_TRACEFS)) { 10270 pr_warn("Tracing disabled due to lockdown\n"); 10271 return -EPERM; 10272 } 10273 10274 /* 10275 * Make sure we don't accidentally add more trace options 10276 * than we have bits for. 10277 */ 10278 BUILD_BUG_ON(TRACE_ITER_LAST_BIT > TRACE_FLAGS_MAX_SIZE); 10279 10280 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL)) 10281 goto out; 10282 10283 if (!alloc_cpumask_var(&global_trace.tracing_cpumask, GFP_KERNEL)) 10284 goto out_free_buffer_mask; 10285 10286 /* Only allocate trace_printk buffers if a trace_printk exists */ 10287 if (&__stop___trace_bprintk_fmt != &__start___trace_bprintk_fmt) 10288 /* Must be called before global_trace.buffer is allocated */ 10289 trace_printk_init_buffers(); 10290 10291 /* To save memory, keep the ring buffer size to its minimum */ 10292 if (ring_buffer_expanded) 10293 ring_buf_size = trace_buf_size; 10294 else 10295 ring_buf_size = 1; 10296 10297 cpumask_copy(tracing_buffer_mask, cpu_possible_mask); 10298 cpumask_copy(global_trace.tracing_cpumask, cpu_all_mask); 10299 10300 raw_spin_lock_init(&global_trace.start_lock); 10301 10302 /* 10303 * The prepare callbacks allocates some memory for the ring buffer. We 10304 * don't free the buffer if the CPU goes down. If we were to free 10305 * the buffer, then the user would lose any trace that was in the 10306 * buffer. The memory will be removed once the "instance" is removed. 10307 */ 10308 ret = cpuhp_setup_state_multi(CPUHP_TRACE_RB_PREPARE, 10309 "trace/RB:prepare", trace_rb_cpu_prepare, 10310 NULL); 10311 if (ret < 0) 10312 goto out_free_cpumask; 10313 /* Used for event triggers */ 10314 ret = -ENOMEM; 10315 temp_buffer = ring_buffer_alloc(PAGE_SIZE, RB_FL_OVERWRITE); 10316 if (!temp_buffer) 10317 goto out_rm_hp_state; 10318 10319 if (trace_create_savedcmd() < 0) 10320 goto out_free_temp_buffer; 10321 10322 /* TODO: make the number of buffers hot pluggable with CPUS */ 10323 if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) { 10324 MEM_FAIL(1, "tracer: failed to allocate ring buffer!\n"); 10325 goto out_free_savedcmd; 10326 } 10327 10328 if (global_trace.buffer_disabled) 10329 tracing_off(); 10330 10331 if (trace_boot_clock) { 10332 ret = tracing_set_clock(&global_trace, trace_boot_clock); 10333 if (ret < 0) 10334 pr_warn("Trace clock %s not defined, going back to default\n", 10335 trace_boot_clock); 10336 } 10337 10338 /* 10339 * register_tracer() might reference current_trace, so it 10340 * needs to be set before we register anything. This is 10341 * just a bootstrap of current_trace anyway. 10342 */ 10343 global_trace.current_trace = &nop_trace; 10344 10345 global_trace.max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED; 10346 10347 ftrace_init_global_array_ops(&global_trace); 10348 10349 init_trace_flags_index(&global_trace); 10350 10351 register_tracer(&nop_trace); 10352 10353 /* Function tracing may start here (via kernel command line) */ 10354 init_function_trace(); 10355 10356 /* All seems OK, enable tracing */ 10357 tracing_disabled = 0; 10358 10359 atomic_notifier_chain_register(&panic_notifier_list, 10360 &trace_panic_notifier); 10361 10362 register_die_notifier(&trace_die_notifier); 10363 10364 global_trace.flags = TRACE_ARRAY_FL_GLOBAL; 10365 10366 INIT_LIST_HEAD(&global_trace.systems); 10367 INIT_LIST_HEAD(&global_trace.events); 10368 INIT_LIST_HEAD(&global_trace.hist_vars); 10369 INIT_LIST_HEAD(&global_trace.err_log); 10370 list_add(&global_trace.list, &ftrace_trace_arrays); 10371 10372 apply_trace_boot_options(); 10373 10374 register_snapshot_cmd(); 10375 10376 test_can_verify(); 10377 10378 return 0; 10379 10380 out_free_savedcmd: 10381 free_saved_cmdlines_buffer(savedcmd); 10382 out_free_temp_buffer: 10383 ring_buffer_free(temp_buffer); 10384 out_rm_hp_state: 10385 cpuhp_remove_multi_state(CPUHP_TRACE_RB_PREPARE); 10386 out_free_cpumask: 10387 free_cpumask_var(global_trace.tracing_cpumask); 10388 out_free_buffer_mask: 10389 free_cpumask_var(tracing_buffer_mask); 10390 out: 10391 return ret; 10392 } 10393 10394 void __init ftrace_boot_snapshot(void) 10395 { 10396 struct trace_array *tr; 10397 10398 if (snapshot_at_boot) { 10399 tracing_snapshot(); 10400 internal_trace_puts("** Boot snapshot taken **\n"); 10401 } 10402 10403 list_for_each_entry(tr, &ftrace_trace_arrays, list) { 10404 if (tr == &global_trace) 10405 continue; 10406 trace_array_puts(tr, "** Boot snapshot taken **\n"); 10407 tracing_snapshot_instance(tr); 10408 } 10409 } 10410 10411 void __init early_trace_init(void) 10412 { 10413 if (tracepoint_printk) { 10414 tracepoint_print_iter = 10415 kzalloc(sizeof(*tracepoint_print_iter), GFP_KERNEL); 10416 if (MEM_FAIL(!tracepoint_print_iter, 10417 "Failed to allocate trace iterator\n")) 10418 tracepoint_printk = 0; 10419 else 10420 static_key_enable(&tracepoint_printk_key.key); 10421 } 10422 tracer_alloc_buffers(); 10423 10424 init_events(); 10425 } 10426 10427 void __init trace_init(void) 10428 { 10429 trace_event_init(); 10430 10431 if (boot_instance_index) 10432 enable_instances(); 10433 } 10434 10435 __init static void clear_boot_tracer(void) 10436 { 10437 /* 10438 * The default tracer at boot buffer is an init section. 10439 * This function is called in lateinit. If we did not 10440 * find the boot tracer, then clear it out, to prevent 10441 * later registration from accessing the buffer that is 10442 * about to be freed. 10443 */ 10444 if (!default_bootup_tracer) 10445 return; 10446 10447 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n", 10448 default_bootup_tracer); 10449 default_bootup_tracer = NULL; 10450 } 10451 10452 #ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK 10453 __init static void tracing_set_default_clock(void) 10454 { 10455 /* sched_clock_stable() is determined in late_initcall */ 10456 if (!trace_boot_clock && !sched_clock_stable()) { 10457 if (security_locked_down(LOCKDOWN_TRACEFS)) { 10458 pr_warn("Can not set tracing clock due to lockdown\n"); 10459 return; 10460 } 10461 10462 printk(KERN_WARNING 10463 "Unstable clock detected, switching default tracing clock to \"global\"\n" 10464 "If you want to keep using the local clock, then add:\n" 10465 " \"trace_clock=local\"\n" 10466 "on the kernel command line\n"); 10467 tracing_set_clock(&global_trace, "global"); 10468 } 10469 } 10470 #else 10471 static inline void tracing_set_default_clock(void) { } 10472 #endif 10473 10474 __init static int late_trace_init(void) 10475 { 10476 if (tracepoint_printk && tracepoint_printk_stop_on_boot) { 10477 static_key_disable(&tracepoint_printk_key.key); 10478 tracepoint_printk = 0; 10479 } 10480 10481 tracing_set_default_clock(); 10482 clear_boot_tracer(); 10483 return 0; 10484 } 10485 10486 late_initcall_sync(late_trace_init); 10487