Fix: lttng-tracepoint module notifier should return NOTIFY_OK
[lttng-modules.git] / lttng-abi.c
CommitLineData
baf20995 1/*
e8951e63 2 * lttng-abi.c
baf20995 3 *
e8951e63 4 * LTTng ABI
baf20995 5 *
886d51a3
MD
6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
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.
12 *
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.
17 *
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
21 *
22 *
baf20995
MD
23 * Mimic system calls for:
24 * - session creation, returns a file descriptor or failure.
ad1c05e1
MD
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.
baf20995
MD
38 */
39
11b5a3c2 40#include <linux/module.h>
e6a17f26 41#include <linux/proc_fs.h>
11b5a3c2
MD
42#include <linux/anon_inodes.h>
43#include <linux/file.h>
44#include <linux/uaccess.h>
45#include <linux/slab.h>
abc0446a 46#include <linux/err.h>
241ae9a8
MD
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-abi.h>
55#include <lttng-abi-old.h>
56#include <lttng-events.h>
57#include <lttng-tracer.h>
140a62b0 58#include <lttng-tp-mempool.h>
241ae9a8 59#include <lib/ringbuffer/frontend_types.h>
baf20995
MD
60
61/*
62 * This is LTTng's own personal way to create a system call as an external
80996790 63 * module. We use ioctl() on /proc/lttng.
baf20995
MD
64 */
65
e6a17f26 66static struct proc_dir_entry *lttng_proc_dentry;
ad1c05e1
MD
67static const struct file_operations lttng_fops;
68static const struct file_operations lttng_session_fops;
69static const struct file_operations lttng_channel_fops;
5dbbdb43 70static const struct file_operations lttng_metadata_fops;
305d3e42 71static const struct file_operations lttng_event_fops;
ed8d02d6 72static struct file_operations lttng_stream_ring_buffer_file_operations;
baf20995 73
9616f0bf
JD
74static int put_u64(uint64_t val, unsigned long arg);
75
a33c9927
MD
76/*
77 * Teardown management: opened file descriptors keep a refcount on the module,
78 * so it can only exit when all file descriptors are closed.
79 */
80
ad1c05e1 81static
baf20995
MD
82int lttng_abi_create_session(void)
83{
a90917c3 84 struct lttng_session *session;
c0e31d2e 85 struct file *session_file;
11b5a3c2 86 int session_fd, ret;
baf20995 87
a90917c3 88 session = lttng_session_create();
baf20995
MD
89 if (!session)
90 return -ENOMEM;
4ac10b76 91 session_fd = lttng_get_unused_fd();
baf20995
MD
92 if (session_fd < 0) {
93 ret = session_fd;
94 goto fd_error;
95 }
c0e31d2e 96 session_file = anon_inode_getfile("[lttng_session]",
ad1c05e1 97 &lttng_session_fops,
baf20995 98 session, O_RDWR);
c0e31d2e
MD
99 if (IS_ERR(session_file)) {
100 ret = PTR_ERR(session_file);
baf20995
MD
101 goto file_error;
102 }
c0e31d2e
MD
103 session->file = session_file;
104 fd_install(session_fd, session_file);
baf20995
MD
105 return session_fd;
106
107file_error:
108 put_unused_fd(session_fd);
109fd_error:
a90917c3 110 lttng_session_destroy(session);
baf20995
MD
111 return ret;
112}
113
271b6681
MD
114static
115int lttng_abi_tracepoint_list(void)
116{
117 struct file *tracepoint_list_file;
118 int file_fd, ret;
119
4ac10b76 120 file_fd = lttng_get_unused_fd();
271b6681
MD
121 if (file_fd < 0) {
122 ret = file_fd;
123 goto fd_error;
124 }
30f18bf0 125
8ee099b6 126 tracepoint_list_file = anon_inode_getfile("[lttng_tracepoint_list]",
271b6681
MD
127 &lttng_tracepoint_list_fops,
128 NULL, O_RDWR);
129 if (IS_ERR(tracepoint_list_file)) {
130 ret = PTR_ERR(tracepoint_list_file);
131 goto file_error;
132 }
30f18bf0
MD
133 ret = lttng_tracepoint_list_fops.open(NULL, tracepoint_list_file);
134 if (ret < 0)
135 goto open_error;
271b6681
MD
136 fd_install(file_fd, tracepoint_list_file);
137 return file_fd;
138
30f18bf0
MD
139open_error:
140 fput(tracepoint_list_file);
271b6681
MD
141file_error:
142 put_unused_fd(file_fd);
143fd_error:
144 return ret;
145}
146
f127e61e
MD
147#ifndef CONFIG_HAVE_SYSCALL_TRACEPOINTS
148static inline
149int lttng_abi_syscall_list(void)
150{
151 return -ENOSYS;
152}
153#else
154static
155int lttng_abi_syscall_list(void)
156{
157 struct file *syscall_list_file;
158 int file_fd, ret;
159
160 file_fd = lttng_get_unused_fd();
161 if (file_fd < 0) {
162 ret = file_fd;
163 goto fd_error;
164 }
165
166 syscall_list_file = anon_inode_getfile("[lttng_syscall_list]",
167 &lttng_syscall_list_fops,
168 NULL, O_RDWR);
169 if (IS_ERR(syscall_list_file)) {
170 ret = PTR_ERR(syscall_list_file);
171 goto file_error;
172 }
173 ret = lttng_syscall_list_fops.open(NULL, syscall_list_file);
174 if (ret < 0)
175 goto open_error;
176 fd_install(file_fd, syscall_list_file);
f127e61e
MD
177 return file_fd;
178
179open_error:
180 fput(syscall_list_file);
181file_error:
182 put_unused_fd(file_fd);
183fd_error:
184 return ret;
185}
186#endif
187
80c16bcf 188static
6dccd6c1 189void lttng_abi_tracer_version(struct lttng_kernel_tracer_version *v)
80c16bcf 190{
6dccd6c1
JD
191 v->major = LTTNG_MODULES_MAJOR_VERSION;
192 v->minor = LTTNG_MODULES_MINOR_VERSION;
193 v->patchlevel = LTTNG_MODULES_PATCHLEVEL_VERSION;
80c16bcf
MD
194}
195
42cabb80
MD
196static
197void lttng_abi_tracer_abi_version(struct lttng_kernel_tracer_abi_version *v)
198{
199 v->major = LTTNG_MODULES_ABI_MAJOR_VERSION;
200 v->minor = LTTNG_MODULES_ABI_MINOR_VERSION;
201}
202
8070f5c0
MD
203static
204long lttng_abi_add_context(struct file *file,
6dccd6c1 205 struct lttng_kernel_context *context_param,
a90917c3 206 struct lttng_ctx **ctx, struct lttng_session *session)
8070f5c0 207{
8070f5c0
MD
208
209 if (session->been_active)
210 return -EPERM;
211
6dccd6c1 212 switch (context_param->ctx) {
12a313a5 213 case LTTNG_KERNEL_CONTEXT_PID:
8070f5c0 214 return lttng_add_pid_to_ctx(ctx);
a8ad3613
MD
215 case LTTNG_KERNEL_CONTEXT_PRIO:
216 return lttng_add_prio_to_ctx(ctx);
53f1f0ca
MD
217 case LTTNG_KERNEL_CONTEXT_NICE:
218 return lttng_add_nice_to_ctx(ctx);
b64bc438
MD
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);
12a313a5 229 case LTTNG_KERNEL_CONTEXT_PERF_COUNTER:
6dccd6c1
JD
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,
c24a0d71 234 ctx);
a2563e83
MD
235 case LTTNG_KERNEL_CONTEXT_PROCNAME:
236 return lttng_add_procname_to_ctx(ctx);
975da2c0
JD
237 case LTTNG_KERNEL_CONTEXT_HOSTNAME:
238 return lttng_add_hostname_to_ctx(ctx);
b3699d90
MD
239 case LTTNG_KERNEL_CONTEXT_CPU_ID:
240 return lttng_add_cpu_id_to_ctx(ctx);
79150a49
JD
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);
8070f5c0
MD
249 default:
250 return -EINVAL;
251 }
252}
253
ad1c05e1
MD
254/**
255 * lttng_ioctl - lttng syscall through ioctl
256 *
c0e31d2e 257 * @file: the file
ad1c05e1
MD
258 * @cmd: the command
259 * @arg: command arg
260 *
261 * This ioctl implements lttng commands:
38d024ae 262 * LTTNG_KERNEL_SESSION
ad1c05e1 263 * Returns a LTTng trace session file descriptor
271b6681
MD
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
360f38ea
MD
268 * LTTNG_KERNEL_WAIT_QUIESCENT
269 * Returns after all previously running probes have completed
42cabb80
MD
270 * LTTNG_KERNEL_TRACER_ABI_VERSION
271 * Returns the LTTng kernel tracer ABI version
ad1c05e1
MD
272 *
273 * The returned session will be deleted when its file descriptor is closed.
274 */
275static
c0e31d2e 276long lttng_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
ad1c05e1
MD
277{
278 switch (cmd) {
6dccd6c1 279 case LTTNG_KERNEL_OLD_SESSION:
38d024ae 280 case LTTNG_KERNEL_SESSION:
ad1c05e1 281 return lttng_abi_create_session();
6dccd6c1
JD
282 case LTTNG_KERNEL_OLD_TRACER_VERSION:
283 {
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;
288
289 lttng_abi_tracer_version(&v);
290 oldv.major = v.major;
291 oldv.minor = v.minor;
292 oldv.patchlevel = v.patchlevel;
293
294 if (copy_to_user(uversion, &oldv, sizeof(oldv)))
295 return -EFAULT;
296 return 0;
297 }
80c16bcf 298 case LTTNG_KERNEL_TRACER_VERSION:
6dccd6c1
JD
299 {
300 struct lttng_kernel_tracer_version version;
301 struct lttng_kernel_tracer_version *uversion =
302 (struct lttng_kernel_tracer_version __user *) arg;
303
304 lttng_abi_tracer_version(&version);
42cabb80
MD
305
306 if (copy_to_user(uversion, &version, sizeof(version)))
307 return -EFAULT;
308 return 0;
309 }
310 case LTTNG_KERNEL_TRACER_ABI_VERSION:
311 {
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;
315
316 lttng_abi_tracer_abi_version(&version);
317
6dccd6c1
JD
318 if (copy_to_user(uversion, &version, sizeof(version)))
319 return -EFAULT;
320 return 0;
321 }
322 case LTTNG_KERNEL_OLD_TRACEPOINT_LIST:
271b6681
MD
323 case LTTNG_KERNEL_TRACEPOINT_LIST:
324 return lttng_abi_tracepoint_list();
2d2464bd
MD
325 case LTTNG_KERNEL_SYSCALL_LIST:
326 return lttng_abi_syscall_list();
6dccd6c1 327 case LTTNG_KERNEL_OLD_WAIT_QUIESCENT:
5f7f9078
MD
328 case LTTNG_KERNEL_WAIT_QUIESCENT:
329 synchronize_trace();
330 return 0;
6dccd6c1
JD
331 case LTTNG_KERNEL_OLD_CALIBRATE:
332 {
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;
337 int ret;
338
339 if (copy_from_user(&old_calibrate, ucalibrate, sizeof(old_calibrate)))
340 return -EFAULT;
341 calibrate.type = old_calibrate.type;
342 ret = lttng_calibrate(&calibrate);
343 if (copy_to_user(ucalibrate, &old_calibrate, sizeof(old_calibrate)))
344 return -EFAULT;
345 return ret;
346 }
57105fc2
MD
347 case LTTNG_KERNEL_CALIBRATE:
348 {
3db41b2c
MD
349 struct lttng_kernel_calibrate __user *ucalibrate =
350 (struct lttng_kernel_calibrate __user *) arg;
351 struct lttng_kernel_calibrate calibrate;
57105fc2
MD
352 int ret;
353
354 if (copy_from_user(&calibrate, ucalibrate, sizeof(calibrate)))
355 return -EFAULT;
356 ret = lttng_calibrate(&calibrate);
357 if (copy_to_user(ucalibrate, &calibrate, sizeof(calibrate)))
358 return -EFAULT;
359 return ret;
360 }
ad1c05e1
MD
361 default:
362 return -ENOIOCTLCMD;
363 }
364}
365
ad1c05e1 366static const struct file_operations lttng_fops = {
a33c9927 367 .owner = THIS_MODULE,
ad1c05e1
MD
368 .unlocked_ioctl = lttng_ioctl,
369#ifdef CONFIG_COMPAT
03037b98 370 .compat_ioctl = lttng_ioctl,
ad1c05e1 371#endif
11b5a3c2 372};
ad1c05e1 373
5dbbdb43 374static
c0e31d2e 375int lttng_abi_create_channel(struct file *session_file,
6dccd6c1 376 struct lttng_kernel_channel *chan_param,
5dbbdb43 377 enum channel_type channel_type)
baf20995 378{
a90917c3 379 struct lttng_session *session = session_file->private_data;
88dfd899 380 const struct file_operations *fops = NULL;
5dbbdb43 381 const char *transport_name;
a90917c3 382 struct lttng_channel *chan;
c0e31d2e 383 struct file *chan_file;
baf20995 384 int chan_fd;
ad1c05e1 385 int ret = 0;
baf20995 386
4ac10b76 387 chan_fd = lttng_get_unused_fd();
baf20995
MD
388 if (chan_fd < 0) {
389 ret = chan_fd;
390 goto fd_error;
391 }
88dfd899
MD
392 switch (channel_type) {
393 case PER_CPU_CHANNEL:
394 fops = &lttng_channel_fops;
395 break;
396 case METADATA_CHANNEL:
397 fops = &lttng_metadata_fops;
398 break;
399 }
400
c0e31d2e 401 chan_file = anon_inode_getfile("[lttng_channel]",
88dfd899 402 fops,
03037b98 403 NULL, O_RDWR);
c0e31d2e
MD
404 if (IS_ERR(chan_file)) {
405 ret = PTR_ERR(chan_file);
baf20995
MD
406 goto file_error;
407 }
5dbbdb43
MD
408 switch (channel_type) {
409 case PER_CPU_CHANNEL:
6dccd6c1
JD
410 if (chan_param->output == LTTNG_KERNEL_SPLICE) {
411 transport_name = chan_param->overwrite ?
96ba7208 412 "relay-overwrite" : "relay-discard";
6dccd6c1
JD
413 } else if (chan_param->output == LTTNG_KERNEL_MMAP) {
414 transport_name = chan_param->overwrite ?
96ba7208
JD
415 "relay-overwrite-mmap" : "relay-discard-mmap";
416 } else {
417 return -EINVAL;
418 }
5dbbdb43 419 break;
5dbbdb43 420 case METADATA_CHANNEL:
6dccd6c1 421 if (chan_param->output == LTTNG_KERNEL_SPLICE)
96ba7208 422 transport_name = "relay-metadata";
6dccd6c1 423 else if (chan_param->output == LTTNG_KERNEL_MMAP)
96ba7208
JD
424 transport_name = "relay-metadata-mmap";
425 else
426 return -EINVAL;
5dbbdb43
MD
427 break;
428 default:
429 transport_name = "<unknown>";
430 break;
431 }
64eff476
MJ
432 if (!atomic_long_add_unless(&session_file->f_count, 1, LONG_MAX)) {
433 ret = -EOVERFLOW;
9c1f4643
MD
434 goto refcount_error;
435 }
03037b98
MD
436 /*
437 * We tolerate no failure path after channel creation. It will stay
438 * invariant for the rest of the session.
439 */
a90917c3 440 chan = lttng_channel_create(session, transport_name, NULL,
6dccd6c1
JD
441 chan_param->subbuf_size,
442 chan_param->num_subbuf,
443 chan_param->switch_timer_interval,
d83004aa
JD
444 chan_param->read_timer_interval,
445 channel_type);
03037b98 446 if (!chan) {
f3d01b96 447 ret = -EINVAL;
03037b98
MD
448 goto chan_error;
449 }
11b5a3c2 450 chan->file = chan_file;
c0e31d2e
MD
451 chan_file->private_data = chan;
452 fd_install(chan_fd, chan_file);
ad1c05e1 453
baf20995
MD
454 return chan_fd;
455
03037b98 456chan_error:
9c1f4643
MD
457 atomic_long_dec(&session_file->f_count);
458refcount_error:
c0e31d2e 459 fput(chan_file);
baf20995
MD
460file_error:
461 put_unused_fd(chan_fd);
462fd_error:
baf20995
MD
463 return ret;
464}
465
466/**
ad1c05e1 467 * lttng_session_ioctl - lttng session fd ioctl
baf20995 468 *
c0e31d2e 469 * @file: the file
baf20995
MD
470 * @cmd: the command
471 * @arg: command arg
472 *
473 * This ioctl implements lttng commands:
38d024ae 474 * LTTNG_KERNEL_CHANNEL
baf20995 475 * Returns a LTTng channel file descriptor
e64957da
MD
476 * LTTNG_KERNEL_ENABLE
477 * Enables tracing for a session (weak enable)
478 * LTTNG_KERNEL_DISABLE
479 * Disables tracing for a session (strong disable)
8070f5c0
MD
480 * LTTNG_KERNEL_METADATA
481 * Returns a LTTng metadata file descriptor
e0130fab
MD
482 * LTTNG_KERNEL_SESSION_TRACK_PID
483 * Add PID to session tracker
484 * LTTNG_KERNEL_SESSION_UNTRACK_PID
485 * Remove PID from session tracker
ad1c05e1
MD
486 *
487 * The returned channel will be deleted when its file descriptor is closed.
488 */
489static
c0e31d2e 490long lttng_session_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
ad1c05e1 491{
a90917c3 492 struct lttng_session *session = file->private_data;
c0e31d2e 493
ad1c05e1 494 switch (cmd) {
6dccd6c1
JD
495 case LTTNG_KERNEL_OLD_CHANNEL:
496 {
497 struct lttng_kernel_channel chan_param;
498 struct lttng_kernel_old_channel old_chan_param;
499
500 if (copy_from_user(&old_chan_param,
501 (struct lttng_kernel_old_channel __user *) arg,
502 sizeof(struct lttng_kernel_old_channel)))
503 return -EFAULT;
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;
510
511 return lttng_abi_create_channel(file, &chan_param,
512 PER_CPU_CHANNEL);
513 }
38d024ae 514 case LTTNG_KERNEL_CHANNEL:
6dccd6c1
JD
515 {
516 struct lttng_kernel_channel chan_param;
517
518 if (copy_from_user(&chan_param,
38d024ae 519 (struct lttng_kernel_channel __user *) arg,
6dccd6c1
JD
520 sizeof(struct lttng_kernel_channel)))
521 return -EFAULT;
522 return lttng_abi_create_channel(file, &chan_param,
5dbbdb43 523 PER_CPU_CHANNEL);
6dccd6c1
JD
524 }
525 case LTTNG_KERNEL_OLD_SESSION_START:
526 case LTTNG_KERNEL_OLD_ENABLE:
38d024ae 527 case LTTNG_KERNEL_SESSION_START:
e64957da 528 case LTTNG_KERNEL_ENABLE:
a90917c3 529 return lttng_session_enable(session);
6dccd6c1
JD
530 case LTTNG_KERNEL_OLD_SESSION_STOP:
531 case LTTNG_KERNEL_OLD_DISABLE:
38d024ae 532 case LTTNG_KERNEL_SESSION_STOP:
e64957da 533 case LTTNG_KERNEL_DISABLE:
a90917c3 534 return lttng_session_disable(session);
6dccd6c1
JD
535 case LTTNG_KERNEL_OLD_METADATA:
536 {
537 struct lttng_kernel_channel chan_param;
538 struct lttng_kernel_old_channel old_chan_param;
539
540 if (copy_from_user(&old_chan_param,
541 (struct lttng_kernel_old_channel __user *) arg,
542 sizeof(struct lttng_kernel_old_channel)))
543 return -EFAULT;
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;
550
551 return lttng_abi_create_channel(file, &chan_param,
552 METADATA_CHANNEL);
553 }
38d024ae 554 case LTTNG_KERNEL_METADATA:
6dccd6c1
JD
555 {
556 struct lttng_kernel_channel chan_param;
557
558 if (copy_from_user(&chan_param,
559 (struct lttng_kernel_channel __user *) arg,
560 sizeof(struct lttng_kernel_channel)))
561 return -EFAULT;
562 return lttng_abi_create_channel(file, &chan_param,
5dbbdb43 563 METADATA_CHANNEL);
6dccd6c1 564 }
e0130fab
MD
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);
7e6f9ef6
MD
569 case LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS:
570 return lttng_session_list_tracker_pids(session);
9616f0bf
JD
571 case LTTNG_KERNEL_SESSION_METADATA_REGEN:
572 return lttng_session_metadata_regenerate(session);
601252cf
MD
573 case LTTNG_KERNEL_SESSION_STATEDUMP:
574 return lttng_session_statedump(session);
ad1c05e1
MD
575 default:
576 return -ENOIOCTLCMD;
577 }
578}
579
03037b98
MD
580/*
581 * Called when the last file reference is dropped.
582 *
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).
587 */
ad1c05e1 588static
03037b98 589int lttng_session_release(struct inode *inode, struct file *file)
ad1c05e1 590{
a90917c3 591 struct lttng_session *session = file->private_data;
c269fff4
MD
592
593 if (session)
a90917c3 594 lttng_session_destroy(session);
11b5a3c2 595 return 0;
ad1c05e1 596}
ad1c05e1
MD
597
598static const struct file_operations lttng_session_fops = {
a33c9927 599 .owner = THIS_MODULE,
03037b98 600 .release = lttng_session_release,
ad1c05e1
MD
601 .unlocked_ioctl = lttng_session_ioctl,
602#ifdef CONFIG_COMPAT
03037b98 603 .compat_ioctl = lttng_session_ioctl,
ad1c05e1 604#endif
11b5a3c2 605};
ad1c05e1 606
d83004aa
JD
607/**
608 * lttng_metadata_ring_buffer_poll - LTTng ring buffer poll file operation
609 * @filp: the file
610 * @wait: poll table
611 *
612 * Handles the poll operations for the metadata channels.
613 */
ad1c05e1 614static
d83004aa
JD
615unsigned int lttng_metadata_ring_buffer_poll(struct file *filp,
616 poll_table *wait)
617{
618 struct lttng_metadata_stream *stream = filp->private_data;
619 struct lib_ring_buffer *buf = stream->priv;
620 int finalized;
621 unsigned int mask = 0;
622
623 if (filp->f_mode & FMODE_READ) {
624 poll_wait_set_exclusive(wait);
625 poll_wait(filp, &stream->read_wait, wait);
626
627 finalized = stream->finalized;
628
629 /*
630 * lib_ring_buffer_is_finalized() contains a smp_rmb()
631 * ordering finalized load before offsets loads.
632 */
633 WARN_ON(atomic_long_read(&buf->active_readers) != 1);
634
635 if (finalized)
636 mask |= POLLHUP;
637
92d9f5e6 638 mutex_lock(&stream->metadata_cache->lock);
d83004aa 639 if (stream->metadata_cache->metadata_written >
f613e3e6 640 stream->metadata_out)
d83004aa 641 mask |= POLLIN;
92d9f5e6 642 mutex_unlock(&stream->metadata_cache->lock);
d83004aa
JD
643 }
644
645 return mask;
646}
647
f613e3e6
MD
648static
649void lttng_metadata_ring_buffer_ioctl_put_next_subbuf(struct file *filp,
650 unsigned int cmd, unsigned long arg)
651{
652 struct lttng_metadata_stream *stream = filp->private_data;
653
654 stream->metadata_out = stream->metadata_in;
655}
656
d83004aa
JD
657static
658long lttng_metadata_ring_buffer_ioctl(struct file *filp,
659 unsigned int cmd, unsigned long arg)
660{
661 int ret;
662 struct lttng_metadata_stream *stream = filp->private_data;
663 struct lib_ring_buffer *buf = stream->priv;
664
665 switch (cmd) {
d83004aa
JD
666 case RING_BUFFER_GET_NEXT_SUBBUF:
667 {
35097f36
JD
668 struct lttng_metadata_stream *stream = filp->private_data;
669 struct lib_ring_buffer *buf = stream->priv;
670 struct channel *chan = buf->backend.chan;
671
672 ret = lttng_metadata_output_channel(stream, chan);
673 if (ret > 0) {
674 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
675 ret = 0;
676 } else if (ret < 0)
d83004aa
JD
677 goto err;
678 break;
679 }
f613e3e6
MD
680 case RING_BUFFER_GET_SUBBUF:
681 {
682 /*
683 * Random access is not allowed for metadata channel.
684 */
685 return -ENOSYS;
686 }
67e891fb 687 case RING_BUFFER_FLUSH_EMPTY: /* Fall-through. */
35097f36
JD
688 case RING_BUFFER_FLUSH:
689 {
690 struct lttng_metadata_stream *stream = filp->private_data;
691 struct lib_ring_buffer *buf = stream->priv;
692 struct channel *chan = buf->backend.chan;
693
694 /*
695 * Before doing the actual ring buffer flush, write up to one
696 * packet of metadata in the ring buffer.
697 */
698 ret = lttng_metadata_output_channel(stream, chan);
699 if (ret < 0)
700 goto err;
701 break;
702 }
9616f0bf
JD
703 case RING_BUFFER_GET_METADATA_VERSION:
704 {
705 struct lttng_metadata_stream *stream = filp->private_data;
706
707 return put_u64(stream->version, arg);
708 }
d83004aa
JD
709 default:
710 break;
711 }
f613e3e6
MD
712 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
713
d83004aa 714 /* Performing lib ring buffer ioctl after our own. */
f613e3e6
MD
715 ret = lib_ring_buffer_ioctl(filp, cmd, arg, buf);
716 if (ret < 0)
717 goto err;
d83004aa 718
f613e3e6
MD
719 switch (cmd) {
720 case RING_BUFFER_PUT_NEXT_SUBBUF:
721 {
722 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp,
723 cmd, arg);
724 break;
725 }
726 default:
727 break;
728 }
d83004aa
JD
729err:
730 return ret;
731}
732
aeb9064d 733#ifdef CONFIG_COMPAT
d83004aa
JD
734static
735long lttng_metadata_ring_buffer_compat_ioctl(struct file *filp,
736 unsigned int cmd, unsigned long arg)
737{
738 int ret;
739 struct lttng_metadata_stream *stream = filp->private_data;
740 struct lib_ring_buffer *buf = stream->priv;
741
742 switch (cmd) {
d83004aa
JD
743 case RING_BUFFER_GET_NEXT_SUBBUF:
744 {
35097f36
JD
745 struct lttng_metadata_stream *stream = filp->private_data;
746 struct lib_ring_buffer *buf = stream->priv;
747 struct channel *chan = buf->backend.chan;
748
749 ret = lttng_metadata_output_channel(stream, chan);
750 if (ret > 0) {
751 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
752 ret = 0;
753 } else if (ret < 0)
d83004aa
JD
754 goto err;
755 break;
756 }
f613e3e6
MD
757 case RING_BUFFER_GET_SUBBUF:
758 {
759 /*
760 * Random access is not allowed for metadata channel.
761 */
762 return -ENOSYS;
763 }
67e891fb 764 case RING_BUFFER_FLUSH_EMPTY: /* Fall-through. */
96c55c2f
MD
765 case RING_BUFFER_FLUSH:
766 {
767 struct lttng_metadata_stream *stream = filp->private_data;
768 struct lib_ring_buffer *buf = stream->priv;
769 struct channel *chan = buf->backend.chan;
770
771 /*
772 * Before doing the actual ring buffer flush, write up to one
773 * packet of metadata in the ring buffer.
774 */
775 ret = lttng_metadata_output_channel(stream, chan);
776 if (ret < 0)
777 goto err;
778 break;
779 }
780 case RING_BUFFER_GET_METADATA_VERSION:
781 {
782 struct lttng_metadata_stream *stream = filp->private_data;
783
784 return put_u64(stream->version, arg);
785 }
d83004aa
JD
786 default:
787 break;
788 }
f613e3e6
MD
789 /* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
790
d83004aa 791 /* Performing lib ring buffer ioctl after our own. */
f613e3e6
MD
792 ret = lib_ring_buffer_compat_ioctl(filp, cmd, arg, buf);
793 if (ret < 0)
794 goto err;
d83004aa 795
f613e3e6
MD
796 switch (cmd) {
797 case RING_BUFFER_PUT_NEXT_SUBBUF:
798 {
799 lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp,
800 cmd, arg);
801 break;
802 }
803 default:
804 break;
805 }
d83004aa
JD
806err:
807 return ret;
808}
aeb9064d 809#endif
d83004aa 810
b3b8072b
MD
811/*
812 * This is not used by anonymous file descriptors. This code is left
813 * there if we ever want to implement an inode with open() operation.
814 */
d83004aa
JD
815static
816int lttng_metadata_ring_buffer_open(struct inode *inode, struct file *file)
817{
818 struct lttng_metadata_stream *stream = inode->i_private;
819 struct lib_ring_buffer *buf = stream->priv;
820
821 file->private_data = buf;
b3b8072b
MD
822 /*
823 * Since life-time of metadata cache differs from that of
824 * session, we need to keep our own reference on the transport.
825 */
826 if (!try_module_get(stream->transport->owner)) {
827 printk(KERN_WARNING "LTT : Can't lock transport module.\n");
828 return -EBUSY;
829 }
d83004aa
JD
830 return lib_ring_buffer_open(inode, file, buf);
831}
832
833static
834int lttng_metadata_ring_buffer_release(struct inode *inode, struct file *file)
835{
836 struct lttng_metadata_stream *stream = file->private_data;
837 struct lib_ring_buffer *buf = stream->priv;
838
839 kref_put(&stream->metadata_cache->refcount, metadata_cache_destroy);
b3b8072b 840 module_put(stream->transport->owner);
d83004aa
JD
841 return lib_ring_buffer_release(inode, file, buf);
842}
843
844static
845ssize_t lttng_metadata_ring_buffer_splice_read(struct file *in, loff_t *ppos,
846 struct pipe_inode_info *pipe, size_t len,
847 unsigned int flags)
848{
849 struct lttng_metadata_stream *stream = in->private_data;
850 struct lib_ring_buffer *buf = stream->priv;
851
852 return lib_ring_buffer_splice_read(in, ppos, pipe, len,
853 flags, buf);
854}
855
856static
857int lttng_metadata_ring_buffer_mmap(struct file *filp,
858 struct vm_area_struct *vma)
859{
860 struct lttng_metadata_stream *stream = filp->private_data;
861 struct lib_ring_buffer *buf = stream->priv;
862
863 return lib_ring_buffer_mmap(filp, vma, buf);
864}
865
866static
867const struct file_operations lttng_metadata_ring_buffer_file_operations = {
868 .owner = THIS_MODULE,
869 .open = lttng_metadata_ring_buffer_open,
870 .release = lttng_metadata_ring_buffer_release,
871 .poll = lttng_metadata_ring_buffer_poll,
872 .splice_read = lttng_metadata_ring_buffer_splice_read,
873 .mmap = lttng_metadata_ring_buffer_mmap,
874 .unlocked_ioctl = lttng_metadata_ring_buffer_ioctl,
875 .llseek = vfs_lib_ring_buffer_no_llseek,
876#ifdef CONFIG_COMPAT
877 .compat_ioctl = lttng_metadata_ring_buffer_compat_ioctl,
878#endif
879};
880
881static
882int lttng_abi_create_stream_fd(struct file *channel_file, void *stream_priv,
883 const struct file_operations *fops)
ad1c05e1 884{
ad1c05e1 885 int stream_fd, ret;
11b5a3c2 886 struct file *stream_file;
ad1c05e1 887
4ac10b76 888 stream_fd = lttng_get_unused_fd();
ad1c05e1
MD
889 if (stream_fd < 0) {
890 ret = stream_fd;
891 goto fd_error;
892 }
d83004aa
JD
893 stream_file = anon_inode_getfile("[lttng_stream]", fops,
894 stream_priv, O_RDWR);
c0e31d2e
MD
895 if (IS_ERR(stream_file)) {
896 ret = PTR_ERR(stream_file);
ad1c05e1
MD
897 goto file_error;
898 }
409453cb
MD
899 /*
900 * OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
901 * FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
902 * file descriptor, so we set FMODE_PREAD here.
903 */
d7b6f197 904 stream_file->f_mode |= FMODE_PREAD;
c0e31d2e 905 fd_install(stream_fd, stream_file);
dda6a249
MD
906 /*
907 * The stream holds a reference to the channel within the generic ring
908 * buffer library, so no need to hold a refcount on the channel and
909 * session files here.
910 */
ad1c05e1
MD
911 return stream_fd;
912
913file_error:
914 put_unused_fd(stream_fd);
d83004aa
JD
915fd_error:
916 return ret;
917}
918
919static
920int lttng_abi_open_stream(struct file *channel_file)
921{
922 struct lttng_channel *channel = channel_file->private_data;
923 struct lib_ring_buffer *buf;
924 int ret;
925 void *stream_priv;
926
927 buf = channel->ops->buffer_read_open(channel->chan);
928 if (!buf)
929 return -ENOENT;
930
931 stream_priv = buf;
932 ret = lttng_abi_create_stream_fd(channel_file, stream_priv,
ed8d02d6 933 &lttng_stream_ring_buffer_file_operations);
d83004aa
JD
934 if (ret < 0)
935 goto fd_error;
936
937 return ret;
938
939fd_error:
940 channel->ops->buffer_read_close(buf);
941 return ret;
942}
943
944static
945int lttng_abi_open_metadata_stream(struct file *channel_file)
946{
947 struct lttng_channel *channel = channel_file->private_data;
948 struct lttng_session *session = channel->session;
949 struct lib_ring_buffer *buf;
950 int ret;
951 struct lttng_metadata_stream *metadata_stream;
952 void *stream_priv;
953
954 buf = channel->ops->buffer_read_open(channel->chan);
955 if (!buf)
956 return -ENOENT;
957
958 metadata_stream = kzalloc(sizeof(struct lttng_metadata_stream),
959 GFP_KERNEL);
b3b8072b
MD
960 if (!metadata_stream) {
961 ret = -ENOMEM;
962 goto nomem;
963 }
d83004aa
JD
964 metadata_stream->metadata_cache = session->metadata_cache;
965 init_waitqueue_head(&metadata_stream->read_wait);
966 metadata_stream->priv = buf;
967 stream_priv = metadata_stream;
b3b8072b
MD
968 metadata_stream->transport = channel->transport;
969
970 /*
971 * Since life-time of metadata cache differs from that of
972 * session, we need to keep our own reference on the transport.
973 */
974 if (!try_module_get(metadata_stream->transport->owner)) {
975 printk(KERN_WARNING "LTT : Can't lock transport module.\n");
976 ret = -EINVAL;
977 goto notransport;
978 }
979
715b31b7
FD
980 if (!lttng_kref_get(&session->metadata_cache->refcount)) {
981 ret = -EOVERFLOW;
9c1f4643 982 goto kref_error;
715b31b7
FD
983 }
984
d83004aa
JD
985 ret = lttng_abi_create_stream_fd(channel_file, stream_priv,
986 &lttng_metadata_ring_buffer_file_operations);
987 if (ret < 0)
988 goto fd_error;
989
d83004aa
JD
990 list_add(&metadata_stream->list,
991 &session->metadata_cache->metadata_stream);
992 return ret;
993
ad1c05e1 994fd_error:
9c1f4643
MD
995 kref_put(&session->metadata_cache->refcount, metadata_cache_destroy);
996kref_error:
b3b8072b
MD
997 module_put(metadata_stream->transport->owner);
998notransport:
999 kfree(metadata_stream);
1000nomem:
11b5a3c2 1001 channel->ops->buffer_read_close(buf);
ad1c05e1
MD
1002 return ret;
1003}
1004
653fe716 1005static
c0e31d2e 1006int lttng_abi_create_event(struct file *channel_file,
6dccd6c1 1007 struct lttng_kernel_event *event_param)
653fe716 1008{
a90917c3 1009 struct lttng_channel *channel = channel_file->private_data;
653fe716 1010 int event_fd, ret;
11b5a3c2 1011 struct file *event_file;
3c997079 1012 void *priv;
653fe716 1013
6dccd6c1
JD
1014 event_param->name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
1015 switch (event_param->instrumentation) {
7371f44c 1016 case LTTNG_KERNEL_KRETPROBE:
6dccd6c1 1017 event_param->u.kretprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
7371f44c 1018 break;
ab2277d6 1019 case LTTNG_KERNEL_KPROBE:
6dccd6c1 1020 event_param->u.kprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
e0a7a7c4 1021 break;
ab2277d6 1022 case LTTNG_KERNEL_FUNCTION:
6dccd6c1 1023 event_param->u.ftrace.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
e0a7a7c4
MD
1024 break;
1025 default:
1026 break;
1027 }
33a39a3c
MD
1028 event_fd = lttng_get_unused_fd();
1029 if (event_fd < 0) {
1030 ret = event_fd;
1031 goto fd_error;
1032 }
1033 event_file = anon_inode_getfile("[lttng_event]",
1034 &lttng_event_fops,
1035 NULL, O_RDWR);
1036 if (IS_ERR(event_file)) {
1037 ret = PTR_ERR(event_file);
1038 goto file_error;
1039 }
9c1f4643 1040 /* The event holds a reference on the channel */
64eff476 1041 if (!atomic_long_add_unless(&channel_file->f_count, 1, LONG_MAX)) {
0d2c717f 1042 ret = -EOVERFLOW;
9c1f4643
MD
1043 goto refcount_error;
1044 }
33a39a3c
MD
1045 if (event_param->instrumentation == LTTNG_KERNEL_TRACEPOINT
1046 || event_param->instrumentation == LTTNG_KERNEL_SYSCALL) {
1047 struct lttng_enabler *enabler;
1048
1049 if (event_param->name[strlen(event_param->name) - 1] == '*') {
1050 enabler = lttng_enabler_create(LTTNG_ENABLER_WILDCARD,
1051 event_param, channel);
3c997079 1052 } else {
33a39a3c
MD
1053 enabler = lttng_enabler_create(LTTNG_ENABLER_NAME,
1054 event_param, channel);
1ec65de1 1055 }
33a39a3c
MD
1056 priv = enabler;
1057 } else {
1058 struct lttng_event *event;
4ee2453d 1059
33a39a3c
MD
1060 /*
1061 * We tolerate no failure path after event creation. It
1062 * will stay invariant for the rest of the session.
1063 */
1064 event = lttng_event_create(channel, event_param,
1065 NULL, NULL,
1066 event_param->instrumentation);
1067 WARN_ON_ONCE(!event);
1068 if (IS_ERR(event)) {
1069 ret = PTR_ERR(event);
1070 goto event_error;
80f87dd2 1071 }
33a39a3c 1072 priv = event;
03037b98 1073 }
33a39a3c
MD
1074 event_file->private_data = priv;
1075 fd_install(event_fd, event_file);
653fe716
MD
1076 return event_fd;
1077
03037b98 1078event_error:
9c1f4643
MD
1079 atomic_long_dec(&channel_file->f_count);
1080refcount_error:
c0e31d2e 1081 fput(event_file);
653fe716
MD
1082file_error:
1083 put_unused_fd(event_fd);
1084fd_error:
653fe716
MD
1085 return ret;
1086}
ad1c05e1
MD
1087
1088/**
1089 * lttng_channel_ioctl - lttng syscall through ioctl
1090 *
c0e31d2e 1091 * @file: the file
ad1c05e1
MD
1092 * @cmd: the command
1093 * @arg: command arg
1094 *
1095 * This ioctl implements lttng commands:
38d024ae 1096 * LTTNG_KERNEL_STREAM
ad1c05e1
MD
1097 * Returns an event stream file descriptor or failure.
1098 * (typically, one event stream records events from one CPU)
38d024ae 1099 * LTTNG_KERNEL_EVENT
ad1c05e1 1100 * Returns an event file descriptor or failure.
8070f5c0
MD
1101 * LTTNG_KERNEL_CONTEXT
1102 * Prepend a context field to each event in the channel
e64957da
MD
1103 * LTTNG_KERNEL_ENABLE
1104 * Enable recording for events in this channel (weak enable)
1105 * LTTNG_KERNEL_DISABLE
1106 * Disable recording for events in this channel (strong disable)
baf20995 1107 *
baf20995
MD
1108 * Channel and event file descriptors also hold a reference on the session.
1109 */
ad1c05e1 1110static
c0e31d2e 1111long lttng_channel_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
baf20995 1112{
a90917c3 1113 struct lttng_channel *channel = file->private_data;
8070f5c0 1114
baf20995 1115 switch (cmd) {
6dccd6c1 1116 case LTTNG_KERNEL_OLD_STREAM:
38d024ae 1117 case LTTNG_KERNEL_STREAM:
c0e31d2e 1118 return lttng_abi_open_stream(file);
6dccd6c1
JD
1119 case LTTNG_KERNEL_OLD_EVENT:
1120 {
1121 struct lttng_kernel_event *uevent_param;
1122 struct lttng_kernel_old_event *old_uevent_param;
1123 int ret;
1124
1125 uevent_param = kmalloc(sizeof(struct lttng_kernel_event),
1126 GFP_KERNEL);
1127 if (!uevent_param) {
1128 ret = -ENOMEM;
1129 goto old_event_end;
1130 }
1131 old_uevent_param = kmalloc(
1132 sizeof(struct lttng_kernel_old_event),
1133 GFP_KERNEL);
1134 if (!old_uevent_param) {
1135 ret = -ENOMEM;
1136 goto old_event_error_free_param;
1137 }
1138 if (copy_from_user(old_uevent_param,
1139 (struct lttng_kernel_old_event __user *) arg,
1140 sizeof(struct lttng_kernel_old_event))) {
1141 ret = -EFAULT;
1142 goto old_event_error_free_old_param;
1143 }
1144
1145 memcpy(uevent_param->name, old_uevent_param->name,
1146 sizeof(uevent_param->name));
1147 uevent_param->instrumentation =
1148 old_uevent_param->instrumentation;
1149
1150 switch (old_uevent_param->instrumentation) {
1151 case LTTNG_KERNEL_KPROBE:
1152 uevent_param->u.kprobe.addr =
1153 old_uevent_param->u.kprobe.addr;
1154 uevent_param->u.kprobe.offset =
1155 old_uevent_param->u.kprobe.offset;
1156 memcpy(uevent_param->u.kprobe.symbol_name,
1157 old_uevent_param->u.kprobe.symbol_name,
1158 sizeof(uevent_param->u.kprobe.symbol_name));
1159 break;
1160 case LTTNG_KERNEL_KRETPROBE:
1161 uevent_param->u.kretprobe.addr =
1162 old_uevent_param->u.kretprobe.addr;
1163 uevent_param->u.kretprobe.offset =
1164 old_uevent_param->u.kretprobe.offset;
1165 memcpy(uevent_param->u.kretprobe.symbol_name,
1166 old_uevent_param->u.kretprobe.symbol_name,
1167 sizeof(uevent_param->u.kretprobe.symbol_name));
1168 break;
1169 case LTTNG_KERNEL_FUNCTION:
1170 memcpy(uevent_param->u.ftrace.symbol_name,
1171 old_uevent_param->u.ftrace.symbol_name,
1172 sizeof(uevent_param->u.ftrace.symbol_name));
1173 break;
1174 default:
1175 break;
1176 }
1177 ret = lttng_abi_create_event(file, uevent_param);
1178
1179old_event_error_free_old_param:
1180 kfree(old_uevent_param);
1181old_event_error_free_param:
1182 kfree(uevent_param);
1183old_event_end:
1184 return ret;
1185 }
38d024ae 1186 case LTTNG_KERNEL_EVENT:
6dccd6c1
JD
1187 {
1188 struct lttng_kernel_event uevent_param;
1189
1190 if (copy_from_user(&uevent_param,
1191 (struct lttng_kernel_event __user *) arg,
1192 sizeof(uevent_param)))
1193 return -EFAULT;
1194 return lttng_abi_create_event(file, &uevent_param);
1195 }
1196 case LTTNG_KERNEL_OLD_CONTEXT:
1197 {
1198 struct lttng_kernel_context *ucontext_param;
1199 struct lttng_kernel_old_context *old_ucontext_param;
1200 int ret;
1201
1202 ucontext_param = kmalloc(sizeof(struct lttng_kernel_context),
1203 GFP_KERNEL);
1204 if (!ucontext_param) {
1205 ret = -ENOMEM;
1206 goto old_ctx_end;
1207 }
1208 old_ucontext_param = kmalloc(sizeof(struct lttng_kernel_old_context),
1209 GFP_KERNEL);
1210 if (!old_ucontext_param) {
1211 ret = -ENOMEM;
1212 goto old_ctx_error_free_param;
1213 }
1214
1215 if (copy_from_user(old_ucontext_param,
1216 (struct lttng_kernel_old_context __user *) arg,
1217 sizeof(struct lttng_kernel_old_context))) {
1218 ret = -EFAULT;
1219 goto old_ctx_error_free_old_param;
1220 }
1221 ucontext_param->ctx = old_ucontext_param->ctx;
1222 memcpy(ucontext_param->padding, old_ucontext_param->padding,
1223 sizeof(ucontext_param->padding));
1224 /* only type that uses the union */
1225 if (old_ucontext_param->ctx == LTTNG_KERNEL_CONTEXT_PERF_COUNTER) {
1226 ucontext_param->u.perf_counter.type =
1227 old_ucontext_param->u.perf_counter.type;
1228 ucontext_param->u.perf_counter.config =
1229 old_ucontext_param->u.perf_counter.config;
1230 memcpy(ucontext_param->u.perf_counter.name,
1231 old_ucontext_param->u.perf_counter.name,
1232 sizeof(ucontext_param->u.perf_counter.name));
1233 }
1234
1235 ret = lttng_abi_add_context(file,
1236 ucontext_param,
1237 &channel->ctx, channel->session);
1238
1239old_ctx_error_free_old_param:
1240 kfree(old_ucontext_param);
1241old_ctx_error_free_param:
1242 kfree(ucontext_param);
1243old_ctx_end:
1244 return ret;
1245 }
8070f5c0 1246 case LTTNG_KERNEL_CONTEXT:
6dccd6c1
JD
1247 {
1248 struct lttng_kernel_context ucontext_param;
1249
1250 if (copy_from_user(&ucontext_param,
8070f5c0 1251 (struct lttng_kernel_context __user *) arg,
6dccd6c1
JD
1252 sizeof(ucontext_param)))
1253 return -EFAULT;
1254 return lttng_abi_add_context(file,
1255 &ucontext_param,
8070f5c0 1256 &channel->ctx, channel->session);
6dccd6c1
JD
1257 }
1258 case LTTNG_KERNEL_OLD_ENABLE:
e64957da 1259 case LTTNG_KERNEL_ENABLE:
a90917c3 1260 return lttng_channel_enable(channel);
6dccd6c1 1261 case LTTNG_KERNEL_OLD_DISABLE:
e64957da 1262 case LTTNG_KERNEL_DISABLE:
a90917c3 1263 return lttng_channel_disable(channel);
12e579db
MD
1264 case LTTNG_KERNEL_SYSCALL_MASK:
1265 return lttng_channel_syscall_mask(channel,
1266 (struct lttng_kernel_syscall_mask __user *) arg);
baf20995
MD
1267 default:
1268 return -ENOIOCTLCMD;
1269 }
6dccd6c1 1270
baf20995
MD
1271}
1272
5dbbdb43
MD
1273/**
1274 * lttng_metadata_ioctl - lttng syscall through ioctl
1275 *
1276 * @file: the file
1277 * @cmd: the command
1278 * @arg: command arg
1279 *
1280 * This ioctl implements lttng commands:
38d024ae 1281 * LTTNG_KERNEL_STREAM
5dbbdb43
MD
1282 * Returns an event stream file descriptor or failure.
1283 *
1284 * Channel and event file descriptors also hold a reference on the session.
1285 */
1286static
1287long lttng_metadata_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1288{
1289 switch (cmd) {
6dccd6c1 1290 case LTTNG_KERNEL_OLD_STREAM:
38d024ae 1291 case LTTNG_KERNEL_STREAM:
d83004aa 1292 return lttng_abi_open_metadata_stream(file);
5dbbdb43
MD
1293 default:
1294 return -ENOIOCTLCMD;
1295 }
1296}
1297
653fe716
MD
1298/**
1299 * lttng_channel_poll - lttng stream addition/removal monitoring
1300 *
c0e31d2e 1301 * @file: the file
653fe716
MD
1302 * @wait: poll table
1303 */
c0e31d2e 1304unsigned int lttng_channel_poll(struct file *file, poll_table *wait)
653fe716 1305{
a90917c3 1306 struct lttng_channel *channel = file->private_data;
653fe716
MD
1307 unsigned int mask = 0;
1308
c0e31d2e 1309 if (file->f_mode & FMODE_READ) {
a33e44a6 1310 poll_wait_set_exclusive(wait);
24cedcfe
MD
1311 poll_wait(file, channel->ops->get_hp_wait_queue(channel->chan),
1312 wait);
653fe716 1313
254ec7bc
MD
1314 if (channel->ops->is_disabled(channel->chan))
1315 return POLLERR;
24cedcfe 1316 if (channel->ops->is_finalized(channel->chan))
653fe716 1317 return POLLHUP;
f71ecafa 1318 if (channel->ops->buffer_has_read_closed_stream(channel->chan))
653fe716 1319 return POLLIN | POLLRDNORM;
f71ecafa 1320 return 0;
653fe716
MD
1321 }
1322 return mask;
1323
1324}
1325
0a84a57f
MD
1326static
1327int lttng_channel_release(struct inode *inode, struct file *file)
1328{
a90917c3 1329 struct lttng_channel *channel = file->private_data;
c269fff4
MD
1330
1331 if (channel)
1332 fput(channel->session->file);
0a84a57f
MD
1333 return 0;
1334}
1335
d83004aa
JD
1336static
1337int lttng_metadata_channel_release(struct inode *inode, struct file *file)
1338{
1339 struct lttng_channel *channel = file->private_data;
1340
1341 if (channel) {
d83004aa 1342 fput(channel->session->file);
a3381417 1343 lttng_metadata_channel_destroy(channel);
d83004aa
JD
1344 }
1345
1346 return 0;
1347}
1348
ad1c05e1 1349static const struct file_operations lttng_channel_fops = {
a33c9927 1350 .owner = THIS_MODULE,
03037b98 1351 .release = lttng_channel_release,
653fe716 1352 .poll = lttng_channel_poll,
ad1c05e1 1353 .unlocked_ioctl = lttng_channel_ioctl,
baf20995 1354#ifdef CONFIG_COMPAT
03037b98 1355 .compat_ioctl = lttng_channel_ioctl,
baf20995 1356#endif
11b5a3c2 1357};
baf20995 1358
5dbbdb43 1359static const struct file_operations lttng_metadata_fops = {
a33c9927 1360 .owner = THIS_MODULE,
d83004aa 1361 .release = lttng_metadata_channel_release,
5dbbdb43
MD
1362 .unlocked_ioctl = lttng_metadata_ioctl,
1363#ifdef CONFIG_COMPAT
1364 .compat_ioctl = lttng_metadata_ioctl,
1365#endif
1366};
1367
8070f5c0
MD
1368/**
1369 * lttng_event_ioctl - lttng syscall through ioctl
1370 *
1371 * @file: the file
1372 * @cmd: the command
1373 * @arg: command arg
1374 *
1375 * This ioctl implements lttng commands:
8070f5c0
MD
1376 * LTTNG_KERNEL_CONTEXT
1377 * Prepend a context field to each record of this event
e64957da
MD
1378 * LTTNG_KERNEL_ENABLE
1379 * Enable recording for this event (weak enable)
1380 * LTTNG_KERNEL_DISABLE
1381 * Disable recording for this event (strong disable)
8070f5c0
MD
1382 */
1383static
1384long lttng_event_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1385{
3c997079
MD
1386 struct lttng_event *event;
1387 struct lttng_enabler *enabler;
1388 enum lttng_event_type *evtype = file->private_data;
8070f5c0
MD
1389
1390 switch (cmd) {
6dccd6c1
JD
1391 case LTTNG_KERNEL_OLD_CONTEXT:
1392 {
3c997079
MD
1393 /* Not implemented */
1394 return -ENOSYS;
6dccd6c1 1395 }
8070f5c0 1396 case LTTNG_KERNEL_CONTEXT:
6dccd6c1 1397 {
3c997079
MD
1398 /* Not implemented */
1399 return -ENOSYS;
6dccd6c1
JD
1400 }
1401 case LTTNG_KERNEL_OLD_ENABLE:
e64957da 1402 case LTTNG_KERNEL_ENABLE:
3c997079
MD
1403 switch (*evtype) {
1404 case LTTNG_TYPE_EVENT:
1405 event = file->private_data;
1406 return lttng_event_enable(event);
1407 case LTTNG_TYPE_ENABLER:
1408 enabler = file->private_data;
1409 return lttng_enabler_enable(enabler);
1410 default:
1411 WARN_ON_ONCE(1);
1412 return -ENOSYS;
1413 }
6dccd6c1 1414 case LTTNG_KERNEL_OLD_DISABLE:
e64957da 1415 case LTTNG_KERNEL_DISABLE:
3c997079
MD
1416 switch (*evtype) {
1417 case LTTNG_TYPE_EVENT:
1418 event = file->private_data;
1419 return lttng_event_disable(event);
1420 case LTTNG_TYPE_ENABLER:
1421 enabler = file->private_data;
1422 return lttng_enabler_disable(enabler);
1423 default:
1424 WARN_ON_ONCE(1);
1425 return -ENOSYS;
1426 }
07dfc1d0
MD
1427 case LTTNG_KERNEL_FILTER:
1428 switch (*evtype) {
1429 case LTTNG_TYPE_EVENT:
1430 return -EINVAL;
1431 case LTTNG_TYPE_ENABLER:
1432 {
1433 enabler = file->private_data;
1434 return lttng_enabler_attach_bytecode(enabler,
1435 (struct lttng_kernel_filter_bytecode __user *) arg);
1436 }
1437
1438 }
8070f5c0
MD
1439 default:
1440 return -ENOIOCTLCMD;
1441 }
1442}
1443
0a84a57f
MD
1444static
1445int lttng_event_release(struct inode *inode, struct file *file)
1446{
3c997079
MD
1447 struct lttng_event *event;
1448 struct lttng_enabler *enabler;
1449 enum lttng_event_type *evtype = file->private_data;
1450
1451 if (!evtype)
1452 return 0;
1453
1454 switch (*evtype) {
1455 case LTTNG_TYPE_EVENT:
1456 event = file->private_data;
1457 if (event)
1458 fput(event->chan->file);
1459 break;
1460 case LTTNG_TYPE_ENABLER:
1461 enabler = file->private_data;
1462 if (enabler)
1463 fput(enabler->chan->file);
1464 break;
1465 default:
1466 WARN_ON_ONCE(1);
1467 break;
1468 }
c269fff4 1469
0a84a57f
MD
1470 return 0;
1471}
1472
3b923e5b 1473/* TODO: filter control ioctl */
0a84a57f 1474static const struct file_operations lttng_event_fops = {
a33c9927 1475 .owner = THIS_MODULE,
0a84a57f 1476 .release = lttng_event_release,
8070f5c0
MD
1477 .unlocked_ioctl = lttng_event_ioctl,
1478#ifdef CONFIG_COMPAT
1479 .compat_ioctl = lttng_event_ioctl,
1480#endif
11b5a3c2 1481};
0a84a57f 1482
3b731ab1
JD
1483static int put_u64(uint64_t val, unsigned long arg)
1484{
1485 return put_user(val, (uint64_t __user *) arg);
1486}
1487
ed8d02d6
JD
1488static long lttng_stream_ring_buffer_ioctl(struct file *filp,
1489 unsigned int cmd, unsigned long arg)
1490{
3b731ab1
JD
1491 struct lib_ring_buffer *buf = filp->private_data;
1492 struct channel *chan = buf->backend.chan;
1493 const struct lib_ring_buffer_config *config = &chan->backend.config;
dd5a0db3 1494 const struct lttng_channel_ops *ops = chan->backend.priv_ops;
3b731ab1
JD
1495 int ret;
1496
1497 if (atomic_read(&chan->record_disabled))
1498 return -EIO;
1499
ed8d02d6 1500 switch (cmd) {
3b731ab1
JD
1501 case LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN:
1502 {
1503 uint64_t ts;
1504
dd5a0db3 1505 ret = ops->timestamp_begin(config, buf, &ts);
3b731ab1
JD
1506 if (ret < 0)
1507 goto error;
1508 return put_u64(ts, arg);
1509 }
1510 case LTTNG_RING_BUFFER_GET_TIMESTAMP_END:
1511 {
1512 uint64_t ts;
1513
dd5a0db3 1514 ret = ops->timestamp_end(config, buf, &ts);
3b731ab1
JD
1515 if (ret < 0)
1516 goto error;
1517 return put_u64(ts, arg);
1518 }
1519 case LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED:
1520 {
1521 uint64_t ed;
1522
dd5a0db3 1523 ret = ops->events_discarded(config, buf, &ed);
3b731ab1
JD
1524 if (ret < 0)
1525 goto error;
1526 return put_u64(ed, arg);
1527 }
1528 case LTTNG_RING_BUFFER_GET_CONTENT_SIZE:
1529 {
1530 uint64_t cs;
1531
dd5a0db3 1532 ret = ops->content_size(config, buf, &cs);
3b731ab1
JD
1533 if (ret < 0)
1534 goto error;
1535 return put_u64(cs, arg);
1536 }
1537 case LTTNG_RING_BUFFER_GET_PACKET_SIZE:
1538 {
1539 uint64_t ps;
1540
dd5a0db3 1541 ret = ops->packet_size(config, buf, &ps);
3b731ab1
JD
1542 if (ret < 0)
1543 goto error;
1544 return put_u64(ps, arg);
1545 }
1546 case LTTNG_RING_BUFFER_GET_STREAM_ID:
1547 {
1548 uint64_t si;
1549
dd5a0db3 1550 ret = ops->stream_id(config, buf, &si);
3b731ab1
JD
1551 if (ret < 0)
1552 goto error;
1553 return put_u64(si, arg);
1554 }
2348ca17
JD
1555 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP:
1556 {
1557 uint64_t ts;
1558
dd5a0db3 1559 ret = ops->current_timestamp(config, buf, &ts);
2348ca17
JD
1560 if (ret < 0)
1561 goto error;
1562 return put_u64(ts, arg);
1563 }
5b3cf4f9
JD
1564 case LTTNG_RING_BUFFER_GET_SEQ_NUM:
1565 {
1566 uint64_t seq;
1567
1568 ret = ops->sequence_number(config, buf, &seq);
1569 if (ret < 0)
1570 goto error;
1571 return put_u64(seq, arg);
1572 }
5594698f
JD
1573 case LTTNG_RING_BUFFER_INSTANCE_ID:
1574 {
1575 uint64_t id;
1576
1577 ret = ops->instance_id(config, buf, &id);
1578 if (ret < 0)
1579 goto error;
1580 return put_u64(id, arg);
1581 }
3b731ab1
JD
1582 default:
1583 return lib_ring_buffer_file_operations.unlocked_ioctl(filp,
1584 cmd, arg);
ed8d02d6 1585 }
3b731ab1
JD
1586
1587error:
1588 return -ENOSYS;
ed8d02d6
JD
1589}
1590
1591#ifdef CONFIG_COMPAT
1592static long lttng_stream_ring_buffer_compat_ioctl(struct file *filp,
1593 unsigned int cmd, unsigned long arg)
1594{
3b731ab1
JD
1595 struct lib_ring_buffer *buf = filp->private_data;
1596 struct channel *chan = buf->backend.chan;
1597 const struct lib_ring_buffer_config *config = &chan->backend.config;
dd5a0db3 1598 const struct lttng_channel_ops *ops = chan->backend.priv_ops;
3b731ab1
JD
1599 int ret;
1600
1601 if (atomic_read(&chan->record_disabled))
1602 return -EIO;
1603
ed8d02d6 1604 switch (cmd) {
3b731ab1
JD
1605 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN:
1606 {
1607 uint64_t ts;
1608
dd5a0db3 1609 ret = ops->timestamp_begin(config, buf, &ts);
3b731ab1
JD
1610 if (ret < 0)
1611 goto error;
1612 return put_u64(ts, arg);
1613 }
1614 case LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END:
1615 {
1616 uint64_t ts;
1617
dd5a0db3 1618 ret = ops->timestamp_end(config, buf, &ts);
3b731ab1
JD
1619 if (ret < 0)
1620 goto error;
1621 return put_u64(ts, arg);
1622 }
1623 case LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED:
1624 {
1625 uint64_t ed;
1626
dd5a0db3 1627 ret = ops->events_discarded(config, buf, &ed);
3b731ab1
JD
1628 if (ret < 0)
1629 goto error;
1630 return put_u64(ed, arg);
ed8d02d6 1631 }
3b731ab1
JD
1632 case LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE:
1633 {
1634 uint64_t cs;
1635
dd5a0db3 1636 ret = ops->content_size(config, buf, &cs);
3b731ab1
JD
1637 if (ret < 0)
1638 goto error;
1639 return put_u64(cs, arg);
1640 }
1641 case LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE:
1642 {
1643 uint64_t ps;
1644
dd5a0db3 1645 ret = ops->packet_size(config, buf, &ps);
3b731ab1
JD
1646 if (ret < 0)
1647 goto error;
1648 return put_u64(ps, arg);
1649 }
1650 case LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID:
1651 {
1652 uint64_t si;
1653
dd5a0db3 1654 ret = ops->stream_id(config, buf, &si);
3b731ab1
JD
1655 if (ret < 0)
1656 goto error;
1657 return put_u64(si, arg);
1658 }
2348ca17
JD
1659 case LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP:
1660 {
1661 uint64_t ts;
1662
dd5a0db3 1663 ret = ops->current_timestamp(config, buf, &ts);
2348ca17
JD
1664 if (ret < 0)
1665 goto error;
1666 return put_u64(ts, arg);
1667 }
5b3cf4f9
JD
1668 case LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM:
1669 {
1670 uint64_t seq;
1671
1672 ret = ops->sequence_number(config, buf, &seq);
1673 if (ret < 0)
1674 goto error;
1675 return put_u64(seq, arg);
1676 }
5594698f
JD
1677 case LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID:
1678 {
1679 uint64_t id;
1680
1681 ret = ops->instance_id(config, buf, &id);
1682 if (ret < 0)
1683 goto error;
1684 return put_u64(id, arg);
1685 }
3b731ab1
JD
1686 default:
1687 return lib_ring_buffer_file_operations.compat_ioctl(filp,
1688 cmd, arg);
1689 }
1690
1691error:
1692 return -ENOSYS;
ed8d02d6
JD
1693}
1694#endif /* CONFIG_COMPAT */
1695
1696static void lttng_stream_override_ring_buffer_fops(void)
1697{
1698 lttng_stream_ring_buffer_file_operations.owner = THIS_MODULE;
1699 lttng_stream_ring_buffer_file_operations.open =
1700 lib_ring_buffer_file_operations.open;
1701 lttng_stream_ring_buffer_file_operations.release =
1702 lib_ring_buffer_file_operations.release;
1703 lttng_stream_ring_buffer_file_operations.poll =
1704 lib_ring_buffer_file_operations.poll;
1705 lttng_stream_ring_buffer_file_operations.splice_read =
1706 lib_ring_buffer_file_operations.splice_read;
1707 lttng_stream_ring_buffer_file_operations.mmap =
1708 lib_ring_buffer_file_operations.mmap;
1709 lttng_stream_ring_buffer_file_operations.unlocked_ioctl =
1710 lttng_stream_ring_buffer_ioctl;
1711 lttng_stream_ring_buffer_file_operations.llseek =
1712 lib_ring_buffer_file_operations.llseek;
1713#ifdef CONFIG_COMPAT
1714 lttng_stream_ring_buffer_file_operations.compat_ioctl =
1715 lttng_stream_ring_buffer_compat_ioctl;
1716#endif
1717}
1718
80996790 1719int __init lttng_abi_init(void)
baf20995
MD
1720{
1721 int ret = 0;
1722
6d2a620c 1723 wrapper_vmalloc_sync_all();
2754583e 1724 lttng_clock_ref();
140a62b0
JD
1725
1726 ret = lttng_tp_mempool_init();
1727 if (ret) {
1728 goto error;
1729 }
1730
d29348f7 1731 lttng_proc_dentry = proc_create_data("lttng", S_IRUSR | S_IWUSR, NULL,
e6a17f26
MD
1732 &lttng_fops, NULL);
1733
255e52a4 1734 if (!lttng_proc_dentry) {
baf20995
MD
1735 printk(KERN_ERR "Error creating LTTng control file\n");
1736 ret = -ENOMEM;
1737 goto error;
1738 }
ed8d02d6 1739 lttng_stream_override_ring_buffer_fops();
2754583e 1740 return 0;
ed8d02d6 1741
baf20995 1742error:
140a62b0 1743 lttng_tp_mempool_destroy();
2754583e 1744 lttng_clock_unref();
baf20995
MD
1745 return ret;
1746}
1747
e6e65fcd
MD
1748/* No __exit annotation because used by init error path too. */
1749void lttng_abi_exit(void)
baf20995 1750{
140a62b0 1751 lttng_tp_mempool_destroy();
2754583e 1752 lttng_clock_unref();
e6a17f26
MD
1753 if (lttng_proc_dentry)
1754 remove_proc_entry("lttng", NULL);
baf20995 1755}
This page took 0.149595 seconds and 4 git commands to generate.