blob: 6d98566201ef5c1f152a11c5849e9e02bd55189b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/pipe.c
4 *
5 * Copyright (C) 1991, 1992, 1999 Linus Torvalds
6 */
7
8#include <linux/mm.h>
9#include <linux/file.h>
10#include <linux/poll.h>
11#include <linux/slab.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/fs.h>
Jens Axboe35f3d142010-05-20 10:43:18 +020015#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mount.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070017#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pipe_fs_i.h>
19#include <linux/uio.h>
20#include <linux/highmem.h>
Jens Axboe5274f052006-03-30 15:15:30 +020021#include <linux/pagemap.h>
Al Virodb349502007-02-07 01:48:00 -050022#include <linux/audit.h>
Ulrich Drepperba719ba2008-05-06 20:42:38 -070023#include <linux/syscalls.h>
Jens Axboeb492e952010-05-19 21:03:16 +020024#include <linux/fcntl.h>
Vladimir Davydovd86133b2016-07-26 15:24:33 -070025#include <linux/memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/ioctls.h>
29
Al Viro599a0ac2013-03-12 09:58:10 -040030#include "internal.h"
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/*
Jens Axboeb492e952010-05-19 21:03:16 +020033 * The max size that a non-root user is allowed to grow the pipe. Can
Jens Axboeff9da692010-06-03 14:54:39 +020034 * be set by root in /proc/sys/fs/pipe-max-size
Jens Axboeb492e952010-05-19 21:03:16 +020035 */
Jens Axboeff9da692010-06-03 14:54:39 +020036unsigned int pipe_max_size = 1048576;
37
38/*
39 * Minimum pipe size, as required by POSIX
40 */
41unsigned int pipe_min_size = PAGE_SIZE;
Jens Axboeb492e952010-05-19 21:03:16 +020042
Willy Tarreau759c0112016-01-18 16:36:09 +010043/* Maximum allocatable pages per user. Hard limit is unset by default, soft
44 * matches default values.
45 */
46unsigned long pipe_user_pages_hard;
47unsigned long pipe_user_pages_soft = PIPE_DEF_BUFFERS * INR_OPEN_CUR;
48
Jens Axboeb492e952010-05-19 21:03:16 +020049/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * We use a start+len construction, which provides full use of the
51 * allocated memory.
52 * -- Florian Coosmann (FGC)
53 *
54 * Reads with count = 0 should always return 0.
55 * -- Julian Bradfield 1999-06-07.
56 *
57 * FIFOs and Pipes now generate SIGIO for both readers and writers.
58 * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
59 *
60 * pipe_read & write cleanup
61 * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
62 */
63
Miklos Szeredi61e0d472009-04-14 19:48:41 +020064static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass)
65{
Al Viro6447a3c2013-03-21 11:01:38 -040066 if (pipe->files)
Al Viro72b0d9a2013-03-21 02:32:24 -040067 mutex_lock_nested(&pipe->mutex, subclass);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020068}
69
70void pipe_lock(struct pipe_inode_info *pipe)
71{
72 /*
73 * pipe_lock() nests non-pipe inode locks (for writing to a file)
74 */
75 pipe_lock_nested(pipe, I_MUTEX_PARENT);
76}
77EXPORT_SYMBOL(pipe_lock);
78
79void pipe_unlock(struct pipe_inode_info *pipe)
80{
Al Viro6447a3c2013-03-21 11:01:38 -040081 if (pipe->files)
Al Viro72b0d9a2013-03-21 02:32:24 -040082 mutex_unlock(&pipe->mutex);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020083}
84EXPORT_SYMBOL(pipe_unlock);
85
Al Viroebec73f2013-03-21 12:24:01 -040086static inline void __pipe_lock(struct pipe_inode_info *pipe)
87{
88 mutex_lock_nested(&pipe->mutex, I_MUTEX_PARENT);
89}
90
91static inline void __pipe_unlock(struct pipe_inode_info *pipe)
92{
93 mutex_unlock(&pipe->mutex);
94}
95
Miklos Szeredi61e0d472009-04-14 19:48:41 +020096void pipe_double_lock(struct pipe_inode_info *pipe1,
97 struct pipe_inode_info *pipe2)
98{
99 BUG_ON(pipe1 == pipe2);
100
101 if (pipe1 < pipe2) {
102 pipe_lock_nested(pipe1, I_MUTEX_PARENT);
103 pipe_lock_nested(pipe2, I_MUTEX_CHILD);
104 } else {
Peter Zijlstra023d43c2009-07-21 10:09:23 +0200105 pipe_lock_nested(pipe2, I_MUTEX_PARENT);
106 pipe_lock_nested(pipe1, I_MUTEX_CHILD);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200107 }
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/* Drop the inode semaphore and wait for a pipe event, atomically */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200111void pipe_wait(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 DEFINE_WAIT(wait);
114
Ingo Molnard79fc0f2005-09-10 00:26:12 -0700115 /*
116 * Pipes are system-local resources, so sleeping on them
117 * is considered a noninteractive wait:
118 */
Mike Galbraithaf927232007-10-15 17:00:13 +0200119 prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200120 pipe_unlock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 schedule();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200122 finish_wait(&pipe->wait, &wait);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200123 pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Ingo Molnar341b4462006-04-11 13:57:45 +0200126static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
127 struct pipe_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct page *page = buf->page;
130
Jens Axboe5274f052006-03-30 15:15:30 +0200131 /*
132 * If nobody else uses this page, and we don't already have a
133 * temporary page, let's keep track of it as a one-deep
Ingo Molnar341b4462006-04-11 13:57:45 +0200134 * allocation cache. (Otherwise just release our reference to it)
Jens Axboe5274f052006-03-30 15:15:30 +0200135 */
Ingo Molnar341b4462006-04-11 13:57:45 +0200136 if (page_count(page) == 1 && !pipe->tmp_page)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200137 pipe->tmp_page = page;
Ingo Molnar341b4462006-04-11 13:57:45 +0200138 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300139 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700142static int anon_pipe_buf_steal(struct pipe_inode_info *pipe,
143 struct pipe_buffer *buf)
144{
145 struct page *page = buf->page;
146
147 if (page_count(page) == 1) {
Vladimir Davydovc4159a72016-08-08 23:03:12 +0300148 if (memcg_kmem_enabled())
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700149 memcg_kmem_uncharge(page, 0);
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700150 __SetPageLocked(page);
151 return 0;
152 }
153 return 1;
154}
155
Jens Axboe08457182007-06-12 20:51:32 +0200156/**
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800157 * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
Jens Axboe08457182007-06-12 20:51:32 +0200158 * @pipe: the pipe that the buffer belongs to
159 * @buf: the buffer to attempt to steal
160 *
161 * Description:
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800162 * This function attempts to steal the &struct page attached to
Jens Axboe08457182007-06-12 20:51:32 +0200163 * @buf. If successful, this function returns 0 and returns with
164 * the page locked. The caller may then reuse the page for whatever
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800165 * he wishes; the typical use is insertion into a different file
Jens Axboe08457182007-06-12 20:51:32 +0200166 * page cache.
167 */
Jens Axboe330ab712006-05-02 15:29:57 +0200168int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
169 struct pipe_buffer *buf)
Jens Axboe5abc97a2006-03-30 15:16:46 +0200170{
Jens Axboe46e678c2006-04-30 16:36:32 +0200171 struct page *page = buf->page;
172
Jens Axboe08457182007-06-12 20:51:32 +0200173 /*
174 * A reference of one is golden, that means that the owner of this
175 * page is the only one holding a reference to it. lock the page
176 * and return OK.
177 */
Jens Axboe46e678c2006-04-30 16:36:32 +0200178 if (page_count(page) == 1) {
Jens Axboe46e678c2006-04-30 16:36:32 +0200179 lock_page(page);
180 return 0;
181 }
182
183 return 1;
Jens Axboe5abc97a2006-03-30 15:16:46 +0200184}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200185EXPORT_SYMBOL(generic_pipe_buf_steal);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200186
Jens Axboe08457182007-06-12 20:51:32 +0200187/**
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800188 * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
Jens Axboe08457182007-06-12 20:51:32 +0200189 * @pipe: the pipe that the buffer belongs to
190 * @buf: the buffer to get a reference to
191 *
192 * Description:
193 * This function grabs an extra reference to @buf. It's used in
194 * in the tee() system call, when we duplicate the buffers in one
195 * pipe into another.
196 */
197void generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
Jens Axboe70524492006-04-11 15:51:17 +0200198{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300199 get_page(buf->page);
Jens Axboe70524492006-04-11 15:51:17 +0200200}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200201EXPORT_SYMBOL(generic_pipe_buf_get);
Jens Axboe70524492006-04-11 15:51:17 +0200202
Jens Axboe08457182007-06-12 20:51:32 +0200203/**
204 * generic_pipe_buf_confirm - verify contents of the pipe buffer
Randy Dunlap79685b82007-07-27 08:08:51 +0200205 * @info: the pipe that the buffer belongs to
Jens Axboe08457182007-06-12 20:51:32 +0200206 * @buf: the buffer to confirm
207 *
208 * Description:
209 * This function does nothing, because the generic pipe code uses
210 * pages that are always good when inserted into the pipe.
211 */
Jens Axboecac36bb02007-06-14 13:10:48 +0200212int generic_pipe_buf_confirm(struct pipe_inode_info *info,
213 struct pipe_buffer *buf)
Jens Axboef84d7512006-05-01 19:59:03 +0200214{
215 return 0;
216}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200217EXPORT_SYMBOL(generic_pipe_buf_confirm);
Jens Axboef84d7512006-05-01 19:59:03 +0200218
Miklos Szeredi68181732009-05-07 15:37:36 +0200219/**
220 * generic_pipe_buf_release - put a reference to a &struct pipe_buffer
221 * @pipe: the pipe that the buffer belongs to
222 * @buf: the buffer to put a reference to
223 *
224 * Description:
225 * This function releases a reference to @buf.
226 */
227void generic_pipe_buf_release(struct pipe_inode_info *pipe,
228 struct pipe_buffer *buf)
229{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300230 put_page(buf->page);
Miklos Szeredi68181732009-05-07 15:37:36 +0200231}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200232EXPORT_SYMBOL(generic_pipe_buf_release);
Miklos Szeredi68181732009-05-07 15:37:36 +0200233
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800234static const struct pipe_buf_operations anon_pipe_buf_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 .can_merge = 1,
Jens Axboecac36bb02007-06-14 13:10:48 +0200236 .confirm = generic_pipe_buf_confirm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 .release = anon_pipe_buf_release,
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700238 .steal = anon_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200239 .get = generic_pipe_buf_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Linus Torvalds98830352012-04-29 13:12:42 -0700242static const struct pipe_buf_operations packet_pipe_buf_ops = {
243 .can_merge = 0,
Linus Torvalds98830352012-04-29 13:12:42 -0700244 .confirm = generic_pipe_buf_confirm,
245 .release = anon_pipe_buf_release,
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700246 .steal = anon_pipe_buf_steal,
Linus Torvalds98830352012-04-29 13:12:42 -0700247 .get = generic_pipe_buf_get,
248};
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static ssize_t
Al Virofb9096a2014-04-02 19:56:54 -0400251pipe_read(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Al Virofb9096a2014-04-02 19:56:54 -0400253 size_t total_len = iov_iter_count(to);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700254 struct file *filp = iocb->ki_filp;
Al Virode32ec42013-03-21 11:16:56 -0400255 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 int do_wakeup;
257 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Null read succeeds. */
260 if (unlikely(total_len == 0))
261 return 0;
262
263 do_wakeup = 0;
264 ret = 0;
Al Viroebec73f2013-03-21 12:24:01 -0400265 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 for (;;) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200267 int bufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (bufs) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200269 int curbuf = pipe->curbuf;
270 struct pipe_buffer *buf = pipe->bufs + curbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 size_t chars = buf->len;
Al Viro637b58c2014-02-03 19:11:42 -0500272 size_t written;
273 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 if (chars > total_len)
276 chars = total_len;
277
Miklos Szeredifba597d2016-09-27 10:45:12 +0200278 error = pipe_buf_confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200279 if (error) {
Jens Axboe5274f052006-03-30 15:15:30 +0200280 if (!ret)
Nicolas Kaisere5953cb2010-10-21 14:56:00 +0200281 ret = error;
Jens Axboe5274f052006-03-30 15:15:30 +0200282 break;
283 }
Jens Axboef84d7512006-05-01 19:59:03 +0200284
Al Virofb9096a2014-04-02 19:56:54 -0400285 written = copy_page_to_iter(buf->page, buf->offset, chars, to);
Al Viro637b58c2014-02-03 19:11:42 -0500286 if (unlikely(written < chars)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200287 if (!ret)
Al Viro637b58c2014-02-03 19:11:42 -0500288 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
290 }
291 ret += chars;
292 buf->offset += chars;
293 buf->len -= chars;
Linus Torvalds98830352012-04-29 13:12:42 -0700294
295 /* Was it a packet buffer? Clean up and exit */
296 if (buf->flags & PIPE_BUF_FLAG_PACKET) {
297 total_len = chars;
298 buf->len = 0;
299 }
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!buf->len) {
Miklos Szeredia7796382016-09-27 10:45:12 +0200302 pipe_buf_release(pipe, buf);
Jens Axboe35f3d142010-05-20 10:43:18 +0200303 curbuf = (curbuf + 1) & (pipe->buffers - 1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200304 pipe->curbuf = curbuf;
305 pipe->nrbufs = --bufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 do_wakeup = 1;
307 }
308 total_len -= chars;
309 if (!total_len)
310 break; /* common path: read succeeded */
311 }
312 if (bufs) /* More to do? */
313 continue;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200314 if (!pipe->writers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200316 if (!pipe->waiting_writers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* syscall merging: Usually we must not sleep
318 * if O_NONBLOCK is set, or if we got some data.
319 * But if a writer sleeps in kernel space, then
320 * we can wait for that data without violating POSIX.
321 */
322 if (ret)
323 break;
324 if (filp->f_flags & O_NONBLOCK) {
325 ret = -EAGAIN;
326 break;
327 }
328 }
329 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200330 if (!ret)
331 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 break;
333 }
334 if (do_wakeup) {
Linus Torvalds28e58ee2011-01-20 16:21:59 -0800335 wake_up_interruptible_sync_poll(&pipe->wait, POLLOUT | POLLWRNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200336 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200338 pipe_wait(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Al Viroebec73f2013-03-21 12:24:01 -0400340 __pipe_unlock(pipe);
Ingo Molnar341b4462006-04-11 13:57:45 +0200341
342 /* Signal writers asynchronously that there is more room. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (do_wakeup) {
Linus Torvalds28e58ee2011-01-20 16:21:59 -0800344 wake_up_interruptible_sync_poll(&pipe->wait, POLLOUT | POLLWRNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200345 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347 if (ret > 0)
348 file_accessed(filp);
349 return ret;
350}
351
Linus Torvalds98830352012-04-29 13:12:42 -0700352static inline int is_packetized(struct file *file)
353{
354 return (file->f_flags & O_DIRECT) != 0;
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357static ssize_t
Al Virof0d1bec2014-04-03 15:05:18 -0400358pipe_write(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700360 struct file *filp = iocb->ki_filp;
Al Virode32ec42013-03-21 11:16:56 -0400361 struct pipe_inode_info *pipe = filp->private_data;
Al Virof0d1bec2014-04-03 15:05:18 -0400362 ssize_t ret = 0;
363 int do_wakeup = 0;
364 size_t total_len = iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 ssize_t chars;
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* Null write succeeds. */
368 if (unlikely(total_len == 0))
369 return 0;
370
Al Viroebec73f2013-03-21 12:24:01 -0400371 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Ingo Molnar923f4f22006-04-11 13:53:33 +0200373 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 send_sig(SIGPIPE, current, 0);
375 ret = -EPIPE;
376 goto out;
377 }
378
379 /* We try to merge small writes */
380 chars = total_len & (PAGE_SIZE-1); /* size of the last buffer */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200381 if (pipe->nrbufs && chars != 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200382 int lastbuf = (pipe->curbuf + pipe->nrbufs - 1) &
Jens Axboe35f3d142010-05-20 10:43:18 +0200383 (pipe->buffers - 1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200384 struct pipe_buffer *buf = pipe->bufs + lastbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int offset = buf->offset + buf->len;
Ingo Molnar341b4462006-04-11 13:57:45 +0200386
Miklos Szeredifba597d2016-09-27 10:45:12 +0200387 if (buf->ops->can_merge && offset + chars <= PAGE_SIZE) {
388 ret = pipe_buf_confirm(pipe, buf);
Eric Biggers6ae08062015-10-17 16:26:09 -0500389 if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200390 goto out;
Jens Axboef84d7512006-05-01 19:59:03 +0200391
Al Virof0d1bec2014-04-03 15:05:18 -0400392 ret = copy_page_from_iter(buf->page, offset, chars, from);
393 if (unlikely(ret < chars)) {
Eric Biggers6ae08062015-10-17 16:26:09 -0500394 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 goto out;
Jens Axboef6762b72006-05-01 20:02:05 +0200396 }
Al Virof0d1bec2014-04-03 15:05:18 -0400397 do_wakeup = 1;
Eric Biggers6ae08062015-10-17 16:26:09 -0500398 buf->len += ret;
Al Virof0d1bec2014-04-03 15:05:18 -0400399 if (!iov_iter_count(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 goto out;
401 }
402 }
403
404 for (;;) {
405 int bufs;
Ingo Molnar341b4462006-04-11 13:57:45 +0200406
Ingo Molnar923f4f22006-04-11 13:53:33 +0200407 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 send_sig(SIGPIPE, current, 0);
Ingo Molnar341b4462006-04-11 13:57:45 +0200409 if (!ret)
410 ret = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 break;
412 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200413 bufs = pipe->nrbufs;
Jens Axboe35f3d142010-05-20 10:43:18 +0200414 if (bufs < pipe->buffers) {
415 int newbuf = (pipe->curbuf + bufs) & (pipe->buffers-1);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200416 struct pipe_buffer *buf = pipe->bufs + newbuf;
417 struct page *page = pipe->tmp_page;
Al Virof0d1bec2014-04-03 15:05:18 -0400418 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 if (!page) {
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700421 page = alloc_page(GFP_HIGHUSER | __GFP_ACCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (unlikely(!page)) {
423 ret = ret ? : -ENOMEM;
424 break;
425 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200426 pipe->tmp_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Ingo Molnar341b4462006-04-11 13:57:45 +0200428 /* Always wake up, even if the copy fails. Otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * we lock up (O_NONBLOCK-)readers that sleep due to
430 * syscall merging.
431 * FIXME! Is this really true?
432 */
433 do_wakeup = 1;
Al Virof0d1bec2014-04-03 15:05:18 -0400434 copied = copy_page_from_iter(page, 0, PAGE_SIZE, from);
435 if (unlikely(copied < PAGE_SIZE && iov_iter_count(from))) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200436 if (!ret)
Al Virof0d1bec2014-04-03 15:05:18 -0400437 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 break;
439 }
Al Virof0d1bec2014-04-03 15:05:18 -0400440 ret += copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /* Insert it into the buffer array */
443 buf->page = page;
444 buf->ops = &anon_pipe_buf_ops;
445 buf->offset = 0;
Al Virof0d1bec2014-04-03 15:05:18 -0400446 buf->len = copied;
Linus Torvalds98830352012-04-29 13:12:42 -0700447 buf->flags = 0;
448 if (is_packetized(filp)) {
449 buf->ops = &packet_pipe_buf_ops;
450 buf->flags = PIPE_BUF_FLAG_PACKET;
451 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200452 pipe->nrbufs = ++bufs;
453 pipe->tmp_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Al Virof0d1bec2014-04-03 15:05:18 -0400455 if (!iov_iter_count(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 break;
457 }
Jens Axboe35f3d142010-05-20 10:43:18 +0200458 if (bufs < pipe->buffers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 continue;
460 if (filp->f_flags & O_NONBLOCK) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200461 if (!ret)
462 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 }
465 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200466 if (!ret)
467 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 break;
469 }
470 if (do_wakeup) {
Linus Torvalds28e58ee2011-01-20 16:21:59 -0800471 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200472 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 do_wakeup = 0;
474 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200475 pipe->waiting_writers++;
476 pipe_wait(pipe);
477 pipe->waiting_writers--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479out:
Al Viroebec73f2013-03-21 12:24:01 -0400480 __pipe_unlock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (do_wakeup) {
Linus Torvalds28e58ee2011-01-20 16:21:59 -0800482 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200483 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
Dmitry Monakhov7e775f42014-01-23 15:55:21 -0800485 if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) {
Josef Bacikc3b2da32012-03-26 09:59:21 -0400486 int err = file_update_time(filp);
487 if (err)
488 ret = err;
Dmitry Monakhov7e775f42014-01-23 15:55:21 -0800489 sb_end_write(file_inode(filp)->i_sb);
Josef Bacikc3b2da32012-03-26 09:59:21 -0400490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return ret;
492}
493
Andi Kleend59d0b12008-02-08 04:21:23 -0800494static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Al Virode32ec42013-03-21 11:16:56 -0400496 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 int count, buf, nrbufs;
498
499 switch (cmd) {
500 case FIONREAD:
Al Viroebec73f2013-03-21 12:24:01 -0400501 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 count = 0;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200503 buf = pipe->curbuf;
504 nrbufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 while (--nrbufs >= 0) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200506 count += pipe->bufs[buf].len;
Jens Axboe35f3d142010-05-20 10:43:18 +0200507 buf = (buf+1) & (pipe->buffers - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Al Viroebec73f2013-03-21 12:24:01 -0400509 __pipe_unlock(pipe);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return put_user(count, (int __user *)arg);
512 default:
Will Deacon46ce3412012-05-25 11:39:13 +0100513 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515}
516
517/* No kernel lock held - fine */
518static unsigned int
519pipe_poll(struct file *filp, poll_table *wait)
520{
521 unsigned int mask;
Al Virode32ec42013-03-21 11:16:56 -0400522 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 int nrbufs;
524
Ingo Molnar923f4f22006-04-11 13:53:33 +0200525 poll_wait(filp, &pipe->wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 /* Reading only -- no need for acquiring the semaphore. */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200528 nrbufs = pipe->nrbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 mask = 0;
530 if (filp->f_mode & FMODE_READ) {
531 mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200532 if (!pipe->writers && filp->f_version != pipe->w_counter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 mask |= POLLHUP;
534 }
535
536 if (filp->f_mode & FMODE_WRITE) {
Jens Axboe35f3d142010-05-20 10:43:18 +0200537 mask |= (nrbufs < pipe->buffers) ? POLLOUT | POLLWRNORM : 0;
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700538 /*
539 * Most Unices do not set POLLERR for FIFOs but on Linux they
540 * behave exactly like pipes for poll().
541 */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200542 if (!pipe->readers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 mask |= POLLERR;
544 }
545
546 return mask;
547}
548
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800549static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe)
550{
551 int kill = 0;
552
553 spin_lock(&inode->i_lock);
554 if (!--pipe->files) {
555 inode->i_pipe = NULL;
556 kill = 1;
557 }
558 spin_unlock(&inode->i_lock);
559
560 if (kill)
561 free_pipe_info(pipe);
562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static int
Al Viro599a0ac2013-03-12 09:58:10 -0400565pipe_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800567 struct pipe_inode_info *pipe = file->private_data;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200568
Al Viroebec73f2013-03-21 12:24:01 -0400569 __pipe_lock(pipe);
Al Viro599a0ac2013-03-12 09:58:10 -0400570 if (file->f_mode & FMODE_READ)
571 pipe->readers--;
572 if (file->f_mode & FMODE_WRITE)
573 pipe->writers--;
Ingo Molnar341b4462006-04-11 13:57:45 +0200574
Al Viroba5bb142013-03-21 02:21:19 -0400575 if (pipe->readers || pipe->writers) {
Linus Torvalds28e58ee2011-01-20 16:21:59 -0800576 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM | POLLERR | POLLHUP);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200577 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
578 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Al Viroebec73f2013-03-21 12:24:01 -0400580 __pipe_unlock(pipe);
Al Viroba5bb142013-03-21 02:21:19 -0400581
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800582 put_pipe_info(inode, pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return 0;
584}
585
586static int
Al Viro599a0ac2013-03-12 09:58:10 -0400587pipe_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Al Virode32ec42013-03-21 11:16:56 -0400589 struct pipe_inode_info *pipe = filp->private_data;
Al Viro599a0ac2013-03-12 09:58:10 -0400590 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Al Viroebec73f2013-03-21 12:24:01 -0400592 __pipe_lock(pipe);
Al Viro599a0ac2013-03-12 09:58:10 -0400593 if (filp->f_mode & FMODE_READ)
594 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
595 if ((filp->f_mode & FMODE_WRITE) && retval >= 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200596 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
Al Viro599a0ac2013-03-12 09:58:10 -0400597 if (retval < 0 && (filp->f_mode & FMODE_READ))
598 /* this can happen only if on == T */
Oleg Nesterove5bc49b2009-03-12 14:31:28 -0700599 fasync_helper(-1, filp, 0, &pipe->fasync_readers);
600 }
Al Viroebec73f2013-03-21 12:24:01 -0400601 __pipe_unlock(pipe);
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700602 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700605static unsigned long account_pipe_buffers(struct user_struct *user,
Willy Tarreau759c0112016-01-18 16:36:09 +0100606 unsigned long old, unsigned long new)
607{
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700608 return atomic_long_add_return(new - old, &user->pipe_bufs);
Willy Tarreau759c0112016-01-18 16:36:09 +0100609}
610
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700611static bool too_many_pipe_buffers_soft(unsigned long user_bufs)
Willy Tarreau759c0112016-01-18 16:36:09 +0100612{
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700613 return pipe_user_pages_soft && user_bufs >= pipe_user_pages_soft;
Willy Tarreau759c0112016-01-18 16:36:09 +0100614}
615
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700616static bool too_many_pipe_buffers_hard(unsigned long user_bufs)
Willy Tarreau759c0112016-01-18 16:36:09 +0100617{
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700618 return pipe_user_pages_hard && user_bufs >= pipe_user_pages_hard;
Willy Tarreau759c0112016-01-18 16:36:09 +0100619}
620
Al Viro7bee1302013-03-21 11:04:15 -0400621struct pipe_inode_info *alloc_pipe_info(void)
Ingo Molnar3a326a22006-04-10 15:18:35 +0200622{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200623 struct pipe_inode_info *pipe;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700624 unsigned long pipe_bufs = PIPE_DEF_BUFFERS;
625 struct user_struct *user = get_current_user();
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700626 unsigned long user_bufs;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200627
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700628 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL_ACCOUNT);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700629 if (pipe == NULL)
630 goto out_free_uid;
Willy Tarreau759c0112016-01-18 16:36:09 +0100631
Michael Kerrisk (man-pages)086e7742016-10-11 13:53:43 -0700632 if (pipe_bufs * PAGE_SIZE > pipe_max_size && !capable(CAP_SYS_RESOURCE))
633 pipe_bufs = pipe_max_size >> PAGE_SHIFT;
634
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700635 user_bufs = account_pipe_buffers(user, 0, pipe_bufs);
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700636
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700637 if (too_many_pipe_buffers_soft(user_bufs)) {
638 user_bufs = account_pipe_buffers(user, pipe_bufs, 1);
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700639 pipe_bufs = 1;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200640 }
641
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700642 if (too_many_pipe_buffers_hard(user_bufs))
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700643 goto out_revert_acct;
644
645 pipe->bufs = kcalloc(pipe_bufs, sizeof(struct pipe_buffer),
646 GFP_KERNEL_ACCOUNT);
647
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700648 if (pipe->bufs) {
649 init_waitqueue_head(&pipe->wait);
650 pipe->r_counter = pipe->w_counter = 1;
651 pipe->buffers = pipe_bufs;
652 pipe->user = user;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700653 mutex_init(&pipe->mutex);
654 return pipe;
655 }
656
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700657out_revert_acct:
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700658 (void) account_pipe_buffers(user, pipe_bufs, 0);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700659 kfree(pipe);
660out_free_uid:
661 free_uid(user);
Jens Axboe35f3d142010-05-20 10:43:18 +0200662 return NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200663}
664
Al Viro4b8a8f12013-03-21 11:06:46 -0400665void free_pipe_info(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700669 (void) account_pipe_buffers(pipe->user, pipe->buffers, 0);
Willy Tarreau759c0112016-01-18 16:36:09 +0100670 free_uid(pipe->user);
Jens Axboe35f3d142010-05-20 10:43:18 +0200671 for (i = 0; i < pipe->buffers; i++) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200672 struct pipe_buffer *buf = pipe->bufs + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (buf->ops)
Miklos Szeredia7796382016-09-27 10:45:12 +0200674 pipe_buf_release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200676 if (pipe->tmp_page)
677 __free_page(pipe->tmp_page);
Jens Axboe35f3d142010-05-20 10:43:18 +0200678 kfree(pipe->bufs);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200679 kfree(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800682static struct vfsmount *pipe_mnt __read_mostly;
Ingo Molnar341b4462006-04-11 13:57:45 +0200683
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700684/*
685 * pipefs_dname() is called from d_path().
686 */
687static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
688{
689 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
David Howells75c3cfa2015-03-17 22:26:12 +0000690 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700691}
692
Al Viro3ba13d12009-02-20 06:02:22 +0000693static const struct dentry_operations pipefs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700694 .d_dname = pipefs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695};
696
697static struct inode * get_pipe_inode(void)
698{
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200699 struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200700 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 if (!inode)
703 goto fail_inode;
704
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400705 inode->i_ino = get_next_ino();
706
Al Viro7bee1302013-03-21 11:04:15 -0400707 pipe = alloc_pipe_info();
Ingo Molnar923f4f22006-04-11 13:53:33 +0200708 if (!pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto fail_iput;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200710
Al Viroba5bb142013-03-21 02:21:19 -0400711 inode->i_pipe = pipe;
712 pipe->files = 2;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200713 pipe->readers = pipe->writers = 1;
Al Viro599a0ac2013-03-12 09:58:10 -0400714 inode->i_fop = &pipefifo_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 /*
717 * Mark the inode dirty from the very beginning,
718 * that way it will never be moved to the dirty
719 * list because "mark_inode_dirty()" will think
720 * that it already _is_ on the dirty list.
721 */
722 inode->i_state = I_DIRTY;
723 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
David Howellsda9592e2008-11-14 10:39:05 +1100724 inode->i_uid = current_fsuid();
725 inode->i_gid = current_fsgid();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700726 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return inode;
729
730fail_iput:
731 iput(inode);
Ingo Molnar341b4462006-04-11 13:57:45 +0200732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733fail_inode:
734 return NULL;
735}
736
Al Viroe4fad8e2012-07-21 15:33:25 +0400737int create_pipe_files(struct file **res, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Andi Kleend6cbd282006-09-30 23:29:26 -0700739 int err;
Al Viroe4fad8e2012-07-21 15:33:25 +0400740 struct inode *inode = get_pipe_inode();
Andi Kleend6cbd282006-09-30 23:29:26 -0700741 struct file *f;
Al Viro2c48b9c2009-08-09 00:52:35 +0400742 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (!inode)
Al Viroe4fad8e2012-07-21 15:33:25 +0400745 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Andi Kleend6cbd282006-09-30 23:29:26 -0700747 err = -ENOMEM;
David Howellscdf01222017-07-04 17:25:22 +0100748 path.dentry = d_alloc_pseudo(pipe_mnt->mnt_sb, &empty_name);
Al Viro2c48b9c2009-08-09 00:52:35 +0400749 if (!path.dentry)
Andi Kleend6cbd282006-09-30 23:29:26 -0700750 goto err_inode;
Al Viro2c48b9c2009-08-09 00:52:35 +0400751 path.mnt = mntget(pipe_mnt);
Ingo Molnar341b4462006-04-11 13:57:45 +0200752
Al Viro2c48b9c2009-08-09 00:52:35 +0400753 d_instantiate(path.dentry, inode);
Dave Hansen430e2852008-02-15 14:37:26 -0800754
Al Viro599a0ac2013-03-12 09:58:10 -0400755 f = alloc_file(&path, FMODE_WRITE, &pipefifo_fops);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500756 if (IS_ERR(f)) {
757 err = PTR_ERR(f);
Dave Hansen430e2852008-02-15 14:37:26 -0800758 goto err_dentry;
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Linus Torvalds98830352012-04-29 13:12:42 -0700761 f->f_flags = O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT));
Al Virode32ec42013-03-21 11:16:56 -0400762 f->private_data = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Al Viro599a0ac2013-03-12 09:58:10 -0400764 res[0] = alloc_file(&path, FMODE_READ, &pipefifo_fops);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500765 if (IS_ERR(res[0])) {
766 err = PTR_ERR(res[0]);
Al Viroe4fad8e2012-07-21 15:33:25 +0400767 goto err_file;
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Al Viroe4fad8e2012-07-21 15:33:25 +0400770 path_get(&path);
Al Virode32ec42013-03-21 11:16:56 -0400771 res[0]->private_data = inode->i_pipe;
Al Viroe4fad8e2012-07-21 15:33:25 +0400772 res[0]->f_flags = O_RDONLY | (flags & O_NONBLOCK);
773 res[1] = f;
774 return 0;
775
776err_file:
777 put_filp(f);
778err_dentry:
Al Viro4b8a8f12013-03-21 11:06:46 -0400779 free_pipe_info(inode->i_pipe);
Al Viro2c48b9c2009-08-09 00:52:35 +0400780 path_put(&path);
Al Viroe4fad8e2012-07-21 15:33:25 +0400781 return err;
Al Viroed152432008-04-22 19:51:27 -0400782
Al Viroe4fad8e2012-07-21 15:33:25 +0400783err_inode:
Al Viro4b8a8f12013-03-21 11:06:46 -0400784 free_pipe_info(inode->i_pipe);
Andi Kleend6cbd282006-09-30 23:29:26 -0700785 iput(inode);
Al Viroe4fad8e2012-07-21 15:33:25 +0400786 return err;
Andi Kleend6cbd282006-09-30 23:29:26 -0700787}
788
Al Viro5b249b12012-08-19 12:17:29 -0400789static int __do_pipe_flags(int *fd, struct file **files, int flags)
Andi Kleend6cbd282006-09-30 23:29:26 -0700790{
Andi Kleend6cbd282006-09-30 23:29:26 -0700791 int error;
792 int fdw, fdr;
793
Linus Torvalds98830352012-04-29 13:12:42 -0700794 if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT))
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700795 return -EINVAL;
796
Al Viroe4fad8e2012-07-21 15:33:25 +0400797 error = create_pipe_files(files, flags);
798 if (error)
799 return error;
Andi Kleend6cbd282006-09-30 23:29:26 -0700800
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700801 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -0700802 if (error < 0)
803 goto err_read_pipe;
804 fdr = error;
805
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700806 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -0700807 if (error < 0)
808 goto err_fdr;
809 fdw = error;
810
Al Viro157cf642008-12-14 04:57:47 -0500811 audit_fd_pair(fdr, fdw);
Andi Kleend6cbd282006-09-30 23:29:26 -0700812 fd[0] = fdr;
813 fd[1] = fdw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return 0;
815
Andi Kleend6cbd282006-09-30 23:29:26 -0700816 err_fdr:
817 put_unused_fd(fdr);
818 err_read_pipe:
Al Viroe4fad8e2012-07-21 15:33:25 +0400819 fput(files[0]);
820 fput(files[1]);
Andi Kleend6cbd282006-09-30 23:29:26 -0700821 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Al Viro5b249b12012-08-19 12:17:29 -0400824int do_pipe_flags(int *fd, int flags)
825{
826 struct file *files[2];
827 int error = __do_pipe_flags(fd, files, flags);
828 if (!error) {
829 fd_install(fd[0], files[0]);
830 fd_install(fd[1], files[1]);
831 }
832 return error;
833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/*
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400836 * sys_pipe() is the normal C calling standard for creating
837 * a pipe. It's not the way Unix traditionally does this, though.
838 */
Heiko Carstensd4e82042009-01-14 14:14:34 +0100839SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400840{
Al Viro5b249b12012-08-19 12:17:29 -0400841 struct file *files[2];
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400842 int fd[2];
843 int error;
844
Al Viro5b249b12012-08-19 12:17:29 -0400845 error = __do_pipe_flags(fd, files, flags);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400846 if (!error) {
Al Viro5b249b12012-08-19 12:17:29 -0400847 if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) {
848 fput(files[0]);
849 fput(files[1]);
850 put_unused_fd(fd[0]);
851 put_unused_fd(fd[1]);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400852 error = -EFAULT;
Al Viro5b249b12012-08-19 12:17:29 -0400853 } else {
854 fd_install(fd[0], files[0]);
855 fd_install(fd[1], files[1]);
Ulrich Drepperba719ba2008-05-06 20:42:38 -0700856 }
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400857 }
858 return error;
859}
860
Heiko Carstens2b664212009-01-14 14:14:35 +0100861SYSCALL_DEFINE1(pipe, int __user *, fildes)
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700862{
863 return sys_pipe2(fildes, 0);
864}
865
Al Virofc7478a2013-03-21 02:07:59 -0400866static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt)
Al Virof776c732013-03-12 09:46:27 -0400867{
868 int cur = *cnt;
869
870 while (cur == *cnt) {
Al Virofc7478a2013-03-21 02:07:59 -0400871 pipe_wait(pipe);
Al Virof776c732013-03-12 09:46:27 -0400872 if (signal_pending(current))
873 break;
874 }
875 return cur == *cnt ? -ERESTARTSYS : 0;
876}
877
Al Virofc7478a2013-03-21 02:07:59 -0400878static void wake_up_partner(struct pipe_inode_info *pipe)
Al Virof776c732013-03-12 09:46:27 -0400879{
Al Virofc7478a2013-03-21 02:07:59 -0400880 wake_up_interruptible(&pipe->wait);
Al Virof776c732013-03-12 09:46:27 -0400881}
882
883static int fifo_open(struct inode *inode, struct file *filp)
884{
885 struct pipe_inode_info *pipe;
Al Viro599a0ac2013-03-12 09:58:10 -0400886 bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC;
Al Virof776c732013-03-12 09:46:27 -0400887 int ret;
888
Al Viroba5bb142013-03-21 02:21:19 -0400889 filp->f_version = 0;
890
891 spin_lock(&inode->i_lock);
892 if (inode->i_pipe) {
893 pipe = inode->i_pipe;
894 pipe->files++;
895 spin_unlock(&inode->i_lock);
896 } else {
897 spin_unlock(&inode->i_lock);
Al Viro7bee1302013-03-21 11:04:15 -0400898 pipe = alloc_pipe_info();
Al Virof776c732013-03-12 09:46:27 -0400899 if (!pipe)
Al Viroba5bb142013-03-21 02:21:19 -0400900 return -ENOMEM;
901 pipe->files = 1;
902 spin_lock(&inode->i_lock);
903 if (unlikely(inode->i_pipe)) {
904 inode->i_pipe->files++;
905 spin_unlock(&inode->i_lock);
Al Viro4b8a8f12013-03-21 11:06:46 -0400906 free_pipe_info(pipe);
Al Viroba5bb142013-03-21 02:21:19 -0400907 pipe = inode->i_pipe;
908 } else {
909 inode->i_pipe = pipe;
910 spin_unlock(&inode->i_lock);
911 }
Al Virof776c732013-03-12 09:46:27 -0400912 }
Al Virode32ec42013-03-21 11:16:56 -0400913 filp->private_data = pipe;
Al Viroba5bb142013-03-21 02:21:19 -0400914 /* OK, we have a pipe and it's pinned down */
915
Al Viroebec73f2013-03-21 12:24:01 -0400916 __pipe_lock(pipe);
Al Virof776c732013-03-12 09:46:27 -0400917
918 /* We can only do regular read/write on fifos */
919 filp->f_mode &= (FMODE_READ | FMODE_WRITE);
920
921 switch (filp->f_mode) {
922 case FMODE_READ:
923 /*
924 * O_RDONLY
925 * POSIX.1 says that O_NONBLOCK means return with the FIFO
926 * opened, even when there is no process writing the FIFO.
927 */
Al Virof776c732013-03-12 09:46:27 -0400928 pipe->r_counter++;
929 if (pipe->readers++ == 0)
Al Virofc7478a2013-03-21 02:07:59 -0400930 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -0400931
Al Viro599a0ac2013-03-12 09:58:10 -0400932 if (!is_pipe && !pipe->writers) {
Al Virof776c732013-03-12 09:46:27 -0400933 if ((filp->f_flags & O_NONBLOCK)) {
934 /* suppress POLLHUP until we have
935 * seen a writer */
936 filp->f_version = pipe->w_counter;
937 } else {
Al Virofc7478a2013-03-21 02:07:59 -0400938 if (wait_for_partner(pipe, &pipe->w_counter))
Al Virof776c732013-03-12 09:46:27 -0400939 goto err_rd;
940 }
941 }
942 break;
943
944 case FMODE_WRITE:
945 /*
946 * O_WRONLY
947 * POSIX.1 says that O_NONBLOCK means return -1 with
948 * errno=ENXIO when there is no process reading the FIFO.
949 */
950 ret = -ENXIO;
Al Viro599a0ac2013-03-12 09:58:10 -0400951 if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers)
Al Virof776c732013-03-12 09:46:27 -0400952 goto err;
953
Al Virof776c732013-03-12 09:46:27 -0400954 pipe->w_counter++;
955 if (!pipe->writers++)
Al Virofc7478a2013-03-21 02:07:59 -0400956 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -0400957
Al Viro599a0ac2013-03-12 09:58:10 -0400958 if (!is_pipe && !pipe->readers) {
Al Virofc7478a2013-03-21 02:07:59 -0400959 if (wait_for_partner(pipe, &pipe->r_counter))
Al Virof776c732013-03-12 09:46:27 -0400960 goto err_wr;
961 }
962 break;
963
964 case FMODE_READ | FMODE_WRITE:
965 /*
966 * O_RDWR
967 * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
968 * This implementation will NEVER block on a O_RDWR open, since
969 * the process can at least talk to itself.
970 */
Al Virof776c732013-03-12 09:46:27 -0400971
972 pipe->readers++;
973 pipe->writers++;
974 pipe->r_counter++;
975 pipe->w_counter++;
976 if (pipe->readers == 1 || pipe->writers == 1)
Al Virofc7478a2013-03-21 02:07:59 -0400977 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -0400978 break;
979
980 default:
981 ret = -EINVAL;
982 goto err;
983 }
984
985 /* Ok! */
Al Viroebec73f2013-03-21 12:24:01 -0400986 __pipe_unlock(pipe);
Al Virof776c732013-03-12 09:46:27 -0400987 return 0;
988
989err_rd:
990 if (!--pipe->readers)
991 wake_up_interruptible(&pipe->wait);
992 ret = -ERESTARTSYS;
993 goto err;
994
995err_wr:
996 if (!--pipe->writers)
997 wake_up_interruptible(&pipe->wait);
998 ret = -ERESTARTSYS;
999 goto err;
1000
1001err:
Al Viroebec73f2013-03-21 12:24:01 -04001002 __pipe_unlock(pipe);
Linus Torvaldsb0d8d222013-12-02 09:44:51 -08001003
1004 put_pipe_info(inode, pipe);
Al Virof776c732013-03-12 09:46:27 -04001005 return ret;
1006}
1007
Al Viro599a0ac2013-03-12 09:58:10 -04001008const struct file_operations pipefifo_fops = {
1009 .open = fifo_open,
1010 .llseek = no_llseek,
Al Virofb9096a2014-04-02 19:56:54 -04001011 .read_iter = pipe_read,
Al Virof0d1bec2014-04-03 15:05:18 -04001012 .write_iter = pipe_write,
Al Viro599a0ac2013-03-12 09:58:10 -04001013 .poll = pipe_poll,
1014 .unlocked_ioctl = pipe_ioctl,
1015 .release = pipe_release,
1016 .fasync = pipe_fasync,
Al Virof776c732013-03-12 09:46:27 -04001017};
1018
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001019/*
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001020 * Currently we rely on the pipe array holding a power-of-2 number
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001021 * of pages. Returns 0 on error.
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001022 */
Joe Lawrence7a8d1812017-11-17 15:29:24 -08001023unsigned int round_pipe_size(unsigned int size)
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001024{
1025 unsigned long nr_pages;
1026
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001027 if (size < pipe_min_size)
1028 size = pipe_min_size;
1029
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001030 nr_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001031 if (nr_pages == 0)
1032 return 0;
1033
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001034 return roundup_pow_of_two(nr_pages) << PAGE_SHIFT;
1035}
1036
1037/*
Jens Axboe35f3d142010-05-20 10:43:18 +02001038 * Allocate a new array of pipe buffers and copy the info over. Returns the
1039 * pipe size if successful, or return -ERROR on error.
1040 */
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001041static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long arg)
Jens Axboe35f3d142010-05-20 10:43:18 +02001042{
1043 struct pipe_buffer *bufs;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001044 unsigned int size, nr_pages;
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001045 unsigned long user_bufs;
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001046 long ret = 0;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001047
1048 size = round_pipe_size(arg);
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001049 if (size == 0)
1050 return -EINVAL;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001051 nr_pages = size >> PAGE_SHIFT;
1052
1053 if (!nr_pages)
1054 return -EINVAL;
1055
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001056 /*
1057 * If trying to increase the pipe capacity, check that an
1058 * unprivileged user is not trying to exceed various limits
1059 * (soft limit check here, hard limit check just below).
1060 * Decreasing the pipe capacity is always permitted, even
1061 * if the user is currently over a limit.
1062 */
1063 if (nr_pages > pipe->buffers &&
1064 size > pipe_max_size && !capable(CAP_SYS_RESOURCE))
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001065 return -EPERM;
1066
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001067 user_bufs = account_pipe_buffers(pipe->user, pipe->buffers, nr_pages);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001068
1069 if (nr_pages > pipe->buffers &&
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001070 (too_many_pipe_buffers_hard(user_bufs) ||
1071 too_many_pipe_buffers_soft(user_bufs)) &&
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001072 !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
1073 ret = -EPERM;
1074 goto out_revert_acct;
1075 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001076
1077 /*
Jens Axboe35f3d142010-05-20 10:43:18 +02001078 * We can shrink the pipe, if arg >= pipe->nrbufs. Since we don't
1079 * expect a lot of shrink+grow operations, just free and allocate
1080 * again like we would do for growing. If the pipe currently
1081 * contains more buffers than arg, then return busy.
1082 */
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001083 if (nr_pages < pipe->nrbufs) {
1084 ret = -EBUSY;
1085 goto out_revert_acct;
1086 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001087
Vladimir Davydovd86133b2016-07-26 15:24:33 -07001088 bufs = kcalloc(nr_pages, sizeof(*bufs),
1089 GFP_KERNEL_ACCOUNT | __GFP_NOWARN);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001090 if (unlikely(!bufs)) {
1091 ret = -ENOMEM;
1092 goto out_revert_acct;
1093 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001094
1095 /*
1096 * The pipe array wraps around, so just start the new one at zero
1097 * and adjust the indexes.
1098 */
1099 if (pipe->nrbufs) {
Miklos Szeredi1d862f42010-06-08 16:28:45 +02001100 unsigned int tail;
1101 unsigned int head;
Jens Axboe35f3d142010-05-20 10:43:18 +02001102
Miklos Szeredi1d862f42010-06-08 16:28:45 +02001103 tail = pipe->curbuf + pipe->nrbufs;
1104 if (tail < pipe->buffers)
1105 tail = 0;
1106 else
1107 tail &= (pipe->buffers - 1);
1108
1109 head = pipe->nrbufs - tail;
Jens Axboe35f3d142010-05-20 10:43:18 +02001110 if (head)
1111 memcpy(bufs, pipe->bufs + pipe->curbuf, head * sizeof(struct pipe_buffer));
1112 if (tail)
Miklos Szeredi1d862f42010-06-08 16:28:45 +02001113 memcpy(bufs + head, pipe->bufs, tail * sizeof(struct pipe_buffer));
Jens Axboe35f3d142010-05-20 10:43:18 +02001114 }
1115
1116 pipe->curbuf = 0;
1117 kfree(pipe->bufs);
1118 pipe->bufs = bufs;
Jens Axboeb9598db2010-05-24 19:34:43 +02001119 pipe->buffers = nr_pages;
1120 return nr_pages * PAGE_SIZE;
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001121
1122out_revert_acct:
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001123 (void) account_pipe_buffers(pipe->user, nr_pages, pipe->buffers);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001124 return ret;
Jens Axboe35f3d142010-05-20 10:43:18 +02001125}
1126
Jens Axboeff9da692010-06-03 14:54:39 +02001127/*
Joe Lawrence7a8d1812017-11-17 15:29:24 -08001128 * This should work even if CONFIG_PROC_FS isn't set, as proc_dopipe_max_size
Jens Axboeff9da692010-06-03 14:54:39 +02001129 * will return an error.
1130 */
1131int pipe_proc_fn(struct ctl_table *table, int write, void __user *buf,
1132 size_t *lenp, loff_t *ppos)
1133{
Joe Lawrence7a8d1812017-11-17 15:29:24 -08001134 return proc_dopipe_max_size(table, write, buf, lenp, ppos);
Jens Axboeff9da692010-06-03 14:54:39 +02001135}
1136
Linus Torvalds72083642010-11-28 16:27:19 -08001137/*
1138 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1139 * location, so checking ->i_pipe is not enough to verify that this is a
1140 * pipe.
1141 */
1142struct pipe_inode_info *get_pipe_info(struct file *file)
1143{
Al Virode32ec42013-03-21 11:16:56 -04001144 return file->f_op == &pipefifo_fops ? file->private_data : NULL;
Linus Torvalds72083642010-11-28 16:27:19 -08001145}
1146
Jens Axboe35f3d142010-05-20 10:43:18 +02001147long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
1148{
1149 struct pipe_inode_info *pipe;
1150 long ret;
1151
Linus Torvaldsc66fb342010-11-28 14:09:57 -08001152 pipe = get_pipe_info(file);
Jens Axboe35f3d142010-05-20 10:43:18 +02001153 if (!pipe)
1154 return -EBADF;
1155
Al Viroebec73f2013-03-21 12:24:01 -04001156 __pipe_lock(pipe);
Jens Axboe35f3d142010-05-20 10:43:18 +02001157
1158 switch (cmd) {
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001159 case F_SETPIPE_SZ:
1160 ret = pipe_set_size(pipe, arg);
Jens Axboe35f3d142010-05-20 10:43:18 +02001161 break;
1162 case F_GETPIPE_SZ:
Jens Axboeb9598db2010-05-24 19:34:43 +02001163 ret = pipe->buffers * PAGE_SIZE;
Jens Axboe35f3d142010-05-20 10:43:18 +02001164 break;
1165 default:
1166 ret = -EINVAL;
1167 break;
1168 }
1169
Al Viroebec73f2013-03-21 12:24:01 -04001170 __pipe_unlock(pipe);
Jens Axboe35f3d142010-05-20 10:43:18 +02001171 return ret;
1172}
1173
Nick Pigginff0c7d12011-01-07 17:49:50 +11001174static const struct super_operations pipefs_ops = {
1175 .destroy_inode = free_inode_nonrcu,
Pavel Emelyanovd70ef972011-10-31 17:10:04 -07001176 .statfs = simple_statfs,
Nick Pigginff0c7d12011-01-07 17:49:50 +11001177};
1178
Jens Axboe35f3d142010-05-20 10:43:18 +02001179/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 * pipefs should _never_ be mounted by userland - too much of security hassle,
1181 * no real gain from having the whole whorehouse mounted. So we don't need
1182 * any operations on the root directory. However, we need a non-trivial
1183 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1184 */
Al Viro51139ad2010-07-25 23:47:46 +04001185static struct dentry *pipefs_mount(struct file_system_type *fs_type,
1186 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Al Viroc74a1cb2011-01-12 16:59:34 -05001188 return mount_pseudo(fs_type, "pipe:", &pipefs_ops,
1189 &pipefs_dentry_operations, PIPEFS_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192static struct file_system_type pipe_fs_type = {
1193 .name = "pipefs",
Al Viro51139ad2010-07-25 23:47:46 +04001194 .mount = pipefs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 .kill_sb = kill_anon_super,
1196};
1197
1198static int __init init_pipe_fs(void)
1199{
1200 int err = register_filesystem(&pipe_fs_type);
Ingo Molnar341b4462006-04-11 13:57:45 +02001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (!err) {
1203 pipe_mnt = kern_mount(&pipe_fs_type);
1204 if (IS_ERR(pipe_mnt)) {
1205 err = PTR_ERR(pipe_mnt);
1206 unregister_filesystem(&pipe_fs_type);
1207 }
1208 }
1209 return err;
1210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212fs_initcall(init_pipe_fs);