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