NFS: Remove CONFIG_NFS_V4 checks from nfs_idmap.h
[linux-2.6-block.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>
35f3d14d 14#include <linux/log2.h>
1da177e4 15#include <linux/mount.h>
b502bd11 16#include <linux/magic.h>
1da177e4
LT
17#include <linux/pipe_fs_i.h>
18#include <linux/uio.h>
19#include <linux/highmem.h>
5274f052 20#include <linux/pagemap.h>
db349509 21#include <linux/audit.h>
ba719bae 22#include <linux/syscalls.h>
b492e95b 23#include <linux/fcntl.h>
a27bb332 24#include <linux/aio.h>
1da177e4
LT
25
26#include <asm/uaccess.h>
27#include <asm/ioctls.h>
28
599a0ac1
AV
29#include "internal.h"
30
b492e95b
JA
31/*
32 * The max size that a non-root user is allowed to grow the pipe. Can
ff9da691 33 * be set by root in /proc/sys/fs/pipe-max-size
b492e95b 34 */
ff9da691
JA
35unsigned int pipe_max_size = 1048576;
36
37/*
38 * Minimum pipe size, as required by POSIX
39 */
40unsigned int pipe_min_size = PAGE_SIZE;
b492e95b 41
1da177e4
LT
42/*
43 * We use a start+len construction, which provides full use of the
44 * allocated memory.
45 * -- Florian Coosmann (FGC)
46 *
47 * Reads with count = 0 should always return 0.
48 * -- Julian Bradfield 1999-06-07.
49 *
50 * FIFOs and Pipes now generate SIGIO for both readers and writers.
51 * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
52 *
53 * pipe_read & write cleanup
54 * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
55 */
56
61e0d47c
MS
57static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass)
58{
6447a3cf 59 if (pipe->files)
72b0d9aa 60 mutex_lock_nested(&pipe->mutex, subclass);
61e0d47c
MS
61}
62
63void pipe_lock(struct pipe_inode_info *pipe)
64{
65 /*
66 * pipe_lock() nests non-pipe inode locks (for writing to a file)
67 */
68 pipe_lock_nested(pipe, I_MUTEX_PARENT);
69}
70EXPORT_SYMBOL(pipe_lock);
71
72void pipe_unlock(struct pipe_inode_info *pipe)
73{
6447a3cf 74 if (pipe->files)
72b0d9aa 75 mutex_unlock(&pipe->mutex);
61e0d47c
MS
76}
77EXPORT_SYMBOL(pipe_unlock);
78
ebec73f4
AV
79static inline void __pipe_lock(struct pipe_inode_info *pipe)
80{
81 mutex_lock_nested(&pipe->mutex, I_MUTEX_PARENT);
82}
83
84static inline void __pipe_unlock(struct pipe_inode_info *pipe)
85{
86 mutex_unlock(&pipe->mutex);
87}
88
61e0d47c
MS
89void pipe_double_lock(struct pipe_inode_info *pipe1,
90 struct pipe_inode_info *pipe2)
91{
92 BUG_ON(pipe1 == pipe2);
93
94 if (pipe1 < pipe2) {
95 pipe_lock_nested(pipe1, I_MUTEX_PARENT);
96 pipe_lock_nested(pipe2, I_MUTEX_CHILD);
97 } else {
023d43c7
PZ
98 pipe_lock_nested(pipe2, I_MUTEX_PARENT);
99 pipe_lock_nested(pipe1, I_MUTEX_CHILD);
61e0d47c
MS
100 }
101}
102
1da177e4 103/* Drop the inode semaphore and wait for a pipe event, atomically */
3a326a2c 104void pipe_wait(struct pipe_inode_info *pipe)
1da177e4
LT
105{
106 DEFINE_WAIT(wait);
107
d79fc0fc
IM
108 /*
109 * Pipes are system-local resources, so sleeping on them
110 * is considered a noninteractive wait:
111 */
af927232 112 prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE);
61e0d47c 113 pipe_unlock(pipe);
1da177e4 114 schedule();
3a326a2c 115 finish_wait(&pipe->wait, &wait);
61e0d47c 116 pipe_lock(pipe);
1da177e4
LT
117}
118
341b446b
IM
119static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
120 struct pipe_buffer *buf)
1da177e4
LT
121{
122 struct page *page = buf->page;
123
5274f052
JA
124 /*
125 * If nobody else uses this page, and we don't already have a
126 * temporary page, let's keep track of it as a one-deep
341b446b 127 * allocation cache. (Otherwise just release our reference to it)
5274f052 128 */
341b446b 129 if (page_count(page) == 1 && !pipe->tmp_page)
923f4f23 130 pipe->tmp_page = page;
341b446b
IM
131 else
132 page_cache_release(page);
1da177e4
LT
133}
134
0845718d 135/**
b51d63c6 136 * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
0845718d
JA
137 * @pipe: the pipe that the buffer belongs to
138 * @buf: the buffer to attempt to steal
139 *
140 * Description:
b51d63c6 141 * This function attempts to steal the &struct page attached to
0845718d
JA
142 * @buf. If successful, this function returns 0 and returns with
143 * the page locked. The caller may then reuse the page for whatever
b51d63c6 144 * he wishes; the typical use is insertion into a different file
0845718d
JA
145 * page cache.
146 */
330ab716
JA
147int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
148 struct pipe_buffer *buf)
5abc97aa 149{
46e678c9
JA
150 struct page *page = buf->page;
151
0845718d
JA
152 /*
153 * A reference of one is golden, that means that the owner of this
154 * page is the only one holding a reference to it. lock the page
155 * and return OK.
156 */
46e678c9 157 if (page_count(page) == 1) {
46e678c9
JA
158 lock_page(page);
159 return 0;
160 }
161
162 return 1;
5abc97aa 163}
51921cb7 164EXPORT_SYMBOL(generic_pipe_buf_steal);
5abc97aa 165
0845718d 166/**
b51d63c6 167 * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
0845718d
JA
168 * @pipe: the pipe that the buffer belongs to
169 * @buf: the buffer to get a reference to
170 *
171 * Description:
172 * This function grabs an extra reference to @buf. It's used in
173 * in the tee() system call, when we duplicate the buffers in one
174 * pipe into another.
175 */
176void generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
70524490
JA
177{
178 page_cache_get(buf->page);
179}
51921cb7 180EXPORT_SYMBOL(generic_pipe_buf_get);
70524490 181
0845718d
JA
182/**
183 * generic_pipe_buf_confirm - verify contents of the pipe buffer
79685b8d 184 * @info: the pipe that the buffer belongs to
0845718d
JA
185 * @buf: the buffer to confirm
186 *
187 * Description:
188 * This function does nothing, because the generic pipe code uses
189 * pages that are always good when inserted into the pipe.
190 */
cac36bb0
JA
191int generic_pipe_buf_confirm(struct pipe_inode_info *info,
192 struct pipe_buffer *buf)
f84d7519
JA
193{
194 return 0;
195}
51921cb7 196EXPORT_SYMBOL(generic_pipe_buf_confirm);
f84d7519 197
6818173b
MS
198/**
199 * generic_pipe_buf_release - put a reference to a &struct pipe_buffer
200 * @pipe: the pipe that the buffer belongs to
201 * @buf: the buffer to put a reference to
202 *
203 * Description:
204 * This function releases a reference to @buf.
205 */
206void generic_pipe_buf_release(struct pipe_inode_info *pipe,
207 struct pipe_buffer *buf)
208{
209 page_cache_release(buf->page);
210}
51921cb7 211EXPORT_SYMBOL(generic_pipe_buf_release);
6818173b 212
d4c3cca9 213static const struct pipe_buf_operations anon_pipe_buf_ops = {
1da177e4 214 .can_merge = 1,
cac36bb0 215 .confirm = generic_pipe_buf_confirm,
1da177e4 216 .release = anon_pipe_buf_release,
330ab716 217 .steal = generic_pipe_buf_steal,
f84d7519 218 .get = generic_pipe_buf_get,
1da177e4
LT
219};
220
9883035a
LT
221static const struct pipe_buf_operations packet_pipe_buf_ops = {
222 .can_merge = 0,
9883035a
LT
223 .confirm = generic_pipe_buf_confirm,
224 .release = anon_pipe_buf_release,
225 .steal = generic_pipe_buf_steal,
226 .get = generic_pipe_buf_get,
227};
228
1da177e4 229static ssize_t
fb9096a3 230pipe_read(struct kiocb *iocb, struct iov_iter *to)
1da177e4 231{
fb9096a3 232 size_t total_len = iov_iter_count(to);
ee0b3e67 233 struct file *filp = iocb->ki_filp;
de32ec4c 234 struct pipe_inode_info *pipe = filp->private_data;
1da177e4
LT
235 int do_wakeup;
236 ssize_t ret;
1da177e4 237
1da177e4
LT
238 /* Null read succeeds. */
239 if (unlikely(total_len == 0))
240 return 0;
241
242 do_wakeup = 0;
243 ret = 0;
ebec73f4 244 __pipe_lock(pipe);
1da177e4 245 for (;;) {
923f4f23 246 int bufs = pipe->nrbufs;
1da177e4 247 if (bufs) {
923f4f23
IM
248 int curbuf = pipe->curbuf;
249 struct pipe_buffer *buf = pipe->bufs + curbuf;
d4c3cca9 250 const struct pipe_buf_operations *ops = buf->ops;
1da177e4 251 size_t chars = buf->len;
637b58c2
AV
252 size_t written;
253 int error;
1da177e4
LT
254
255 if (chars > total_len)
256 chars = total_len;
257
cac36bb0 258 error = ops->confirm(pipe, buf);
f84d7519 259 if (error) {
5274f052 260 if (!ret)
e5953cbd 261 ret = error;
5274f052
JA
262 break;
263 }
f84d7519 264
fb9096a3 265 written = copy_page_to_iter(buf->page, buf->offset, chars, to);
637b58c2 266 if (unlikely(written < chars)) {
341b446b 267 if (!ret)
637b58c2 268 ret = -EFAULT;
1da177e4
LT
269 break;
270 }
271 ret += chars;
272 buf->offset += chars;
273 buf->len -= chars;
9883035a
LT
274
275 /* Was it a packet buffer? Clean up and exit */
276 if (buf->flags & PIPE_BUF_FLAG_PACKET) {
277 total_len = chars;
278 buf->len = 0;
279 }
280
1da177e4
LT
281 if (!buf->len) {
282 buf->ops = NULL;
923f4f23 283 ops->release(pipe, buf);
35f3d14d 284 curbuf = (curbuf + 1) & (pipe->buffers - 1);
923f4f23
IM
285 pipe->curbuf = curbuf;
286 pipe->nrbufs = --bufs;
1da177e4
LT
287 do_wakeup = 1;
288 }
289 total_len -= chars;
290 if (!total_len)
291 break; /* common path: read succeeded */
292 }
293 if (bufs) /* More to do? */
294 continue;
923f4f23 295 if (!pipe->writers)
1da177e4 296 break;
923f4f23 297 if (!pipe->waiting_writers) {
1da177e4
LT
298 /* syscall merging: Usually we must not sleep
299 * if O_NONBLOCK is set, or if we got some data.
300 * But if a writer sleeps in kernel space, then
301 * we can wait for that data without violating POSIX.
302 */
303 if (ret)
304 break;
305 if (filp->f_flags & O_NONBLOCK) {
306 ret = -EAGAIN;
307 break;
308 }
309 }
310 if (signal_pending(current)) {
341b446b
IM
311 if (!ret)
312 ret = -ERESTARTSYS;
1da177e4
LT
313 break;
314 }
315 if (do_wakeup) {
28e58ee8 316 wake_up_interruptible_sync_poll(&pipe->wait, POLLOUT | POLLWRNORM);
923f4f23 317 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
1da177e4 318 }
923f4f23 319 pipe_wait(pipe);
1da177e4 320 }
ebec73f4 321 __pipe_unlock(pipe);
341b446b
IM
322
323 /* Signal writers asynchronously that there is more room. */
1da177e4 324 if (do_wakeup) {
28e58ee8 325 wake_up_interruptible_sync_poll(&pipe->wait, POLLOUT | POLLWRNORM);
923f4f23 326 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
1da177e4
LT
327 }
328 if (ret > 0)
329 file_accessed(filp);
330 return ret;
331}
332
9883035a
LT
333static inline int is_packetized(struct file *file)
334{
335 return (file->f_flags & O_DIRECT) != 0;
336}
337
1da177e4 338static ssize_t
f0d1bec9 339pipe_write(struct kiocb *iocb, struct iov_iter *from)
1da177e4 340{
ee0b3e67 341 struct file *filp = iocb->ki_filp;
de32ec4c 342 struct pipe_inode_info *pipe = filp->private_data;
f0d1bec9
AV
343 ssize_t ret = 0;
344 int do_wakeup = 0;
345 size_t total_len = iov_iter_count(from);
1da177e4
LT
346 ssize_t chars;
347
1da177e4
LT
348 /* Null write succeeds. */
349 if (unlikely(total_len == 0))
350 return 0;
351
ebec73f4 352 __pipe_lock(pipe);
1da177e4 353
923f4f23 354 if (!pipe->readers) {
1da177e4
LT
355 send_sig(SIGPIPE, current, 0);
356 ret = -EPIPE;
357 goto out;
358 }
359
360 /* We try to merge small writes */
361 chars = total_len & (PAGE_SIZE-1); /* size of the last buffer */
923f4f23 362 if (pipe->nrbufs && chars != 0) {
341b446b 363 int lastbuf = (pipe->curbuf + pipe->nrbufs - 1) &
35f3d14d 364 (pipe->buffers - 1);
923f4f23 365 struct pipe_buffer *buf = pipe->bufs + lastbuf;
d4c3cca9 366 const struct pipe_buf_operations *ops = buf->ops;
1da177e4 367 int offset = buf->offset + buf->len;
341b446b 368
1da177e4 369 if (ops->can_merge && offset + chars <= PAGE_SIZE) {
f0d1bec9 370 int error = ops->confirm(pipe, buf);
f84d7519 371 if (error)
5274f052 372 goto out;
f84d7519 373
f0d1bec9
AV
374 ret = copy_page_from_iter(buf->page, offset, chars, from);
375 if (unlikely(ret < chars)) {
376 error = -EFAULT;
1da177e4 377 goto out;
f6762b7a 378 }
f0d1bec9 379 do_wakeup = 1;
1da177e4 380 buf->len += chars;
1da177e4 381 ret = chars;
f0d1bec9 382 if (!iov_iter_count(from))
1da177e4
LT
383 goto out;
384 }
385 }
386
387 for (;;) {
388 int bufs;
341b446b 389
923f4f23 390 if (!pipe->readers) {
1da177e4 391 send_sig(SIGPIPE, current, 0);
341b446b
IM
392 if (!ret)
393 ret = -EPIPE;
1da177e4
LT
394 break;
395 }
923f4f23 396 bufs = pipe->nrbufs;
35f3d14d
JA
397 if (bufs < pipe->buffers) {
398 int newbuf = (pipe->curbuf + bufs) & (pipe->buffers-1);
923f4f23
IM
399 struct pipe_buffer *buf = pipe->bufs + newbuf;
400 struct page *page = pipe->tmp_page;
f0d1bec9 401 int copied;
1da177e4
LT
402
403 if (!page) {
404 page = alloc_page(GFP_HIGHUSER);
405 if (unlikely(!page)) {
406 ret = ret ? : -ENOMEM;
407 break;
408 }
923f4f23 409 pipe->tmp_page = page;
1da177e4 410 }
341b446b 411 /* Always wake up, even if the copy fails. Otherwise
1da177e4
LT
412 * we lock up (O_NONBLOCK-)readers that sleep due to
413 * syscall merging.
414 * FIXME! Is this really true?
415 */
416 do_wakeup = 1;
f0d1bec9
AV
417 copied = copy_page_from_iter(page, 0, PAGE_SIZE, from);
418 if (unlikely(copied < PAGE_SIZE && iov_iter_count(from))) {
341b446b 419 if (!ret)
f0d1bec9 420 ret = -EFAULT;
1da177e4
LT
421 break;
422 }
f0d1bec9 423 ret += copied;
1da177e4
LT
424
425 /* Insert it into the buffer array */
426 buf->page = page;
427 buf->ops = &anon_pipe_buf_ops;
428 buf->offset = 0;
f0d1bec9 429 buf->len = copied;
9883035a
LT
430 buf->flags = 0;
431 if (is_packetized(filp)) {
432 buf->ops = &packet_pipe_buf_ops;
433 buf->flags = PIPE_BUF_FLAG_PACKET;
434 }
923f4f23
IM
435 pipe->nrbufs = ++bufs;
436 pipe->tmp_page = NULL;
1da177e4 437
f0d1bec9 438 if (!iov_iter_count(from))
1da177e4
LT
439 break;
440 }
35f3d14d 441 if (bufs < pipe->buffers)
1da177e4
LT
442 continue;
443 if (filp->f_flags & O_NONBLOCK) {
341b446b
IM
444 if (!ret)
445 ret = -EAGAIN;
1da177e4
LT
446 break;
447 }
448 if (signal_pending(current)) {
341b446b
IM
449 if (!ret)
450 ret = -ERESTARTSYS;
1da177e4
LT
451 break;
452 }
453 if (do_wakeup) {
28e58ee8 454 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
923f4f23 455 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1da177e4
LT
456 do_wakeup = 0;
457 }
923f4f23
IM
458 pipe->waiting_writers++;
459 pipe_wait(pipe);
460 pipe->waiting_writers--;
1da177e4
LT
461 }
462out:
ebec73f4 463 __pipe_unlock(pipe);
1da177e4 464 if (do_wakeup) {
28e58ee8 465 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
923f4f23 466 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1da177e4 467 }
7e775f46 468 if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) {
c3b2da31
JB
469 int err = file_update_time(filp);
470 if (err)
471 ret = err;
7e775f46 472 sb_end_write(file_inode(filp)->i_sb);
c3b2da31 473 }
1da177e4
LT
474 return ret;
475}
476
d59d0b1b 477static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1da177e4 478{
de32ec4c 479 struct pipe_inode_info *pipe = filp->private_data;
1da177e4
LT
480 int count, buf, nrbufs;
481
482 switch (cmd) {
483 case FIONREAD:
ebec73f4 484 __pipe_lock(pipe);
1da177e4 485 count = 0;
923f4f23
IM
486 buf = pipe->curbuf;
487 nrbufs = pipe->nrbufs;
1da177e4 488 while (--nrbufs >= 0) {
923f4f23 489 count += pipe->bufs[buf].len;
35f3d14d 490 buf = (buf+1) & (pipe->buffers - 1);
1da177e4 491 }
ebec73f4 492 __pipe_unlock(pipe);
923f4f23 493
1da177e4
LT
494 return put_user(count, (int __user *)arg);
495 default:
46ce341b 496 return -ENOIOCTLCMD;
1da177e4
LT
497 }
498}
499
500/* No kernel lock held - fine */
501static unsigned int
502pipe_poll(struct file *filp, poll_table *wait)
503{
504 unsigned int mask;
de32ec4c 505 struct pipe_inode_info *pipe = filp->private_data;
1da177e4
LT
506 int nrbufs;
507
923f4f23 508 poll_wait(filp, &pipe->wait, wait);
1da177e4
LT
509
510 /* Reading only -- no need for acquiring the semaphore. */
923f4f23 511 nrbufs = pipe->nrbufs;
1da177e4
LT
512 mask = 0;
513 if (filp->f_mode & FMODE_READ) {
514 mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
923f4f23 515 if (!pipe->writers && filp->f_version != pipe->w_counter)
1da177e4
LT
516 mask |= POLLHUP;
517 }
518
519 if (filp->f_mode & FMODE_WRITE) {
35f3d14d 520 mask |= (nrbufs < pipe->buffers) ? POLLOUT | POLLWRNORM : 0;
5e5d7a22
PE
521 /*
522 * Most Unices do not set POLLERR for FIFOs but on Linux they
523 * behave exactly like pipes for poll().
524 */
923f4f23 525 if (!pipe->readers)
1da177e4
LT
526 mask |= POLLERR;
527 }
528
529 return mask;
530}
531
b0d8d229
LT
532static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe)
533{
534 int kill = 0;
535
536 spin_lock(&inode->i_lock);
537 if (!--pipe->files) {
538 inode->i_pipe = NULL;
539 kill = 1;
540 }
541 spin_unlock(&inode->i_lock);
542
543 if (kill)
544 free_pipe_info(pipe);
545}
546
1da177e4 547static int
599a0ac1 548pipe_release(struct inode *inode, struct file *file)
1da177e4 549{
b0d8d229 550 struct pipe_inode_info *pipe = file->private_data;
923f4f23 551
ebec73f4 552 __pipe_lock(pipe);
599a0ac1
AV
553 if (file->f_mode & FMODE_READ)
554 pipe->readers--;
555 if (file->f_mode & FMODE_WRITE)
556 pipe->writers--;
341b446b 557
ba5bb147 558 if (pipe->readers || pipe->writers) {
28e58ee8 559 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM | POLLERR | POLLHUP);
923f4f23
IM
560 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
561 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
1da177e4 562 }
ebec73f4 563 __pipe_unlock(pipe);
ba5bb147 564
b0d8d229 565 put_pipe_info(inode, pipe);
1da177e4
LT
566 return 0;
567}
568
569static int
599a0ac1 570pipe_fasync(int fd, struct file *filp, int on)
1da177e4 571{
de32ec4c 572 struct pipe_inode_info *pipe = filp->private_data;
599a0ac1 573 int retval = 0;
1da177e4 574
ebec73f4 575 __pipe_lock(pipe);
599a0ac1
AV
576 if (filp->f_mode & FMODE_READ)
577 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
578 if ((filp->f_mode & FMODE_WRITE) && retval >= 0) {
341b446b 579 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
599a0ac1
AV
580 if (retval < 0 && (filp->f_mode & FMODE_READ))
581 /* this can happen only if on == T */
e5bc49ba
ON
582 fasync_helper(-1, filp, 0, &pipe->fasync_readers);
583 }
ebec73f4 584 __pipe_unlock(pipe);
60aa4924 585 return retval;
1da177e4
LT
586}
587
7bee130e 588struct pipe_inode_info *alloc_pipe_info(void)
3a326a2c 589{
923f4f23 590 struct pipe_inode_info *pipe;
3a326a2c 591
923f4f23
IM
592 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL);
593 if (pipe) {
35f3d14d
JA
594 pipe->bufs = kzalloc(sizeof(struct pipe_buffer) * PIPE_DEF_BUFFERS, GFP_KERNEL);
595 if (pipe->bufs) {
596 init_waitqueue_head(&pipe->wait);
597 pipe->r_counter = pipe->w_counter = 1;
35f3d14d 598 pipe->buffers = PIPE_DEF_BUFFERS;
72b0d9aa 599 mutex_init(&pipe->mutex);
35f3d14d
JA
600 return pipe;
601 }
602 kfree(pipe);
3a326a2c
IM
603 }
604
35f3d14d 605 return NULL;
3a326a2c
IM
606}
607
4b8a8f1e 608void free_pipe_info(struct pipe_inode_info *pipe)
1da177e4
LT
609{
610 int i;
1da177e4 611
35f3d14d 612 for (i = 0; i < pipe->buffers; i++) {
923f4f23 613 struct pipe_buffer *buf = pipe->bufs + i;
1da177e4 614 if (buf->ops)
923f4f23 615 buf->ops->release(pipe, buf);
1da177e4 616 }
923f4f23
IM
617 if (pipe->tmp_page)
618 __free_page(pipe->tmp_page);
35f3d14d 619 kfree(pipe->bufs);
923f4f23 620 kfree(pipe);
1da177e4
LT
621}
622
fa3536cc 623static struct vfsmount *pipe_mnt __read_mostly;
341b446b 624
c23fbb6b
ED
625/*
626 * pipefs_dname() is called from d_path().
627 */
628static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
629{
630 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
631 dentry->d_inode->i_ino);
632}
633
3ba13d17 634static const struct dentry_operations pipefs_dentry_operations = {
c23fbb6b 635 .d_dname = pipefs_dname,
1da177e4
LT
636};
637
638static struct inode * get_pipe_inode(void)
639{
a209dfc7 640 struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb);
923f4f23 641 struct pipe_inode_info *pipe;
1da177e4
LT
642
643 if (!inode)
644 goto fail_inode;
645
85fe4025
CH
646 inode->i_ino = get_next_ino();
647
7bee130e 648 pipe = alloc_pipe_info();
923f4f23 649 if (!pipe)
1da177e4 650 goto fail_iput;
3a326a2c 651
ba5bb147
AV
652 inode->i_pipe = pipe;
653 pipe->files = 2;
923f4f23 654 pipe->readers = pipe->writers = 1;
599a0ac1 655 inode->i_fop = &pipefifo_fops;
1da177e4
LT
656
657 /*
658 * Mark the inode dirty from the very beginning,
659 * that way it will never be moved to the dirty
660 * list because "mark_inode_dirty()" will think
661 * that it already _is_ on the dirty list.
662 */
663 inode->i_state = I_DIRTY;
664 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
da9592ed
DH
665 inode->i_uid = current_fsuid();
666 inode->i_gid = current_fsgid();
1da177e4 667 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
923f4f23 668
1da177e4
LT
669 return inode;
670
671fail_iput:
672 iput(inode);
341b446b 673
1da177e4
LT
674fail_inode:
675 return NULL;
676}
677
e4fad8e5 678int create_pipe_files(struct file **res, int flags)
1da177e4 679{
d6cbd281 680 int err;
e4fad8e5 681 struct inode *inode = get_pipe_inode();
d6cbd281 682 struct file *f;
2c48b9c4 683 struct path path;
e4fad8e5 684 static struct qstr name = { .name = "" };
1da177e4 685
1da177e4 686 if (!inode)
e4fad8e5 687 return -ENFILE;
1da177e4 688
d6cbd281 689 err = -ENOMEM;
4b936885 690 path.dentry = d_alloc_pseudo(pipe_mnt->mnt_sb, &name);
2c48b9c4 691 if (!path.dentry)
d6cbd281 692 goto err_inode;
2c48b9c4 693 path.mnt = mntget(pipe_mnt);
341b446b 694
2c48b9c4 695 d_instantiate(path.dentry, inode);
430e285e
DH
696
697 err = -ENFILE;
599a0ac1 698 f = alloc_file(&path, FMODE_WRITE, &pipefifo_fops);
39b65252 699 if (IS_ERR(f))
430e285e 700 goto err_dentry;
341b446b 701
9883035a 702 f->f_flags = O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT));
de32ec4c 703 f->private_data = inode->i_pipe;
d6cbd281 704
599a0ac1 705 res[0] = alloc_file(&path, FMODE_READ, &pipefifo_fops);
39b65252 706 if (IS_ERR(res[0]))
e4fad8e5
AV
707 goto err_file;
708
709 path_get(&path);
de32ec4c 710 res[0]->private_data = inode->i_pipe;
e4fad8e5
AV
711 res[0]->f_flags = O_RDONLY | (flags & O_NONBLOCK);
712 res[1] = f;
713 return 0;
1da177e4 714
e4fad8e5
AV
715err_file:
716 put_filp(f);
717err_dentry:
4b8a8f1e 718 free_pipe_info(inode->i_pipe);
2c48b9c4 719 path_put(&path);
e4fad8e5 720 return err;
ed152437 721
e4fad8e5 722err_inode:
4b8a8f1e 723 free_pipe_info(inode->i_pipe);
1da177e4 724 iput(inode);
e4fad8e5 725 return err;
d6cbd281
AK
726}
727
5b249b1b 728static int __do_pipe_flags(int *fd, struct file **files, int flags)
d6cbd281 729{
d6cbd281
AK
730 int error;
731 int fdw, fdr;
732
9883035a 733 if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT))
ed8cae8b
UD
734 return -EINVAL;
735
e4fad8e5
AV
736 error = create_pipe_files(files, flags);
737 if (error)
738 return error;
d6cbd281 739
ed8cae8b 740 error = get_unused_fd_flags(flags);
d6cbd281
AK
741 if (error < 0)
742 goto err_read_pipe;
743 fdr = error;
744
ed8cae8b 745 error = get_unused_fd_flags(flags);
d6cbd281
AK
746 if (error < 0)
747 goto err_fdr;
748 fdw = error;
749
157cf649 750 audit_fd_pair(fdr, fdw);
d6cbd281
AK
751 fd[0] = fdr;
752 fd[1] = fdw;
d6cbd281
AK
753 return 0;
754
755 err_fdr:
756 put_unused_fd(fdr);
757 err_read_pipe:
e4fad8e5
AV
758 fput(files[0]);
759 fput(files[1]);
d6cbd281 760 return error;
1da177e4
LT
761}
762
5b249b1b
AV
763int do_pipe_flags(int *fd, int flags)
764{
765 struct file *files[2];
766 int error = __do_pipe_flags(fd, files, flags);
767 if (!error) {
768 fd_install(fd[0], files[0]);
769 fd_install(fd[1], files[1]);
770 }
771 return error;
772}
773
d35c7b0e
UD
774/*
775 * sys_pipe() is the normal C calling standard for creating
776 * a pipe. It's not the way Unix traditionally does this, though.
777 */
d4e82042 778SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
d35c7b0e 779{
5b249b1b 780 struct file *files[2];
d35c7b0e
UD
781 int fd[2];
782 int error;
783
5b249b1b 784 error = __do_pipe_flags(fd, files, flags);
d35c7b0e 785 if (!error) {
5b249b1b
AV
786 if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) {
787 fput(files[0]);
788 fput(files[1]);
789 put_unused_fd(fd[0]);
790 put_unused_fd(fd[1]);
d35c7b0e 791 error = -EFAULT;
5b249b1b
AV
792 } else {
793 fd_install(fd[0], files[0]);
794 fd_install(fd[1], files[1]);
ba719bae 795 }
d35c7b0e
UD
796 }
797 return error;
798}
799
2b664219 800SYSCALL_DEFINE1(pipe, int __user *, fildes)
ed8cae8b
UD
801{
802 return sys_pipe2(fildes, 0);
803}
804
fc7478a2 805static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt)
f776c738
AV
806{
807 int cur = *cnt;
808
809 while (cur == *cnt) {
fc7478a2 810 pipe_wait(pipe);
f776c738
AV
811 if (signal_pending(current))
812 break;
813 }
814 return cur == *cnt ? -ERESTARTSYS : 0;
815}
816
fc7478a2 817static void wake_up_partner(struct pipe_inode_info *pipe)
f776c738 818{
fc7478a2 819 wake_up_interruptible(&pipe->wait);
f776c738
AV
820}
821
822static int fifo_open(struct inode *inode, struct file *filp)
823{
824 struct pipe_inode_info *pipe;
599a0ac1 825 bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC;
f776c738
AV
826 int ret;
827
ba5bb147
AV
828 filp->f_version = 0;
829
830 spin_lock(&inode->i_lock);
831 if (inode->i_pipe) {
832 pipe = inode->i_pipe;
833 pipe->files++;
834 spin_unlock(&inode->i_lock);
835 } else {
836 spin_unlock(&inode->i_lock);
7bee130e 837 pipe = alloc_pipe_info();
f776c738 838 if (!pipe)
ba5bb147
AV
839 return -ENOMEM;
840 pipe->files = 1;
841 spin_lock(&inode->i_lock);
842 if (unlikely(inode->i_pipe)) {
843 inode->i_pipe->files++;
844 spin_unlock(&inode->i_lock);
4b8a8f1e 845 free_pipe_info(pipe);
ba5bb147
AV
846 pipe = inode->i_pipe;
847 } else {
848 inode->i_pipe = pipe;
849 spin_unlock(&inode->i_lock);
850 }
f776c738 851 }
de32ec4c 852 filp->private_data = pipe;
ba5bb147
AV
853 /* OK, we have a pipe and it's pinned down */
854
ebec73f4 855 __pipe_lock(pipe);
f776c738
AV
856
857 /* We can only do regular read/write on fifos */
858 filp->f_mode &= (FMODE_READ | FMODE_WRITE);
859
860 switch (filp->f_mode) {
861 case FMODE_READ:
862 /*
863 * O_RDONLY
864 * POSIX.1 says that O_NONBLOCK means return with the FIFO
865 * opened, even when there is no process writing the FIFO.
866 */
f776c738
AV
867 pipe->r_counter++;
868 if (pipe->readers++ == 0)
fc7478a2 869 wake_up_partner(pipe);
f776c738 870
599a0ac1 871 if (!is_pipe && !pipe->writers) {
f776c738
AV
872 if ((filp->f_flags & O_NONBLOCK)) {
873 /* suppress POLLHUP until we have
874 * seen a writer */
875 filp->f_version = pipe->w_counter;
876 } else {
fc7478a2 877 if (wait_for_partner(pipe, &pipe->w_counter))
f776c738
AV
878 goto err_rd;
879 }
880 }
881 break;
882
883 case FMODE_WRITE:
884 /*
885 * O_WRONLY
886 * POSIX.1 says that O_NONBLOCK means return -1 with
887 * errno=ENXIO when there is no process reading the FIFO.
888 */
889 ret = -ENXIO;
599a0ac1 890 if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers)
f776c738
AV
891 goto err;
892
f776c738
AV
893 pipe->w_counter++;
894 if (!pipe->writers++)
fc7478a2 895 wake_up_partner(pipe);
f776c738 896
599a0ac1 897 if (!is_pipe && !pipe->readers) {
fc7478a2 898 if (wait_for_partner(pipe, &pipe->r_counter))
f776c738
AV
899 goto err_wr;
900 }
901 break;
902
903 case FMODE_READ | FMODE_WRITE:
904 /*
905 * O_RDWR
906 * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
907 * This implementation will NEVER block on a O_RDWR open, since
908 * the process can at least talk to itself.
909 */
f776c738
AV
910
911 pipe->readers++;
912 pipe->writers++;
913 pipe->r_counter++;
914 pipe->w_counter++;
915 if (pipe->readers == 1 || pipe->writers == 1)
fc7478a2 916 wake_up_partner(pipe);
f776c738
AV
917 break;
918
919 default:
920 ret = -EINVAL;
921 goto err;
922 }
923
924 /* Ok! */
ebec73f4 925 __pipe_unlock(pipe);
f776c738
AV
926 return 0;
927
928err_rd:
929 if (!--pipe->readers)
930 wake_up_interruptible(&pipe->wait);
931 ret = -ERESTARTSYS;
932 goto err;
933
934err_wr:
935 if (!--pipe->writers)
936 wake_up_interruptible(&pipe->wait);
937 ret = -ERESTARTSYS;
938 goto err;
939
940err:
ebec73f4 941 __pipe_unlock(pipe);
b0d8d229
LT
942
943 put_pipe_info(inode, pipe);
f776c738
AV
944 return ret;
945}
946
599a0ac1
AV
947const struct file_operations pipefifo_fops = {
948 .open = fifo_open,
949 .llseek = no_llseek,
fb9096a3
AV
950 .read = new_sync_read,
951 .read_iter = pipe_read,
f0d1bec9
AV
952 .write = new_sync_write,
953 .write_iter = pipe_write,
599a0ac1
AV
954 .poll = pipe_poll,
955 .unlocked_ioctl = pipe_ioctl,
956 .release = pipe_release,
957 .fasync = pipe_fasync,
f776c738
AV
958};
959
35f3d14d
JA
960/*
961 * Allocate a new array of pipe buffers and copy the info over. Returns the
962 * pipe size if successful, or return -ERROR on error.
963 */
b9598db3 964static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long nr_pages)
35f3d14d
JA
965{
966 struct pipe_buffer *bufs;
967
35f3d14d
JA
968 /*
969 * We can shrink the pipe, if arg >= pipe->nrbufs. Since we don't
970 * expect a lot of shrink+grow operations, just free and allocate
971 * again like we would do for growing. If the pipe currently
972 * contains more buffers than arg, then return busy.
973 */
b9598db3 974 if (nr_pages < pipe->nrbufs)
35f3d14d
JA
975 return -EBUSY;
976
2ccd4f4d 977 bufs = kcalloc(nr_pages, sizeof(*bufs), GFP_KERNEL | __GFP_NOWARN);
35f3d14d
JA
978 if (unlikely(!bufs))
979 return -ENOMEM;
980
981 /*
982 * The pipe array wraps around, so just start the new one at zero
983 * and adjust the indexes.
984 */
985 if (pipe->nrbufs) {
1d862f41
MS
986 unsigned int tail;
987 unsigned int head;
35f3d14d 988
1d862f41
MS
989 tail = pipe->curbuf + pipe->nrbufs;
990 if (tail < pipe->buffers)
991 tail = 0;
992 else
993 tail &= (pipe->buffers - 1);
994
995 head = pipe->nrbufs - tail;
35f3d14d
JA
996 if (head)
997 memcpy(bufs, pipe->bufs + pipe->curbuf, head * sizeof(struct pipe_buffer));
998 if (tail)
1d862f41 999 memcpy(bufs + head, pipe->bufs, tail * sizeof(struct pipe_buffer));
35f3d14d
JA
1000 }
1001
1002 pipe->curbuf = 0;
1003 kfree(pipe->bufs);
1004 pipe->bufs = bufs;
b9598db3
JA
1005 pipe->buffers = nr_pages;
1006 return nr_pages * PAGE_SIZE;
35f3d14d
JA
1007}
1008
ff9da691
JA
1009/*
1010 * Currently we rely on the pipe array holding a power-of-2 number
1011 * of pages.
1012 */
1013static inline unsigned int round_pipe_size(unsigned int size)
1014{
1015 unsigned long nr_pages;
1016
1017 nr_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1018 return roundup_pow_of_two(nr_pages) << PAGE_SHIFT;
1019}
1020
1021/*
1022 * This should work even if CONFIG_PROC_FS isn't set, as proc_dointvec_minmax
1023 * will return an error.
1024 */
1025int pipe_proc_fn(struct ctl_table *table, int write, void __user *buf,
1026 size_t *lenp, loff_t *ppos)
1027{
1028 int ret;
1029
1030 ret = proc_dointvec_minmax(table, write, buf, lenp, ppos);
1031 if (ret < 0 || !write)
1032 return ret;
1033
1034 pipe_max_size = round_pipe_size(pipe_max_size);
1035 return ret;
1036}
1037
72083646
LT
1038/*
1039 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1040 * location, so checking ->i_pipe is not enough to verify that this is a
1041 * pipe.
1042 */
1043struct pipe_inode_info *get_pipe_info(struct file *file)
1044{
de32ec4c 1045 return file->f_op == &pipefifo_fops ? file->private_data : NULL;
72083646
LT
1046}
1047
35f3d14d
JA
1048long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
1049{
1050 struct pipe_inode_info *pipe;
1051 long ret;
1052
c66fb347 1053 pipe = get_pipe_info(file);
35f3d14d
JA
1054 if (!pipe)
1055 return -EBADF;
1056
ebec73f4 1057 __pipe_lock(pipe);
35f3d14d
JA
1058
1059 switch (cmd) {
b9598db3 1060 case F_SETPIPE_SZ: {
ff9da691 1061 unsigned int size, nr_pages;
b9598db3 1062
ff9da691
JA
1063 size = round_pipe_size(arg);
1064 nr_pages = size >> PAGE_SHIFT;
b9598db3 1065
6db40cf0
MS
1066 ret = -EINVAL;
1067 if (!nr_pages)
1068 goto out;
1069
ff9da691 1070 if (!capable(CAP_SYS_RESOURCE) && size > pipe_max_size) {
b4ca7615 1071 ret = -EPERM;
cc967be5 1072 goto out;
cc967be5 1073 }
ff9da691 1074 ret = pipe_set_size(pipe, nr_pages);
35f3d14d 1075 break;
b9598db3 1076 }
35f3d14d 1077 case F_GETPIPE_SZ:
b9598db3 1078 ret = pipe->buffers * PAGE_SIZE;
35f3d14d
JA
1079 break;
1080 default:
1081 ret = -EINVAL;
1082 break;
1083 }
1084
cc967be5 1085out:
ebec73f4 1086 __pipe_unlock(pipe);
35f3d14d
JA
1087 return ret;
1088}
1089
ff0c7d15
NP
1090static const struct super_operations pipefs_ops = {
1091 .destroy_inode = free_inode_nonrcu,
d70ef97b 1092 .statfs = simple_statfs,
ff0c7d15
NP
1093};
1094
1da177e4
LT
1095/*
1096 * pipefs should _never_ be mounted by userland - too much of security hassle,
1097 * no real gain from having the whole whorehouse mounted. So we don't need
1098 * any operations on the root directory. However, we need a non-trivial
1099 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1100 */
51139ada
AV
1101static struct dentry *pipefs_mount(struct file_system_type *fs_type,
1102 int flags, const char *dev_name, void *data)
1da177e4 1103{
c74a1cbb
AV
1104 return mount_pseudo(fs_type, "pipe:", &pipefs_ops,
1105 &pipefs_dentry_operations, PIPEFS_MAGIC);
1da177e4
LT
1106}
1107
1108static struct file_system_type pipe_fs_type = {
1109 .name = "pipefs",
51139ada 1110 .mount = pipefs_mount,
1da177e4
LT
1111 .kill_sb = kill_anon_super,
1112};
1113
1114static int __init init_pipe_fs(void)
1115{
1116 int err = register_filesystem(&pipe_fs_type);
341b446b 1117
1da177e4
LT
1118 if (!err) {
1119 pipe_mnt = kern_mount(&pipe_fs_type);
1120 if (IS_ERR(pipe_mnt)) {
1121 err = PTR_ERR(pipe_mnt);
1122 unregister_filesystem(&pipe_fs_type);
1123 }
1124 }
1125 return err;
1126}
1127
1da177e4 1128fs_initcall(init_pipe_fs);