blob: 87109e761fa5e3f8e994612e774bda07ef5c58c6 [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>
David Howells4fa7ec52019-03-25 16:38:23 +000017#include <linux/pseudo_fs.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070018#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/pipe_fs_i.h>
20#include <linux/uio.h>
21#include <linux/highmem.h>
Jens Axboe5274f052006-03-30 15:15:30 +020022#include <linux/pagemap.h>
Al Virodb349502007-02-07 01:48:00 -050023#include <linux/audit.h>
Ulrich Drepperba719ba2008-05-06 20:42:38 -070024#include <linux/syscalls.h>
Jens Axboeb492e952010-05-19 21:03:16 +020025#include <linux/fcntl.h>
Vladimir Davydovd86133b2016-07-26 15:24:33 -070026#include <linux/memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080028#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/ioctls.h>
30
Al Viro599a0ac2013-03-12 09:58:10 -040031#include "internal.h"
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
Jens Axboeb492e952010-05-19 21:03:16 +020034 * The max size that a non-root user is allowed to grow the pipe. Can
Jens Axboeff9da692010-06-03 14:54:39 +020035 * be set by root in /proc/sys/fs/pipe-max-size
Jens Axboeb492e952010-05-19 21:03:16 +020036 */
Jens Axboeff9da692010-06-03 14:54:39 +020037unsigned int pipe_max_size = 1048576;
38
Willy Tarreau759c0112016-01-18 16:36:09 +010039/* Maximum allocatable pages per user. Hard limit is unset by default, soft
40 * matches default values.
41 */
42unsigned long pipe_user_pages_hard;
43unsigned long pipe_user_pages_soft = PIPE_DEF_BUFFERS * INR_OPEN_CUR;
44
Jens Axboeb492e952010-05-19 21:03:16 +020045/*
David Howells8cefc102019-11-15 13:30:32 +000046 * We use head and tail indices that aren't masked off, except at the point of
47 * dereference, but rather they're allowed to wrap naturally. This means there
48 * isn't a dead spot in the buffer, but the ring has to be a power of two and
49 * <= 2^31.
50 * -- David Howells 2019-09-23.
51 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Reads with count = 0 should always return 0.
53 * -- Julian Bradfield 1999-06-07.
54 *
55 * FIFOs and Pipes now generate SIGIO for both readers and writers.
56 * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
57 *
58 * pipe_read & write cleanup
59 * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
60 */
61
Miklos Szeredi61e0d472009-04-14 19:48:41 +020062static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass)
63{
Al Viro6447a3c2013-03-21 11:01:38 -040064 if (pipe->files)
Al Viro72b0d9a2013-03-21 02:32:24 -040065 mutex_lock_nested(&pipe->mutex, subclass);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020066}
67
68void pipe_lock(struct pipe_inode_info *pipe)
69{
70 /*
71 * pipe_lock() nests non-pipe inode locks (for writing to a file)
72 */
73 pipe_lock_nested(pipe, I_MUTEX_PARENT);
74}
75EXPORT_SYMBOL(pipe_lock);
76
77void pipe_unlock(struct pipe_inode_info *pipe)
78{
Al Viro6447a3c2013-03-21 11:01:38 -040079 if (pipe->files)
Al Viro72b0d9a2013-03-21 02:32:24 -040080 mutex_unlock(&pipe->mutex);
Miklos Szeredi61e0d472009-04-14 19:48:41 +020081}
82EXPORT_SYMBOL(pipe_unlock);
83
Al Viroebec73f2013-03-21 12:24:01 -040084static inline void __pipe_lock(struct pipe_inode_info *pipe)
85{
86 mutex_lock_nested(&pipe->mutex, I_MUTEX_PARENT);
87}
88
89static inline void __pipe_unlock(struct pipe_inode_info *pipe)
90{
91 mutex_unlock(&pipe->mutex);
92}
93
Miklos Szeredi61e0d472009-04-14 19:48:41 +020094void pipe_double_lock(struct pipe_inode_info *pipe1,
95 struct pipe_inode_info *pipe2)
96{
97 BUG_ON(pipe1 == pipe2);
98
99 if (pipe1 < pipe2) {
100 pipe_lock_nested(pipe1, I_MUTEX_PARENT);
101 pipe_lock_nested(pipe2, I_MUTEX_CHILD);
102 } else {
Peter Zijlstra023d43c2009-07-21 10:09:23 +0200103 pipe_lock_nested(pipe2, I_MUTEX_PARENT);
104 pipe_lock_nested(pipe1, I_MUTEX_CHILD);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200105 }
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* Drop the inode semaphore and wait for a pipe event, atomically */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200109void pipe_wait(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 DEFINE_WAIT(wait);
112
Ingo Molnard79fc0f2005-09-10 00:26:12 -0700113 /*
114 * Pipes are system-local resources, so sleeping on them
115 * is considered a noninteractive wait:
116 */
Mike Galbraithaf927232007-10-15 17:00:13 +0200117 prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200118 pipe_unlock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 schedule();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200120 finish_wait(&pipe->wait, &wait);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200121 pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Ingo Molnar341b4462006-04-11 13:57:45 +0200124static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
125 struct pipe_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 struct page *page = buf->page;
128
Jens Axboe5274f052006-03-30 15:15:30 +0200129 /*
130 * If nobody else uses this page, and we don't already have a
131 * temporary page, let's keep track of it as a one-deep
Ingo Molnar341b4462006-04-11 13:57:45 +0200132 * allocation cache. (Otherwise just release our reference to it)
Jens Axboe5274f052006-03-30 15:15:30 +0200133 */
Ingo Molnar341b4462006-04-11 13:57:45 +0200134 if (page_count(page) == 1 && !pipe->tmp_page)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200135 pipe->tmp_page = page;
Ingo Molnar341b4462006-04-11 13:57:45 +0200136 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300137 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700140static int anon_pipe_buf_steal(struct pipe_inode_info *pipe,
141 struct pipe_buffer *buf)
142{
143 struct page *page = buf->page;
144
145 if (page_count(page) == 1) {
Shakeel Butt60cd4bc2019-03-05 15:43:13 -0800146 memcg_kmem_uncharge(page, 0);
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700147 __SetPageLocked(page);
148 return 0;
149 }
150 return 1;
151}
152
Jens Axboe08457182007-06-12 20:51:32 +0200153/**
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800154 * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
Jens Axboe08457182007-06-12 20:51:32 +0200155 * @pipe: the pipe that the buffer belongs to
156 * @buf: the buffer to attempt to steal
157 *
158 * Description:
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800159 * This function attempts to steal the &struct page attached to
Jens Axboe08457182007-06-12 20:51:32 +0200160 * @buf. If successful, this function returns 0 and returns with
161 * the page locked. The caller may then reuse the page for whatever
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800162 * he wishes; the typical use is insertion into a different file
Jens Axboe08457182007-06-12 20:51:32 +0200163 * page cache.
164 */
Jens Axboe330ab712006-05-02 15:29:57 +0200165int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
166 struct pipe_buffer *buf)
Jens Axboe5abc97a2006-03-30 15:16:46 +0200167{
Jens Axboe46e678c2006-04-30 16:36:32 +0200168 struct page *page = buf->page;
169
Jens Axboe08457182007-06-12 20:51:32 +0200170 /*
171 * A reference of one is golden, that means that the owner of this
172 * page is the only one holding a reference to it. lock the page
173 * and return OK.
174 */
Jens Axboe46e678c2006-04-30 16:36:32 +0200175 if (page_count(page) == 1) {
Jens Axboe46e678c2006-04-30 16:36:32 +0200176 lock_page(page);
177 return 0;
178 }
179
180 return 1;
Jens Axboe5abc97a2006-03-30 15:16:46 +0200181}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200182EXPORT_SYMBOL(generic_pipe_buf_steal);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200183
Jens Axboe08457182007-06-12 20:51:32 +0200184/**
Randy Dunlapb51d63c2008-02-13 15:03:22 -0800185 * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
Jens Axboe08457182007-06-12 20:51:32 +0200186 * @pipe: the pipe that the buffer belongs to
187 * @buf: the buffer to get a reference to
188 *
189 * Description:
190 * This function grabs an extra reference to @buf. It's used in
191 * in the tee() system call, when we duplicate the buffers in one
192 * pipe into another.
193 */
Matthew Wilcox15fab632019-04-05 14:02:10 -0700194bool generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
Jens Axboe70524492006-04-11 15:51:17 +0200195{
Matthew Wilcox15fab632019-04-05 14:02:10 -0700196 return try_get_page(buf->page);
Jens Axboe70524492006-04-11 15:51:17 +0200197}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200198EXPORT_SYMBOL(generic_pipe_buf_get);
Jens Axboe70524492006-04-11 15:51:17 +0200199
Jens Axboe08457182007-06-12 20:51:32 +0200200/**
201 * generic_pipe_buf_confirm - verify contents of the pipe buffer
Randy Dunlap79685b82007-07-27 08:08:51 +0200202 * @info: the pipe that the buffer belongs to
Jens Axboe08457182007-06-12 20:51:32 +0200203 * @buf: the buffer to confirm
204 *
205 * Description:
206 * This function does nothing, because the generic pipe code uses
207 * pages that are always good when inserted into the pipe.
208 */
Jens Axboecac36bb02007-06-14 13:10:48 +0200209int generic_pipe_buf_confirm(struct pipe_inode_info *info,
210 struct pipe_buffer *buf)
Jens Axboef84d7512006-05-01 19:59:03 +0200211{
212 return 0;
213}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200214EXPORT_SYMBOL(generic_pipe_buf_confirm);
Jens Axboef84d7512006-05-01 19:59:03 +0200215
Miklos Szeredi68181732009-05-07 15:37:36 +0200216/**
217 * generic_pipe_buf_release - put a reference to a &struct pipe_buffer
218 * @pipe: the pipe that the buffer belongs to
219 * @buf: the buffer to put a reference to
220 *
221 * Description:
222 * This function releases a reference to @buf.
223 */
224void generic_pipe_buf_release(struct pipe_inode_info *pipe,
225 struct pipe_buffer *buf)
226{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300227 put_page(buf->page);
Miklos Szeredi68181732009-05-07 15:37:36 +0200228}
Miklos Szeredi51921cb2010-05-26 08:44:22 +0200229EXPORT_SYMBOL(generic_pipe_buf_release);
Miklos Szeredi68181732009-05-07 15:37:36 +0200230
Jann Horn01e71872019-01-23 15:19:18 +0100231/* New data written to a pipe may be appended to a buffer with this type. */
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800232static const struct pipe_buf_operations anon_pipe_buf_ops = {
Jens Axboecac36bb02007-06-14 13:10:48 +0200233 .confirm = generic_pipe_buf_confirm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 .release = anon_pipe_buf_release,
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700235 .steal = anon_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200236 .get = generic_pipe_buf_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237};
238
Jann Horna0ce2f02019-01-23 15:19:17 +0100239static const struct pipe_buf_operations anon_pipe_buf_nomerge_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .confirm = generic_pipe_buf_confirm,
241 .release = anon_pipe_buf_release,
242 .steal = anon_pipe_buf_steal,
243 .get = generic_pipe_buf_get,
Ingo Molnar923f4f22006-04-11 13:53:33 +0200244};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Linus Torvalds98830352012-04-29 13:12:42 -0700246static const struct pipe_buf_operations packet_pipe_buf_ops = {
Linus Torvalds98830352012-04-29 13:12:42 -0700247 .confirm = generic_pipe_buf_confirm,
248 .release = anon_pipe_buf_release,
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700249 .steal = anon_pipe_buf_steal,
Linus Torvalds98830352012-04-29 13:12:42 -0700250 .get = generic_pipe_buf_get,
251};
252
Jann Horn01e71872019-01-23 15:19:18 +0100253/**
254 * pipe_buf_mark_unmergeable - mark a &struct pipe_buffer as unmergeable
255 * @buf: the buffer to mark
256 *
257 * Description:
258 * This function ensures that no future writes will be merged into the
259 * given &struct pipe_buffer. This is necessary when multiple pipe buffers
260 * share the same backing page.
261 */
Jann Horna0ce2f02019-01-23 15:19:17 +0100262void pipe_buf_mark_unmergeable(struct pipe_buffer *buf)
263{
264 if (buf->ops == &anon_pipe_buf_ops)
265 buf->ops = &anon_pipe_buf_nomerge_ops;
266}
267
Jann Horn01e71872019-01-23 15:19:18 +0100268static bool pipe_buf_can_merge(struct pipe_buffer *buf)
269{
270 return buf->ops == &anon_pipe_buf_ops;
271}
272
Linus Torvalds85190d12019-12-07 13:53:09 -0800273/* Done while waiting without holding the pipe lock - thus the READ_ONCE() */
274static inline bool pipe_readable(const struct pipe_inode_info *pipe)
275{
276 unsigned int head = READ_ONCE(pipe->head);
277 unsigned int tail = READ_ONCE(pipe->tail);
278 unsigned int writers = READ_ONCE(pipe->writers);
279
280 return !pipe_empty(head, tail) || !writers;
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283static ssize_t
Al Virofb9096a2014-04-02 19:56:54 -0400284pipe_read(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Al Virofb9096a2014-04-02 19:56:54 -0400286 size_t total_len = iov_iter_count(to);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700287 struct file *filp = iocb->ki_filp;
Al Virode32ec42013-03-21 11:16:56 -0400288 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800289 bool was_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* Null read succeeds. */
293 if (unlikely(total_len == 0))
294 return 0;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 ret = 0;
Al Viroebec73f2013-03-21 12:24:01 -0400297 __pipe_lock(pipe);
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800298
299 /*
300 * We only wake up writers if the pipe was full when we started
301 * reading in order to avoid unnecessary wakeups.
302 *
303 * But when we do wake up writers, we do so using a sync wakeup
304 * (WF_SYNC), because we want them to get going and generate more
305 * data for us.
306 */
307 was_full = pipe_full(pipe->head, pipe->tail, pipe->max_usage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 for (;;) {
David Howells8cefc102019-11-15 13:30:32 +0000309 unsigned int head = pipe->head;
310 unsigned int tail = pipe->tail;
311 unsigned int mask = pipe->ring_size - 1;
312
313 if (!pipe_empty(head, tail)) {
314 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 size_t chars = buf->len;
Al Viro637b58c2014-02-03 19:11:42 -0500316 size_t written;
317 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (chars > total_len)
320 chars = total_len;
321
Miklos Szeredifba597d2016-09-27 10:45:12 +0200322 error = pipe_buf_confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200323 if (error) {
Jens Axboe5274f052006-03-30 15:15:30 +0200324 if (!ret)
Nicolas Kaisere5953cb2010-10-21 14:56:00 +0200325 ret = error;
Jens Axboe5274f052006-03-30 15:15:30 +0200326 break;
327 }
Jens Axboef84d7512006-05-01 19:59:03 +0200328
Al Virofb9096a2014-04-02 19:56:54 -0400329 written = copy_page_to_iter(buf->page, buf->offset, chars, to);
Al Viro637b58c2014-02-03 19:11:42 -0500330 if (unlikely(written < chars)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200331 if (!ret)
Al Viro637b58c2014-02-03 19:11:42 -0500332 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 break;
334 }
335 ret += chars;
336 buf->offset += chars;
337 buf->len -= chars;
Linus Torvalds98830352012-04-29 13:12:42 -0700338
339 /* Was it a packet buffer? Clean up and exit */
340 if (buf->flags & PIPE_BUF_FLAG_PACKET) {
341 total_len = chars;
342 buf->len = 0;
343 }
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (!buf->len) {
Miklos Szeredia7796382016-09-27 10:45:12 +0200346 pipe_buf_release(pipe, buf);
David Howellsb667b862019-09-24 16:09:04 +0100347 spin_lock_irq(&pipe->wait.lock);
David Howells8cefc102019-11-15 13:30:32 +0000348 tail++;
349 pipe->tail = tail;
David Howellsb667b862019-09-24 16:09:04 +0100350 spin_unlock_irq(&pipe->wait.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352 total_len -= chars;
353 if (!total_len)
354 break; /* common path: read succeeded */
David Howells8cefc102019-11-15 13:30:32 +0000355 if (!pipe_empty(head, tail)) /* More to do? */
356 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
David Howells8cefc102019-11-15 13:30:32 +0000358
Ingo Molnar923f4f22006-04-11 13:53:33 +0200359 if (!pipe->writers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 break;
Linus Torvaldsa28c8b92019-12-07 13:21:01 -0800361 if (ret)
362 break;
363 if (filp->f_flags & O_NONBLOCK) {
364 ret = -EAGAIN;
365 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200368 if (!ret)
369 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 break;
371 }
Linus Torvalds85190d12019-12-07 13:53:09 -0800372 __pipe_unlock(pipe);
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800373 if (was_full) {
374 wake_up_interruptible_sync_poll(&pipe->wait, EPOLLOUT | EPOLLWRNORM);
375 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
376 }
Linus Torvalds85190d12019-12-07 13:53:09 -0800377 wait_event_interruptible(pipe->wait, pipe_readable(pipe));
378 __pipe_lock(pipe);
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800379 was_full = pipe_full(pipe->head, pipe->tail, pipe->max_usage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Al Viroebec73f2013-03-21 12:24:01 -0400381 __pipe_unlock(pipe);
Ingo Molnar341b4462006-04-11 13:57:45 +0200382
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800383 if (was_full) {
384 wake_up_interruptible_sync_poll(&pipe->wait, EPOLLOUT | EPOLLWRNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200385 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 if (ret > 0)
388 file_accessed(filp);
389 return ret;
390}
391
Linus Torvalds98830352012-04-29 13:12:42 -0700392static inline int is_packetized(struct file *file)
393{
394 return (file->f_flags & O_DIRECT) != 0;
395}
396
Linus Torvalds85190d12019-12-07 13:53:09 -0800397/* Done while waiting without holding the pipe lock - thus the READ_ONCE() */
398static inline bool pipe_writable(const struct pipe_inode_info *pipe)
399{
400 unsigned int head = READ_ONCE(pipe->head);
401 unsigned int tail = READ_ONCE(pipe->tail);
402 unsigned int max_usage = READ_ONCE(pipe->max_usage);
403
404 return !pipe_full(head, tail, max_usage) ||
405 !READ_ONCE(pipe->readers);
406}
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408static ssize_t
Al Virof0d1bec2014-04-03 15:05:18 -0400409pipe_write(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700411 struct file *filp = iocb->ki_filp;
Al Virode32ec42013-03-21 11:16:56 -0400412 struct pipe_inode_info *pipe = filp->private_data;
David Howells8f868d62019-12-05 22:30:37 +0000413 unsigned int head;
Al Virof0d1bec2014-04-03 15:05:18 -0400414 ssize_t ret = 0;
Al Virof0d1bec2014-04-03 15:05:18 -0400415 size_t total_len = iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 ssize_t chars;
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800417 bool was_empty = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* Null write succeeds. */
420 if (unlikely(total_len == 0))
421 return 0;
422
Al Viroebec73f2013-03-21 12:24:01 -0400423 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Ingo Molnar923f4f22006-04-11 13:53:33 +0200425 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 send_sig(SIGPIPE, current, 0);
427 ret = -EPIPE;
428 goto out;
429 }
430
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800431 /*
432 * Only wake up if the pipe started out empty, since
433 * otherwise there should be no readers waiting.
434 *
435 * If it wasn't empty we try to merge new data into
436 * the last buffer.
437 *
438 * That naturally merges small writes, but it also
439 * page-aligs the rest of the writes for large writes
440 * spanning multiple pages.
441 */
David Howells8cefc102019-11-15 13:30:32 +0000442 head = pipe->head;
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800443 was_empty = pipe_empty(head, pipe->tail);
444 chars = total_len & (PAGE_SIZE-1);
445 if (chars && !was_empty) {
David Howells8f868d62019-12-05 22:30:37 +0000446 unsigned int mask = pipe->ring_size - 1;
David Howells8cefc102019-11-15 13:30:32 +0000447 struct pipe_buffer *buf = &pipe->bufs[(head - 1) & mask];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int offset = buf->offset + buf->len;
Ingo Molnar341b4462006-04-11 13:57:45 +0200449
Jann Horn01e71872019-01-23 15:19:18 +0100450 if (pipe_buf_can_merge(buf) && offset + chars <= PAGE_SIZE) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200451 ret = pipe_buf_confirm(pipe, buf);
Eric Biggers6ae08062015-10-17 16:26:09 -0500452 if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200453 goto out;
Jens Axboef84d7512006-05-01 19:59:03 +0200454
Al Virof0d1bec2014-04-03 15:05:18 -0400455 ret = copy_page_from_iter(buf->page, offset, chars, from);
456 if (unlikely(ret < chars)) {
Eric Biggers6ae08062015-10-17 16:26:09 -0500457 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 goto out;
Jens Axboef6762b72006-05-01 20:02:05 +0200459 }
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800460
Eric Biggers6ae08062015-10-17 16:26:09 -0500461 buf->len += ret;
Al Virof0d1bec2014-04-03 15:05:18 -0400462 if (!iov_iter_count(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 goto out;
464 }
465 }
466
467 for (;;) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200468 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 send_sig(SIGPIPE, current, 0);
Ingo Molnar341b4462006-04-11 13:57:45 +0200470 if (!ret)
471 ret = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 }
David Howells8cefc102019-11-15 13:30:32 +0000474
David Howellsa194dfe2019-09-20 16:32:19 +0100475 head = pipe->head;
David Howells8f868d62019-12-05 22:30:37 +0000476 if (!pipe_full(head, pipe->tail, pipe->max_usage)) {
477 unsigned int mask = pipe->ring_size - 1;
David Howells8cefc102019-11-15 13:30:32 +0000478 struct pipe_buffer *buf = &pipe->bufs[head & mask];
Ingo Molnar923f4f22006-04-11 13:53:33 +0200479 struct page *page = pipe->tmp_page;
Al Virof0d1bec2014-04-03 15:05:18 -0400480 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 if (!page) {
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700483 page = alloc_page(GFP_HIGHUSER | __GFP_ACCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (unlikely(!page)) {
485 ret = ret ? : -ENOMEM;
486 break;
487 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200488 pipe->tmp_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
David Howellsa194dfe2019-09-20 16:32:19 +0100490
491 /* Allocate a slot in the ring in advance and attach an
492 * empty buffer. If we fault or otherwise fail to use
493 * it, either the reader will consume it or it'll still
494 * be there for the next write.
495 */
496 spin_lock_irq(&pipe->wait.lock);
497
498 head = pipe->head;
David Howells8f868d62019-12-05 22:30:37 +0000499 if (pipe_full(head, pipe->tail, pipe->max_usage)) {
David Howells8df44122019-10-07 16:30:51 +0100500 spin_unlock_irq(&pipe->wait.lock);
501 continue;
502 }
503
David Howellsa194dfe2019-09-20 16:32:19 +0100504 pipe->head = head + 1;
David Howellsa194dfe2019-09-20 16:32:19 +0100505 spin_unlock_irq(&pipe->wait.lock);
David Howellsa194dfe2019-09-20 16:32:19 +0100506
507 /* Insert it into the buffer array */
508 buf = &pipe->bufs[head & mask];
509 buf->page = page;
510 buf->ops = &anon_pipe_buf_ops;
511 buf->offset = 0;
512 buf->len = 0;
513 buf->flags = 0;
514 if (is_packetized(filp)) {
515 buf->ops = &packet_pipe_buf_ops;
516 buf->flags = PIPE_BUF_FLAG_PACKET;
517 }
518 pipe->tmp_page = NULL;
519
Al Virof0d1bec2014-04-03 15:05:18 -0400520 copied = copy_page_from_iter(page, 0, PAGE_SIZE, from);
521 if (unlikely(copied < PAGE_SIZE && iov_iter_count(from))) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200522 if (!ret)
Al Virof0d1bec2014-04-03 15:05:18 -0400523 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 break;
525 }
Al Virof0d1bec2014-04-03 15:05:18 -0400526 ret += copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 buf->offset = 0;
Al Virof0d1bec2014-04-03 15:05:18 -0400528 buf->len = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Al Virof0d1bec2014-04-03 15:05:18 -0400530 if (!iov_iter_count(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
532 }
David Howells8cefc102019-11-15 13:30:32 +0000533
David Howells8f868d62019-12-05 22:30:37 +0000534 if (!pipe_full(head, pipe->tail, pipe->max_usage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 continue;
David Howells8cefc102019-11-15 13:30:32 +0000536
537 /* Wait for buffer space to become available. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (filp->f_flags & O_NONBLOCK) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200539 if (!ret)
540 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
542 }
543 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200544 if (!ret)
545 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
547 }
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800548
549 /*
550 * We're going to release the pipe lock and wait for more
551 * space. We wake up any readers if necessary, and then
552 * after waiting we need to re-check whether the pipe
553 * become empty while we dropped the lock.
554 */
Linus Torvalds85190d12019-12-07 13:53:09 -0800555 __pipe_unlock(pipe);
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800556 if (was_empty) {
557 wake_up_interruptible_sync_poll(&pipe->wait, EPOLLIN | EPOLLRDNORM);
558 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
559 }
Linus Torvalds85190d12019-12-07 13:53:09 -0800560 wait_event_interruptible(pipe->wait, pipe_writable(pipe));
561 __pipe_lock(pipe);
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800562 was_empty = pipe_empty(head, pipe->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564out:
Al Viroebec73f2013-03-21 12:24:01 -0400565 __pipe_unlock(pipe);
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800566
567 /*
568 * If we do do a wakeup event, we do a 'sync' wakeup, because we
569 * want the reader to start processing things asap, rather than
570 * leave the data pending.
571 *
572 * This is particularly important for small writes, because of
573 * how (for example) the GNU make jobserver uses small writes to
574 * wake up pending jobs
575 */
576 if (was_empty) {
577 wake_up_interruptible_sync_poll(&pipe->wait, EPOLLIN | EPOLLRDNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200578 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Dmitry Monakhov7e775f42014-01-23 15:55:21 -0800580 if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) {
Josef Bacikc3b2da32012-03-26 09:59:21 -0400581 int err = file_update_time(filp);
582 if (err)
583 ret = err;
Dmitry Monakhov7e775f42014-01-23 15:55:21 -0800584 sb_end_write(file_inode(filp)->i_sb);
Josef Bacikc3b2da32012-03-26 09:59:21 -0400585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return ret;
587}
588
Andi Kleend59d0b12008-02-08 04:21:23 -0800589static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Al Virode32ec42013-03-21 11:16:56 -0400591 struct pipe_inode_info *pipe = filp->private_data;
David Howells8cefc102019-11-15 13:30:32 +0000592 int count, head, tail, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 switch (cmd) {
595 case FIONREAD:
Al Viroebec73f2013-03-21 12:24:01 -0400596 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 count = 0;
David Howells8cefc102019-11-15 13:30:32 +0000598 head = pipe->head;
599 tail = pipe->tail;
600 mask = pipe->ring_size - 1;
601
602 while (tail != head) {
603 count += pipe->bufs[tail & mask].len;
604 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Al Viroebec73f2013-03-21 12:24:01 -0400606 __pipe_unlock(pipe);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return put_user(count, (int __user *)arg);
609 default:
Will Deacon46ce3412012-05-25 11:39:13 +0100610 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612}
613
Christoph Hellwigdd670812017-12-31 16:42:12 +0100614/* No kernel lock held - fine */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700615static __poll_t
616pipe_poll(struct file *filp, poll_table *wait)
Christoph Hellwigdd670812017-12-31 16:42:12 +0100617{
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700618 __poll_t mask;
Christoph Hellwigdd670812017-12-31 16:42:12 +0100619 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvaldsad910e32019-12-07 10:41:17 -0800620 unsigned int head, tail;
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700621
Linus Torvaldsad910e32019-12-07 10:41:17 -0800622 /*
623 * Reading only -- no need for acquiring the semaphore.
624 *
625 * But because this is racy, the code has to add the
626 * entry to the poll table _first_ ..
627 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700628 poll_wait(filp, &pipe->wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Linus Torvaldsad910e32019-12-07 10:41:17 -0800630 /*
631 * .. and only then can you do the racy tests. That way,
632 * if something changes and you got it wrong, the poll
633 * table entry will wake you up and fix it.
634 */
635 head = READ_ONCE(pipe->head);
636 tail = READ_ONCE(pipe->tail);
637
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700638 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (filp->f_mode & FMODE_READ) {
David Howells8cefc102019-11-15 13:30:32 +0000640 if (!pipe_empty(head, tail))
641 mask |= EPOLLIN | EPOLLRDNORM;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200642 if (!pipe->writers && filp->f_version != pipe->w_counter)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800643 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
646 if (filp->f_mode & FMODE_WRITE) {
David Howells6718b6f2019-10-16 16:47:32 +0100647 if (!pipe_full(head, tail, pipe->max_usage))
David Howells8cefc102019-11-15 13:30:32 +0000648 mask |= EPOLLOUT | EPOLLWRNORM;
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700649 /*
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800650 * Most Unices do not set EPOLLERR for FIFOs but on Linux they
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700651 * behave exactly like pipes for poll().
652 */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200653 if (!pipe->readers)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800654 mask |= EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
657 return mask;
658}
659
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800660static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe)
661{
662 int kill = 0;
663
664 spin_lock(&inode->i_lock);
665 if (!--pipe->files) {
666 inode->i_pipe = NULL;
667 kill = 1;
668 }
669 spin_unlock(&inode->i_lock);
670
671 if (kill)
672 free_pipe_info(pipe);
673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675static int
Al Viro599a0ac2013-03-12 09:58:10 -0400676pipe_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800678 struct pipe_inode_info *pipe = file->private_data;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200679
Al Viroebec73f2013-03-21 12:24:01 -0400680 __pipe_lock(pipe);
Al Viro599a0ac2013-03-12 09:58:10 -0400681 if (file->f_mode & FMODE_READ)
682 pipe->readers--;
683 if (file->f_mode & FMODE_WRITE)
684 pipe->writers--;
Ingo Molnar341b4462006-04-11 13:57:45 +0200685
Al Viroba5bb142013-03-21 02:21:19 -0400686 if (pipe->readers || pipe->writers) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800687 wake_up_interruptible_sync_poll(&pipe->wait, EPOLLIN | EPOLLOUT | EPOLLRDNORM | EPOLLWRNORM | EPOLLERR | EPOLLHUP);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200688 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
689 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Al Viroebec73f2013-03-21 12:24:01 -0400691 __pipe_unlock(pipe);
Al Viroba5bb142013-03-21 02:21:19 -0400692
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800693 put_pipe_info(inode, pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return 0;
695}
696
697static int
Al Viro599a0ac2013-03-12 09:58:10 -0400698pipe_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Al Virode32ec42013-03-21 11:16:56 -0400700 struct pipe_inode_info *pipe = filp->private_data;
Al Viro599a0ac2013-03-12 09:58:10 -0400701 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Al Viroebec73f2013-03-21 12:24:01 -0400703 __pipe_lock(pipe);
Al Viro599a0ac2013-03-12 09:58:10 -0400704 if (filp->f_mode & FMODE_READ)
705 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
706 if ((filp->f_mode & FMODE_WRITE) && retval >= 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200707 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
Al Viro599a0ac2013-03-12 09:58:10 -0400708 if (retval < 0 && (filp->f_mode & FMODE_READ))
709 /* this can happen only if on == T */
Oleg Nesterove5bc49b2009-03-12 14:31:28 -0700710 fasync_helper(-1, filp, 0, &pipe->fasync_readers);
711 }
Al Viroebec73f2013-03-21 12:24:01 -0400712 __pipe_unlock(pipe);
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700713 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700716static unsigned long account_pipe_buffers(struct user_struct *user,
Willy Tarreau759c0112016-01-18 16:36:09 +0100717 unsigned long old, unsigned long new)
718{
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700719 return atomic_long_add_return(new - old, &user->pipe_bufs);
Willy Tarreau759c0112016-01-18 16:36:09 +0100720}
721
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700722static bool too_many_pipe_buffers_soft(unsigned long user_bufs)
Willy Tarreau759c0112016-01-18 16:36:09 +0100723{
Eric Biggersf7340762018-02-06 15:42:08 -0800724 unsigned long soft_limit = READ_ONCE(pipe_user_pages_soft);
725
726 return soft_limit && user_bufs > soft_limit;
Willy Tarreau759c0112016-01-18 16:36:09 +0100727}
728
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700729static bool too_many_pipe_buffers_hard(unsigned long user_bufs)
Willy Tarreau759c0112016-01-18 16:36:09 +0100730{
Eric Biggersf7340762018-02-06 15:42:08 -0800731 unsigned long hard_limit = READ_ONCE(pipe_user_pages_hard);
732
733 return hard_limit && user_bufs > hard_limit;
Willy Tarreau759c0112016-01-18 16:36:09 +0100734}
735
Eric Biggers85c2dd52018-02-06 15:41:53 -0800736static bool is_unprivileged_user(void)
737{
738 return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN);
739}
740
Al Viro7bee1302013-03-21 11:04:15 -0400741struct pipe_inode_info *alloc_pipe_info(void)
Ingo Molnar3a326a22006-04-10 15:18:35 +0200742{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200743 struct pipe_inode_info *pipe;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700744 unsigned long pipe_bufs = PIPE_DEF_BUFFERS;
745 struct user_struct *user = get_current_user();
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700746 unsigned long user_bufs;
Eric Biggersf7340762018-02-06 15:42:08 -0800747 unsigned int max_size = READ_ONCE(pipe_max_size);
Ingo Molnar3a326a22006-04-10 15:18:35 +0200748
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700749 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL_ACCOUNT);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700750 if (pipe == NULL)
751 goto out_free_uid;
Willy Tarreau759c0112016-01-18 16:36:09 +0100752
Eric Biggersf7340762018-02-06 15:42:08 -0800753 if (pipe_bufs * PAGE_SIZE > max_size && !capable(CAP_SYS_RESOURCE))
754 pipe_bufs = max_size >> PAGE_SHIFT;
Michael Kerrisk (man-pages)086e7742016-10-11 13:53:43 -0700755
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700756 user_bufs = account_pipe_buffers(user, 0, pipe_bufs);
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700757
Eric Biggers85c2dd52018-02-06 15:41:53 -0800758 if (too_many_pipe_buffers_soft(user_bufs) && is_unprivileged_user()) {
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700759 user_bufs = account_pipe_buffers(user, pipe_bufs, 1);
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700760 pipe_bufs = 1;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200761 }
762
Eric Biggers85c2dd52018-02-06 15:41:53 -0800763 if (too_many_pipe_buffers_hard(user_bufs) && is_unprivileged_user())
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700764 goto out_revert_acct;
765
766 pipe->bufs = kcalloc(pipe_bufs, sizeof(struct pipe_buffer),
767 GFP_KERNEL_ACCOUNT);
768
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700769 if (pipe->bufs) {
770 init_waitqueue_head(&pipe->wait);
771 pipe->r_counter = pipe->w_counter = 1;
David Howells6718b6f2019-10-16 16:47:32 +0100772 pipe->max_usage = pipe_bufs;
David Howells8cefc102019-11-15 13:30:32 +0000773 pipe->ring_size = pipe_bufs;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700774 pipe->user = user;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700775 mutex_init(&pipe->mutex);
776 return pipe;
777 }
778
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700779out_revert_acct:
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700780 (void) account_pipe_buffers(user, pipe_bufs, 0);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700781 kfree(pipe);
782out_free_uid:
783 free_uid(user);
Jens Axboe35f3d142010-05-20 10:43:18 +0200784 return NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200785}
786
Al Viro4b8a8f12013-03-21 11:06:46 -0400787void free_pipe_info(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
David Howells8cefc102019-11-15 13:30:32 +0000791 (void) account_pipe_buffers(pipe->user, pipe->ring_size, 0);
Willy Tarreau759c0112016-01-18 16:36:09 +0100792 free_uid(pipe->user);
David Howells8cefc102019-11-15 13:30:32 +0000793 for (i = 0; i < pipe->ring_size; i++) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200794 struct pipe_buffer *buf = pipe->bufs + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (buf->ops)
Miklos Szeredia7796382016-09-27 10:45:12 +0200796 pipe_buf_release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200798 if (pipe->tmp_page)
799 __free_page(pipe->tmp_page);
Jens Axboe35f3d142010-05-20 10:43:18 +0200800 kfree(pipe->bufs);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200801 kfree(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800804static struct vfsmount *pipe_mnt __read_mostly;
Ingo Molnar341b4462006-04-11 13:57:45 +0200805
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700806/*
807 * pipefs_dname() is called from d_path().
808 */
809static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
810{
811 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
David Howells75c3cfa2015-03-17 22:26:12 +0000812 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700813}
814
Al Viro3ba13d12009-02-20 06:02:22 +0000815static const struct dentry_operations pipefs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700816 .d_dname = pipefs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817};
818
819static struct inode * get_pipe_inode(void)
820{
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200821 struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200822 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (!inode)
825 goto fail_inode;
826
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400827 inode->i_ino = get_next_ino();
828
Al Viro7bee1302013-03-21 11:04:15 -0400829 pipe = alloc_pipe_info();
Ingo Molnar923f4f22006-04-11 13:53:33 +0200830 if (!pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 goto fail_iput;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200832
Al Viroba5bb142013-03-21 02:21:19 -0400833 inode->i_pipe = pipe;
834 pipe->files = 2;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200835 pipe->readers = pipe->writers = 1;
Al Viro599a0ac2013-03-12 09:58:10 -0400836 inode->i_fop = &pipefifo_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /*
839 * Mark the inode dirty from the very beginning,
840 * that way it will never be moved to the dirty
841 * list because "mark_inode_dirty()" will think
842 * that it already _is_ on the dirty list.
843 */
844 inode->i_state = I_DIRTY;
845 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
David Howellsda9592e2008-11-14 10:39:05 +1100846 inode->i_uid = current_fsuid();
847 inode->i_gid = current_fsgid();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700848 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return inode;
851
852fail_iput:
853 iput(inode);
Ingo Molnar341b4462006-04-11 13:57:45 +0200854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855fail_inode:
856 return NULL;
857}
858
Al Viroe4fad8e2012-07-21 15:33:25 +0400859int create_pipe_files(struct file **res, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Al Viroe4fad8e2012-07-21 15:33:25 +0400861 struct inode *inode = get_pipe_inode();
Andi Kleend6cbd282006-09-30 23:29:26 -0700862 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (!inode)
Al Viroe4fad8e2012-07-21 15:33:25 +0400865 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Al Viro152b6372018-06-09 10:05:18 -0400867 f = alloc_file_pseudo(inode, pipe_mnt, "",
868 O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT)),
869 &pipefifo_fops);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500870 if (IS_ERR(f)) {
Al Viro152b6372018-06-09 10:05:18 -0400871 free_pipe_info(inode->i_pipe);
872 iput(inode);
873 return PTR_ERR(f);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Al Virode32ec42013-03-21 11:16:56 -0400876 f->private_data = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Al Viro183266f2018-06-17 14:15:10 -0400878 res[0] = alloc_file_clone(f, O_RDONLY | (flags & O_NONBLOCK),
879 &pipefifo_fops);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500880 if (IS_ERR(res[0])) {
Al Virob10a4a92018-07-09 02:29:58 -0400881 put_pipe_info(inode, inode->i_pipe);
882 fput(f);
883 return PTR_ERR(res[0]);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500884 }
Al Virode32ec42013-03-21 11:16:56 -0400885 res[0]->private_data = inode->i_pipe;
Al Viroe4fad8e2012-07-21 15:33:25 +0400886 res[1] = f;
Linus Torvaldsd8e464e2019-11-17 11:20:48 -0800887 stream_open(inode, res[0]);
888 stream_open(inode, res[1]);
Al Viroe4fad8e2012-07-21 15:33:25 +0400889 return 0;
Andi Kleend6cbd282006-09-30 23:29:26 -0700890}
891
Al Viro5b249b12012-08-19 12:17:29 -0400892static int __do_pipe_flags(int *fd, struct file **files, int flags)
Andi Kleend6cbd282006-09-30 23:29:26 -0700893{
Andi Kleend6cbd282006-09-30 23:29:26 -0700894 int error;
895 int fdw, fdr;
896
Linus Torvalds98830352012-04-29 13:12:42 -0700897 if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT))
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700898 return -EINVAL;
899
Al Viroe4fad8e2012-07-21 15:33:25 +0400900 error = create_pipe_files(files, flags);
901 if (error)
902 return error;
Andi Kleend6cbd282006-09-30 23:29:26 -0700903
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700904 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -0700905 if (error < 0)
906 goto err_read_pipe;
907 fdr = error;
908
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700909 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -0700910 if (error < 0)
911 goto err_fdr;
912 fdw = error;
913
Al Viro157cf642008-12-14 04:57:47 -0500914 audit_fd_pair(fdr, fdw);
Andi Kleend6cbd282006-09-30 23:29:26 -0700915 fd[0] = fdr;
916 fd[1] = fdw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return 0;
918
Andi Kleend6cbd282006-09-30 23:29:26 -0700919 err_fdr:
920 put_unused_fd(fdr);
921 err_read_pipe:
Al Viroe4fad8e2012-07-21 15:33:25 +0400922 fput(files[0]);
923 fput(files[1]);
Andi Kleend6cbd282006-09-30 23:29:26 -0700924 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Al Viro5b249b12012-08-19 12:17:29 -0400927int do_pipe_flags(int *fd, int flags)
928{
929 struct file *files[2];
930 int error = __do_pipe_flags(fd, files, flags);
931 if (!error) {
932 fd_install(fd[0], files[0]);
933 fd_install(fd[1], files[1]);
934 }
935 return error;
936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/*
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400939 * sys_pipe() is the normal C calling standard for creating
940 * a pipe. It's not the way Unix traditionally does this, though.
941 */
Dominik Brodowski0a216dd2018-03-11 11:34:28 +0100942static int do_pipe2(int __user *fildes, int flags)
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400943{
Al Viro5b249b12012-08-19 12:17:29 -0400944 struct file *files[2];
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400945 int fd[2];
946 int error;
947
Al Viro5b249b12012-08-19 12:17:29 -0400948 error = __do_pipe_flags(fd, files, flags);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400949 if (!error) {
Al Viro5b249b12012-08-19 12:17:29 -0400950 if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) {
951 fput(files[0]);
952 fput(files[1]);
953 put_unused_fd(fd[0]);
954 put_unused_fd(fd[1]);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400955 error = -EFAULT;
Al Viro5b249b12012-08-19 12:17:29 -0400956 } else {
957 fd_install(fd[0], files[0]);
958 fd_install(fd[1], files[1]);
Ulrich Drepperba719ba2008-05-06 20:42:38 -0700959 }
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400960 }
961 return error;
962}
963
Dominik Brodowski0a216dd2018-03-11 11:34:28 +0100964SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
965{
966 return do_pipe2(fildes, flags);
967}
968
Heiko Carstens2b664212009-01-14 14:14:35 +0100969SYSCALL_DEFINE1(pipe, int __user *, fildes)
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700970{
Dominik Brodowski0a216dd2018-03-11 11:34:28 +0100971 return do_pipe2(fildes, 0);
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700972}
973
Al Virofc7478a2013-03-21 02:07:59 -0400974static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt)
Al Virof776c732013-03-12 09:46:27 -0400975{
David Howells8cefc102019-11-15 13:30:32 +0000976 int cur = *cnt;
Al Virof776c732013-03-12 09:46:27 -0400977
978 while (cur == *cnt) {
Al Virofc7478a2013-03-21 02:07:59 -0400979 pipe_wait(pipe);
Al Virof776c732013-03-12 09:46:27 -0400980 if (signal_pending(current))
981 break;
982 }
983 return cur == *cnt ? -ERESTARTSYS : 0;
984}
985
Al Virofc7478a2013-03-21 02:07:59 -0400986static void wake_up_partner(struct pipe_inode_info *pipe)
Al Virof776c732013-03-12 09:46:27 -0400987{
Al Virofc7478a2013-03-21 02:07:59 -0400988 wake_up_interruptible(&pipe->wait);
Al Virof776c732013-03-12 09:46:27 -0400989}
990
991static int fifo_open(struct inode *inode, struct file *filp)
992{
993 struct pipe_inode_info *pipe;
Al Viro599a0ac2013-03-12 09:58:10 -0400994 bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC;
Al Virof776c732013-03-12 09:46:27 -0400995 int ret;
996
Al Viroba5bb142013-03-21 02:21:19 -0400997 filp->f_version = 0;
998
999 spin_lock(&inode->i_lock);
1000 if (inode->i_pipe) {
1001 pipe = inode->i_pipe;
1002 pipe->files++;
1003 spin_unlock(&inode->i_lock);
1004 } else {
1005 spin_unlock(&inode->i_lock);
Al Viro7bee1302013-03-21 11:04:15 -04001006 pipe = alloc_pipe_info();
Al Virof776c732013-03-12 09:46:27 -04001007 if (!pipe)
Al Viroba5bb142013-03-21 02:21:19 -04001008 return -ENOMEM;
1009 pipe->files = 1;
1010 spin_lock(&inode->i_lock);
1011 if (unlikely(inode->i_pipe)) {
1012 inode->i_pipe->files++;
1013 spin_unlock(&inode->i_lock);
Al Viro4b8a8f12013-03-21 11:06:46 -04001014 free_pipe_info(pipe);
Al Viroba5bb142013-03-21 02:21:19 -04001015 pipe = inode->i_pipe;
1016 } else {
1017 inode->i_pipe = pipe;
1018 spin_unlock(&inode->i_lock);
1019 }
Al Virof776c732013-03-12 09:46:27 -04001020 }
Al Virode32ec42013-03-21 11:16:56 -04001021 filp->private_data = pipe;
Al Viroba5bb142013-03-21 02:21:19 -04001022 /* OK, we have a pipe and it's pinned down */
1023
Al Viroebec73f2013-03-21 12:24:01 -04001024 __pipe_lock(pipe);
Al Virof776c732013-03-12 09:46:27 -04001025
1026 /* We can only do regular read/write on fifos */
Linus Torvaldsd8e464e2019-11-17 11:20:48 -08001027 stream_open(inode, filp);
Al Virof776c732013-03-12 09:46:27 -04001028
Linus Torvaldsd8e464e2019-11-17 11:20:48 -08001029 switch (filp->f_mode & (FMODE_READ | FMODE_WRITE)) {
Al Virof776c732013-03-12 09:46:27 -04001030 case FMODE_READ:
1031 /*
1032 * O_RDONLY
1033 * POSIX.1 says that O_NONBLOCK means return with the FIFO
1034 * opened, even when there is no process writing the FIFO.
1035 */
Al Virof776c732013-03-12 09:46:27 -04001036 pipe->r_counter++;
1037 if (pipe->readers++ == 0)
Al Virofc7478a2013-03-21 02:07:59 -04001038 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -04001039
Al Viro599a0ac2013-03-12 09:58:10 -04001040 if (!is_pipe && !pipe->writers) {
Al Virof776c732013-03-12 09:46:27 -04001041 if ((filp->f_flags & O_NONBLOCK)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001042 /* suppress EPOLLHUP until we have
Al Virof776c732013-03-12 09:46:27 -04001043 * seen a writer */
1044 filp->f_version = pipe->w_counter;
1045 } else {
Al Virofc7478a2013-03-21 02:07:59 -04001046 if (wait_for_partner(pipe, &pipe->w_counter))
Al Virof776c732013-03-12 09:46:27 -04001047 goto err_rd;
1048 }
1049 }
1050 break;
David Howells8cefc102019-11-15 13:30:32 +00001051
Al Virof776c732013-03-12 09:46:27 -04001052 case FMODE_WRITE:
1053 /*
1054 * O_WRONLY
1055 * POSIX.1 says that O_NONBLOCK means return -1 with
1056 * errno=ENXIO when there is no process reading the FIFO.
1057 */
1058 ret = -ENXIO;
Al Viro599a0ac2013-03-12 09:58:10 -04001059 if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers)
Al Virof776c732013-03-12 09:46:27 -04001060 goto err;
1061
Al Virof776c732013-03-12 09:46:27 -04001062 pipe->w_counter++;
1063 if (!pipe->writers++)
Al Virofc7478a2013-03-21 02:07:59 -04001064 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -04001065
Al Viro599a0ac2013-03-12 09:58:10 -04001066 if (!is_pipe && !pipe->readers) {
Al Virofc7478a2013-03-21 02:07:59 -04001067 if (wait_for_partner(pipe, &pipe->r_counter))
Al Virof776c732013-03-12 09:46:27 -04001068 goto err_wr;
1069 }
1070 break;
David Howells8cefc102019-11-15 13:30:32 +00001071
Al Virof776c732013-03-12 09:46:27 -04001072 case FMODE_READ | FMODE_WRITE:
1073 /*
1074 * O_RDWR
1075 * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
1076 * This implementation will NEVER block on a O_RDWR open, since
1077 * the process can at least talk to itself.
1078 */
Al Virof776c732013-03-12 09:46:27 -04001079
1080 pipe->readers++;
1081 pipe->writers++;
1082 pipe->r_counter++;
1083 pipe->w_counter++;
1084 if (pipe->readers == 1 || pipe->writers == 1)
Al Virofc7478a2013-03-21 02:07:59 -04001085 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -04001086 break;
1087
1088 default:
1089 ret = -EINVAL;
1090 goto err;
1091 }
1092
1093 /* Ok! */
Al Viroebec73f2013-03-21 12:24:01 -04001094 __pipe_unlock(pipe);
Al Virof776c732013-03-12 09:46:27 -04001095 return 0;
1096
1097err_rd:
1098 if (!--pipe->readers)
1099 wake_up_interruptible(&pipe->wait);
1100 ret = -ERESTARTSYS;
1101 goto err;
1102
1103err_wr:
1104 if (!--pipe->writers)
1105 wake_up_interruptible(&pipe->wait);
1106 ret = -ERESTARTSYS;
1107 goto err;
1108
1109err:
Al Viroebec73f2013-03-21 12:24:01 -04001110 __pipe_unlock(pipe);
Linus Torvaldsb0d8d222013-12-02 09:44:51 -08001111
1112 put_pipe_info(inode, pipe);
Al Virof776c732013-03-12 09:46:27 -04001113 return ret;
1114}
1115
Al Viro599a0ac2013-03-12 09:58:10 -04001116const struct file_operations pipefifo_fops = {
1117 .open = fifo_open,
1118 .llseek = no_llseek,
Al Virofb9096a2014-04-02 19:56:54 -04001119 .read_iter = pipe_read,
Al Virof0d1bec2014-04-03 15:05:18 -04001120 .write_iter = pipe_write,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001121 .poll = pipe_poll,
Al Viro599a0ac2013-03-12 09:58:10 -04001122 .unlocked_ioctl = pipe_ioctl,
1123 .release = pipe_release,
1124 .fasync = pipe_fasync,
Al Virof776c732013-03-12 09:46:27 -04001125};
1126
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001127/*
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001128 * Currently we rely on the pipe array holding a power-of-2 number
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001129 * of pages. Returns 0 on error.
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001130 */
Eric Biggers96e99be402018-02-06 15:42:00 -08001131unsigned int round_pipe_size(unsigned long size)
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001132{
Eric Biggersc4fed5a2018-02-06 15:42:05 -08001133 if (size > (1U << 31))
Eric Biggers96e99be402018-02-06 15:42:00 -08001134 return 0;
1135
Eric Biggers4c2e4be2018-02-06 15:41:45 -08001136 /* Minimum pipe size, as required by POSIX */
1137 if (size < PAGE_SIZE)
Eric Biggersc4fed5a2018-02-06 15:42:05 -08001138 return PAGE_SIZE;
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001139
Eric Biggersc4fed5a2018-02-06 15:42:05 -08001140 return roundup_pow_of_two(size);
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001141}
1142
1143/*
Jens Axboe35f3d142010-05-20 10:43:18 +02001144 * Allocate a new array of pipe buffers and copy the info over. Returns the
1145 * pipe size if successful, or return -ERROR on error.
1146 */
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001147static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long arg)
Jens Axboe35f3d142010-05-20 10:43:18 +02001148{
1149 struct pipe_buffer *bufs;
David Howells8cefc102019-11-15 13:30:32 +00001150 unsigned int size, nr_slots, head, tail, mask, n;
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001151 unsigned long user_bufs;
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001152 long ret = 0;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001153
1154 size = round_pipe_size(arg);
David Howells8cefc102019-11-15 13:30:32 +00001155 nr_slots = size >> PAGE_SHIFT;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001156
David Howells8cefc102019-11-15 13:30:32 +00001157 if (!nr_slots)
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001158 return -EINVAL;
1159
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001160 /*
1161 * If trying to increase the pipe capacity, check that an
1162 * unprivileged user is not trying to exceed various limits
1163 * (soft limit check here, hard limit check just below).
1164 * Decreasing the pipe capacity is always permitted, even
1165 * if the user is currently over a limit.
1166 */
David Howells8cefc102019-11-15 13:30:32 +00001167 if (nr_slots > pipe->ring_size &&
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001168 size > pipe_max_size && !capable(CAP_SYS_RESOURCE))
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001169 return -EPERM;
1170
David Howells8cefc102019-11-15 13:30:32 +00001171 user_bufs = account_pipe_buffers(pipe->user, pipe->ring_size, nr_slots);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001172
David Howells8cefc102019-11-15 13:30:32 +00001173 if (nr_slots > pipe->ring_size &&
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001174 (too_many_pipe_buffers_hard(user_bufs) ||
1175 too_many_pipe_buffers_soft(user_bufs)) &&
Eric Biggers85c2dd52018-02-06 15:41:53 -08001176 is_unprivileged_user()) {
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001177 ret = -EPERM;
1178 goto out_revert_acct;
1179 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001180
1181 /*
David Howells8cefc102019-11-15 13:30:32 +00001182 * We can shrink the pipe, if arg is greater than the ring occupancy.
1183 * Since we don't expect a lot of shrink+grow operations, just free and
1184 * allocate again like we would do for growing. If the pipe currently
Jens Axboe35f3d142010-05-20 10:43:18 +02001185 * contains more buffers than arg, then return busy.
1186 */
David Howells8cefc102019-11-15 13:30:32 +00001187 mask = pipe->ring_size - 1;
1188 head = pipe->head;
1189 tail = pipe->tail;
1190 n = pipe_occupancy(pipe->head, pipe->tail);
1191 if (nr_slots < n) {
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001192 ret = -EBUSY;
1193 goto out_revert_acct;
1194 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001195
David Howells8cefc102019-11-15 13:30:32 +00001196 bufs = kcalloc(nr_slots, sizeof(*bufs),
Vladimir Davydovd86133b2016-07-26 15:24:33 -07001197 GFP_KERNEL_ACCOUNT | __GFP_NOWARN);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001198 if (unlikely(!bufs)) {
1199 ret = -ENOMEM;
1200 goto out_revert_acct;
1201 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001202
1203 /*
1204 * The pipe array wraps around, so just start the new one at zero
David Howells8cefc102019-11-15 13:30:32 +00001205 * and adjust the indices.
Jens Axboe35f3d142010-05-20 10:43:18 +02001206 */
David Howells8cefc102019-11-15 13:30:32 +00001207 if (n > 0) {
1208 unsigned int h = head & mask;
1209 unsigned int t = tail & mask;
1210 if (h > t) {
1211 memcpy(bufs, pipe->bufs + t,
1212 n * sizeof(struct pipe_buffer));
1213 } else {
1214 unsigned int tsize = pipe->ring_size - t;
1215 if (h > 0)
1216 memcpy(bufs + tsize, pipe->bufs,
1217 h * sizeof(struct pipe_buffer));
1218 memcpy(bufs, pipe->bufs + t,
1219 tsize * sizeof(struct pipe_buffer));
1220 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001221 }
1222
David Howells8cefc102019-11-15 13:30:32 +00001223 head = n;
1224 tail = 0;
1225
Jens Axboe35f3d142010-05-20 10:43:18 +02001226 kfree(pipe->bufs);
1227 pipe->bufs = bufs;
David Howells8cefc102019-11-15 13:30:32 +00001228 pipe->ring_size = nr_slots;
David Howells6718b6f2019-10-16 16:47:32 +01001229 pipe->max_usage = nr_slots;
David Howells8cefc102019-11-15 13:30:32 +00001230 pipe->tail = tail;
1231 pipe->head = head;
David Howells8c7b8c32019-12-05 22:30:30 +00001232 wake_up_interruptible_all(&pipe->wait);
David Howells6718b6f2019-10-16 16:47:32 +01001233 return pipe->max_usage * PAGE_SIZE;
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001234
1235out_revert_acct:
David Howells8cefc102019-11-15 13:30:32 +00001236 (void) account_pipe_buffers(pipe->user, nr_slots, pipe->ring_size);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001237 return ret;
Jens Axboe35f3d142010-05-20 10:43:18 +02001238}
1239
Jens Axboeff9da692010-06-03 14:54:39 +02001240/*
Linus Torvalds72083642010-11-28 16:27:19 -08001241 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1242 * location, so checking ->i_pipe is not enough to verify that this is a
1243 * pipe.
1244 */
1245struct pipe_inode_info *get_pipe_info(struct file *file)
1246{
Al Virode32ec42013-03-21 11:16:56 -04001247 return file->f_op == &pipefifo_fops ? file->private_data : NULL;
Linus Torvalds72083642010-11-28 16:27:19 -08001248}
1249
Jens Axboe35f3d142010-05-20 10:43:18 +02001250long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
1251{
1252 struct pipe_inode_info *pipe;
1253 long ret;
1254
Linus Torvaldsc66fb342010-11-28 14:09:57 -08001255 pipe = get_pipe_info(file);
Jens Axboe35f3d142010-05-20 10:43:18 +02001256 if (!pipe)
1257 return -EBADF;
1258
Al Viroebec73f2013-03-21 12:24:01 -04001259 __pipe_lock(pipe);
Jens Axboe35f3d142010-05-20 10:43:18 +02001260
1261 switch (cmd) {
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001262 case F_SETPIPE_SZ:
1263 ret = pipe_set_size(pipe, arg);
Jens Axboe35f3d142010-05-20 10:43:18 +02001264 break;
1265 case F_GETPIPE_SZ:
David Howells6718b6f2019-10-16 16:47:32 +01001266 ret = pipe->max_usage * PAGE_SIZE;
Jens Axboe35f3d142010-05-20 10:43:18 +02001267 break;
1268 default:
1269 ret = -EINVAL;
1270 break;
1271 }
1272
Al Viroebec73f2013-03-21 12:24:01 -04001273 __pipe_unlock(pipe);
Jens Axboe35f3d142010-05-20 10:43:18 +02001274 return ret;
1275}
1276
Nick Pigginff0c7d12011-01-07 17:49:50 +11001277static const struct super_operations pipefs_ops = {
1278 .destroy_inode = free_inode_nonrcu,
Pavel Emelyanovd70ef972011-10-31 17:10:04 -07001279 .statfs = simple_statfs,
Nick Pigginff0c7d12011-01-07 17:49:50 +11001280};
1281
Jens Axboe35f3d142010-05-20 10:43:18 +02001282/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 * pipefs should _never_ be mounted by userland - too much of security hassle,
1284 * no real gain from having the whole whorehouse mounted. So we don't need
1285 * any operations on the root directory. However, we need a non-trivial
1286 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1287 */
David Howells4fa7ec52019-03-25 16:38:23 +00001288
1289static int pipefs_init_fs_context(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
David Howells4fa7ec52019-03-25 16:38:23 +00001291 struct pseudo_fs_context *ctx = init_pseudo(fc, PIPEFS_MAGIC);
1292 if (!ctx)
1293 return -ENOMEM;
1294 ctx->ops = &pipefs_ops;
1295 ctx->dops = &pipefs_dentry_operations;
1296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299static struct file_system_type pipe_fs_type = {
1300 .name = "pipefs",
David Howells4fa7ec52019-03-25 16:38:23 +00001301 .init_fs_context = pipefs_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 .kill_sb = kill_anon_super,
1303};
1304
1305static int __init init_pipe_fs(void)
1306{
1307 int err = register_filesystem(&pipe_fs_type);
Ingo Molnar341b4462006-04-11 13:57:45 +02001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (!err) {
1310 pipe_mnt = kern_mount(&pipe_fs_type);
1311 if (IS_ERR(pipe_mnt)) {
1312 err = PTR_ERR(pipe_mnt);
1313 unregister_filesystem(&pipe_fs_type);
1314 }
1315 }
1316 return err;
1317}
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319fs_initcall(init_pipe_fs);