4 * Copyright (C) 2002-2005 - Tom Zanussi <zanussi@us.ibm.com>, IBM Corp
5 * Copyright (C) 1999-2005 - Karim Yaghmour <karim@opersys.com>
6 * Copyright (C) 2008-2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Re-using content from kernel/relay.c.
10 * This file is released under the GPL v2.
13 #include <linux/module.h>
16 #include "../../wrapper/splice.h"
17 #include "../../wrapper/ringbuffer/backend.h"
18 #include "../../wrapper/ringbuffer/frontend.h"
19 #include "../../wrapper/ringbuffer/vfs.h"
22 #define printk_dbg(fmt, args...) printk(fmt, args)
24 #define printk_dbg(fmt, args...)
27 loff_t
lib_ring_buffer_no_llseek(struct file
*file
, loff_t offset
, int origin
)
33 * Release pages from the buffer so splice pipe_to_file can move them.
34 * Called after the pipe has been populated with buffer pages.
36 static void lib_ring_buffer_pipe_buf_release(struct pipe_inode_info
*pipe
,
37 struct pipe_buffer
*pbuf
)
39 __free_page(pbuf
->page
);
42 static const struct pipe_buf_operations ring_buffer_pipe_buf_ops
= {
44 .map
= generic_pipe_buf_map
,
45 .unmap
= generic_pipe_buf_unmap
,
46 .confirm
= generic_pipe_buf_confirm
,
47 .release
= lib_ring_buffer_pipe_buf_release
,
48 .steal
= generic_pipe_buf_steal
,
49 .get
= generic_pipe_buf_get
,
53 * Page release operation after splice pipe_to_file ends.
55 static void lib_ring_buffer_page_release(struct splice_pipe_desc
*spd
,
58 __free_page(spd
->pages
[i
]);
62 * subbuf_splice_actor - splice up to one subbuf's worth of data
64 static int subbuf_splice_actor(struct file
*in
,
66 struct pipe_inode_info
*pipe
,
70 struct lib_ring_buffer
*buf
= in
->private_data
;
71 struct channel
*chan
= buf
->backend
.chan
;
72 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
73 unsigned int poff
, subbuf_pages
, nr_pages
;
74 struct page
*pages
[PIPE_DEF_BUFFERS
];
75 struct partial_page partial
[PIPE_DEF_BUFFERS
];
76 struct splice_pipe_desc spd
= {
81 .ops
= &ring_buffer_pipe_buf_ops
,
82 .spd_release
= lib_ring_buffer_page_release
,
84 unsigned long consumed_old
, roffset
;
85 unsigned long bytes_avail
;
88 * Check that a GET_SUBBUF ioctl has been done before.
90 WARN_ON(atomic_long_read(&buf
->active_readers
) != 1);
91 consumed_old
= lib_ring_buffer_get_consumed(config
, buf
);
92 consumed_old
+= *ppos
;
95 * Adjust read len, if longer than what is available.
96 * Max read size is 1 subbuffer due to get_subbuf/put_subbuf for
99 bytes_avail
= chan
->backend
.subbuf_size
;
100 WARN_ON(bytes_avail
> chan
->backend
.buf_size
);
101 len
= min_t(size_t, len
, bytes_avail
);
102 subbuf_pages
= bytes_avail
>> PAGE_SHIFT
;
103 nr_pages
= min_t(unsigned int, subbuf_pages
, PIPE_DEF_BUFFERS
);
104 roffset
= consumed_old
& PAGE_MASK
;
105 poff
= consumed_old
& ~PAGE_MASK
;
106 printk_dbg(KERN_DEBUG
"SPLICE actor len %zu pos %zd write_pos %ld\n",
107 len
, (ssize_t
)*ppos
, lib_ring_buffer_get_offset(config
, buf
));
109 for (; spd
.nr_pages
< nr_pages
; spd
.nr_pages
++) {
110 unsigned int this_len
;
111 struct page
**page
, *new_page
;
116 printk_dbg(KERN_DEBUG
"SPLICE actor loop len %zu roffset %ld\n",
120 * We have to replace the page we are moving into the splice
123 new_page
= alloc_pages_node(cpu_to_node(max(buf
->backend
.cpu
,
125 GFP_KERNEL
| __GFP_ZERO
, 0);
129 this_len
= PAGE_SIZE
- poff
;
130 page
= lib_ring_buffer_read_get_page(&buf
->backend
, roffset
, &virt
);
131 spd
.pages
[spd
.nr_pages
] = *page
;
133 *virt
= page_address(new_page
);
134 spd
.partial
[spd
.nr_pages
].offset
= poff
;
135 spd
.partial
[spd
.nr_pages
].len
= this_len
;
138 roffset
+= PAGE_SIZE
;
145 return wrapper_splice_to_pipe(pipe
, &spd
);
148 ssize_t
lib_ring_buffer_splice_read(struct file
*in
, loff_t
*ppos
,
149 struct pipe_inode_info
*pipe
, size_t len
,
152 struct lib_ring_buffer
*buf
= in
->private_data
;
153 struct channel
*chan
= buf
->backend
.chan
;
154 const struct lib_ring_buffer_config
*config
= &chan
->backend
.config
;
158 if (config
->output
!= RING_BUFFER_SPLICE
)
162 * We require ppos and length to be page-aligned for performance reasons
163 * (no page copy). Size is known using the ioctl
164 * RING_BUFFER_GET_PADDED_SUBBUF_SIZE, which is page-size padded.
165 * We fail when the ppos or len passed is not page-sized, because splice
166 * is not allowed to copy more than the length passed as parameter (so
167 * the ABI does not let us silently copy more than requested to include
170 if (*ppos
!= PAGE_ALIGN(*ppos
) || len
!= PAGE_ALIGN(len
))
176 printk_dbg(KERN_DEBUG
"SPLICE read len %zu pos %zd\n", len
,
178 while (len
&& !spliced
) {
179 ret
= subbuf_splice_actor(in
, ppos
, pipe
, len
, flags
);
180 printk_dbg(KERN_DEBUG
"SPLICE read loop ret %d\n", ret
);
184 if (flags
& SPLICE_F_NONBLOCK
)
202 EXPORT_SYMBOL_GPL(lib_ring_buffer_splice_read
);