Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[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 433 mutex_unlock(&syscall_trace_lock);
d562aff9
TZ
434 /*
435 * Callers expect the event to be completely disabled on
436 * return, so wait for current handlers to finish.
437 */
438 synchronize_sched();
fb34a08c 439}
ee08c6ec 440
12ab74ee
SR
441static int reg_event_syscall_exit(struct ftrace_event_file *file,
442 struct ftrace_event_call *call)
ee08c6ec 443{
12ab74ee 444 struct trace_array *tr = file->tr;
fb34a08c
JB
445 int ret = 0;
446 int num;
fb34a08c 447
c252f657 448 num = ((struct syscall_metadata *)call->data)->syscall_nr;
3773b389 449 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
fb34a08c
JB
450 return -ENOSYS;
451 mutex_lock(&syscall_trace_lock);
12ab74ee
SR
452 if (!tr->sys_refcount_exit)
453 ret = register_trace_sys_exit(ftrace_syscall_exit, tr);
3b8e4273 454 if (!ret) {
d562aff9 455 rcu_assign_pointer(tr->exit_syscall_files[num], file);
12ab74ee 456 tr->sys_refcount_exit++;
ee08c6ec 457 }
fb34a08c
JB
458 mutex_unlock(&syscall_trace_lock);
459 return ret;
460}
ee08c6ec 461
12ab74ee
SR
462static void unreg_event_syscall_exit(struct ftrace_event_file *file,
463 struct ftrace_event_call *call)
fb34a08c 464{
12ab74ee 465 struct trace_array *tr = file->tr;
fb34a08c 466 int num;
ee08c6ec 467
c252f657 468 num = ((struct syscall_metadata *)call->data)->syscall_nr;
3773b389 469 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
fb34a08c
JB
470 return;
471 mutex_lock(&syscall_trace_lock);
12ab74ee 472 tr->sys_refcount_exit--;
d562aff9 473 rcu_assign_pointer(tr->exit_syscall_files[num], NULL);
12ab74ee
SR
474 if (!tr->sys_refcount_exit)
475 unregister_trace_sys_exit(ftrace_syscall_exit, tr);
fb34a08c 476 mutex_unlock(&syscall_trace_lock);
d562aff9
TZ
477 /*
478 * Callers expect the event to be completely disabled on
479 * return, so wait for current handlers to finish.
480 */
481 synchronize_sched();
ee08c6ec 482}
fb34a08c 483
3ddc77f6 484static int __init init_syscall_trace(struct ftrace_event_call *call)
a1301da0
LJ
485{
486 int id;
ba976970
IM
487 int num;
488
489 num = ((struct syscall_metadata *)call->data)->syscall_nr;
490 if (num < 0 || num >= NR_syscalls) {
491 pr_debug("syscall %s metadata not mapped, disabling ftrace event\n",
492 ((struct syscall_metadata *)call->data)->name);
493 return -ENOSYS;
494 }
a1301da0 495
50307a45
LJ
496 if (set_syscall_print_fmt(call) < 0)
497 return -ENOMEM;
498
c7ef3a90
SR
499 id = trace_event_raw_init(call);
500
501 if (id < 0) {
50307a45 502 free_syscall_print_fmt(call);
c7ef3a90 503 return id;
50307a45 504 }
c7ef3a90
SR
505
506 return id;
a1301da0
LJ
507}
508
6f86ab9f
VN
509struct trace_event_functions enter_syscall_print_funcs = {
510 .trace = print_syscall_enter,
511};
512
513struct trace_event_functions exit_syscall_print_funcs = {
514 .trace = print_syscall_exit,
515};
516
523c8113 517struct ftrace_event_class __refdata event_class_syscall_enter = {
6f86ab9f
VN
518 .system = "syscalls",
519 .reg = syscall_enter_register,
520 .define_fields = syscall_enter_define_fields,
521 .get_fields = syscall_get_enter_fields,
522 .raw_init = init_syscall_trace,
523};
524
523c8113 525struct ftrace_event_class __refdata event_class_syscall_exit = {
6f86ab9f
VN
526 .system = "syscalls",
527 .reg = syscall_exit_register,
528 .define_fields = syscall_exit_define_fields,
529 .fields = LIST_HEAD_INIT(event_class_syscall_exit.fields),
530 .raw_init = init_syscall_trace,
531};
532
c763ba06 533unsigned long __init __weak arch_syscall_addr(int nr)
e7b8e675
MF
534{
535 return (unsigned long)sys_call_table[nr];
536}
537
6aea49cb 538static int __init init_ftrace_syscalls(void)
c44fc770
FW
539{
540 struct syscall_metadata *meta;
541 unsigned long addr;
542 int i;
543
47b0edcb
TM
544 syscalls_metadata = kcalloc(NR_syscalls, sizeof(*syscalls_metadata),
545 GFP_KERNEL);
c44fc770
FW
546 if (!syscalls_metadata) {
547 WARN_ON(1);
548 return -ENOMEM;
549 }
550
551 for (i = 0; i < NR_syscalls; i++) {
552 addr = arch_syscall_addr(i);
553 meta = find_syscall_meta(addr);
c252f657
LJ
554 if (!meta)
555 continue;
556
557 meta->syscall_nr = i;
c44fc770
FW
558 syscalls_metadata[i] = meta;
559 }
560
561 return 0;
562}
8781915a 563early_initcall(init_ftrace_syscalls);
c44fc770 564
07b139c8 565#ifdef CONFIG_PERF_EVENTS
19007a67 566
97d5a220
FW
567static DECLARE_BITMAP(enabled_perf_enter_syscalls, NR_syscalls);
568static DECLARE_BITMAP(enabled_perf_exit_syscalls, NR_syscalls);
569static int sys_perf_refcount_enter;
570static int sys_perf_refcount_exit;
f4b5ffcc 571
38516ab5 572static void perf_syscall_enter(void *ignore, struct pt_regs *regs, long id)
f4b5ffcc
JB
573{
574 struct syscall_metadata *sys_data;
20ab4425 575 struct syscall_trace_enter *rec;
1c024eca 576 struct hlist_head *head;
f4b5ffcc 577 int syscall_nr;
4ed7c92d 578 int rctx;
19007a67 579 int size;
f4b5ffcc 580
f431b634 581 syscall_nr = trace_get_syscall_nr(current, regs);
60916a93
WD
582 if (syscall_nr < 0)
583 return;
97d5a220 584 if (!test_bit(syscall_nr, enabled_perf_enter_syscalls))
f4b5ffcc
JB
585 return;
586
587 sys_data = syscall_nr_to_meta(syscall_nr);
588 if (!sys_data)
589 return;
590
421c7860
ON
591 head = this_cpu_ptr(sys_data->enter_event->perf_events);
592 if (hlist_empty(head))
593 return;
594
19007a67
FW
595 /* get the size after alignment with the u32 buffer size field */
596 size = sizeof(unsigned long) * sys_data->nb_args + sizeof(*rec);
597 size = ALIGN(size + sizeof(u32), sizeof(u64));
598 size -= sizeof(u32);
599
97d5a220 600 rec = (struct syscall_trace_enter *)perf_trace_buf_prepare(size,
ff5f149b 601 sys_data->enter_event->event.type, regs, &rctx);
430ad5a6
XG
602 if (!rec)
603 return;
20ab4425 604
20ab4425
FW
605 rec->nr = syscall_nr;
606 syscall_get_arguments(current, regs, 0, sys_data->nb_args,
607 (unsigned long *)&rec->args);
e6dab5ff 608 perf_trace_buf_submit(rec, size, rctx, 0, 1, regs, head, NULL);
f4b5ffcc
JB
609}
610
6f86ab9f 611static int perf_sysenter_enable(struct ftrace_event_call *call)
f4b5ffcc
JB
612{
613 int ret = 0;
614 int num;
615
3bbe84e9 616 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
617
618 mutex_lock(&syscall_trace_lock);
97d5a220 619 if (!sys_perf_refcount_enter)
38516ab5 620 ret = register_trace_sys_enter(perf_syscall_enter, NULL);
f4b5ffcc
JB
621 if (ret) {
622 pr_info("event trace: Could not activate"
623 "syscall entry trace point");
624 } else {
97d5a220
FW
625 set_bit(num, enabled_perf_enter_syscalls);
626 sys_perf_refcount_enter++;
f4b5ffcc
JB
627 }
628 mutex_unlock(&syscall_trace_lock);
629 return ret;
630}
631
6f86ab9f 632static void perf_sysenter_disable(struct ftrace_event_call *call)
f4b5ffcc
JB
633{
634 int num;
635
3bbe84e9 636 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
637
638 mutex_lock(&syscall_trace_lock);
97d5a220
FW
639 sys_perf_refcount_enter--;
640 clear_bit(num, enabled_perf_enter_syscalls);
641 if (!sys_perf_refcount_enter)
38516ab5 642 unregister_trace_sys_enter(perf_syscall_enter, NULL);
f4b5ffcc
JB
643 mutex_unlock(&syscall_trace_lock);
644}
645
38516ab5 646static void perf_syscall_exit(void *ignore, struct pt_regs *regs, long ret)
f4b5ffcc
JB
647{
648 struct syscall_metadata *sys_data;
20ab4425 649 struct syscall_trace_exit *rec;
1c024eca 650 struct hlist_head *head;
f4b5ffcc 651 int syscall_nr;
4ed7c92d 652 int rctx;
20ab4425 653 int size;
f4b5ffcc 654
f431b634 655 syscall_nr = trace_get_syscall_nr(current, regs);
60916a93
WD
656 if (syscall_nr < 0)
657 return;
97d5a220 658 if (!test_bit(syscall_nr, enabled_perf_exit_syscalls))
f4b5ffcc
JB
659 return;
660
661 sys_data = syscall_nr_to_meta(syscall_nr);
662 if (!sys_data)
663 return;
664
421c7860
ON
665 head = this_cpu_ptr(sys_data->exit_event->perf_events);
666 if (hlist_empty(head))
667 return;
668
20ab4425
FW
669 /* We can probably do that at build time */
670 size = ALIGN(sizeof(*rec) + sizeof(u32), sizeof(u64));
671 size -= sizeof(u32);
19007a67 672
97d5a220 673 rec = (struct syscall_trace_exit *)perf_trace_buf_prepare(size,
ff5f149b 674 sys_data->exit_event->event.type, regs, &rctx);
430ad5a6
XG
675 if (!rec)
676 return;
20ab4425 677
20ab4425
FW
678 rec->nr = syscall_nr;
679 rec->ret = syscall_get_return_value(current, regs);
e6dab5ff 680 perf_trace_buf_submit(rec, size, rctx, 0, 1, regs, head, NULL);
f4b5ffcc
JB
681}
682
6f86ab9f 683static int perf_sysexit_enable(struct ftrace_event_call *call)
f4b5ffcc
JB
684{
685 int ret = 0;
686 int num;
687
3bbe84e9 688 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
689
690 mutex_lock(&syscall_trace_lock);
97d5a220 691 if (!sys_perf_refcount_exit)
38516ab5 692 ret = register_trace_sys_exit(perf_syscall_exit, NULL);
f4b5ffcc
JB
693 if (ret) {
694 pr_info("event trace: Could not activate"
6574658b 695 "syscall exit trace point");
f4b5ffcc 696 } else {
97d5a220
FW
697 set_bit(num, enabled_perf_exit_syscalls);
698 sys_perf_refcount_exit++;
f4b5ffcc
JB
699 }
700 mutex_unlock(&syscall_trace_lock);
701 return ret;
702}
703
6f86ab9f 704static void perf_sysexit_disable(struct ftrace_event_call *call)
f4b5ffcc
JB
705{
706 int num;
707
3bbe84e9 708 num = ((struct syscall_metadata *)call->data)->syscall_nr;
f4b5ffcc
JB
709
710 mutex_lock(&syscall_trace_lock);
97d5a220
FW
711 sys_perf_refcount_exit--;
712 clear_bit(num, enabled_perf_exit_syscalls);
713 if (!sys_perf_refcount_exit)
38516ab5 714 unregister_trace_sys_exit(perf_syscall_exit, NULL);
f4b5ffcc
JB
715 mutex_unlock(&syscall_trace_lock);
716}
717
07b139c8 718#endif /* CONFIG_PERF_EVENTS */
f4b5ffcc 719
2239291a 720static int syscall_enter_register(struct ftrace_event_call *event,
ceec0b6f 721 enum trace_reg type, void *data)
2239291a 722{
12ab74ee
SR
723 struct ftrace_event_file *file = data;
724
2239291a
SR
725 switch (type) {
726 case TRACE_REG_REGISTER:
12ab74ee 727 return reg_event_syscall_enter(file, event);
2239291a 728 case TRACE_REG_UNREGISTER:
12ab74ee 729 unreg_event_syscall_enter(file, event);
2239291a
SR
730 return 0;
731
732#ifdef CONFIG_PERF_EVENTS
733 case TRACE_REG_PERF_REGISTER:
734 return perf_sysenter_enable(event);
735 case TRACE_REG_PERF_UNREGISTER:
736 perf_sysenter_disable(event);
737 return 0;
ceec0b6f
JO
738 case TRACE_REG_PERF_OPEN:
739 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
740 case TRACE_REG_PERF_ADD:
741 case TRACE_REG_PERF_DEL:
ceec0b6f 742 return 0;
2239291a
SR
743#endif
744 }
745 return 0;
746}
747
748static int syscall_exit_register(struct ftrace_event_call *event,
ceec0b6f 749 enum trace_reg type, void *data)
2239291a 750{
12ab74ee
SR
751 struct ftrace_event_file *file = data;
752
2239291a
SR
753 switch (type) {
754 case TRACE_REG_REGISTER:
12ab74ee 755 return reg_event_syscall_exit(file, event);
2239291a 756 case TRACE_REG_UNREGISTER:
12ab74ee 757 unreg_event_syscall_exit(file, event);
2239291a
SR
758 return 0;
759
760#ifdef CONFIG_PERF_EVENTS
761 case TRACE_REG_PERF_REGISTER:
762 return perf_sysexit_enable(event);
763 case TRACE_REG_PERF_UNREGISTER:
764 perf_sysexit_disable(event);
765 return 0;
ceec0b6f
JO
766 case TRACE_REG_PERF_OPEN:
767 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
768 case TRACE_REG_PERF_ADD:
769 case TRACE_REG_PERF_DEL:
ceec0b6f 770 return 0;
2239291a
SR
771#endif
772 }
773 return 0;
774}
This page took 0.261718 seconds and 5 git commands to generate.