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 <lib/ringbuffer/frontend_types.h>
62 * This is LTTng's own personal way to create a system call as an external
63 * module. We use ioctl() on /proc/lttng.
66 static struct proc_dir_entry
*lttng_proc_dentry
;
67 static const struct file_operations lttng_fops
;
68 static const struct file_operations lttng_session_fops
;
69 static const struct file_operations lttng_channel_fops
;
70 static const struct file_operations lttng_metadata_fops
;
71 static const struct file_operations lttng_event_fops
;
72 static struct file_operations lttng_stream_ring_buffer_file_operations
;
74 static int put_u64(uint64_t val
, unsigned long arg
);
77 * Teardown management: opened file descriptors keep a refcount on the module,
78 * so it can only exit when all file descriptors are closed.
82 int lttng_abi_create_session(void)
84 struct lttng_session
*session
;
85 struct file
*session_file
;
88 session
= lttng_session_create();
91 session_fd
= lttng_get_unused_fd();
96 session_file
= anon_inode_getfile("[lttng_session]",
99 if (IS_ERR(session_file
)) {
100 ret
= PTR_ERR(session_file
);
103 session
->file
= session_file
;
104 fd_install(session_fd
, session_file
);
108 put_unused_fd(session_fd
);
110 lttng_session_destroy(session
);
115 int lttng_abi_tracepoint_list(void)
117 struct file
*tracepoint_list_file
;
120 file_fd
= lttng_get_unused_fd();
126 tracepoint_list_file
= anon_inode_getfile("[lttng_tracepoint_list]",
127 <tng_tracepoint_list_fops
,
129 if (IS_ERR(tracepoint_list_file
)) {
130 ret
= PTR_ERR(tracepoint_list_file
);
133 ret
= lttng_tracepoint_list_fops
.open(NULL
, tracepoint_list_file
);
136 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
);
180 fput(syscall_list_file
);
182 put_unused_fd(file_fd
);
189 void lttng_abi_tracer_version(struct lttng_kernel_tracer_version
*v
)
191 v
->major
= LTTNG_MODULES_MAJOR_VERSION
;
192 v
->minor
= LTTNG_MODULES_MINOR_VERSION
;
193 v
->patchlevel
= LTTNG_MODULES_PATCHLEVEL_VERSION
;
197 void lttng_abi_tracer_abi_version(struct lttng_kernel_tracer_abi_version
*v
)
199 v
->major
= LTTNG_MODULES_ABI_MAJOR_VERSION
;
200 v
->minor
= LTTNG_MODULES_ABI_MINOR_VERSION
;
204 long lttng_abi_add_context(struct file
*file
,
205 struct lttng_kernel_context
*context_param
,
206 struct lttng_ctx
**ctx
, struct lttng_session
*session
)
209 if (session
->been_active
)
212 switch (context_param
->ctx
) {
213 case LTTNG_KERNEL_CONTEXT_PID
:
214 return lttng_add_pid_to_ctx(ctx
);
215 case LTTNG_KERNEL_CONTEXT_PRIO
:
216 return lttng_add_prio_to_ctx(ctx
);
217 case LTTNG_KERNEL_CONTEXT_NICE
:
218 return lttng_add_nice_to_ctx(ctx
);
219 case LTTNG_KERNEL_CONTEXT_VPID
:
220 return lttng_add_vpid_to_ctx(ctx
);
221 case LTTNG_KERNEL_CONTEXT_TID
:
222 return lttng_add_tid_to_ctx(ctx
);
223 case LTTNG_KERNEL_CONTEXT_VTID
:
224 return lttng_add_vtid_to_ctx(ctx
);
225 case LTTNG_KERNEL_CONTEXT_PPID
:
226 return lttng_add_ppid_to_ctx(ctx
);
227 case LTTNG_KERNEL_CONTEXT_VPPID
:
228 return lttng_add_vppid_to_ctx(ctx
);
229 case LTTNG_KERNEL_CONTEXT_PERF_COUNTER
:
230 context_param
->u
.perf_counter
.name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
231 return lttng_add_perf_counter_to_ctx(context_param
->u
.perf_counter
.type
,
232 context_param
->u
.perf_counter
.config
,
233 context_param
->u
.perf_counter
.name
,
235 case LTTNG_KERNEL_CONTEXT_PROCNAME
:
236 return lttng_add_procname_to_ctx(ctx
);
237 case LTTNG_KERNEL_CONTEXT_HOSTNAME
:
238 return lttng_add_hostname_to_ctx(ctx
);
239 case LTTNG_KERNEL_CONTEXT_CPU_ID
:
240 return lttng_add_cpu_id_to_ctx(ctx
);
241 case LTTNG_KERNEL_CONTEXT_INTERRUPTIBLE
:
242 return lttng_add_interruptible_to_ctx(ctx
);
243 case LTTNG_KERNEL_CONTEXT_NEED_RESCHEDULE
:
244 return lttng_add_need_reschedule_to_ctx(ctx
);
245 case LTTNG_KERNEL_CONTEXT_PREEMPTIBLE
:
246 return lttng_add_preemptible_to_ctx(ctx
);
247 case LTTNG_KERNEL_CONTEXT_MIGRATABLE
:
248 return lttng_add_migratable_to_ctx(ctx
);
255 * lttng_ioctl - lttng syscall through ioctl
261 * This ioctl implements lttng commands:
262 * LTTNG_KERNEL_SESSION
263 * Returns a LTTng trace session file descriptor
264 * LTTNG_KERNEL_TRACER_VERSION
265 * Returns the LTTng kernel tracer version
266 * LTTNG_KERNEL_TRACEPOINT_LIST
267 * Returns a file descriptor listing available tracepoints
268 * LTTNG_KERNEL_WAIT_QUIESCENT
269 * Returns after all previously running probes have completed
270 * LTTNG_KERNEL_TRACER_ABI_VERSION
271 * Returns the LTTng kernel tracer ABI version
273 * The returned session will be deleted when its file descriptor is closed.
276 long lttng_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
279 case LTTNG_KERNEL_OLD_SESSION
:
280 case LTTNG_KERNEL_SESSION
:
281 return lttng_abi_create_session();
282 case LTTNG_KERNEL_OLD_TRACER_VERSION
:
284 struct lttng_kernel_tracer_version v
;
285 struct lttng_kernel_old_tracer_version oldv
;
286 struct lttng_kernel_old_tracer_version
*uversion
=
287 (struct lttng_kernel_old_tracer_version __user
*) arg
;
289 lttng_abi_tracer_version(&v
);
290 oldv
.major
= v
.major
;
291 oldv
.minor
= v
.minor
;
292 oldv
.patchlevel
= v
.patchlevel
;
294 if (copy_to_user(uversion
, &oldv
, sizeof(oldv
)))
298 case LTTNG_KERNEL_TRACER_VERSION
:
300 struct lttng_kernel_tracer_version version
;
301 struct lttng_kernel_tracer_version
*uversion
=
302 (struct lttng_kernel_tracer_version __user
*) arg
;
304 lttng_abi_tracer_version(&version
);
306 if (copy_to_user(uversion
, &version
, sizeof(version
)))
310 case LTTNG_KERNEL_TRACER_ABI_VERSION
:
312 struct lttng_kernel_tracer_abi_version version
;
313 struct lttng_kernel_tracer_abi_version
*uversion
=
314 (struct lttng_kernel_tracer_abi_version __user
*) arg
;
316 lttng_abi_tracer_abi_version(&version
);
318 if (copy_to_user(uversion
, &version
, sizeof(version
)))
322 case LTTNG_KERNEL_OLD_TRACEPOINT_LIST
:
323 case LTTNG_KERNEL_TRACEPOINT_LIST
:
324 return lttng_abi_tracepoint_list();
325 case LTTNG_KERNEL_SYSCALL_LIST
:
326 return lttng_abi_syscall_list();
327 case LTTNG_KERNEL_OLD_WAIT_QUIESCENT
:
328 case LTTNG_KERNEL_WAIT_QUIESCENT
:
331 case LTTNG_KERNEL_OLD_CALIBRATE
:
333 struct lttng_kernel_old_calibrate __user
*ucalibrate
=
334 (struct lttng_kernel_old_calibrate __user
*) arg
;
335 struct lttng_kernel_old_calibrate old_calibrate
;
336 struct lttng_kernel_calibrate calibrate
;
339 if (copy_from_user(&old_calibrate
, ucalibrate
, sizeof(old_calibrate
)))
341 calibrate
.type
= old_calibrate
.type
;
342 ret
= lttng_calibrate(&calibrate
);
343 if (copy_to_user(ucalibrate
, &old_calibrate
, sizeof(old_calibrate
)))
347 case LTTNG_KERNEL_CALIBRATE
:
349 struct lttng_kernel_calibrate __user
*ucalibrate
=
350 (struct lttng_kernel_calibrate __user
*) arg
;
351 struct lttng_kernel_calibrate calibrate
;
354 if (copy_from_user(&calibrate
, ucalibrate
, sizeof(calibrate
)))
356 ret
= lttng_calibrate(&calibrate
);
357 if (copy_to_user(ucalibrate
, &calibrate
, sizeof(calibrate
)))
366 static const struct file_operations lttng_fops
= {
367 .owner
= THIS_MODULE
,
368 .unlocked_ioctl
= lttng_ioctl
,
370 .compat_ioctl
= lttng_ioctl
,
375 int lttng_abi_create_channel(struct file
*session_file
,
376 struct lttng_kernel_channel
*chan_param
,
377 enum channel_type channel_type
)
379 struct lttng_session
*session
= session_file
->private_data
;
380 const struct file_operations
*fops
= NULL
;
381 const char *transport_name
;
382 struct lttng_channel
*chan
;
383 struct file
*chan_file
;
387 chan_fd
= lttng_get_unused_fd();
392 switch (channel_type
) {
393 case PER_CPU_CHANNEL
:
394 fops
= <tng_channel_fops
;
396 case METADATA_CHANNEL
:
397 fops
= <tng_metadata_fops
;
401 chan_file
= anon_inode_getfile("[lttng_channel]",
404 if (IS_ERR(chan_file
)) {
405 ret
= PTR_ERR(chan_file
);
408 switch (channel_type
) {
409 case PER_CPU_CHANNEL
:
410 if (chan_param
->output
== LTTNG_KERNEL_SPLICE
) {
411 transport_name
= chan_param
->overwrite
?
412 "relay-overwrite" : "relay-discard";
413 } else if (chan_param
->output
== LTTNG_KERNEL_MMAP
) {
414 transport_name
= chan_param
->overwrite
?
415 "relay-overwrite-mmap" : "relay-discard-mmap";
420 case METADATA_CHANNEL
:
421 if (chan_param
->output
== LTTNG_KERNEL_SPLICE
)
422 transport_name
= "relay-metadata";
423 else if (chan_param
->output
== LTTNG_KERNEL_MMAP
)
424 transport_name
= "relay-metadata-mmap";
429 transport_name
= "<unknown>";
432 if (atomic_long_add_unless(&session_file
->f_count
,
433 1, INT_MAX
) == INT_MAX
) {
437 * We tolerate no failure path after channel creation. It will stay
438 * invariant for the rest of the session.
440 chan
= lttng_channel_create(session
, transport_name
, NULL
,
441 chan_param
->subbuf_size
,
442 chan_param
->num_subbuf
,
443 chan_param
->switch_timer_interval
,
444 chan_param
->read_timer_interval
,
450 chan
->file
= chan_file
;
451 chan_file
->private_data
= chan
;
452 fd_install(chan_fd
, chan_file
);
457 atomic_long_dec(&session_file
->f_count
);
461 put_unused_fd(chan_fd
);
467 * lttng_session_ioctl - lttng session fd ioctl
473 * This ioctl implements lttng commands:
474 * LTTNG_KERNEL_CHANNEL
475 * Returns a LTTng channel file descriptor
476 * LTTNG_KERNEL_ENABLE
477 * Enables tracing for a session (weak enable)
478 * LTTNG_KERNEL_DISABLE
479 * Disables tracing for a session (strong disable)
480 * LTTNG_KERNEL_METADATA
481 * Returns a LTTng metadata file descriptor
482 * LTTNG_KERNEL_SESSION_TRACK_PID
483 * Add PID to session tracker
484 * LTTNG_KERNEL_SESSION_UNTRACK_PID
485 * Remove PID from session tracker
487 * The returned channel will be deleted when its file descriptor is closed.
490 long lttng_session_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
492 struct lttng_session
*session
= file
->private_data
;
495 case LTTNG_KERNEL_OLD_CHANNEL
:
497 struct lttng_kernel_channel chan_param
;
498 struct lttng_kernel_old_channel old_chan_param
;
500 if (copy_from_user(&old_chan_param
,
501 (struct lttng_kernel_old_channel __user
*) arg
,
502 sizeof(struct lttng_kernel_old_channel
)))
504 chan_param
.overwrite
= old_chan_param
.overwrite
;
505 chan_param
.subbuf_size
= old_chan_param
.subbuf_size
;
506 chan_param
.num_subbuf
= old_chan_param
.num_subbuf
;
507 chan_param
.switch_timer_interval
= old_chan_param
.switch_timer_interval
;
508 chan_param
.read_timer_interval
= old_chan_param
.read_timer_interval
;
509 chan_param
.output
= old_chan_param
.output
;
511 return lttng_abi_create_channel(file
, &chan_param
,
514 case LTTNG_KERNEL_CHANNEL
:
516 struct lttng_kernel_channel chan_param
;
518 if (copy_from_user(&chan_param
,
519 (struct lttng_kernel_channel __user
*) arg
,
520 sizeof(struct lttng_kernel_channel
)))
522 return lttng_abi_create_channel(file
, &chan_param
,
525 case LTTNG_KERNEL_OLD_SESSION_START
:
526 case LTTNG_KERNEL_OLD_ENABLE
:
527 case LTTNG_KERNEL_SESSION_START
:
528 case LTTNG_KERNEL_ENABLE
:
529 return lttng_session_enable(session
);
530 case LTTNG_KERNEL_OLD_SESSION_STOP
:
531 case LTTNG_KERNEL_OLD_DISABLE
:
532 case LTTNG_KERNEL_SESSION_STOP
:
533 case LTTNG_KERNEL_DISABLE
:
534 return lttng_session_disable(session
);
535 case LTTNG_KERNEL_OLD_METADATA
:
537 struct lttng_kernel_channel chan_param
;
538 struct lttng_kernel_old_channel old_chan_param
;
540 if (copy_from_user(&old_chan_param
,
541 (struct lttng_kernel_old_channel __user
*) arg
,
542 sizeof(struct lttng_kernel_old_channel
)))
544 chan_param
.overwrite
= old_chan_param
.overwrite
;
545 chan_param
.subbuf_size
= old_chan_param
.subbuf_size
;
546 chan_param
.num_subbuf
= old_chan_param
.num_subbuf
;
547 chan_param
.switch_timer_interval
= old_chan_param
.switch_timer_interval
;
548 chan_param
.read_timer_interval
= old_chan_param
.read_timer_interval
;
549 chan_param
.output
= old_chan_param
.output
;
551 return lttng_abi_create_channel(file
, &chan_param
,
554 case LTTNG_KERNEL_METADATA
:
556 struct lttng_kernel_channel chan_param
;
558 if (copy_from_user(&chan_param
,
559 (struct lttng_kernel_channel __user
*) arg
,
560 sizeof(struct lttng_kernel_channel
)))
562 return lttng_abi_create_channel(file
, &chan_param
,
565 case LTTNG_KERNEL_SESSION_TRACK_PID
:
566 return lttng_session_track_pid(session
, (int) arg
);
567 case LTTNG_KERNEL_SESSION_UNTRACK_PID
:
568 return lttng_session_untrack_pid(session
, (int) arg
);
569 case LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS
:
570 return lttng_session_list_tracker_pids(session
);
571 case LTTNG_KERNEL_SESSION_METADATA_REGEN
:
572 return lttng_session_metadata_regenerate(session
);
573 case LTTNG_KERNEL_SESSION_STATEDUMP
:
574 return lttng_session_statedump(session
);
581 * Called when the last file reference is dropped.
583 * Big fat note: channels and events are invariant for the whole session after
584 * their creation. So this session destruction also destroys all channel and
585 * event structures specific to this session (they are not destroyed when their
586 * individual file is released).
589 int lttng_session_release(struct inode
*inode
, struct file
*file
)
591 struct lttng_session
*session
= file
->private_data
;
594 lttng_session_destroy(session
);
598 static const struct file_operations lttng_session_fops
= {
599 .owner
= THIS_MODULE
,
600 .release
= lttng_session_release
,
601 .unlocked_ioctl
= lttng_session_ioctl
,
603 .compat_ioctl
= lttng_session_ioctl
,
608 * lttng_metadata_ring_buffer_poll - LTTng ring buffer poll file operation
612 * Handles the poll operations for the metadata channels.
615 unsigned int lttng_metadata_ring_buffer_poll(struct file
*filp
,
618 struct lttng_metadata_stream
*stream
= filp
->private_data
;
619 struct lib_ring_buffer
*buf
= stream
->priv
;
621 unsigned int mask
= 0;
623 if (filp
->f_mode
& FMODE_READ
) {
624 poll_wait_set_exclusive(wait
);
625 poll_wait(filp
, &stream
->read_wait
, wait
);
627 finalized
= stream
->finalized
;
630 * lib_ring_buffer_is_finalized() contains a smp_rmb()
631 * ordering finalized load before offsets loads.
633 WARN_ON(atomic_long_read(&buf
->active_readers
) != 1);
638 mutex_lock(&stream
->metadata_cache
->lock
);
639 if (stream
->metadata_cache
->metadata_written
>
640 stream
->metadata_out
)
642 mutex_unlock(&stream
->metadata_cache
->lock
);
649 void lttng_metadata_ring_buffer_ioctl_put_next_subbuf(struct file
*filp
,
650 unsigned int cmd
, unsigned long arg
)
652 struct lttng_metadata_stream
*stream
= filp
->private_data
;
654 stream
->metadata_out
= stream
->metadata_in
;
658 long lttng_metadata_ring_buffer_ioctl(struct file
*filp
,
659 unsigned int cmd
, unsigned long arg
)
662 struct lttng_metadata_stream
*stream
= filp
->private_data
;
663 struct lib_ring_buffer
*buf
= stream
->priv
;
666 case RING_BUFFER_GET_NEXT_SUBBUF
:
668 struct lttng_metadata_stream
*stream
= filp
->private_data
;
669 struct lib_ring_buffer
*buf
= stream
->priv
;
670 struct channel
*chan
= buf
->backend
.chan
;
672 ret
= lttng_metadata_output_channel(stream
, chan
);
674 lib_ring_buffer_switch_slow(buf
, SWITCH_ACTIVE
);
680 case RING_BUFFER_GET_SUBBUF
:
683 * Random access is not allowed for metadata channel.
687 case RING_BUFFER_FLUSH
:
689 struct lttng_metadata_stream
*stream
= filp
->private_data
;
690 struct lib_ring_buffer
*buf
= stream
->priv
;
691 struct channel
*chan
= buf
->backend
.chan
;
694 * Before doing the actual ring buffer flush, write up to one
695 * packet of metadata in the ring buffer.
697 ret
= lttng_metadata_output_channel(stream
, chan
);
702 case RING_BUFFER_GET_METADATA_VERSION
:
704 struct lttng_metadata_stream
*stream
= filp
->private_data
;
706 return put_u64(stream
->version
, arg
);
708 case RING_BUFFER_SNAPSHOT
:
711 * Force the buffer to quiescent so the ring buffer
712 * don't attempt to perform a SWITCH_FLUSH, which would
713 * desynchronize the client accounting of the amount of
714 * data available in the buffer from the ring buffer
717 buf
->quiescent
= true;
723 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
725 /* Performing lib ring buffer ioctl after our own. */
726 ret
= lib_ring_buffer_ioctl(filp
, cmd
, arg
, buf
);
731 case RING_BUFFER_PUT_NEXT_SUBBUF
:
733 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp
,
746 long lttng_metadata_ring_buffer_compat_ioctl(struct file
*filp
,
747 unsigned int cmd
, unsigned long arg
)
750 struct lttng_metadata_stream
*stream
= filp
->private_data
;
751 struct lib_ring_buffer
*buf
= stream
->priv
;
754 case RING_BUFFER_GET_NEXT_SUBBUF
:
756 struct lttng_metadata_stream
*stream
= filp
->private_data
;
757 struct lib_ring_buffer
*buf
= stream
->priv
;
758 struct channel
*chan
= buf
->backend
.chan
;
760 ret
= lttng_metadata_output_channel(stream
, chan
);
762 lib_ring_buffer_switch_slow(buf
, SWITCH_ACTIVE
);
768 case RING_BUFFER_GET_SUBBUF
:
771 * Random access is not allowed for metadata channel.
775 case RING_BUFFER_FLUSH
:
777 struct lttng_metadata_stream
*stream
= filp
->private_data
;
778 struct lib_ring_buffer
*buf
= stream
->priv
;
779 struct channel
*chan
= buf
->backend
.chan
;
782 * Before doing the actual ring buffer flush, write up to one
783 * packet of metadata in the ring buffer.
785 ret
= lttng_metadata_output_channel(stream
, chan
);
790 case RING_BUFFER_GET_METADATA_VERSION
:
792 struct lttng_metadata_stream
*stream
= filp
->private_data
;
794 return put_u64(stream
->version
, arg
);
796 case RING_BUFFER_SNAPSHOT
:
799 * Force the buffer to quiescent so the ring buffer
800 * don't attempt to perform a SWITCH_FLUSH, which would
801 * desynchronize the client accounting of the amount of
802 * data available in the buffer from the ring buffer
805 buf
->quiescent
= true;
811 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
813 /* Performing lib ring buffer ioctl after our own. */
814 ret
= lib_ring_buffer_compat_ioctl(filp
, cmd
, arg
, buf
);
819 case RING_BUFFER_PUT_NEXT_SUBBUF
:
821 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp
,
834 * This is not used by anonymous file descriptors. This code is left
835 * there if we ever want to implement an inode with open() operation.
838 int lttng_metadata_ring_buffer_open(struct inode
*inode
, struct file
*file
)
840 struct lttng_metadata_stream
*stream
= inode
->i_private
;
841 struct lib_ring_buffer
*buf
= stream
->priv
;
843 file
->private_data
= buf
;
845 * Since life-time of metadata cache differs from that of
846 * session, we need to keep our own reference on the transport.
848 if (!try_module_get(stream
->transport
->owner
)) {
849 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
852 return lib_ring_buffer_open(inode
, file
, buf
);
856 int lttng_metadata_ring_buffer_release(struct inode
*inode
, struct file
*file
)
858 struct lttng_metadata_stream
*stream
= file
->private_data
;
859 struct lib_ring_buffer
*buf
= stream
->priv
;
861 kref_put(&stream
->metadata_cache
->refcount
, metadata_cache_destroy
);
862 module_put(stream
->transport
->owner
);
863 return lib_ring_buffer_release(inode
, file
, buf
);
867 ssize_t
lttng_metadata_ring_buffer_splice_read(struct file
*in
, loff_t
*ppos
,
868 struct pipe_inode_info
*pipe
, size_t len
,
871 struct lttng_metadata_stream
*stream
= in
->private_data
;
872 struct lib_ring_buffer
*buf
= stream
->priv
;
874 return lib_ring_buffer_splice_read(in
, ppos
, pipe
, len
,
879 int lttng_metadata_ring_buffer_mmap(struct file
*filp
,
880 struct vm_area_struct
*vma
)
882 struct lttng_metadata_stream
*stream
= filp
->private_data
;
883 struct lib_ring_buffer
*buf
= stream
->priv
;
885 return lib_ring_buffer_mmap(filp
, vma
, buf
);
889 const struct file_operations lttng_metadata_ring_buffer_file_operations
= {
890 .owner
= THIS_MODULE
,
891 .open
= lttng_metadata_ring_buffer_open
,
892 .release
= lttng_metadata_ring_buffer_release
,
893 .poll
= lttng_metadata_ring_buffer_poll
,
894 .splice_read
= lttng_metadata_ring_buffer_splice_read
,
895 .mmap
= lttng_metadata_ring_buffer_mmap
,
896 .unlocked_ioctl
= lttng_metadata_ring_buffer_ioctl
,
897 .llseek
= vfs_lib_ring_buffer_no_llseek
,
899 .compat_ioctl
= lttng_metadata_ring_buffer_compat_ioctl
,
904 int lttng_abi_create_stream_fd(struct file
*channel_file
, void *stream_priv
,
905 const struct file_operations
*fops
)
908 struct file
*stream_file
;
910 stream_fd
= lttng_get_unused_fd();
915 stream_file
= anon_inode_getfile("[lttng_stream]", fops
,
916 stream_priv
, O_RDWR
);
917 if (IS_ERR(stream_file
)) {
918 ret
= PTR_ERR(stream_file
);
922 * OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
923 * FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
924 * file descriptor, so we set FMODE_PREAD here.
926 stream_file
->f_mode
|= FMODE_PREAD
;
927 fd_install(stream_fd
, stream_file
);
929 * The stream holds a reference to the channel within the generic ring
930 * buffer library, so no need to hold a refcount on the channel and
931 * session files here.
936 put_unused_fd(stream_fd
);
942 int lttng_abi_open_stream(struct file
*channel_file
)
944 struct lttng_channel
*channel
= channel_file
->private_data
;
945 struct lib_ring_buffer
*buf
;
949 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
954 ret
= lttng_abi_create_stream_fd(channel_file
, stream_priv
,
955 <tng_stream_ring_buffer_file_operations
);
962 channel
->ops
->buffer_read_close(buf
);
967 int lttng_abi_open_metadata_stream(struct file
*channel_file
)
969 struct lttng_channel
*channel
= channel_file
->private_data
;
970 struct lttng_session
*session
= channel
->session
;
971 struct lib_ring_buffer
*buf
;
973 struct lttng_metadata_stream
*metadata_stream
;
976 buf
= channel
->ops
->buffer_read_open(channel
->chan
);
980 metadata_stream
= kzalloc(sizeof(struct lttng_metadata_stream
),
982 if (!metadata_stream
) {
986 metadata_stream
->metadata_cache
= session
->metadata_cache
;
987 init_waitqueue_head(&metadata_stream
->read_wait
);
988 metadata_stream
->priv
= buf
;
989 stream_priv
= metadata_stream
;
990 metadata_stream
->transport
= channel
->transport
;
993 * Since life-time of metadata cache differs from that of
994 * session, we need to keep our own reference on the transport.
996 if (!try_module_get(metadata_stream
->transport
->owner
)) {
997 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
1002 if (!lttng_kref_get(&session
->metadata_cache
->refcount
)) {
1007 ret
= lttng_abi_create_stream_fd(channel_file
, stream_priv
,
1008 <tng_metadata_ring_buffer_file_operations
);
1012 list_add(&metadata_stream
->list
,
1013 &session
->metadata_cache
->metadata_stream
);
1017 kref_put(&session
->metadata_cache
->refcount
, metadata_cache_destroy
);
1019 module_put(metadata_stream
->transport
->owner
);
1021 kfree(metadata_stream
);
1023 channel
->ops
->buffer_read_close(buf
);
1028 int lttng_abi_create_event(struct file
*channel_file
,
1029 struct lttng_kernel_event
*event_param
)
1031 struct lttng_channel
*channel
= channel_file
->private_data
;
1033 struct file
*event_file
;
1036 event_param
->name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1037 switch (event_param
->instrumentation
) {
1038 case LTTNG_KERNEL_KRETPROBE
:
1039 event_param
->u
.kretprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1041 case LTTNG_KERNEL_KPROBE
:
1042 event_param
->u
.kprobe
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1044 case LTTNG_KERNEL_FUNCTION
:
1045 event_param
->u
.ftrace
.symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
- 1] = '\0';
1050 event_fd
= lttng_get_unused_fd();
1055 event_file
= anon_inode_getfile("[lttng_event]",
1058 if (IS_ERR(event_file
)) {
1059 ret
= PTR_ERR(event_file
);
1062 /* The event holds a reference on the channel */
1063 if (atomic_long_add_unless(&channel_file
->f_count
,
1064 1, INT_MAX
) == INT_MAX
) {
1066 goto refcount_error
;
1068 if (event_param
->instrumentation
== LTTNG_KERNEL_TRACEPOINT
1069 || event_param
->instrumentation
== LTTNG_KERNEL_SYSCALL
) {
1070 struct lttng_enabler
*enabler
;
1072 if (strutils_is_star_glob_pattern(event_param
->name
)) {
1074 * If the event name is a star globbing pattern,
1075 * we create the special star globbing enabler.
1077 enabler
= lttng_enabler_create(LTTNG_ENABLER_STAR_GLOB
,
1078 event_param
, channel
);
1080 enabler
= lttng_enabler_create(LTTNG_ENABLER_NAME
,
1081 event_param
, channel
);
1085 struct lttng_event
*event
;
1088 * We tolerate no failure path after event creation. It
1089 * will stay invariant for the rest of the session.
1091 event
= lttng_event_create(channel
, event_param
,
1093 event_param
->instrumentation
);
1094 WARN_ON_ONCE(!event
);
1095 if (IS_ERR(event
)) {
1096 ret
= PTR_ERR(event
);
1101 event_file
->private_data
= priv
;
1102 fd_install(event_fd
, event_file
);
1106 atomic_long_dec(&channel_file
->f_count
);
1110 put_unused_fd(event_fd
);
1116 * lttng_channel_ioctl - lttng syscall through ioctl
1122 * This ioctl implements lttng commands:
1123 * LTTNG_KERNEL_STREAM
1124 * Returns an event stream file descriptor or failure.
1125 * (typically, one event stream records events from one CPU)
1126 * LTTNG_KERNEL_EVENT
1127 * Returns an event file descriptor or failure.
1128 * LTTNG_KERNEL_CONTEXT
1129 * Prepend a context field to each event in the channel
1130 * LTTNG_KERNEL_ENABLE
1131 * Enable recording for events in this channel (weak enable)
1132 * LTTNG_KERNEL_DISABLE
1133 * Disable recording for events in this channel (strong disable)
1135 * Channel and event file descriptors also hold a reference on the session.
1138 long lttng_channel_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1140 struct lttng_channel
*channel
= file
->private_data
;
1143 case LTTNG_KERNEL_OLD_STREAM
:
1144 case LTTNG_KERNEL_STREAM
:
1145 return lttng_abi_open_stream(file
);
1146 case LTTNG_KERNEL_OLD_EVENT
:
1148 struct lttng_kernel_event
*uevent_param
;
1149 struct lttng_kernel_old_event
*old_uevent_param
;
1152 uevent_param
= kmalloc(sizeof(struct lttng_kernel_event
),
1154 if (!uevent_param
) {
1158 old_uevent_param
= kmalloc(
1159 sizeof(struct lttng_kernel_old_event
),
1161 if (!old_uevent_param
) {
1163 goto old_event_error_free_param
;
1165 if (copy_from_user(old_uevent_param
,
1166 (struct lttng_kernel_old_event __user
*) arg
,
1167 sizeof(struct lttng_kernel_old_event
))) {
1169 goto old_event_error_free_old_param
;
1172 memcpy(uevent_param
->name
, old_uevent_param
->name
,
1173 sizeof(uevent_param
->name
));
1174 uevent_param
->instrumentation
=
1175 old_uevent_param
->instrumentation
;
1177 switch (old_uevent_param
->instrumentation
) {
1178 case LTTNG_KERNEL_KPROBE
:
1179 uevent_param
->u
.kprobe
.addr
=
1180 old_uevent_param
->u
.kprobe
.addr
;
1181 uevent_param
->u
.kprobe
.offset
=
1182 old_uevent_param
->u
.kprobe
.offset
;
1183 memcpy(uevent_param
->u
.kprobe
.symbol_name
,
1184 old_uevent_param
->u
.kprobe
.symbol_name
,
1185 sizeof(uevent_param
->u
.kprobe
.symbol_name
));
1187 case LTTNG_KERNEL_KRETPROBE
:
1188 uevent_param
->u
.kretprobe
.addr
=
1189 old_uevent_param
->u
.kretprobe
.addr
;
1190 uevent_param
->u
.kretprobe
.offset
=
1191 old_uevent_param
->u
.kretprobe
.offset
;
1192 memcpy(uevent_param
->u
.kretprobe
.symbol_name
,
1193 old_uevent_param
->u
.kretprobe
.symbol_name
,
1194 sizeof(uevent_param
->u
.kretprobe
.symbol_name
));
1196 case LTTNG_KERNEL_FUNCTION
:
1197 memcpy(uevent_param
->u
.ftrace
.symbol_name
,
1198 old_uevent_param
->u
.ftrace
.symbol_name
,
1199 sizeof(uevent_param
->u
.ftrace
.symbol_name
));
1204 ret
= lttng_abi_create_event(file
, uevent_param
);
1206 old_event_error_free_old_param
:
1207 kfree(old_uevent_param
);
1208 old_event_error_free_param
:
1209 kfree(uevent_param
);
1213 case LTTNG_KERNEL_EVENT
:
1215 struct lttng_kernel_event uevent_param
;
1217 if (copy_from_user(&uevent_param
,
1218 (struct lttng_kernel_event __user
*) arg
,
1219 sizeof(uevent_param
)))
1221 return lttng_abi_create_event(file
, &uevent_param
);
1223 case LTTNG_KERNEL_OLD_CONTEXT
:
1225 struct lttng_kernel_context
*ucontext_param
;
1226 struct lttng_kernel_old_context
*old_ucontext_param
;
1229 ucontext_param
= kmalloc(sizeof(struct lttng_kernel_context
),
1231 if (!ucontext_param
) {
1235 old_ucontext_param
= kmalloc(sizeof(struct lttng_kernel_old_context
),
1237 if (!old_ucontext_param
) {
1239 goto old_ctx_error_free_param
;
1242 if (copy_from_user(old_ucontext_param
,
1243 (struct lttng_kernel_old_context __user
*) arg
,
1244 sizeof(struct lttng_kernel_old_context
))) {
1246 goto old_ctx_error_free_old_param
;
1248 ucontext_param
->ctx
= old_ucontext_param
->ctx
;
1249 memcpy(ucontext_param
->padding
, old_ucontext_param
->padding
,
1250 sizeof(ucontext_param
->padding
));
1251 /* only type that uses the union */
1252 if (old_ucontext_param
->ctx
== LTTNG_KERNEL_CONTEXT_PERF_COUNTER
) {
1253 ucontext_param
->u
.perf_counter
.type
=
1254 old_ucontext_param
->u
.perf_counter
.type
;
1255 ucontext_param
->u
.perf_counter
.config
=
1256 old_ucontext_param
->u
.perf_counter
.config
;
1257 memcpy(ucontext_param
->u
.perf_counter
.name
,
1258 old_ucontext_param
->u
.perf_counter
.name
,
1259 sizeof(ucontext_param
->u
.perf_counter
.name
));
1262 ret
= lttng_abi_add_context(file
,
1264 &channel
->ctx
, channel
->session
);
1266 old_ctx_error_free_old_param
:
1267 kfree(old_ucontext_param
);
1268 old_ctx_error_free_param
:
1269 kfree(ucontext_param
);
1273 case LTTNG_KERNEL_CONTEXT
:
1275 struct lttng_kernel_context ucontext_param
;
1277 if (copy_from_user(&ucontext_param
,
1278 (struct lttng_kernel_context __user
*) arg
,
1279 sizeof(ucontext_param
)))
1281 return lttng_abi_add_context(file
,
1283 &channel
->ctx
, channel
->session
);
1285 case LTTNG_KERNEL_OLD_ENABLE
:
1286 case LTTNG_KERNEL_ENABLE
:
1287 return lttng_channel_enable(channel
);
1288 case LTTNG_KERNEL_OLD_DISABLE
:
1289 case LTTNG_KERNEL_DISABLE
:
1290 return lttng_channel_disable(channel
);
1291 case LTTNG_KERNEL_SYSCALL_MASK
:
1292 return lttng_channel_syscall_mask(channel
,
1293 (struct lttng_kernel_syscall_mask __user
*) arg
);
1295 return -ENOIOCTLCMD
;
1301 * lttng_metadata_ioctl - lttng syscall through ioctl
1307 * This ioctl implements lttng commands:
1308 * LTTNG_KERNEL_STREAM
1309 * Returns an event stream file descriptor or failure.
1311 * Channel and event file descriptors also hold a reference on the session.
1314 long lttng_metadata_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1317 case LTTNG_KERNEL_OLD_STREAM
:
1318 case LTTNG_KERNEL_STREAM
:
1319 return lttng_abi_open_metadata_stream(file
);
1321 return -ENOIOCTLCMD
;
1326 * lttng_channel_poll - lttng stream addition/removal monitoring
1331 unsigned int lttng_channel_poll(struct file
*file
, poll_table
*wait
)
1333 struct lttng_channel
*channel
= file
->private_data
;
1334 unsigned int mask
= 0;
1336 if (file
->f_mode
& FMODE_READ
) {
1337 poll_wait_set_exclusive(wait
);
1338 poll_wait(file
, channel
->ops
->get_hp_wait_queue(channel
->chan
),
1341 if (channel
->ops
->is_disabled(channel
->chan
))
1343 if (channel
->ops
->is_finalized(channel
->chan
))
1345 if (channel
->ops
->buffer_has_read_closed_stream(channel
->chan
))
1346 return POLLIN
| POLLRDNORM
;
1354 int lttng_channel_release(struct inode
*inode
, struct file
*file
)
1356 struct lttng_channel
*channel
= file
->private_data
;
1359 fput(channel
->session
->file
);
1364 int lttng_metadata_channel_release(struct inode
*inode
, struct file
*file
)
1366 struct lttng_channel
*channel
= file
->private_data
;
1369 fput(channel
->session
->file
);
1370 lttng_metadata_channel_destroy(channel
);
1376 static const struct file_operations lttng_channel_fops
= {
1377 .owner
= THIS_MODULE
,
1378 .release
= lttng_channel_release
,
1379 .poll
= lttng_channel_poll
,
1380 .unlocked_ioctl
= lttng_channel_ioctl
,
1381 #ifdef CONFIG_COMPAT
1382 .compat_ioctl
= lttng_channel_ioctl
,
1386 static const struct file_operations lttng_metadata_fops
= {
1387 .owner
= THIS_MODULE
,
1388 .release
= lttng_metadata_channel_release
,
1389 .unlocked_ioctl
= lttng_metadata_ioctl
,
1390 #ifdef CONFIG_COMPAT
1391 .compat_ioctl
= lttng_metadata_ioctl
,
1396 * lttng_event_ioctl - lttng syscall through ioctl
1402 * This ioctl implements lttng commands:
1403 * LTTNG_KERNEL_CONTEXT
1404 * Prepend a context field to each record of this event
1405 * LTTNG_KERNEL_ENABLE
1406 * Enable recording for this event (weak enable)
1407 * LTTNG_KERNEL_DISABLE
1408 * Disable recording for this event (strong disable)
1411 long lttng_event_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1413 struct lttng_event
*event
;
1414 struct lttng_enabler
*enabler
;
1415 enum lttng_event_type
*evtype
= file
->private_data
;
1418 case LTTNG_KERNEL_OLD_CONTEXT
:
1420 /* Not implemented */
1423 case LTTNG_KERNEL_CONTEXT
:
1425 /* Not implemented */
1428 case LTTNG_KERNEL_OLD_ENABLE
:
1429 case LTTNG_KERNEL_ENABLE
:
1431 case LTTNG_TYPE_EVENT
:
1432 event
= file
->private_data
;
1433 return lttng_event_enable(event
);
1434 case LTTNG_TYPE_ENABLER
:
1435 enabler
= file
->private_data
;
1436 return lttng_enabler_enable(enabler
);
1441 case LTTNG_KERNEL_OLD_DISABLE
:
1442 case LTTNG_KERNEL_DISABLE
:
1444 case LTTNG_TYPE_EVENT
:
1445 event
= file
->private_data
;
1446 return lttng_event_disable(event
);
1447 case LTTNG_TYPE_ENABLER
:
1448 enabler
= file
->private_data
;
1449 return lttng_enabler_disable(enabler
);
1454 case LTTNG_KERNEL_FILTER
:
1456 case LTTNG_TYPE_EVENT
:
1458 case LTTNG_TYPE_ENABLER
:
1460 enabler
= file
->private_data
;
1461 return lttng_enabler_attach_bytecode(enabler
,
1462 (struct lttng_kernel_filter_bytecode __user
*) arg
);
1467 return -ENOIOCTLCMD
;
1472 int lttng_event_release(struct inode
*inode
, struct file
*file
)
1474 struct lttng_event
*event
;
1475 struct lttng_enabler
*enabler
;
1476 enum lttng_event_type
*evtype
= file
->private_data
;
1482 case LTTNG_TYPE_EVENT
:
1483 event
= file
->private_data
;
1485 fput(event
->chan
->file
);
1487 case LTTNG_TYPE_ENABLER
:
1488 enabler
= file
->private_data
;
1490 fput(enabler
->chan
->file
);
1500 /* TODO: filter control ioctl */
1501 static const struct file_operations lttng_event_fops
= {
1502 .owner
= THIS_MODULE
,
1503 .release
= lttng_event_release
,
1504 .unlocked_ioctl
= lttng_event_ioctl
,
1505 #ifdef CONFIG_COMPAT
1506 .compat_ioctl
= lttng_event_ioctl
,
1510 static int put_u64(uint64_t val
, unsigned long arg
)
1512 return put_user(val
, (uint64_t __user
*) arg
);
1515 static long lttng_stream_ring_buffer_ioctl(struct file
*filp
,
1516 unsigned int cmd
, unsigned long arg
)
1518 struct lib_ring_buffer
*buf
= filp
->private_data
;
1519 struct channel
*chan
= buf
->backend
.chan
;
1520 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
1521 const struct lttng_channel_ops
*ops
= chan
->backend
.priv_ops
;
1524 if (atomic_read(&chan
->record_disabled
))
1528 case LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN
:
1532 ret
= ops
->timestamp_begin(config
, buf
, &ts
);
1535 return put_u64(ts
, arg
);
1537 case LTTNG_RING_BUFFER_GET_TIMESTAMP_END
:
1541 ret
= ops
->timestamp_end(config
, buf
, &ts
);
1544 return put_u64(ts
, arg
);
1546 case LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED
:
1550 ret
= ops
->events_discarded(config
, buf
, &ed
);
1553 return put_u64(ed
, arg
);
1555 case LTTNG_RING_BUFFER_GET_CONTENT_SIZE
:
1559 ret
= ops
->content_size(config
, buf
, &cs
);
1562 return put_u64(cs
, arg
);
1564 case LTTNG_RING_BUFFER_GET_PACKET_SIZE
:
1568 ret
= ops
->packet_size(config
, buf
, &ps
);
1571 return put_u64(ps
, arg
);
1573 case LTTNG_RING_BUFFER_GET_STREAM_ID
:
1577 ret
= ops
->stream_id(config
, buf
, &si
);
1580 return put_u64(si
, arg
);
1582 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
:
1586 ret
= ops
->current_timestamp(config
, buf
, &ts
);
1589 return put_u64(ts
, arg
);
1591 case LTTNG_RING_BUFFER_GET_SEQ_NUM
:
1595 ret
= ops
->sequence_number(config
, buf
, &seq
);
1598 return put_u64(seq
, arg
);
1600 case LTTNG_RING_BUFFER_INSTANCE_ID
:
1604 ret
= ops
->instance_id(config
, buf
, &id
);
1607 return put_u64(id
, arg
);
1610 return lib_ring_buffer_file_operations
.unlocked_ioctl(filp
,
1618 #ifdef CONFIG_COMPAT
1619 static long lttng_stream_ring_buffer_compat_ioctl(struct file
*filp
,
1620 unsigned int cmd
, unsigned long arg
)
1622 struct lib_ring_buffer
*buf
= filp
->private_data
;
1623 struct channel
*chan
= buf
->backend
.chan
;
1624 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
1625 const struct lttng_channel_ops
*ops
= chan
->backend
.priv_ops
;
1628 if (atomic_read(&chan
->record_disabled
))
1632 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN
:
1636 ret
= ops
->timestamp_begin(config
, buf
, &ts
);
1639 return put_u64(ts
, arg
);
1641 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END
:
1645 ret
= ops
->timestamp_end(config
, buf
, &ts
);
1648 return put_u64(ts
, arg
);
1650 case LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED
:
1654 ret
= ops
->events_discarded(config
, buf
, &ed
);
1657 return put_u64(ed
, arg
);
1659 case LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE
:
1663 ret
= ops
->content_size(config
, buf
, &cs
);
1666 return put_u64(cs
, arg
);
1668 case LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE
:
1672 ret
= ops
->packet_size(config
, buf
, &ps
);
1675 return put_u64(ps
, arg
);
1677 case LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID
:
1681 ret
= ops
->stream_id(config
, buf
, &si
);
1684 return put_u64(si
, arg
);
1686 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
:
1690 ret
= ops
->current_timestamp(config
, buf
, &ts
);
1693 return put_u64(ts
, arg
);
1695 case LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM
:
1699 ret
= ops
->sequence_number(config
, buf
, &seq
);
1702 return put_u64(seq
, arg
);
1704 case LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID
:
1708 ret
= ops
->instance_id(config
, buf
, &id
);
1711 return put_u64(id
, arg
);
1714 return lib_ring_buffer_file_operations
.compat_ioctl(filp
,
1721 #endif /* CONFIG_COMPAT */
1723 static void lttng_stream_override_ring_buffer_fops(void)
1725 lttng_stream_ring_buffer_file_operations
.owner
= THIS_MODULE
;
1726 lttng_stream_ring_buffer_file_operations
.open
=
1727 lib_ring_buffer_file_operations
.open
;
1728 lttng_stream_ring_buffer_file_operations
.release
=
1729 lib_ring_buffer_file_operations
.release
;
1730 lttng_stream_ring_buffer_file_operations
.poll
=
1731 lib_ring_buffer_file_operations
.poll
;
1732 lttng_stream_ring_buffer_file_operations
.splice_read
=
1733 lib_ring_buffer_file_operations
.splice_read
;
1734 lttng_stream_ring_buffer_file_operations
.mmap
=
1735 lib_ring_buffer_file_operations
.mmap
;
1736 lttng_stream_ring_buffer_file_operations
.unlocked_ioctl
=
1737 lttng_stream_ring_buffer_ioctl
;
1738 lttng_stream_ring_buffer_file_operations
.llseek
=
1739 lib_ring_buffer_file_operations
.llseek
;
1740 #ifdef CONFIG_COMPAT
1741 lttng_stream_ring_buffer_file_operations
.compat_ioctl
=
1742 lttng_stream_ring_buffer_compat_ioctl
;
1746 int __init
lttng_abi_init(void)
1750 wrapper_vmalloc_sync_all();
1752 lttng_proc_dentry
= proc_create_data("lttng", S_IRUSR
| S_IWUSR
, NULL
,
1755 if (!lttng_proc_dentry
) {
1756 printk(KERN_ERR
"Error creating LTTng control file\n");
1760 lttng_stream_override_ring_buffer_fops();
1764 lttng_clock_unref();
1768 /* No __exit annotation because used by init error path too. */
1769 void lttng_abi_exit(void)
1771 lttng_clock_unref();
1772 if (lttng_proc_dentry
)
1773 remove_proc_entry("lttng", NULL
);