6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 * Mimic system calls for:
24 * - session creation, returns a file descriptor or failure.
25 * - channel creation, returns a file descriptor or failure.
26 * - Operates on a session file descriptor
27 * - Takes all channel options as parameters.
28 * - stream get, returns a file descriptor or failure.
29 * - Operates on a channel file descriptor.
30 * - stream notifier get, returns a file descriptor or failure.
31 * - Operates on a channel file descriptor.
32 * - event creation, returns a file descriptor or failure.
33 * - Operates on a channel file descriptor
34 * - Takes an event name as parameter
35 * - Takes an instrumentation source as parameter
36 * - e.g. tracepoints, dynamic_probes...
37 * - Takes instrumentation source specific arguments.
40 #include <linux/module.h>
41 #include <linux/proc_fs.h>
42 #include <linux/anon_inodes.h>
43 #include <linux/file.h>
44 #include <linux/uaccess.h>
45 #include <linux/slab.h>
46 #include <linux/err.h>
47 #include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
48 #include "wrapper/ringbuffer/vfs.h"
49 #include "wrapper/ringbuffer/backend.h"
50 #include "wrapper/ringbuffer/frontend.h"
51 #include "wrapper/poll.h"
52 #include "wrapper/file.h"
53 #include "lttng-abi.h"
54 #include "lttng-abi-old.h"
55 #include "lttng-events.h"
56 #include "lttng-tracer.h"
57 #include "lib/ringbuffer/frontend_types.h"
60 * This is LTTng's own personal way to create a system call as an external
61 * module. We use ioctl() on /proc/lttng.
64 static struct proc_dir_entry
*lttng_proc_dentry
;
65 static const struct file_operations lttng_fops
;
66 static const struct file_operations lttng_session_fops
;
67 static const struct file_operations lttng_channel_fops
;
68 static const struct file_operations lttng_metadata_fops
;
69 static const struct file_operations lttng_event_fops
;
70 static struct file_operations lttng_stream_ring_buffer_file_operations
;
73 * Teardown management: opened file descriptors keep a refcount on the module,
74 * so it can only exit when all file descriptors are closed.
78 int lttng_abi_create_session(void)
80 struct lttng_session
*session
;
81 struct file
*session_file
;
84 session
= lttng_session_create();
87 session_fd
= lttng_get_unused_fd();
92 session_file
= anon_inode_getfile("[lttng_session]",
95 if (IS_ERR(session_file
)) {
96 ret
= PTR_ERR(session_file
);
99 session
->file
= session_file
;
100 fd_install(session_fd
, session_file
);
104 put_unused_fd(session_fd
);
106 lttng_session_destroy(session
);
111 int lttng_abi_tracepoint_list(void)
113 struct file
*tracepoint_list_file
;
116 file_fd
= lttng_get_unused_fd();
122 tracepoint_list_file
= anon_inode_getfile("[lttng_tracepoint_list]",
123 <tng_tracepoint_list_fops
,
125 if (IS_ERR(tracepoint_list_file
)) {
126 ret
= PTR_ERR(tracepoint_list_file
);
129 ret
= lttng_tracepoint_list_fops
.open(NULL
, tracepoint_list_file
);
132 fd_install(file_fd
, tracepoint_list_file
);
140 fput(tracepoint_list_file
);
142 put_unused_fd(file_fd
);
147 #ifndef CONFIG_HAVE_SYSCALL_TRACEPOINTS
149 int lttng_abi_syscall_list(void)
155 int lttng_abi_syscall_list(void)
157 struct file
*syscall_list_file
;
160 file_fd
= lttng_get_unused_fd();
166 syscall_list_file
= anon_inode_getfile("[lttng_syscall_list]",
167 <tng_syscall_list_fops
,
169 if (IS_ERR(syscall_list_file
)) {
170 ret
= PTR_ERR(syscall_list_file
);
173 ret
= lttng_syscall_list_fops
.open(NULL
, syscall_list_file
);
176 fd_install(file_fd
, syscall_list_file
);
184 fput(syscall_list_file
);
186 put_unused_fd(file_fd
);
193 void lttng_abi_tracer_version(struct lttng_kernel_tracer_version
*v
)
195 v
->major
= LTTNG_MODULES_MAJOR_VERSION
;
196 v
->minor
= LTTNG_MODULES_MINOR_VERSION
;
197 v
->patchlevel
= LTTNG_MODULES_PATCHLEVEL_VERSION
;
201 void lttng_abi_tracer_abi_version(struct lttng_kernel_tracer_abi_version
*v
)
203 v
->major
= LTTNG_MODULES_ABI_MAJOR_VERSION
;
204 v
->minor
= LTTNG_MODULES_ABI_MINOR_VERSION
;
208 long lttng_abi_add_context(struct file
*file
,
209 struct lttng_kernel_context
*context_param
,
210 struct lttng_ctx
**ctx
, struct lttng_session
*session
)
213 if (session
->been_active
)
216 switch (context_param
->ctx
) {
217 case LTTNG_KERNEL_CONTEXT_PID
:
218 return lttng_add_pid_to_ctx(ctx
);
219 case LTTNG_KERNEL_CONTEXT_PRIO
:
220 return lttng_add_prio_to_ctx(ctx
);
221 case LTTNG_KERNEL_CONTEXT_NICE
:
222 return lttng_add_nice_to_ctx(ctx
);
223 case LTTNG_KERNEL_CONTEXT_VPID
:
224 return lttng_add_vpid_to_ctx(ctx
);
225 case LTTNG_KERNEL_CONTEXT_TID
:
226 return lttng_add_tid_to_ctx(ctx
);
227 case LTTNG_KERNEL_CONTEXT_VTID
:
228 return lttng_add_vtid_to_ctx(ctx
);
229 case LTTNG_KERNEL_CONTEXT_PPID
:
230 return lttng_add_ppid_to_ctx(ctx
);
231 case LTTNG_KERNEL_CONTEXT_VPPID
:
232 return lttng_add_vppid_to_ctx(ctx
);
233 case LTTNG_KERNEL_CONTEXT_PERF_COUNTER
:
234 context_param
->u
.perf_counter
.name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
235 return lttng_add_perf_counter_to_ctx(context_param
->u
.perf_counter
.type
,
236 context_param
->u
.perf_counter
.config
,
237 context_param
->u
.perf_counter
.name
,
239 case LTTNG_KERNEL_CONTEXT_PROCNAME
:
240 return lttng_add_procname_to_ctx(ctx
);
241 case LTTNG_KERNEL_CONTEXT_HOSTNAME
:
242 return lttng_add_hostname_to_ctx(ctx
);
243 case LTTNG_KERNEL_CONTEXT_CPU_ID
:
244 return lttng_add_cpu_id_to_ctx(ctx
);
251 * lttng_ioctl - lttng syscall through ioctl
257 * This ioctl implements lttng commands:
258 * LTTNG_KERNEL_SESSION
259 * Returns a LTTng trace session file descriptor
260 * LTTNG_KERNEL_TRACER_VERSION
261 * Returns the LTTng kernel tracer version
262 * LTTNG_KERNEL_TRACEPOINT_LIST
263 * Returns a file descriptor listing available tracepoints
264 * LTTNG_KERNEL_WAIT_QUIESCENT
265 * Returns after all previously running probes have completed
266 * LTTNG_KERNEL_TRACER_ABI_VERSION
267 * Returns the LTTng kernel tracer ABI version
269 * The returned session will be deleted when its file descriptor is closed.
272 long lttng_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
275 case LTTNG_KERNEL_OLD_SESSION
:
276 case LTTNG_KERNEL_SESSION
:
277 return lttng_abi_create_session();
278 case LTTNG_KERNEL_OLD_TRACER_VERSION
:
280 struct lttng_kernel_tracer_version v
;
281 struct lttng_kernel_old_tracer_version oldv
;
282 struct lttng_kernel_old_tracer_version
*uversion
=
283 (struct lttng_kernel_old_tracer_version __user
*) arg
;
285 lttng_abi_tracer_version(&v
);
286 oldv
.major
= v
.major
;
287 oldv
.minor
= v
.minor
;
288 oldv
.patchlevel
= v
.patchlevel
;
290 if (copy_to_user(uversion
, &oldv
, sizeof(oldv
)))
294 case LTTNG_KERNEL_TRACER_VERSION
:
296 struct lttng_kernel_tracer_version version
;
297 struct lttng_kernel_tracer_version
*uversion
=
298 (struct lttng_kernel_tracer_version __user
*) arg
;
300 lttng_abi_tracer_version(&version
);
302 if (copy_to_user(uversion
, &version
, sizeof(version
)))
306 case LTTNG_KERNEL_TRACER_ABI_VERSION
:
308 struct lttng_kernel_tracer_abi_version version
;
309 struct lttng_kernel_tracer_abi_version
*uversion
=
310 (struct lttng_kernel_tracer_abi_version __user
*) arg
;
312 lttng_abi_tracer_abi_version(&version
);
314 if (copy_to_user(uversion
, &version
, sizeof(version
)))
318 case LTTNG_KERNEL_OLD_TRACEPOINT_LIST
:
319 case LTTNG_KERNEL_TRACEPOINT_LIST
:
320 return lttng_abi_tracepoint_list();
321 case LTTNG_KERNEL_SYSCALL_LIST
:
322 return lttng_abi_syscall_list();
323 case LTTNG_KERNEL_OLD_WAIT_QUIESCENT
:
324 case LTTNG_KERNEL_WAIT_QUIESCENT
:
327 case LTTNG_KERNEL_OLD_CALIBRATE
:
329 struct lttng_kernel_old_calibrate __user
*ucalibrate
=
330 (struct lttng_kernel_old_calibrate __user
*) arg
;
331 struct lttng_kernel_old_calibrate old_calibrate
;
332 struct lttng_kernel_calibrate calibrate
;
335 if (copy_from_user(&old_calibrate
, ucalibrate
, sizeof(old_calibrate
)))
337 calibrate
.type
= old_calibrate
.type
;
338 ret
= lttng_calibrate(&calibrate
);
339 if (copy_to_user(ucalibrate
, &old_calibrate
, sizeof(old_calibrate
)))
343 case LTTNG_KERNEL_CALIBRATE
:
345 struct lttng_kernel_calibrate __user
*ucalibrate
=
346 (struct lttng_kernel_calibrate __user
*) arg
;
347 struct lttng_kernel_calibrate calibrate
;
350 if (copy_from_user(&calibrate
, ucalibrate
, sizeof(calibrate
)))
352 ret
= lttng_calibrate(&calibrate
);
353 if (copy_to_user(ucalibrate
, &calibrate
, sizeof(calibrate
)))
362 static const struct file_operations lttng_fops
= {
363 .owner
= THIS_MODULE
,
364 .unlocked_ioctl
= lttng_ioctl
,
366 .compat_ioctl
= lttng_ioctl
,
371 int lttng_abi_create_channel(struct file
*session_file
,
372 struct lttng_kernel_channel
*chan_param
,
373 enum channel_type channel_type
)
375 struct lttng_session
*session
= session_file
->private_data
;
376 const struct file_operations
*fops
= NULL
;
377 const char *transport_name
;
378 struct lttng_channel
*chan
;
379 struct file
*chan_file
;
383 chan_fd
= lttng_get_unused_fd();
388 switch (channel_type
) {
389 case PER_CPU_CHANNEL
:
390 fops
= <tng_channel_fops
;
392 case METADATA_CHANNEL
:
393 fops
= <tng_metadata_fops
;
397 chan_file
= anon_inode_getfile("[lttng_channel]",
400 if (IS_ERR(chan_file
)) {
401 ret
= PTR_ERR(chan_file
);
404 switch (channel_type
) {
405 case PER_CPU_CHANNEL
:
406 if (chan_param
->output
== LTTNG_KERNEL_SPLICE
) {
407 transport_name
= chan_param
->overwrite
?
408 "relay-overwrite" : "relay-discard";
409 } else if (chan_param
->output
== LTTNG_KERNEL_MMAP
) {
410 transport_name
= chan_param
->overwrite
?
411 "relay-overwrite-mmap" : "relay-discard-mmap";
416 case METADATA_CHANNEL
:
417 if (chan_param
->output
== LTTNG_KERNEL_SPLICE
)
418 transport_name
= "relay-metadata";
419 else if (chan_param
->output
== LTTNG_KERNEL_MMAP
)
420 transport_name
= "relay-metadata-mmap";
425 transport_name
= "<unknown>";
429 * We tolerate no failure path after channel creation. It will stay
430 * invariant for the rest of the session.
432 chan
= lttng_channel_create(session
, transport_name
, NULL
,
433 chan_param
->subbuf_size
,
434 chan_param
->num_subbuf
,
435 chan_param
->switch_timer_interval
,
436 chan_param
->read_timer_interval
,
442 chan
->file
= chan_file
;
443 chan_file
->private_data
= chan
;
444 fd_install(chan_fd
, chan_file
);
445 atomic_long_inc(&session_file
->f_count
);
452 put_unused_fd(chan_fd
);
458 * lttng_session_ioctl - lttng session fd ioctl
464 * This ioctl implements lttng commands:
465 * LTTNG_KERNEL_CHANNEL
466 * Returns a LTTng channel file descriptor
467 * LTTNG_KERNEL_ENABLE
468 * Enables tracing for a session (weak enable)
469 * LTTNG_KERNEL_DISABLE
470 * Disables tracing for a session (strong disable)
471 * LTTNG_KERNEL_METADATA
472 * Returns a LTTng metadata file descriptor
473 * LTTNG_KERNEL_SESSION_TRACK_PID
474 * Add PID to session tracker
475 * LTTNG_KERNEL_SESSION_UNTRACK_PID
476 * Remove PID from session tracker
478 * The returned channel will be deleted when its file descriptor is closed.
481 long lttng_session_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
483 struct lttng_session
*session
= file
->private_data
;
486 case LTTNG_KERNEL_OLD_CHANNEL
:
488 struct lttng_kernel_channel chan_param
;
489 struct lttng_kernel_old_channel old_chan_param
;
491 if (copy_from_user(&old_chan_param
,
492 (struct lttng_kernel_old_channel __user
*) arg
,
493 sizeof(struct lttng_kernel_old_channel
)))
495 chan_param
.overwrite
= old_chan_param
.overwrite
;
496 chan_param
.subbuf_size
= old_chan_param
.subbuf_size
;
497 chan_param
.num_subbuf
= old_chan_param
.num_subbuf
;
498 chan_param
.switch_timer_interval
= old_chan_param
.switch_timer_interval
;
499 chan_param
.read_timer_interval
= old_chan_param
.read_timer_interval
;
500 chan_param
.output
= old_chan_param
.output
;
502 return lttng_abi_create_channel(file
, &chan_param
,
505 case LTTNG_KERNEL_CHANNEL
:
507 struct lttng_kernel_channel chan_param
;
509 if (copy_from_user(&chan_param
,
510 (struct lttng_kernel_channel __user
*) arg
,
511 sizeof(struct lttng_kernel_channel
)))
513 return lttng_abi_create_channel(file
, &chan_param
,
516 case LTTNG_KERNEL_OLD_SESSION_START
:
517 case LTTNG_KERNEL_OLD_ENABLE
:
518 case LTTNG_KERNEL_SESSION_START
:
519 case LTTNG_KERNEL_ENABLE
:
520 return lttng_session_enable(session
);
521 case LTTNG_KERNEL_OLD_SESSION_STOP
:
522 case LTTNG_KERNEL_OLD_DISABLE
:
523 case LTTNG_KERNEL_SESSION_STOP
:
524 case LTTNG_KERNEL_DISABLE
:
525 return lttng_session_disable(session
);
526 case LTTNG_KERNEL_OLD_METADATA
:
528 struct lttng_kernel_channel chan_param
;
529 struct lttng_kernel_old_channel old_chan_param
;
531 if (copy_from_user(&old_chan_param
,
532 (struct lttng_kernel_old_channel __user
*) arg
,
533 sizeof(struct lttng_kernel_old_channel
)))
535 chan_param
.overwrite
= old_chan_param
.overwrite
;
536 chan_param
.subbuf_size
= old_chan_param
.subbuf_size
;
537 chan_param
.num_subbuf
= old_chan_param
.num_subbuf
;
538 chan_param
.switch_timer_interval
= old_chan_param
.switch_timer_interval
;
539 chan_param
.read_timer_interval
= old_chan_param
.read_timer_interval
;
540 chan_param
.output
= old_chan_param
.output
;
542 return lttng_abi_create_channel(file
, &chan_param
,
545 case LTTNG_KERNEL_METADATA
:
547 struct lttng_kernel_channel chan_param
;
549 if (copy_from_user(&chan_param
,
550 (struct lttng_kernel_channel __user
*) arg
,
551 sizeof(struct lttng_kernel_channel
)))
553 return lttng_abi_create_channel(file
, &chan_param
,
556 case LTTNG_KERNEL_SESSION_TRACK_PID
:
557 return lttng_session_track_pid(session
, (int) arg
);
558 case LTTNG_KERNEL_SESSION_UNTRACK_PID
:
559 return lttng_session_untrack_pid(session
, (int) arg
);
560 case LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS
:
561 return lttng_session_list_tracker_pids(session
);
568 * Called when the last file reference is dropped.
570 * Big fat note: channels and events are invariant for the whole session after
571 * their creation. So this session destruction also destroys all channel and
572 * event structures specific to this session (they are not destroyed when their
573 * individual file is released).
576 int lttng_session_release(struct inode
*inode
, struct file
*file
)
578 struct lttng_session
*session
= file
->private_data
;
581 lttng_session_destroy(session
);
585 static const struct file_operations lttng_session_fops
= {
586 .owner
= THIS_MODULE
,
587 .release
= lttng_session_release
,
588 .unlocked_ioctl
= lttng_session_ioctl
,
590 .compat_ioctl
= lttng_session_ioctl
,
595 * lttng_metadata_ring_buffer_poll - LTTng ring buffer poll file operation
599 * Handles the poll operations for the metadata channels.
602 unsigned int lttng_metadata_ring_buffer_poll(struct file
*filp
,
605 struct lttng_metadata_stream
*stream
= filp
->private_data
;
606 struct lib_ring_buffer
*buf
= stream
->priv
;
608 unsigned int mask
= 0;
610 if (filp
->f_mode
& FMODE_READ
) {
611 poll_wait_set_exclusive(wait
);
612 poll_wait(filp
, &stream
->read_wait
, wait
);
614 finalized
= stream
->finalized
;
617 * lib_ring_buffer_is_finalized() contains a smp_rmb()
618 * ordering finalized load before offsets loads.
620 WARN_ON(atomic_long_read(&buf
->active_readers
) != 1);
625 mutex_lock(&stream
->metadata_cache
->lock
);
626 if (stream
->metadata_cache
->metadata_written
>
627 stream
->metadata_out
)
629 mutex_unlock(&stream
->metadata_cache
->lock
);
636 void lttng_metadata_ring_buffer_ioctl_put_next_subbuf(struct file
*filp
,
637 unsigned int cmd
, unsigned long arg
)
639 struct lttng_metadata_stream
*stream
= filp
->private_data
;
641 stream
->metadata_out
= stream
->metadata_in
;
645 long lttng_metadata_ring_buffer_ioctl(struct file
*filp
,
646 unsigned int cmd
, unsigned long arg
)
649 struct lttng_metadata_stream
*stream
= filp
->private_data
;
650 struct lib_ring_buffer
*buf
= stream
->priv
;
653 case RING_BUFFER_GET_NEXT_SUBBUF
:
655 struct lttng_metadata_stream
*stream
= filp
->private_data
;
656 struct lib_ring_buffer
*buf
= stream
->priv
;
657 struct channel
*chan
= buf
->backend
.chan
;
659 ret
= lttng_metadata_output_channel(stream
, chan
);
661 lib_ring_buffer_switch_slow(buf
, SWITCH_ACTIVE
);
667 case RING_BUFFER_GET_SUBBUF
:
670 * Random access is not allowed for metadata channel.
674 case RING_BUFFER_FLUSH
:
676 struct lttng_metadata_stream
*stream
= filp
->private_data
;
677 struct lib_ring_buffer
*buf
= stream
->priv
;
678 struct channel
*chan
= buf
->backend
.chan
;
681 * Before doing the actual ring buffer flush, write up to one
682 * packet of metadata in the ring buffer.
684 ret
= lttng_metadata_output_channel(stream
, chan
);
692 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
694 /* Performing lib ring buffer ioctl after our own. */
695 ret
= lib_ring_buffer_ioctl(filp
, cmd
, arg
, buf
);
700 case RING_BUFFER_PUT_NEXT_SUBBUF
:
702 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp
,
715 long lttng_metadata_ring_buffer_compat_ioctl(struct file
*filp
,
716 unsigned int cmd
, unsigned long arg
)
719 struct lttng_metadata_stream
*stream
= filp
->private_data
;
720 struct lib_ring_buffer
*buf
= stream
->priv
;
723 case RING_BUFFER_GET_NEXT_SUBBUF
:
725 struct lttng_metadata_stream
*stream
= filp
->private_data
;
726 struct lib_ring_buffer
*buf
= stream
->priv
;
727 struct channel
*chan
= buf
->backend
.chan
;
729 ret
= lttng_metadata_output_channel(stream
, chan
);
731 lib_ring_buffer_switch_slow(buf
, SWITCH_ACTIVE
);
737 case RING_BUFFER_GET_SUBBUF
:
740 * Random access is not allowed for metadata channel.
747 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
749 /* Performing lib ring buffer ioctl after our own. */
750 ret
= lib_ring_buffer_compat_ioctl(filp
, cmd
, arg
, buf
);
755 case RING_BUFFER_PUT_NEXT_SUBBUF
:
757 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp
,
770 * This is not used by anonymous file descriptors. This code is left
771 * there if we ever want to implement an inode with open() operation.
774 int lttng_metadata_ring_buffer_open(struct inode
*inode
, struct file
*file
)
776 struct lttng_metadata_stream
*stream
= inode
->i_private
;
777 struct lib_ring_buffer
*buf
= stream
->priv
;
779 file
->private_data
= buf
;
781 * Since life-time of metadata cache differs from that of
782 * session, we need to keep our own reference on the transport.
784 if (!try_module_get(stream
->transport
->owner
)) {
785 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
788 return lib_ring_buffer_open(inode
, file
, buf
);
792 int lttng_metadata_ring_buffer_release(struct inode
*inode
, struct file
*file
)
794 struct lttng_metadata_stream
*stream
= file
->private_data
;
795 struct lib_ring_buffer
*buf
= stream
->priv
;
797 kref_put(&stream
->metadata_cache
->refcount
, metadata_cache_destroy
);
798 module_put(stream
->transport
->owner
);
799 return lib_ring_buffer_release(inode
, file
, buf
);
803 ssize_t
lttng_metadata_ring_buffer_splice_read(struct file
*in
, loff_t
*ppos
,
804 struct pipe_inode_info
*pipe
, size_t len
,
807 struct lttng_metadata_stream
*stream
= in
->private_data
;
808 struct lib_ring_buffer
*buf
= stream
->priv
;
810 return lib_ring_buffer_splice_read(in
, ppos
, pipe
, len
,
815 int lttng_metadata_ring_buffer_mmap(struct file
*filp
,
816 struct vm_area_struct
*vma
)
818 struct lttng_metadata_stream
*stream
= filp
->private_data
;
819 struct lib_ring_buffer
*buf
= stream
->priv
;
821 return lib_ring_buffer_mmap(filp
, vma
, buf
);
825 const struct file_operations lttng_metadata_ring_buffer_file_operations
= {
826 .owner
= THIS_MODULE
,
827 .open
= lttng_metadata_ring_buffer_open
,
828 .release
= lttng_metadata_ring_buffer_release
,
829 .poll
= lttng_metadata_ring_buffer_poll
,
830 .splice_read
= lttng_metadata_ring_buffer_splice_read
,
831 .mmap
= lttng_metadata_ring_buffer_mmap
,
832 .unlocked_ioctl
= lttng_metadata_ring_buffer_ioctl
,
833 .llseek
= vfs_lib_ring_buffer_no_llseek
,
835 .compat_ioctl
= lttng_metadata_ring_buffer_compat_ioctl
,
840 int lttng_abi_create_stream_fd(struct file
*channel_file
, void *stream_priv
,
841 const struct file_operations
*fops
)
844 struct file
*stream_file
;
846 stream_fd
= lttng_get_unused_fd();
851 stream_file
= anon_inode_getfile("[lttng_stream]", fops
,
852 stream_priv
, O_RDWR
);
853 if (IS_ERR(stream_file
)) {
854 ret
= PTR_ERR(stream_file
);
858 * OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
859 * FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
860 * file descriptor, so we set FMODE_PREAD here.
862 stream_file
->f_mode
|= FMODE_PREAD
;
863 fd_install(stream_fd
, stream_file
);
865 * The stream holds a reference to the channel within the generic ring
866 * buffer library, so no need to hold a refcount on the channel and
867 * session files here.
872 put_unused_fd(stream_fd
);
878 int lttng_abi_open_stream(struct file
*channel_file
)
880 struct lttng_channel
*channel
= channel_file
->private_data
;
881 struct lib_ring_buffer
*buf
;
885 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
890 ret
= lttng_abi_create_stream_fd(channel_file
, stream_priv
,
891 <tng_stream_ring_buffer_file_operations
);
898 channel
->ops
->buffer_read_close(buf
);
903 int lttng_abi_open_metadata_stream(struct file
*channel_file
)
905 struct lttng_channel
*channel
= channel_file
->private_data
;
906 struct lttng_session
*session
= channel
->session
;
907 struct lib_ring_buffer
*buf
;
909 struct lttng_metadata_stream
*metadata_stream
;
912 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
916 metadata_stream
= kzalloc(sizeof(struct lttng_metadata_stream
),
918 if (!metadata_stream
) {
922 metadata_stream
->metadata_cache
= session
->metadata_cache
;
923 init_waitqueue_head(&metadata_stream
->read_wait
);
924 metadata_stream
->priv
= buf
;
925 stream_priv
= metadata_stream
;
926 metadata_stream
->transport
= channel
->transport
;
929 * Since life-time of metadata cache differs from that of
930 * session, we need to keep our own reference on the transport.
932 if (!try_module_get(metadata_stream
->transport
->owner
)) {
933 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
938 ret
= lttng_abi_create_stream_fd(channel_file
, stream_priv
,
939 <tng_metadata_ring_buffer_file_operations
);
943 kref_get(&session
->metadata_cache
->refcount
);
944 list_add(&metadata_stream
->list
,
945 &session
->metadata_cache
->metadata_stream
);
949 module_put(metadata_stream
->transport
->owner
);
951 kfree(metadata_stream
);
953 channel
->ops
->buffer_read_close(buf
);
958 int lttng_abi_create_event(struct file
*channel_file
,
959 struct lttng_kernel_event
*event_param
)
961 struct lttng_channel
*channel
= channel_file
->private_data
;
963 struct file
*event_file
;
966 event_param
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
967 switch (event_param
->instrumentation
) {
968 case LTTNG_KERNEL_KRETPROBE
:
969 event_param
->u
.kretprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
971 case LTTNG_KERNEL_KPROBE
:
972 event_param
->u
.kprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
974 case LTTNG_KERNEL_FUNCTION
:
975 event_param
->u
.ftrace
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
980 event_fd
= lttng_get_unused_fd();
985 event_file
= anon_inode_getfile("[lttng_event]",
988 if (IS_ERR(event_file
)) {
989 ret
= PTR_ERR(event_file
);
992 if (event_param
->instrumentation
== LTTNG_KERNEL_TRACEPOINT
993 || event_param
->instrumentation
== LTTNG_KERNEL_SYSCALL
) {
994 struct lttng_enabler
*enabler
;
996 if (event_param
->name
[strlen(event_param
->name
) - 1] == '*') {
997 enabler
= lttng_enabler_create(LTTNG_ENABLER_WILDCARD
,
998 event_param
, channel
);
1000 enabler
= lttng_enabler_create(LTTNG_ENABLER_NAME
,
1001 event_param
, channel
);
1005 struct lttng_event
*event
;
1008 * We tolerate no failure path after event creation. It
1009 * will stay invariant for the rest of the session.
1011 event
= lttng_event_create(channel
, event_param
,
1013 event_param
->instrumentation
);
1014 WARN_ON_ONCE(!event
);
1015 if (IS_ERR(event
)) {
1016 ret
= PTR_ERR(event
);
1021 event_file
->private_data
= priv
;
1022 fd_install(event_fd
, event_file
);
1023 /* The event holds a reference on the channel */
1024 atomic_long_inc(&channel_file
->f_count
);
1030 put_unused_fd(event_fd
);
1036 * lttng_channel_ioctl - lttng syscall through ioctl
1042 * This ioctl implements lttng commands:
1043 * LTTNG_KERNEL_STREAM
1044 * Returns an event stream file descriptor or failure.
1045 * (typically, one event stream records events from one CPU)
1046 * LTTNG_KERNEL_EVENT
1047 * Returns an event file descriptor or failure.
1048 * LTTNG_KERNEL_CONTEXT
1049 * Prepend a context field to each event in the channel
1050 * LTTNG_KERNEL_ENABLE
1051 * Enable recording for events in this channel (weak enable)
1052 * LTTNG_KERNEL_DISABLE
1053 * Disable recording for events in this channel (strong disable)
1055 * Channel and event file descriptors also hold a reference on the session.
1058 long lttng_channel_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1060 struct lttng_channel
*channel
= file
->private_data
;
1063 case LTTNG_KERNEL_OLD_STREAM
:
1064 case LTTNG_KERNEL_STREAM
:
1065 return lttng_abi_open_stream(file
);
1066 case LTTNG_KERNEL_OLD_EVENT
:
1068 struct lttng_kernel_event
*uevent_param
;
1069 struct lttng_kernel_old_event
*old_uevent_param
;
1072 uevent_param
= kmalloc(sizeof(struct lttng_kernel_event
),
1074 if (!uevent_param
) {
1078 old_uevent_param
= kmalloc(
1079 sizeof(struct lttng_kernel_old_event
),
1081 if (!old_uevent_param
) {
1083 goto old_event_error_free_param
;
1085 if (copy_from_user(old_uevent_param
,
1086 (struct lttng_kernel_old_event __user
*) arg
,
1087 sizeof(struct lttng_kernel_old_event
))) {
1089 goto old_event_error_free_old_param
;
1092 memcpy(uevent_param
->name
, old_uevent_param
->name
,
1093 sizeof(uevent_param
->name
));
1094 uevent_param
->instrumentation
=
1095 old_uevent_param
->instrumentation
;
1097 switch (old_uevent_param
->instrumentation
) {
1098 case LTTNG_KERNEL_KPROBE
:
1099 uevent_param
->u
.kprobe
.addr
=
1100 old_uevent_param
->u
.kprobe
.addr
;
1101 uevent_param
->u
.kprobe
.offset
=
1102 old_uevent_param
->u
.kprobe
.offset
;
1103 memcpy(uevent_param
->u
.kprobe
.symbol_name
,
1104 old_uevent_param
->u
.kprobe
.symbol_name
,
1105 sizeof(uevent_param
->u
.kprobe
.symbol_name
));
1107 case LTTNG_KERNEL_KRETPROBE
:
1108 uevent_param
->u
.kretprobe
.addr
=
1109 old_uevent_param
->u
.kretprobe
.addr
;
1110 uevent_param
->u
.kretprobe
.offset
=
1111 old_uevent_param
->u
.kretprobe
.offset
;
1112 memcpy(uevent_param
->u
.kretprobe
.symbol_name
,
1113 old_uevent_param
->u
.kretprobe
.symbol_name
,
1114 sizeof(uevent_param
->u
.kretprobe
.symbol_name
));
1116 case LTTNG_KERNEL_FUNCTION
:
1117 memcpy(uevent_param
->u
.ftrace
.symbol_name
,
1118 old_uevent_param
->u
.ftrace
.symbol_name
,
1119 sizeof(uevent_param
->u
.ftrace
.symbol_name
));
1124 ret
= lttng_abi_create_event(file
, uevent_param
);
1126 old_event_error_free_old_param
:
1127 kfree(old_uevent_param
);
1128 old_event_error_free_param
:
1129 kfree(uevent_param
);
1133 case LTTNG_KERNEL_EVENT
:
1135 struct lttng_kernel_event uevent_param
;
1137 if (copy_from_user(&uevent_param
,
1138 (struct lttng_kernel_event __user
*) arg
,
1139 sizeof(uevent_param
)))
1141 return lttng_abi_create_event(file
, &uevent_param
);
1143 case LTTNG_KERNEL_OLD_CONTEXT
:
1145 struct lttng_kernel_context
*ucontext_param
;
1146 struct lttng_kernel_old_context
*old_ucontext_param
;
1149 ucontext_param
= kmalloc(sizeof(struct lttng_kernel_context
),
1151 if (!ucontext_param
) {
1155 old_ucontext_param
= kmalloc(sizeof(struct lttng_kernel_old_context
),
1157 if (!old_ucontext_param
) {
1159 goto old_ctx_error_free_param
;
1162 if (copy_from_user(old_ucontext_param
,
1163 (struct lttng_kernel_old_context __user
*) arg
,
1164 sizeof(struct lttng_kernel_old_context
))) {
1166 goto old_ctx_error_free_old_param
;
1168 ucontext_param
->ctx
= old_ucontext_param
->ctx
;
1169 memcpy(ucontext_param
->padding
, old_ucontext_param
->padding
,
1170 sizeof(ucontext_param
->padding
));
1171 /* only type that uses the union */
1172 if (old_ucontext_param
->ctx
== LTTNG_KERNEL_CONTEXT_PERF_COUNTER
) {
1173 ucontext_param
->u
.perf_counter
.type
=
1174 old_ucontext_param
->u
.perf_counter
.type
;
1175 ucontext_param
->u
.perf_counter
.config
=
1176 old_ucontext_param
->u
.perf_counter
.config
;
1177 memcpy(ucontext_param
->u
.perf_counter
.name
,
1178 old_ucontext_param
->u
.perf_counter
.name
,
1179 sizeof(ucontext_param
->u
.perf_counter
.name
));
1182 ret
= lttng_abi_add_context(file
,
1184 &channel
->ctx
, channel
->session
);
1186 old_ctx_error_free_old_param
:
1187 kfree(old_ucontext_param
);
1188 old_ctx_error_free_param
:
1189 kfree(ucontext_param
);
1193 case LTTNG_KERNEL_CONTEXT
:
1195 struct lttng_kernel_context ucontext_param
;
1197 if (copy_from_user(&ucontext_param
,
1198 (struct lttng_kernel_context __user
*) arg
,
1199 sizeof(ucontext_param
)))
1201 return lttng_abi_add_context(file
,
1203 &channel
->ctx
, channel
->session
);
1205 case LTTNG_KERNEL_OLD_ENABLE
:
1206 case LTTNG_KERNEL_ENABLE
:
1207 return lttng_channel_enable(channel
);
1208 case LTTNG_KERNEL_OLD_DISABLE
:
1209 case LTTNG_KERNEL_DISABLE
:
1210 return lttng_channel_disable(channel
);
1211 case LTTNG_KERNEL_SYSCALL_MASK
:
1212 return lttng_channel_syscall_mask(channel
,
1213 (struct lttng_kernel_syscall_mask __user
*) arg
);
1215 return -ENOIOCTLCMD
;
1221 * lttng_metadata_ioctl - lttng syscall through ioctl
1227 * This ioctl implements lttng commands:
1228 * LTTNG_KERNEL_STREAM
1229 * Returns an event stream file descriptor or failure.
1231 * Channel and event file descriptors also hold a reference on the session.
1234 long lttng_metadata_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1237 case LTTNG_KERNEL_OLD_STREAM
:
1238 case LTTNG_KERNEL_STREAM
:
1239 return lttng_abi_open_metadata_stream(file
);
1241 return -ENOIOCTLCMD
;
1246 * lttng_channel_poll - lttng stream addition/removal monitoring
1251 unsigned int lttng_channel_poll(struct file
*file
, poll_table
*wait
)
1253 struct lttng_channel
*channel
= file
->private_data
;
1254 unsigned int mask
= 0;
1256 if (file
->f_mode
& FMODE_READ
) {
1257 poll_wait_set_exclusive(wait
);
1258 poll_wait(file
, channel
->ops
->get_hp_wait_queue(channel
->chan
),
1261 if (channel
->ops
->is_disabled(channel
->chan
))
1263 if (channel
->ops
->is_finalized(channel
->chan
))
1265 if (channel
->ops
->buffer_has_read_closed_stream(channel
->chan
))
1266 return POLLIN
| POLLRDNORM
;
1274 int lttng_channel_release(struct inode
*inode
, struct file
*file
)
1276 struct lttng_channel
*channel
= file
->private_data
;
1279 fput(channel
->session
->file
);
1284 int lttng_metadata_channel_release(struct inode
*inode
, struct file
*file
)
1286 struct lttng_channel
*channel
= file
->private_data
;
1289 lttng_metadata_channel_destroy(channel
);
1290 fput(channel
->session
->file
);
1296 static const struct file_operations lttng_channel_fops
= {
1297 .owner
= THIS_MODULE
,
1298 .release
= lttng_channel_release
,
1299 .poll
= lttng_channel_poll
,
1300 .unlocked_ioctl
= lttng_channel_ioctl
,
1301 #ifdef CONFIG_COMPAT
1302 .compat_ioctl
= lttng_channel_ioctl
,
1306 static const struct file_operations lttng_metadata_fops
= {
1307 .owner
= THIS_MODULE
,
1308 .release
= lttng_metadata_channel_release
,
1309 .unlocked_ioctl
= lttng_metadata_ioctl
,
1310 #ifdef CONFIG_COMPAT
1311 .compat_ioctl
= lttng_metadata_ioctl
,
1316 * lttng_event_ioctl - lttng syscall through ioctl
1322 * This ioctl implements lttng commands:
1323 * LTTNG_KERNEL_CONTEXT
1324 * Prepend a context field to each record of this event
1325 * LTTNG_KERNEL_ENABLE
1326 * Enable recording for this event (weak enable)
1327 * LTTNG_KERNEL_DISABLE
1328 * Disable recording for this event (strong disable)
1331 long lttng_event_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1333 struct lttng_event
*event
;
1334 struct lttng_enabler
*enabler
;
1335 enum lttng_event_type
*evtype
= file
->private_data
;
1338 case LTTNG_KERNEL_OLD_CONTEXT
:
1340 /* Not implemented */
1343 case LTTNG_KERNEL_CONTEXT
:
1345 /* Not implemented */
1348 case LTTNG_KERNEL_OLD_ENABLE
:
1349 case LTTNG_KERNEL_ENABLE
:
1351 case LTTNG_TYPE_EVENT
:
1352 event
= file
->private_data
;
1353 return lttng_event_enable(event
);
1354 case LTTNG_TYPE_ENABLER
:
1355 enabler
= file
->private_data
;
1356 return lttng_enabler_enable(enabler
);
1361 case LTTNG_KERNEL_OLD_DISABLE
:
1362 case LTTNG_KERNEL_DISABLE
:
1364 case LTTNG_TYPE_EVENT
:
1365 event
= file
->private_data
;
1366 return lttng_event_disable(event
);
1367 case LTTNG_TYPE_ENABLER
:
1368 enabler
= file
->private_data
;
1369 return lttng_enabler_disable(enabler
);
1374 case LTTNG_KERNEL_FILTER
:
1376 case LTTNG_TYPE_EVENT
:
1378 case LTTNG_TYPE_ENABLER
:
1380 enabler
= file
->private_data
;
1381 return lttng_enabler_attach_bytecode(enabler
,
1382 (struct lttng_kernel_filter_bytecode __user
*) arg
);
1387 return -ENOIOCTLCMD
;
1392 int lttng_event_release(struct inode
*inode
, struct file
*file
)
1394 struct lttng_event
*event
;
1395 struct lttng_enabler
*enabler
;
1396 enum lttng_event_type
*evtype
= file
->private_data
;
1402 case LTTNG_TYPE_EVENT
:
1403 event
= file
->private_data
;
1405 fput(event
->chan
->file
);
1407 case LTTNG_TYPE_ENABLER
:
1408 enabler
= file
->private_data
;
1410 fput(enabler
->chan
->file
);
1420 /* TODO: filter control ioctl */
1421 static const struct file_operations lttng_event_fops
= {
1422 .owner
= THIS_MODULE
,
1423 .release
= lttng_event_release
,
1424 .unlocked_ioctl
= lttng_event_ioctl
,
1425 #ifdef CONFIG_COMPAT
1426 .compat_ioctl
= lttng_event_ioctl
,
1430 static int put_u64(uint64_t val
, unsigned long arg
)
1432 return put_user(val
, (uint64_t __user
*) arg
);
1435 static long lttng_stream_ring_buffer_ioctl(struct file
*filp
,
1436 unsigned int cmd
, unsigned long arg
)
1438 struct lib_ring_buffer
*buf
= filp
->private_data
;
1439 struct channel
*chan
= buf
->backend
.chan
;
1440 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
1441 const struct lttng_channel_ops
*ops
= chan
->backend
.priv_ops
;
1444 if (atomic_read(&chan
->record_disabled
))
1448 case LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN
:
1452 ret
= ops
->timestamp_begin(config
, buf
, &ts
);
1455 return put_u64(ts
, arg
);
1457 case LTTNG_RING_BUFFER_GET_TIMESTAMP_END
:
1461 ret
= ops
->timestamp_end(config
, buf
, &ts
);
1464 return put_u64(ts
, arg
);
1466 case LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED
:
1470 ret
= ops
->events_discarded(config
, buf
, &ed
);
1473 return put_u64(ed
, arg
);
1475 case LTTNG_RING_BUFFER_GET_CONTENT_SIZE
:
1479 ret
= ops
->content_size(config
, buf
, &cs
);
1482 return put_u64(cs
, arg
);
1484 case LTTNG_RING_BUFFER_GET_PACKET_SIZE
:
1488 ret
= ops
->packet_size(config
, buf
, &ps
);
1491 return put_u64(ps
, arg
);
1493 case LTTNG_RING_BUFFER_GET_STREAM_ID
:
1497 ret
= ops
->stream_id(config
, buf
, &si
);
1500 return put_u64(si
, arg
);
1502 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
:
1506 ret
= ops
->current_timestamp(config
, buf
, &ts
);
1509 return put_u64(ts
, arg
);
1511 case LTTNG_RING_BUFFER_GET_SEQ_NUM
:
1515 ret
= ops
->sequence_number(config
, buf
, &seq
);
1518 return put_u64(seq
, arg
);
1521 return lib_ring_buffer_file_operations
.unlocked_ioctl(filp
,
1529 #ifdef CONFIG_COMPAT
1530 static long lttng_stream_ring_buffer_compat_ioctl(struct file
*filp
,
1531 unsigned int cmd
, unsigned long arg
)
1533 struct lib_ring_buffer
*buf
= filp
->private_data
;
1534 struct channel
*chan
= buf
->backend
.chan
;
1535 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
1536 const struct lttng_channel_ops
*ops
= chan
->backend
.priv_ops
;
1539 if (atomic_read(&chan
->record_disabled
))
1543 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN
:
1547 ret
= ops
->timestamp_begin(config
, buf
, &ts
);
1550 return put_u64(ts
, arg
);
1552 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END
:
1556 ret
= ops
->timestamp_end(config
, buf
, &ts
);
1559 return put_u64(ts
, arg
);
1561 case LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED
:
1565 ret
= ops
->events_discarded(config
, buf
, &ed
);
1568 return put_u64(ed
, arg
);
1570 case LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE
:
1574 ret
= ops
->content_size(config
, buf
, &cs
);
1577 return put_u64(cs
, arg
);
1579 case LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE
:
1583 ret
= ops
->packet_size(config
, buf
, &ps
);
1586 return put_u64(ps
, arg
);
1588 case LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID
:
1592 ret
= ops
->stream_id(config
, buf
, &si
);
1595 return put_u64(si
, arg
);
1597 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
:
1601 ret
= ops
->current_timestamp(config
, buf
, &ts
);
1604 return put_u64(ts
, arg
);
1606 case LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM
:
1610 ret
= ops
->sequence_number(config
, buf
, &seq
);
1613 return put_u64(seq
, arg
);
1616 return lib_ring_buffer_file_operations
.compat_ioctl(filp
,
1623 #endif /* CONFIG_COMPAT */
1625 static void lttng_stream_override_ring_buffer_fops(void)
1627 lttng_stream_ring_buffer_file_operations
.owner
= THIS_MODULE
;
1628 lttng_stream_ring_buffer_file_operations
.open
=
1629 lib_ring_buffer_file_operations
.open
;
1630 lttng_stream_ring_buffer_file_operations
.release
=
1631 lib_ring_buffer_file_operations
.release
;
1632 lttng_stream_ring_buffer_file_operations
.poll
=
1633 lib_ring_buffer_file_operations
.poll
;
1634 lttng_stream_ring_buffer_file_operations
.splice_read
=
1635 lib_ring_buffer_file_operations
.splice_read
;
1636 lttng_stream_ring_buffer_file_operations
.mmap
=
1637 lib_ring_buffer_file_operations
.mmap
;
1638 lttng_stream_ring_buffer_file_operations
.unlocked_ioctl
=
1639 lttng_stream_ring_buffer_ioctl
;
1640 lttng_stream_ring_buffer_file_operations
.llseek
=
1641 lib_ring_buffer_file_operations
.llseek
;
1642 #ifdef CONFIG_COMPAT
1643 lttng_stream_ring_buffer_file_operations
.compat_ioctl
=
1644 lttng_stream_ring_buffer_compat_ioctl
;
1648 int __init
lttng_abi_init(void)
1652 wrapper_vmalloc_sync_all();
1653 lttng_proc_dentry
= proc_create_data("lttng", S_IRUSR
| S_IWUSR
, NULL
,
1656 if (!lttng_proc_dentry
) {
1657 printk(KERN_ERR
"Error creating LTTng control file\n");
1661 lttng_stream_override_ring_buffer_fops();
1667 /* No __exit annotation because used by init error path too. */
1668 void lttng_abi_exit(void)
1670 if (lttng_proc_dentry
)
1671 remove_proc_entry("lttng", NULL
);