tracing: Only run synchronize_sched() at instance deletion time
[deliverable/linux.git] / kernel / trace / trace_syscalls.c
CommitLineData
47788c58 1#include <trace/syscall.h>
1c569f02 2#include <trace/events/syscalls.h>
f431b634 3#include <linux/syscalls.h>
5a0e3ad6 4#include <linux/slab.h>
ee08c6ec 5#include <linux/kernel.h>
56d82e00 6#include <linux/module.h> /* for MODULE_NAME_LEN via KSYM_SYMBOL_LEN */
fb34a08c 7#include <linux/ftrace.h>
cdd6c482 8#include <linux/perf_event.h>
ee08c6ec
FW
9#include <asm/syscall.h>
10
11#include "trace_output.h"
12#include "trace.h"
13
5be71b61 14static DEFINE_MUTEX(syscall_trace_lock);
ee08c6ec 15
2239291a 16static int syscall_enter_register(struct ftrace_event_call *event,
ceec0b6f 17 enum trace_reg type, void *data);
2239291a 18static int syscall_exit_register(struct ftrace_event_call *event,
ceec0b6f 19 enum trace_reg type, void *data);
2239291a 20
2e33af02
SR
21static struct list_head *
22syscall_get_enter_fields(struct ftrace_event_call *call)
23{
24 struct syscall_metadata *entry = call->data;
25
26 return &entry->enter_fields;
27}
28
3d56e331
SR
29extern struct syscall_metadata *__start_syscalls_metadata[];
30extern struct syscall_metadata *__stop_syscalls_metadata[];
c44fc770
FW
31
32static struct syscall_metadata **syscalls_metadata;
33
b2d55496
IM
34#ifndef ARCH_HAS_SYSCALL_MATCH_SYM_NAME
35static inline bool arch_syscall_match_sym_name(const char *sym, const char *name)
36{
37 /*
38 * Only compare after the "sys" prefix. Archs that use
39 * syscall wrappers may have syscalls symbols aliases prefixed
36a78e9e 40 * with ".SyS" or ".sys" instead of "sys", leading to an unwanted
b2d55496
IM
41 * mismatch.
42 */
43 return !strcmp(sym + 3, name + 3);
44}
45#endif
46
f431b634
SR
47#ifdef ARCH_TRACE_IGNORE_COMPAT_SYSCALLS
48/*
49 * Some architectures that allow for 32bit applications
50 * to run on a 64bit kernel, do not map the syscalls for
51 * the 32bit tasks the same as they do for 64bit tasks.
52 *
53 * *cough*x86*cough*
54 *
55 * In such a case, instead of reporting the wrong syscalls,
56 * simply ignore them.
57 *
58 * For an arch to ignore the compat syscalls it needs to
59 * define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS as well as
60 * define the function arch_trace_is_compat_syscall() to let
61 * the tracing system know that it should ignore it.
62 */
63static int
64trace_get_syscall_nr(struct task_struct *task, struct pt_regs *regs)
65{
66 if (unlikely(arch_trace_is_compat_syscall(regs)))
67 return -1;
68
69 return syscall_get_nr(task, regs);
70}
71#else
72static inline int
73trace_get_syscall_nr(struct task_struct *task, struct pt_regs *regs)
74{
75 return syscall_get_nr(task, regs);
76}
77#endif /* ARCH_TRACE_IGNORE_COMPAT_SYSCALLS */
78
3d56e331
SR
79static __init struct syscall_metadata *
80find_syscall_meta(unsigned long syscall)
c44fc770 81{
3d56e331
SR
82 struct syscall_metadata **start;
83 struct syscall_metadata **stop;
c44fc770
FW
84 char str[KSYM_SYMBOL_LEN];
85
86
3d56e331
SR
87 start = __start_syscalls_metadata;
88 stop = __stop_syscalls_metadata;
c44fc770
FW
89 kallsyms_lookup(syscall, NULL, NULL, NULL, str);
90
ae07f551
IM
91 if (arch_syscall_match_sym_name(str, "sys_ni_syscall"))
92 return NULL;
93
c44fc770 94 for ( ; start < stop; start++) {
b2d55496 95 if ((*start)->name && arch_syscall_match_sym_name(str, (*start)->name))
3d56e331 96 return *start;
c44fc770
FW
97 }
98 return NULL;
99}
100
101static struct syscall_metadata *syscall_nr_to_meta(int nr)
102{
103 if (!syscalls_metadata || nr >= NR_syscalls || nr < 0)
104 return NULL;
105
106 return syscalls_metadata[nr];
107}
108
6aea49cb 109static enum print_line_t
a9a57763
SR
110print_syscall_enter(struct trace_iterator *iter, int flags,
111 struct trace_event *event)
bed1ffca
FW
112{
113 struct trace_seq *s = &iter->seq;
114 struct trace_entry *ent = iter->ent;
115 struct syscall_trace_enter *trace;
116 struct syscall_metadata *entry;
117 int i, ret, syscall;
118
64c12e04 119 trace = (typeof(trace))ent;
bed1ffca 120 syscall = trace->nr;
bed1ffca 121 entry = syscall_nr_to_meta(syscall);
64c12e04 122
bed1ffca
FW
123 if (!entry)
124 goto end;
125
32c0edae 126 if (entry->enter_event->event.type != ent->type) {
64c12e04
JB
127 WARN_ON_ONCE(1);
128 goto end;
129 }
130
bed1ffca
FW
131 ret = trace_seq_printf(s, "%s(", entry->name);
132 if (!ret)
133 return TRACE_TYPE_PARTIAL_LINE;
134
135 for (i = 0; i < entry->nb_args; i++) {
136 /* parameter types */
ba8b3a40 137 if (trace_flags & TRACE_ITER_VERBOSE) {
bed1ffca
FW
138 ret = trace_seq_printf(s, "%s ", entry->types[i]);
139 if (!ret)
140 return TRACE_TYPE_PARTIAL_LINE;
141 }
142 /* parameter values */
4539f077 143 ret = trace_seq_printf(s, "%s: %lx%s", entry->args[i],
bed1ffca 144 trace->args[i],
4539f077 145 i == entry->nb_args - 1 ? "" : ", ");
bed1ffca
FW
146 if (!ret)
147 return TRACE_TYPE_PARTIAL_LINE;
148 }
149
4539f077
LZ
150 ret = trace_seq_putc(s, ')');
151 if (!ret)
152 return TRACE_TYPE_PARTIAL_LINE;
153
bed1ffca 154end:
4539f077
LZ
155 ret = trace_seq_putc(s, '\n');
156 if (!ret)
157 return TRACE_TYPE_PARTIAL_LINE;
158
bed1ffca
FW
159 return TRACE_TYPE_HANDLED;
160}
161
6aea49cb 162static enum print_line_t
a9a57763
SR
163print_syscall_exit(struct trace_iterator *iter, int flags,
164 struct trace_event *event)
bed1ffca
FW
165{
166 struct trace_seq *s = &iter->seq;
167 struct trace_entry *ent = iter->ent;
168 struct syscall_trace_exit *trace;
169 int syscall;
170 struct syscall_metadata *entry;
171 int ret;
172
64c12e04 173 trace = (typeof(trace))ent;
bed1ffca 174 syscall = trace->nr;
bed1ffca 175 entry = syscall_nr_to_meta(syscall);
64c12e04 176
bed1ffca 177 if (!entry) {
146c3442 178 trace_seq_putc(s, '\n');
bed1ffca
FW
179 return TRACE_TYPE_HANDLED;
180 }
181
32c0edae 182 if (entry->exit_event->event.type != ent->type) {
64c12e04
JB
183 WARN_ON_ONCE(1);
184 return TRACE_TYPE_UNHANDLED;
185 }
186
bed1ffca
FW
187 ret = trace_seq_printf(s, "%s -> 0x%lx\n", entry->name,
188 trace->ret);
189 if (!ret)
190 return TRACE_TYPE_PARTIAL_LINE;
191
192 return TRACE_TYPE_HANDLED;
193}
194
e6971969
LZ
195extern char *__bad_type_size(void);
196
197#define SYSCALL_FIELD(type, name) \
198 sizeof(type) != sizeof(trace.name) ? \
199 __bad_type_size() : \
26a50744
TZ
200 #type, #name, offsetof(typeof(trace), name), \
201 sizeof(trace.name), is_signed_type(type)
e6971969 202
3ddc77f6
LZ
203static int __init
204__set_enter_print_fmt(struct syscall_metadata *entry, char *buf, int len)
50307a45
LJ
205{
206 int i;
207 int pos = 0;
208
209 /* When len=0, we just calculate the needed length */
210#define LEN_OR_ZERO (len ? len - pos : 0)
211
212 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"");
213 for (i = 0; i < entry->nb_args; i++) {
214 pos += snprintf(buf + pos, LEN_OR_ZERO, "%s: 0x%%0%zulx%s",
215 entry->args[i], sizeof(unsigned long),
216 i == entry->nb_args - 1 ? "" : ", ");
217 }
218 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"");
219
220 for (i = 0; i < entry->nb_args; i++) {
221 pos += snprintf(buf + pos, LEN_OR_ZERO,
222 ", ((unsigned long)(REC->%s))", entry->args[i]);
223 }
224
225#undef LEN_OR_ZERO
226
227 /* return the length of print_fmt */
228 return pos;
229}
230
3ddc77f6 231static int __init set_syscall_print_fmt(struct ftrace_event_call *call)
50307a45
LJ
232{
233 char *print_fmt;
234 int len;
235 struct syscall_metadata *entry = call->data;
236
237 if (entry->enter_event != call) {
238 call->print_fmt = "\"0x%lx\", REC->ret";
239 return 0;
240 }
241
242 /* First: called with 0 length to calculate the needed length */
243 len = __set_enter_print_fmt(entry, NULL, 0);
244
245 print_fmt = kmalloc(len + 1, GFP_KERNEL);
246 if (!print_fmt)
247 return -ENOMEM;
248
249 /* Second: actually write the @print_fmt */
250 __set_enter_print_fmt(entry, print_fmt, len + 1);
251 call->print_fmt = print_fmt;
252
253 return 0;
254}
255
3ddc77f6 256static void __init free_syscall_print_fmt(struct ftrace_event_call *call)
50307a45
LJ
257{
258 struct syscall_metadata *entry = call->data;
259
260 if (entry->enter_event == call)
261 kfree(call->print_fmt);
262}
263
b8aae39f 264static int __init syscall_enter_define_fields(struct ftrace_event_call *call)
540b7b8d
LZ
265{
266 struct syscall_trace_enter trace;
31c16b13 267 struct syscall_metadata *meta = call->data;
540b7b8d 268 int ret;
540b7b8d
LZ
269 int i;
270 int offset = offsetof(typeof(trace), args);
271
0f1ef51d
LJ
272 ret = trace_define_field(call, SYSCALL_FIELD(int, nr), FILTER_OTHER);
273 if (ret)
274 return ret;
275
540b7b8d 276 for (i = 0; i < meta->nb_args; i++) {
aeaeae11
FW
277 ret = trace_define_field(call, meta->types[i],
278 meta->args[i], offset,
43b51ead
LZ
279 sizeof(unsigned long), 0,
280 FILTER_OTHER);
540b7b8d
LZ
281 offset += sizeof(unsigned long);
282 }
283
284 return ret;
285}
286
b8aae39f 287static int __init syscall_exit_define_fields(struct ftrace_event_call *call)
540b7b8d
LZ
288{
289 struct syscall_trace_exit trace;
290 int ret;
291
0f1ef51d
LJ
292 ret = trace_define_field(call, SYSCALL_FIELD(int, nr), FILTER_OTHER);
293 if (ret)
294 return ret;
295
26a50744 296 ret = trace_define_field(call, SYSCALL_FIELD(long, ret),
43b51ead 297 FILTER_OTHER);
540b7b8d
LZ
298
299 return ret;
300}
301
12ab74ee 302static void ftrace_syscall_enter(void *data, struct pt_regs *regs, long id)
ee08c6ec 303{
12ab74ee 304 struct trace_array *tr = data;
d562aff9 305 struct ftrace_event_file *ftrace_file;
bed1ffca
FW
306 struct syscall_trace_enter *entry;
307 struct syscall_metadata *sys_data;
308 struct ring_buffer_event *event;
e77405ad 309 struct ring_buffer *buffer;
11034ae9
J
310 unsigned long irq_flags;
311 int pc;
ee08c6ec 312 int syscall_nr;
f431b634 313 int size;
ee08c6ec 314
f431b634 315 syscall_nr = trace_get_syscall_nr(current, regs);
cd0980fc
HB
316 if (syscall_nr < 0)
317 return;
d562aff9
TZ
318
319 /* Here we're inside tp handler's rcu_read_lock_sched (__DO_TRACE) */
320 ftrace_file = rcu_dereference_sched(tr->enter_syscall_files[syscall_nr]);
321 if (!ftrace_file)
322 return;
323
324 if (test_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &ftrace_file->flags))
fb34a08c 325 return;
ee08c6ec 326
bed1ffca
FW
327 sys_data = syscall_nr_to_meta(syscall_nr);
328 if (!sys_data)
329 return;
330
331 size = sizeof(*entry) + sizeof(unsigned long) * sys_data->nb_args;
332
11034ae9
J
333 local_save_flags(irq_flags);
334 pc = preempt_count();
335
12883efb 336 buffer = tr->trace_buffer.buffer;
12ab74ee 337 event = trace_buffer_lock_reserve(buffer,
11034ae9 338 sys_data->enter_event->event.type, size, irq_flags, pc);
bed1ffca
FW
339 if (!event)
340 return;
341
342 entry = ring_buffer_event_data(event);
343 entry->nr = syscall_nr;
344 syscall_get_arguments(current, regs, 0, sys_data->nb_args, entry->args);
345
d562aff9 346 if (!filter_check_discard(ftrace_file, entry, buffer, event))
11034ae9
J
347 trace_current_buffer_unlock_commit(buffer, event,
348 irq_flags, pc);
ee08c6ec
FW
349}
350
12ab74ee 351static void ftrace_syscall_exit(void *data, struct pt_regs *regs, long ret)
ee08c6ec 352{
12ab74ee 353 struct trace_array *tr = data;
d562aff9 354 struct ftrace_event_file *ftrace_file;
bed1ffca
FW
355 struct syscall_trace_exit *entry;
356 struct syscall_metadata *sys_data;
357 struct ring_buffer_event *event;
e77405ad 358 struct ring_buffer *buffer;
11034ae9
J
359 unsigned long irq_flags;
360 int pc;
ee08c6ec
FW
361 int syscall_nr;
362
f431b634 363 syscall_nr = trace_get_syscall_nr(current, regs);
cd0980fc
HB
364 if (syscall_nr < 0)
365 return;
d562aff9
TZ
366
367 /* Here we're inside tp handler's rcu_read_lock_sched (__DO_TRACE()) */
368 ftrace_file = rcu_dereference_sched(tr->exit_syscall_files[syscall_nr]);
369 if (!ftrace_file)
370 return;
371
372 if (test_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &ftrace_file->flags))
fb34a08c 373 return;
ee08c6ec 374
bed1ffca
FW
375 sys_data = syscall_nr_to_meta(syscall_nr);
376 if (!sys_data)
377 return;
378
11034ae9
J
379 local_save_flags(irq_flags);
380 pc = preempt_count();
381
12883efb 382 buffer = tr->trace_buffer.buffer;
12ab74ee 383 event = trace_buffer_lock_reserve(buffer,
11034ae9
J
384 sys_data->exit_event->event.type, sizeof(*entry),
385 irq_flags, pc);
bed1ffca
FW
386 if (!event)
387 return;
388
389 entry = ring_buffer_event_data(event);
390 entry->nr = syscall_nr;
391 entry->ret = syscall_get_return_value(current, regs);
392
d562aff9 393 if (!filter_check_discard(ftrace_file, entry, buffer, event))
11034ae9
J
394 trace_current_buffer_unlock_commit(buffer, event,
395 irq_flags, pc);
ee08c6ec
FW
396}
397
12ab74ee
SR
398static int reg_event_syscall_enter(struct ftrace_event_file *file,
399 struct ftrace_event_call *call)
ee08c6ec 400{
12ab74ee 401 struct trace_array *tr = file->tr;
fb34a08c
JB
402 int ret = 0;
403 int num;
fb34a08c 404
c252f657 405 num = ((struct syscall_metadata *)call->data)->syscall_nr;
3773b389 406 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
fb34a08c
JB
407 return -ENOSYS;
408 mutex_lock(&syscall_trace_lock);
12ab74ee
SR
409 if (!tr->sys_refcount_enter)
410 ret = register_trace_sys_enter(ftrace_syscall_enter, tr);
3b8e4273 411 if (!ret) {
d562aff9 412 rcu_assign_pointer(tr->enter_syscall_files[num], file);
12ab74ee 413 tr->sys_refcount_enter++;
fb34a08c
JB
414 }
415 mutex_unlock(&syscall_trace_lock);
416 return ret;
ee08c6ec
FW
417}
418
12ab74ee
SR
419static void unreg_event_syscall_enter(struct ftrace_event_file *file,
420 struct ftrace_event_call *call)
ee08c6ec 421{
12ab74ee 422 struct trace_array *tr = file->tr;
fb34a08c 423 int num;
ee08c6ec 424
c252f657 425 num = ((struct syscall_metadata *)call->data)->syscall_nr;
3773b389 426 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
fb34a08c
JB
427 return;
428 mutex_lock(&syscall_trace_lock);
12ab74ee 429 tr->sys_refcount_enter--;
d562aff9 430 rcu_assign_pointer(tr->enter_syscall_files[num], NULL);
12ab74ee
SR
431 if (!tr->sys_refcount_enter)
432 unregister_trace_sys_enter(ftrace_syscall_enter, tr);
fb34a08c
JB
433 mutex_unlock(&syscall_trace_lock);
434}
ee08c6ec 435
12ab74ee
SR
436static int reg_event_syscall_exit(struct ftrace_event_file *file,
437 struct ftrace_event_call *call)
ee08c6ec 438{
12ab74ee 439 struct trace_array *tr = file->tr;
fb34a08c
JB
440 int ret = 0;
441 int num;
fb34a08c 442
c252f657 443 num = ((struct syscall_metadata *)call->data)->syscall_nr;
3773b389 444 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
fb34a08c
JB
445 return -ENOSYS;
446 mutex_lock(&syscall_trace_lock);
12ab74ee
SR
447 if (!tr->sys_refcount_exit)
448 ret = register_trace_sys_exit(ftrace_syscall_exit, tr);
3b8e4273 449 if (!ret) {
d562aff9 450 rcu_assign_pointer(tr->exit_syscall_files[num], file);
12ab74ee 451 tr->sys_refcount_exit++;
ee08c6ec 452 }
fb34a08c
JB
453 mutex_unlock(&syscall_trace_lock);
454 return ret;
455}
ee08c6ec 456
12ab74ee
SR
457static void unreg_event_syscall_exit(struct ftrace_event_file *file,
458 struct ftrace_event_call *call)
fb34a08c 459{
12ab74ee 460 struct trace_array *tr = file->tr;
fb34a08c 461 int num;
ee08c6ec 462
c252f657 463 num = ((struct syscall_metadata *)call->data)->syscall_nr;
3773b389 464 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
fb34a08c
JB
465 return;
466 mutex_lock(&syscall_trace_lock);
12ab74ee 467 tr->sys_refcount_exit--;
d562aff9 468 rcu_assign_pointer(tr->exit_syscall_files[num], NULL);
12ab74ee
SR
469 if (!tr->sys_refcount_exit)
470 unregister_trace_sys_exit(ftrace_syscall_exit, tr);
fb34a08c 471 mutex_unlock(&syscall_trace_lock);
ee08c6ec 472}
fb34a08c 473
3ddc77f6 474static int __init init_syscall_trace(struct ftrace_event_call *call)
a1301da0
LJ
475{
476 int id;
ba976970
IM
477 int num;
478
479 num = ((struct syscall_metadata *)call->data)->syscall_nr;
480 if (num < 0 || num >= NR_syscalls) {
481 pr_debug("syscall %s metadata not mapped, disabling ftrace event\n",
482 ((struct syscall_metadata *)call->data)->name);
483 return -ENOSYS;
484 }
a1301da0 485
50307a45
LJ
486 if (set_syscall_print_fmt(call) < 0)
487 return -ENOMEM;
488
c7ef3a90
SR
489 id = trace_event_raw_init(call);
490
491 if (id < 0) {
50307a45 492 free_syscall_print_fmt(call);
c7ef3a90 493 return id;
50307a45 494 }
c7ef3a90
SR
495
496 return id;
a1301da0
LJ
497}
498
6f86ab9f
VN
499struct trace_event_functions enter_syscall_print_funcs = {
500 .trace = print_syscall_enter,
501};
502
503struct trace_event_functions exit_syscall_print_funcs = {
504 .trace = print_syscall_exit,
505};
506
523c8113 507struct ftrace_event_class __refdata event_class_syscall_enter = {
6f86ab9f
VN
508 .system = "syscalls",
509 .reg = syscall_enter_register,
510 .define_fields = syscall_enter_define_fields,
511 .get_fields = syscall_get_enter_fields,
512 .raw_init = init_syscall_trace,
513};
514
523c8113 515struct ftrace_event_class __refdata event_class_syscall_exit = {
6f86ab9f
VN
516 .system = "syscalls",
517 .reg = syscall_exit_register,
518 .define_fields = syscall_exit_define_fields,
519 .fields = LIST_HEAD_INIT(event_class_syscall_exit.fields),
520 .raw_init = init_syscall_trace,
521};
522
c763ba06 523unsigned long __init __weak arch_syscall_addr(int nr)
e7b8e675
MF
524{
525 return (unsigned long)sys_call_table[nr];
526}
527
6aea49cb 528static int __init init_ftrace_syscalls(void)
c44fc770
FW
529{
530 struct syscall_metadata *meta;
531 unsigned long addr;
532 int i;
533
47b0edcb
TM
534 syscalls_metadata = kcalloc(NR_syscalls, sizeof(*syscalls_metadata),
535 GFP_KERNEL);
c44fc770
FW
536 if (!syscalls_metadata) {
537 WARN_ON(1);
538 return -ENOMEM;
539 }
540
541 for (i = 0; i < NR_syscalls; i++) {
542 addr = arch_syscall_addr(i);
543 meta = find_syscall_meta(addr);
c252f657
LJ
544 if (!meta)
545 continue;
546
547 meta->syscall_nr = i;
c44fc770
FW
548 syscalls_metadata[i] = meta;
549 }
550
551 return 0;
552}
8781915a 553early_initcall(init_ftrace_syscalls);
c44fc770 554
07b139c8 555#ifdef CONFIG_PERF_EVENTS
19007a67 556
97d5a220
FW
557static DECLARE_BITMAP(enabled_perf_enter_syscalls, NR_syscalls);
558static DECLARE_BITMAP(enabled_perf_exit_syscalls, NR_syscalls);
559static int sys_perf_refcount_enter;
560static int sys_perf_refcount_exit;
f4b5ffcc 561
38516ab5 562static void perf_syscall_enter(void *ignore, struct pt_regs *regs, long id)
f4b5ffcc
JB
563{
564 struct syscall_metadata *sys_data;
20ab4425 565 struct syscall_trace_enter *rec;
1c024eca 566 struct hlist_head *head;
f4b5ffcc 567 int syscall_nr;
4ed7c92d 568 int rctx;
19007a67 569 int size;
f4b5ffcc 570
f431b634 571 syscall_nr = trace_get_syscall_nr(current, regs);
60916a93
WD
572 if (syscall_nr < 0)
573 return;
97d5a220 574 if (!test_bit(syscall_nr, enabled_perf_enter_syscalls))
f4b5ffcc
JB
575 return;
576
577 sys_data = syscall_nr_to_meta(syscall_nr);
578 if (!sys_data)
579 return;
580
421c7860
ON
581 head = this_cpu_ptr(sys_data->enter_event->perf_events);
582 if (hlist_empty(head))
583 return;
584
19007a67
FW
585 /* get the size after alignment with the u32 buffer size field */
586 size = sizeof(unsigned long) * sys_data->nb_args + sizeof(*rec);
587 size = ALIGN(size + sizeof(u32), sizeof(u64));
588 size -= sizeof(u32);
589
97d5a220 590 rec = (struct syscall_trace_enter *)perf_trace_buf_prepare(size,
ff5f149b 591 sys_data->enter_event->event.type, regs, &rctx);
430ad5a6
XG
592 if (!rec)
593 return;
20ab4425 594
20ab4425
FW
595 rec->nr = syscall_nr;
596 syscall_get_arguments(current, regs, 0, sys_data->nb_args,
597 (unsigned long *)&rec->args);
e6dab5ff 598 perf_trace_buf_submit(rec, size, rctx, 0, 1, regs, head, NULL);
f4b5ffcc
JB
599}
600
6f86ab9f 601static int perf_sysenter_enable(struct ftrace_event_call *call)
f4b5ffcc
JB
602{
603 int ret = 0;
604 int num;
605
3bbe84e9 606 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
607
608 mutex_lock(&syscall_trace_lock);
97d5a220 609 if (!sys_perf_refcount_enter)
38516ab5 610 ret = register_trace_sys_enter(perf_syscall_enter, NULL);
f4b5ffcc
JB
611 if (ret) {
612 pr_info("event trace: Could not activate"
613 "syscall entry trace point");
614 } else {
97d5a220
FW
615 set_bit(num, enabled_perf_enter_syscalls);
616 sys_perf_refcount_enter++;
f4b5ffcc
JB
617 }
618 mutex_unlock(&syscall_trace_lock);
619 return ret;
620}
621
6f86ab9f 622static void perf_sysenter_disable(struct ftrace_event_call *call)
f4b5ffcc
JB
623{
624 int num;
625
3bbe84e9 626 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
627
628 mutex_lock(&syscall_trace_lock);
97d5a220
FW
629 sys_perf_refcount_enter--;
630 clear_bit(num, enabled_perf_enter_syscalls);
631 if (!sys_perf_refcount_enter)
38516ab5 632 unregister_trace_sys_enter(perf_syscall_enter, NULL);
f4b5ffcc
JB
633 mutex_unlock(&syscall_trace_lock);
634}
635
38516ab5 636static void perf_syscall_exit(void *ignore, struct pt_regs *regs, long ret)
f4b5ffcc
JB
637{
638 struct syscall_metadata *sys_data;
20ab4425 639 struct syscall_trace_exit *rec;
1c024eca 640 struct hlist_head *head;
f4b5ffcc 641 int syscall_nr;
4ed7c92d 642 int rctx;
20ab4425 643 int size;
f4b5ffcc 644
f431b634 645 syscall_nr = trace_get_syscall_nr(current, regs);
60916a93
WD
646 if (syscall_nr < 0)
647 return;
97d5a220 648 if (!test_bit(syscall_nr, enabled_perf_exit_syscalls))
f4b5ffcc
JB
649 return;
650
651 sys_data = syscall_nr_to_meta(syscall_nr);
652 if (!sys_data)
653 return;
654
421c7860
ON
655 head = this_cpu_ptr(sys_data->exit_event->perf_events);
656 if (hlist_empty(head))
657 return;
658
20ab4425
FW
659 /* We can probably do that at build time */
660 size = ALIGN(sizeof(*rec) + sizeof(u32), sizeof(u64));
661 size -= sizeof(u32);
19007a67 662
97d5a220 663 rec = (struct syscall_trace_exit *)perf_trace_buf_prepare(size,
ff5f149b 664 sys_data->exit_event->event.type, regs, &rctx);
430ad5a6
XG
665 if (!rec)
666 return;
20ab4425 667
20ab4425
FW
668 rec->nr = syscall_nr;
669 rec->ret = syscall_get_return_value(current, regs);
e6dab5ff 670 perf_trace_buf_submit(rec, size, rctx, 0, 1, regs, head, NULL);
f4b5ffcc
JB
671}
672
6f86ab9f 673static int perf_sysexit_enable(struct ftrace_event_call *call)
f4b5ffcc
JB
674{
675 int ret = 0;
676 int num;
677
3bbe84e9 678 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
679
680 mutex_lock(&syscall_trace_lock);
97d5a220 681 if (!sys_perf_refcount_exit)
38516ab5 682 ret = register_trace_sys_exit(perf_syscall_exit, NULL);
f4b5ffcc
JB
683 if (ret) {
684 pr_info("event trace: Could not activate"
6574658b 685 "syscall exit trace point");
f4b5ffcc 686 } else {
97d5a220
FW
687 set_bit(num, enabled_perf_exit_syscalls);
688 sys_perf_refcount_exit++;
f4b5ffcc
JB
689 }
690 mutex_unlock(&syscall_trace_lock);
691 return ret;
692}
693
6f86ab9f 694static void perf_sysexit_disable(struct ftrace_event_call *call)
f4b5ffcc
JB
695{
696 int num;
697
3bbe84e9 698 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
699
700 mutex_lock(&syscall_trace_lock);
97d5a220
FW
701 sys_perf_refcount_exit--;
702 clear_bit(num, enabled_perf_exit_syscalls);
703 if (!sys_perf_refcount_exit)
38516ab5 704 unregister_trace_sys_exit(perf_syscall_exit, NULL);
f4b5ffcc
JB
705 mutex_unlock(&syscall_trace_lock);
706}
707
07b139c8 708#endif /* CONFIG_PERF_EVENTS */
f4b5ffcc 709
2239291a 710static int syscall_enter_register(struct ftrace_event_call *event,
ceec0b6f 711 enum trace_reg type, void *data)
2239291a 712{
12ab74ee
SR
713 struct ftrace_event_file *file = data;
714
2239291a
SR
715 switch (type) {
716 case TRACE_REG_REGISTER:
12ab74ee 717 return reg_event_syscall_enter(file, event);
2239291a 718 case TRACE_REG_UNREGISTER:
12ab74ee 719 unreg_event_syscall_enter(file, event);
2239291a
SR
720 return 0;
721
722#ifdef CONFIG_PERF_EVENTS
723 case TRACE_REG_PERF_REGISTER:
724 return perf_sysenter_enable(event);
725 case TRACE_REG_PERF_UNREGISTER:
726 perf_sysenter_disable(event);
727 return 0;
ceec0b6f
JO
728 case TRACE_REG_PERF_OPEN:
729 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
730 case TRACE_REG_PERF_ADD:
731 case TRACE_REG_PERF_DEL:
ceec0b6f 732 return 0;
2239291a
SR
733#endif
734 }
735 return 0;
736}
737
738static int syscall_exit_register(struct ftrace_event_call *event,
ceec0b6f 739 enum trace_reg type, void *data)
2239291a 740{
12ab74ee
SR
741 struct ftrace_event_file *file = data;
742
2239291a
SR
743 switch (type) {
744 case TRACE_REG_REGISTER:
12ab74ee 745 return reg_event_syscall_exit(file, event);
2239291a 746 case TRACE_REG_UNREGISTER:
12ab74ee 747 unreg_event_syscall_exit(file, event);
2239291a
SR
748 return 0;
749
750#ifdef CONFIG_PERF_EVENTS
751 case TRACE_REG_PERF_REGISTER:
752 return perf_sysexit_enable(event);
753 case TRACE_REG_PERF_UNREGISTER:
754 perf_sysexit_disable(event);
755 return 0;
ceec0b6f
JO
756 case TRACE_REG_PERF_OPEN:
757 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
758 case TRACE_REG_PERF_ADD:
759 case TRACE_REG_PERF_DEL:
ceec0b6f 760 return 0;
2239291a
SR
761#endif
762 }
763 return 0;
764}
This page took 0.303828 seconds and 5 git commands to generate.