syscall instrumentation: use system headers
[lttng-modules.git] / lib / ringbuffer / ring_buffer_splice.c
CommitLineData
f3bc08c5
MD
1/*
2 * ring_buffer_splice.c
3 *
4 * Copyright (C) 2002-2005 - Tom Zanussi <zanussi@us.ibm.com>, IBM Corp
5 * Copyright (C) 1999-2005 - Karim Yaghmour <karim@opersys.com>
886d51a3 6 * Copyright (C) 2008-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
f3bc08c5 7 *
886d51a3
MD
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.
f3bc08c5 12 *
886d51a3
MD
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 * Re-using code from kernel/relay.c, which is why it is licensed under
23 * the GPLv2.
f3bc08c5
MD
24 */
25
26#include <linux/module.h>
27#include <linux/fs.h>
989f58e8 28#include <linux/version.h>
f3bc08c5 29
90225db5 30#include "../../wrapper/splice.h"
f3bc08c5
MD
31#include "../../wrapper/ringbuffer/backend.h"
32#include "../../wrapper/ringbuffer/frontend.h"
33#include "../../wrapper/ringbuffer/vfs.h"
34
35#if 0
36#define printk_dbg(fmt, args...) printk(fmt, args)
37#else
38#define printk_dbg(fmt, args...)
39#endif
40
d83004aa
JD
41loff_t vfs_lib_ring_buffer_no_llseek(struct file *file, loff_t offset,
42 int origin)
f3bc08c5
MD
43{
44 return -ESPIPE;
45}
d83004aa 46EXPORT_SYMBOL_GPL(vfs_lib_ring_buffer_no_llseek);
f3bc08c5
MD
47
48/*
49 * Release pages from the buffer so splice pipe_to_file can move them.
50 * Called after the pipe has been populated with buffer pages.
51 */
52static void lib_ring_buffer_pipe_buf_release(struct pipe_inode_info *pipe,
53 struct pipe_buffer *pbuf)
54{
55 __free_page(pbuf->page);
56}
57
58static const struct pipe_buf_operations ring_buffer_pipe_buf_ops = {
59 .can_merge = 0,
989f58e8 60#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0))
f3bc08c5
MD
61 .map = generic_pipe_buf_map,
62 .unmap = generic_pipe_buf_unmap,
989f58e8 63#endif
f3bc08c5
MD
64 .confirm = generic_pipe_buf_confirm,
65 .release = lib_ring_buffer_pipe_buf_release,
66 .steal = generic_pipe_buf_steal,
67 .get = generic_pipe_buf_get,
68};
69
70/*
71 * Page release operation after splice pipe_to_file ends.
72 */
73static void lib_ring_buffer_page_release(struct splice_pipe_desc *spd,
74 unsigned int i)
75{
76 __free_page(spd->pages[i]);
77}
78
79/*
80 * subbuf_splice_actor - splice up to one subbuf's worth of data
81 */
82static int subbuf_splice_actor(struct file *in,
83 loff_t *ppos,
84 struct pipe_inode_info *pipe,
85 size_t len,
d83004aa
JD
86 unsigned int flags,
87 struct lib_ring_buffer *buf)
f3bc08c5 88{
f3bc08c5 89 struct channel *chan = buf->backend.chan;
5a8fd222 90 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
91 unsigned int poff, subbuf_pages, nr_pages;
92 struct page *pages[PIPE_DEF_BUFFERS];
93 struct partial_page partial[PIPE_DEF_BUFFERS];
94 struct splice_pipe_desc spd = {
95 .pages = pages,
96 .nr_pages = 0,
97 .partial = partial,
98 .flags = flags,
99 .ops = &ring_buffer_pipe_buf_ops,
100 .spd_release = lib_ring_buffer_page_release,
101 };
88dfd899 102 unsigned long consumed_old, roffset;
f3bc08c5
MD
103 unsigned long bytes_avail;
104
105 /*
106 * Check that a GET_SUBBUF ioctl has been done before.
107 */
108 WARN_ON(atomic_long_read(&buf->active_readers) != 1);
109 consumed_old = lib_ring_buffer_get_consumed(config, buf);
110 consumed_old += *ppos;
f3bc08c5
MD
111
112 /*
113 * Adjust read len, if longer than what is available.
114 * Max read size is 1 subbuffer due to get_subbuf/put_subbuf for
115 * protection.
116 */
117 bytes_avail = chan->backend.subbuf_size;
118 WARN_ON(bytes_avail > chan->backend.buf_size);
119 len = min_t(size_t, len, bytes_avail);
120 subbuf_pages = bytes_avail >> PAGE_SHIFT;
121 nr_pages = min_t(unsigned int, subbuf_pages, PIPE_DEF_BUFFERS);
122 roffset = consumed_old & PAGE_MASK;
123 poff = consumed_old & ~PAGE_MASK;
124 printk_dbg(KERN_DEBUG "SPLICE actor len %zu pos %zd write_pos %ld\n",
125 len, (ssize_t)*ppos, lib_ring_buffer_get_offset(config, buf));
126
127 for (; spd.nr_pages < nr_pages; spd.nr_pages++) {
128 unsigned int this_len;
0112cb7b
MD
129 unsigned long *pfnp, new_pfn;
130 struct page *new_page;
f3bc08c5
MD
131 void **virt;
132
133 if (!len)
134 break;
135 printk_dbg(KERN_DEBUG "SPLICE actor loop len %zu roffset %ld\n",
136 len, roffset);
137
138 /*
139 * We have to replace the page we are moving into the splice
140 * pipe.
141 */
142 new_page = alloc_pages_node(cpu_to_node(max(buf->backend.cpu,
143 0)),
144 GFP_KERNEL | __GFP_ZERO, 0);
145 if (!new_page)
146 break;
0112cb7b 147 new_pfn = page_to_pfn(new_page);
f3bc08c5 148 this_len = PAGE_SIZE - poff;
0112cb7b
MD
149 pfnp = lib_ring_buffer_read_get_pfn(&buf->backend, roffset, &virt);
150 spd.pages[spd.nr_pages] = pfn_to_page(*pfnp);
151 *pfnp = new_pfn;
f3bc08c5
MD
152 *virt = page_address(new_page);
153 spd.partial[spd.nr_pages].offset = poff;
154 spd.partial[spd.nr_pages].len = this_len;
155
156 poff = 0;
157 roffset += PAGE_SIZE;
158 len -= this_len;
159 }
160
161 if (!spd.nr_pages)
162 return 0;
163
90225db5 164 return wrapper_splice_to_pipe(pipe, &spd);
f3bc08c5
MD
165}
166
167ssize_t lib_ring_buffer_splice_read(struct file *in, loff_t *ppos,
168 struct pipe_inode_info *pipe, size_t len,
d83004aa
JD
169 unsigned int flags,
170 struct lib_ring_buffer *buf)
f3bc08c5 171{
f3bc08c5 172 struct channel *chan = buf->backend.chan;
5a8fd222 173 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
174 ssize_t spliced;
175 int ret;
176
177 if (config->output != RING_BUFFER_SPLICE)
178 return -EINVAL;
179
180 /*
181 * We require ppos and length to be page-aligned for performance reasons
182 * (no page copy). Size is known using the ioctl
183 * RING_BUFFER_GET_PADDED_SUBBUF_SIZE, which is page-size padded.
184 * We fail when the ppos or len passed is not page-sized, because splice
185 * is not allowed to copy more than the length passed as parameter (so
186 * the ABI does not let us silently copy more than requested to include
187 * padding).
188 */
189 if (*ppos != PAGE_ALIGN(*ppos) || len != PAGE_ALIGN(len))
190 return -EINVAL;
191
192 ret = 0;
193 spliced = 0;
194
195 printk_dbg(KERN_DEBUG "SPLICE read len %zu pos %zd\n", len,
196 (ssize_t)*ppos);
197 while (len && !spliced) {
d83004aa 198 ret = subbuf_splice_actor(in, ppos, pipe, len, flags, buf);
f3bc08c5
MD
199 printk_dbg(KERN_DEBUG "SPLICE read loop ret %d\n", ret);
200 if (ret < 0)
201 break;
202 else if (!ret) {
203 if (flags & SPLICE_F_NONBLOCK)
204 ret = -EAGAIN;
205 break;
206 }
207
208 *ppos += ret;
209 if (ret > len)
210 len = 0;
211 else
212 len -= ret;
213 spliced += ret;
214 }
215
216 if (spliced)
217 return spliced;
218
219 return ret;
220}
221EXPORT_SYMBOL_GPL(lib_ring_buffer_splice_read);
d83004aa
JD
222
223ssize_t vfs_lib_ring_buffer_splice_read(struct file *in, loff_t *ppos,
224 struct pipe_inode_info *pipe, size_t len,
225 unsigned int flags)
226{
227 struct lib_ring_buffer *buf = in->private_data;
228
229 return lib_ring_buffer_splice_read(in, ppos, pipe, len, flags, buf);
230}
231EXPORT_SYMBOL_GPL(vfs_lib_ring_buffer_splice_read);
This page took 0.038251 seconds and 4 git commands to generate.