4 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Mimic system calls for:
9 * - session creation, returns a file descriptor or failure.
10 * - channel creation, returns a file descriptor or failure.
11 * - Operates on a session file descriptor
12 * - Takes all channel options as parameters.
13 * - stream get, returns a file descriptor or failure.
14 * - Operates on a channel file descriptor.
15 * - stream notifier get, returns a file descriptor or failure.
16 * - Operates on a channel file descriptor.
17 * - event creation, returns a file descriptor or failure.
18 * - Operates on a channel file descriptor
19 * - Takes an event name as parameter
20 * - Takes an instrumentation source as parameter
21 * - e.g. tracepoints, dynamic_probes...
22 * - Takes instrumentation source specific arguments.
24 * Dual LGPL v2.1/GPL v2 license.
27 #include <linux/module.h>
28 #include <linux/debugfs.h>
29 #include <linux/anon_inodes.h>
30 #include <linux/file.h>
31 #include <linux/uaccess.h>
32 #include <linux/slab.h>
33 #include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
34 #include "wrapper/ringbuffer/vfs.h"
35 #include "wrapper/poll.h"
36 #include "ltt-debugfs-abi.h"
37 #include "ltt-events.h"
38 #include "ltt-tracer.h"
41 * This is LTTng's own personal way to create a system call as an external
42 * module. We use ioctl() on /sys/kernel/debug/lttng.
45 static struct dentry
*lttng_dentry
;
46 static const struct file_operations lttng_fops
;
47 static const struct file_operations lttng_session_fops
;
48 static const struct file_operations lttng_channel_fops
;
49 static const struct file_operations lttng_metadata_fops
;
50 static const struct file_operations lttng_event_fops
;
58 int lttng_abi_create_session(void)
60 struct ltt_session
*session
;
61 struct file
*session_file
;
64 session
= ltt_session_create();
67 session_fd
= get_unused_fd();
72 session_file
= anon_inode_getfile("[lttng_session]",
75 if (IS_ERR(session_file
)) {
76 ret
= PTR_ERR(session_file
);
79 session
->file
= session_file
;
80 fd_install(session_fd
, session_file
);
84 put_unused_fd(session_fd
);
86 ltt_session_destroy(session
);
91 int lttng_abi_tracepoint_list(void)
93 struct file
*tracepoint_list_file
;
96 file_fd
= get_unused_fd();
102 tracepoint_list_file
= anon_inode_getfile("[lttng_session]",
103 <tng_tracepoint_list_fops
,
105 if (IS_ERR(tracepoint_list_file
)) {
106 ret
= PTR_ERR(tracepoint_list_file
);
109 ret
= lttng_tracepoint_list_fops
.open(NULL
, tracepoint_list_file
);
112 fd_install(file_fd
, tracepoint_list_file
);
120 fput(tracepoint_list_file
);
122 put_unused_fd(file_fd
);
128 long lttng_abi_tracer_version(struct file
*file
,
129 struct lttng_kernel_tracer_version __user
*uversion_param
)
131 struct lttng_kernel_tracer_version v
;
133 v
.version
= LTTNG_VERSION
;
134 v
.patchlevel
= LTTNG_PATCHLEVEL
;
135 v
.sublevel
= LTTNG_SUBLEVEL
;
137 if (copy_to_user(uversion_param
, &v
, sizeof(v
)))
143 long lttng_abi_add_context(struct file
*file
,
144 struct lttng_kernel_context __user
*ucontext_param
,
145 struct lttng_ctx
**ctx
, struct ltt_session
*session
)
147 struct lttng_kernel_context context_param
;
149 if (session
->been_active
)
152 if (copy_from_user(&context_param
, ucontext_param
, sizeof(context_param
)))
155 switch (context_param
.ctx
) {
156 case LTTNG_KERNEL_CONTEXT_PID
:
157 return lttng_add_pid_to_ctx(ctx
);
158 case LTTNG_KERNEL_CONTEXT_PRIO
:
159 return lttng_add_prio_to_ctx(ctx
);
160 case LTTNG_KERNEL_CONTEXT_NICE
:
161 return lttng_add_nice_to_ctx(ctx
);
162 case LTTNG_KERNEL_CONTEXT_VPID
:
163 return lttng_add_vpid_to_ctx(ctx
);
164 case LTTNG_KERNEL_CONTEXT_TID
:
165 return lttng_add_tid_to_ctx(ctx
);
166 case LTTNG_KERNEL_CONTEXT_VTID
:
167 return lttng_add_vtid_to_ctx(ctx
);
168 case LTTNG_KERNEL_CONTEXT_PPID
:
169 return lttng_add_ppid_to_ctx(ctx
);
170 case LTTNG_KERNEL_CONTEXT_VPPID
:
171 return lttng_add_vppid_to_ctx(ctx
);
172 case LTTNG_KERNEL_CONTEXT_PERF_COUNTER
:
173 context_param
.u
.perf_counter
.name
[LTTNG_SYM_NAME_LEN
- 1] = '\0';
174 return lttng_add_perf_counter_to_ctx(context_param
.u
.perf_counter
.type
,
175 context_param
.u
.perf_counter
.config
,
176 context_param
.u
.perf_counter
.name
,
178 case LTTNG_KERNEL_CONTEXT_COMM
:
179 return lttng_add_comm_to_ctx(ctx
);
186 * lttng_ioctl - lttng syscall through ioctl
192 * This ioctl implements lttng commands:
193 * LTTNG_KERNEL_SESSION
194 * Returns a LTTng trace session file descriptor
195 * LTTNG_KERNEL_TRACER_VERSION
196 * Returns the LTTng kernel tracer version
197 * LTTNG_KERNEL_TRACEPOINT_LIST
198 * Returns a file descriptor listing available tracepoints
199 * LTTNG_KERNEL_WAIT_QUIESCENT
200 * Returns after all previously running probes have completed
202 * The returned session will be deleted when its file descriptor is closed.
205 long lttng_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
208 case LTTNG_KERNEL_SESSION
:
209 return lttng_abi_create_session();
210 case LTTNG_KERNEL_TRACER_VERSION
:
211 return lttng_abi_tracer_version(file
,
212 (struct lttng_kernel_tracer_version __user
*) arg
);
213 case LTTNG_KERNEL_TRACEPOINT_LIST
:
214 return lttng_abi_tracepoint_list();
220 static const struct file_operations lttng_fops
= {
221 .unlocked_ioctl
= lttng_ioctl
,
223 .compat_ioctl
= lttng_ioctl
,
228 * We tolerate no failure in this function (if one happens, we print a dmesg
229 * error, but cannot return any error, because the channel information is
233 void lttng_metadata_create_events(struct file
*channel_file
)
235 struct ltt_channel
*channel
= channel_file
->private_data
;
236 static struct lttng_kernel_event metadata_params
= {
237 .instrumentation
= LTTNG_KERNEL_TRACEPOINT
,
238 .name
= "lttng_metadata",
240 struct ltt_event
*event
;
244 * We tolerate no failure path after event creation. It will stay
245 * invariant for the rest of the session.
247 event
= ltt_event_create(channel
, &metadata_params
, NULL
);
256 return; /* not allowed to return error */
260 int lttng_abi_create_channel(struct file
*session_file
,
261 struct lttng_kernel_channel __user
*uchan_param
,
262 enum channel_type channel_type
)
264 struct ltt_session
*session
= session_file
->private_data
;
265 const struct file_operations
*fops
;
266 const char *transport_name
;
267 struct ltt_channel
*chan
;
268 struct file
*chan_file
;
269 struct lttng_kernel_channel chan_param
;
273 if (copy_from_user(&chan_param
, uchan_param
, sizeof(chan_param
)))
275 chan_fd
= get_unused_fd();
280 chan_file
= anon_inode_getfile("[lttng_channel]",
283 if (IS_ERR(chan_file
)) {
284 ret
= PTR_ERR(chan_file
);
287 switch (channel_type
) {
288 case PER_CPU_CHANNEL
:
289 transport_name
= chan_param
.overwrite
?
290 "relay-overwrite" : "relay-discard";
291 fops
= <tng_channel_fops
;
293 case METADATA_CHANNEL
:
294 transport_name
= "relay-metadata";
295 fops
= <tng_metadata_fops
;
298 transport_name
= "<unknown>";
302 * We tolerate no failure path after channel creation. It will stay
303 * invariant for the rest of the session.
305 chan
= ltt_channel_create(session
, transport_name
, NULL
,
306 chan_param
.subbuf_size
,
307 chan_param
.num_subbuf
,
308 chan_param
.switch_timer_interval
,
309 chan_param
.read_timer_interval
);
314 chan
->file
= chan_file
;
315 chan_file
->private_data
= chan
;
316 fd_install(chan_fd
, chan_file
);
317 if (channel_type
== METADATA_CHANNEL
) {
318 session
->metadata
= chan
;
319 lttng_metadata_create_events(chan_file
);
322 /* The channel created holds a reference on the session */
323 atomic_long_inc(&session_file
->f_count
);
330 put_unused_fd(chan_fd
);
336 * lttng_session_ioctl - lttng session fd ioctl
342 * This ioctl implements lttng commands:
343 * LTTNG_KERNEL_CHANNEL
344 * Returns a LTTng channel file descriptor
345 * LTTNG_KERNEL_ENABLE
346 * Enables tracing for a session (weak enable)
347 * LTTNG_KERNEL_DISABLE
348 * Disables tracing for a session (strong disable)
349 * LTTNG_KERNEL_METADATA
350 * Returns a LTTng metadata file descriptor
352 * The returned channel will be deleted when its file descriptor is closed.
355 long lttng_session_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
357 struct ltt_session
*session
= file
->private_data
;
360 case LTTNG_KERNEL_CHANNEL
:
361 return lttng_abi_create_channel(file
,
362 (struct lttng_kernel_channel __user
*) arg
,
364 case LTTNG_KERNEL_SESSION_START
:
365 case LTTNG_KERNEL_ENABLE
:
366 return ltt_session_enable(session
);
367 case LTTNG_KERNEL_SESSION_STOP
:
368 case LTTNG_KERNEL_DISABLE
:
369 return ltt_session_disable(session
);
370 case LTTNG_KERNEL_METADATA
:
371 return lttng_abi_create_channel(file
,
372 (struct lttng_kernel_channel __user
*) arg
,
380 * Called when the last file reference is dropped.
382 * Big fat note: channels and events are invariant for the whole session after
383 * their creation. So this session destruction also destroys all channel and
384 * event structures specific to this session (they are not destroyed when their
385 * individual file is released).
388 int lttng_session_release(struct inode
*inode
, struct file
*file
)
390 struct ltt_session
*session
= file
->private_data
;
393 ltt_session_destroy(session
);
397 static const struct file_operations lttng_session_fops
= {
398 .release
= lttng_session_release
,
399 .unlocked_ioctl
= lttng_session_ioctl
,
401 .compat_ioctl
= lttng_session_ioctl
,
406 int lttng_abi_open_stream(struct file
*channel_file
)
408 struct ltt_channel
*channel
= channel_file
->private_data
;
409 struct lib_ring_buffer
*buf
;
411 struct file
*stream_file
;
413 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
417 stream_fd
= get_unused_fd();
422 stream_file
= anon_inode_getfile("[lttng_stream]",
423 &lib_ring_buffer_file_operations
,
425 if (IS_ERR(stream_file
)) {
426 ret
= PTR_ERR(stream_file
);
430 * OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
431 * FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
432 * file descriptor, so we set FMODE_PREAD here.
434 stream_file
->f_mode
|= FMODE_PREAD
;
435 fd_install(stream_fd
, stream_file
);
437 * The stream holds a reference to the channel within the generic ring
438 * buffer library, so no need to hold a refcount on the channel and
439 * session files here.
444 put_unused_fd(stream_fd
);
446 channel
->ops
->buffer_read_close(buf
);
451 int lttng_abi_create_event(struct file
*channel_file
,
452 struct lttng_kernel_event __user
*uevent_param
)
454 struct ltt_channel
*channel
= channel_file
->private_data
;
455 struct ltt_event
*event
;
456 struct lttng_kernel_event event_param
;
458 struct file
*event_file
;
460 if (copy_from_user(&event_param
, uevent_param
, sizeof(event_param
)))
462 event_param
.name
[LTTNG_SYM_NAME_LEN
- 1] = '\0';
463 switch (event_param
.instrumentation
) {
464 case LTTNG_KERNEL_KPROBE
:
465 event_param
.u
.kprobe
.symbol_name
[LTTNG_SYM_NAME_LEN
- 1] = '\0';
467 case LTTNG_KERNEL_FUNCTION
:
468 event_param
.u
.ftrace
.symbol_name
[LTTNG_SYM_NAME_LEN
- 1] = '\0';
473 event_fd
= get_unused_fd();
478 event_file
= anon_inode_getfile("[lttng_event]",
481 if (IS_ERR(event_file
)) {
482 ret
= PTR_ERR(event_file
);
486 * We tolerate no failure path after event creation. It will stay
487 * invariant for the rest of the session.
489 event
= ltt_event_create(channel
, &event_param
, NULL
);
494 event_file
->private_data
= event
;
495 fd_install(event_fd
, event_file
);
496 /* The event holds a reference on the channel */
497 atomic_long_inc(&channel_file
->f_count
);
503 put_unused_fd(event_fd
);
509 * lttng_channel_ioctl - lttng syscall through ioctl
515 * This ioctl implements lttng commands:
516 * LTTNG_KERNEL_STREAM
517 * Returns an event stream file descriptor or failure.
518 * (typically, one event stream records events from one CPU)
520 * Returns an event file descriptor or failure.
521 * LTTNG_KERNEL_CONTEXT
522 * Prepend a context field to each event in the channel
523 * LTTNG_KERNEL_ENABLE
524 * Enable recording for events in this channel (weak enable)
525 * LTTNG_KERNEL_DISABLE
526 * Disable recording for events in this channel (strong disable)
528 * Channel and event file descriptors also hold a reference on the session.
531 long lttng_channel_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
533 struct ltt_channel
*channel
= file
->private_data
;
536 case LTTNG_KERNEL_STREAM
:
537 return lttng_abi_open_stream(file
);
538 case LTTNG_KERNEL_EVENT
:
539 return lttng_abi_create_event(file
, (struct lttng_kernel_event __user
*) arg
);
540 case LTTNG_KERNEL_CONTEXT
:
541 return lttng_abi_add_context(file
,
542 (struct lttng_kernel_context __user
*) arg
,
543 &channel
->ctx
, channel
->session
);
544 case LTTNG_KERNEL_ENABLE
:
545 return ltt_channel_enable(channel
);
546 case LTTNG_KERNEL_DISABLE
:
547 return ltt_channel_disable(channel
);
554 * lttng_metadata_ioctl - lttng syscall through ioctl
560 * This ioctl implements lttng commands:
561 * LTTNG_KERNEL_STREAM
562 * Returns an event stream file descriptor or failure.
564 * Channel and event file descriptors also hold a reference on the session.
567 long lttng_metadata_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
570 case LTTNG_KERNEL_STREAM
:
571 return lttng_abi_open_stream(file
);
578 * lttng_channel_poll - lttng stream addition/removal monitoring
583 unsigned int lttng_channel_poll(struct file
*file
, poll_table
*wait
)
585 struct ltt_channel
*channel
= file
->private_data
;
586 unsigned int mask
= 0;
588 if (file
->f_mode
& FMODE_READ
) {
589 poll_wait_set_exclusive(wait
);
590 poll_wait(file
, channel
->ops
->get_hp_wait_queue(channel
->chan
),
593 if (channel
->ops
->is_disabled(channel
->chan
))
595 if (channel
->ops
->is_finalized(channel
->chan
))
598 return POLLIN
| POLLRDNORM
;
605 int lttng_channel_release(struct inode
*inode
, struct file
*file
)
607 struct ltt_channel
*channel
= file
->private_data
;
610 fput(channel
->session
->file
);
614 static const struct file_operations lttng_channel_fops
= {
615 .release
= lttng_channel_release
,
616 .poll
= lttng_channel_poll
,
617 .unlocked_ioctl
= lttng_channel_ioctl
,
619 .compat_ioctl
= lttng_channel_ioctl
,
623 static const struct file_operations lttng_metadata_fops
= {
624 .release
= lttng_channel_release
,
625 .unlocked_ioctl
= lttng_metadata_ioctl
,
627 .compat_ioctl
= lttng_metadata_ioctl
,
632 * lttng_event_ioctl - lttng syscall through ioctl
638 * This ioctl implements lttng commands:
639 * LTTNG_KERNEL_CONTEXT
640 * Prepend a context field to each record of this event
641 * LTTNG_KERNEL_ENABLE
642 * Enable recording for this event (weak enable)
643 * LTTNG_KERNEL_DISABLE
644 * Disable recording for this event (strong disable)
647 long lttng_event_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
649 struct ltt_event
*event
= file
->private_data
;
652 case LTTNG_KERNEL_CONTEXT
:
653 return lttng_abi_add_context(file
,
654 (struct lttng_kernel_context __user
*) arg
,
655 &event
->ctx
, event
->chan
->session
);
656 case LTTNG_KERNEL_ENABLE
:
657 return ltt_event_enable(event
);
658 case LTTNG_KERNEL_DISABLE
:
659 return ltt_event_disable(event
);
666 int lttng_event_release(struct inode
*inode
, struct file
*file
)
668 struct ltt_event
*event
= file
->private_data
;
671 fput(event
->chan
->file
);
675 /* TODO: filter control ioctl */
676 static const struct file_operations lttng_event_fops
= {
677 .release
= lttng_event_release
,
678 .unlocked_ioctl
= lttng_event_ioctl
,
680 .compat_ioctl
= lttng_event_ioctl
,
684 int __init
ltt_debugfs_abi_init(void)
688 wrapper_vmalloc_sync_all();
689 lttng_dentry
= debugfs_create_file("lttng", S_IWUSR
, NULL
, NULL
,
691 if (IS_ERR(lttng_dentry
) || !lttng_dentry
) {
692 printk(KERN_ERR
"Error creating LTTng control file\n");
700 void __exit
ltt_debugfs_abi_exit(void)
702 debugfs_remove(lttng_dentry
);