blob: 6b3d91a691bf146edeeb7934a366e6ab4c0ff100 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/uaccess.h>
22#include <asm/ioctls.h>
23
24/*
25 * We use a start+len construction, which provides full use of the
26 * allocated memory.
27 * -- Florian Coosmann (FGC)
28 *
29 * Reads with count = 0 should always return 0.
30 * -- Julian Bradfield 1999-06-07.
31 *
32 * FIFOs and Pipes now generate SIGIO for both readers and writers.
33 * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
34 *
35 * pipe_read & write cleanup
36 * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
37 */
38
39/* Drop the inode semaphore and wait for a pipe event, atomically */
Ingo Molnar3a326a22006-04-10 15:18:35 +020040void pipe_wait(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 DEFINE_WAIT(wait);
43
Ingo Molnard79fc0f2005-09-10 00:26:12 -070044 /*
45 * Pipes are system-local resources, so sleeping on them
46 * is considered a noninteractive wait:
47 */
Ingo Molnar341b4462006-04-11 13:57:45 +020048 prepare_to_wait(&pipe->wait, &wait,
49 TASK_INTERRUPTIBLE | TASK_NONINTERACTIVE);
Ingo Molnar3a326a22006-04-10 15:18:35 +020050 if (pipe->inode)
51 mutex_unlock(&pipe->inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 schedule();
Ingo Molnar3a326a22006-04-10 15:18:35 +020053 finish_wait(&pipe->wait, &wait);
54 if (pipe->inode)
55 mutex_lock(&pipe->inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Arjan van de Ven858119e2006-01-14 13:20:43 -080058static int
Jens Axboef6762b72006-05-01 20:02:05 +020059pipe_iov_copy_from_user(void *to, struct iovec *iov, unsigned long len,
60 int atomic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 unsigned long copy;
63
64 while (len > 0) {
65 while (!iov->iov_len)
66 iov++;
67 copy = min_t(unsigned long, len, iov->iov_len);
68
Jens Axboef6762b72006-05-01 20:02:05 +020069 if (atomic) {
70 if (__copy_from_user_inatomic(to, iov->iov_base, copy))
71 return -EFAULT;
72 } else {
73 if (copy_from_user(to, iov->iov_base, copy))
74 return -EFAULT;
75 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 to += copy;
77 len -= copy;
78 iov->iov_base += copy;
79 iov->iov_len -= copy;
80 }
81 return 0;
82}
83
Arjan van de Ven858119e2006-01-14 13:20:43 -080084static int
Jens Axboef6762b72006-05-01 20:02:05 +020085pipe_iov_copy_to_user(struct iovec *iov, const void *from, unsigned long len,
86 int atomic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 unsigned long copy;
89
90 while (len > 0) {
91 while (!iov->iov_len)
92 iov++;
93 copy = min_t(unsigned long, len, iov->iov_len);
94
Jens Axboef6762b72006-05-01 20:02:05 +020095 if (atomic) {
96 if (__copy_to_user_inatomic(iov->iov_base, from, copy))
97 return -EFAULT;
98 } else {
99 if (copy_to_user(iov->iov_base, from, copy))
100 return -EFAULT;
101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 from += copy;
103 len -= copy;
104 iov->iov_base += copy;
105 iov->iov_len -= copy;
106 }
107 return 0;
108}
109
Jens Axboef6762b72006-05-01 20:02:05 +0200110/*
111 * Attempt to pre-fault in the user memory, so we can use atomic copies.
112 * Returns the number of bytes not faulted in.
113 */
114static int iov_fault_in_pages_write(struct iovec *iov, unsigned long len)
115{
116 while (!iov->iov_len)
117 iov++;
118
119 while (len > 0) {
120 unsigned long this_len;
121
122 this_len = min_t(unsigned long, len, iov->iov_len);
123 if (fault_in_pages_writeable(iov->iov_base, this_len))
124 break;
125
126 len -= this_len;
127 iov++;
128 }
129
130 return len;
131}
132
133/*
134 * Pre-fault in the user memory, so we can use atomic copies.
135 */
136static void iov_fault_in_pages_read(struct iovec *iov, unsigned long len)
137{
138 while (!iov->iov_len)
139 iov++;
140
141 while (len > 0) {
142 unsigned long this_len;
143
144 this_len = min_t(unsigned long, len, iov->iov_len);
145 fault_in_pages_readable(iov->iov_base, this_len);
146 len -= this_len;
147 iov++;
148 }
149}
150
Ingo Molnar341b4462006-04-11 13:57:45 +0200151static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
152 struct pipe_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct page *page = buf->page;
155
Jens Axboe5274f052006-03-30 15:15:30 +0200156 /*
157 * If nobody else uses this page, and we don't already have a
158 * temporary page, let's keep track of it as a one-deep
Ingo Molnar341b4462006-04-11 13:57:45 +0200159 * allocation cache. (Otherwise just release our reference to it)
Jens Axboe5274f052006-03-30 15:15:30 +0200160 */
Ingo Molnar341b4462006-04-11 13:57:45 +0200161 if (page_count(page) == 1 && !pipe->tmp_page)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200162 pipe->tmp_page = page;
Ingo Molnar341b4462006-04-11 13:57:45 +0200163 else
164 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Jens Axboe08457182007-06-12 20:51:32 +0200167/**
168 * generic_pipe_buf_map - virtually map a pipe buffer
169 * @pipe: the pipe that the buffer belongs to
170 * @buf: the buffer that should be mapped
171 * @atomic: whether to use an atomic map
172 *
173 * Description:
174 * This function returns a kernel virtual address mapping for the
175 * passed in @pipe_buffer. If @atomic is set, an atomic map is provided
176 * and the caller has to be careful not to fault before calling
177 * the unmap function.
178 *
179 * Note that this function occupies KM_USER0 if @atomic != 0.
180 */
Jens Axboef84d7512006-05-01 19:59:03 +0200181void *generic_pipe_buf_map(struct pipe_inode_info *pipe,
Jens Axboef6762b72006-05-01 20:02:05 +0200182 struct pipe_buffer *buf, int atomic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Jens Axboef6762b72006-05-01 20:02:05 +0200184 if (atomic) {
185 buf->flags |= PIPE_BUF_FLAG_ATOMIC;
186 return kmap_atomic(buf->page, KM_USER0);
187 }
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return kmap(buf->page);
190}
191
Jens Axboe08457182007-06-12 20:51:32 +0200192/**
193 * generic_pipe_buf_unmap - unmap a previously mapped pipe buffer
194 * @pipe: the pipe that the buffer belongs to
195 * @buf: the buffer that should be unmapped
196 * @map_data: the data that the mapping function returned
197 *
198 * Description:
199 * This function undoes the mapping that ->map() provided.
200 */
Jens Axboef84d7512006-05-01 19:59:03 +0200201void generic_pipe_buf_unmap(struct pipe_inode_info *pipe,
Jens Axboef6762b72006-05-01 20:02:05 +0200202 struct pipe_buffer *buf, void *map_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Jens Axboef6762b72006-05-01 20:02:05 +0200204 if (buf->flags & PIPE_BUF_FLAG_ATOMIC) {
205 buf->flags &= ~PIPE_BUF_FLAG_ATOMIC;
206 kunmap_atomic(map_data, KM_USER0);
207 } else
208 kunmap(buf->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Jens Axboe08457182007-06-12 20:51:32 +0200211/**
212 * generic_pipe_buf_steal - attempt to take ownership of a @pipe_buffer
213 * @pipe: the pipe that the buffer belongs to
214 * @buf: the buffer to attempt to steal
215 *
216 * Description:
217 * This function attempts to steal the @struct page attached to
218 * @buf. If successful, this function returns 0 and returns with
219 * the page locked. The caller may then reuse the page for whatever
220 * he wishes, the typical use is insertion into a different file
221 * page cache.
222 */
Jens Axboe330ab712006-05-02 15:29:57 +0200223int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
224 struct pipe_buffer *buf)
Jens Axboe5abc97a2006-03-30 15:16:46 +0200225{
Jens Axboe46e678c2006-04-30 16:36:32 +0200226 struct page *page = buf->page;
227
Jens Axboe08457182007-06-12 20:51:32 +0200228 /*
229 * A reference of one is golden, that means that the owner of this
230 * page is the only one holding a reference to it. lock the page
231 * and return OK.
232 */
Jens Axboe46e678c2006-04-30 16:36:32 +0200233 if (page_count(page) == 1) {
Jens Axboe46e678c2006-04-30 16:36:32 +0200234 lock_page(page);
235 return 0;
236 }
237
238 return 1;
Jens Axboe5abc97a2006-03-30 15:16:46 +0200239}
240
Jens Axboe08457182007-06-12 20:51:32 +0200241/**
242 * generic_pipe_buf_get - get a reference to a @struct pipe_buffer
243 * @pipe: the pipe that the buffer belongs to
244 * @buf: the buffer to get a reference to
245 *
246 * Description:
247 * This function grabs an extra reference to @buf. It's used in
248 * in the tee() system call, when we duplicate the buffers in one
249 * pipe into another.
250 */
251void generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
Jens Axboe70524492006-04-11 15:51:17 +0200252{
253 page_cache_get(buf->page);
254}
255
Jens Axboe08457182007-06-12 20:51:32 +0200256/**
257 * generic_pipe_buf_confirm - verify contents of the pipe buffer
Randy Dunlap79685b82007-07-27 08:08:51 +0200258 * @info: the pipe that the buffer belongs to
Jens Axboe08457182007-06-12 20:51:32 +0200259 * @buf: the buffer to confirm
260 *
261 * Description:
262 * This function does nothing, because the generic pipe code uses
263 * pages that are always good when inserted into the pipe.
264 */
Jens Axboecac36bb02007-06-14 13:10:48 +0200265int generic_pipe_buf_confirm(struct pipe_inode_info *info,
266 struct pipe_buffer *buf)
Jens Axboef84d7512006-05-01 19:59:03 +0200267{
268 return 0;
269}
270
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800271static const struct pipe_buf_operations anon_pipe_buf_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 .can_merge = 1,
Jens Axboef84d7512006-05-01 19:59:03 +0200273 .map = generic_pipe_buf_map,
274 .unmap = generic_pipe_buf_unmap,
Jens Axboecac36bb02007-06-14 13:10:48 +0200275 .confirm = generic_pipe_buf_confirm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .release = anon_pipe_buf_release,
Jens Axboe330ab712006-05-02 15:29:57 +0200277 .steal = generic_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200278 .get = generic_pipe_buf_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279};
280
281static ssize_t
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700282pipe_read(struct kiocb *iocb, const struct iovec *_iov,
283 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700285 struct file *filp = iocb->ki_filp;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800286 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200287 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int do_wakeup;
289 ssize_t ret;
290 struct iovec *iov = (struct iovec *)_iov;
291 size_t total_len;
292
293 total_len = iov_length(iov, nr_segs);
294 /* Null read succeeds. */
295 if (unlikely(total_len == 0))
296 return 0;
297
298 do_wakeup = 0;
299 ret = 0;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200300 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200301 pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 for (;;) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200303 int bufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (bufs) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200305 int curbuf = pipe->curbuf;
306 struct pipe_buffer *buf = pipe->bufs + curbuf;
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800307 const struct pipe_buf_operations *ops = buf->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 void *addr;
309 size_t chars = buf->len;
Jens Axboef6762b72006-05-01 20:02:05 +0200310 int error, atomic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 if (chars > total_len)
313 chars = total_len;
314
Jens Axboecac36bb02007-06-14 13:10:48 +0200315 error = ops->confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200316 if (error) {
Jens Axboe5274f052006-03-30 15:15:30 +0200317 if (!ret)
Jens Axboef84d7512006-05-01 19:59:03 +0200318 error = ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200319 break;
320 }
Jens Axboef84d7512006-05-01 19:59:03 +0200321
Jens Axboef6762b72006-05-01 20:02:05 +0200322 atomic = !iov_fault_in_pages_write(iov, chars);
323redo:
324 addr = ops->map(pipe, buf, atomic);
325 error = pipe_iov_copy_to_user(iov, addr + buf->offset, chars, atomic);
326 ops->unmap(pipe, buf, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (unlikely(error)) {
Jens Axboef6762b72006-05-01 20:02:05 +0200328 /*
329 * Just retry with the slow path if we failed.
330 */
331 if (atomic) {
332 atomic = 0;
333 goto redo;
334 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200335 if (!ret)
Jens Axboef6762b72006-05-01 20:02:05 +0200336 ret = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 break;
338 }
339 ret += chars;
340 buf->offset += chars;
341 buf->len -= chars;
342 if (!buf->len) {
343 buf->ops = NULL;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200344 ops->release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 curbuf = (curbuf + 1) & (PIPE_BUFFERS-1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200346 pipe->curbuf = curbuf;
347 pipe->nrbufs = --bufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 do_wakeup = 1;
349 }
350 total_len -= chars;
351 if (!total_len)
352 break; /* common path: read succeeded */
353 }
354 if (bufs) /* More to do? */
355 continue;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200356 if (!pipe->writers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 break;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200358 if (!pipe->waiting_writers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /* syscall merging: Usually we must not sleep
360 * if O_NONBLOCK is set, or if we got some data.
361 * But if a writer sleeps in kernel space, then
362 * we can wait for that data without violating POSIX.
363 */
364 if (ret)
365 break;
366 if (filp->f_flags & O_NONBLOCK) {
367 ret = -EAGAIN;
368 break;
369 }
370 }
371 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200372 if (!ret)
373 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 break;
375 }
376 if (do_wakeup) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200377 wake_up_interruptible_sync(&pipe->wait);
378 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200380 pipe_wait(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200382 mutex_unlock(&inode->i_mutex);
Ingo Molnar341b4462006-04-11 13:57:45 +0200383
384 /* Signal writers asynchronously that there is more room. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (do_wakeup) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200386 wake_up_interruptible(&pipe->wait);
387 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 if (ret > 0)
390 file_accessed(filp);
391 return ret;
392}
393
394static ssize_t
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700395pipe_write(struct kiocb *iocb, const struct iovec *_iov,
396 unsigned long nr_segs, loff_t ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700398 struct file *filp = iocb->ki_filp;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800399 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200400 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 ssize_t ret;
402 int do_wakeup;
403 struct iovec *iov = (struct iovec *)_iov;
404 size_t total_len;
405 ssize_t chars;
406
407 total_len = iov_length(iov, nr_segs);
408 /* Null write succeeds. */
409 if (unlikely(total_len == 0))
410 return 0;
411
412 do_wakeup = 0;
413 ret = 0;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200414 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200415 pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Ingo Molnar923f4f22006-04-11 13:53:33 +0200417 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 send_sig(SIGPIPE, current, 0);
419 ret = -EPIPE;
420 goto out;
421 }
422
423 /* We try to merge small writes */
424 chars = total_len & (PAGE_SIZE-1); /* size of the last buffer */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200425 if (pipe->nrbufs && chars != 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200426 int lastbuf = (pipe->curbuf + pipe->nrbufs - 1) &
427 (PIPE_BUFFERS-1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200428 struct pipe_buffer *buf = pipe->bufs + lastbuf;
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800429 const struct pipe_buf_operations *ops = buf->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int offset = buf->offset + buf->len;
Ingo Molnar341b4462006-04-11 13:57:45 +0200431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (ops->can_merge && offset + chars <= PAGE_SIZE) {
Jens Axboef6762b72006-05-01 20:02:05 +0200433 int error, atomic = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200434 void *addr;
Jens Axboe5274f052006-03-30 15:15:30 +0200435
Jens Axboecac36bb02007-06-14 13:10:48 +0200436 error = ops->confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200437 if (error)
Jens Axboe5274f052006-03-30 15:15:30 +0200438 goto out;
Jens Axboef84d7512006-05-01 19:59:03 +0200439
Jens Axboef6762b72006-05-01 20:02:05 +0200440 iov_fault_in_pages_read(iov, chars);
441redo1:
442 addr = ops->map(pipe, buf, atomic);
Jens Axboe5274f052006-03-30 15:15:30 +0200443 error = pipe_iov_copy_from_user(offset + addr, iov,
Jens Axboef6762b72006-05-01 20:02:05 +0200444 chars, atomic);
445 ops->unmap(pipe, buf, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 ret = error;
447 do_wakeup = 1;
Jens Axboef6762b72006-05-01 20:02:05 +0200448 if (error) {
449 if (atomic) {
450 atomic = 0;
451 goto redo1;
452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 goto out;
Jens Axboef6762b72006-05-01 20:02:05 +0200454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 buf->len += chars;
456 total_len -= chars;
457 ret = chars;
458 if (!total_len)
459 goto out;
460 }
461 }
462
463 for (;;) {
464 int bufs;
Ingo Molnar341b4462006-04-11 13:57:45 +0200465
Ingo Molnar923f4f22006-04-11 13:53:33 +0200466 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 send_sig(SIGPIPE, current, 0);
Ingo Molnar341b4462006-04-11 13:57:45 +0200468 if (!ret)
469 ret = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 break;
471 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200472 bufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (bufs < PIPE_BUFFERS) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200474 int newbuf = (pipe->curbuf + bufs) & (PIPE_BUFFERS-1);
475 struct pipe_buffer *buf = pipe->bufs + newbuf;
476 struct page *page = pipe->tmp_page;
Jens Axboef6762b72006-05-01 20:02:05 +0200477 char *src;
478 int error, atomic = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 if (!page) {
481 page = alloc_page(GFP_HIGHUSER);
482 if (unlikely(!page)) {
483 ret = ret ? : -ENOMEM;
484 break;
485 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200486 pipe->tmp_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200488 /* Always wake up, even if the copy fails. Otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * we lock up (O_NONBLOCK-)readers that sleep due to
490 * syscall merging.
491 * FIXME! Is this really true?
492 */
493 do_wakeup = 1;
494 chars = PAGE_SIZE;
495 if (chars > total_len)
496 chars = total_len;
497
Jens Axboef6762b72006-05-01 20:02:05 +0200498 iov_fault_in_pages_read(iov, chars);
499redo2:
500 if (atomic)
501 src = kmap_atomic(page, KM_USER0);
502 else
503 src = kmap(page);
504
505 error = pipe_iov_copy_from_user(src, iov, chars,
506 atomic);
507 if (atomic)
508 kunmap_atomic(src, KM_USER0);
509 else
510 kunmap(page);
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (unlikely(error)) {
Jens Axboef6762b72006-05-01 20:02:05 +0200513 if (atomic) {
514 atomic = 0;
515 goto redo2;
516 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200517 if (!ret)
Jens Axboef6762b72006-05-01 20:02:05 +0200518 ret = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 break;
520 }
521 ret += chars;
522
523 /* Insert it into the buffer array */
524 buf->page = page;
525 buf->ops = &anon_pipe_buf_ops;
526 buf->offset = 0;
527 buf->len = chars;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200528 pipe->nrbufs = ++bufs;
529 pipe->tmp_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 total_len -= chars;
532 if (!total_len)
533 break;
534 }
535 if (bufs < PIPE_BUFFERS)
536 continue;
537 if (filp->f_flags & O_NONBLOCK) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200538 if (!ret)
539 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 break;
541 }
542 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200543 if (!ret)
544 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
546 }
547 if (do_wakeup) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200548 wake_up_interruptible_sync(&pipe->wait);
549 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 do_wakeup = 0;
551 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200552 pipe->waiting_writers++;
553 pipe_wait(pipe);
554 pipe->waiting_writers--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556out:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200557 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (do_wakeup) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200559 wake_up_interruptible(&pipe->wait);
560 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562 if (ret > 0)
Christoph Hellwig870f4812006-01-09 20:52:01 -0800563 file_update_time(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return ret;
565}
566
567static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568bad_pipe_r(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
569{
570 return -EBADF;
571}
572
573static ssize_t
Ingo Molnar341b4462006-04-11 13:57:45 +0200574bad_pipe_w(struct file *filp, const char __user *buf, size_t count,
575 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 return -EBADF;
578}
579
580static int
581pipe_ioctl(struct inode *pino, struct file *filp,
582 unsigned int cmd, unsigned long arg)
583{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800584 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200585 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 int count, buf, nrbufs;
587
588 switch (cmd) {
589 case FIONREAD:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200590 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200591 pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 count = 0;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200593 buf = pipe->curbuf;
594 nrbufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 while (--nrbufs >= 0) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200596 count += pipe->bufs[buf].len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 buf = (buf+1) & (PIPE_BUFFERS-1);
598 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200599 mutex_unlock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return put_user(count, (int __user *)arg);
602 default:
603 return -EINVAL;
604 }
605}
606
607/* No kernel lock held - fine */
608static unsigned int
609pipe_poll(struct file *filp, poll_table *wait)
610{
611 unsigned int mask;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800612 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200613 struct pipe_inode_info *pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 int nrbufs;
615
Ingo Molnar923f4f22006-04-11 13:53:33 +0200616 poll_wait(filp, &pipe->wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 /* Reading only -- no need for acquiring the semaphore. */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200619 nrbufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 mask = 0;
621 if (filp->f_mode & FMODE_READ) {
622 mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200623 if (!pipe->writers && filp->f_version != pipe->w_counter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 mask |= POLLHUP;
625 }
626
627 if (filp->f_mode & FMODE_WRITE) {
628 mask |= (nrbufs < PIPE_BUFFERS) ? POLLOUT | POLLWRNORM : 0;
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700629 /*
630 * Most Unices do not set POLLERR for FIFOs but on Linux they
631 * behave exactly like pipes for poll().
632 */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200633 if (!pipe->readers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 mask |= POLLERR;
635 }
636
637 return mask;
638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640static int
641pipe_release(struct inode *inode, int decr, int decw)
642{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200643 struct pipe_inode_info *pipe;
644
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200645 mutex_lock(&inode->i_mutex);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200646 pipe = inode->i_pipe;
647 pipe->readers -= decr;
648 pipe->writers -= decw;
Ingo Molnar341b4462006-04-11 13:57:45 +0200649
Ingo Molnar923f4f22006-04-11 13:53:33 +0200650 if (!pipe->readers && !pipe->writers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 free_pipe_info(inode);
652 } else {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200653 wake_up_interruptible(&pipe->wait);
654 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
655 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200657 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 return 0;
660}
661
662static int
663pipe_read_fasync(int fd, struct file *filp, int on)
664{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800665 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int retval;
667
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200668 mutex_lock(&inode->i_mutex);
669 retval = fasync_helper(fd, filp, on, &inode->i_pipe->fasync_readers);
670 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (retval < 0)
673 return retval;
674
675 return 0;
676}
677
678
679static int
680pipe_write_fasync(int fd, struct file *filp, int on)
681{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800682 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int retval;
684
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200685 mutex_lock(&inode->i_mutex);
686 retval = fasync_helper(fd, filp, on, &inode->i_pipe->fasync_writers);
687 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (retval < 0)
690 return retval;
691
692 return 0;
693}
694
695
696static int
697pipe_rdwr_fasync(int fd, struct file *filp, int on)
698{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800699 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar341b4462006-04-11 13:57:45 +0200700 struct pipe_inode_info *pipe = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int retval;
702
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200703 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Ingo Molnar341b4462006-04-11 13:57:45 +0200705 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 if (retval >= 0)
Ingo Molnar341b4462006-04-11 13:57:45 +0200708 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200710 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 if (retval < 0)
713 return retval;
714
715 return 0;
716}
717
718
719static int
720pipe_read_release(struct inode *inode, struct file *filp)
721{
722 pipe_read_fasync(-1, filp, 0);
723 return pipe_release(inode, 1, 0);
724}
725
726static int
727pipe_write_release(struct inode *inode, struct file *filp)
728{
729 pipe_write_fasync(-1, filp, 0);
730 return pipe_release(inode, 0, 1);
731}
732
733static int
734pipe_rdwr_release(struct inode *inode, struct file *filp)
735{
736 int decr, decw;
737
738 pipe_rdwr_fasync(-1, filp, 0);
739 decr = (filp->f_mode & FMODE_READ) != 0;
740 decw = (filp->f_mode & FMODE_WRITE) != 0;
741 return pipe_release(inode, decr, decw);
742}
743
744static int
745pipe_read_open(struct inode *inode, struct file *filp)
746{
747 /* We could have perhaps used atomic_t, but this and friends
748 below are the only places. So it doesn't seem worthwhile. */
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200749 mutex_lock(&inode->i_mutex);
750 inode->i_pipe->readers++;
751 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 return 0;
754}
755
756static int
757pipe_write_open(struct inode *inode, struct file *filp)
758{
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200759 mutex_lock(&inode->i_mutex);
760 inode->i_pipe->writers++;
761 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 return 0;
764}
765
766static int
767pipe_rdwr_open(struct inode *inode, struct file *filp)
768{
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200769 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (filp->f_mode & FMODE_READ)
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200771 inode->i_pipe->readers++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (filp->f_mode & FMODE_WRITE)
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200773 inode->i_pipe->writers++;
774 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 return 0;
777}
778
779/*
780 * The file_operations structs are not static because they
781 * are also used in linux/fs/fifo.c to do operations on FIFOs.
782 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800783const struct file_operations read_fifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700785 .read = do_sync_read,
786 .aio_read = pipe_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 .write = bad_pipe_w,
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700788 .poll = pipe_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 .ioctl = pipe_ioctl,
790 .open = pipe_read_open,
791 .release = pipe_read_release,
792 .fasync = pipe_read_fasync,
793};
794
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800795const struct file_operations write_fifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 .llseek = no_llseek,
797 .read = bad_pipe_r,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700798 .write = do_sync_write,
799 .aio_write = pipe_write,
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700800 .poll = pipe_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 .ioctl = pipe_ioctl,
802 .open = pipe_write_open,
803 .release = pipe_write_release,
804 .fasync = pipe_write_fasync,
805};
806
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800807const struct file_operations rdwr_fifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700809 .read = do_sync_read,
810 .aio_read = pipe_read,
811 .write = do_sync_write,
812 .aio_write = pipe_write,
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700813 .poll = pipe_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 .ioctl = pipe_ioctl,
815 .open = pipe_rdwr_open,
816 .release = pipe_rdwr_release,
817 .fasync = pipe_rdwr_fasync,
818};
819
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800820static const struct file_operations read_pipe_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700822 .read = do_sync_read,
823 .aio_read = pipe_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 .write = bad_pipe_w,
825 .poll = pipe_poll,
826 .ioctl = pipe_ioctl,
827 .open = pipe_read_open,
828 .release = pipe_read_release,
829 .fasync = pipe_read_fasync,
830};
831
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800832static const struct file_operations write_pipe_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 .llseek = no_llseek,
834 .read = bad_pipe_r,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700835 .write = do_sync_write,
836 .aio_write = pipe_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 .poll = pipe_poll,
838 .ioctl = pipe_ioctl,
839 .open = pipe_write_open,
840 .release = pipe_write_release,
841 .fasync = pipe_write_fasync,
842};
843
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800844static const struct file_operations rdwr_pipe_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700846 .read = do_sync_read,
847 .aio_read = pipe_read,
848 .write = do_sync_write,
849 .aio_write = pipe_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 .poll = pipe_poll,
851 .ioctl = pipe_ioctl,
852 .open = pipe_rdwr_open,
853 .release = pipe_rdwr_release,
854 .fasync = pipe_rdwr_fasync,
855};
856
Ingo Molnar3a326a22006-04-10 15:18:35 +0200857struct pipe_inode_info * alloc_pipe_info(struct inode *inode)
858{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200859 struct pipe_inode_info *pipe;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200860
Ingo Molnar923f4f22006-04-11 13:53:33 +0200861 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL);
862 if (pipe) {
863 init_waitqueue_head(&pipe->wait);
864 pipe->r_counter = pipe->w_counter = 1;
865 pipe->inode = inode;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200866 }
867
Ingo Molnar923f4f22006-04-11 13:53:33 +0200868 return pipe;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200869}
870
Ingo Molnar923f4f22006-04-11 13:53:33 +0200871void __free_pipe_info(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
873 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 for (i = 0; i < PIPE_BUFFERS; i++) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200876 struct pipe_buffer *buf = pipe->bufs + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (buf->ops)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200878 buf->ops->release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200880 if (pipe->tmp_page)
881 __free_page(pipe->tmp_page);
882 kfree(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Jens Axboeb92ce552006-04-11 13:52:07 +0200885void free_pipe_info(struct inode *inode)
886{
887 __free_pipe_info(inode->i_pipe);
888 inode->i_pipe = NULL;
889}
890
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800891static struct vfsmount *pipe_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892static int pipefs_delete_dentry(struct dentry *dentry)
893{
Eric Dumazetd18de5a2006-12-06 20:38:45 -0800894 /*
895 * At creation time, we pretended this dentry was hashed
896 * (by clearing DCACHE_UNHASHED bit in d_flags)
897 * At delete time, we restore the truth : not hashed.
898 * (so that dput() can proceed correctly)
899 */
900 dentry->d_flags |= DCACHE_UNHASHED;
901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
Ingo Molnar341b4462006-04-11 13:57:45 +0200903
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700904/*
905 * pipefs_dname() is called from d_path().
906 */
907static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
908{
909 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
910 dentry->d_inode->i_ino);
911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913static struct dentry_operations pipefs_dentry_operations = {
914 .d_delete = pipefs_delete_dentry,
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700915 .d_dname = pipefs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916};
917
918static struct inode * get_pipe_inode(void)
919{
920 struct inode *inode = new_inode(pipe_mnt->mnt_sb);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200921 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (!inode)
924 goto fail_inode;
925
Ingo Molnar923f4f22006-04-11 13:53:33 +0200926 pipe = alloc_pipe_info(inode);
927 if (!pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 goto fail_iput;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200929 inode->i_pipe = pipe;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200930
Ingo Molnar923f4f22006-04-11 13:53:33 +0200931 pipe->readers = pipe->writers = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 inode->i_fop = &rdwr_pipe_fops;
933
934 /*
935 * Mark the inode dirty from the very beginning,
936 * that way it will never be moved to the dirty
937 * list because "mark_inode_dirty()" will think
938 * that it already _is_ on the dirty list.
939 */
940 inode->i_state = I_DIRTY;
941 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
942 inode->i_uid = current->fsuid;
943 inode->i_gid = current->fsgid;
944 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return inode;
947
948fail_iput:
949 iput(inode);
Ingo Molnar341b4462006-04-11 13:57:45 +0200950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951fail_inode:
952 return NULL;
953}
954
Andi Kleend6cbd282006-09-30 23:29:26 -0700955struct file *create_write_pipe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Andi Kleend6cbd282006-09-30 23:29:26 -0700957 int err;
958 struct inode *inode;
959 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct dentry *dentry;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700961 struct qstr name = { .name = "" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Andi Kleend6cbd282006-09-30 23:29:26 -0700963 f = get_empty_filp();
964 if (!f)
965 return ERR_PTR(-ENFILE);
966 err = -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 inode = get_pipe_inode();
968 if (!inode)
Andi Kleend6cbd282006-09-30 23:29:26 -0700969 goto err_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Andi Kleend6cbd282006-09-30 23:29:26 -0700971 err = -ENOMEM;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700972 dentry = d_alloc(pipe_mnt->mnt_sb->s_root, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (!dentry)
Andi Kleend6cbd282006-09-30 23:29:26 -0700974 goto err_inode;
Ingo Molnar341b4462006-04-11 13:57:45 +0200975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 dentry->d_op = &pipefs_dentry_operations;
Eric Dumazetd18de5a2006-12-06 20:38:45 -0800977 /*
978 * We dont want to publish this dentry into global dentry hash table.
979 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
980 * This permits a working /proc/$pid/fd/XXX on pipes
981 */
982 dentry->d_flags &= ~DCACHE_UNHASHED;
983 d_instantiate(dentry, inode);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800984 f->f_path.mnt = mntget(pipe_mnt);
985 f->f_path.dentry = dentry;
Andi Kleend6cbd282006-09-30 23:29:26 -0700986 f->f_mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Andi Kleend6cbd282006-09-30 23:29:26 -0700988 f->f_flags = O_WRONLY;
989 f->f_op = &write_pipe_fops;
990 f->f_mode = FMODE_WRITE;
991 f->f_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Andi Kleend6cbd282006-09-30 23:29:26 -0700993 return f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Andi Kleend6cbd282006-09-30 23:29:26 -0700995 err_inode:
996 free_pipe_info(inode);
997 iput(inode);
998 err_file:
999 put_filp(f);
1000 return ERR_PTR(err);
1001}
1002
1003void free_write_pipe(struct file *f)
1004{
Al Viro5ccac88e2006-12-18 13:31:18 +00001005 free_pipe_info(f->f_dentry->d_inode);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001006 dput(f->f_path.dentry);
Al Viro5ccac88e2006-12-18 13:31:18 +00001007 mntput(f->f_path.mnt);
Andi Kleend6cbd282006-09-30 23:29:26 -07001008 put_filp(f);
1009}
1010
1011struct file *create_read_pipe(struct file *wrf)
1012{
1013 struct file *f = get_empty_filp();
1014 if (!f)
1015 return ERR_PTR(-ENFILE);
1016
1017 /* Grab pipe from the writer */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001018 f->f_path.mnt = mntget(wrf->f_path.mnt);
1019 f->f_path.dentry = dget(wrf->f_path.dentry);
1020 f->f_mapping = wrf->f_path.dentry->d_inode->i_mapping;
Andi Kleend6cbd282006-09-30 23:29:26 -07001021
1022 f->f_pos = 0;
1023 f->f_flags = O_RDONLY;
1024 f->f_op = &read_pipe_fops;
1025 f->f_mode = FMODE_READ;
1026 f->f_version = 0;
1027
1028 return f;
1029}
1030
1031int do_pipe(int *fd)
1032{
1033 struct file *fw, *fr;
1034 int error;
1035 int fdw, fdr;
1036
1037 fw = create_write_pipe();
1038 if (IS_ERR(fw))
1039 return PTR_ERR(fw);
1040 fr = create_read_pipe(fw);
1041 error = PTR_ERR(fr);
1042 if (IS_ERR(fr))
1043 goto err_write_pipe;
1044
1045 error = get_unused_fd();
1046 if (error < 0)
1047 goto err_read_pipe;
1048 fdr = error;
1049
1050 error = get_unused_fd();
1051 if (error < 0)
1052 goto err_fdr;
1053 fdw = error;
1054
Al Virodb349502007-02-07 01:48:00 -05001055 error = audit_fd_pair(fdr, fdw);
1056 if (error < 0)
1057 goto err_fdw;
1058
Andi Kleend6cbd282006-09-30 23:29:26 -07001059 fd_install(fdr, fr);
1060 fd_install(fdw, fw);
1061 fd[0] = fdr;
1062 fd[1] = fdw;
Ingo Molnar341b4462006-04-11 13:57:45 +02001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return 0;
1065
Al Virodb349502007-02-07 01:48:00 -05001066 err_fdw:
1067 put_unused_fd(fdw);
Andi Kleend6cbd282006-09-30 23:29:26 -07001068 err_fdr:
1069 put_unused_fd(fdr);
1070 err_read_pipe:
Al Viro5ccac88e2006-12-18 13:31:18 +00001071 dput(fr->f_dentry);
1072 mntput(fr->f_vfsmnt);
Andi Kleend6cbd282006-09-30 23:29:26 -07001073 put_filp(fr);
1074 err_write_pipe:
1075 free_write_pipe(fw);
1076 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
1079/*
1080 * pipefs should _never_ be mounted by userland - too much of security hassle,
1081 * no real gain from having the whole whorehouse mounted. So we don't need
1082 * any operations on the root directory. However, we need a non-trivial
1083 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1084 */
David Howells454e2392006-06-23 02:02:57 -07001085static int pipefs_get_sb(struct file_system_type *fs_type,
1086 int flags, const char *dev_name, void *data,
1087 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
David Howells454e2392006-06-23 02:02:57 -07001089 return get_sb_pseudo(fs_type, "pipe:", NULL, PIPEFS_MAGIC, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092static struct file_system_type pipe_fs_type = {
1093 .name = "pipefs",
1094 .get_sb = pipefs_get_sb,
1095 .kill_sb = kill_anon_super,
1096};
1097
1098static int __init init_pipe_fs(void)
1099{
1100 int err = register_filesystem(&pipe_fs_type);
Ingo Molnar341b4462006-04-11 13:57:45 +02001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (!err) {
1103 pipe_mnt = kern_mount(&pipe_fs_type);
1104 if (IS_ERR(pipe_mnt)) {
1105 err = PTR_ERR(pipe_mnt);
1106 unregister_filesystem(&pipe_fs_type);
1107 }
1108 }
1109 return err;
1110}
1111
1112static void __exit exit_pipe_fs(void)
1113{
1114 unregister_filesystem(&pipe_fs_type);
1115 mntput(pipe_mnt);
1116}
1117
1118fs_initcall(init_pipe_fs);
1119module_exit(exit_pipe_fs);