blob: 2144507447c5ae493230b5354bf0a0cdcd5ece2d [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{
Linus Torvalds0ddad212019-12-09 09:48:27 -0800111 DEFINE_WAIT(rdwait);
112 DEFINE_WAIT(wrwait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Ingo Molnard79fc0f2005-09-10 00:26:12 -0700114 /*
115 * Pipes are system-local resources, so sleeping on them
116 * is considered a noninteractive wait:
117 */
Linus Torvalds0ddad212019-12-09 09:48:27 -0800118 prepare_to_wait(&pipe->rd_wait, &rdwait, TASK_INTERRUPTIBLE);
119 prepare_to_wait(&pipe->wr_wait, &wrwait, TASK_INTERRUPTIBLE);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200120 pipe_unlock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 schedule();
Linus Torvalds0ddad212019-12-09 09:48:27 -0800122 finish_wait(&pipe->rd_wait, &rdwait);
123 finish_wait(&pipe->wr_wait, &wrwait);
Miklos Szeredi61e0d472009-04-14 19:48:41 +0200124 pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Ingo Molnar341b4462006-04-11 13:57:45 +0200127static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
128 struct pipe_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct page *page = buf->page;
131
Jens Axboe5274f052006-03-30 15:15:30 +0200132 /*
133 * If nobody else uses this page, and we don't already have a
134 * temporary page, let's keep track of it as a one-deep
Ingo Molnar341b4462006-04-11 13:57:45 +0200135 * allocation cache. (Otherwise just release our reference to it)
Jens Axboe5274f052006-03-30 15:15:30 +0200136 */
Ingo Molnar341b4462006-04-11 13:57:45 +0200137 if (page_count(page) == 1 && !pipe->tmp_page)
Ingo Molnar923f4f22006-04-11 13:53:33 +0200138 pipe->tmp_page = page;
Ingo Molnar341b4462006-04-11 13:57:45 +0200139 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300140 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700143static int anon_pipe_buf_steal(struct pipe_inode_info *pipe,
144 struct pipe_buffer *buf)
145{
146 struct page *page = buf->page;
147
148 if (page_count(page) == 1) {
Shakeel Butt60cd4bc2019-03-05 15:43:13 -0800149 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 */
Matthew Wilcox15fab632019-04-05 14:02:10 -0700197bool generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
Jens Axboe70524492006-04-11 15:51:17 +0200198{
Matthew Wilcox15fab632019-04-05 14:02:10 -0700199 return try_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
Jann Horn01e71872019-01-23 15:19:18 +0100234/* New data written to a pipe may be appended to a buffer with this type. */
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800235static const struct pipe_buf_operations anon_pipe_buf_ops = {
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
Jann Horna0ce2f02019-01-23 15:19:17 +0100242static const struct pipe_buf_operations anon_pipe_buf_nomerge_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .confirm = generic_pipe_buf_confirm,
244 .release = anon_pipe_buf_release,
245 .steal = anon_pipe_buf_steal,
246 .get = generic_pipe_buf_get,
Ingo Molnar923f4f22006-04-11 13:53:33 +0200247};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds98830352012-04-29 13:12:42 -0700249static const struct pipe_buf_operations packet_pipe_buf_ops = {
Linus Torvalds98830352012-04-29 13:12:42 -0700250 .confirm = generic_pipe_buf_confirm,
251 .release = anon_pipe_buf_release,
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700252 .steal = anon_pipe_buf_steal,
Linus Torvalds98830352012-04-29 13:12:42 -0700253 .get = generic_pipe_buf_get,
254};
255
Jann Horn01e71872019-01-23 15:19:18 +0100256/**
257 * pipe_buf_mark_unmergeable - mark a &struct pipe_buffer as unmergeable
258 * @buf: the buffer to mark
259 *
260 * Description:
261 * This function ensures that no future writes will be merged into the
262 * given &struct pipe_buffer. This is necessary when multiple pipe buffers
263 * share the same backing page.
264 */
Jann Horna0ce2f02019-01-23 15:19:17 +0100265void pipe_buf_mark_unmergeable(struct pipe_buffer *buf)
266{
267 if (buf->ops == &anon_pipe_buf_ops)
268 buf->ops = &anon_pipe_buf_nomerge_ops;
269}
270
Jann Horn01e71872019-01-23 15:19:18 +0100271static bool pipe_buf_can_merge(struct pipe_buffer *buf)
272{
273 return buf->ops == &anon_pipe_buf_ops;
274}
275
Linus Torvalds85190d12019-12-07 13:53:09 -0800276/* Done while waiting without holding the pipe lock - thus the READ_ONCE() */
277static inline bool pipe_readable(const struct pipe_inode_info *pipe)
278{
279 unsigned int head = READ_ONCE(pipe->head);
280 unsigned int tail = READ_ONCE(pipe->tail);
281 unsigned int writers = READ_ONCE(pipe->writers);
282
283 return !pipe_empty(head, tail) || !writers;
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static ssize_t
Al Virofb9096a2014-04-02 19:56:54 -0400287pipe_read(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Al Virofb9096a2014-04-02 19:56:54 -0400289 size_t total_len = iov_iter_count(to);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700290 struct file *filp = iocb->ki_filp;
Al Virode32ec42013-03-21 11:16:56 -0400291 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvalds0ddad212019-12-09 09:48:27 -0800292 bool was_full, wake_next_reader = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* Null read succeeds. */
296 if (unlikely(total_len == 0))
297 return 0;
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 ret = 0;
Al Viroebec73f2013-03-21 12:24:01 -0400300 __pipe_lock(pipe);
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800301
302 /*
303 * We only wake up writers if the pipe was full when we started
304 * reading in order to avoid unnecessary wakeups.
305 *
306 * But when we do wake up writers, we do so using a sync wakeup
307 * (WF_SYNC), because we want them to get going and generate more
308 * data for us.
309 */
310 was_full = pipe_full(pipe->head, pipe->tail, pipe->max_usage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 for (;;) {
David Howells8cefc102019-11-15 13:30:32 +0000312 unsigned int head = pipe->head;
313 unsigned int tail = pipe->tail;
314 unsigned int mask = pipe->ring_size - 1;
315
316 if (!pipe_empty(head, tail)) {
317 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 size_t chars = buf->len;
Al Viro637b58c2014-02-03 19:11:42 -0500319 size_t written;
320 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (chars > total_len)
323 chars = total_len;
324
Miklos Szeredifba597d2016-09-27 10:45:12 +0200325 error = pipe_buf_confirm(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200326 if (error) {
Jens Axboe5274f052006-03-30 15:15:30 +0200327 if (!ret)
Nicolas Kaisere5953cb2010-10-21 14:56:00 +0200328 ret = error;
Jens Axboe5274f052006-03-30 15:15:30 +0200329 break;
330 }
Jens Axboef84d7512006-05-01 19:59:03 +0200331
Al Virofb9096a2014-04-02 19:56:54 -0400332 written = copy_page_to_iter(buf->page, buf->offset, chars, to);
Al Viro637b58c2014-02-03 19:11:42 -0500333 if (unlikely(written < chars)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200334 if (!ret)
Al Viro637b58c2014-02-03 19:11:42 -0500335 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 break;
337 }
338 ret += chars;
339 buf->offset += chars;
340 buf->len -= chars;
Linus Torvalds98830352012-04-29 13:12:42 -0700341
342 /* Was it a packet buffer? Clean up and exit */
343 if (buf->flags & PIPE_BUF_FLAG_PACKET) {
344 total_len = chars;
345 buf->len = 0;
346 }
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (!buf->len) {
Miklos Szeredia7796382016-09-27 10:45:12 +0200349 pipe_buf_release(pipe, buf);
Linus Torvalds0ddad212019-12-09 09:48:27 -0800350 spin_lock_irq(&pipe->rd_wait.lock);
David Howells8cefc102019-11-15 13:30:32 +0000351 tail++;
352 pipe->tail = tail;
Linus Torvalds0ddad212019-12-09 09:48:27 -0800353 spin_unlock_irq(&pipe->rd_wait.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 total_len -= chars;
356 if (!total_len)
357 break; /* common path: read succeeded */
David Howells8cefc102019-11-15 13:30:32 +0000358 if (!pipe_empty(head, tail)) /* More to do? */
359 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
David Howells8cefc102019-11-15 13:30:32 +0000361
Ingo Molnar923f4f22006-04-11 13:53:33 +0200362 if (!pipe->writers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 break;
Linus Torvaldsa28c8b92019-12-07 13:21:01 -0800364 if (ret)
365 break;
366 if (filp->f_flags & O_NONBLOCK) {
367 ret = -EAGAIN;
368 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Linus Torvalds85190d12019-12-07 13:53:09 -0800370 __pipe_unlock(pipe);
Linus Torvaldsd1c6a2a2019-12-11 11:46:19 -0800371
372 /*
373 * We only get here if we didn't actually read anything.
374 *
375 * However, we could have seen (and removed) a zero-sized
376 * pipe buffer, and might have made space in the buffers
377 * that way.
378 *
379 * You can't make zero-sized pipe buffers by doing an empty
380 * write (not even in packet mode), but they can happen if
381 * the writer gets an EFAULT when trying to fill a buffer
382 * that already got allocated and inserted in the buffer
383 * array.
384 *
385 * So we still need to wake up any pending writers in the
386 * _very_ unlikely case that the pipe was full, but we got
387 * no data.
388 */
389 if (unlikely(was_full)) {
Linus Torvalds0ddad212019-12-09 09:48:27 -0800390 wake_up_interruptible_sync_poll(&pipe->wr_wait, EPOLLOUT | EPOLLWRNORM);
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800391 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
392 }
Linus Torvaldsd1c6a2a2019-12-11 11:46:19 -0800393
394 /*
395 * But because we didn't read anything, at this point we can
396 * just return directly with -ERESTARTSYS if we're interrupted,
397 * since we've done any required wakeups and there's no need
398 * to mark anything accessed. And we've dropped the lock.
399 */
Linus Torvalds0ddad212019-12-09 09:48:27 -0800400 if (wait_event_interruptible_exclusive(pipe->rd_wait, pipe_readable(pipe)) < 0)
Linus Torvaldsd1c6a2a2019-12-11 11:46:19 -0800401 return -ERESTARTSYS;
402
Linus Torvalds85190d12019-12-07 13:53:09 -0800403 __pipe_lock(pipe);
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800404 was_full = pipe_full(pipe->head, pipe->tail, pipe->max_usage);
Linus Torvalds0ddad212019-12-09 09:48:27 -0800405 wake_next_reader = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
Linus Torvalds0ddad212019-12-09 09:48:27 -0800407 if (pipe_empty(pipe->head, pipe->tail))
408 wake_next_reader = false;
Al Viroebec73f2013-03-21 12:24:01 -0400409 __pipe_unlock(pipe);
Ingo Molnar341b4462006-04-11 13:57:45 +0200410
Linus Torvaldsf467a6a2019-12-07 12:54:26 -0800411 if (was_full) {
Linus Torvalds0ddad212019-12-09 09:48:27 -0800412 wake_up_interruptible_sync_poll(&pipe->wr_wait, EPOLLOUT | EPOLLWRNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200413 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
Linus Torvalds0ddad212019-12-09 09:48:27 -0800415 if (wake_next_reader)
416 wake_up_interruptible_sync_poll(&pipe->rd_wait, EPOLLIN | EPOLLRDNORM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (ret > 0)
418 file_accessed(filp);
419 return ret;
420}
421
Linus Torvalds98830352012-04-29 13:12:42 -0700422static inline int is_packetized(struct file *file)
423{
424 return (file->f_flags & O_DIRECT) != 0;
425}
426
Linus Torvalds85190d12019-12-07 13:53:09 -0800427/* Done while waiting without holding the pipe lock - thus the READ_ONCE() */
428static inline bool pipe_writable(const struct pipe_inode_info *pipe)
429{
430 unsigned int head = READ_ONCE(pipe->head);
431 unsigned int tail = READ_ONCE(pipe->tail);
432 unsigned int max_usage = READ_ONCE(pipe->max_usage);
433
434 return !pipe_full(head, tail, max_usage) ||
435 !READ_ONCE(pipe->readers);
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438static ssize_t
Al Virof0d1bec2014-04-03 15:05:18 -0400439pipe_write(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700441 struct file *filp = iocb->ki_filp;
Al Virode32ec42013-03-21 11:16:56 -0400442 struct pipe_inode_info *pipe = filp->private_data;
David Howells8f868d62019-12-05 22:30:37 +0000443 unsigned int head;
Al Virof0d1bec2014-04-03 15:05:18 -0400444 ssize_t ret = 0;
Al Virof0d1bec2014-04-03 15:05:18 -0400445 size_t total_len = iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 ssize_t chars;
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800447 bool was_empty = false;
Linus Torvalds0ddad212019-12-09 09:48:27 -0800448 bool wake_next_writer = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* Null write succeeds. */
451 if (unlikely(total_len == 0))
452 return 0;
453
Al Viroebec73f2013-03-21 12:24:01 -0400454 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Ingo Molnar923f4f22006-04-11 13:53:33 +0200456 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 send_sig(SIGPIPE, current, 0);
458 ret = -EPIPE;
459 goto out;
460 }
461
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800462 /*
463 * Only wake up if the pipe started out empty, since
464 * otherwise there should be no readers waiting.
465 *
466 * If it wasn't empty we try to merge new data into
467 * the last buffer.
468 *
469 * That naturally merges small writes, but it also
470 * page-aligs the rest of the writes for large writes
471 * spanning multiple pages.
472 */
David Howells8cefc102019-11-15 13:30:32 +0000473 head = pipe->head;
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800474 was_empty = pipe_empty(head, pipe->tail);
475 chars = total_len & (PAGE_SIZE-1);
476 if (chars && !was_empty) {
David Howells8f868d62019-12-05 22:30:37 +0000477 unsigned int mask = pipe->ring_size - 1;
David Howells8cefc102019-11-15 13:30:32 +0000478 struct pipe_buffer *buf = &pipe->bufs[(head - 1) & mask];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 int offset = buf->offset + buf->len;
Ingo Molnar341b4462006-04-11 13:57:45 +0200480
Jann Horn01e71872019-01-23 15:19:18 +0100481 if (pipe_buf_can_merge(buf) && offset + chars <= PAGE_SIZE) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200482 ret = pipe_buf_confirm(pipe, buf);
Eric Biggers6ae08062015-10-17 16:26:09 -0500483 if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200484 goto out;
Jens Axboef84d7512006-05-01 19:59:03 +0200485
Al Virof0d1bec2014-04-03 15:05:18 -0400486 ret = copy_page_from_iter(buf->page, offset, chars, from);
487 if (unlikely(ret < chars)) {
Eric Biggers6ae08062015-10-17 16:26:09 -0500488 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto out;
Jens Axboef6762b72006-05-01 20:02:05 +0200490 }
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800491
Eric Biggers6ae08062015-10-17 16:26:09 -0500492 buf->len += ret;
Al Virof0d1bec2014-04-03 15:05:18 -0400493 if (!iov_iter_count(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto out;
495 }
496 }
497
498 for (;;) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200499 if (!pipe->readers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 send_sig(SIGPIPE, current, 0);
Ingo Molnar341b4462006-04-11 13:57:45 +0200501 if (!ret)
502 ret = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
504 }
David Howells8cefc102019-11-15 13:30:32 +0000505
David Howellsa194dfe2019-09-20 16:32:19 +0100506 head = pipe->head;
David Howells8f868d62019-12-05 22:30:37 +0000507 if (!pipe_full(head, pipe->tail, pipe->max_usage)) {
508 unsigned int mask = pipe->ring_size - 1;
David Howells8cefc102019-11-15 13:30:32 +0000509 struct pipe_buffer *buf = &pipe->bufs[head & mask];
Ingo Molnar923f4f22006-04-11 13:53:33 +0200510 struct page *page = pipe->tmp_page;
Al Virof0d1bec2014-04-03 15:05:18 -0400511 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (!page) {
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700514 page = alloc_page(GFP_HIGHUSER | __GFP_ACCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (unlikely(!page)) {
516 ret = ret ? : -ENOMEM;
517 break;
518 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200519 pipe->tmp_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
David Howellsa194dfe2019-09-20 16:32:19 +0100521
522 /* Allocate a slot in the ring in advance and attach an
523 * empty buffer. If we fault or otherwise fail to use
524 * it, either the reader will consume it or it'll still
525 * be there for the next write.
526 */
Linus Torvalds0ddad212019-12-09 09:48:27 -0800527 spin_lock_irq(&pipe->rd_wait.lock);
David Howellsa194dfe2019-09-20 16:32:19 +0100528
529 head = pipe->head;
David Howells8f868d62019-12-05 22:30:37 +0000530 if (pipe_full(head, pipe->tail, pipe->max_usage)) {
Linus Torvalds0ddad212019-12-09 09:48:27 -0800531 spin_unlock_irq(&pipe->rd_wait.lock);
David Howells8df44122019-10-07 16:30:51 +0100532 continue;
533 }
534
David Howellsa194dfe2019-09-20 16:32:19 +0100535 pipe->head = head + 1;
Linus Torvalds0ddad212019-12-09 09:48:27 -0800536 spin_unlock_irq(&pipe->rd_wait.lock);
David Howellsa194dfe2019-09-20 16:32:19 +0100537
538 /* Insert it into the buffer array */
539 buf = &pipe->bufs[head & mask];
540 buf->page = page;
541 buf->ops = &anon_pipe_buf_ops;
542 buf->offset = 0;
543 buf->len = 0;
544 buf->flags = 0;
545 if (is_packetized(filp)) {
546 buf->ops = &packet_pipe_buf_ops;
547 buf->flags = PIPE_BUF_FLAG_PACKET;
548 }
549 pipe->tmp_page = NULL;
550
Al Virof0d1bec2014-04-03 15:05:18 -0400551 copied = copy_page_from_iter(page, 0, PAGE_SIZE, from);
552 if (unlikely(copied < PAGE_SIZE && iov_iter_count(from))) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200553 if (!ret)
Al Virof0d1bec2014-04-03 15:05:18 -0400554 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 break;
556 }
Al Virof0d1bec2014-04-03 15:05:18 -0400557 ret += copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 buf->offset = 0;
Al Virof0d1bec2014-04-03 15:05:18 -0400559 buf->len = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Al Virof0d1bec2014-04-03 15:05:18 -0400561 if (!iov_iter_count(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
563 }
David Howells8cefc102019-11-15 13:30:32 +0000564
David Howells8f868d62019-12-05 22:30:37 +0000565 if (!pipe_full(head, pipe->tail, pipe->max_usage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 continue;
David Howells8cefc102019-11-15 13:30:32 +0000567
568 /* Wait for buffer space to become available. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (filp->f_flags & O_NONBLOCK) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200570 if (!ret)
571 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 break;
573 }
574 if (signal_pending(current)) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200575 if (!ret)
576 ret = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578 }
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800579
580 /*
581 * We're going to release the pipe lock and wait for more
582 * space. We wake up any readers if necessary, and then
583 * after waiting we need to re-check whether the pipe
584 * become empty while we dropped the lock.
585 */
Linus Torvalds85190d12019-12-07 13:53:09 -0800586 __pipe_unlock(pipe);
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800587 if (was_empty) {
Linus Torvalds0ddad212019-12-09 09:48:27 -0800588 wake_up_interruptible_sync_poll(&pipe->rd_wait, EPOLLIN | EPOLLRDNORM);
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800589 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
590 }
Linus Torvalds0ddad212019-12-09 09:48:27 -0800591 wait_event_interruptible_exclusive(pipe->wr_wait, pipe_writable(pipe));
Linus Torvalds85190d12019-12-07 13:53:09 -0800592 __pipe_lock(pipe);
Jan Stancek0dd1e372019-12-22 13:33:24 +0100593 was_empty = pipe_empty(pipe->head, pipe->tail);
Linus Torvalds0ddad212019-12-09 09:48:27 -0800594 wake_next_writer = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596out:
Linus Torvalds0ddad212019-12-09 09:48:27 -0800597 if (pipe_full(pipe->head, pipe->tail, pipe->max_usage))
598 wake_next_writer = false;
Al Viroebec73f2013-03-21 12:24:01 -0400599 __pipe_unlock(pipe);
Linus Torvalds1b6b26a2019-12-07 12:14:28 -0800600
601 /*
602 * If we do do a wakeup event, we do a 'sync' wakeup, because we
603 * want the reader to start processing things asap, rather than
604 * leave the data pending.
605 *
606 * This is particularly important for small writes, because of
607 * how (for example) the GNU make jobserver uses small writes to
608 * wake up pending jobs
609 */
610 if (was_empty) {
Linus Torvalds0ddad212019-12-09 09:48:27 -0800611 wake_up_interruptible_sync_poll(&pipe->rd_wait, EPOLLIN | EPOLLRDNORM);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200612 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
Linus Torvalds0ddad212019-12-09 09:48:27 -0800614 if (wake_next_writer)
615 wake_up_interruptible_sync_poll(&pipe->wr_wait, EPOLLOUT | EPOLLWRNORM);
Dmitry Monakhov7e775f42014-01-23 15:55:21 -0800616 if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) {
Josef Bacikc3b2da32012-03-26 09:59:21 -0400617 int err = file_update_time(filp);
618 if (err)
619 ret = err;
Dmitry Monakhov7e775f42014-01-23 15:55:21 -0800620 sb_end_write(file_inode(filp)->i_sb);
Josef Bacikc3b2da32012-03-26 09:59:21 -0400621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return ret;
623}
624
Andi Kleend59d0b12008-02-08 04:21:23 -0800625static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Al Virode32ec42013-03-21 11:16:56 -0400627 struct pipe_inode_info *pipe = filp->private_data;
David Howells8cefc102019-11-15 13:30:32 +0000628 int count, head, tail, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 switch (cmd) {
631 case FIONREAD:
Al Viroebec73f2013-03-21 12:24:01 -0400632 __pipe_lock(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 count = 0;
David Howells8cefc102019-11-15 13:30:32 +0000634 head = pipe->head;
635 tail = pipe->tail;
636 mask = pipe->ring_size - 1;
637
638 while (tail != head) {
639 count += pipe->bufs[tail & mask].len;
640 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Al Viroebec73f2013-03-21 12:24:01 -0400642 __pipe_unlock(pipe);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return put_user(count, (int __user *)arg);
645 default:
Will Deacon46ce3412012-05-25 11:39:13 +0100646 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648}
649
Christoph Hellwigdd670812017-12-31 16:42:12 +0100650/* No kernel lock held - fine */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700651static __poll_t
652pipe_poll(struct file *filp, poll_table *wait)
Christoph Hellwigdd670812017-12-31 16:42:12 +0100653{
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700654 __poll_t mask;
Christoph Hellwigdd670812017-12-31 16:42:12 +0100655 struct pipe_inode_info *pipe = filp->private_data;
Linus Torvaldsad910e32019-12-07 10:41:17 -0800656 unsigned int head, tail;
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700657
Linus Torvaldsad910e32019-12-07 10:41:17 -0800658 /*
Linus Torvalds0ddad212019-12-09 09:48:27 -0800659 * Reading pipe state only -- no need for acquiring the semaphore.
Linus Torvaldsad910e32019-12-07 10:41:17 -0800660 *
661 * But because this is racy, the code has to add the
662 * entry to the poll table _first_ ..
663 */
Linus Torvalds0ddad212019-12-09 09:48:27 -0800664 if (filp->f_mode & FMODE_READ)
665 poll_wait(filp, &pipe->rd_wait, wait);
666 if (filp->f_mode & FMODE_WRITE)
667 poll_wait(filp, &pipe->wr_wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Linus Torvaldsad910e32019-12-07 10:41:17 -0800669 /*
670 * .. and only then can you do the racy tests. That way,
671 * if something changes and you got it wrong, the poll
672 * table entry will wake you up and fix it.
673 */
674 head = READ_ONCE(pipe->head);
675 tail = READ_ONCE(pipe->tail);
676
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700677 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (filp->f_mode & FMODE_READ) {
David Howells8cefc102019-11-15 13:30:32 +0000679 if (!pipe_empty(head, tail))
680 mask |= EPOLLIN | EPOLLRDNORM;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200681 if (!pipe->writers && filp->f_version != pipe->w_counter)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800682 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684
685 if (filp->f_mode & FMODE_WRITE) {
David Howells6718b6f2019-10-16 16:47:32 +0100686 if (!pipe_full(head, tail, pipe->max_usage))
David Howells8cefc102019-11-15 13:30:32 +0000687 mask |= EPOLLOUT | EPOLLWRNORM;
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700688 /*
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800689 * Most Unices do not set EPOLLERR for FIFOs but on Linux they
Pekka Enberg5e5d7a22005-09-06 15:17:48 -0700690 * behave exactly like pipes for poll().
691 */
Ingo Molnar923f4f22006-04-11 13:53:33 +0200692 if (!pipe->readers)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800693 mask |= EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695
696 return mask;
697}
698
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800699static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe)
700{
701 int kill = 0;
702
703 spin_lock(&inode->i_lock);
704 if (!--pipe->files) {
705 inode->i_pipe = NULL;
706 kill = 1;
707 }
708 spin_unlock(&inode->i_lock);
709
710 if (kill)
711 free_pipe_info(pipe);
712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714static int
Al Viro599a0ac2013-03-12 09:58:10 -0400715pipe_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800717 struct pipe_inode_info *pipe = file->private_data;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200718
Al Viroebec73f2013-03-21 12:24:01 -0400719 __pipe_lock(pipe);
Al Viro599a0ac2013-03-12 09:58:10 -0400720 if (file->f_mode & FMODE_READ)
721 pipe->readers--;
722 if (file->f_mode & FMODE_WRITE)
723 pipe->writers--;
Ingo Molnar341b4462006-04-11 13:57:45 +0200724
Linus Torvalds6551d5c2020-02-18 10:12:58 -0800725 /* Was that the last reader or writer, but not the other side? */
726 if (!pipe->readers != !pipe->writers) {
727 wake_up_interruptible_all(&pipe->rd_wait);
728 wake_up_interruptible_all(&pipe->wr_wait);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200729 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
730 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
Al Viroebec73f2013-03-21 12:24:01 -0400732 __pipe_unlock(pipe);
Al Viroba5bb142013-03-21 02:21:19 -0400733
Linus Torvaldsb0d8d222013-12-02 09:44:51 -0800734 put_pipe_info(inode, pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return 0;
736}
737
738static int
Al Viro599a0ac2013-03-12 09:58:10 -0400739pipe_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Al Virode32ec42013-03-21 11:16:56 -0400741 struct pipe_inode_info *pipe = filp->private_data;
Al Viro599a0ac2013-03-12 09:58:10 -0400742 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Al Viroebec73f2013-03-21 12:24:01 -0400744 __pipe_lock(pipe);
Al Viro599a0ac2013-03-12 09:58:10 -0400745 if (filp->f_mode & FMODE_READ)
746 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
747 if ((filp->f_mode & FMODE_WRITE) && retval >= 0) {
Ingo Molnar341b4462006-04-11 13:57:45 +0200748 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
Al Viro599a0ac2013-03-12 09:58:10 -0400749 if (retval < 0 && (filp->f_mode & FMODE_READ))
750 /* this can happen only if on == T */
Oleg Nesterove5bc49b2009-03-12 14:31:28 -0700751 fasync_helper(-1, filp, 0, &pipe->fasync_readers);
752 }
Al Viroebec73f2013-03-21 12:24:01 -0400753 __pipe_unlock(pipe);
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700754 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700757static unsigned long account_pipe_buffers(struct user_struct *user,
Willy Tarreau759c0112016-01-18 16:36:09 +0100758 unsigned long old, unsigned long new)
759{
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700760 return atomic_long_add_return(new - old, &user->pipe_bufs);
Willy Tarreau759c0112016-01-18 16:36:09 +0100761}
762
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700763static bool too_many_pipe_buffers_soft(unsigned long user_bufs)
Willy Tarreau759c0112016-01-18 16:36:09 +0100764{
Eric Biggersf7340762018-02-06 15:42:08 -0800765 unsigned long soft_limit = READ_ONCE(pipe_user_pages_soft);
766
767 return soft_limit && user_bufs > soft_limit;
Willy Tarreau759c0112016-01-18 16:36:09 +0100768}
769
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700770static bool too_many_pipe_buffers_hard(unsigned long user_bufs)
Willy Tarreau759c0112016-01-18 16:36:09 +0100771{
Eric Biggersf7340762018-02-06 15:42:08 -0800772 unsigned long hard_limit = READ_ONCE(pipe_user_pages_hard);
773
774 return hard_limit && user_bufs > hard_limit;
Willy Tarreau759c0112016-01-18 16:36:09 +0100775}
776
Eric Biggers85c2dd52018-02-06 15:41:53 -0800777static bool is_unprivileged_user(void)
778{
779 return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN);
780}
781
Al Viro7bee1302013-03-21 11:04:15 -0400782struct pipe_inode_info *alloc_pipe_info(void)
Ingo Molnar3a326a22006-04-10 15:18:35 +0200783{
Ingo Molnar923f4f22006-04-11 13:53:33 +0200784 struct pipe_inode_info *pipe;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700785 unsigned long pipe_bufs = PIPE_DEF_BUFFERS;
786 struct user_struct *user = get_current_user();
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700787 unsigned long user_bufs;
Eric Biggersf7340762018-02-06 15:42:08 -0800788 unsigned int max_size = READ_ONCE(pipe_max_size);
Ingo Molnar3a326a22006-04-10 15:18:35 +0200789
Vladimir Davydovd86133b2016-07-26 15:24:33 -0700790 pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL_ACCOUNT);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700791 if (pipe == NULL)
792 goto out_free_uid;
Willy Tarreau759c0112016-01-18 16:36:09 +0100793
Eric Biggersf7340762018-02-06 15:42:08 -0800794 if (pipe_bufs * PAGE_SIZE > max_size && !capable(CAP_SYS_RESOURCE))
795 pipe_bufs = max_size >> PAGE_SHIFT;
Michael Kerrisk (man-pages)086e7742016-10-11 13:53:43 -0700796
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700797 user_bufs = account_pipe_buffers(user, 0, pipe_bufs);
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700798
Eric Biggers85c2dd52018-02-06 15:41:53 -0800799 if (too_many_pipe_buffers_soft(user_bufs) && is_unprivileged_user()) {
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700800 user_bufs = account_pipe_buffers(user, pipe_bufs, 1);
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700801 pipe_bufs = 1;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200802 }
803
Eric Biggers85c2dd52018-02-06 15:41:53 -0800804 if (too_many_pipe_buffers_hard(user_bufs) && is_unprivileged_user())
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700805 goto out_revert_acct;
806
807 pipe->bufs = kcalloc(pipe_bufs, sizeof(struct pipe_buffer),
808 GFP_KERNEL_ACCOUNT);
809
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700810 if (pipe->bufs) {
Linus Torvalds0ddad212019-12-09 09:48:27 -0800811 init_waitqueue_head(&pipe->rd_wait);
812 init_waitqueue_head(&pipe->wr_wait);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700813 pipe->r_counter = pipe->w_counter = 1;
David Howells6718b6f2019-10-16 16:47:32 +0100814 pipe->max_usage = pipe_bufs;
David Howells8cefc102019-11-15 13:30:32 +0000815 pipe->ring_size = pipe_bufs;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700816 pipe->user = user;
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700817 mutex_init(&pipe->mutex);
818 return pipe;
819 }
820
Michael Kerrisk (man-pages)a005ca02016-10-11 13:53:37 -0700821out_revert_acct:
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -0700822 (void) account_pipe_buffers(user, pipe_bufs, 0);
Michael Kerrisk (man-pages)09b4d192016-10-11 13:53:34 -0700823 kfree(pipe);
824out_free_uid:
825 free_uid(user);
Jens Axboe35f3d142010-05-20 10:43:18 +0200826 return NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200827}
828
Al Viro4b8a8f12013-03-21 11:06:46 -0400829void free_pipe_info(struct pipe_inode_info *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
David Howells8cefc102019-11-15 13:30:32 +0000833 (void) account_pipe_buffers(pipe->user, pipe->ring_size, 0);
Willy Tarreau759c0112016-01-18 16:36:09 +0100834 free_uid(pipe->user);
David Howells8cefc102019-11-15 13:30:32 +0000835 for (i = 0; i < pipe->ring_size; i++) {
Ingo Molnar923f4f22006-04-11 13:53:33 +0200836 struct pipe_buffer *buf = pipe->bufs + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (buf->ops)
Miklos Szeredia7796382016-09-27 10:45:12 +0200838 pipe_buf_release(pipe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
Ingo Molnar923f4f22006-04-11 13:53:33 +0200840 if (pipe->tmp_page)
841 __free_page(pipe->tmp_page);
Jens Axboe35f3d142010-05-20 10:43:18 +0200842 kfree(pipe->bufs);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200843 kfree(pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800846static struct vfsmount *pipe_mnt __read_mostly;
Ingo Molnar341b4462006-04-11 13:57:45 +0200847
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700848/*
849 * pipefs_dname() is called from d_path().
850 */
851static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
852{
853 return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
David Howells75c3cfa2015-03-17 22:26:12 +0000854 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700855}
856
Al Viro3ba13d12009-02-20 06:02:22 +0000857static const struct dentry_operations pipefs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700858 .d_dname = pipefs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859};
860
861static struct inode * get_pipe_inode(void)
862{
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200863 struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200864 struct pipe_inode_info *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!inode)
867 goto fail_inode;
868
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400869 inode->i_ino = get_next_ino();
870
Al Viro7bee1302013-03-21 11:04:15 -0400871 pipe = alloc_pipe_info();
Ingo Molnar923f4f22006-04-11 13:53:33 +0200872 if (!pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 goto fail_iput;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200874
Al Viroba5bb142013-03-21 02:21:19 -0400875 inode->i_pipe = pipe;
876 pipe->files = 2;
Ingo Molnar923f4f22006-04-11 13:53:33 +0200877 pipe->readers = pipe->writers = 1;
Al Viro599a0ac2013-03-12 09:58:10 -0400878 inode->i_fop = &pipefifo_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 /*
881 * Mark the inode dirty from the very beginning,
882 * that way it will never be moved to the dirty
883 * list because "mark_inode_dirty()" will think
884 * that it already _is_ on the dirty list.
885 */
886 inode->i_state = I_DIRTY;
887 inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
David Howellsda9592e2008-11-14 10:39:05 +1100888 inode->i_uid = current_fsuid();
889 inode->i_gid = current_fsgid();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700890 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Ingo Molnar923f4f22006-04-11 13:53:33 +0200891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return inode;
893
894fail_iput:
895 iput(inode);
Ingo Molnar341b4462006-04-11 13:57:45 +0200896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897fail_inode:
898 return NULL;
899}
900
Al Viroe4fad8e2012-07-21 15:33:25 +0400901int create_pipe_files(struct file **res, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Al Viroe4fad8e2012-07-21 15:33:25 +0400903 struct inode *inode = get_pipe_inode();
Andi Kleend6cbd282006-09-30 23:29:26 -0700904 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (!inode)
Al Viroe4fad8e2012-07-21 15:33:25 +0400907 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Al Viro152b6372018-06-09 10:05:18 -0400909 f = alloc_file_pseudo(inode, pipe_mnt, "",
910 O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT)),
911 &pipefifo_fops);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500912 if (IS_ERR(f)) {
Al Viro152b6372018-06-09 10:05:18 -0400913 free_pipe_info(inode->i_pipe);
914 iput(inode);
915 return PTR_ERR(f);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Al Virode32ec42013-03-21 11:16:56 -0400918 f->private_data = inode->i_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Al Viro183266f2018-06-17 14:15:10 -0400920 res[0] = alloc_file_clone(f, O_RDONLY | (flags & O_NONBLOCK),
921 &pipefifo_fops);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500922 if (IS_ERR(res[0])) {
Al Virob10a4a92018-07-09 02:29:58 -0400923 put_pipe_info(inode, inode->i_pipe);
924 fput(f);
925 return PTR_ERR(res[0]);
Eric Biggerse9bb1f92015-10-17 16:26:08 -0500926 }
Al Virode32ec42013-03-21 11:16:56 -0400927 res[0]->private_data = inode->i_pipe;
Al Viroe4fad8e2012-07-21 15:33:25 +0400928 res[1] = f;
Linus Torvaldsd8e464e2019-11-17 11:20:48 -0800929 stream_open(inode, res[0]);
930 stream_open(inode, res[1]);
Al Viroe4fad8e2012-07-21 15:33:25 +0400931 return 0;
Andi Kleend6cbd282006-09-30 23:29:26 -0700932}
933
Al Viro5b249b12012-08-19 12:17:29 -0400934static int __do_pipe_flags(int *fd, struct file **files, int flags)
Andi Kleend6cbd282006-09-30 23:29:26 -0700935{
Andi Kleend6cbd282006-09-30 23:29:26 -0700936 int error;
937 int fdw, fdr;
938
Linus Torvalds98830352012-04-29 13:12:42 -0700939 if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT))
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700940 return -EINVAL;
941
Al Viroe4fad8e2012-07-21 15:33:25 +0400942 error = create_pipe_files(files, flags);
943 if (error)
944 return error;
Andi Kleend6cbd282006-09-30 23:29:26 -0700945
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700946 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -0700947 if (error < 0)
948 goto err_read_pipe;
949 fdr = error;
950
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700951 error = get_unused_fd_flags(flags);
Andi Kleend6cbd282006-09-30 23:29:26 -0700952 if (error < 0)
953 goto err_fdr;
954 fdw = error;
955
Al Viro157cf642008-12-14 04:57:47 -0500956 audit_fd_pair(fdr, fdw);
Andi Kleend6cbd282006-09-30 23:29:26 -0700957 fd[0] = fdr;
958 fd[1] = fdw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return 0;
960
Andi Kleend6cbd282006-09-30 23:29:26 -0700961 err_fdr:
962 put_unused_fd(fdr);
963 err_read_pipe:
Al Viroe4fad8e2012-07-21 15:33:25 +0400964 fput(files[0]);
965 fput(files[1]);
Andi Kleend6cbd282006-09-30 23:29:26 -0700966 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Al Viro5b249b12012-08-19 12:17:29 -0400969int do_pipe_flags(int *fd, int flags)
970{
971 struct file *files[2];
972 int error = __do_pipe_flags(fd, files, flags);
973 if (!error) {
974 fd_install(fd[0], files[0]);
975 fd_install(fd[1], files[1]);
976 }
977 return error;
978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980/*
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400981 * sys_pipe() is the normal C calling standard for creating
982 * a pipe. It's not the way Unix traditionally does this, though.
983 */
Dominik Brodowski0a216dd2018-03-11 11:34:28 +0100984static int do_pipe2(int __user *fildes, int flags)
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400985{
Al Viro5b249b12012-08-19 12:17:29 -0400986 struct file *files[2];
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400987 int fd[2];
988 int error;
989
Al Viro5b249b12012-08-19 12:17:29 -0400990 error = __do_pipe_flags(fd, files, flags);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400991 if (!error) {
Al Viro5b249b12012-08-19 12:17:29 -0400992 if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) {
993 fput(files[0]);
994 fput(files[1]);
995 put_unused_fd(fd[0]);
996 put_unused_fd(fd[1]);
Ulrich Drepperd35c7b02008-05-03 15:10:37 -0400997 error = -EFAULT;
Al Viro5b249b12012-08-19 12:17:29 -0400998 } else {
999 fd_install(fd[0], files[0]);
1000 fd_install(fd[1], files[1]);
Ulrich Drepperba719ba2008-05-06 20:42:38 -07001001 }
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001002 }
1003 return error;
1004}
1005
Dominik Brodowski0a216dd2018-03-11 11:34:28 +01001006SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
1007{
1008 return do_pipe2(fildes, flags);
1009}
1010
Heiko Carstens2b664212009-01-14 14:14:35 +01001011SYSCALL_DEFINE1(pipe, int __user *, fildes)
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001012{
Dominik Brodowski0a216dd2018-03-11 11:34:28 +01001013 return do_pipe2(fildes, 0);
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001014}
1015
Al Virofc7478a2013-03-21 02:07:59 -04001016static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt)
Al Virof776c732013-03-12 09:46:27 -04001017{
David Howells8cefc102019-11-15 13:30:32 +00001018 int cur = *cnt;
Al Virof776c732013-03-12 09:46:27 -04001019
1020 while (cur == *cnt) {
Al Virofc7478a2013-03-21 02:07:59 -04001021 pipe_wait(pipe);
Al Virof776c732013-03-12 09:46:27 -04001022 if (signal_pending(current))
1023 break;
1024 }
1025 return cur == *cnt ? -ERESTARTSYS : 0;
1026}
1027
Al Virofc7478a2013-03-21 02:07:59 -04001028static void wake_up_partner(struct pipe_inode_info *pipe)
Al Virof776c732013-03-12 09:46:27 -04001029{
Linus Torvalds6551d5c2020-02-18 10:12:58 -08001030 wake_up_interruptible_all(&pipe->rd_wait);
1031 wake_up_interruptible_all(&pipe->wr_wait);
Al Virof776c732013-03-12 09:46:27 -04001032}
1033
1034static int fifo_open(struct inode *inode, struct file *filp)
1035{
1036 struct pipe_inode_info *pipe;
Al Viro599a0ac2013-03-12 09:58:10 -04001037 bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC;
Al Virof776c732013-03-12 09:46:27 -04001038 int ret;
1039
Al Viroba5bb142013-03-21 02:21:19 -04001040 filp->f_version = 0;
1041
1042 spin_lock(&inode->i_lock);
1043 if (inode->i_pipe) {
1044 pipe = inode->i_pipe;
1045 pipe->files++;
1046 spin_unlock(&inode->i_lock);
1047 } else {
1048 spin_unlock(&inode->i_lock);
Al Viro7bee1302013-03-21 11:04:15 -04001049 pipe = alloc_pipe_info();
Al Virof776c732013-03-12 09:46:27 -04001050 if (!pipe)
Al Viroba5bb142013-03-21 02:21:19 -04001051 return -ENOMEM;
1052 pipe->files = 1;
1053 spin_lock(&inode->i_lock);
1054 if (unlikely(inode->i_pipe)) {
1055 inode->i_pipe->files++;
1056 spin_unlock(&inode->i_lock);
Al Viro4b8a8f12013-03-21 11:06:46 -04001057 free_pipe_info(pipe);
Al Viroba5bb142013-03-21 02:21:19 -04001058 pipe = inode->i_pipe;
1059 } else {
1060 inode->i_pipe = pipe;
1061 spin_unlock(&inode->i_lock);
1062 }
Al Virof776c732013-03-12 09:46:27 -04001063 }
Al Virode32ec42013-03-21 11:16:56 -04001064 filp->private_data = pipe;
Al Viroba5bb142013-03-21 02:21:19 -04001065 /* OK, we have a pipe and it's pinned down */
1066
Al Viroebec73f2013-03-21 12:24:01 -04001067 __pipe_lock(pipe);
Al Virof776c732013-03-12 09:46:27 -04001068
1069 /* We can only do regular read/write on fifos */
Linus Torvaldsd8e464e2019-11-17 11:20:48 -08001070 stream_open(inode, filp);
Al Virof776c732013-03-12 09:46:27 -04001071
Linus Torvaldsd8e464e2019-11-17 11:20:48 -08001072 switch (filp->f_mode & (FMODE_READ | FMODE_WRITE)) {
Al Virof776c732013-03-12 09:46:27 -04001073 case FMODE_READ:
1074 /*
1075 * O_RDONLY
1076 * POSIX.1 says that O_NONBLOCK means return with the FIFO
1077 * opened, even when there is no process writing the FIFO.
1078 */
Al Virof776c732013-03-12 09:46:27 -04001079 pipe->r_counter++;
1080 if (pipe->readers++ == 0)
Al Virofc7478a2013-03-21 02:07:59 -04001081 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -04001082
Al Viro599a0ac2013-03-12 09:58:10 -04001083 if (!is_pipe && !pipe->writers) {
Al Virof776c732013-03-12 09:46:27 -04001084 if ((filp->f_flags & O_NONBLOCK)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001085 /* suppress EPOLLHUP until we have
Al Virof776c732013-03-12 09:46:27 -04001086 * seen a writer */
1087 filp->f_version = pipe->w_counter;
1088 } else {
Al Virofc7478a2013-03-21 02:07:59 -04001089 if (wait_for_partner(pipe, &pipe->w_counter))
Al Virof776c732013-03-12 09:46:27 -04001090 goto err_rd;
1091 }
1092 }
1093 break;
David Howells8cefc102019-11-15 13:30:32 +00001094
Al Virof776c732013-03-12 09:46:27 -04001095 case FMODE_WRITE:
1096 /*
1097 * O_WRONLY
1098 * POSIX.1 says that O_NONBLOCK means return -1 with
1099 * errno=ENXIO when there is no process reading the FIFO.
1100 */
1101 ret = -ENXIO;
Al Viro599a0ac2013-03-12 09:58:10 -04001102 if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers)
Al Virof776c732013-03-12 09:46:27 -04001103 goto err;
1104
Al Virof776c732013-03-12 09:46:27 -04001105 pipe->w_counter++;
1106 if (!pipe->writers++)
Al Virofc7478a2013-03-21 02:07:59 -04001107 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -04001108
Al Viro599a0ac2013-03-12 09:58:10 -04001109 if (!is_pipe && !pipe->readers) {
Al Virofc7478a2013-03-21 02:07:59 -04001110 if (wait_for_partner(pipe, &pipe->r_counter))
Al Virof776c732013-03-12 09:46:27 -04001111 goto err_wr;
1112 }
1113 break;
David Howells8cefc102019-11-15 13:30:32 +00001114
Al Virof776c732013-03-12 09:46:27 -04001115 case FMODE_READ | FMODE_WRITE:
1116 /*
1117 * O_RDWR
1118 * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
1119 * This implementation will NEVER block on a O_RDWR open, since
1120 * the process can at least talk to itself.
1121 */
Al Virof776c732013-03-12 09:46:27 -04001122
1123 pipe->readers++;
1124 pipe->writers++;
1125 pipe->r_counter++;
1126 pipe->w_counter++;
1127 if (pipe->readers == 1 || pipe->writers == 1)
Al Virofc7478a2013-03-21 02:07:59 -04001128 wake_up_partner(pipe);
Al Virof776c732013-03-12 09:46:27 -04001129 break;
1130
1131 default:
1132 ret = -EINVAL;
1133 goto err;
1134 }
1135
1136 /* Ok! */
Al Viroebec73f2013-03-21 12:24:01 -04001137 __pipe_unlock(pipe);
Al Virof776c732013-03-12 09:46:27 -04001138 return 0;
1139
1140err_rd:
1141 if (!--pipe->readers)
Linus Torvalds0ddad212019-12-09 09:48:27 -08001142 wake_up_interruptible(&pipe->wr_wait);
Al Virof776c732013-03-12 09:46:27 -04001143 ret = -ERESTARTSYS;
1144 goto err;
1145
1146err_wr:
1147 if (!--pipe->writers)
Linus Torvalds6551d5c2020-02-18 10:12:58 -08001148 wake_up_interruptible_all(&pipe->rd_wait);
Al Virof776c732013-03-12 09:46:27 -04001149 ret = -ERESTARTSYS;
1150 goto err;
1151
1152err:
Al Viroebec73f2013-03-21 12:24:01 -04001153 __pipe_unlock(pipe);
Linus Torvaldsb0d8d222013-12-02 09:44:51 -08001154
1155 put_pipe_info(inode, pipe);
Al Virof776c732013-03-12 09:46:27 -04001156 return ret;
1157}
1158
Al Viro599a0ac2013-03-12 09:58:10 -04001159const struct file_operations pipefifo_fops = {
1160 .open = fifo_open,
1161 .llseek = no_llseek,
Al Virofb9096a2014-04-02 19:56:54 -04001162 .read_iter = pipe_read,
Al Virof0d1bec2014-04-03 15:05:18 -04001163 .write_iter = pipe_write,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001164 .poll = pipe_poll,
Al Viro599a0ac2013-03-12 09:58:10 -04001165 .unlocked_ioctl = pipe_ioctl,
1166 .release = pipe_release,
1167 .fasync = pipe_fasync,
Al Virof776c732013-03-12 09:46:27 -04001168};
1169
Ulrich Drepperd35c7b02008-05-03 15:10:37 -04001170/*
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001171 * Currently we rely on the pipe array holding a power-of-2 number
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001172 * of pages. Returns 0 on error.
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001173 */
Eric Biggers96e99be402018-02-06 15:42:00 -08001174unsigned int round_pipe_size(unsigned long size)
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001175{
Eric Biggersc4fed5a2018-02-06 15:42:05 -08001176 if (size > (1U << 31))
Eric Biggers96e99be402018-02-06 15:42:00 -08001177 return 0;
1178
Eric Biggers4c2e4be2018-02-06 15:41:45 -08001179 /* Minimum pipe size, as required by POSIX */
1180 if (size < PAGE_SIZE)
Eric Biggersc4fed5a2018-02-06 15:42:05 -08001181 return PAGE_SIZE;
Joe Lawrenced3f14c42017-11-17 15:29:21 -08001182
Eric Biggersc4fed5a2018-02-06 15:42:05 -08001183 return roundup_pow_of_two(size);
Michael Kerrisk (man-pages)f491bd72016-10-11 13:53:22 -07001184}
1185
1186/*
Jens Axboe35f3d142010-05-20 10:43:18 +02001187 * Allocate a new array of pipe buffers and copy the info over. Returns the
1188 * pipe size if successful, or return -ERROR on error.
1189 */
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001190static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long arg)
Jens Axboe35f3d142010-05-20 10:43:18 +02001191{
1192 struct pipe_buffer *bufs;
David Howells8cefc102019-11-15 13:30:32 +00001193 unsigned int size, nr_slots, head, tail, mask, n;
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001194 unsigned long user_bufs;
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001195 long ret = 0;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001196
1197 size = round_pipe_size(arg);
David Howells8cefc102019-11-15 13:30:32 +00001198 nr_slots = size >> PAGE_SHIFT;
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001199
David Howells8cefc102019-11-15 13:30:32 +00001200 if (!nr_slots)
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001201 return -EINVAL;
1202
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001203 /*
1204 * If trying to increase the pipe capacity, check that an
1205 * unprivileged user is not trying to exceed various limits
1206 * (soft limit check here, hard limit check just below).
1207 * Decreasing the pipe capacity is always permitted, even
1208 * if the user is currently over a limit.
1209 */
David Howells8cefc102019-11-15 13:30:32 +00001210 if (nr_slots > pipe->ring_size &&
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001211 size > pipe_max_size && !capable(CAP_SYS_RESOURCE))
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001212 return -EPERM;
1213
David Howells8cefc102019-11-15 13:30:32 +00001214 user_bufs = account_pipe_buffers(pipe->user, pipe->ring_size, nr_slots);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001215
David Howells8cefc102019-11-15 13:30:32 +00001216 if (nr_slots > pipe->ring_size &&
Michael Kerrisk (man-pages)9c87bcf2016-10-11 13:53:40 -07001217 (too_many_pipe_buffers_hard(user_bufs) ||
1218 too_many_pipe_buffers_soft(user_bufs)) &&
Eric Biggers85c2dd52018-02-06 15:41:53 -08001219 is_unprivileged_user()) {
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001220 ret = -EPERM;
1221 goto out_revert_acct;
1222 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001223
1224 /*
David Howells8cefc102019-11-15 13:30:32 +00001225 * We can shrink the pipe, if arg is greater than the ring occupancy.
1226 * Since we don't expect a lot of shrink+grow operations, just free and
1227 * allocate again like we would do for growing. If the pipe currently
Jens Axboe35f3d142010-05-20 10:43:18 +02001228 * contains more buffers than arg, then return busy.
1229 */
David Howells8cefc102019-11-15 13:30:32 +00001230 mask = pipe->ring_size - 1;
1231 head = pipe->head;
1232 tail = pipe->tail;
1233 n = pipe_occupancy(pipe->head, pipe->tail);
1234 if (nr_slots < n) {
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001235 ret = -EBUSY;
1236 goto out_revert_acct;
1237 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001238
David Howells8cefc102019-11-15 13:30:32 +00001239 bufs = kcalloc(nr_slots, sizeof(*bufs),
Vladimir Davydovd86133b2016-07-26 15:24:33 -07001240 GFP_KERNEL_ACCOUNT | __GFP_NOWARN);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001241 if (unlikely(!bufs)) {
1242 ret = -ENOMEM;
1243 goto out_revert_acct;
1244 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001245
1246 /*
1247 * The pipe array wraps around, so just start the new one at zero
David Howells8cefc102019-11-15 13:30:32 +00001248 * and adjust the indices.
Jens Axboe35f3d142010-05-20 10:43:18 +02001249 */
David Howells8cefc102019-11-15 13:30:32 +00001250 if (n > 0) {
1251 unsigned int h = head & mask;
1252 unsigned int t = tail & mask;
1253 if (h > t) {
1254 memcpy(bufs, pipe->bufs + t,
1255 n * sizeof(struct pipe_buffer));
1256 } else {
1257 unsigned int tsize = pipe->ring_size - t;
1258 if (h > 0)
1259 memcpy(bufs + tsize, pipe->bufs,
1260 h * sizeof(struct pipe_buffer));
1261 memcpy(bufs, pipe->bufs + t,
1262 tsize * sizeof(struct pipe_buffer));
1263 }
Jens Axboe35f3d142010-05-20 10:43:18 +02001264 }
1265
David Howells8cefc102019-11-15 13:30:32 +00001266 head = n;
1267 tail = 0;
1268
Jens Axboe35f3d142010-05-20 10:43:18 +02001269 kfree(pipe->bufs);
1270 pipe->bufs = bufs;
David Howells8cefc102019-11-15 13:30:32 +00001271 pipe->ring_size = nr_slots;
David Howells6718b6f2019-10-16 16:47:32 +01001272 pipe->max_usage = nr_slots;
David Howells8cefc102019-11-15 13:30:32 +00001273 pipe->tail = tail;
1274 pipe->head = head;
Linus Torvalds6551d5c2020-02-18 10:12:58 -08001275
1276 /* This might have made more room for writers */
1277 wake_up_interruptible(&pipe->wr_wait);
David Howells6718b6f2019-10-16 16:47:32 +01001278 return pipe->max_usage * PAGE_SIZE;
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001279
1280out_revert_acct:
David Howells8cefc102019-11-15 13:30:32 +00001281 (void) account_pipe_buffers(pipe->user, nr_slots, pipe->ring_size);
Michael Kerrisk (man-pages)b0b91d12016-10-11 13:53:31 -07001282 return ret;
Jens Axboe35f3d142010-05-20 10:43:18 +02001283}
1284
Jens Axboeff9da692010-06-03 14:54:39 +02001285/*
Linus Torvalds72083642010-11-28 16:27:19 -08001286 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1287 * location, so checking ->i_pipe is not enough to verify that this is a
1288 * pipe.
1289 */
1290struct pipe_inode_info *get_pipe_info(struct file *file)
1291{
Al Virode32ec42013-03-21 11:16:56 -04001292 return file->f_op == &pipefifo_fops ? file->private_data : NULL;
Linus Torvalds72083642010-11-28 16:27:19 -08001293}
1294
Jens Axboe35f3d142010-05-20 10:43:18 +02001295long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
1296{
1297 struct pipe_inode_info *pipe;
1298 long ret;
1299
Linus Torvaldsc66fb342010-11-28 14:09:57 -08001300 pipe = get_pipe_info(file);
Jens Axboe35f3d142010-05-20 10:43:18 +02001301 if (!pipe)
1302 return -EBADF;
1303
Al Viroebec73f2013-03-21 12:24:01 -04001304 __pipe_lock(pipe);
Jens Axboe35f3d142010-05-20 10:43:18 +02001305
1306 switch (cmd) {
Michael Kerrisk (man-pages)d37d4162016-10-11 13:53:25 -07001307 case F_SETPIPE_SZ:
1308 ret = pipe_set_size(pipe, arg);
Jens Axboe35f3d142010-05-20 10:43:18 +02001309 break;
1310 case F_GETPIPE_SZ:
David Howells6718b6f2019-10-16 16:47:32 +01001311 ret = pipe->max_usage * PAGE_SIZE;
Jens Axboe35f3d142010-05-20 10:43:18 +02001312 break;
1313 default:
1314 ret = -EINVAL;
1315 break;
1316 }
1317
Al Viroebec73f2013-03-21 12:24:01 -04001318 __pipe_unlock(pipe);
Jens Axboe35f3d142010-05-20 10:43:18 +02001319 return ret;
1320}
1321
Nick Pigginff0c7d12011-01-07 17:49:50 +11001322static const struct super_operations pipefs_ops = {
1323 .destroy_inode = free_inode_nonrcu,
Pavel Emelyanovd70ef972011-10-31 17:10:04 -07001324 .statfs = simple_statfs,
Nick Pigginff0c7d12011-01-07 17:49:50 +11001325};
1326
Jens Axboe35f3d142010-05-20 10:43:18 +02001327/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 * pipefs should _never_ be mounted by userland - too much of security hassle,
1329 * no real gain from having the whole whorehouse mounted. So we don't need
1330 * any operations on the root directory. However, we need a non-trivial
1331 * d_name - pipe: will go nicely and kill the special-casing in procfs.
1332 */
David Howells4fa7ec52019-03-25 16:38:23 +00001333
1334static int pipefs_init_fs_context(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
David Howells4fa7ec52019-03-25 16:38:23 +00001336 struct pseudo_fs_context *ctx = init_pseudo(fc, PIPEFS_MAGIC);
1337 if (!ctx)
1338 return -ENOMEM;
1339 ctx->ops = &pipefs_ops;
1340 ctx->dops = &pipefs_dentry_operations;
1341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
1344static struct file_system_type pipe_fs_type = {
1345 .name = "pipefs",
David Howells4fa7ec52019-03-25 16:38:23 +00001346 .init_fs_context = pipefs_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 .kill_sb = kill_anon_super,
1348};
1349
1350static int __init init_pipe_fs(void)
1351{
1352 int err = register_filesystem(&pipe_fs_type);
Ingo Molnar341b4462006-04-11 13:57:45 +02001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (!err) {
1355 pipe_mnt = kern_mount(&pipe_fs_type);
1356 if (IS_ERR(pipe_mnt)) {
1357 err = PTR_ERR(pipe_mnt);
1358 unregister_filesystem(&pipe_fs_type);
1359 }
1360 }
1361 return err;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364fs_initcall(init_pipe_fs);