]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/pipe.c
[CVE-2009-0029] System call wrappers part 32
[net-next-2.6.git] / fs / pipe.c
CommitLineData
1da177e4
LT
1/*
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>
5274f052 18#include <linux/pagemap.h>
db349509 19#include <linux/audit.h>
ba719bae 20#include <linux/syscalls.h>
1da177e4
LT
21
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
40/* Drop the inode semaphore and wait for a pipe event, atomically */
3a326a2c 41void pipe_wait(struct pipe_inode_info *pipe)
1da177e4
LT
42{
43 DEFINE_WAIT(wait);
44
d79fc0fc
IM
45 /*
46 * Pipes are system-local resources, so sleeping on them
47 * is considered a noninteractive wait:
48 */
af927232 49 prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE);
3a326a2c
IM
50 if (pipe->inode)
51 mutex_unlock(&pipe->inode->i_mutex);
1da177e4 52 schedule();
3a326a2c
IM
53 finish_wait(&pipe->wait, &wait);
54 if (pipe->inode)
55 mutex_lock(&pipe->inode->i_mutex);
1da177e4
LT
56}
57
858119e1 58static int
f6762b7a
JA
59pipe_iov_copy_from_user(void *to, struct iovec *iov, unsigned long len,
60 int atomic)
1da177e4
LT
61{
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
f6762b7a
JA
69 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 }
1da177e4
LT
76 to += copy;
77 len -= copy;
78 iov->iov_base += copy;
79 iov->iov_len -= copy;
80 }
81 return 0;
82}
83
858119e1 84static int
f6762b7a
JA
85pipe_iov_copy_to_user(struct iovec *iov, const void *from, unsigned long len,
86 int atomic)
1da177e4
LT
87{
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
f6762b7a
JA
95 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 }
1da177e4
LT
102 from += copy;
103 len -= copy;
104 iov->iov_base += copy;
105 iov->iov_len -= copy;
106 }
107 return 0;
108}
109
f6762b7a
JA
110/*
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
341b446b
IM
151static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
152 struct pipe_buffer *buf)
1da177e4
LT
153{
154 struct page *page = buf->page;
155
5274f052
JA
156 /*
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
341b446b 159 * allocation cache. (Otherwise just release our reference to it)
5274f052 160 */
341b446b 161 if (page_count(page) == 1 && !pipe->tmp_page)
923f4f23 162 pipe->tmp_page = page;
341b446b
IM
163 else
164 page_cache_release(page);
1da177e4
LT
165}
166
0845718d
JA
167/**
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
b51d63c6 175 * pipe_buffer passed in @buf. If @atomic is set, an atomic map is provided
0845718d
JA
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 */
f84d7519 181void *generic_pipe_buf_map(struct pipe_inode_info *pipe,
f6762b7a 182 struct pipe_buffer *buf, int atomic)
1da177e4 183{
f6762b7a
JA
184 if (atomic) {
185 buf->flags |= PIPE_BUF_FLAG_ATOMIC;
186 return kmap_atomic(buf->page, KM_USER0);
187 }
188
1da177e4
LT
189 return kmap(buf->page);
190}
191
0845718d
JA
192/**
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 */
f84d7519 201void generic_pipe_buf_unmap(struct pipe_inode_info *pipe,
f6762b7a 202 struct pipe_buffer *buf, void *map_data)
1da177e4 203{
f6762b7a
JA
204 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);
1da177e4
LT
209}
210
0845718d 211/**
b51d63c6 212 * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
0845718d
JA
213 * @pipe: the pipe that the buffer belongs to
214 * @buf: the buffer to attempt to steal
215 *
216 * Description:
b51d63c6 217 * This function attempts to steal the &struct page attached to
0845718d
JA
218 * @buf. If successful, this function returns 0 and returns with
219 * the page locked. The caller may then reuse the page for whatever
b51d63c6 220 * he wishes; the typical use is insertion into a different file
0845718d
JA
221 * page cache.
222 */
330ab716
JA
223int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
224 struct pipe_buffer *buf)
5abc97aa 225{
46e678c9
JA
226 struct page *page = buf->page;
227
0845718d
JA
228 /*
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 */
46e678c9 233 if (page_count(page) == 1) {
46e678c9
JA
234 lock_page(page);
235 return 0;
236 }
237
238 return 1;
5abc97aa
JA
239}
240
0845718d 241/**
b51d63c6 242 * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
0845718d
JA
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)
70524490
JA
252{
253 page_cache_get(buf->page);
254}
255
0845718d
JA
256/**
257 * generic_pipe_buf_confirm - verify contents of the pipe buffer
79685b8d 258 * @info: the pipe that the buffer belongs to
0845718d
JA
259 * @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 */
cac36bb0
JA
265int generic_pipe_buf_confirm(struct pipe_inode_info *info,
266 struct pipe_buffer *buf)
f84d7519
JA
267{
268 return 0;
269}
270
d4c3cca9 271static const struct pipe_buf_operations anon_pipe_buf_ops = {
1da177e4 272 .can_merge = 1,
f84d7519
JA
273 .map = generic_pipe_buf_map,
274 .unmap = generic_pipe_buf_unmap,
cac36bb0 275 .confirm = generic_pipe_buf_confirm,
1da177e4 276 .release = anon_pipe_buf_release,
330ab716 277 .steal = generic_pipe_buf_steal,
f84d7519 278 .get = generic_pipe_buf_get,
1da177e4
LT
279};
280
281static ssize_t
ee0b3e67
BP
282pipe_read(struct kiocb *iocb, const struct iovec *_iov,
283 unsigned long nr_segs, loff_t pos)
1da177e4 284{
ee0b3e67 285 struct file *filp = iocb->ki_filp;
0f7fc9e4 286 struct inode *inode = filp->f_path.dentry->d_inode;
923f4f23 287 struct pipe_inode_info *pipe;
1da177e4
LT
288 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;
9aeedfc4 300 mutex_lock(&inode->i_mutex);
923f4f23 301 pipe = inode->i_pipe;
1da177e4 302 for (;;) {
923f4f23 303 int bufs = pipe->nrbufs;
1da177e4 304 if (bufs) {
923f4f23
IM
305 int curbuf = pipe->curbuf;
306 struct pipe_buffer *buf = pipe->bufs + curbuf;
d4c3cca9 307 const struct pipe_buf_operations *ops = buf->ops;
1da177e4
LT
308 void *addr;
309 size_t chars = buf->len;
f6762b7a 310 int error, atomic;
1da177e4
LT
311
312 if (chars > total_len)
313 chars = total_len;
314
cac36bb0 315 error = ops->confirm(pipe, buf);
f84d7519 316 if (error) {
5274f052 317 if (!ret)
f84d7519 318 error = ret;
5274f052
JA
319 break;
320 }
f84d7519 321
f6762b7a
JA
322 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);
1da177e4 327 if (unlikely(error)) {
f6762b7a
JA
328 /*
329 * Just retry with the slow path if we failed.
330 */
331 if (atomic) {
332 atomic = 0;
333 goto redo;
334 }
341b446b 335 if (!ret)
f6762b7a 336 ret = error;
1da177e4
LT
337 break;
338 }
339 ret += chars;
340 buf->offset += chars;
341 buf->len -= chars;
342 if (!buf->len) {
343 buf->ops = NULL;
923f4f23 344 ops->release(pipe, buf);
1da177e4 345 curbuf = (curbuf + 1) & (PIPE_BUFFERS-1);
923f4f23
IM
346 pipe->curbuf = curbuf;
347 pipe->nrbufs = --bufs;
1da177e4
LT
348 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;
923f4f23 356 if (!pipe->writers)
1da177e4 357 break;
923f4f23 358 if (!pipe->waiting_writers) {
1da177e4
LT
359 /* 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)) {
341b446b
IM
372 if (!ret)
373 ret = -ERESTARTSYS;
1da177e4
LT
374 break;
375 }
376 if (do_wakeup) {
923f4f23
IM
377 wake_up_interruptible_sync(&pipe->wait);
378 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
1da177e4 379 }
923f4f23 380 pipe_wait(pipe);
1da177e4 381 }
9aeedfc4 382 mutex_unlock(&inode->i_mutex);
341b446b
IM
383
384 /* Signal writers asynchronously that there is more room. */
1da177e4 385 if (do_wakeup) {
71e20f18 386 wake_up_interruptible_sync(&pipe->wait);
923f4f23 387 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
1da177e4
LT
388 }
389 if (ret > 0)
390 file_accessed(filp);
391 return ret;
392}
393
394static ssize_t
ee0b3e67
BP
395pipe_write(struct kiocb *iocb, const struct iovec *_iov,
396 unsigned long nr_segs, loff_t ppos)
1da177e4 397{
ee0b3e67 398 struct file *filp = iocb->ki_filp;
0f7fc9e4 399 struct inode *inode = filp->f_path.dentry->d_inode;
923f4f23 400 struct pipe_inode_info *pipe;
1da177e4
LT
401 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;
9aeedfc4 414 mutex_lock(&inode->i_mutex);
923f4f23 415 pipe = inode->i_pipe;
1da177e4 416
923f4f23 417 if (!pipe->readers) {
1da177e4
LT
418 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 */
923f4f23 425 if (pipe->nrbufs && chars != 0) {
341b446b
IM
426 int lastbuf = (pipe->curbuf + pipe->nrbufs - 1) &
427 (PIPE_BUFFERS-1);
923f4f23 428 struct pipe_buffer *buf = pipe->bufs + lastbuf;
d4c3cca9 429 const struct pipe_buf_operations *ops = buf->ops;
1da177e4 430 int offset = buf->offset + buf->len;
341b446b 431
1da177e4 432 if (ops->can_merge && offset + chars <= PAGE_SIZE) {
f6762b7a 433 int error, atomic = 1;
5274f052 434 void *addr;
5274f052 435
cac36bb0 436 error = ops->confirm(pipe, buf);
f84d7519 437 if (error)
5274f052 438 goto out;
f84d7519 439
f6762b7a
JA
440 iov_fault_in_pages_read(iov, chars);
441redo1:
442 addr = ops->map(pipe, buf, atomic);
5274f052 443 error = pipe_iov_copy_from_user(offset + addr, iov,
f6762b7a
JA
444 chars, atomic);
445 ops->unmap(pipe, buf, addr);
1da177e4
LT
446 ret = error;
447 do_wakeup = 1;
f6762b7a
JA
448 if (error) {
449 if (atomic) {
450 atomic = 0;
451 goto redo1;
452 }
1da177e4 453 goto out;
f6762b7a 454 }
1da177e4
LT
455 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;
341b446b 465
923f4f23 466 if (!pipe->readers) {
1da177e4 467 send_sig(SIGPIPE, current, 0);
341b446b
IM
468 if (!ret)
469 ret = -EPIPE;
1da177e4
LT
470 break;
471 }
923f4f23 472 bufs = pipe->nrbufs;
1da177e4 473 if (bufs < PIPE_BUFFERS) {
923f4f23
IM
474 int newbuf = (pipe->curbuf + bufs) & (PIPE_BUFFERS-1);
475 struct pipe_buffer *buf = pipe->bufs + newbuf;
476 struct page *page = pipe->tmp_page;
f6762b7a
JA
477 char *src;
478 int error, atomic = 1;
1da177e4
LT
479
480 if (!page) {
481 page = alloc_page(GFP_HIGHUSER);
482 if (unlikely(!page)) {
483 ret = ret ? : -ENOMEM;
484 break;
485 }
923f4f23 486 pipe->tmp_page = page;
1da177e4 487 }
341b446b 488 /* Always wake up, even if the copy fails. Otherwise
1da177e4
LT
489 * 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
f6762b7a
JA
498 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
1da177e4 512 if (unlikely(error)) {
f6762b7a
JA
513 if (atomic) {
514 atomic = 0;
515 goto redo2;
516 }
341b446b 517 if (!ret)
f6762b7a 518 ret = error;
1da177e4
LT
519 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;
923f4f23
IM
528 pipe->nrbufs = ++bufs;
529 pipe->tmp_page = NULL;
1da177e4
LT
530
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) {
341b446b
IM
538 if (!ret)
539 ret = -EAGAIN;
1da177e4
LT
540 break;
541 }
542 if (signal_pending(current)) {
341b446b
IM
543 if (!ret)
544 ret = -ERESTARTSYS;
1da177e4
LT
545 break;
546 }
547 if (do_wakeup) {
923f4f23
IM
548 wake_up_interruptible_sync(&pipe->wait);
549 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1da177e4
LT
550 do_wakeup = 0;
551 }
923f4f23
IM
552 pipe->waiting_writers++;
553 pipe_wait(pipe);
554 pipe->waiting_writers--;
1da177e4
LT
555 }
556out:
9aeedfc4 557 mutex_unlock(&inode->i_mutex);
1da177e4 558 if (do_wakeup) {
71e20f18 559 wake_up_interruptible_sync(&pipe->wait);
923f4f23 560 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1da177e4
LT
561 }
562 if (ret > 0)
870f4817 563 file_update_time(filp);
1da177e4
LT
564 return ret;
565}
566
1da177e4
LT
567static ssize_t
568bad_pipe_r(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
569{
570 return -EBADF;
571}
572
573static ssize_t
341b446b
IM
574bad_pipe_w(struct file *filp, const char __user *buf, size_t count,
575 loff_t *ppos)
1da177e4
LT
576{
577 return -EBADF;
578}
579
d59d0b1b 580static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1da177e4 581{
0f7fc9e4 582 struct inode *inode = filp->f_path.dentry->d_inode;
923f4f23 583 struct pipe_inode_info *pipe;
1da177e4
LT
584 int count, buf, nrbufs;
585
586 switch (cmd) {
587 case FIONREAD:
9aeedfc4 588 mutex_lock(&inode->i_mutex);
923f4f23 589 pipe = inode->i_pipe;
1da177e4 590 count = 0;
923f4f23
IM
591 buf = pipe->curbuf;
592 nrbufs = pipe->nrbufs;
1da177e4 593 while (--nrbufs >= 0) {
923f4f23 594 count += pipe->bufs[buf].len;
1da177e4
LT
595 buf = (buf+1) & (PIPE_BUFFERS-1);
596 }
9aeedfc4 597 mutex_unlock(&inode->i_mutex);
923f4f23 598
1da177e4
LT
599 return put_user(count, (int __user *)arg);
600 default:
601 return -EINVAL;
602 }
603}
604
605/* No kernel lock held - fine */
606static unsigned int
607pipe_poll(struct file *filp, poll_table *wait)
608{
609 unsigned int mask;
0f7fc9e4 610 struct inode *inode = filp->f_path.dentry->d_inode;
923f4f23 611 struct pipe_inode_info *pipe = inode->i_pipe;
1da177e4
LT
612 int nrbufs;
613
923f4f23 614 poll_wait(filp, &pipe->wait, wait);
1da177e4
LT
615
616 /* Reading only -- no need for acquiring the semaphore. */
923f4f23 617 nrbufs = pipe->nrbufs;
1da177e4
LT
618 mask = 0;
619 if (filp->f_mode & FMODE_READ) {
620 mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
923f4f23 621 if (!pipe->writers && filp->f_version != pipe->w_counter)
1da177e4
LT
622 mask |= POLLHUP;
623 }
624
625 if (filp->f_mode & FMODE_WRITE) {
626 mask |= (nrbufs < PIPE_BUFFERS) ? POLLOUT | POLLWRNORM : 0;
5e5d7a22
PE
627 /*
628 * Most Unices do not set POLLERR for FIFOs but on Linux they
629 * behave exactly like pipes for poll().
630 */
923f4f23 631 if (!pipe->readers)
1da177e4
LT
632 mask |= POLLERR;
633 }
634
635 return mask;
636}
637
1da177e4
LT
638static int
639pipe_release(struct inode *inode, int decr, int decw)
640{
923f4f23
IM
641 struct pipe_inode_info *pipe;
642
9aeedfc4 643 mutex_lock(&inode->i_mutex);
923f4f23
IM
644 pipe = inode->i_pipe;
645 pipe->readers -= decr;
646 pipe->writers -= decw;
341b446b 647
923f4f23 648 if (!pipe->readers && !pipe->writers) {
1da177e4
LT
649 free_pipe_info(inode);
650 } else {
71e20f18 651 wake_up_interruptible_sync(&pipe->wait);
923f4f23
IM
652 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
653 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
1da177e4 654 }
9aeedfc4 655 mutex_unlock(&inode->i_mutex);
1da177e4
LT
656
657 return 0;
658}
659
660static int
661pipe_read_fasync(int fd, struct file *filp, int on)
662{
0f7fc9e4 663 struct inode *inode = filp->f_path.dentry->d_inode;
1da177e4
LT
664 int retval;
665
9aeedfc4
IM
666 mutex_lock(&inode->i_mutex);
667 retval = fasync_helper(fd, filp, on, &inode->i_pipe->fasync_readers);
668 mutex_unlock(&inode->i_mutex);
1da177e4
LT
669
670 if (retval < 0)
671 return retval;
672
673 return 0;
674}
675
676
677static int
678pipe_write_fasync(int fd, struct file *filp, int on)
679{
0f7fc9e4 680 struct inode *inode = filp->f_path.dentry->d_inode;
1da177e4
LT
681 int retval;
682
9aeedfc4
IM
683 mutex_lock(&inode->i_mutex);
684 retval = fasync_helper(fd, filp, on, &inode->i_pipe->fasync_writers);
685 mutex_unlock(&inode->i_mutex);
1da177e4
LT
686
687 if (retval < 0)
688 return retval;
689
690 return 0;
691}
692
693
694static int
695pipe_rdwr_fasync(int fd, struct file *filp, int on)
696{
0f7fc9e4 697 struct inode *inode = filp->f_path.dentry->d_inode;
341b446b 698 struct pipe_inode_info *pipe = inode->i_pipe;
1da177e4
LT
699 int retval;
700
9aeedfc4 701 mutex_lock(&inode->i_mutex);
1da177e4 702
341b446b 703 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
1da177e4
LT
704
705 if (retval >= 0)
341b446b 706 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
1da177e4 707
9aeedfc4 708 mutex_unlock(&inode->i_mutex);
1da177e4
LT
709
710 if (retval < 0)
711 return retval;
712
713 return 0;
714}
715
716
717static int
718pipe_read_release(struct inode *inode, struct file *filp)
719{
1da177e4
LT
720 return pipe_release(inode, 1, 0);
721}
722
723static int
724pipe_write_release(struct inode *inode, struct file *filp)
725{
1da177e4
LT
726 return pipe_release(inode, 0, 1);
727}
728
729static int
730pipe_rdwr_release(struct inode *inode, struct file *filp)
731{
732 int decr, decw;
733
1da177e4
LT
734 decr = (filp->f_mode & FMODE_READ) != 0;
735 decw = (filp->f_mode & FMODE_WRITE) != 0;
736 return pipe_release(inode, decr, decw);
737}
738
739static int
740pipe_read_open(struct inode *inode, struct file *filp)
741{
742 /* We could have perhaps used atomic_t, but this and friends
743 below are the only places. So it doesn't seem worthwhile. */
9aeedfc4
IM
744 mutex_lock(&inode->i_mutex);
745 inode->i_pipe->readers++;
746 mutex_unlock(&inode->i_mutex);
1da177e4
LT
747
748 return 0;
749}
750
751static int
752pipe_write_open(struct inode *inode, struct file *filp)
753{
9aeedfc4
IM
754 mutex_lock(&inode->i_mutex);
755 inode->i_pipe->writers++;
756 mutex_unlock(&inode->i_mutex);
1da177e4
LT
757
758 return 0;
759}
760
761static int
762pipe_rdwr_open(struct inode *inode, struct file *filp)
763{
9aeedfc4 764 mutex_lock(&inode->i_mutex);
1da177e4 765 if (filp->f_mode & FMODE_READ)
9aeedfc4 766 inode->i_pipe->readers++;
1da177e4 767 if (filp->f_mode & FMODE_WRITE)
9aeedfc4
IM
768 inode->i_pipe->writers++;
769 mutex_unlock(&inode->i_mutex);
1da177e4
LT
770
771 return 0;
772}
773
774/*
775 * The file_operations structs are not static because they
776 * are also used in linux/fs/fifo.c to do operations on FIFOs.
d2d9648e
DV
777 *
778 * Pipes reuse fifos' file_operations structs.
1da177e4 779 */
d2d9648e 780const struct file_operations read_pipefifo_fops = {
1da177e4 781 .llseek = no_llseek,
ee0b3e67
BP
782 .read = do_sync_read,
783 .aio_read = pipe_read,
1da177e4
LT
784 .write = bad_pipe_w,
785 .poll = pipe_poll,
d59d0b1b 786 .unlocked_ioctl = pipe_ioctl,
1da177e4
LT
787 .open = pipe_read_open,
788 .release = pipe_read_release,
789 .fasync = pipe_read_fasync,
790};
791
d2d9648e 792const struct file_operations write_pipefifo_fops = {
1da177e4
LT
793 .llseek = no_llseek,
794 .read = bad_pipe_r,
ee0b3e67
BP
795 .write = do_sync_write,
796 .aio_write = pipe_write,
1da177e4 797 .poll = pipe_poll,
d59d0b1b 798 .unlocked_ioctl = pipe_ioctl,
1da177e4
LT
799 .open = pipe_write_open,
800 .release = pipe_write_release,
801 .fasync = pipe_write_fasync,
802};
803
d2d9648e 804const struct file_operations rdwr_pipefifo_fops = {
1da177e4 805 .llseek = no_llseek,
ee0b3e67
BP
806 .read = do_sync_read,
807 .aio_read = pipe_read,
808 .write = do_sync_write,
809 .aio_write = pipe_write,
1da177e4 810 .poll = pipe_poll,
d59d0b1b 811 .unlocked_ioctl = pipe_ioctl,
1da177e4
LT
812 .open = pipe_rdwr_open,
813 .release = pipe_rdwr_release,
814 .fasync = pipe_rdwr_fasync,
815};
816
3a326a2c
IM
817struct pipe_inode_info * alloc_pipe_info(struct inode *inode)
818{
923f4f23 819 struct pipe_inode_info *pipe;
3a326a2c 820
923f4f23
IM
821 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL);
822 if (pipe) {
823 init_waitqueue_head(&pipe->wait);
824 pipe->r_counter = pipe->w_counter = 1;
825 pipe->inode = inode;
3a326a2c
IM
826 }
827
923f4f23 828 return pipe;
3a326a2c
IM
829}
830
923f4f23 831void __free_pipe_info(struct pipe_inode_info *pipe)
1da177e4
LT
832{
833 int i;
1da177e4 834
1da177e4 835 for (i = 0; i < PIPE_BUFFERS; i++) {
923f4f23 836 struct pipe_buffer *buf = pipe->bufs + i;
1da177e4 837 if (buf->ops)
923f4f23 838 buf->ops->release(pipe, buf);
1da177e4 839 }
923f4f23
IM
840 if (pipe->tmp_page)
841 __free_page(pipe->tmp_page);
842 kfree(pipe);
1da177e4
LT
843}
844
b92ce558
JA
845void free_pipe_info(struct inode *inode)
846{
847 __free_pipe_info(inode->i_pipe);
848 inode->i_pipe = NULL;
849}
850
fa3536cc 851static struct vfsmount *pipe_mnt __read_mostly;
1da177e4
LT
852static int pipefs_delete_dentry(struct dentry *dentry)
853{
d18de5a2
ED
854 /*
855 * At creation time, we pretended this dentry was hashed
856 * (by clearing DCACHE_UNHASHED bit in d_flags)
857 * At delete time, we restore the truth : not hashed.
858 * (so that dput() can proceed correctly)
859 */
860 dentry->d_flags |= DCACHE_UNHASHED;
861 return 0;
1da177e4 862}
341b446b 863
c23fbb6b
ED
864/*
865 * pipefs_dname() is called from d_path().
866 */
867static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
868{
869 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
870 dentry->d_inode->i_ino);
871}
872
1da177e4
LT
873static struct dentry_operations pipefs_dentry_operations = {
874 .d_delete = pipefs_delete_dentry,
c23fbb6b 875 .d_dname = pipefs_dname,
1da177e4
LT
876};
877
878static struct inode * get_pipe_inode(void)
879{
880 struct inode *inode = new_inode(pipe_mnt->mnt_sb);
923f4f23 881 struct pipe_inode_info *pipe;
1da177e4
LT
882
883 if (!inode)
884 goto fail_inode;
885
923f4f23
IM
886 pipe = alloc_pipe_info(inode);
887 if (!pipe)
1da177e4 888 goto fail_iput;
923f4f23 889 inode->i_pipe = pipe;
3a326a2c 890
923f4f23 891 pipe->readers = pipe->writers = 1;
d2d9648e 892 inode->i_fop = &rdwr_pipefifo_fops;
1da177e4
LT
893
894 /*
895 * Mark the inode dirty from the very beginning,
896 * that way it will never be moved to the dirty
897 * list because "mark_inode_dirty()" will think
898 * that it already _is_ on the dirty list.
899 */
900 inode->i_state = I_DIRTY;
901 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
da9592ed
DH
902 inode->i_uid = current_fsuid();
903 inode->i_gid = current_fsgid();
1da177e4 904 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
923f4f23 905
1da177e4
LT
906 return inode;
907
908fail_iput:
909 iput(inode);
341b446b 910
1da177e4
LT
911fail_inode:
912 return NULL;
913}
914
be61a86d 915struct file *create_write_pipe(int flags)
1da177e4 916{
d6cbd281
AK
917 int err;
918 struct inode *inode;
919 struct file *f;
1da177e4 920 struct dentry *dentry;
c23fbb6b 921 struct qstr name = { .name = "" };
1da177e4 922
d6cbd281 923 err = -ENFILE;
1da177e4
LT
924 inode = get_pipe_inode();
925 if (!inode)
430e285e 926 goto err;
1da177e4 927
d6cbd281 928 err = -ENOMEM;
c23fbb6b 929 dentry = d_alloc(pipe_mnt->mnt_sb->s_root, &name);
1da177e4 930 if (!dentry)
d6cbd281 931 goto err_inode;
341b446b 932
1da177e4 933 dentry->d_op = &pipefs_dentry_operations;
d18de5a2
ED
934 /*
935 * We dont want to publish this dentry into global dentry hash table.
936 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
937 * This permits a working /proc/$pid/fd/XXX on pipes
938 */
939 dentry->d_flags &= ~DCACHE_UNHASHED;
940 d_instantiate(dentry, inode);
430e285e
DH
941
942 err = -ENFILE;
d2d9648e 943 f = alloc_file(pipe_mnt, dentry, FMODE_WRITE, &write_pipefifo_fops);
430e285e
DH
944 if (!f)
945 goto err_dentry;
d6cbd281 946 f->f_mapping = inode->i_mapping;
341b446b 947
be61a86d 948 f->f_flags = O_WRONLY | (flags & O_NONBLOCK);
d6cbd281
AK
949 f->f_version = 0;
950
951 return f;
1da177e4 952
430e285e 953 err_dentry:
ed152437 954 free_pipe_info(inode);
430e285e 955 dput(dentry);
ed152437
AV
956 return ERR_PTR(err);
957
d6cbd281 958 err_inode:
1da177e4
LT
959 free_pipe_info(inode);
960 iput(inode);
430e285e 961 err:
d6cbd281
AK
962 return ERR_PTR(err);
963}
964
965void free_write_pipe(struct file *f)
966{
5ccac88e 967 free_pipe_info(f->f_dentry->d_inode);
c8e7f449 968 path_put(&f->f_path);
d6cbd281
AK
969 put_filp(f);
970}
971
be61a86d 972struct file *create_read_pipe(struct file *wrf, int flags)
d6cbd281
AK
973{
974 struct file *f = get_empty_filp();
975 if (!f)
976 return ERR_PTR(-ENFILE);
977
978 /* Grab pipe from the writer */
c8e7f449
JB
979 f->f_path = wrf->f_path;
980 path_get(&wrf->f_path);
0f7fc9e4 981 f->f_mapping = wrf->f_path.dentry->d_inode->i_mapping;
d6cbd281
AK
982
983 f->f_pos = 0;
be61a86d 984 f->f_flags = O_RDONLY | (flags & O_NONBLOCK);
d2d9648e 985 f->f_op = &read_pipefifo_fops;
d6cbd281
AK
986 f->f_mode = FMODE_READ;
987 f->f_version = 0;
988
989 return f;
990}
991
ed8cae8b 992int do_pipe_flags(int *fd, int flags)
d6cbd281
AK
993{
994 struct file *fw, *fr;
995 int error;
996 int fdw, fdr;
997
be61a86d 998 if (flags & ~(O_CLOEXEC | O_NONBLOCK))
ed8cae8b
UD
999 return -EINVAL;
1000
be61a86d 1001 fw = create_write_pipe(flags);
d6cbd281
AK
1002 if (IS_ERR(fw))
1003 return PTR_ERR(fw);
be61a86d 1004 fr = create_read_pipe(fw, flags);
d6cbd281
AK
1005 error = PTR_ERR(fr);
1006 if (IS_ERR(fr))
1007 goto err_write_pipe;
1008
ed8cae8b 1009 error = get_unused_fd_flags(flags);
d6cbd281
AK
1010 if (error < 0)
1011 goto err_read_pipe;
1012 fdr = error;
1013
ed8cae8b 1014 error = get_unused_fd_flags(flags);
d6cbd281
AK
1015 if (error < 0)
1016 goto err_fdr;
1017 fdw = error;
1018
157cf649 1019 audit_fd_pair(fdr, fdw);
d6cbd281
AK
1020 fd_install(fdr, fr);
1021 fd_install(fdw, fw);
1022 fd[0] = fdr;
1023 fd[1] = fdw;
1024
1025 return 0;
1026
1027 err_fdr:
1028 put_unused_fd(fdr);
1029 err_read_pipe:
c8e7f449 1030 path_put(&fr->f_path);
d6cbd281
AK
1031 put_filp(fr);
1032 err_write_pipe:
1033 free_write_pipe(fw);
1034 return error;
1da177e4
LT
1035}
1036
ed8cae8b
UD
1037int do_pipe(int *fd)
1038{
1039 return do_pipe_flags(fd, 0);
1040}
1041
d35c7b0e
UD
1042/*
1043 * sys_pipe() is the normal C calling standard for creating
1044 * a pipe. It's not the way Unix traditionally does this, though.
1045 */
d4e82042 1046SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
d35c7b0e
UD
1047{
1048 int fd[2];
1049 int error;
1050
ed8cae8b 1051 error = do_pipe_flags(fd, flags);
d35c7b0e 1052 if (!error) {
ba719bae
UD
1053 if (copy_to_user(fildes, fd, sizeof(fd))) {
1054 sys_close(fd[0]);
1055 sys_close(fd[1]);
d35c7b0e 1056 error = -EFAULT;
ba719bae 1057 }
d35c7b0e
UD
1058 }
1059 return error;
1060}
1061
1134723e 1062asmlinkage long sys_pipe(int __user *fildes)
ed8cae8b
UD
1063{
1064 return sys_pipe2(fildes, 0);
1065}
1066
1da177e4
LT
1067/*
1068 * pipefs should _never_ be mounted by userland - too much of security hassle,
1069 * no real gain from having the whole whorehouse mounted. So we don't need
1070 * any operations on the root directory. However, we need a non-trivial
1071 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1072 */
454e2398
DH
1073static int pipefs_get_sb(struct file_system_type *fs_type,
1074 int flags, const char *dev_name, void *data,
1075 struct vfsmount *mnt)
1da177e4 1076{
454e2398 1077 return get_sb_pseudo(fs_type, "pipe:", NULL, PIPEFS_MAGIC, mnt);
1da177e4
LT
1078}
1079
1080static struct file_system_type pipe_fs_type = {
1081 .name = "pipefs",
1082 .get_sb = pipefs_get_sb,
1083 .kill_sb = kill_anon_super,
1084};
1085
1086static int __init init_pipe_fs(void)
1087{
1088 int err = register_filesystem(&pipe_fs_type);
341b446b 1089
1da177e4
LT
1090 if (!err) {
1091 pipe_mnt = kern_mount(&pipe_fs_type);
1092 if (IS_ERR(pipe_mnt)) {
1093 err = PTR_ERR(pipe_mnt);
1094 unregister_filesystem(&pipe_fs_type);
1095 }
1096 }
1097 return err;
1098}
1099
1100static void __exit exit_pipe_fs(void)
1101{
1102 unregister_filesystem(&pipe_fs_type);
1103 mntput(pipe_mnt);
1104}
1105
1106fs_initcall(init_pipe_fs);
1107module_exit(exit_pipe_fs);