blob: ae17d026aaa3f496fc0bf9d8522f52d027d8dadb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/pipe.c
3 *
4 * Copyright (C) 1991, 1992, 1999 Linus Torvalds
5 */
6
7#include <linux/mm.h>
8#include <linux/file.h>
9#include <linux/poll.h>
10#include <linux/slab.h>
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/fs.h>
14#include <linux/mount.h>
15#include <linux/pipe_fs_i.h>
16#include <linux/uio.h>
17#include <linux/highmem.h>
Jens Axboe5274f052006-03-30 15:15:30 +020018#include <linux/pagemap.h>
Al Virodb349502007-02-07 01:48:00 -050019#include <linux/audit.h>
Ulrich Drepperba719ba2008-05-06 20:42:38 -070020#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/uaccess.h>
23#include <asm/ioctls.h>
24
25/*
26 * We use a start+len construction, which provides full use of the
27 * allocated memory.
28 * -- Florian Coosmann (FGC)
29 *
30 * Reads with count = 0 should always return 0.
31 * -- Julian Bradfield 1999-06-07.
32 *
33 * FIFOs and Pipes now generate SIGIO for both readers and writers.
34 * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
35 *
36 * pipe_read & write cleanup
37 * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
38 */
39
Miklos Szeredi61e0d472009-04-14 19:48:41 +020040static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass)
41{
42 if (pipe->inode)
43 mutex_lock_nested(&pipe->inode->i_mutex, subclass);
44}
45
46void pipe_lock(struct pipe_inode_info *pipe)
47{
48 /*
49 * pipe_lock() nests non-pipe inode locks (for writing to a file)
50 */
51 pipe_lock_nested(pipe, I_MUTEX_PARENT);
52}
53EXPORT_SYMBOL(pipe_lock);
54
55void pipe_unlock(struct pipe_inode_info *pipe)
56{
57 if (pipe->inode)
58 mutex_unlock(&pipe->inode->i_mutex);
59}
60EXPORT_SYMBOL(pipe_unlock);
61
62void pipe_double_lock(struct pipe_inode_info *pipe1,
63 struct pipe_inode_info *pipe2)
64{
65 BUG_ON(pipe1 == pipe2);
66
67 if (pipe1 < pipe2) {
68 pipe_lock_nested(pipe1, I_MUTEX_PARENT);
69 pipe_lock_nested(pipe2, I_MUTEX_CHILD);
70 } else {
Peter Zijlstra023d43c2009-07-21 10:09:23 +020071 pipe_lock_nested(pipe2, I_MUTEX_PARENT);
72 pipe_lock_nested(pipe1, I_MUTEX_CHILD);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020073 }
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* Drop the inode semaphore and wait for a pipe event, atomically */
Ingo Molnar3a326a22006-04-10 15:18:35 +020077void pipe_wait(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 DEFINE_WAIT(wait);
80
Ingo Molnard79fc0f2005-09-10 00:26:12 -070081 /*
82 * Pipes are system-local resources, so sleeping on them
83 * is considered a noninteractive wait:
84 */
Mike Galbraithaf927232007-10-15 17:00:13 +020085 prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020086 pipe_unlock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 schedule();
Ingo Molnar3a326a22006-04-10 15:18:35 +020088 finish_wait(&pipe->wait, &wait);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020089 pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Arjan van de Ven858119e2006-01-14 13:20:43 -080092static int
Jens Axboef6762b72006-05-01 20:02:05 +020093pipe_iov_copy_from_user(void *to, struct iovec *iov, unsigned long len,
94 int atomic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 unsigned long copy;
97
98 while (len > 0) {
99 while (!iov->iov_len)
100 iov++;
101 copy = min_t(unsigned long, len, iov->iov_len);
102
Jens Axboef6762b72006-05-01 20:02:05 +0200103 if (atomic) {
104 if (__copy_from_user_inatomic(to, iov->iov_base, copy))
105 return -EFAULT;
106 } else {
107 if (copy_from_user(to, iov->iov_base, copy))
108 return -EFAULT;
109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 to += copy;
111 len -= copy;
112 iov->iov_base += copy;
113 iov->iov_len -= copy;
114 }
115 return 0;
116}
117
Arjan van de Ven858119e2006-01-14 13:20:43 -0800118static int
Jens Axboef6762b72006-05-01 20:02:05 +0200119pipe_iov_copy_to_user(struct iovec *iov, const void *from, unsigned long len,
120 int atomic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 unsigned long copy;
123
124 while (len > 0) {
125 while (!iov->iov_len)
126 iov++;
127 copy = min_t(unsigned long, len, iov->iov_len);
128
Jens Axboef6762b72006-05-01 20:02:05 +0200129 if (atomic) {
130 if (__copy_to_user_inatomic(iov->iov_base, from, copy))
131 return -EFAULT;
132 } else {
133 if (copy_to_user(iov->iov_base, from, copy))
134 return -EFAULT;
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 from += copy;
137 len -= copy;
138 iov->iov_base += copy;
139 iov->iov_len -= copy;
140 }
141 return 0;
142}
143
Jens Axboef6762b72006-05-01 20:02:05 +0200144/*
145 * Attempt to pre-fault in the user memory, so we can use atomic copies.
146 * Returns the number of bytes not faulted in.
147 */
148static int iov_fault_in_pages_write(struct iovec *iov, unsigned long len)
149{
150 while (!iov->iov_len)
151 iov++;
152
153 while (len > 0) {
154 unsigned long this_len;
155
156 this_len = min_t(unsigned long, len, iov->iov_len);
157 if (fault_in_pages_writeable(iov->iov_base, this_len))
158 break;
159
160 len -= this_len;
161 iov++;
162 }
163
164 return len;
165}
166
167/*
168 * Pre-fault in the user memory, so we can use atomic copies.
169 */
170static void iov_fault_in_pages_read(struct iovec *iov, unsigned long len)
171{
172 while (!iov->iov_len)
173 iov++;
174
175 while (len > 0) {
176 unsigned long this_len;
177
178 this_len = min_t(unsigned long, len, iov->iov_len);
179 fault_in_pages_readable(iov->iov_base, this_len);
180 len -= this_len;
181 iov++;
182 }
183}
184
Ingo Molnar341b4462006-04-11 13:57:45 +0200185static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
186 struct pipe_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 struct page *page = buf->page;
189
Jens Axboe5274f052006-03-30 15:15:30 +0200190 /*
191 * If nobody else uses this page, and we don't already have a
192 * temporary page, let's keep track of it as a one-deep
Ingo Molnar341b4462006-04-11 13:57:45 +0200193 * allocation cache. (Otherwise just release our reference to it)
Jens Axboe5274f052006-03-30 15:15:30 +0200194 */
Ingo Molnar341b4462006-04-11 13:57:45 +0200195 if (page_count(page) == 1 && !pipe->tmp_page)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200196 pipe->tmp_page = page;
Ingo Molnar341b4462006-04-11 13:57:45 +0200197 else
198 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Jens Axboe08457182007-06-12 20:51:32 +0200201/**
202 * generic_pipe_buf_map - virtually map a pipe buffer
203 * @pipe: the pipe that the buffer belongs to
204 * @buf: the buffer that should be mapped
205 * @atomic: whether to use an atomic map
206 *
207 * Description:
208 * This function returns a kernel virtual address mapping for the
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800209 * pipe_buffer passed in @buf. If @atomic is set, an atomic map is provided
Jens Axboe08457182007-06-12 20:51:32 +0200210 * and the caller has to be careful not to fault before calling
211 * the unmap function.
212 *
213 * Note that this function occupies KM_USER0 if @atomic != 0.
214 */
Jens Axboef84d7512006-05-01 19:59:03 +0200215void *generic_pipe_buf_map(struct pipe_inode_info *pipe,
Jens Axboef6762b72006-05-01 20:02:05 +0200216 struct pipe_buffer *buf, int atomic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Jens Axboef6762b72006-05-01 20:02:05 +0200218 if (atomic) {
219 buf->flags |= PIPE_BUF_FLAG_ATOMIC;
220 return kmap_atomic(buf->page, KM_USER0);
221 }
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return kmap(buf->page);
224}
225
Jens Axboe08457182007-06-12 20:51:32 +0200226/**
227 * generic_pipe_buf_unmap - unmap a previously mapped pipe buffer
228 * @pipe: the pipe that the buffer belongs to
229 * @buf: the buffer that should be unmapped
230 * @map_data: the data that the mapping function returned
231 *
232 * Description:
233 * This function undoes the mapping that ->map() provided.
234 */
Jens Axboef84d7512006-05-01 19:59:03 +0200235void generic_pipe_buf_unmap(struct pipe_inode_info *pipe,
Jens Axboef6762b72006-05-01 20:02:05 +0200236 struct pipe_buffer *buf, void *map_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Jens Axboef6762b72006-05-01 20:02:05 +0200238 if (buf->flags & PIPE_BUF_FLAG_ATOMIC) {
239 buf->flags &= ~PIPE_BUF_FLAG_ATOMIC;
240 kunmap_atomic(map_data, KM_USER0);
241 } else
242 kunmap(buf->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Jens Axboe08457182007-06-12 20:51:32 +0200245/**
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800246 * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
Jens Axboe08457182007-06-12 20:51:32 +0200247 * @pipe: the pipe that the buffer belongs to
248 * @buf: the buffer to attempt to steal
249 *
250 * Description:
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800251 * This function attempts to steal the &struct page attached to
Jens Axboe08457182007-06-12 20:51:32 +0200252 * @buf. If successful, this function returns 0 and returns with
253 * the page locked. The caller may then reuse the page for whatever
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800254 * he wishes; the typical use is insertion into a different file
Jens Axboe08457182007-06-12 20:51:32 +0200255 * page cache.
256 */
Jens Axboe330ab712006-05-02 15:29:57 +0200257int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
258 struct pipe_buffer *buf)
Jens Axboe5abc97a2006-03-30 15:16:46 +0200259{
Jens Axboe46e678c2006-04-30 16:36:32 +0200260 struct page *page = buf->page;
261
Jens Axboe08457182007-06-12 20:51:32 +0200262 /*
263 * A reference of one is golden, that means that the owner of this
264 * page is the only one holding a reference to it. lock the page
265 * and return OK.
266 */
Jens Axboe46e678c2006-04-30 16:36:32 +0200267 if (page_count(page) == 1) {
Jens Axboe46e678c2006-04-30 16:36:32 +0200268 lock_page(page);
269 return 0;
270 }
271
272 return 1;
Jens Axboe5abc97a2006-03-30 15:16:46 +0200273}
274
Jens Axboe08457182007-06-12 20:51:32 +0200275/**
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800276 * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
Jens Axboe08457182007-06-12 20:51:32 +0200277 * @pipe: the pipe that the buffer belongs to
278 * @buf: the buffer to get a reference to
279 *
280 * Description:
281 * This function grabs an extra reference to @buf. It's used in
282 * in the tee() system call, when we duplicate the buffers in one
283 * pipe into another.
284 */
285void generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
Jens Axboe70524492006-04-11 15:51:17 +0200286{
287 page_cache_get(buf->page);
288}
289
Jens Axboe08457182007-06-12 20:51:32 +0200290/**
291 * generic_pipe_buf_confirm - verify contents of the pipe buffer
Randy Dunlap79685b82007-07-27 08:08:51 +0200292 * @info: the pipe that the buffer belongs to
Jens Axboe08457182007-06-12 20:51:32 +0200293 * @buf: the buffer to confirm
294 *
295 * Description:
296 * This function does nothing, because the generic pipe code uses
297 * pages that are always good when inserted into the pipe.
298 */
Jens Axboecac36bb02007-06-14 13:10:48 +0200299int generic_pipe_buf_confirm(struct pipe_inode_info *info,
300 struct pipe_buffer *buf)
Jens Axboef84d7512006-05-01 19:59:03 +0200301{
302 return 0;
303}
304
Miklos Szeredi68181732009-05-07 15:37:36 +0200305/**
306 * generic_pipe_buf_release - put a reference to a &struct pipe_buffer
307 * @pipe: the pipe that the buffer belongs to
308 * @buf: the buffer to put a reference to
309 *
310 * Description:
311 * This function releases a reference to @buf.
312 */
313void generic_pipe_buf_release(struct pipe_inode_info *pipe,
314 struct pipe_buffer *buf)
315{
316 page_cache_release(buf->page);
317}
318
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800319static const struct pipe_buf_operations anon_pipe_buf_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 .can_merge = 1,
Jens Axboef84d7512006-05-01 19:59:03 +0200321 .map = generic_pipe_buf_map,
322 .unmap = generic_pipe_buf_unmap,
Jens Axboecac36bb02007-06-14 13:10:48 +0200323 .confirm = generic_pipe_buf_confirm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 .release = anon_pipe_buf_release,
Jens Axboe330ab712006-05-02 15:29:57 +0200325 .steal = generic_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200326 .get = generic_pipe_buf_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327};
328
329static ssize_t
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700330pipe_read(struct kiocb *iocb, const struct iovec *_iov,
331 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700333 struct file *filp = iocb->ki_filp;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800334 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200335 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 int do_wakeup;
337 ssize_t ret;
338 struct iovec *iov = (struct iovec *)_iov;
339 size_t total_len;
340
341 total_len = iov_length(iov, nr_segs);
342 /* Null read succeeds. */
343 if (unlikely(total_len == 0))
344 return 0;
345
346 do_wakeup = 0;
347 ret = 0;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200348 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200349 pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 for (;;) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200351 int bufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (bufs) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200353 int curbuf = pipe->curbuf;
354 struct pipe_buffer *buf = pipe->bufs + curbuf;
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800355 const struct pipe_buf_operations *ops = buf->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 void *addr;
357 size_t chars = buf->len;
Jens Axboef6762b72006-05-01 20:02:05 +0200358 int error, atomic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (chars > total_len)
361 chars = total_len;
362
Jens Axboecac36bb02007-06-14 13:10:48 +0200363 error = ops->confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200364 if (error) {
Jens Axboe5274f052006-03-30 15:15:30 +0200365 if (!ret)
Jens Axboef84d7512006-05-01 19:59:03 +0200366 error = ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200367 break;
368 }
Jens Axboef84d7512006-05-01 19:59:03 +0200369
Jens Axboef6762b72006-05-01 20:02:05 +0200370 atomic = !iov_fault_in_pages_write(iov, chars);
371redo:
372 addr = ops->map(pipe, buf, atomic);
373 error = pipe_iov_copy_to_user(iov, addr + buf->offset, chars, atomic);
374 ops->unmap(pipe, buf, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (unlikely(error)) {
Jens Axboef6762b72006-05-01 20:02:05 +0200376 /*
377 * Just retry with the slow path if we failed.
378 */
379 if (atomic) {
380 atomic = 0;
381 goto redo;
382 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200383 if (!ret)
Jens Axboef6762b72006-05-01 20:02:05 +0200384 ret = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 break;
386 }
387 ret += chars;
388 buf->offset += chars;
389 buf->len -= chars;
390 if (!buf->len) {
391 buf->ops = NULL;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200392 ops->release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 curbuf = (curbuf + 1) & (PIPE_BUFFERS-1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200394 pipe->curbuf = curbuf;
395 pipe->nrbufs = --bufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 do_wakeup = 1;
397 }
398 total_len -= chars;
399 if (!total_len)
400 break; /* common path: read succeeded */
401 }
402 if (bufs) /* More to do? */
403 continue;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200404 if (!pipe->writers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 break;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200406 if (!pipe->waiting_writers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* syscall merging: Usually we must not sleep
408 * if O_NONBLOCK is set, or if we got some data.
409 * But if a writer sleeps in kernel space, then
410 * we can wait for that data without violating POSIX.
411 */
412 if (ret)
413 break;
414 if (filp->f_flags & O_NONBLOCK) {
415 ret = -EAGAIN;
416 break;
417 }
418 }
419 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200420 if (!ret)
421 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 break;
423 }
424 if (do_wakeup) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200425 wake_up_interruptible_sync(&pipe->wait);
426 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200428 pipe_wait(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200430 mutex_unlock(&inode->i_mutex);
Ingo Molnar341b4462006-04-11 13:57:45 +0200431
432 /* Signal writers asynchronously that there is more room. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (do_wakeup) {
Ingo Molnar71e20f12007-10-15 17:00:19 +0200434 wake_up_interruptible_sync(&pipe->wait);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200435 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437 if (ret > 0)
438 file_accessed(filp);
439 return ret;
440}
441
442static ssize_t
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700443pipe_write(struct kiocb *iocb, const struct iovec *_iov,
444 unsigned long nr_segs, loff_t ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700446 struct file *filp = iocb->ki_filp;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800447 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200448 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ssize_t ret;
450 int do_wakeup;
451 struct iovec *iov = (struct iovec *)_iov;
452 size_t total_len;
453 ssize_t chars;
454
455 total_len = iov_length(iov, nr_segs);
456 /* Null write succeeds. */
457 if (unlikely(total_len == 0))
458 return 0;
459
460 do_wakeup = 0;
461 ret = 0;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200462 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200463 pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Ingo Molnar923f4f22006-04-11 13:53:33 +0200465 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 send_sig(SIGPIPE, current, 0);
467 ret = -EPIPE;
468 goto out;
469 }
470
471 /* We try to merge small writes */
472 chars = total_len & (PAGE_SIZE-1); /* size of the last buffer */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200473 if (pipe->nrbufs && chars != 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200474 int lastbuf = (pipe->curbuf + pipe->nrbufs - 1) &
475 (PIPE_BUFFERS-1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200476 struct pipe_buffer *buf = pipe->bufs + lastbuf;
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800477 const struct pipe_buf_operations *ops = buf->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int offset = buf->offset + buf->len;
Ingo Molnar341b4462006-04-11 13:57:45 +0200479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (ops->can_merge && offset + chars <= PAGE_SIZE) {
Jens Axboef6762b72006-05-01 20:02:05 +0200481 int error, atomic = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200482 void *addr;
Jens Axboe5274f052006-03-30 15:15:30 +0200483
Jens Axboecac36bb02007-06-14 13:10:48 +0200484 error = ops->confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200485 if (error)
Jens Axboe5274f052006-03-30 15:15:30 +0200486 goto out;
Jens Axboef84d7512006-05-01 19:59:03 +0200487
Jens Axboef6762b72006-05-01 20:02:05 +0200488 iov_fault_in_pages_read(iov, chars);
489redo1:
490 addr = ops->map(pipe, buf, atomic);
Jens Axboe5274f052006-03-30 15:15:30 +0200491 error = pipe_iov_copy_from_user(offset + addr, iov,
Jens Axboef6762b72006-05-01 20:02:05 +0200492 chars, atomic);
493 ops->unmap(pipe, buf, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 ret = error;
495 do_wakeup = 1;
Jens Axboef6762b72006-05-01 20:02:05 +0200496 if (error) {
497 if (atomic) {
498 atomic = 0;
499 goto redo1;
500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 goto out;
Jens Axboef6762b72006-05-01 20:02:05 +0200502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 buf->len += chars;
504 total_len -= chars;
505 ret = chars;
506 if (!total_len)
507 goto out;
508 }
509 }
510
511 for (;;) {
512 int bufs;
Ingo Molnar341b4462006-04-11 13:57:45 +0200513
Ingo Molnar923f4f22006-04-11 13:53:33 +0200514 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 send_sig(SIGPIPE, current, 0);
Ingo Molnar341b4462006-04-11 13:57:45 +0200516 if (!ret)
517 ret = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
519 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200520 bufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (bufs < PIPE_BUFFERS) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200522 int newbuf = (pipe->curbuf + bufs) & (PIPE_BUFFERS-1);
523 struct pipe_buffer *buf = pipe->bufs + newbuf;
524 struct page *page = pipe->tmp_page;
Jens Axboef6762b72006-05-01 20:02:05 +0200525 char *src;
526 int error, atomic = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 if (!page) {
529 page = alloc_page(GFP_HIGHUSER);
530 if (unlikely(!page)) {
531 ret = ret ? : -ENOMEM;
532 break;
533 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200534 pipe->tmp_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200536 /* Always wake up, even if the copy fails. Otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * we lock up (O_NONBLOCK-)readers that sleep due to
538 * syscall merging.
539 * FIXME! Is this really true?
540 */
541 do_wakeup = 1;
542 chars = PAGE_SIZE;
543 if (chars > total_len)
544 chars = total_len;
545
Jens Axboef6762b72006-05-01 20:02:05 +0200546 iov_fault_in_pages_read(iov, chars);
547redo2:
548 if (atomic)
549 src = kmap_atomic(page, KM_USER0);
550 else
551 src = kmap(page);
552
553 error = pipe_iov_copy_from_user(src, iov, chars,
554 atomic);
555 if (atomic)
556 kunmap_atomic(src, KM_USER0);
557 else
558 kunmap(page);
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (unlikely(error)) {
Jens Axboef6762b72006-05-01 20:02:05 +0200561 if (atomic) {
562 atomic = 0;
563 goto redo2;
564 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200565 if (!ret)
Jens Axboef6762b72006-05-01 20:02:05 +0200566 ret = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 break;
568 }
569 ret += chars;
570
571 /* Insert it into the buffer array */
572 buf->page = page;
573 buf->ops = &anon_pipe_buf_ops;
574 buf->offset = 0;
575 buf->len = chars;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200576 pipe->nrbufs = ++bufs;
577 pipe->tmp_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 total_len -= chars;
580 if (!total_len)
581 break;
582 }
583 if (bufs < PIPE_BUFFERS)
584 continue;
585 if (filp->f_flags & O_NONBLOCK) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200586 if (!ret)
587 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589 }
590 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200591 if (!ret)
592 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 break;
594 }
595 if (do_wakeup) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200596 wake_up_interruptible_sync(&pipe->wait);
597 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 do_wakeup = 0;
599 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200600 pipe->waiting_writers++;
601 pipe_wait(pipe);
602 pipe->waiting_writers--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604out:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200605 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (do_wakeup) {
Ingo Molnar71e20f12007-10-15 17:00:19 +0200607 wake_up_interruptible_sync(&pipe->wait);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200608 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610 if (ret > 0)
Christoph Hellwig870f4812006-01-09 20:52:01 -0800611 file_update_time(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return ret;
613}
614
615static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616bad_pipe_r(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
617{
618 return -EBADF;
619}
620
621static ssize_t
Ingo Molnar341b4462006-04-11 13:57:45 +0200622bad_pipe_w(struct file *filp, const char __user *buf, size_t count,
623 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 return -EBADF;
626}
627
Andi Kleend59d0b12008-02-08 04:21:23 -0800628static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800630 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200631 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int count, buf, nrbufs;
633
634 switch (cmd) {
635 case FIONREAD:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200636 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200637 pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 count = 0;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200639 buf = pipe->curbuf;
640 nrbufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 while (--nrbufs >= 0) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200642 count += pipe->bufs[buf].len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 buf = (buf+1) & (PIPE_BUFFERS-1);
644 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200645 mutex_unlock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return put_user(count, (int __user *)arg);
648 default:
649 return -EINVAL;
650 }
651}
652
653/* No kernel lock held - fine */
654static unsigned int
655pipe_poll(struct file *filp, poll_table *wait)
656{
657 unsigned int mask;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800658 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200659 struct pipe_inode_info *pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 int nrbufs;
661
Ingo Molnar923f4f22006-04-11 13:53:33 +0200662 poll_wait(filp, &pipe->wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* Reading only -- no need for acquiring the semaphore. */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200665 nrbufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 mask = 0;
667 if (filp->f_mode & FMODE_READ) {
668 mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200669 if (!pipe->writers && filp->f_version != pipe->w_counter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 mask |= POLLHUP;
671 }
672
673 if (filp->f_mode & FMODE_WRITE) {
674 mask |= (nrbufs < PIPE_BUFFERS) ? POLLOUT | POLLWRNORM : 0;
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700675 /*
676 * Most Unices do not set POLLERR for FIFOs but on Linux they
677 * behave exactly like pipes for poll().
678 */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200679 if (!pipe->readers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 mask |= POLLERR;
681 }
682
683 return mask;
684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686static int
687pipe_release(struct inode *inode, int decr, int decw)
688{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200689 struct pipe_inode_info *pipe;
690
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200691 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200692 pipe = inode->i_pipe;
693 pipe->readers -= decr;
694 pipe->writers -= decw;
Ingo Molnar341b4462006-04-11 13:57:45 +0200695
Ingo Molnar923f4f22006-04-11 13:53:33 +0200696 if (!pipe->readers && !pipe->writers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 free_pipe_info(inode);
698 } else {
Ingo Molnar71e20f12007-10-15 17:00:19 +0200699 wake_up_interruptible_sync(&pipe->wait);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200700 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
701 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200703 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 return 0;
706}
707
708static int
709pipe_read_fasync(int fd, struct file *filp, int on)
710{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800711 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int retval;
713
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200714 mutex_lock(&inode->i_mutex);
715 retval = fasync_helper(fd, filp, on, &inode->i_pipe->fasync_readers);
716 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700718 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
721
722static int
723pipe_write_fasync(int fd, struct file *filp, int on)
724{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800725 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 int retval;
727
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200728 mutex_lock(&inode->i_mutex);
729 retval = fasync_helper(fd, filp, on, &inode->i_pipe->fasync_writers);
730 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700732 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735
736static int
737pipe_rdwr_fasync(int fd, struct file *filp, int on)
738{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800739 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar341b4462006-04-11 13:57:45 +0200740 struct pipe_inode_info *pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 int retval;
742
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200743 mutex_lock(&inode->i_mutex);
Ingo Molnar341b4462006-04-11 13:57:45 +0200744 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
Oleg Nesterove5bc49b2009-03-12 14:31:28 -0700745 if (retval >= 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200746 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
Oleg Nesterove5bc49b2009-03-12 14:31:28 -0700747 if (retval < 0) /* this can happen only if on == T */
748 fasync_helper(-1, filp, 0, &pipe->fasync_readers);
749 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200750 mutex_unlock(&inode->i_mutex);
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700751 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754
755static int
756pipe_read_release(struct inode *inode, struct file *filp)
757{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return pipe_release(inode, 1, 0);
759}
760
761static int
762pipe_write_release(struct inode *inode, struct file *filp)
763{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return pipe_release(inode, 0, 1);
765}
766
767static int
768pipe_rdwr_release(struct inode *inode, struct file *filp)
769{
770 int decr, decw;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 decr = (filp->f_mode & FMODE_READ) != 0;
773 decw = (filp->f_mode & FMODE_WRITE) != 0;
774 return pipe_release(inode, decr, decw);
775}
776
777static int
778pipe_read_open(struct inode *inode, struct file *filp)
779{
Earl Chewad396022009-10-19 15:55:41 -0700780 int ret = -ENOENT;
781
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200782 mutex_lock(&inode->i_mutex);
Earl Chewad396022009-10-19 15:55:41 -0700783
784 if (inode->i_pipe) {
785 ret = 0;
786 inode->i_pipe->readers++;
787 }
788
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200789 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Earl Chewad396022009-10-19 15:55:41 -0700791 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
794static int
795pipe_write_open(struct inode *inode, struct file *filp)
796{
Earl Chewad396022009-10-19 15:55:41 -0700797 int ret = -ENOENT;
798
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200799 mutex_lock(&inode->i_mutex);
Earl Chewad396022009-10-19 15:55:41 -0700800
801 if (inode->i_pipe) {
802 ret = 0;
803 inode->i_pipe->writers++;
804 }
805
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200806 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Earl Chewad396022009-10-19 15:55:41 -0700808 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811static int
812pipe_rdwr_open(struct inode *inode, struct file *filp)
813{
Earl Chewad396022009-10-19 15:55:41 -0700814 int ret = -ENOENT;
815
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200816 mutex_lock(&inode->i_mutex);
Earl Chewad396022009-10-19 15:55:41 -0700817
818 if (inode->i_pipe) {
819 ret = 0;
820 if (filp->f_mode & FMODE_READ)
821 inode->i_pipe->readers++;
822 if (filp->f_mode & FMODE_WRITE)
823 inode->i_pipe->writers++;
824 }
825
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200826 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Earl Chewad396022009-10-19 15:55:41 -0700828 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831/*
832 * The file_operations structs are not static because they
833 * are also used in linux/fs/fifo.c to do operations on FIFOs.
Denys Vlasenkod2d96482008-07-01 14:16:09 +0200834 *
835 * Pipes reuse fifos' file_operations structs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
Denys Vlasenkod2d96482008-07-01 14:16:09 +0200837const struct file_operations read_pipefifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700839 .read = do_sync_read,
840 .aio_read = pipe_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 .write = bad_pipe_w,
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700842 .poll = pipe_poll,
Andi Kleend59d0b12008-02-08 04:21:23 -0800843 .unlocked_ioctl = pipe_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 .open = pipe_read_open,
845 .release = pipe_read_release,
846 .fasync = pipe_read_fasync,
847};
848
Denys Vlasenkod2d96482008-07-01 14:16:09 +0200849const struct file_operations write_pipefifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 .llseek = no_llseek,
851 .read = bad_pipe_r,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700852 .write = do_sync_write,
853 .aio_write = pipe_write,
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700854 .poll = pipe_poll,
Andi Kleend59d0b12008-02-08 04:21:23 -0800855 .unlocked_ioctl = pipe_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 .open = pipe_write_open,
857 .release = pipe_write_release,
858 .fasync = pipe_write_fasync,
859};
860
Denys Vlasenkod2d96482008-07-01 14:16:09 +0200861const struct file_operations rdwr_pipefifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700863 .read = do_sync_read,
864 .aio_read = pipe_read,
865 .write = do_sync_write,
866 .aio_write = pipe_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 .poll = pipe_poll,
Andi Kleend59d0b12008-02-08 04:21:23 -0800868 .unlocked_ioctl = pipe_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 .open = pipe_rdwr_open,
870 .release = pipe_rdwr_release,
871 .fasync = pipe_rdwr_fasync,
872};
873
Ingo Molnar3a326a22006-04-10 15:18:35 +0200874struct pipe_inode_info * alloc_pipe_info(struct inode *inode)
875{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200876 struct pipe_inode_info *pipe;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200877
Ingo Molnar923f4f22006-04-11 13:53:33 +0200878 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL);
879 if (pipe) {
880 init_waitqueue_head(&pipe->wait);
881 pipe->r_counter = pipe->w_counter = 1;
882 pipe->inode = inode;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200883 }
884
Ingo Molnar923f4f22006-04-11 13:53:33 +0200885 return pipe;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200886}
887
Ingo Molnar923f4f22006-04-11 13:53:33 +0200888void __free_pipe_info(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 for (i = 0; i < PIPE_BUFFERS; i++) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200893 struct pipe_buffer *buf = pipe->bufs + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (buf->ops)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200895 buf->ops->release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200897 if (pipe->tmp_page)
898 __free_page(pipe->tmp_page);
899 kfree(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Jens Axboeb92ce552006-04-11 13:52:07 +0200902void free_pipe_info(struct inode *inode)
903{
904 __free_pipe_info(inode->i_pipe);
905 inode->i_pipe = NULL;
906}
907
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800908static struct vfsmount *pipe_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909static int pipefs_delete_dentry(struct dentry *dentry)
910{
Eric Dumazetd18de5a2006-12-06 20:38:45 -0800911 /*
912 * At creation time, we pretended this dentry was hashed
913 * (by clearing DCACHE_UNHASHED bit in d_flags)
914 * At delete time, we restore the truth : not hashed.
915 * (so that dput() can proceed correctly)
916 */
917 dentry->d_flags |= DCACHE_UNHASHED;
918 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
Ingo Molnar341b4462006-04-11 13:57:45 +0200920
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700921/*
922 * pipefs_dname() is called from d_path().
923 */
924static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
925{
926 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
927 dentry->d_inode->i_ino);
928}
929
Al Viro3ba13d12009-02-20 06:02:22 +0000930static const struct dentry_operations pipefs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 .d_delete = pipefs_delete_dentry,
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700932 .d_dname = pipefs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933};
934
935static struct inode * get_pipe_inode(void)
936{
937 struct inode *inode = new_inode(pipe_mnt->mnt_sb);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200938 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 if (!inode)
941 goto fail_inode;
942
Ingo Molnar923f4f22006-04-11 13:53:33 +0200943 pipe = alloc_pipe_info(inode);
944 if (!pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 goto fail_iput;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200946 inode->i_pipe = pipe;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200947
Ingo Molnar923f4f22006-04-11 13:53:33 +0200948 pipe->readers = pipe->writers = 1;
Denys Vlasenkod2d96482008-07-01 14:16:09 +0200949 inode->i_fop = &rdwr_pipefifo_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /*
952 * Mark the inode dirty from the very beginning,
953 * that way it will never be moved to the dirty
954 * list because "mark_inode_dirty()" will think
955 * that it already _is_ on the dirty list.
956 */
957 inode->i_state = I_DIRTY;
958 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
David Howellsda9592e2008-11-14 10:39:05 +1100959 inode->i_uid = current_fsuid();
960 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return inode;
964
965fail_iput:
966 iput(inode);
Ingo Molnar341b4462006-04-11 13:57:45 +0200967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968fail_inode:
969 return NULL;
970}
971
Ulrich Drepperbe61a862008-07-23 21:29:40 -0700972struct file *create_write_pipe(int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Andi Kleend6cbd282006-09-30 23:29:26 -0700974 int err;
975 struct inode *inode;
976 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 struct dentry *dentry;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700978 struct qstr name = { .name = "" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Andi Kleend6cbd282006-09-30 23:29:26 -0700980 err = -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 inode = get_pipe_inode();
982 if (!inode)
Dave Hansen430e2852008-02-15 14:37:26 -0800983 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Andi Kleend6cbd282006-09-30 23:29:26 -0700985 err = -ENOMEM;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700986 dentry = d_alloc(pipe_mnt->mnt_sb->s_root, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (!dentry)
Andi Kleend6cbd282006-09-30 23:29:26 -0700988 goto err_inode;
Ingo Molnar341b4462006-04-11 13:57:45 +0200989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 dentry->d_op = &pipefs_dentry_operations;
Eric Dumazetd18de5a2006-12-06 20:38:45 -0800991 /*
992 * We dont want to publish this dentry into global dentry hash table.
993 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
994 * This permits a working /proc/$pid/fd/XXX on pipes
995 */
996 dentry->d_flags &= ~DCACHE_UNHASHED;
997 d_instantiate(dentry, inode);
Dave Hansen430e2852008-02-15 14:37:26 -0800998
999 err = -ENFILE;
Denys Vlasenkod2d96482008-07-01 14:16:09 +02001000 f = alloc_file(pipe_mnt, dentry, FMODE_WRITE, &write_pipefifo_fops);
Dave Hansen430e2852008-02-15 14:37:26 -08001001 if (!f)
1002 goto err_dentry;
Andi Kleend6cbd282006-09-30 23:29:26 -07001003 f->f_mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Ulrich Drepperbe61a862008-07-23 21:29:40 -07001005 f->f_flags = O_WRONLY | (flags & O_NONBLOCK);
Andi Kleend6cbd282006-09-30 23:29:26 -07001006 f->f_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Andi Kleend6cbd282006-09-30 23:29:26 -07001008 return f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Dave Hansen430e2852008-02-15 14:37:26 -08001010 err_dentry:
Al Viroed152432008-04-22 19:51:27 -04001011 free_pipe_info(inode);
Dave Hansen430e2852008-02-15 14:37:26 -08001012 dput(dentry);
Al Viroed152432008-04-22 19:51:27 -04001013 return ERR_PTR(err);
1014
Andi Kleend6cbd282006-09-30 23:29:26 -07001015 err_inode:
1016 free_pipe_info(inode);
1017 iput(inode);
Dave Hansen430e2852008-02-15 14:37:26 -08001018 err:
Andi Kleend6cbd282006-09-30 23:29:26 -07001019 return ERR_PTR(err);
1020}
1021
1022void free_write_pipe(struct file *f)
1023{
Al Viro5ccac88e2006-12-18 13:31:18 +00001024 free_pipe_info(f->f_dentry->d_inode);
Jan Blunckc8e7f442008-06-09 16:40:35 -07001025 path_put(&f->f_path);
Andi Kleend6cbd282006-09-30 23:29:26 -07001026 put_filp(f);
1027}
1028
Ulrich Drepperbe61a862008-07-23 21:29:40 -07001029struct file *create_read_pipe(struct file *wrf, int flags)
Andi Kleend6cbd282006-09-30 23:29:26 -07001030{
1031 struct file *f = get_empty_filp();
1032 if (!f)
1033 return ERR_PTR(-ENFILE);
1034
1035 /* Grab pipe from the writer */
Jan Blunckc8e7f442008-06-09 16:40:35 -07001036 f->f_path = wrf->f_path;
1037 path_get(&wrf->f_path);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001038 f->f_mapping = wrf->f_path.dentry->d_inode->i_mapping;
Andi Kleend6cbd282006-09-30 23:29:26 -07001039
1040 f->f_pos = 0;
Ulrich Drepperbe61a862008-07-23 21:29:40 -07001041 f->f_flags = O_RDONLY | (flags & O_NONBLOCK);
Denys Vlasenkod2d96482008-07-01 14:16:09 +02001042 f->f_op = &read_pipefifo_fops;
Andi Kleend6cbd282006-09-30 23:29:26 -07001043 f->f_mode = FMODE_READ;
1044 f->f_version = 0;
1045
1046 return f;
1047}
1048
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001049int do_pipe_flags(int *fd, int flags)
Andi Kleend6cbd282006-09-30 23:29:26 -07001050{
1051 struct file *fw, *fr;
1052 int error;
1053 int fdw, fdr;
1054
Ulrich Drepperbe61a862008-07-23 21:29:40 -07001055 if (flags & ~(O_CLOEXEC | O_NONBLOCK))
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001056 return -EINVAL;
1057
Ulrich Drepperbe61a862008-07-23 21:29:40 -07001058 fw = create_write_pipe(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -07001059 if (IS_ERR(fw))
1060 return PTR_ERR(fw);
Ulrich Drepperbe61a862008-07-23 21:29:40 -07001061 fr = create_read_pipe(fw, flags);
Andi Kleend6cbd282006-09-30 23:29:26 -07001062 error = PTR_ERR(fr);
1063 if (IS_ERR(fr))
1064 goto err_write_pipe;
1065
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001066 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -07001067 if (error < 0)
1068 goto err_read_pipe;
1069 fdr = error;
1070
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001071 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -07001072 if (error < 0)
1073 goto err_fdr;
1074 fdw = error;
1075
Al Viro157cf642008-12-14 04:57:47 -05001076 audit_fd_pair(fdr, fdw);
Andi Kleend6cbd282006-09-30 23:29:26 -07001077 fd_install(fdr, fr);
1078 fd_install(fdw, fw);
1079 fd[0] = fdr;
1080 fd[1] = fdw;
Ingo Molnar341b4462006-04-11 13:57:45 +02001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return 0;
1083
Andi Kleend6cbd282006-09-30 23:29:26 -07001084 err_fdr:
1085 put_unused_fd(fdr);
1086 err_read_pipe:
Jan Blunckc8e7f442008-06-09 16:40:35 -07001087 path_put(&fr->f_path);
Andi Kleend6cbd282006-09-30 23:29:26 -07001088 put_filp(fr);
1089 err_write_pipe:
1090 free_write_pipe(fw);
1091 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
1094/*
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001095 * sys_pipe() is the normal C calling standard for creating
1096 * a pipe. It's not the way Unix traditionally does this, though.
1097 */
Heiko Carstensd4e82042009-01-14 14:14:34 +01001098SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001099{
1100 int fd[2];
1101 int error;
1102
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001103 error = do_pipe_flags(fd, flags);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001104 if (!error) {
Ulrich Drepperba719ba2008-05-06 20:42:38 -07001105 if (copy_to_user(fildes, fd, sizeof(fd))) {
1106 sys_close(fd[0]);
1107 sys_close(fd[1]);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001108 error = -EFAULT;
Ulrich Drepperba719ba2008-05-06 20:42:38 -07001109 }
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001110 }
1111 return error;
1112}
1113
Heiko Carstens2b664212009-01-14 14:14:35 +01001114SYSCALL_DEFINE1(pipe, int __user *, fildes)
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001115{
1116 return sys_pipe2(fildes, 0);
1117}
1118
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001119/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 * pipefs should _never_ be mounted by userland - too much of security hassle,
1121 * no real gain from having the whole whorehouse mounted. So we don't need
1122 * any operations on the root directory. However, we need a non-trivial
1123 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1124 */
David Howells454e2392006-06-23 02:02:57 -07001125static int pipefs_get_sb(struct file_system_type *fs_type,
1126 int flags, const char *dev_name, void *data,
1127 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
David Howells454e2392006-06-23 02:02:57 -07001129 return get_sb_pseudo(fs_type, "pipe:", NULL, PIPEFS_MAGIC, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132static struct file_system_type pipe_fs_type = {
1133 .name = "pipefs",
1134 .get_sb = pipefs_get_sb,
1135 .kill_sb = kill_anon_super,
1136};
1137
1138static int __init init_pipe_fs(void)
1139{
1140 int err = register_filesystem(&pipe_fs_type);
Ingo Molnar341b4462006-04-11 13:57:45 +02001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (!err) {
1143 pipe_mnt = kern_mount(&pipe_fs_type);
1144 if (IS_ERR(pipe_mnt)) {
1145 err = PTR_ERR(pipe_mnt);
1146 unregister_filesystem(&pipe_fs_type);
1147 }
1148 }
1149 return err;
1150}
1151
1152static void __exit exit_pipe_fs(void)
1153{
1154 unregister_filesystem(&pipe_fs_type);
1155 mntput(pipe_mnt);
1156}
1157
1158fs_initcall(init_pipe_fs);
1159module_exit(exit_pipe_fs);