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 <wrapper/kref.h>
54 #include <lttng-string-utils.h>
55 #include <lttng-abi.h>
56 #include <lttng-abi-old.h>
57 #include <lttng-events.h>
58 #include <lttng-tracer.h>
59 #include <lttng-tp-mempool.h>
60 #include <lib/ringbuffer/frontend_types.h>
63 * This is LTTng's own personal way to create a system call as an external
64 * module. We use ioctl() on /proc/lttng.
67 static struct proc_dir_entry
*lttng_proc_dentry
;
68 static const struct file_operations lttng_fops
;
69 static const struct file_operations lttng_session_fops
;
70 static const struct file_operations lttng_channel_fops
;
71 static const struct file_operations lttng_metadata_fops
;
72 static const struct file_operations lttng_event_fops
;
73 static struct file_operations lttng_stream_ring_buffer_file_operations
;
75 static int put_u64(uint64_t val
, unsigned long arg
);
78 * Teardown management: opened file descriptors keep a refcount on the module,
79 * so it can only exit when all file descriptors are closed.
83 int lttng_abi_create_session(void)
85 struct lttng_session
*session
;
86 struct file
*session_file
;
89 session
= lttng_session_create();
92 session_fd
= lttng_get_unused_fd();
97 session_file
= anon_inode_getfile("[lttng_session]",
100 if (IS_ERR(session_file
)) {
101 ret
= PTR_ERR(session_file
);
104 session
->file
= session_file
;
105 fd_install(session_fd
, session_file
);
109 put_unused_fd(session_fd
);
111 lttng_session_destroy(session
);
116 int lttng_abi_tracepoint_list(void)
118 struct file
*tracepoint_list_file
;
121 file_fd
= lttng_get_unused_fd();
127 tracepoint_list_file
= anon_inode_getfile("[lttng_tracepoint_list]",
128 <tng_tracepoint_list_fops
,
130 if (IS_ERR(tracepoint_list_file
)) {
131 ret
= PTR_ERR(tracepoint_list_file
);
134 ret
= lttng_tracepoint_list_fops
.open(NULL
, tracepoint_list_file
);
137 fd_install(file_fd
, tracepoint_list_file
);
141 fput(tracepoint_list_file
);
143 put_unused_fd(file_fd
);
148 #ifndef CONFIG_HAVE_SYSCALL_TRACEPOINTS
150 int lttng_abi_syscall_list(void)
156 int lttng_abi_syscall_list(void)
158 struct file
*syscall_list_file
;
161 file_fd
= lttng_get_unused_fd();
167 syscall_list_file
= anon_inode_getfile("[lttng_syscall_list]",
168 <tng_syscall_list_fops
,
170 if (IS_ERR(syscall_list_file
)) {
171 ret
= PTR_ERR(syscall_list_file
);
174 ret
= lttng_syscall_list_fops
.open(NULL
, syscall_list_file
);
177 fd_install(file_fd
, syscall_list_file
);
181 fput(syscall_list_file
);
183 put_unused_fd(file_fd
);
190 void lttng_abi_tracer_version(struct lttng_kernel_tracer_version
*v
)
192 v
->major
= LTTNG_MODULES_MAJOR_VERSION
;
193 v
->minor
= LTTNG_MODULES_MINOR_VERSION
;
194 v
->patchlevel
= LTTNG_MODULES_PATCHLEVEL_VERSION
;
198 void lttng_abi_tracer_abi_version(struct lttng_kernel_tracer_abi_version
*v
)
200 v
->major
= LTTNG_MODULES_ABI_MAJOR_VERSION
;
201 v
->minor
= LTTNG_MODULES_ABI_MINOR_VERSION
;
205 long lttng_abi_add_context(struct file
*file
,
206 struct lttng_kernel_context
*context_param
,
207 struct lttng_ctx
**ctx
, struct lttng_session
*session
)
210 if (session
->been_active
)
213 switch (context_param
->ctx
) {
214 case LTTNG_KERNEL_CONTEXT_PID
:
215 return lttng_add_pid_to_ctx(ctx
);
216 case LTTNG_KERNEL_CONTEXT_PRIO
:
217 return lttng_add_prio_to_ctx(ctx
);
218 case LTTNG_KERNEL_CONTEXT_NICE
:
219 return lttng_add_nice_to_ctx(ctx
);
220 case LTTNG_KERNEL_CONTEXT_VPID
:
221 return lttng_add_vpid_to_ctx(ctx
);
222 case LTTNG_KERNEL_CONTEXT_TID
:
223 return lttng_add_tid_to_ctx(ctx
);
224 case LTTNG_KERNEL_CONTEXT_VTID
:
225 return lttng_add_vtid_to_ctx(ctx
);
226 case LTTNG_KERNEL_CONTEXT_PPID
:
227 return lttng_add_ppid_to_ctx(ctx
);
228 case LTTNG_KERNEL_CONTEXT_VPPID
:
229 return lttng_add_vppid_to_ctx(ctx
);
230 case LTTNG_KERNEL_CONTEXT_PERF_COUNTER
:
231 context_param
->u
.perf_counter
.name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
232 return lttng_add_perf_counter_to_ctx(context_param
->u
.perf_counter
.type
,
233 context_param
->u
.perf_counter
.config
,
234 context_param
->u
.perf_counter
.name
,
236 case LTTNG_KERNEL_CONTEXT_PROCNAME
:
237 return lttng_add_procname_to_ctx(ctx
);
238 case LTTNG_KERNEL_CONTEXT_HOSTNAME
:
239 return lttng_add_hostname_to_ctx(ctx
);
240 case LTTNG_KERNEL_CONTEXT_CPU_ID
:
241 return lttng_add_cpu_id_to_ctx(ctx
);
242 case LTTNG_KERNEL_CONTEXT_INTERRUPTIBLE
:
243 return lttng_add_interruptible_to_ctx(ctx
);
244 case LTTNG_KERNEL_CONTEXT_NEED_RESCHEDULE
:
245 return lttng_add_need_reschedule_to_ctx(ctx
);
246 case LTTNG_KERNEL_CONTEXT_PREEMPTIBLE
:
247 return lttng_add_preemptible_to_ctx(ctx
);
248 case LTTNG_KERNEL_CONTEXT_MIGRATABLE
:
249 return lttng_add_migratable_to_ctx(ctx
);
256 * lttng_ioctl - lttng syscall through ioctl
262 * This ioctl implements lttng commands:
263 * LTTNG_KERNEL_SESSION
264 * Returns a LTTng trace session file descriptor
265 * LTTNG_KERNEL_TRACER_VERSION
266 * Returns the LTTng kernel tracer version
267 * LTTNG_KERNEL_TRACEPOINT_LIST
268 * Returns a file descriptor listing available tracepoints
269 * LTTNG_KERNEL_WAIT_QUIESCENT
270 * Returns after all previously running probes have completed
271 * LTTNG_KERNEL_TRACER_ABI_VERSION
272 * Returns the LTTng kernel tracer ABI version
274 * The returned session will be deleted when its file descriptor is closed.
277 long lttng_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
280 case LTTNG_KERNEL_OLD_SESSION
:
281 case LTTNG_KERNEL_SESSION
:
282 return lttng_abi_create_session();
283 case LTTNG_KERNEL_OLD_TRACER_VERSION
:
285 struct lttng_kernel_tracer_version v
;
286 struct lttng_kernel_old_tracer_version oldv
;
287 struct lttng_kernel_old_tracer_version
*uversion
=
288 (struct lttng_kernel_old_tracer_version __user
*) arg
;
290 lttng_abi_tracer_version(&v
);
291 oldv
.major
= v
.major
;
292 oldv
.minor
= v
.minor
;
293 oldv
.patchlevel
= v
.patchlevel
;
295 if (copy_to_user(uversion
, &oldv
, sizeof(oldv
)))
299 case LTTNG_KERNEL_TRACER_VERSION
:
301 struct lttng_kernel_tracer_version version
;
302 struct lttng_kernel_tracer_version
*uversion
=
303 (struct lttng_kernel_tracer_version __user
*) arg
;
305 lttng_abi_tracer_version(&version
);
307 if (copy_to_user(uversion
, &version
, sizeof(version
)))
311 case LTTNG_KERNEL_TRACER_ABI_VERSION
:
313 struct lttng_kernel_tracer_abi_version version
;
314 struct lttng_kernel_tracer_abi_version
*uversion
=
315 (struct lttng_kernel_tracer_abi_version __user
*) arg
;
317 lttng_abi_tracer_abi_version(&version
);
319 if (copy_to_user(uversion
, &version
, sizeof(version
)))
323 case LTTNG_KERNEL_OLD_TRACEPOINT_LIST
:
324 case LTTNG_KERNEL_TRACEPOINT_LIST
:
325 return lttng_abi_tracepoint_list();
326 case LTTNG_KERNEL_SYSCALL_LIST
:
327 return lttng_abi_syscall_list();
328 case LTTNG_KERNEL_OLD_WAIT_QUIESCENT
:
329 case LTTNG_KERNEL_WAIT_QUIESCENT
:
332 case LTTNG_KERNEL_OLD_CALIBRATE
:
334 struct lttng_kernel_old_calibrate __user
*ucalibrate
=
335 (struct lttng_kernel_old_calibrate __user
*) arg
;
336 struct lttng_kernel_old_calibrate old_calibrate
;
337 struct lttng_kernel_calibrate calibrate
;
340 if (copy_from_user(&old_calibrate
, ucalibrate
, sizeof(old_calibrate
)))
342 calibrate
.type
= old_calibrate
.type
;
343 ret
= lttng_calibrate(&calibrate
);
344 if (copy_to_user(ucalibrate
, &old_calibrate
, sizeof(old_calibrate
)))
348 case LTTNG_KERNEL_CALIBRATE
:
350 struct lttng_kernel_calibrate __user
*ucalibrate
=
351 (struct lttng_kernel_calibrate __user
*) arg
;
352 struct lttng_kernel_calibrate calibrate
;
355 if (copy_from_user(&calibrate
, ucalibrate
, sizeof(calibrate
)))
357 ret
= lttng_calibrate(&calibrate
);
358 if (copy_to_user(ucalibrate
, &calibrate
, sizeof(calibrate
)))
367 static const struct file_operations lttng_fops
= {
368 .owner
= THIS_MODULE
,
369 .unlocked_ioctl
= lttng_ioctl
,
371 .compat_ioctl
= lttng_ioctl
,
376 int lttng_abi_create_channel(struct file
*session_file
,
377 struct lttng_kernel_channel
*chan_param
,
378 enum channel_type channel_type
)
380 struct lttng_session
*session
= session_file
->private_data
;
381 const struct file_operations
*fops
= NULL
;
382 const char *transport_name
;
383 struct lttng_channel
*chan
;
384 struct file
*chan_file
;
388 chan_fd
= lttng_get_unused_fd();
393 switch (channel_type
) {
394 case PER_CPU_CHANNEL
:
395 fops
= <tng_channel_fops
;
397 case METADATA_CHANNEL
:
398 fops
= <tng_metadata_fops
;
402 chan_file
= anon_inode_getfile("[lttng_channel]",
405 if (IS_ERR(chan_file
)) {
406 ret
= PTR_ERR(chan_file
);
409 switch (channel_type
) {
410 case PER_CPU_CHANNEL
:
411 if (chan_param
->output
== LTTNG_KERNEL_SPLICE
) {
412 transport_name
= chan_param
->overwrite
?
413 "relay-overwrite" : "relay-discard";
414 } else if (chan_param
->output
== LTTNG_KERNEL_MMAP
) {
415 transport_name
= chan_param
->overwrite
?
416 "relay-overwrite-mmap" : "relay-discard-mmap";
421 case METADATA_CHANNEL
:
422 if (chan_param
->output
== LTTNG_KERNEL_SPLICE
)
423 transport_name
= "relay-metadata";
424 else if (chan_param
->output
== LTTNG_KERNEL_MMAP
)
425 transport_name
= "relay-metadata-mmap";
430 transport_name
= "<unknown>";
433 if (!atomic_long_add_unless(&session_file
->f_count
, 1, LONG_MAX
)) {
438 * We tolerate no failure path after channel creation. It will stay
439 * invariant for the rest of the session.
441 chan
= lttng_channel_create(session
, transport_name
, NULL
,
442 chan_param
->subbuf_size
,
443 chan_param
->num_subbuf
,
444 chan_param
->switch_timer_interval
,
445 chan_param
->read_timer_interval
,
451 chan
->file
= chan_file
;
452 chan_file
->private_data
= chan
;
453 fd_install(chan_fd
, chan_file
);
458 atomic_long_dec(&session_file
->f_count
);
462 put_unused_fd(chan_fd
);
468 * lttng_session_ioctl - lttng session fd ioctl
474 * This ioctl implements lttng commands:
475 * LTTNG_KERNEL_CHANNEL
476 * Returns a LTTng channel file descriptor
477 * LTTNG_KERNEL_ENABLE
478 * Enables tracing for a session (weak enable)
479 * LTTNG_KERNEL_DISABLE
480 * Disables tracing for a session (strong disable)
481 * LTTNG_KERNEL_METADATA
482 * Returns a LTTng metadata file descriptor
483 * LTTNG_KERNEL_SESSION_TRACK_PID
484 * Add PID to session tracker
485 * LTTNG_KERNEL_SESSION_UNTRACK_PID
486 * Remove PID from session tracker
488 * The returned channel will be deleted when its file descriptor is closed.
491 long lttng_session_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
493 struct lttng_session
*session
= file
->private_data
;
496 case LTTNG_KERNEL_OLD_CHANNEL
:
498 struct lttng_kernel_channel chan_param
;
499 struct lttng_kernel_old_channel old_chan_param
;
501 if (copy_from_user(&old_chan_param
,
502 (struct lttng_kernel_old_channel __user
*) arg
,
503 sizeof(struct lttng_kernel_old_channel
)))
505 chan_param
.overwrite
= old_chan_param
.overwrite
;
506 chan_param
.subbuf_size
= old_chan_param
.subbuf_size
;
507 chan_param
.num_subbuf
= old_chan_param
.num_subbuf
;
508 chan_param
.switch_timer_interval
= old_chan_param
.switch_timer_interval
;
509 chan_param
.read_timer_interval
= old_chan_param
.read_timer_interval
;
510 chan_param
.output
= old_chan_param
.output
;
512 return lttng_abi_create_channel(file
, &chan_param
,
515 case LTTNG_KERNEL_CHANNEL
:
517 struct lttng_kernel_channel chan_param
;
519 if (copy_from_user(&chan_param
,
520 (struct lttng_kernel_channel __user
*) arg
,
521 sizeof(struct lttng_kernel_channel
)))
523 return lttng_abi_create_channel(file
, &chan_param
,
526 case LTTNG_KERNEL_OLD_SESSION_START
:
527 case LTTNG_KERNEL_OLD_ENABLE
:
528 case LTTNG_KERNEL_SESSION_START
:
529 case LTTNG_KERNEL_ENABLE
:
530 return lttng_session_enable(session
);
531 case LTTNG_KERNEL_OLD_SESSION_STOP
:
532 case LTTNG_KERNEL_OLD_DISABLE
:
533 case LTTNG_KERNEL_SESSION_STOP
:
534 case LTTNG_KERNEL_DISABLE
:
535 return lttng_session_disable(session
);
536 case LTTNG_KERNEL_OLD_METADATA
:
538 struct lttng_kernel_channel chan_param
;
539 struct lttng_kernel_old_channel old_chan_param
;
541 if (copy_from_user(&old_chan_param
,
542 (struct lttng_kernel_old_channel __user
*) arg
,
543 sizeof(struct lttng_kernel_old_channel
)))
545 chan_param
.overwrite
= old_chan_param
.overwrite
;
546 chan_param
.subbuf_size
= old_chan_param
.subbuf_size
;
547 chan_param
.num_subbuf
= old_chan_param
.num_subbuf
;
548 chan_param
.switch_timer_interval
= old_chan_param
.switch_timer_interval
;
549 chan_param
.read_timer_interval
= old_chan_param
.read_timer_interval
;
550 chan_param
.output
= old_chan_param
.output
;
552 return lttng_abi_create_channel(file
, &chan_param
,
555 case LTTNG_KERNEL_METADATA
:
557 struct lttng_kernel_channel chan_param
;
559 if (copy_from_user(&chan_param
,
560 (struct lttng_kernel_channel __user
*) arg
,
561 sizeof(struct lttng_kernel_channel
)))
563 return lttng_abi_create_channel(file
, &chan_param
,
566 case LTTNG_KERNEL_SESSION_TRACK_PID
:
567 return lttng_session_track_pid(session
, (int) arg
);
568 case LTTNG_KERNEL_SESSION_UNTRACK_PID
:
569 return lttng_session_untrack_pid(session
, (int) arg
);
570 case LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS
:
571 return lttng_session_list_tracker_pids(session
);
572 case LTTNG_KERNEL_SESSION_METADATA_REGEN
:
573 return lttng_session_metadata_regenerate(session
);
574 case LTTNG_KERNEL_SESSION_STATEDUMP
:
575 return lttng_session_statedump(session
);
582 * Called when the last file reference is dropped.
584 * Big fat note: channels and events are invariant for the whole session after
585 * their creation. So this session destruction also destroys all channel and
586 * event structures specific to this session (they are not destroyed when their
587 * individual file is released).
590 int lttng_session_release(struct inode
*inode
, struct file
*file
)
592 struct lttng_session
*session
= file
->private_data
;
595 lttng_session_destroy(session
);
599 static const struct file_operations lttng_session_fops
= {
600 .owner
= THIS_MODULE
,
601 .release
= lttng_session_release
,
602 .unlocked_ioctl
= lttng_session_ioctl
,
604 .compat_ioctl
= lttng_session_ioctl
,
609 * lttng_metadata_ring_buffer_poll - LTTng ring buffer poll file operation
613 * Handles the poll operations for the metadata channels.
616 unsigned int lttng_metadata_ring_buffer_poll(struct file
*filp
,
619 struct lttng_metadata_stream
*stream
= filp
->private_data
;
620 struct lib_ring_buffer
*buf
= stream
->priv
;
622 unsigned int mask
= 0;
624 if (filp
->f_mode
& FMODE_READ
) {
625 poll_wait_set_exclusive(wait
);
626 poll_wait(filp
, &stream
->read_wait
, wait
);
628 finalized
= stream
->finalized
;
631 * lib_ring_buffer_is_finalized() contains a smp_rmb()
632 * ordering finalized load before offsets loads.
634 WARN_ON(atomic_long_read(&buf
->active_readers
) != 1);
639 mutex_lock(&stream
->metadata_cache
->lock
);
640 if (stream
->metadata_cache
->metadata_written
>
641 stream
->metadata_out
)
643 mutex_unlock(&stream
->metadata_cache
->lock
);
650 void lttng_metadata_ring_buffer_ioctl_put_next_subbuf(struct file
*filp
,
651 unsigned int cmd
, unsigned long arg
)
653 struct lttng_metadata_stream
*stream
= filp
->private_data
;
655 stream
->metadata_out
= stream
->metadata_in
;
659 long lttng_metadata_ring_buffer_ioctl(struct file
*filp
,
660 unsigned int cmd
, unsigned long arg
)
663 struct lttng_metadata_stream
*stream
= filp
->private_data
;
664 struct lib_ring_buffer
*buf
= stream
->priv
;
667 case RING_BUFFER_GET_NEXT_SUBBUF
:
669 struct lttng_metadata_stream
*stream
= filp
->private_data
;
670 struct lib_ring_buffer
*buf
= stream
->priv
;
671 struct channel
*chan
= buf
->backend
.chan
;
673 ret
= lttng_metadata_output_channel(stream
, chan
);
675 lib_ring_buffer_switch_slow(buf
, SWITCH_ACTIVE
);
681 case RING_BUFFER_GET_SUBBUF
:
684 * Random access is not allowed for metadata channel.
688 case RING_BUFFER_FLUSH_EMPTY
: /* Fall-through. */
689 case RING_BUFFER_FLUSH
:
691 struct lttng_metadata_stream
*stream
= filp
->private_data
;
692 struct lib_ring_buffer
*buf
= stream
->priv
;
693 struct channel
*chan
= buf
->backend
.chan
;
696 * Before doing the actual ring buffer flush, write up to one
697 * packet of metadata in the ring buffer.
699 ret
= lttng_metadata_output_channel(stream
, chan
);
704 case RING_BUFFER_GET_METADATA_VERSION
:
706 struct lttng_metadata_stream
*stream
= filp
->private_data
;
708 return put_u64(stream
->version
, arg
);
713 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
715 /* Performing lib ring buffer ioctl after our own. */
716 ret
= lib_ring_buffer_ioctl(filp
, cmd
, arg
, buf
);
721 case RING_BUFFER_PUT_NEXT_SUBBUF
:
723 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp
,
736 long lttng_metadata_ring_buffer_compat_ioctl(struct file
*filp
,
737 unsigned int cmd
, unsigned long arg
)
740 struct lttng_metadata_stream
*stream
= filp
->private_data
;
741 struct lib_ring_buffer
*buf
= stream
->priv
;
744 case RING_BUFFER_GET_NEXT_SUBBUF
:
746 struct lttng_metadata_stream
*stream
= filp
->private_data
;
747 struct lib_ring_buffer
*buf
= stream
->priv
;
748 struct channel
*chan
= buf
->backend
.chan
;
750 ret
= lttng_metadata_output_channel(stream
, chan
);
752 lib_ring_buffer_switch_slow(buf
, SWITCH_ACTIVE
);
758 case RING_BUFFER_GET_SUBBUF
:
761 * Random access is not allowed for metadata channel.
765 case RING_BUFFER_FLUSH_EMPTY
: /* Fall-through. */
766 case RING_BUFFER_FLUSH
:
768 struct lttng_metadata_stream
*stream
= filp
->private_data
;
769 struct lib_ring_buffer
*buf
= stream
->priv
;
770 struct channel
*chan
= buf
->backend
.chan
;
773 * Before doing the actual ring buffer flush, write up to one
774 * packet of metadata in the ring buffer.
776 ret
= lttng_metadata_output_channel(stream
, chan
);
781 case RING_BUFFER_GET_METADATA_VERSION
:
783 struct lttng_metadata_stream
*stream
= filp
->private_data
;
785 return put_u64(stream
->version
, arg
);
790 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
792 /* Performing lib ring buffer ioctl after our own. */
793 ret
= lib_ring_buffer_compat_ioctl(filp
, cmd
, arg
, buf
);
798 case RING_BUFFER_PUT_NEXT_SUBBUF
:
800 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp
,
813 * This is not used by anonymous file descriptors. This code is left
814 * there if we ever want to implement an inode with open() operation.
817 int lttng_metadata_ring_buffer_open(struct inode
*inode
, struct file
*file
)
819 struct lttng_metadata_stream
*stream
= inode
->i_private
;
820 struct lib_ring_buffer
*buf
= stream
->priv
;
822 file
->private_data
= buf
;
824 * Since life-time of metadata cache differs from that of
825 * session, we need to keep our own reference on the transport.
827 if (!try_module_get(stream
->transport
->owner
)) {
828 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
831 return lib_ring_buffer_open(inode
, file
, buf
);
835 int lttng_metadata_ring_buffer_release(struct inode
*inode
, struct file
*file
)
837 struct lttng_metadata_stream
*stream
= file
->private_data
;
838 struct lib_ring_buffer
*buf
= stream
->priv
;
840 kref_put(&stream
->metadata_cache
->refcount
, metadata_cache_destroy
);
841 module_put(stream
->transport
->owner
);
842 return lib_ring_buffer_release(inode
, file
, buf
);
846 ssize_t
lttng_metadata_ring_buffer_splice_read(struct file
*in
, loff_t
*ppos
,
847 struct pipe_inode_info
*pipe
, size_t len
,
850 struct lttng_metadata_stream
*stream
= in
->private_data
;
851 struct lib_ring_buffer
*buf
= stream
->priv
;
853 return lib_ring_buffer_splice_read(in
, ppos
, pipe
, len
,
858 int lttng_metadata_ring_buffer_mmap(struct file
*filp
,
859 struct vm_area_struct
*vma
)
861 struct lttng_metadata_stream
*stream
= filp
->private_data
;
862 struct lib_ring_buffer
*buf
= stream
->priv
;
864 return lib_ring_buffer_mmap(filp
, vma
, buf
);
868 const struct file_operations lttng_metadata_ring_buffer_file_operations
= {
869 .owner
= THIS_MODULE
,
870 .open
= lttng_metadata_ring_buffer_open
,
871 .release
= lttng_metadata_ring_buffer_release
,
872 .poll
= lttng_metadata_ring_buffer_poll
,
873 .splice_read
= lttng_metadata_ring_buffer_splice_read
,
874 .mmap
= lttng_metadata_ring_buffer_mmap
,
875 .unlocked_ioctl
= lttng_metadata_ring_buffer_ioctl
,
876 .llseek
= vfs_lib_ring_buffer_no_llseek
,
878 .compat_ioctl
= lttng_metadata_ring_buffer_compat_ioctl
,
883 int lttng_abi_create_stream_fd(struct file
*channel_file
, void *stream_priv
,
884 const struct file_operations
*fops
)
887 struct file
*stream_file
;
889 stream_fd
= lttng_get_unused_fd();
894 stream_file
= anon_inode_getfile("[lttng_stream]", fops
,
895 stream_priv
, O_RDWR
);
896 if (IS_ERR(stream_file
)) {
897 ret
= PTR_ERR(stream_file
);
901 * OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
902 * FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
903 * file descriptor, so we set FMODE_PREAD here.
905 stream_file
->f_mode
|= FMODE_PREAD
;
906 fd_install(stream_fd
, stream_file
);
908 * The stream holds a reference to the channel within the generic ring
909 * buffer library, so no need to hold a refcount on the channel and
910 * session files here.
915 put_unused_fd(stream_fd
);
921 int lttng_abi_open_stream(struct file
*channel_file
)
923 struct lttng_channel
*channel
= channel_file
->private_data
;
924 struct lib_ring_buffer
*buf
;
928 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
933 ret
= lttng_abi_create_stream_fd(channel_file
, stream_priv
,
934 <tng_stream_ring_buffer_file_operations
);
941 channel
->ops
->buffer_read_close(buf
);
946 int lttng_abi_open_metadata_stream(struct file
*channel_file
)
948 struct lttng_channel
*channel
= channel_file
->private_data
;
949 struct lttng_session
*session
= channel
->session
;
950 struct lib_ring_buffer
*buf
;
952 struct lttng_metadata_stream
*metadata_stream
;
955 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
959 metadata_stream
= kzalloc(sizeof(struct lttng_metadata_stream
),
961 if (!metadata_stream
) {
965 metadata_stream
->metadata_cache
= session
->metadata_cache
;
966 init_waitqueue_head(&metadata_stream
->read_wait
);
967 metadata_stream
->priv
= buf
;
968 stream_priv
= metadata_stream
;
969 metadata_stream
->transport
= channel
->transport
;
972 * Since life-time of metadata cache differs from that of
973 * session, we need to keep our own reference on the transport.
975 if (!try_module_get(metadata_stream
->transport
->owner
)) {
976 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
981 if (!lttng_kref_get(&session
->metadata_cache
->refcount
)) {
986 ret
= lttng_abi_create_stream_fd(channel_file
, stream_priv
,
987 <tng_metadata_ring_buffer_file_operations
);
991 list_add(&metadata_stream
->list
,
992 &session
->metadata_cache
->metadata_stream
);
996 kref_put(&session
->metadata_cache
->refcount
, metadata_cache_destroy
);
998 module_put(metadata_stream
->transport
->owner
);
1000 kfree(metadata_stream
);
1002 channel
->ops
->buffer_read_close(buf
);
1007 int lttng_abi_create_event(struct file
*channel_file
,
1008 struct lttng_kernel_event
*event_param
)
1010 struct lttng_channel
*channel
= channel_file
->private_data
;
1012 struct file
*event_file
;
1015 event_param
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1016 switch (event_param
->instrumentation
) {
1017 case LTTNG_KERNEL_KRETPROBE
:
1018 event_param
->u
.kretprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1020 case LTTNG_KERNEL_KPROBE
:
1021 event_param
->u
.kprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1023 case LTTNG_KERNEL_FUNCTION
:
1024 event_param
->u
.ftrace
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1029 event_fd
= lttng_get_unused_fd();
1034 event_file
= anon_inode_getfile("[lttng_event]",
1037 if (IS_ERR(event_file
)) {
1038 ret
= PTR_ERR(event_file
);
1041 /* The event holds a reference on the channel */
1042 if (!atomic_long_add_unless(&channel_file
->f_count
, 1, LONG_MAX
)) {
1044 goto refcount_error
;
1046 if (event_param
->instrumentation
== LTTNG_KERNEL_TRACEPOINT
1047 || event_param
->instrumentation
== LTTNG_KERNEL_SYSCALL
) {
1048 struct lttng_enabler
*enabler
;
1050 if (strutils_is_star_glob_pattern(event_param
->name
)) {
1052 * If the event name is a star globbing pattern,
1053 * we create the special star globbing enabler.
1055 enabler
= lttng_enabler_create(LTTNG_ENABLER_STAR_GLOB
,
1056 event_param
, channel
);
1058 enabler
= lttng_enabler_create(LTTNG_ENABLER_NAME
,
1059 event_param
, channel
);
1063 struct lttng_event
*event
;
1066 * We tolerate no failure path after event creation. It
1067 * will stay invariant for the rest of the session.
1069 event
= lttng_event_create(channel
, event_param
,
1071 event_param
->instrumentation
);
1072 WARN_ON_ONCE(!event
);
1073 if (IS_ERR(event
)) {
1074 ret
= PTR_ERR(event
);
1079 event_file
->private_data
= priv
;
1080 fd_install(event_fd
, event_file
);
1084 atomic_long_dec(&channel_file
->f_count
);
1088 put_unused_fd(event_fd
);
1094 * lttng_channel_ioctl - lttng syscall through ioctl
1100 * This ioctl implements lttng commands:
1101 * LTTNG_KERNEL_STREAM
1102 * Returns an event stream file descriptor or failure.
1103 * (typically, one event stream records events from one CPU)
1104 * LTTNG_KERNEL_EVENT
1105 * Returns an event file descriptor or failure.
1106 * LTTNG_KERNEL_CONTEXT
1107 * Prepend a context field to each event in the channel
1108 * LTTNG_KERNEL_ENABLE
1109 * Enable recording for events in this channel (weak enable)
1110 * LTTNG_KERNEL_DISABLE
1111 * Disable recording for events in this channel (strong disable)
1113 * Channel and event file descriptors also hold a reference on the session.
1116 long lttng_channel_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1118 struct lttng_channel
*channel
= file
->private_data
;
1121 case LTTNG_KERNEL_OLD_STREAM
:
1122 case LTTNG_KERNEL_STREAM
:
1123 return lttng_abi_open_stream(file
);
1124 case LTTNG_KERNEL_OLD_EVENT
:
1126 struct lttng_kernel_event
*uevent_param
;
1127 struct lttng_kernel_old_event
*old_uevent_param
;
1130 uevent_param
= kmalloc(sizeof(struct lttng_kernel_event
),
1132 if (!uevent_param
) {
1136 old_uevent_param
= kmalloc(
1137 sizeof(struct lttng_kernel_old_event
),
1139 if (!old_uevent_param
) {
1141 goto old_event_error_free_param
;
1143 if (copy_from_user(old_uevent_param
,
1144 (struct lttng_kernel_old_event __user
*) arg
,
1145 sizeof(struct lttng_kernel_old_event
))) {
1147 goto old_event_error_free_old_param
;
1150 memcpy(uevent_param
->name
, old_uevent_param
->name
,
1151 sizeof(uevent_param
->name
));
1152 uevent_param
->instrumentation
=
1153 old_uevent_param
->instrumentation
;
1155 switch (old_uevent_param
->instrumentation
) {
1156 case LTTNG_KERNEL_KPROBE
:
1157 uevent_param
->u
.kprobe
.addr
=
1158 old_uevent_param
->u
.kprobe
.addr
;
1159 uevent_param
->u
.kprobe
.offset
=
1160 old_uevent_param
->u
.kprobe
.offset
;
1161 memcpy(uevent_param
->u
.kprobe
.symbol_name
,
1162 old_uevent_param
->u
.kprobe
.symbol_name
,
1163 sizeof(uevent_param
->u
.kprobe
.symbol_name
));
1165 case LTTNG_KERNEL_KRETPROBE
:
1166 uevent_param
->u
.kretprobe
.addr
=
1167 old_uevent_param
->u
.kretprobe
.addr
;
1168 uevent_param
->u
.kretprobe
.offset
=
1169 old_uevent_param
->u
.kretprobe
.offset
;
1170 memcpy(uevent_param
->u
.kretprobe
.symbol_name
,
1171 old_uevent_param
->u
.kretprobe
.symbol_name
,
1172 sizeof(uevent_param
->u
.kretprobe
.symbol_name
));
1174 case LTTNG_KERNEL_FUNCTION
:
1175 memcpy(uevent_param
->u
.ftrace
.symbol_name
,
1176 old_uevent_param
->u
.ftrace
.symbol_name
,
1177 sizeof(uevent_param
->u
.ftrace
.symbol_name
));
1182 ret
= lttng_abi_create_event(file
, uevent_param
);
1184 old_event_error_free_old_param
:
1185 kfree(old_uevent_param
);
1186 old_event_error_free_param
:
1187 kfree(uevent_param
);
1191 case LTTNG_KERNEL_EVENT
:
1193 struct lttng_kernel_event uevent_param
;
1195 if (copy_from_user(&uevent_param
,
1196 (struct lttng_kernel_event __user
*) arg
,
1197 sizeof(uevent_param
)))
1199 return lttng_abi_create_event(file
, &uevent_param
);
1201 case LTTNG_KERNEL_OLD_CONTEXT
:
1203 struct lttng_kernel_context
*ucontext_param
;
1204 struct lttng_kernel_old_context
*old_ucontext_param
;
1207 ucontext_param
= kmalloc(sizeof(struct lttng_kernel_context
),
1209 if (!ucontext_param
) {
1213 old_ucontext_param
= kmalloc(sizeof(struct lttng_kernel_old_context
),
1215 if (!old_ucontext_param
) {
1217 goto old_ctx_error_free_param
;
1220 if (copy_from_user(old_ucontext_param
,
1221 (struct lttng_kernel_old_context __user
*) arg
,
1222 sizeof(struct lttng_kernel_old_context
))) {
1224 goto old_ctx_error_free_old_param
;
1226 ucontext_param
->ctx
= old_ucontext_param
->ctx
;
1227 memcpy(ucontext_param
->padding
, old_ucontext_param
->padding
,
1228 sizeof(ucontext_param
->padding
));
1229 /* only type that uses the union */
1230 if (old_ucontext_param
->ctx
== LTTNG_KERNEL_CONTEXT_PERF_COUNTER
) {
1231 ucontext_param
->u
.perf_counter
.type
=
1232 old_ucontext_param
->u
.perf_counter
.type
;
1233 ucontext_param
->u
.perf_counter
.config
=
1234 old_ucontext_param
->u
.perf_counter
.config
;
1235 memcpy(ucontext_param
->u
.perf_counter
.name
,
1236 old_ucontext_param
->u
.perf_counter
.name
,
1237 sizeof(ucontext_param
->u
.perf_counter
.name
));
1240 ret
= lttng_abi_add_context(file
,
1242 &channel
->ctx
, channel
->session
);
1244 old_ctx_error_free_old_param
:
1245 kfree(old_ucontext_param
);
1246 old_ctx_error_free_param
:
1247 kfree(ucontext_param
);
1251 case LTTNG_KERNEL_CONTEXT
:
1253 struct lttng_kernel_context ucontext_param
;
1255 if (copy_from_user(&ucontext_param
,
1256 (struct lttng_kernel_context __user
*) arg
,
1257 sizeof(ucontext_param
)))
1259 return lttng_abi_add_context(file
,
1261 &channel
->ctx
, channel
->session
);
1263 case LTTNG_KERNEL_OLD_ENABLE
:
1264 case LTTNG_KERNEL_ENABLE
:
1265 return lttng_channel_enable(channel
);
1266 case LTTNG_KERNEL_OLD_DISABLE
:
1267 case LTTNG_KERNEL_DISABLE
:
1268 return lttng_channel_disable(channel
);
1269 case LTTNG_KERNEL_SYSCALL_MASK
:
1270 return lttng_channel_syscall_mask(channel
,
1271 (struct lttng_kernel_syscall_mask __user
*) arg
);
1273 return -ENOIOCTLCMD
;
1279 * lttng_metadata_ioctl - lttng syscall through ioctl
1285 * This ioctl implements lttng commands:
1286 * LTTNG_KERNEL_STREAM
1287 * Returns an event stream file descriptor or failure.
1289 * Channel and event file descriptors also hold a reference on the session.
1292 long lttng_metadata_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1295 case LTTNG_KERNEL_OLD_STREAM
:
1296 case LTTNG_KERNEL_STREAM
:
1297 return lttng_abi_open_metadata_stream(file
);
1299 return -ENOIOCTLCMD
;
1304 * lttng_channel_poll - lttng stream addition/removal monitoring
1309 unsigned int lttng_channel_poll(struct file
*file
, poll_table
*wait
)
1311 struct lttng_channel
*channel
= file
->private_data
;
1312 unsigned int mask
= 0;
1314 if (file
->f_mode
& FMODE_READ
) {
1315 poll_wait_set_exclusive(wait
);
1316 poll_wait(file
, channel
->ops
->get_hp_wait_queue(channel
->chan
),
1319 if (channel
->ops
->is_disabled(channel
->chan
))
1321 if (channel
->ops
->is_finalized(channel
->chan
))
1323 if (channel
->ops
->buffer_has_read_closed_stream(channel
->chan
))
1324 return POLLIN
| POLLRDNORM
;
1332 int lttng_channel_release(struct inode
*inode
, struct file
*file
)
1334 struct lttng_channel
*channel
= file
->private_data
;
1337 fput(channel
->session
->file
);
1342 int lttng_metadata_channel_release(struct inode
*inode
, struct file
*file
)
1344 struct lttng_channel
*channel
= file
->private_data
;
1347 fput(channel
->session
->file
);
1348 lttng_metadata_channel_destroy(channel
);
1354 static const struct file_operations lttng_channel_fops
= {
1355 .owner
= THIS_MODULE
,
1356 .release
= lttng_channel_release
,
1357 .poll
= lttng_channel_poll
,
1358 .unlocked_ioctl
= lttng_channel_ioctl
,
1359 #ifdef CONFIG_COMPAT
1360 .compat_ioctl
= lttng_channel_ioctl
,
1364 static const struct file_operations lttng_metadata_fops
= {
1365 .owner
= THIS_MODULE
,
1366 .release
= lttng_metadata_channel_release
,
1367 .unlocked_ioctl
= lttng_metadata_ioctl
,
1368 #ifdef CONFIG_COMPAT
1369 .compat_ioctl
= lttng_metadata_ioctl
,
1374 * lttng_event_ioctl - lttng syscall through ioctl
1380 * This ioctl implements lttng commands:
1381 * LTTNG_KERNEL_CONTEXT
1382 * Prepend a context field to each record of this event
1383 * LTTNG_KERNEL_ENABLE
1384 * Enable recording for this event (weak enable)
1385 * LTTNG_KERNEL_DISABLE
1386 * Disable recording for this event (strong disable)
1389 long lttng_event_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1391 struct lttng_event
*event
;
1392 struct lttng_enabler
*enabler
;
1393 enum lttng_event_type
*evtype
= file
->private_data
;
1396 case LTTNG_KERNEL_OLD_CONTEXT
:
1398 /* Not implemented */
1401 case LTTNG_KERNEL_CONTEXT
:
1403 /* Not implemented */
1406 case LTTNG_KERNEL_OLD_ENABLE
:
1407 case LTTNG_KERNEL_ENABLE
:
1409 case LTTNG_TYPE_EVENT
:
1410 event
= file
->private_data
;
1411 return lttng_event_enable(event
);
1412 case LTTNG_TYPE_ENABLER
:
1413 enabler
= file
->private_data
;
1414 return lttng_enabler_enable(enabler
);
1419 case LTTNG_KERNEL_OLD_DISABLE
:
1420 case LTTNG_KERNEL_DISABLE
:
1422 case LTTNG_TYPE_EVENT
:
1423 event
= file
->private_data
;
1424 return lttng_event_disable(event
);
1425 case LTTNG_TYPE_ENABLER
:
1426 enabler
= file
->private_data
;
1427 return lttng_enabler_disable(enabler
);
1432 case LTTNG_KERNEL_FILTER
:
1434 case LTTNG_TYPE_EVENT
:
1436 case LTTNG_TYPE_ENABLER
:
1438 enabler
= file
->private_data
;
1439 return lttng_enabler_attach_bytecode(enabler
,
1440 (struct lttng_kernel_filter_bytecode __user
*) arg
);
1445 return -ENOIOCTLCMD
;
1450 int lttng_event_release(struct inode
*inode
, struct file
*file
)
1452 struct lttng_event
*event
;
1453 struct lttng_enabler
*enabler
;
1454 enum lttng_event_type
*evtype
= file
->private_data
;
1460 case LTTNG_TYPE_EVENT
:
1461 event
= file
->private_data
;
1463 fput(event
->chan
->file
);
1465 case LTTNG_TYPE_ENABLER
:
1466 enabler
= file
->private_data
;
1468 fput(enabler
->chan
->file
);
1478 /* TODO: filter control ioctl */
1479 static const struct file_operations lttng_event_fops
= {
1480 .owner
= THIS_MODULE
,
1481 .release
= lttng_event_release
,
1482 .unlocked_ioctl
= lttng_event_ioctl
,
1483 #ifdef CONFIG_COMPAT
1484 .compat_ioctl
= lttng_event_ioctl
,
1488 static int put_u64(uint64_t val
, unsigned long arg
)
1490 return put_user(val
, (uint64_t __user
*) arg
);
1493 static long lttng_stream_ring_buffer_ioctl(struct file
*filp
,
1494 unsigned int cmd
, unsigned long arg
)
1496 struct lib_ring_buffer
*buf
= filp
->private_data
;
1497 struct channel
*chan
= buf
->backend
.chan
;
1498 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
1499 const struct lttng_channel_ops
*ops
= chan
->backend
.priv_ops
;
1502 if (atomic_read(&chan
->record_disabled
))
1506 case LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN
:
1510 ret
= ops
->timestamp_begin(config
, buf
, &ts
);
1513 return put_u64(ts
, arg
);
1515 case LTTNG_RING_BUFFER_GET_TIMESTAMP_END
:
1519 ret
= ops
->timestamp_end(config
, buf
, &ts
);
1522 return put_u64(ts
, arg
);
1524 case LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED
:
1528 ret
= ops
->events_discarded(config
, buf
, &ed
);
1531 return put_u64(ed
, arg
);
1533 case LTTNG_RING_BUFFER_GET_CONTENT_SIZE
:
1537 ret
= ops
->content_size(config
, buf
, &cs
);
1540 return put_u64(cs
, arg
);
1542 case LTTNG_RING_BUFFER_GET_PACKET_SIZE
:
1546 ret
= ops
->packet_size(config
, buf
, &ps
);
1549 return put_u64(ps
, arg
);
1551 case LTTNG_RING_BUFFER_GET_STREAM_ID
:
1555 ret
= ops
->stream_id(config
, buf
, &si
);
1558 return put_u64(si
, arg
);
1560 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
:
1564 ret
= ops
->current_timestamp(config
, buf
, &ts
);
1567 return put_u64(ts
, arg
);
1569 case LTTNG_RING_BUFFER_GET_SEQ_NUM
:
1573 ret
= ops
->sequence_number(config
, buf
, &seq
);
1576 return put_u64(seq
, arg
);
1578 case LTTNG_RING_BUFFER_INSTANCE_ID
:
1582 ret
= ops
->instance_id(config
, buf
, &id
);
1585 return put_u64(id
, arg
);
1588 return lib_ring_buffer_file_operations
.unlocked_ioctl(filp
,
1596 #ifdef CONFIG_COMPAT
1597 static long lttng_stream_ring_buffer_compat_ioctl(struct file
*filp
,
1598 unsigned int cmd
, unsigned long arg
)
1600 struct lib_ring_buffer
*buf
= filp
->private_data
;
1601 struct channel
*chan
= buf
->backend
.chan
;
1602 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
1603 const struct lttng_channel_ops
*ops
= chan
->backend
.priv_ops
;
1606 if (atomic_read(&chan
->record_disabled
))
1610 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN
:
1614 ret
= ops
->timestamp_begin(config
, buf
, &ts
);
1617 return put_u64(ts
, arg
);
1619 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END
:
1623 ret
= ops
->timestamp_end(config
, buf
, &ts
);
1626 return put_u64(ts
, arg
);
1628 case LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED
:
1632 ret
= ops
->events_discarded(config
, buf
, &ed
);
1635 return put_u64(ed
, arg
);
1637 case LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE
:
1641 ret
= ops
->content_size(config
, buf
, &cs
);
1644 return put_u64(cs
, arg
);
1646 case LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE
:
1650 ret
= ops
->packet_size(config
, buf
, &ps
);
1653 return put_u64(ps
, arg
);
1655 case LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID
:
1659 ret
= ops
->stream_id(config
, buf
, &si
);
1662 return put_u64(si
, arg
);
1664 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
:
1668 ret
= ops
->current_timestamp(config
, buf
, &ts
);
1671 return put_u64(ts
, arg
);
1673 case LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM
:
1677 ret
= ops
->sequence_number(config
, buf
, &seq
);
1680 return put_u64(seq
, arg
);
1682 case LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID
:
1686 ret
= ops
->instance_id(config
, buf
, &id
);
1689 return put_u64(id
, arg
);
1692 return lib_ring_buffer_file_operations
.compat_ioctl(filp
,
1699 #endif /* CONFIG_COMPAT */
1701 static void lttng_stream_override_ring_buffer_fops(void)
1703 lttng_stream_ring_buffer_file_operations
.owner
= THIS_MODULE
;
1704 lttng_stream_ring_buffer_file_operations
.open
=
1705 lib_ring_buffer_file_operations
.open
;
1706 lttng_stream_ring_buffer_file_operations
.release
=
1707 lib_ring_buffer_file_operations
.release
;
1708 lttng_stream_ring_buffer_file_operations
.poll
=
1709 lib_ring_buffer_file_operations
.poll
;
1710 lttng_stream_ring_buffer_file_operations
.splice_read
=
1711 lib_ring_buffer_file_operations
.splice_read
;
1712 lttng_stream_ring_buffer_file_operations
.mmap
=
1713 lib_ring_buffer_file_operations
.mmap
;
1714 lttng_stream_ring_buffer_file_operations
.unlocked_ioctl
=
1715 lttng_stream_ring_buffer_ioctl
;
1716 lttng_stream_ring_buffer_file_operations
.llseek
=
1717 lib_ring_buffer_file_operations
.llseek
;
1718 #ifdef CONFIG_COMPAT
1719 lttng_stream_ring_buffer_file_operations
.compat_ioctl
=
1720 lttng_stream_ring_buffer_compat_ioctl
;
1724 int __init
lttng_abi_init(void)
1728 wrapper_vmalloc_sync_all();
1731 ret
= lttng_tp_mempool_init();
1736 lttng_proc_dentry
= proc_create_data("lttng", S_IRUSR
| S_IWUSR
, NULL
,
1739 if (!lttng_proc_dentry
) {
1740 printk(KERN_ERR
"Error creating LTTng control file\n");
1744 lttng_stream_override_ring_buffer_fops();
1748 lttng_tp_mempool_destroy();
1749 lttng_clock_unref();
1753 /* No __exit annotation because used by init error path too. */
1754 void lttng_abi_exit(void)
1756 lttng_tp_mempool_destroy();
1757 lttng_clock_unref();
1758 if (lttng_proc_dentry
)
1759 remove_proc_entry("lttng", NULL
);