4 * Copyright (C) 1991, 1992, 1999 Linus Torvalds
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>
14 #include <linux/log2.h>
15 #include <linux/mount.h>
16 #include <linux/magic.h>
17 #include <linux/pipe_fs_i.h>
18 #include <linux/uio.h>
19 #include <linux/highmem.h>
20 #include <linux/pagemap.h>
21 #include <linux/audit.h>
22 #include <linux/syscalls.h>
23 #include <linux/fcntl.h>
24 #include <linux/aio.h>
26 #include <asm/uaccess.h>
27 #include <asm/ioctls.h>
32 * The max size that a non-root user is allowed to grow the pipe. Can
33 * be set by root in /proc/sys/fs/pipe-max-size
35 unsigned int pipe_max_size
= 1048576;
38 * Minimum pipe size, as required by POSIX
40 unsigned int pipe_min_size
= PAGE_SIZE
;
43 * We use a start+len construction, which provides full use of the
45 * -- Florian Coosmann (FGC)
47 * Reads with count = 0 should always return 0.
48 * -- Julian Bradfield 1999-06-07.
50 * FIFOs and Pipes now generate SIGIO for both readers and writers.
51 * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
53 * pipe_read & write cleanup
54 * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
57 static void pipe_lock_nested(struct pipe_inode_info
*pipe
, int subclass
)
60 mutex_lock_nested(&pipe
->mutex
, subclass
);
63 void pipe_lock(struct pipe_inode_info
*pipe
)
66 * pipe_lock() nests non-pipe inode locks (for writing to a file)
68 pipe_lock_nested(pipe
, I_MUTEX_PARENT
);
70 EXPORT_SYMBOL(pipe_lock
);
72 void pipe_unlock(struct pipe_inode_info
*pipe
)
75 mutex_unlock(&pipe
->mutex
);
77 EXPORT_SYMBOL(pipe_unlock
);
79 static inline void __pipe_lock(struct pipe_inode_info
*pipe
)
81 mutex_lock_nested(&pipe
->mutex
, I_MUTEX_PARENT
);
84 static inline void __pipe_unlock(struct pipe_inode_info
*pipe
)
86 mutex_unlock(&pipe
->mutex
);
89 void pipe_double_lock(struct pipe_inode_info
*pipe1
,
90 struct pipe_inode_info
*pipe2
)
92 BUG_ON(pipe1
== pipe2
);
95 pipe_lock_nested(pipe1
, I_MUTEX_PARENT
);
96 pipe_lock_nested(pipe2
, I_MUTEX_CHILD
);
98 pipe_lock_nested(pipe2
, I_MUTEX_PARENT
);
99 pipe_lock_nested(pipe1
, I_MUTEX_CHILD
);
103 /* Drop the inode semaphore and wait for a pipe event, atomically */
104 void pipe_wait(struct pipe_inode_info
*pipe
)
109 * Pipes are system-local resources, so sleeping on them
110 * is considered a noninteractive wait:
112 prepare_to_wait(&pipe
->wait
, &wait
, TASK_INTERRUPTIBLE
);
115 finish_wait(&pipe
->wait
, &wait
);
119 static void anon_pipe_buf_release(struct pipe_inode_info
*pipe
,
120 struct pipe_buffer
*buf
)
122 struct page
*page
= buf
->page
;
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
127 * allocation cache. (Otherwise just release our reference to it)
129 if (page_count(page
) == 1 && !pipe
->tmp_page
)
130 pipe
->tmp_page
= page
;
132 page_cache_release(page
);
136 * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
137 * @pipe: the pipe that the buffer belongs to
138 * @buf: the buffer to attempt to steal
141 * This function attempts to steal the &struct page attached to
142 * @buf. If successful, this function returns 0 and returns with
143 * the page locked. The caller may then reuse the page for whatever
144 * he wishes; the typical use is insertion into a different file
147 int generic_pipe_buf_steal(struct pipe_inode_info
*pipe
,
148 struct pipe_buffer
*buf
)
150 struct page
*page
= buf
->page
;
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
157 if (page_count(page
) == 1) {
164 EXPORT_SYMBOL(generic_pipe_buf_steal
);
167 * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
168 * @pipe: the pipe that the buffer belongs to
169 * @buf: the buffer to get a reference to
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
176 void generic_pipe_buf_get(struct pipe_inode_info
*pipe
, struct pipe_buffer
*buf
)
178 page_cache_get(buf
->page
);
180 EXPORT_SYMBOL(generic_pipe_buf_get
);
183 * generic_pipe_buf_confirm - verify contents of the pipe buffer
184 * @info: the pipe that the buffer belongs to
185 * @buf: the buffer to confirm
188 * This function does nothing, because the generic pipe code uses
189 * pages that are always good when inserted into the pipe.
191 int generic_pipe_buf_confirm(struct pipe_inode_info
*info
,
192 struct pipe_buffer
*buf
)
196 EXPORT_SYMBOL(generic_pipe_buf_confirm
);
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
204 * This function releases a reference to @buf.
206 void generic_pipe_buf_release(struct pipe_inode_info
*pipe
,
207 struct pipe_buffer
*buf
)
209 page_cache_release(buf
->page
);
211 EXPORT_SYMBOL(generic_pipe_buf_release
);
213 static const struct pipe_buf_operations anon_pipe_buf_ops
= {
215 .confirm
= generic_pipe_buf_confirm
,
216 .release
= anon_pipe_buf_release
,
217 .steal
= generic_pipe_buf_steal
,
218 .get
= generic_pipe_buf_get
,
221 static const struct pipe_buf_operations packet_pipe_buf_ops
= {
223 .confirm
= generic_pipe_buf_confirm
,
224 .release
= anon_pipe_buf_release
,
225 .steal
= generic_pipe_buf_steal
,
226 .get
= generic_pipe_buf_get
,
230 pipe_read(struct kiocb
*iocb
, struct iov_iter
*to
)
232 size_t total_len
= iov_iter_count(to
);
233 struct file
*filp
= iocb
->ki_filp
;
234 struct pipe_inode_info
*pipe
= filp
->private_data
;
238 /* Null read succeeds. */
239 if (unlikely(total_len
== 0))
246 int bufs
= pipe
->nrbufs
;
248 int curbuf
= pipe
->curbuf
;
249 struct pipe_buffer
*buf
= pipe
->bufs
+ curbuf
;
250 const struct pipe_buf_operations
*ops
= buf
->ops
;
251 size_t chars
= buf
->len
;
255 if (chars
> total_len
)
258 error
= ops
->confirm(pipe
, buf
);
265 written
= copy_page_to_iter(buf
->page
, buf
->offset
, chars
, to
);
266 if (unlikely(written
< chars
)) {
272 buf
->offset
+= chars
;
275 /* Was it a packet buffer? Clean up and exit */
276 if (buf
->flags
& PIPE_BUF_FLAG_PACKET
) {
283 ops
->release(pipe
, buf
);
284 curbuf
= (curbuf
+ 1) & (pipe
->buffers
- 1);
285 pipe
->curbuf
= curbuf
;
286 pipe
->nrbufs
= --bufs
;
291 break; /* common path: read succeeded */
293 if (bufs
) /* More to do? */
297 if (!pipe
->waiting_writers
) {
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.
305 if (filp
->f_flags
& O_NONBLOCK
) {
310 if (signal_pending(current
)) {
316 wake_up_interruptible_sync_poll(&pipe
->wait
, POLLOUT
| POLLWRNORM
);
317 kill_fasync(&pipe
->fasync_writers
, SIGIO
, POLL_OUT
);
323 /* Signal writers asynchronously that there is more room. */
325 wake_up_interruptible_sync_poll(&pipe
->wait
, POLLOUT
| POLLWRNORM
);
326 kill_fasync(&pipe
->fasync_writers
, SIGIO
, POLL_OUT
);
333 static inline int is_packetized(struct file
*file
)
335 return (file
->f_flags
& O_DIRECT
) != 0;
339 pipe_write(struct kiocb
*iocb
, struct iov_iter
*from
)
341 struct file
*filp
= iocb
->ki_filp
;
342 struct pipe_inode_info
*pipe
= filp
->private_data
;
345 size_t total_len
= iov_iter_count(from
);
348 /* Null write succeeds. */
349 if (unlikely(total_len
== 0))
354 if (!pipe
->readers
) {
355 send_sig(SIGPIPE
, current
, 0);
360 /* We try to merge small writes */
361 chars
= total_len
& (PAGE_SIZE
-1); /* size of the last buffer */
362 if (pipe
->nrbufs
&& chars
!= 0) {
363 int lastbuf
= (pipe
->curbuf
+ pipe
->nrbufs
- 1) &
365 struct pipe_buffer
*buf
= pipe
->bufs
+ lastbuf
;
366 const struct pipe_buf_operations
*ops
= buf
->ops
;
367 int offset
= buf
->offset
+ buf
->len
;
369 if (ops
->can_merge
&& offset
+ chars
<= PAGE_SIZE
) {
370 int error
= ops
->confirm(pipe
, buf
);
374 ret
= copy_page_from_iter(buf
->page
, offset
, chars
, from
);
375 if (unlikely(ret
< chars
)) {
382 if (!iov_iter_count(from
))
390 if (!pipe
->readers
) {
391 send_sig(SIGPIPE
, current
, 0);
397 if (bufs
< pipe
->buffers
) {
398 int newbuf
= (pipe
->curbuf
+ bufs
) & (pipe
->buffers
-1);
399 struct pipe_buffer
*buf
= pipe
->bufs
+ newbuf
;
400 struct page
*page
= pipe
->tmp_page
;
404 page
= alloc_page(GFP_HIGHUSER
);
405 if (unlikely(!page
)) {
406 ret
= ret
? : -ENOMEM
;
409 pipe
->tmp_page
= page
;
411 /* Always wake up, even if the copy fails. Otherwise
412 * we lock up (O_NONBLOCK-)readers that sleep due to
414 * FIXME! Is this really true?
417 copied
= copy_page_from_iter(page
, 0, PAGE_SIZE
, from
);
418 if (unlikely(copied
< PAGE_SIZE
&& iov_iter_count(from
))) {
425 /* Insert it into the buffer array */
427 buf
->ops
= &anon_pipe_buf_ops
;
431 if (is_packetized(filp
)) {
432 buf
->ops
= &packet_pipe_buf_ops
;
433 buf
->flags
= PIPE_BUF_FLAG_PACKET
;
435 pipe
->nrbufs
= ++bufs
;
436 pipe
->tmp_page
= NULL
;
438 if (!iov_iter_count(from
))
441 if (bufs
< pipe
->buffers
)
443 if (filp
->f_flags
& O_NONBLOCK
) {
448 if (signal_pending(current
)) {
454 wake_up_interruptible_sync_poll(&pipe
->wait
, POLLIN
| POLLRDNORM
);
455 kill_fasync(&pipe
->fasync_readers
, SIGIO
, POLL_IN
);
458 pipe
->waiting_writers
++;
460 pipe
->waiting_writers
--;
465 wake_up_interruptible_sync_poll(&pipe
->wait
, POLLIN
| POLLRDNORM
);
466 kill_fasync(&pipe
->fasync_readers
, SIGIO
, POLL_IN
);
468 if (ret
> 0 && sb_start_write_trylock(file_inode(filp
)->i_sb
)) {
469 int err
= file_update_time(filp
);
472 sb_end_write(file_inode(filp
)->i_sb
);
477 static long pipe_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
479 struct pipe_inode_info
*pipe
= filp
->private_data
;
480 int count
, buf
, nrbufs
;
487 nrbufs
= pipe
->nrbufs
;
488 while (--nrbufs
>= 0) {
489 count
+= pipe
->bufs
[buf
].len
;
490 buf
= (buf
+1) & (pipe
->buffers
- 1);
494 return put_user(count
, (int __user
*)arg
);
500 /* No kernel lock held - fine */
502 pipe_poll(struct file
*filp
, poll_table
*wait
)
505 struct pipe_inode_info
*pipe
= filp
->private_data
;
508 poll_wait(filp
, &pipe
->wait
, wait
);
510 /* Reading only -- no need for acquiring the semaphore. */
511 nrbufs
= pipe
->nrbufs
;
513 if (filp
->f_mode
& FMODE_READ
) {
514 mask
= (nrbufs
> 0) ? POLLIN
| POLLRDNORM
: 0;
515 if (!pipe
->writers
&& filp
->f_version
!= pipe
->w_counter
)
519 if (filp
->f_mode
& FMODE_WRITE
) {
520 mask
|= (nrbufs
< pipe
->buffers
) ? POLLOUT
| POLLWRNORM
: 0;
522 * Most Unices do not set POLLERR for FIFOs but on Linux they
523 * behave exactly like pipes for poll().
532 static void put_pipe_info(struct inode
*inode
, struct pipe_inode_info
*pipe
)
536 spin_lock(&inode
->i_lock
);
537 if (!--pipe
->files
) {
538 inode
->i_pipe
= NULL
;
541 spin_unlock(&inode
->i_lock
);
544 free_pipe_info(pipe
);
548 pipe_release(struct inode
*inode
, struct file
*file
)
550 struct pipe_inode_info
*pipe
= file
->private_data
;
553 if (file
->f_mode
& FMODE_READ
)
555 if (file
->f_mode
& FMODE_WRITE
)
558 if (pipe
->readers
|| pipe
->writers
) {
559 wake_up_interruptible_sync_poll(&pipe
->wait
, POLLIN
| POLLOUT
| POLLRDNORM
| POLLWRNORM
| POLLERR
| POLLHUP
);
560 kill_fasync(&pipe
->fasync_readers
, SIGIO
, POLL_IN
);
561 kill_fasync(&pipe
->fasync_writers
, SIGIO
, POLL_OUT
);
565 put_pipe_info(inode
, pipe
);
570 pipe_fasync(int fd
, struct file
*filp
, int on
)
572 struct pipe_inode_info
*pipe
= filp
->private_data
;
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) {
579 retval
= fasync_helper(fd
, filp
, on
, &pipe
->fasync_writers
);
580 if (retval
< 0 && (filp
->f_mode
& FMODE_READ
))
581 /* this can happen only if on == T */
582 fasync_helper(-1, filp
, 0, &pipe
->fasync_readers
);
588 struct pipe_inode_info
*alloc_pipe_info(void)
590 struct pipe_inode_info
*pipe
;
592 pipe
= kzalloc(sizeof(struct pipe_inode_info
), GFP_KERNEL
);
594 pipe
->bufs
= kzalloc(sizeof(struct pipe_buffer
) * PIPE_DEF_BUFFERS
, GFP_KERNEL
);
596 init_waitqueue_head(&pipe
->wait
);
597 pipe
->r_counter
= pipe
->w_counter
= 1;
598 pipe
->buffers
= PIPE_DEF_BUFFERS
;
599 mutex_init(&pipe
->mutex
);
608 void free_pipe_info(struct pipe_inode_info
*pipe
)
612 for (i
= 0; i
< pipe
->buffers
; i
++) {
613 struct pipe_buffer
*buf
= pipe
->bufs
+ i
;
615 buf
->ops
->release(pipe
, buf
);
618 __free_page(pipe
->tmp_page
);
623 static struct vfsmount
*pipe_mnt __read_mostly
;
626 * pipefs_dname() is called from d_path().
628 static char *pipefs_dname(struct dentry
*dentry
, char *buffer
, int buflen
)
630 return dynamic_dname(dentry
, buffer
, buflen
, "pipe:[%lu]",
631 dentry
->d_inode
->i_ino
);
634 static const struct dentry_operations pipefs_dentry_operations
= {
635 .d_dname
= pipefs_dname
,
638 static struct inode
* get_pipe_inode(void)
640 struct inode
*inode
= new_inode_pseudo(pipe_mnt
->mnt_sb
);
641 struct pipe_inode_info
*pipe
;
646 inode
->i_ino
= get_next_ino();
648 pipe
= alloc_pipe_info();
652 inode
->i_pipe
= pipe
;
654 pipe
->readers
= pipe
->writers
= 1;
655 inode
->i_fop
= &pipefifo_fops
;
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.
663 inode
->i_state
= I_DIRTY
;
664 inode
->i_mode
= S_IFIFO
| S_IRUSR
| S_IWUSR
;
665 inode
->i_uid
= current_fsuid();
666 inode
->i_gid
= current_fsgid();
667 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
678 int create_pipe_files(struct file
**res
, int flags
)
681 struct inode
*inode
= get_pipe_inode();
684 static struct qstr name
= { .name
= "" };
690 path
.dentry
= d_alloc_pseudo(pipe_mnt
->mnt_sb
, &name
);
693 path
.mnt
= mntget(pipe_mnt
);
695 d_instantiate(path
.dentry
, inode
);
698 f
= alloc_file(&path
, FMODE_WRITE
, &pipefifo_fops
);
702 f
->f_flags
= O_WRONLY
| (flags
& (O_NONBLOCK
| O_DIRECT
));
703 f
->private_data
= inode
->i_pipe
;
705 res
[0] = alloc_file(&path
, FMODE_READ
, &pipefifo_fops
);
710 res
[0]->private_data
= inode
->i_pipe
;
711 res
[0]->f_flags
= O_RDONLY
| (flags
& O_NONBLOCK
);
718 free_pipe_info(inode
->i_pipe
);
723 free_pipe_info(inode
->i_pipe
);
728 static int __do_pipe_flags(int *fd
, struct file
**files
, int flags
)
733 if (flags
& ~(O_CLOEXEC
| O_NONBLOCK
| O_DIRECT
))
736 error
= create_pipe_files(files
, flags
);
740 error
= get_unused_fd_flags(flags
);
745 error
= get_unused_fd_flags(flags
);
750 audit_fd_pair(fdr
, fdw
);
763 int do_pipe_flags(int *fd
, int flags
)
765 struct file
*files
[2];
766 int error
= __do_pipe_flags(fd
, files
, flags
);
768 fd_install(fd
[0], files
[0]);
769 fd_install(fd
[1], files
[1]);
775 * sys_pipe() is the normal C calling standard for creating
776 * a pipe. It's not the way Unix traditionally does this, though.
778 SYSCALL_DEFINE2(pipe2
, int __user
*, fildes
, int, flags
)
780 struct file
*files
[2];
784 error
= __do_pipe_flags(fd
, files
, flags
);
786 if (unlikely(copy_to_user(fildes
, fd
, sizeof(fd
)))) {
789 put_unused_fd(fd
[0]);
790 put_unused_fd(fd
[1]);
793 fd_install(fd
[0], files
[0]);
794 fd_install(fd
[1], files
[1]);
800 SYSCALL_DEFINE1(pipe
, int __user
*, fildes
)
802 return sys_pipe2(fildes
, 0);
805 static int wait_for_partner(struct pipe_inode_info
*pipe
, unsigned int *cnt
)
809 while (cur
== *cnt
) {
811 if (signal_pending(current
))
814 return cur
== *cnt
? -ERESTARTSYS
: 0;
817 static void wake_up_partner(struct pipe_inode_info
*pipe
)
819 wake_up_interruptible(&pipe
->wait
);
822 static int fifo_open(struct inode
*inode
, struct file
*filp
)
824 struct pipe_inode_info
*pipe
;
825 bool is_pipe
= inode
->i_sb
->s_magic
== PIPEFS_MAGIC
;
830 spin_lock(&inode
->i_lock
);
832 pipe
= inode
->i_pipe
;
834 spin_unlock(&inode
->i_lock
);
836 spin_unlock(&inode
->i_lock
);
837 pipe
= alloc_pipe_info();
841 spin_lock(&inode
->i_lock
);
842 if (unlikely(inode
->i_pipe
)) {
843 inode
->i_pipe
->files
++;
844 spin_unlock(&inode
->i_lock
);
845 free_pipe_info(pipe
);
846 pipe
= inode
->i_pipe
;
848 inode
->i_pipe
= pipe
;
849 spin_unlock(&inode
->i_lock
);
852 filp
->private_data
= pipe
;
853 /* OK, we have a pipe and it's pinned down */
857 /* We can only do regular read/write on fifos */
858 filp
->f_mode
&= (FMODE_READ
| FMODE_WRITE
);
860 switch (filp
->f_mode
) {
864 * POSIX.1 says that O_NONBLOCK means return with the FIFO
865 * opened, even when there is no process writing the FIFO.
868 if (pipe
->readers
++ == 0)
869 wake_up_partner(pipe
);
871 if (!is_pipe
&& !pipe
->writers
) {
872 if ((filp
->f_flags
& O_NONBLOCK
)) {
873 /* suppress POLLHUP until we have
875 filp
->f_version
= pipe
->w_counter
;
877 if (wait_for_partner(pipe
, &pipe
->w_counter
))
886 * POSIX.1 says that O_NONBLOCK means return -1 with
887 * errno=ENXIO when there is no process reading the FIFO.
890 if (!is_pipe
&& (filp
->f_flags
& O_NONBLOCK
) && !pipe
->readers
)
894 if (!pipe
->writers
++)
895 wake_up_partner(pipe
);
897 if (!is_pipe
&& !pipe
->readers
) {
898 if (wait_for_partner(pipe
, &pipe
->r_counter
))
903 case FMODE_READ
| FMODE_WRITE
:
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.
915 if (pipe
->readers
== 1 || pipe
->writers
== 1)
916 wake_up_partner(pipe
);
929 if (!--pipe
->readers
)
930 wake_up_interruptible(&pipe
->wait
);
935 if (!--pipe
->writers
)
936 wake_up_interruptible(&pipe
->wait
);
943 put_pipe_info(inode
, pipe
);
947 const struct file_operations pipefifo_fops
= {
950 .read
= new_sync_read
,
951 .read_iter
= pipe_read
,
952 .write
= new_sync_write
,
953 .write_iter
= pipe_write
,
955 .unlocked_ioctl
= pipe_ioctl
,
956 .release
= pipe_release
,
957 .fasync
= pipe_fasync
,
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.
964 static long pipe_set_size(struct pipe_inode_info
*pipe
, unsigned long nr_pages
)
966 struct pipe_buffer
*bufs
;
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.
974 if (nr_pages
< pipe
->nrbufs
)
977 bufs
= kcalloc(nr_pages
, sizeof(*bufs
), GFP_KERNEL
| __GFP_NOWARN
);
982 * The pipe array wraps around, so just start the new one at zero
983 * and adjust the indexes.
989 tail
= pipe
->curbuf
+ pipe
->nrbufs
;
990 if (tail
< pipe
->buffers
)
993 tail
&= (pipe
->buffers
- 1);
995 head
= pipe
->nrbufs
- tail
;
997 memcpy(bufs
, pipe
->bufs
+ pipe
->curbuf
, head
* sizeof(struct pipe_buffer
));
999 memcpy(bufs
+ head
, pipe
->bufs
, tail
* sizeof(struct pipe_buffer
));
1005 pipe
->buffers
= nr_pages
;
1006 return nr_pages
* PAGE_SIZE
;
1010 * Currently we rely on the pipe array holding a power-of-2 number
1013 static inline unsigned int round_pipe_size(unsigned int size
)
1015 unsigned long nr_pages
;
1017 nr_pages
= (size
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
1018 return roundup_pow_of_two(nr_pages
) << PAGE_SHIFT
;
1022 * This should work even if CONFIG_PROC_FS isn't set, as proc_dointvec_minmax
1023 * will return an error.
1025 int pipe_proc_fn(struct ctl_table
*table
, int write
, void __user
*buf
,
1026 size_t *lenp
, loff_t
*ppos
)
1030 ret
= proc_dointvec_minmax(table
, write
, buf
, lenp
, ppos
);
1031 if (ret
< 0 || !write
)
1034 pipe_max_size
= round_pipe_size(pipe_max_size
);
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
1043 struct pipe_inode_info
*get_pipe_info(struct file
*file
)
1045 return file
->f_op
== &pipefifo_fops
? file
->private_data
: NULL
;
1048 long pipe_fcntl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1050 struct pipe_inode_info
*pipe
;
1053 pipe
= get_pipe_info(file
);
1060 case F_SETPIPE_SZ
: {
1061 unsigned int size
, nr_pages
;
1063 size
= round_pipe_size(arg
);
1064 nr_pages
= size
>> PAGE_SHIFT
;
1070 if (!capable(CAP_SYS_RESOURCE
) && size
> pipe_max_size
) {
1074 ret
= pipe_set_size(pipe
, nr_pages
);
1078 ret
= pipe
->buffers
* PAGE_SIZE
;
1086 __pipe_unlock(pipe
);
1090 static const struct super_operations pipefs_ops
= {
1091 .destroy_inode
= free_inode_nonrcu
,
1092 .statfs
= simple_statfs
,
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.
1101 static struct dentry
*pipefs_mount(struct file_system_type
*fs_type
,
1102 int flags
, const char *dev_name
, void *data
)
1104 return mount_pseudo(fs_type
, "pipe:", &pipefs_ops
,
1105 &pipefs_dentry_operations
, PIPEFS_MAGIC
);
1108 static struct file_system_type pipe_fs_type
= {
1110 .mount
= pipefs_mount
,
1111 .kill_sb
= kill_anon_super
,
1114 static int __init
init_pipe_fs(void)
1116 int err
= register_filesystem(&pipe_fs_type
);
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
);
1128 fs_initcall(init_pipe_fs
);