4 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Mimic system calls for:
9 * - session creation, returns a file descriptor or failure.
10 * - channel creation, returns a file descriptor or failure.
11 * - Operates on a session file descriptor
12 * - Takes all channel options as parameters.
13 * - stream get, returns a file descriptor or failure.
14 * - Operates on a channel file descriptor.
15 * - stream notifier get, returns a file descriptor or failure.
16 * - Operates on a channel file descriptor.
17 * - event creation, returns a file descriptor or failure.
18 * - Operates on a channel file descriptor
19 * - Takes an event name as parameter
20 * - Takes an instrumentation source as parameter
21 * - e.g. tracepoints, dynamic_probes...
22 * - Takes instrumentation source specific arguments.
25 #include <linux/debugfs.h>
26 #include "ltt-events.h"
29 * This is LTTng's own personal way to create a system call as an external
30 * module. We use ioctl() on /sys/kernel/debug/lttng.
33 static struct dentry
*lttng_dentry
;
34 static const struct file_operations lttng_fops
;
35 static const struct file_operations lttng_session_fops
;
36 static const struct file_operations lttng_channel_fops
;
37 static const struct file_operations lttng_event_fops
;
40 * LTTng DebugFS ABI structures.
43 struct lttng_channel
{
44 int overwrite
; /* 1: overwrite, 0: discard */
47 unsigned int switch_timer_interval
;
48 unsigned int read_timer_interval
;
52 enum instrum_type itype
;
57 int lttng_abi_create_session(void)
59 struct ltt_session
*session
;
60 struct file
*session_file
;
63 session
= ltt_session_create();
66 session_fd
= get_unused_fd_flags(O_RDWR
);
71 session_file
= anon_inode_getfile("[lttng_session]",
74 if (IS_ERR(session_file
)) {
75 ret
= PTR_ERR(session_file
);
78 session
->file
= session_file
;
79 fd_install(session_fd
, session_file
);
83 put_unused_fd(session_fd
);
85 ltt_session_destroy(session
);
90 * lttng_ioctl - lttng syscall through ioctl
96 * This ioctl implements lttng commands:
98 * Returns a LTTng trace session file descriptor
100 * The returned session will be deleted when its file descriptor is closed.
103 long lttng_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
107 return lttng_abi_create_session();
113 static const struct file_operations lttng_fops
= {
114 .unlocked_ioctl
= lttng_ioctl
,
116 .compat_ioctl
= lttng_ioctl
,
120 int lttng_abi_create_channel(struct file
*session_file
,
121 struct lttng_channel __user
*uchan_param
)
123 struct ltt_session
*session
= session_file
->private_data
;
124 struct ltt_channel
*chan
;
125 struct file
*chan_file
;
126 struct lttng_channel chan_param
;
130 if (copy_from_user(&chan_param
, uchan_param
, sizeof(chan_param
)))
132 chan_fd
= get_unused_fd_flags(O_RDWR
);
137 chan_file
= anon_inode_getfile("[lttng_channel]",
140 if (IS_ERR(chan_file
)) {
141 ret
= PTR_ERR(chan_file
);
145 * We tolerate no failure path after channel creation. It will stay
146 * invariant for the rest of the session.
148 chan
= ltt_channel_create(session
, chan_param
->overwrite
, NULL
,
149 chan_param
->subbuf_size
,
150 chan_param
->num_subbuf
,
151 chan_param
->switch_timer_interval
,
152 chan_param
->read_timer_interval
);
157 channel
->file
= chan_file
;
158 chan_file
->private_data
= chan
;
159 fd_install(chan_fd
, chan_file
);
160 /* The channel created holds a reference on the session */
161 atomic_inc(&session_file
->f_count
);
168 put_unused_fd(chan_fd
);
174 * lttng_session_ioctl - lttng session fd ioctl
180 * This ioctl implements lttng commands:
182 * Returns a LTTng channel file descriptor
184 * The returned channel will be deleted when its file descriptor is closed.
187 long lttng_session_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
189 struct ltt_session
*session
= file
->private_data
;
193 return lttng_abi_create_channel(file
, (struct lttng_channel __user
*)arg
);
194 case LTTNG_SESSION_START
:
195 return ltt_session_start(session
);
196 case LTTNG_SESSION_STOP
:
197 return ltt_session_stop(session
);
198 case LTTNG_SESSION_FINALIZE
:
199 return ltt_session_finalize(session
);
206 * Called when the last file reference is dropped.
208 * Big fat note: channels and events are invariant for the whole session after
209 * their creation. So this session destruction also destroys all channel and
210 * event structures specific to this session (they are not destroyed when their
211 * individual file is released).
214 int lttng_session_release(struct inode
*inode
, struct file
*file
)
216 struct ltt_session
*session
= file
->private_data
;
217 return ltt_session_destroy(session
);
220 static const struct file_operations lttng_session_fops
= {
221 .release
= lttng_session_release
,
222 .unlocked_ioctl
= lttng_session_ioctl
,
224 .compat_ioctl
= lttng_session_ioctl
,
229 int lttng_abi_open_stream(struct file
*channel_file
)
231 struct ltt_channel
*channel
= channel_file
->private_data
;
232 struct lib_ring_buffer
*buf
;
235 buf
= ltt_buffer_read_open(channel
->chan
);
239 stream_fd
= get_unused_fd_flags(O_RDWR
);
244 stream_file
= anon_inode_getfile("[lttng_stream]",
245 &lib_ring_buffer_file_operations
,
247 if (IS_ERR(stream_file
)) {
248 ret
= PTR_ERR(stream_file
);
251 fd_install(stream_fd
, stream_file
);
252 /* The stream holds a reference on the channel */
253 atomic_inc(&channel_file
->f_count
);
257 put_unused_fd(stream_fd
);
259 ltt_buffer_read_close(buf
);
264 int lttng_abi_create_event(struct file
*channel_file
,
265 struct lttng_event __user
*uevent_param
)
267 struct ltt_channel
*channel
= channel_file
->private_data
;
268 struct ltt_event
*event
;
270 struct lttng_event event_param
;
273 if (copy_from_user(&event_param
, uevent_param
, sizeof(event_param
)))
275 event_name
= kmalloc(PATH_MAX
, GFP_KERNEL
);
278 if (strncpy_from_user(event_name
, &uevent_param
->name
, PATH_MAX
)) {
282 event_name
[PATH_MAX
- 1] = '\0';
283 event_fd
= get_unused_fd_flags(O_RDWR
);
288 event_file
= anon_inode_getfile("[lttng_event]",
289 <tng_event_fops
, /* TODO: filter */
291 if (IS_ERR(event_file
)) {
292 ret
= PTR_ERR(event_file
);
296 * We tolerate no failure path after event creation. It will stay
297 * invariant for the rest of the session.
299 event
= ltt_event_create(channel
, event_param
->itype
, event_name
, NULL
);
304 event_file
->private_data
= event
;
305 fd_install(event_fd
, event_file
);
306 /* The event holds a reference on the channel */
307 atomic_inc(&channel_file
->f_count
);
314 put_unused_fd(event_fd
);
322 * lttng_channel_ioctl - lttng syscall through ioctl
328 * This ioctl implements lttng commands:
330 * Returns an event stream file descriptor or failure.
331 * (typically, one event stream records events from one CPU)
333 * Returns an event file descriptor or failure.
335 * The returned session will be deleted when its file descriptor is closed.
336 * Channel and event file descriptors also hold a reference on the session.
339 long lttng_channel_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
343 return lttng_abi_open_stream(file
);
345 return lttng_abi_create_event(file
, (struct lttng_event __user
*)arg
);
352 * lttng_channel_poll - lttng stream addition/removal monitoring
357 unsigned int lttng_channel_poll(struct file
*file
, poll_table
*wait
)
359 struct ltt_channel
*channel
= file
->private_data
;
360 unsigned int mask
= 0;
362 if (file
->f_mode
& FMODE_READ
) {
363 poll_wait_set_exclusive(wait
);
364 poll_wait(file
, &channel
->notify_wait
, wait
);
366 /* TODO: identify when the channel is being finalized. */
370 return POLLIN
| POLLRDNORM
;
377 int lttng_channel_release(struct inode
*inode
, struct file
*file
)
379 struct ltt_channel
*channel
= file
->private_data
;
380 fput(channel
->session
->file
);
384 static const struct file_operations lttng_channel_fops
= {
385 .release
= lttng_channel_release
,
386 .poll
= lttng_channel_poll
,
387 .unlocked_ioctl
= lttng_channel_ioctl
,
389 .compat_ioctl
= lttng_channel_ioctl
,
394 int lttng_event_release(struct inode
*inode
, struct file
*file
)
396 struct ltt_event
*event
= file
->private_data
;
397 fput(event
->chan
->file
);
401 static const struct file_operations lttng_event_fops
= {
402 .release
= lttng_event_release
,
405 static int __init
ltt_debugfs_abi_init(void)
409 lttng_dentry
= debugfs_create_file("lttng", NULL
);
410 if (IS_ERR(lttng_dentry
) || !lttng_dentry
)
411 printk(KERN_ERR
"Error creating LTTng control file\n");
419 static void __exit
ltt_debugfs_abi_exit(void)
421 debugfs_remote(lttng_dentry
);