Add wait quiescent ioctl
[lttng-modules.git] / ltt-debugfs-abi.c
CommitLineData
baf20995
MD
1/*
2 * ltt-debugfs-abi.c
3 *
4 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng debugfs ABI
7 *
8 * Mimic system calls for:
9 * - session creation, returns a file descriptor or failure.
ad1c05e1
MD
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.
17baffe2
MD
23 *
24 * Dual LGPL v2.1/GPL v2 license.
baf20995
MD
25 */
26
11b5a3c2 27#include <linux/module.h>
baf20995 28#include <linux/debugfs.h>
11b5a3c2
MD
29#include <linux/anon_inodes.h>
30#include <linux/file.h>
31#include <linux/uaccess.h>
32#include <linux/slab.h>
b13f3ebe 33#include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
f3bc08c5 34#include "wrapper/ringbuffer/vfs.h"
24cedcfe 35#include "wrapper/poll.h"
11b5a3c2 36#include "ltt-debugfs-abi.h"
ad1c05e1 37#include "ltt-events.h"
80c16bcf 38#include "ltt-tracer.h"
baf20995
MD
39
40/*
41 * This is LTTng's own personal way to create a system call as an external
42 * module. We use ioctl() on /sys/kernel/debug/lttng.
43 */
44
45static struct dentry *lttng_dentry;
ad1c05e1
MD
46static const struct file_operations lttng_fops;
47static const struct file_operations lttng_session_fops;
48static const struct file_operations lttng_channel_fops;
5dbbdb43 49static const struct file_operations lttng_metadata_fops;
305d3e42 50static const struct file_operations lttng_event_fops;
baf20995 51
5dbbdb43
MD
52enum channel_type {
53 PER_CPU_CHANNEL,
5dbbdb43
MD
54 METADATA_CHANNEL,
55};
56
ad1c05e1 57static
baf20995
MD
58int lttng_abi_create_session(void)
59{
60 struct ltt_session *session;
c0e31d2e 61 struct file *session_file;
11b5a3c2 62 int session_fd, ret;
baf20995 63
653fe716 64 session = ltt_session_create();
baf20995
MD
65 if (!session)
66 return -ENOMEM;
1c25284c 67 session_fd = get_unused_fd();
baf20995
MD
68 if (session_fd < 0) {
69 ret = session_fd;
70 goto fd_error;
71 }
c0e31d2e 72 session_file = anon_inode_getfile("[lttng_session]",
ad1c05e1 73 &lttng_session_fops,
baf20995 74 session, O_RDWR);
c0e31d2e
MD
75 if (IS_ERR(session_file)) {
76 ret = PTR_ERR(session_file);
baf20995
MD
77 goto file_error;
78 }
c0e31d2e
MD
79 session->file = session_file;
80 fd_install(session_fd, session_file);
baf20995
MD
81 return session_fd;
82
83file_error:
84 put_unused_fd(session_fd);
85fd_error:
86 ltt_session_destroy(session);
87 return ret;
88}
89
271b6681
MD
90static
91int lttng_abi_tracepoint_list(void)
92{
93 struct file *tracepoint_list_file;
94 int file_fd, ret;
95
96 file_fd = get_unused_fd();
97 if (file_fd < 0) {
98 ret = file_fd;
99 goto fd_error;
100 }
30f18bf0 101
271b6681
MD
102 tracepoint_list_file = anon_inode_getfile("[lttng_session]",
103 &lttng_tracepoint_list_fops,
104 NULL, O_RDWR);
105 if (IS_ERR(tracepoint_list_file)) {
106 ret = PTR_ERR(tracepoint_list_file);
107 goto file_error;
108 }
30f18bf0
MD
109 ret = lttng_tracepoint_list_fops.open(NULL, tracepoint_list_file);
110 if (ret < 0)
111 goto open_error;
271b6681 112 fd_install(file_fd, tracepoint_list_file);
30f18bf0
MD
113 if (file_fd < 0) {
114 ret = file_fd;
115 goto fd_error;
116 }
271b6681
MD
117 return file_fd;
118
30f18bf0
MD
119open_error:
120 fput(tracepoint_list_file);
271b6681
MD
121file_error:
122 put_unused_fd(file_fd);
123fd_error:
124 return ret;
125}
126
80c16bcf
MD
127static
128long lttng_abi_tracer_version(struct file *file,
129 struct lttng_kernel_tracer_version __user *uversion_param)
130{
131 struct lttng_kernel_tracer_version v;
132
133 v.version = LTTNG_VERSION;
134 v.patchlevel = LTTNG_PATCHLEVEL;
135 v.sublevel = LTTNG_SUBLEVEL;
136
137 if (copy_to_user(uversion_param, &v, sizeof(v)))
138 return -EFAULT;
139 return 0;
140}
141
8070f5c0
MD
142static
143long lttng_abi_add_context(struct file *file,
144 struct lttng_kernel_context __user *ucontext_param,
145 struct lttng_ctx **ctx, struct ltt_session *session)
146{
147 struct lttng_kernel_context context_param;
148
149 if (session->been_active)
150 return -EPERM;
151
152 if (copy_from_user(&context_param, ucontext_param, sizeof(context_param)))
153 return -EFAULT;
154
155 switch (context_param.ctx) {
12a313a5 156 case LTTNG_KERNEL_CONTEXT_PID:
8070f5c0 157 return lttng_add_pid_to_ctx(ctx);
a8ad3613
MD
158 case LTTNG_KERNEL_CONTEXT_PRIO:
159 return lttng_add_prio_to_ctx(ctx);
53f1f0ca
MD
160 case LTTNG_KERNEL_CONTEXT_NICE:
161 return lttng_add_nice_to_ctx(ctx);
b64bc438
MD
162 case LTTNG_KERNEL_CONTEXT_VPID:
163 return lttng_add_vpid_to_ctx(ctx);
164 case LTTNG_KERNEL_CONTEXT_TID:
165 return lttng_add_tid_to_ctx(ctx);
166 case LTTNG_KERNEL_CONTEXT_VTID:
167 return lttng_add_vtid_to_ctx(ctx);
168 case LTTNG_KERNEL_CONTEXT_PPID:
169 return lttng_add_ppid_to_ctx(ctx);
170 case LTTNG_KERNEL_CONTEXT_VPPID:
171 return lttng_add_vppid_to_ctx(ctx);
12a313a5 172 case LTTNG_KERNEL_CONTEXT_PERF_COUNTER:
c24a0d71
MD
173 context_param.u.perf_counter.name[LTTNG_SYM_NAME_LEN - 1] = '\0';
174 return lttng_add_perf_counter_to_ctx(context_param.u.perf_counter.type,
175 context_param.u.perf_counter.config,
176 context_param.u.perf_counter.name,
177 ctx);
25b2f99a
MD
178 case LTTNG_KERNEL_CONTEXT_COMM:
179 return lttng_add_comm_to_ctx(ctx);
8070f5c0
MD
180 default:
181 return -EINVAL;
182 }
183}
184
ad1c05e1
MD
185/**
186 * lttng_ioctl - lttng syscall through ioctl
187 *
c0e31d2e 188 * @file: the file
ad1c05e1
MD
189 * @cmd: the command
190 * @arg: command arg
191 *
192 * This ioctl implements lttng commands:
38d024ae 193 * LTTNG_KERNEL_SESSION
ad1c05e1 194 * Returns a LTTng trace session file descriptor
271b6681
MD
195 * LTTNG_KERNEL_TRACER_VERSION
196 * Returns the LTTng kernel tracer version
197 * LTTNG_KERNEL_TRACEPOINT_LIST
198 * Returns a file descriptor listing available tracepoints
360f38ea
MD
199 * LTTNG_KERNEL_WAIT_QUIESCENT
200 * Returns after all previously running probes have completed
ad1c05e1
MD
201 *
202 * The returned session will be deleted when its file descriptor is closed.
203 */
204static
c0e31d2e 205long lttng_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
ad1c05e1
MD
206{
207 switch (cmd) {
38d024ae 208 case LTTNG_KERNEL_SESSION:
ad1c05e1 209 return lttng_abi_create_session();
80c16bcf
MD
210 case LTTNG_KERNEL_TRACER_VERSION:
211 return lttng_abi_tracer_version(file,
212 (struct lttng_kernel_tracer_version __user *) arg);
271b6681
MD
213 case LTTNG_KERNEL_TRACEPOINT_LIST:
214 return lttng_abi_tracepoint_list();
ad1c05e1
MD
215 default:
216 return -ENOIOCTLCMD;
217 }
218}
219
ad1c05e1
MD
220static const struct file_operations lttng_fops = {
221 .unlocked_ioctl = lttng_ioctl,
222#ifdef CONFIG_COMPAT
03037b98 223 .compat_ioctl = lttng_ioctl,
ad1c05e1 224#endif
11b5a3c2 225};
ad1c05e1 226
5dbbdb43
MD
227/*
228 * We tolerate no failure in this function (if one happens, we print a dmesg
229 * error, but cannot return any error, because the channel information is
230 * invariant.
231 */
232static
233void lttng_metadata_create_events(struct file *channel_file)
234{
235 struct ltt_channel *channel = channel_file->private_data;
e70a4758 236 static struct lttng_kernel_event metadata_params = {
ab2277d6 237 .instrumentation = LTTNG_KERNEL_TRACEPOINT,
e70a4758
MD
238 .name = "lttng_metadata",
239 };
5dbbdb43
MD
240 struct ltt_event *event;
241 int ret;
5dbbdb43 242
5dbbdb43
MD
243 /*
244 * We tolerate no failure path after event creation. It will stay
245 * invariant for the rest of the session.
246 */
30bdb6e4 247 event = ltt_event_create(channel, &metadata_params, NULL);
5dbbdb43 248 if (!event) {
588e6a7f 249 ret = -EINVAL;
271b6681 250 goto create_error;
5dbbdb43
MD
251 }
252 return;
253
85a9ca7f 254create_error:
5dbbdb43
MD
255 WARN_ON(1);
256 return; /* not allowed to return error */
257}
258
259static
c0e31d2e 260int lttng_abi_create_channel(struct file *session_file,
38d024ae 261 struct lttng_kernel_channel __user *uchan_param,
5dbbdb43 262 enum channel_type channel_type)
baf20995 263{
c0e31d2e 264 struct ltt_session *session = session_file->private_data;
5dbbdb43
MD
265 const struct file_operations *fops;
266 const char *transport_name;
baf20995 267 struct ltt_channel *chan;
c0e31d2e 268 struct file *chan_file;
38d024ae 269 struct lttng_kernel_channel chan_param;
baf20995 270 int chan_fd;
ad1c05e1 271 int ret = 0;
baf20995 272
653fe716 273 if (copy_from_user(&chan_param, uchan_param, sizeof(chan_param)))
baf20995 274 return -EFAULT;
1c25284c 275 chan_fd = get_unused_fd();
baf20995
MD
276 if (chan_fd < 0) {
277 ret = chan_fd;
278 goto fd_error;
279 }
c0e31d2e 280 chan_file = anon_inode_getfile("[lttng_channel]",
ad1c05e1 281 &lttng_channel_fops,
03037b98 282 NULL, O_RDWR);
c0e31d2e
MD
283 if (IS_ERR(chan_file)) {
284 ret = PTR_ERR(chan_file);
baf20995
MD
285 goto file_error;
286 }
5dbbdb43
MD
287 switch (channel_type) {
288 case PER_CPU_CHANNEL:
289 transport_name = chan_param.overwrite ?
290 "relay-overwrite" : "relay-discard";
291 fops = &lttng_channel_fops;
292 break;
5dbbdb43 293 case METADATA_CHANNEL:
881833e3 294 transport_name = "relay-metadata";
5dbbdb43
MD
295 fops = &lttng_metadata_fops;
296 break;
297 default:
298 transport_name = "<unknown>";
299 break;
300 }
03037b98
MD
301 /*
302 * We tolerate no failure path after channel creation. It will stay
303 * invariant for the rest of the session.
304 */
5dbbdb43 305 chan = ltt_channel_create(session, transport_name, NULL,
11b5a3c2
MD
306 chan_param.subbuf_size,
307 chan_param.num_subbuf,
308 chan_param.switch_timer_interval,
309 chan_param.read_timer_interval);
03037b98 310 if (!chan) {
f3d01b96 311 ret = -EINVAL;
03037b98
MD
312 goto chan_error;
313 }
11b5a3c2 314 chan->file = chan_file;
c0e31d2e
MD
315 chan_file->private_data = chan;
316 fd_install(chan_fd, chan_file);
cd4bd11f 317 if (channel_type == METADATA_CHANNEL) {
cd4bd11f 318 session->metadata = chan;
4f1c3952 319 lttng_metadata_create_events(chan_file);
cd4bd11f 320 }
5dbbdb43 321
ad1c05e1 322 /* The channel created holds a reference on the session */
b0caa15a 323 atomic_long_inc(&session_file->f_count);
ad1c05e1 324
baf20995
MD
325 return chan_fd;
326
03037b98 327chan_error:
c0e31d2e 328 fput(chan_file);
baf20995
MD
329file_error:
330 put_unused_fd(chan_fd);
331fd_error:
baf20995
MD
332 return ret;
333}
334
335/**
ad1c05e1 336 * lttng_session_ioctl - lttng session fd ioctl
baf20995 337 *
c0e31d2e 338 * @file: the file
baf20995
MD
339 * @cmd: the command
340 * @arg: command arg
341 *
342 * This ioctl implements lttng commands:
38d024ae 343 * LTTNG_KERNEL_CHANNEL
baf20995 344 * Returns a LTTng channel file descriptor
e64957da
MD
345 * LTTNG_KERNEL_ENABLE
346 * Enables tracing for a session (weak enable)
347 * LTTNG_KERNEL_DISABLE
348 * Disables tracing for a session (strong disable)
8070f5c0
MD
349 * LTTNG_KERNEL_METADATA
350 * Returns a LTTng metadata file descriptor
ad1c05e1
MD
351 *
352 * The returned channel will be deleted when its file descriptor is closed.
353 */
354static
c0e31d2e 355long lttng_session_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
ad1c05e1 356{
c0e31d2e
MD
357 struct ltt_session *session = file->private_data;
358
ad1c05e1 359 switch (cmd) {
38d024ae 360 case LTTNG_KERNEL_CHANNEL:
5dbbdb43 361 return lttng_abi_create_channel(file,
38d024ae 362 (struct lttng_kernel_channel __user *) arg,
5dbbdb43 363 PER_CPU_CHANNEL);
38d024ae 364 case LTTNG_KERNEL_SESSION_START:
e64957da
MD
365 case LTTNG_KERNEL_ENABLE:
366 return ltt_session_enable(session);
38d024ae 367 case LTTNG_KERNEL_SESSION_STOP:
e64957da
MD
368 case LTTNG_KERNEL_DISABLE:
369 return ltt_session_disable(session);
38d024ae 370 case LTTNG_KERNEL_METADATA:
5dbbdb43 371 return lttng_abi_create_channel(file,
38d024ae 372 (struct lttng_kernel_channel __user *) arg,
5dbbdb43 373 METADATA_CHANNEL);
ad1c05e1
MD
374 default:
375 return -ENOIOCTLCMD;
376 }
377}
378
03037b98
MD
379/*
380 * Called when the last file reference is dropped.
381 *
382 * Big fat note: channels and events are invariant for the whole session after
383 * their creation. So this session destruction also destroys all channel and
384 * event structures specific to this session (they are not destroyed when their
385 * individual file is released).
386 */
ad1c05e1 387static
03037b98 388int lttng_session_release(struct inode *inode, struct file *file)
ad1c05e1 389{
03037b98 390 struct ltt_session *session = file->private_data;
c269fff4
MD
391
392 if (session)
393 ltt_session_destroy(session);
11b5a3c2 394 return 0;
ad1c05e1 395}
ad1c05e1
MD
396
397static const struct file_operations lttng_session_fops = {
03037b98 398 .release = lttng_session_release,
ad1c05e1
MD
399 .unlocked_ioctl = lttng_session_ioctl,
400#ifdef CONFIG_COMPAT
03037b98 401 .compat_ioctl = lttng_session_ioctl,
ad1c05e1 402#endif
11b5a3c2 403};
ad1c05e1
MD
404
405static
c0e31d2e 406int lttng_abi_open_stream(struct file *channel_file)
ad1c05e1 407{
c0e31d2e 408 struct ltt_channel *channel = channel_file->private_data;
ad1c05e1
MD
409 struct lib_ring_buffer *buf;
410 int stream_fd, ret;
11b5a3c2 411 struct file *stream_file;
ad1c05e1 412
11b5a3c2 413 buf = channel->ops->buffer_read_open(channel->chan);
ad1c05e1
MD
414 if (!buf)
415 return -ENOENT;
416
1c25284c 417 stream_fd = get_unused_fd();
ad1c05e1
MD
418 if (stream_fd < 0) {
419 ret = stream_fd;
420 goto fd_error;
421 }
c0e31d2e 422 stream_file = anon_inode_getfile("[lttng_stream]",
7f57c73c 423 &lib_ring_buffer_file_operations,
ad1c05e1 424 buf, O_RDWR);
c0e31d2e
MD
425 if (IS_ERR(stream_file)) {
426 ret = PTR_ERR(stream_file);
ad1c05e1
MD
427 goto file_error;
428 }
409453cb
MD
429 /*
430 * OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
431 * FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
432 * file descriptor, so we set FMODE_PREAD here.
433 */
d7b6f197 434 stream_file->f_mode |= FMODE_PREAD;
c0e31d2e 435 fd_install(stream_fd, stream_file);
dda6a249
MD
436 /*
437 * The stream holds a reference to the channel within the generic ring
438 * buffer library, so no need to hold a refcount on the channel and
439 * session files here.
440 */
ad1c05e1
MD
441 return stream_fd;
442
443file_error:
444 put_unused_fd(stream_fd);
445fd_error:
11b5a3c2 446 channel->ops->buffer_read_close(buf);
ad1c05e1
MD
447 return ret;
448}
449
653fe716 450static
c0e31d2e 451int lttng_abi_create_event(struct file *channel_file,
38d024ae 452 struct lttng_kernel_event __user *uevent_param)
653fe716 453{
c0e31d2e 454 struct ltt_channel *channel = channel_file->private_data;
653fe716 455 struct ltt_event *event;
38d024ae 456 struct lttng_kernel_event event_param;
653fe716 457 int event_fd, ret;
11b5a3c2 458 struct file *event_file;
653fe716
MD
459
460 if (copy_from_user(&event_param, uevent_param, sizeof(event_param)))
461 return -EFAULT;
30bdb6e4 462 event_param.name[LTTNG_SYM_NAME_LEN - 1] = '\0';
e0a7a7c4 463 switch (event_param.instrumentation) {
ab2277d6 464 case LTTNG_KERNEL_KPROBE:
e0a7a7c4
MD
465 event_param.u.kprobe.symbol_name[LTTNG_SYM_NAME_LEN - 1] = '\0';
466 break;
ab2277d6 467 case LTTNG_KERNEL_FUNCTION:
e0a7a7c4
MD
468 event_param.u.ftrace.symbol_name[LTTNG_SYM_NAME_LEN - 1] = '\0';
469 break;
470 default:
471 break;
472 }
1c25284c 473 event_fd = get_unused_fd();
653fe716
MD
474 if (event_fd < 0) {
475 ret = event_fd;
476 goto fd_error;
477 }
c0e31d2e 478 event_file = anon_inode_getfile("[lttng_event]",
3b923e5b 479 &lttng_event_fops,
03037b98 480 NULL, O_RDWR);
c0e31d2e
MD
481 if (IS_ERR(event_file)) {
482 ret = PTR_ERR(event_file);
653fe716
MD
483 goto file_error;
484 }
03037b98
MD
485 /*
486 * We tolerate no failure path after event creation. It will stay
487 * invariant for the rest of the session.
488 */
30bdb6e4 489 event = ltt_event_create(channel, &event_param, NULL);
03037b98 490 if (!event) {
271b6681 491 ret = -EINVAL;
d6d808f3 492 goto event_error;
03037b98 493 }
c0e31d2e
MD
494 event_file->private_data = event;
495 fd_install(event_fd, event_file);
653fe716 496 /* The event holds a reference on the channel */
b0caa15a 497 atomic_long_inc(&channel_file->f_count);
653fe716
MD
498 return event_fd;
499
03037b98 500event_error:
c0e31d2e 501 fput(event_file);
653fe716
MD
502file_error:
503 put_unused_fd(event_fd);
504fd_error:
653fe716
MD
505 return ret;
506}
ad1c05e1
MD
507
508/**
509 * lttng_channel_ioctl - lttng syscall through ioctl
510 *
c0e31d2e 511 * @file: the file
ad1c05e1
MD
512 * @cmd: the command
513 * @arg: command arg
514 *
515 * This ioctl implements lttng commands:
38d024ae 516 * LTTNG_KERNEL_STREAM
ad1c05e1
MD
517 * Returns an event stream file descriptor or failure.
518 * (typically, one event stream records events from one CPU)
38d024ae 519 * LTTNG_KERNEL_EVENT
ad1c05e1 520 * Returns an event file descriptor or failure.
8070f5c0
MD
521 * LTTNG_KERNEL_CONTEXT
522 * Prepend a context field to each event in the channel
e64957da
MD
523 * LTTNG_KERNEL_ENABLE
524 * Enable recording for events in this channel (weak enable)
525 * LTTNG_KERNEL_DISABLE
526 * Disable recording for events in this channel (strong disable)
baf20995 527 *
baf20995
MD
528 * Channel and event file descriptors also hold a reference on the session.
529 */
ad1c05e1 530static
c0e31d2e 531long lttng_channel_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
baf20995 532{
8070f5c0
MD
533 struct ltt_channel *channel = file->private_data;
534
baf20995 535 switch (cmd) {
38d024ae 536 case LTTNG_KERNEL_STREAM:
c0e31d2e 537 return lttng_abi_open_stream(file);
38d024ae
MD
538 case LTTNG_KERNEL_EVENT:
539 return lttng_abi_create_event(file, (struct lttng_kernel_event __user *) arg);
8070f5c0
MD
540 case LTTNG_KERNEL_CONTEXT:
541 return lttng_abi_add_context(file,
542 (struct lttng_kernel_context __user *) arg,
543 &channel->ctx, channel->session);
e64957da
MD
544 case LTTNG_KERNEL_ENABLE:
545 return ltt_channel_enable(channel);
546 case LTTNG_KERNEL_DISABLE:
547 return ltt_channel_disable(channel);
baf20995
MD
548 default:
549 return -ENOIOCTLCMD;
550 }
551}
552
5dbbdb43
MD
553/**
554 * lttng_metadata_ioctl - lttng syscall through ioctl
555 *
556 * @file: the file
557 * @cmd: the command
558 * @arg: command arg
559 *
560 * This ioctl implements lttng commands:
38d024ae 561 * LTTNG_KERNEL_STREAM
5dbbdb43
MD
562 * Returns an event stream file descriptor or failure.
563 *
564 * Channel and event file descriptors also hold a reference on the session.
565 */
566static
567long lttng_metadata_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
568{
569 switch (cmd) {
38d024ae 570 case LTTNG_KERNEL_STREAM:
5dbbdb43
MD
571 return lttng_abi_open_stream(file);
572 default:
573 return -ENOIOCTLCMD;
574 }
575}
576
653fe716
MD
577/**
578 * lttng_channel_poll - lttng stream addition/removal monitoring
579 *
c0e31d2e 580 * @file: the file
653fe716
MD
581 * @wait: poll table
582 */
c0e31d2e 583unsigned int lttng_channel_poll(struct file *file, poll_table *wait)
653fe716 584{
c0e31d2e 585 struct ltt_channel *channel = file->private_data;
653fe716
MD
586 unsigned int mask = 0;
587
c0e31d2e 588 if (file->f_mode & FMODE_READ) {
a33e44a6 589 poll_wait_set_exclusive(wait);
24cedcfe
MD
590 poll_wait(file, channel->ops->get_hp_wait_queue(channel->chan),
591 wait);
653fe716 592
254ec7bc
MD
593 if (channel->ops->is_disabled(channel->chan))
594 return POLLERR;
24cedcfe 595 if (channel->ops->is_finalized(channel->chan))
653fe716
MD
596 return POLLHUP;
597 else
598 return POLLIN | POLLRDNORM;
599 }
600 return mask;
601
602}
603
0a84a57f
MD
604static
605int lttng_channel_release(struct inode *inode, struct file *file)
606{
607 struct ltt_channel *channel = file->private_data;
c269fff4
MD
608
609 if (channel)
610 fput(channel->session->file);
0a84a57f
MD
611 return 0;
612}
613
ad1c05e1 614static const struct file_operations lttng_channel_fops = {
03037b98 615 .release = lttng_channel_release,
653fe716 616 .poll = lttng_channel_poll,
ad1c05e1 617 .unlocked_ioctl = lttng_channel_ioctl,
baf20995 618#ifdef CONFIG_COMPAT
03037b98 619 .compat_ioctl = lttng_channel_ioctl,
baf20995 620#endif
11b5a3c2 621};
baf20995 622
5dbbdb43
MD
623static const struct file_operations lttng_metadata_fops = {
624 .release = lttng_channel_release,
625 .unlocked_ioctl = lttng_metadata_ioctl,
626#ifdef CONFIG_COMPAT
627 .compat_ioctl = lttng_metadata_ioctl,
628#endif
629};
630
8070f5c0
MD
631/**
632 * lttng_event_ioctl - lttng syscall through ioctl
633 *
634 * @file: the file
635 * @cmd: the command
636 * @arg: command arg
637 *
638 * This ioctl implements lttng commands:
8070f5c0
MD
639 * LTTNG_KERNEL_CONTEXT
640 * Prepend a context field to each record of this event
e64957da
MD
641 * LTTNG_KERNEL_ENABLE
642 * Enable recording for this event (weak enable)
643 * LTTNG_KERNEL_DISABLE
644 * Disable recording for this event (strong disable)
8070f5c0
MD
645 */
646static
647long lttng_event_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
648{
649 struct ltt_event *event = file->private_data;
650
651 switch (cmd) {
652 case LTTNG_KERNEL_CONTEXT:
653 return lttng_abi_add_context(file,
654 (struct lttng_kernel_context __user *) arg,
655 &event->ctx, event->chan->session);
e64957da
MD
656 case LTTNG_KERNEL_ENABLE:
657 return ltt_event_enable(event);
658 case LTTNG_KERNEL_DISABLE:
659 return ltt_event_disable(event);
8070f5c0
MD
660 default:
661 return -ENOIOCTLCMD;
662 }
663}
664
0a84a57f
MD
665static
666int lttng_event_release(struct inode *inode, struct file *file)
667{
668 struct ltt_event *event = file->private_data;
c269fff4 669
aa7c23a9 670 if (event)
c269fff4 671 fput(event->chan->file);
0a84a57f
MD
672 return 0;
673}
674
3b923e5b 675/* TODO: filter control ioctl */
0a84a57f
MD
676static const struct file_operations lttng_event_fops = {
677 .release = lttng_event_release,
8070f5c0
MD
678 .unlocked_ioctl = lttng_event_ioctl,
679#ifdef CONFIG_COMPAT
680 .compat_ioctl = lttng_event_ioctl,
681#endif
11b5a3c2 682};
0a84a57f 683
1c25284c 684int __init ltt_debugfs_abi_init(void)
baf20995
MD
685{
686 int ret = 0;
687
6d2a620c 688 wrapper_vmalloc_sync_all();
11b5a3c2 689 lttng_dentry = debugfs_create_file("lttng", S_IWUSR, NULL, NULL,
f3d01b96 690 &lttng_fops);
11b5a3c2 691 if (IS_ERR(lttng_dentry) || !lttng_dentry) {
baf20995
MD
692 printk(KERN_ERR "Error creating LTTng control file\n");
693 ret = -ENOMEM;
694 goto error;
695 }
696error:
697 return ret;
698}
699
1c25284c 700void __exit ltt_debugfs_abi_exit(void)
baf20995 701{
11b5a3c2 702 debugfs_remove(lttng_dentry);
baf20995 703}
This page took 0.060176 seconds and 4 git commands to generate.