Fix: Always build vmscan probe
[lttng-modules.git] / lib / ringbuffer / ring_buffer_vfs.c
CommitLineData
f3bc08c5
MD
1/*
2 * ring_buffer_vfs.c
3 *
f3bc08c5
MD
4 * Ring Buffer VFS file operations.
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
f3bc08c5
MD
21 */
22
23#include <linux/module.h>
24#include <linux/fs.h>
25#include <linux/compat.h>
26
c075712b
MD
27#include <wrapper/ringbuffer/backend.h>
28#include <wrapper/ringbuffer/frontend.h>
29#include <wrapper/ringbuffer/vfs.h>
30#include <wrapper/poll.h>
31#include <lttng-tracer.h>
f3bc08c5
MD
32
33static int put_ulong(unsigned long val, unsigned long arg)
34{
35 return put_user(val, (unsigned long __user *)arg);
36}
37
38#ifdef CONFIG_COMPAT
39static int compat_put_ulong(compat_ulong_t val, unsigned long arg)
40{
41 return put_user(val, (compat_ulong_t __user *)compat_ptr(arg));
42}
43#endif
44
b3b8072b
MD
45/*
46 * This is not used by anonymous file descriptors. This code is left
47 * there if we ever want to implement an inode with open() operation.
48 */
d83004aa
JD
49int lib_ring_buffer_open(struct inode *inode, struct file *file,
50 struct lib_ring_buffer *buf)
f3bc08c5 51{
f3bc08c5
MD
52 int ret;
53
733ce41d
MD
54 if (!buf)
55 return -EINVAL;
56
f3bc08c5
MD
57 ret = lib_ring_buffer_open_read(buf);
58 if (ret)
59 return ret;
60
f3bc08c5
MD
61 ret = nonseekable_open(inode, file);
62 if (ret)
63 goto release_read;
64 return 0;
65
66release_read:
67 lib_ring_buffer_release_read(buf);
68 return ret;
69}
d83004aa 70EXPORT_SYMBOL_GPL(lib_ring_buffer_open);
f3bc08c5
MD
71
72/**
d83004aa 73 * vfs_lib_ring_buffer_open - ring buffer open file operation
f3bc08c5
MD
74 * @inode: opened inode
75 * @file: opened file
76 *
d83004aa
JD
77 * Open implementation. Makes sure only one open instance of a buffer is
78 * done at a given moment.
f3bc08c5 79 */
d83004aa
JD
80static
81int vfs_lib_ring_buffer_open(struct inode *inode, struct file *file)
f3bc08c5 82{
d83004aa
JD
83 struct lib_ring_buffer *buf = inode->i_private;
84
85 file->private_data = buf;
86 return lib_ring_buffer_open(inode, file, buf);
87}
f3bc08c5 88
d83004aa
JD
89int lib_ring_buffer_release(struct inode *inode, struct file *file,
90 struct lib_ring_buffer *buf)
91{
f3bc08c5
MD
92 lib_ring_buffer_release_read(buf);
93
94 return 0;
95}
d83004aa 96EXPORT_SYMBOL_GPL(lib_ring_buffer_release);
f3bc08c5
MD
97
98/**
d83004aa
JD
99 * vfs_lib_ring_buffer_release - ring buffer release file operation
100 * @inode: opened inode
101 * @file: opened file
f3bc08c5 102 *
d83004aa 103 * Release implementation.
f3bc08c5 104 */
d83004aa
JD
105static
106int vfs_lib_ring_buffer_release(struct inode *inode, struct file *file)
107{
108 struct lib_ring_buffer *buf = file->private_data;
109
110 return lib_ring_buffer_release(inode, file, buf);
111}
112
113unsigned int lib_ring_buffer_poll(struct file *filp, poll_table *wait,
114 struct lib_ring_buffer *buf)
f3bc08c5
MD
115{
116 unsigned int mask = 0;
f3bc08c5 117 struct channel *chan = buf->backend.chan;
5a8fd222 118 const struct lib_ring_buffer_config *config = &chan->backend.config;
254ec7bc 119 int finalized, disabled;
f3bc08c5
MD
120
121 if (filp->f_mode & FMODE_READ) {
a33e44a6 122 poll_wait_set_exclusive(wait);
f3bc08c5
MD
123 poll_wait(filp, &buf->read_wait, wait);
124
125 finalized = lib_ring_buffer_is_finalized(config, buf);
254ec7bc
MD
126 disabled = lib_ring_buffer_channel_is_disabled(chan);
127
f3bc08c5
MD
128 /*
129 * lib_ring_buffer_is_finalized() contains a smp_rmb() ordering
130 * finalized load before offsets loads.
131 */
132 WARN_ON(atomic_long_read(&buf->active_readers) != 1);
133retry:
254ec7bc
MD
134 if (disabled)
135 return POLLERR;
136
f3bc08c5
MD
137 if (subbuf_trunc(lib_ring_buffer_get_offset(config, buf), chan)
138 - subbuf_trunc(lib_ring_buffer_get_consumed(config, buf), chan)
139 == 0) {
140 if (finalized)
141 return POLLHUP;
142 else {
143 /*
144 * The memory barriers
145 * __wait_event()/wake_up_interruptible() take
146 * care of "raw_spin_is_locked" memory ordering.
147 */
148 if (raw_spin_is_locked(&buf->raw_tick_nohz_spinlock))
149 goto retry;
150 else
151 return 0;
152 }
153 } else {
154 if (subbuf_trunc(lib_ring_buffer_get_offset(config, buf),
155 chan)
156 - subbuf_trunc(lib_ring_buffer_get_consumed(config, buf),
157 chan)
158 >= chan->backend.buf_size)
159 return POLLPRI | POLLRDBAND;
160 else
161 return POLLIN | POLLRDNORM;
162 }
163 }
164 return mask;
165}
d83004aa 166EXPORT_SYMBOL_GPL(lib_ring_buffer_poll);
f3bc08c5
MD
167
168/**
d83004aa 169 * vfs_lib_ring_buffer_poll - ring buffer poll file operation
f3bc08c5 170 * @filp: the file
d83004aa 171 * @wait: poll table
f3bc08c5 172 *
d83004aa 173 * Poll implementation.
f3bc08c5 174 */
d83004aa
JD
175static
176unsigned int vfs_lib_ring_buffer_poll(struct file *filp, poll_table *wait)
f3bc08c5
MD
177{
178 struct lib_ring_buffer *buf = filp->private_data;
d83004aa
JD
179
180 return lib_ring_buffer_poll(filp, wait, buf);
181}
182
183long lib_ring_buffer_ioctl(struct file *filp, unsigned int cmd,
184 unsigned long arg, struct lib_ring_buffer *buf)
185{
f3bc08c5 186 struct channel *chan = buf->backend.chan;
5a8fd222 187 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5 188
254ec7bc
MD
189 if (lib_ring_buffer_channel_is_disabled(chan))
190 return -EIO;
191
f3bc08c5
MD
192 switch (cmd) {
193 case RING_BUFFER_SNAPSHOT:
7cf44d03
MD
194 /*
195 * First, ensure we perform a "final" flush onto the
196 * stream. This will ensure we create a packet of
197 * padding if we encounter an empty packet. This ensures
198 * the time-stamps right before the snapshot is used as
199 * end of packet timestamp.
200 */
201 if (!buf->quiescent)
202 lib_ring_buffer_switch_remote_empty(buf);
f3bc08c5
MD
203 return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
204 &buf->prod_snapshot);
205 case RING_BUFFER_SNAPSHOT_GET_CONSUMED:
206 return put_ulong(buf->cons_snapshot, arg);
207 case RING_BUFFER_SNAPSHOT_GET_PRODUCED:
208 return put_ulong(buf->prod_snapshot, arg);
209 case RING_BUFFER_GET_SUBBUF:
210 {
211 unsigned long uconsume;
212 long ret;
213
214 ret = get_user(uconsume, (unsigned long __user *) arg);
215 if (ret)
216 return ret; /* will return -EFAULT */
217 ret = lib_ring_buffer_get_subbuf(buf, uconsume);
218 if (!ret) {
219 /* Set file position to zero at each successful "get" */
220 filp->f_pos = 0;
221 }
222 return ret;
223 }
224 case RING_BUFFER_PUT_SUBBUF:
225 lib_ring_buffer_put_subbuf(buf);
226 return 0;
227
228 case RING_BUFFER_GET_NEXT_SUBBUF:
229 {
230 long ret;
231
232 ret = lib_ring_buffer_get_next_subbuf(buf);
233 if (!ret) {
234 /* Set file position to zero at each successful "get" */
235 filp->f_pos = 0;
236 }
237 return ret;
238 }
239 case RING_BUFFER_PUT_NEXT_SUBBUF:
240 lib_ring_buffer_put_next_subbuf(buf);
241 return 0;
242 case RING_BUFFER_GET_SUBBUF_SIZE:
243 return put_ulong(lib_ring_buffer_get_read_data_size(config, buf),
244 arg);
245 case RING_BUFFER_GET_PADDED_SUBBUF_SIZE:
246 {
247 unsigned long size;
248
249 size = lib_ring_buffer_get_read_data_size(config, buf);
250 size = PAGE_ALIGN(size);
251 return put_ulong(size, arg);
252 }
253 case RING_BUFFER_GET_MAX_SUBBUF_SIZE:
254 return put_ulong(chan->backend.subbuf_size, arg);
255 case RING_BUFFER_GET_MMAP_LEN:
256 {
257 unsigned long mmap_buf_len;
258
259 if (config->output != RING_BUFFER_MMAP)
260 return -EINVAL;
261 mmap_buf_len = chan->backend.buf_size;
262 if (chan->backend.extra_reader_sb)
263 mmap_buf_len += chan->backend.subbuf_size;
264 if (mmap_buf_len > INT_MAX)
265 return -EFBIG;
266 return put_ulong(mmap_buf_len, arg);
267 }
268 case RING_BUFFER_GET_MMAP_READ_OFFSET:
269 {
270 unsigned long sb_bindex;
271
272 if (config->output != RING_BUFFER_MMAP)
273 return -EINVAL;
274 sb_bindex = subbuffer_id_get_index(config,
275 buf->backend.buf_rsb.id);
276 return put_ulong(buf->backend.array[sb_bindex]->mmap_offset,
277 arg);
278 }
5c055266 279 case RING_BUFFER_FLUSH:
5e391252 280 lib_ring_buffer_switch_remote(buf);
5c055266 281 return 0;
f3bc08c5
MD
282 default:
283 return -ENOIOCTLCMD;
284 }
285}
d83004aa
JD
286EXPORT_SYMBOL_GPL(lib_ring_buffer_ioctl);
287
288/**
289 * vfs_lib_ring_buffer_ioctl - control ring buffer reader synchronization
290 *
291 * @filp: the file
292 * @cmd: the command
293 * @arg: command arg
294 *
295 * This ioctl implements commands necessary for producer/consumer
296 * and flight recorder reader interaction :
297 * RING_BUFFER_GET_NEXT_SUBBUF
298 * Get the next sub-buffer that can be read. It never blocks.
299 * RING_BUFFER_PUT_NEXT_SUBBUF
300 * Release the currently read sub-buffer.
301 * RING_BUFFER_GET_SUBBUF_SIZE
302 * returns the size of the current sub-buffer.
303 * RING_BUFFER_GET_MAX_SUBBUF_SIZE
304 * returns the maximum size for sub-buffers.
305 * RING_BUFFER_GET_NUM_SUBBUF
306 * returns the number of reader-visible sub-buffers in the per cpu
307 * channel (for mmap).
308 * RING_BUFFER_GET_MMAP_READ_OFFSET
309 * returns the offset of the subbuffer belonging to the reader.
310 * Should only be used for mmap clients.
311 */
312static
313long vfs_lib_ring_buffer_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
314{
315 struct lib_ring_buffer *buf = filp->private_data;
316
317 return lib_ring_buffer_ioctl(filp, cmd, arg, buf);
318}
f3bc08c5
MD
319
320#ifdef CONFIG_COMPAT
321long lib_ring_buffer_compat_ioctl(struct file *filp, unsigned int cmd,
d83004aa 322 unsigned long arg, struct lib_ring_buffer *buf)
f3bc08c5 323{
f3bc08c5 324 struct channel *chan = buf->backend.chan;
5a8fd222 325 const struct lib_ring_buffer_config *config = &chan->backend.config;
254ec7bc
MD
326
327 if (lib_ring_buffer_channel_is_disabled(chan))
328 return -EIO;
f3bc08c5
MD
329
330 switch (cmd) {
216f7feb 331 case RING_BUFFER_COMPAT_SNAPSHOT:
7cf44d03
MD
332 /*
333 * First, ensure we perform a "final" flush onto the
334 * stream. This will ensure we create a packet of
335 * padding if we encounter an empty packet. This ensures
336 * the time-stamps right before the snapshot is used as
337 * end of packet timestamp.
338 */
339 if (!buf->quiescent)
340 lib_ring_buffer_switch_remote_empty(buf);
f3bc08c5
MD
341 return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
342 &buf->prod_snapshot);
216f7feb 343 case RING_BUFFER_COMPAT_SNAPSHOT_GET_CONSUMED:
f3bc08c5 344 return compat_put_ulong(buf->cons_snapshot, arg);
216f7feb 345 case RING_BUFFER_COMPAT_SNAPSHOT_GET_PRODUCED:
f3bc08c5 346 return compat_put_ulong(buf->prod_snapshot, arg);
216f7feb 347 case RING_BUFFER_COMPAT_GET_SUBBUF:
f3bc08c5
MD
348 {
349 __u32 uconsume;
350 unsigned long consume;
351 long ret;
352
353 ret = get_user(uconsume, (__u32 __user *) arg);
354 if (ret)
355 return ret; /* will return -EFAULT */
356 consume = buf->cons_snapshot;
357 consume &= ~0xFFFFFFFFL;
358 consume |= uconsume;
359 ret = lib_ring_buffer_get_subbuf(buf, consume);
360 if (!ret) {
361 /* Set file position to zero at each successful "get" */
362 filp->f_pos = 0;
363 }
364 return ret;
365 }
216f7feb 366 case RING_BUFFER_COMPAT_PUT_SUBBUF:
f3bc08c5
MD
367 lib_ring_buffer_put_subbuf(buf);
368 return 0;
369
216f7feb 370 case RING_BUFFER_COMPAT_GET_NEXT_SUBBUF:
f3bc08c5
MD
371 {
372 long ret;
373
374 ret = lib_ring_buffer_get_next_subbuf(buf);
375 if (!ret) {
376 /* Set file position to zero at each successful "get" */
377 filp->f_pos = 0;
378 }
379 return ret;
380 }
216f7feb 381 case RING_BUFFER_COMPAT_PUT_NEXT_SUBBUF:
f3bc08c5
MD
382 lib_ring_buffer_put_next_subbuf(buf);
383 return 0;
216f7feb 384 case RING_BUFFER_COMPAT_GET_SUBBUF_SIZE:
f3bc08c5
MD
385 {
386 unsigned long data_size;
387
388 data_size = lib_ring_buffer_get_read_data_size(config, buf);
389 if (data_size > UINT_MAX)
390 return -EFBIG;
4343ec8e 391 return compat_put_ulong(data_size, arg);
f3bc08c5 392 }
216f7feb 393 case RING_BUFFER_COMPAT_GET_PADDED_SUBBUF_SIZE:
f3bc08c5
MD
394 {
395 unsigned long size;
396
397 size = lib_ring_buffer_get_read_data_size(config, buf);
398 size = PAGE_ALIGN(size);
399 if (size > UINT_MAX)
400 return -EFBIG;
4343ec8e 401 return compat_put_ulong(size, arg);
f3bc08c5 402 }
216f7feb 403 case RING_BUFFER_COMPAT_GET_MAX_SUBBUF_SIZE:
f3bc08c5
MD
404 if (chan->backend.subbuf_size > UINT_MAX)
405 return -EFBIG;
4343ec8e 406 return compat_put_ulong(chan->backend.subbuf_size, arg);
216f7feb 407 case RING_BUFFER_COMPAT_GET_MMAP_LEN:
f3bc08c5
MD
408 {
409 unsigned long mmap_buf_len;
410
411 if (config->output != RING_BUFFER_MMAP)
412 return -EINVAL;
413 mmap_buf_len = chan->backend.buf_size;
414 if (chan->backend.extra_reader_sb)
415 mmap_buf_len += chan->backend.subbuf_size;
416 if (mmap_buf_len > UINT_MAX)
417 return -EFBIG;
4343ec8e 418 return compat_put_ulong(mmap_buf_len, arg);
f3bc08c5 419 }
216f7feb 420 case RING_BUFFER_COMPAT_GET_MMAP_READ_OFFSET:
f3bc08c5
MD
421 {
422 unsigned long sb_bindex, read_offset;
423
424 if (config->output != RING_BUFFER_MMAP)
425 return -EINVAL;
426 sb_bindex = subbuffer_id_get_index(config,
427 buf->backend.buf_rsb.id);
428 read_offset = buf->backend.array[sb_bindex]->mmap_offset;
429 if (read_offset > UINT_MAX)
430 return -EINVAL;
4343ec8e 431 return compat_put_ulong(read_offset, arg);
f3bc08c5 432 }
216f7feb 433 case RING_BUFFER_COMPAT_FLUSH:
5e391252 434 lib_ring_buffer_switch_remote(buf);
5c055266 435 return 0;
f3bc08c5
MD
436 default:
437 return -ENOIOCTLCMD;
438 }
439}
d83004aa
JD
440EXPORT_SYMBOL_GPL(lib_ring_buffer_compat_ioctl);
441
442static
443long vfs_lib_ring_buffer_compat_ioctl(struct file *filp, unsigned int cmd,
444 unsigned long arg)
445{
446 struct lib_ring_buffer *buf = filp->private_data;
447
448 return lib_ring_buffer_compat_ioctl(filp, cmd, arg, buf);
449}
f3bc08c5
MD
450#endif
451
452const struct file_operations lib_ring_buffer_file_operations = {
a33c9927 453 .owner = THIS_MODULE,
d83004aa
JD
454 .open = vfs_lib_ring_buffer_open,
455 .release = vfs_lib_ring_buffer_release,
456 .poll = vfs_lib_ring_buffer_poll,
457 .splice_read = vfs_lib_ring_buffer_splice_read,
458 .mmap = vfs_lib_ring_buffer_mmap,
459 .unlocked_ioctl = vfs_lib_ring_buffer_ioctl,
460 .llseek = vfs_lib_ring_buffer_no_llseek,
f3bc08c5 461#ifdef CONFIG_COMPAT
d83004aa 462 .compat_ioctl = vfs_lib_ring_buffer_compat_ioctl,
f3bc08c5
MD
463#endif
464};
465EXPORT_SYMBOL_GPL(lib_ring_buffer_file_operations);
466
467MODULE_LICENSE("GPL and additional rights");
468MODULE_AUTHOR("Mathieu Desnoyers");
469MODULE_DESCRIPTION("Ring Buffer Library VFS");
13ab8b0a
MD
470MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
471 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
472 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
473 LTTNG_MODULES_EXTRAVERSION);
This page took 0.051713 seconds and 4 git commands to generate.