Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 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 Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 15 | #include <linux/log2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/mount.h> |
David Howells | 4fa7ec5 | 2019-03-25 16:38:23 +0000 | [diff] [blame] | 17 | #include <linux/pseudo_fs.h> |
Muthu Kumar | b502bd1 | 2012-03-23 15:01:50 -0700 | [diff] [blame] | 18 | #include <linux/magic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/pipe_fs_i.h> |
| 20 | #include <linux/uio.h> |
| 21 | #include <linux/highmem.h> |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 22 | #include <linux/pagemap.h> |
Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 23 | #include <linux/audit.h> |
Ulrich Drepper | ba719ba | 2008-05-06 20:42:38 -0700 | [diff] [blame] | 24 | #include <linux/syscalls.h> |
Jens Axboe | b492e95 | 2010-05-19 21:03:16 +0200 | [diff] [blame] | 25 | #include <linux/fcntl.h> |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 26 | #include <linux/memcontrol.h> |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 27 | #include <linux/watch_queue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 29 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/ioctls.h> |
| 31 | |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 32 | #include "internal.h" |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
Jens Axboe | b492e95 | 2010-05-19 21:03:16 +0200 | [diff] [blame] | 35 | * The max size that a non-root user is allowed to grow the pipe. Can |
Jens Axboe | ff9da69 | 2010-06-03 14:54:39 +0200 | [diff] [blame] | 36 | * be set by root in /proc/sys/fs/pipe-max-size |
Jens Axboe | b492e95 | 2010-05-19 21:03:16 +0200 | [diff] [blame] | 37 | */ |
Jens Axboe | ff9da69 | 2010-06-03 14:54:39 +0200 | [diff] [blame] | 38 | unsigned int pipe_max_size = 1048576; |
| 39 | |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 40 | /* Maximum allocatable pages per user. Hard limit is unset by default, soft |
| 41 | * matches default values. |
| 42 | */ |
| 43 | unsigned long pipe_user_pages_hard; |
| 44 | unsigned long pipe_user_pages_soft = PIPE_DEF_BUFFERS * INR_OPEN_CUR; |
| 45 | |
Jens Axboe | b492e95 | 2010-05-19 21:03:16 +0200 | [diff] [blame] | 46 | /* |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 47 | * We use head and tail indices that aren't masked off, except at the point of |
| 48 | * dereference, but rather they're allowed to wrap naturally. This means there |
| 49 | * isn't a dead spot in the buffer, but the ring has to be a power of two and |
| 50 | * <= 2^31. |
| 51 | * -- David Howells 2019-09-23. |
| 52 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | * Reads with count = 0 should always return 0. |
| 54 | * -- Julian Bradfield 1999-06-07. |
| 55 | * |
| 56 | * FIFOs and Pipes now generate SIGIO for both readers and writers. |
| 57 | * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16 |
| 58 | * |
| 59 | * pipe_read & write cleanup |
| 60 | * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09 |
| 61 | */ |
| 62 | |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 63 | static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass) |
| 64 | { |
Al Viro | 6447a3c | 2013-03-21 11:01:38 -0400 | [diff] [blame] | 65 | if (pipe->files) |
Al Viro | 72b0d9a | 2013-03-21 02:32:24 -0400 | [diff] [blame] | 66 | mutex_lock_nested(&pipe->mutex, subclass); |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | void pipe_lock(struct pipe_inode_info *pipe) |
| 70 | { |
| 71 | /* |
| 72 | * pipe_lock() nests non-pipe inode locks (for writing to a file) |
| 73 | */ |
| 74 | pipe_lock_nested(pipe, I_MUTEX_PARENT); |
| 75 | } |
| 76 | EXPORT_SYMBOL(pipe_lock); |
| 77 | |
| 78 | void pipe_unlock(struct pipe_inode_info *pipe) |
| 79 | { |
Al Viro | 6447a3c | 2013-03-21 11:01:38 -0400 | [diff] [blame] | 80 | if (pipe->files) |
Al Viro | 72b0d9a | 2013-03-21 02:32:24 -0400 | [diff] [blame] | 81 | mutex_unlock(&pipe->mutex); |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 82 | } |
| 83 | EXPORT_SYMBOL(pipe_unlock); |
| 84 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 85 | static inline void __pipe_lock(struct pipe_inode_info *pipe) |
| 86 | { |
| 87 | mutex_lock_nested(&pipe->mutex, I_MUTEX_PARENT); |
| 88 | } |
| 89 | |
| 90 | static inline void __pipe_unlock(struct pipe_inode_info *pipe) |
| 91 | { |
| 92 | mutex_unlock(&pipe->mutex); |
| 93 | } |
| 94 | |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 95 | void pipe_double_lock(struct pipe_inode_info *pipe1, |
| 96 | struct pipe_inode_info *pipe2) |
| 97 | { |
| 98 | BUG_ON(pipe1 == pipe2); |
| 99 | |
| 100 | if (pipe1 < pipe2) { |
| 101 | pipe_lock_nested(pipe1, I_MUTEX_PARENT); |
| 102 | pipe_lock_nested(pipe2, I_MUTEX_CHILD); |
| 103 | } else { |
Peter Zijlstra | 023d43c | 2009-07-21 10:09:23 +0200 | [diff] [blame] | 104 | pipe_lock_nested(pipe2, I_MUTEX_PARENT); |
| 105 | pipe_lock_nested(pipe1, I_MUTEX_CHILD); |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 106 | } |
| 107 | } |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /* Drop the inode semaphore and wait for a pipe event, atomically */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 110 | void pipe_wait(struct pipe_inode_info *pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 112 | DEFINE_WAIT(rdwait); |
| 113 | DEFINE_WAIT(wrwait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Ingo Molnar | d79fc0f | 2005-09-10 00:26:12 -0700 | [diff] [blame] | 115 | /* |
| 116 | * Pipes are system-local resources, so sleeping on them |
| 117 | * is considered a noninteractive wait: |
| 118 | */ |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 119 | prepare_to_wait(&pipe->rd_wait, &rdwait, TASK_INTERRUPTIBLE); |
| 120 | prepare_to_wait(&pipe->wr_wait, &wrwait, TASK_INTERRUPTIBLE); |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 121 | pipe_unlock(pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | schedule(); |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 123 | finish_wait(&pipe->rd_wait, &rdwait); |
| 124 | finish_wait(&pipe->wr_wait, &wrwait); |
Miklos Szeredi | 61e0d47 | 2009-04-14 19:48:41 +0200 | [diff] [blame] | 125 | pipe_lock(pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 128 | static void anon_pipe_buf_release(struct pipe_inode_info *pipe, |
| 129 | struct pipe_buffer *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
| 131 | struct page *page = buf->page; |
| 132 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 133 | /* |
| 134 | * If nobody else uses this page, and we don't already have a |
| 135 | * temporary page, let's keep track of it as a one-deep |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 136 | * allocation cache. (Otherwise just release our reference to it) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 137 | */ |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 138 | if (page_count(page) == 1 && !pipe->tmp_page) |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 139 | pipe->tmp_page = page; |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 140 | else |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 141 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 144 | static int anon_pipe_buf_steal(struct pipe_inode_info *pipe, |
| 145 | struct pipe_buffer *buf) |
| 146 | { |
| 147 | struct page *page = buf->page; |
| 148 | |
| 149 | if (page_count(page) == 1) { |
Roman Gushchin | f4b00ea | 2020-04-01 21:06:46 -0700 | [diff] [blame] | 150 | memcg_kmem_uncharge_page(page, 0); |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 151 | __SetPageLocked(page); |
| 152 | return 0; |
| 153 | } |
| 154 | return 1; |
| 155 | } |
| 156 | |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 157 | /** |
Randy Dunlap | b51d63c | 2008-02-13 15:03:22 -0800 | [diff] [blame] | 158 | * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 159 | * @pipe: the pipe that the buffer belongs to |
| 160 | * @buf: the buffer to attempt to steal |
| 161 | * |
| 162 | * Description: |
Randy Dunlap | b51d63c | 2008-02-13 15:03:22 -0800 | [diff] [blame] | 163 | * This function attempts to steal the &struct page attached to |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 164 | * @buf. If successful, this function returns 0 and returns with |
| 165 | * the page locked. The caller may then reuse the page for whatever |
Randy Dunlap | b51d63c | 2008-02-13 15:03:22 -0800 | [diff] [blame] | 166 | * he wishes; the typical use is insertion into a different file |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 167 | * page cache. |
| 168 | */ |
Jens Axboe | 330ab71 | 2006-05-02 15:29:57 +0200 | [diff] [blame] | 169 | int generic_pipe_buf_steal(struct pipe_inode_info *pipe, |
| 170 | struct pipe_buffer *buf) |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 171 | { |
Jens Axboe | 46e678c | 2006-04-30 16:36:32 +0200 | [diff] [blame] | 172 | struct page *page = buf->page; |
| 173 | |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 174 | /* |
| 175 | * A reference of one is golden, that means that the owner of this |
| 176 | * page is the only one holding a reference to it. lock the page |
| 177 | * and return OK. |
| 178 | */ |
Jens Axboe | 46e678c | 2006-04-30 16:36:32 +0200 | [diff] [blame] | 179 | if (page_count(page) == 1) { |
Jens Axboe | 46e678c | 2006-04-30 16:36:32 +0200 | [diff] [blame] | 180 | lock_page(page); |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | return 1; |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 185 | } |
Miklos Szeredi | 51921cb | 2010-05-26 08:44:22 +0200 | [diff] [blame] | 186 | EXPORT_SYMBOL(generic_pipe_buf_steal); |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 187 | |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 188 | /** |
Randy Dunlap | b51d63c | 2008-02-13 15:03:22 -0800 | [diff] [blame] | 189 | * generic_pipe_buf_get - get a reference to a &struct pipe_buffer |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 190 | * @pipe: the pipe that the buffer belongs to |
| 191 | * @buf: the buffer to get a reference to |
| 192 | * |
| 193 | * Description: |
| 194 | * This function grabs an extra reference to @buf. It's used in |
| 195 | * in the tee() system call, when we duplicate the buffers in one |
| 196 | * pipe into another. |
| 197 | */ |
Matthew Wilcox | 15fab63 | 2019-04-05 14:02:10 -0700 | [diff] [blame] | 198 | bool generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf) |
Jens Axboe | 7052449 | 2006-04-11 15:51:17 +0200 | [diff] [blame] | 199 | { |
Matthew Wilcox | 15fab63 | 2019-04-05 14:02:10 -0700 | [diff] [blame] | 200 | return try_get_page(buf->page); |
Jens Axboe | 7052449 | 2006-04-11 15:51:17 +0200 | [diff] [blame] | 201 | } |
Miklos Szeredi | 51921cb | 2010-05-26 08:44:22 +0200 | [diff] [blame] | 202 | EXPORT_SYMBOL(generic_pipe_buf_get); |
Jens Axboe | 7052449 | 2006-04-11 15:51:17 +0200 | [diff] [blame] | 203 | |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 204 | /** |
| 205 | * generic_pipe_buf_confirm - verify contents of the pipe buffer |
Randy Dunlap | 79685b8 | 2007-07-27 08:08:51 +0200 | [diff] [blame] | 206 | * @info: the pipe that the buffer belongs to |
Jens Axboe | 0845718 | 2007-06-12 20:51:32 +0200 | [diff] [blame] | 207 | * @buf: the buffer to confirm |
| 208 | * |
| 209 | * Description: |
| 210 | * This function does nothing, because the generic pipe code uses |
| 211 | * pages that are always good when inserted into the pipe. |
| 212 | */ |
Jens Axboe | cac36bb0 | 2007-06-14 13:10:48 +0200 | [diff] [blame] | 213 | int generic_pipe_buf_confirm(struct pipe_inode_info *info, |
| 214 | struct pipe_buffer *buf) |
Jens Axboe | f84d751 | 2006-05-01 19:59:03 +0200 | [diff] [blame] | 215 | { |
| 216 | return 0; |
| 217 | } |
Miklos Szeredi | 51921cb | 2010-05-26 08:44:22 +0200 | [diff] [blame] | 218 | EXPORT_SYMBOL(generic_pipe_buf_confirm); |
Jens Axboe | f84d751 | 2006-05-01 19:59:03 +0200 | [diff] [blame] | 219 | |
Miklos Szeredi | 6818173 | 2009-05-07 15:37:36 +0200 | [diff] [blame] | 220 | /** |
| 221 | * generic_pipe_buf_release - put a reference to a &struct pipe_buffer |
| 222 | * @pipe: the pipe that the buffer belongs to |
| 223 | * @buf: the buffer to put a reference to |
| 224 | * |
| 225 | * Description: |
| 226 | * This function releases a reference to @buf. |
| 227 | */ |
| 228 | void generic_pipe_buf_release(struct pipe_inode_info *pipe, |
| 229 | struct pipe_buffer *buf) |
| 230 | { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 231 | put_page(buf->page); |
Miklos Szeredi | 6818173 | 2009-05-07 15:37:36 +0200 | [diff] [blame] | 232 | } |
Miklos Szeredi | 51921cb | 2010-05-26 08:44:22 +0200 | [diff] [blame] | 233 | EXPORT_SYMBOL(generic_pipe_buf_release); |
Miklos Szeredi | 6818173 | 2009-05-07 15:37:36 +0200 | [diff] [blame] | 234 | |
Jann Horn | 01e7187 | 2019-01-23 15:19:18 +0100 | [diff] [blame] | 235 | /* New data written to a pipe may be appended to a buffer with this type. */ |
Eric Dumazet | d4c3cca | 2006-12-13 00:34:04 -0800 | [diff] [blame] | 236 | static const struct pipe_buf_operations anon_pipe_buf_ops = { |
Jens Axboe | cac36bb0 | 2007-06-14 13:10:48 +0200 | [diff] [blame] | 237 | .confirm = generic_pipe_buf_confirm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | .release = anon_pipe_buf_release, |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 239 | .steal = anon_pipe_buf_steal, |
Jens Axboe | f84d751 | 2006-05-01 19:59:03 +0200 | [diff] [blame] | 240 | .get = generic_pipe_buf_get, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | }; |
| 242 | |
Jann Horn | a0ce2f0 | 2019-01-23 15:19:17 +0100 | [diff] [blame] | 243 | static const struct pipe_buf_operations anon_pipe_buf_nomerge_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | .confirm = generic_pipe_buf_confirm, |
| 245 | .release = anon_pipe_buf_release, |
| 246 | .steal = anon_pipe_buf_steal, |
| 247 | .get = generic_pipe_buf_get, |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 248 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Linus Torvalds | 9883035 | 2012-04-29 13:12:42 -0700 | [diff] [blame] | 250 | static const struct pipe_buf_operations packet_pipe_buf_ops = { |
Linus Torvalds | 9883035 | 2012-04-29 13:12:42 -0700 | [diff] [blame] | 251 | .confirm = generic_pipe_buf_confirm, |
| 252 | .release = anon_pipe_buf_release, |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 253 | .steal = anon_pipe_buf_steal, |
Linus Torvalds | 9883035 | 2012-04-29 13:12:42 -0700 | [diff] [blame] | 254 | .get = generic_pipe_buf_get, |
| 255 | }; |
| 256 | |
Jann Horn | 01e7187 | 2019-01-23 15:19:18 +0100 | [diff] [blame] | 257 | /** |
| 258 | * pipe_buf_mark_unmergeable - mark a &struct pipe_buffer as unmergeable |
| 259 | * @buf: the buffer to mark |
| 260 | * |
| 261 | * Description: |
| 262 | * This function ensures that no future writes will be merged into the |
| 263 | * given &struct pipe_buffer. This is necessary when multiple pipe buffers |
| 264 | * share the same backing page. |
| 265 | */ |
Jann Horn | a0ce2f0 | 2019-01-23 15:19:17 +0100 | [diff] [blame] | 266 | void pipe_buf_mark_unmergeable(struct pipe_buffer *buf) |
| 267 | { |
| 268 | if (buf->ops == &anon_pipe_buf_ops) |
| 269 | buf->ops = &anon_pipe_buf_nomerge_ops; |
| 270 | } |
| 271 | |
Jann Horn | 01e7187 | 2019-01-23 15:19:18 +0100 | [diff] [blame] | 272 | static bool pipe_buf_can_merge(struct pipe_buffer *buf) |
| 273 | { |
| 274 | return buf->ops == &anon_pipe_buf_ops; |
| 275 | } |
| 276 | |
Linus Torvalds | 85190d1 | 2019-12-07 13:53:09 -0800 | [diff] [blame] | 277 | /* Done while waiting without holding the pipe lock - thus the READ_ONCE() */ |
| 278 | static inline bool pipe_readable(const struct pipe_inode_info *pipe) |
| 279 | { |
| 280 | unsigned int head = READ_ONCE(pipe->head); |
| 281 | unsigned int tail = READ_ONCE(pipe->tail); |
| 282 | unsigned int writers = READ_ONCE(pipe->writers); |
| 283 | |
| 284 | return !pipe_empty(head, tail) || !writers; |
| 285 | } |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | static ssize_t |
Al Viro | fb9096a | 2014-04-02 19:56:54 -0400 | [diff] [blame] | 288 | pipe_read(struct kiocb *iocb, struct iov_iter *to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Al Viro | fb9096a | 2014-04-02 19:56:54 -0400 | [diff] [blame] | 290 | size_t total_len = iov_iter_count(to); |
Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 291 | struct file *filp = iocb->ki_filp; |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 292 | struct pipe_inode_info *pipe = filp->private_data; |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 293 | bool was_full, wake_next_reader = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | ssize_t ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | /* Null read succeeds. */ |
| 297 | if (unlikely(total_len == 0)) |
| 298 | return 0; |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | ret = 0; |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 301 | __pipe_lock(pipe); |
Linus Torvalds | f467a6a | 2019-12-07 12:54:26 -0800 | [diff] [blame] | 302 | |
| 303 | /* |
| 304 | * We only wake up writers if the pipe was full when we started |
| 305 | * reading in order to avoid unnecessary wakeups. |
| 306 | * |
| 307 | * But when we do wake up writers, we do so using a sync wakeup |
| 308 | * (WF_SYNC), because we want them to get going and generate more |
| 309 | * data for us. |
| 310 | */ |
| 311 | was_full = pipe_full(pipe->head, pipe->tail, pipe->max_usage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | for (;;) { |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 313 | unsigned int head = pipe->head; |
| 314 | unsigned int tail = pipe->tail; |
| 315 | unsigned int mask = pipe->ring_size - 1; |
| 316 | |
| 317 | if (!pipe_empty(head, tail)) { |
| 318 | struct pipe_buffer *buf = &pipe->bufs[tail & mask]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | size_t chars = buf->len; |
Al Viro | 637b58c | 2014-02-03 19:11:42 -0500 | [diff] [blame] | 320 | size_t written; |
| 321 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
David Howells | 8cfba76 | 2020-01-14 17:07:11 +0000 | [diff] [blame^] | 323 | if (chars > total_len) { |
| 324 | if (buf->flags & PIPE_BUF_FLAG_WHOLE) { |
| 325 | if (ret == 0) |
| 326 | ret = -ENOBUFS; |
| 327 | break; |
| 328 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | chars = total_len; |
David Howells | 8cfba76 | 2020-01-14 17:07:11 +0000 | [diff] [blame^] | 330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Miklos Szeredi | fba597d | 2016-09-27 10:45:12 +0200 | [diff] [blame] | 332 | error = pipe_buf_confirm(pipe, buf); |
Jens Axboe | f84d751 | 2006-05-01 19:59:03 +0200 | [diff] [blame] | 333 | if (error) { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 334 | if (!ret) |
Nicolas Kaiser | e5953cb | 2010-10-21 14:56:00 +0200 | [diff] [blame] | 335 | ret = error; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 336 | break; |
| 337 | } |
Jens Axboe | f84d751 | 2006-05-01 19:59:03 +0200 | [diff] [blame] | 338 | |
Al Viro | fb9096a | 2014-04-02 19:56:54 -0400 | [diff] [blame] | 339 | written = copy_page_to_iter(buf->page, buf->offset, chars, to); |
Al Viro | 637b58c | 2014-02-03 19:11:42 -0500 | [diff] [blame] | 340 | if (unlikely(written < chars)) { |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 341 | if (!ret) |
Al Viro | 637b58c | 2014-02-03 19:11:42 -0500 | [diff] [blame] | 342 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | break; |
| 344 | } |
| 345 | ret += chars; |
| 346 | buf->offset += chars; |
| 347 | buf->len -= chars; |
Linus Torvalds | 9883035 | 2012-04-29 13:12:42 -0700 | [diff] [blame] | 348 | |
| 349 | /* Was it a packet buffer? Clean up and exit */ |
| 350 | if (buf->flags & PIPE_BUF_FLAG_PACKET) { |
| 351 | total_len = chars; |
| 352 | buf->len = 0; |
| 353 | } |
| 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | if (!buf->len) { |
Miklos Szeredi | a779638 | 2016-09-27 10:45:12 +0200 | [diff] [blame] | 356 | pipe_buf_release(pipe, buf); |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 357 | spin_lock_irq(&pipe->rd_wait.lock); |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 358 | tail++; |
| 359 | pipe->tail = tail; |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 360 | spin_unlock_irq(&pipe->rd_wait.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
| 362 | total_len -= chars; |
| 363 | if (!total_len) |
| 364 | break; /* common path: read succeeded */ |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 365 | if (!pipe_empty(head, tail)) /* More to do? */ |
| 366 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 368 | |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 369 | if (!pipe->writers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | break; |
Linus Torvalds | a28c8b9 | 2019-12-07 13:21:01 -0800 | [diff] [blame] | 371 | if (ret) |
| 372 | break; |
| 373 | if (filp->f_flags & O_NONBLOCK) { |
| 374 | ret = -EAGAIN; |
| 375 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
Linus Torvalds | 85190d1 | 2019-12-07 13:53:09 -0800 | [diff] [blame] | 377 | __pipe_unlock(pipe); |
Linus Torvalds | d1c6a2a | 2019-12-11 11:46:19 -0800 | [diff] [blame] | 378 | |
| 379 | /* |
| 380 | * We only get here if we didn't actually read anything. |
| 381 | * |
| 382 | * However, we could have seen (and removed) a zero-sized |
| 383 | * pipe buffer, and might have made space in the buffers |
| 384 | * that way. |
| 385 | * |
| 386 | * You can't make zero-sized pipe buffers by doing an empty |
| 387 | * write (not even in packet mode), but they can happen if |
| 388 | * the writer gets an EFAULT when trying to fill a buffer |
| 389 | * that already got allocated and inserted in the buffer |
| 390 | * array. |
| 391 | * |
| 392 | * So we still need to wake up any pending writers in the |
| 393 | * _very_ unlikely case that the pipe was full, but we got |
| 394 | * no data. |
| 395 | */ |
| 396 | if (unlikely(was_full)) { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 397 | wake_up_interruptible_sync_poll(&pipe->wr_wait, EPOLLOUT | EPOLLWRNORM); |
Linus Torvalds | f467a6a | 2019-12-07 12:54:26 -0800 | [diff] [blame] | 398 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
| 399 | } |
Linus Torvalds | d1c6a2a | 2019-12-11 11:46:19 -0800 | [diff] [blame] | 400 | |
| 401 | /* |
| 402 | * But because we didn't read anything, at this point we can |
| 403 | * just return directly with -ERESTARTSYS if we're interrupted, |
| 404 | * since we've done any required wakeups and there's no need |
| 405 | * to mark anything accessed. And we've dropped the lock. |
| 406 | */ |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 407 | if (wait_event_interruptible_exclusive(pipe->rd_wait, pipe_readable(pipe)) < 0) |
Linus Torvalds | d1c6a2a | 2019-12-11 11:46:19 -0800 | [diff] [blame] | 408 | return -ERESTARTSYS; |
| 409 | |
Linus Torvalds | 85190d1 | 2019-12-07 13:53:09 -0800 | [diff] [blame] | 410 | __pipe_lock(pipe); |
Linus Torvalds | f467a6a | 2019-12-07 12:54:26 -0800 | [diff] [blame] | 411 | was_full = pipe_full(pipe->head, pipe->tail, pipe->max_usage); |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 412 | wake_next_reader = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 414 | if (pipe_empty(pipe->head, pipe->tail)) |
| 415 | wake_next_reader = false; |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 416 | __pipe_unlock(pipe); |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 417 | |
Linus Torvalds | f467a6a | 2019-12-07 12:54:26 -0800 | [diff] [blame] | 418 | if (was_full) { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 419 | wake_up_interruptible_sync_poll(&pipe->wr_wait, EPOLLOUT | EPOLLWRNORM); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 420 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 422 | if (wake_next_reader) |
| 423 | wake_up_interruptible_sync_poll(&pipe->rd_wait, EPOLLIN | EPOLLRDNORM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | if (ret > 0) |
| 425 | file_accessed(filp); |
| 426 | return ret; |
| 427 | } |
| 428 | |
Linus Torvalds | 9883035 | 2012-04-29 13:12:42 -0700 | [diff] [blame] | 429 | static inline int is_packetized(struct file *file) |
| 430 | { |
| 431 | return (file->f_flags & O_DIRECT) != 0; |
| 432 | } |
| 433 | |
Linus Torvalds | 85190d1 | 2019-12-07 13:53:09 -0800 | [diff] [blame] | 434 | /* Done while waiting without holding the pipe lock - thus the READ_ONCE() */ |
| 435 | static inline bool pipe_writable(const struct pipe_inode_info *pipe) |
| 436 | { |
| 437 | unsigned int head = READ_ONCE(pipe->head); |
| 438 | unsigned int tail = READ_ONCE(pipe->tail); |
| 439 | unsigned int max_usage = READ_ONCE(pipe->max_usage); |
| 440 | |
| 441 | return !pipe_full(head, tail, max_usage) || |
| 442 | !READ_ONCE(pipe->readers); |
| 443 | } |
| 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | static ssize_t |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 446 | pipe_write(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | { |
Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 448 | struct file *filp = iocb->ki_filp; |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 449 | struct pipe_inode_info *pipe = filp->private_data; |
David Howells | 8f868d6 | 2019-12-05 22:30:37 +0000 | [diff] [blame] | 450 | unsigned int head; |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 451 | ssize_t ret = 0; |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 452 | size_t total_len = iov_iter_count(from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | ssize_t chars; |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 454 | bool was_empty = false; |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 455 | bool wake_next_writer = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | /* Null write succeeds. */ |
| 458 | if (unlikely(total_len == 0)) |
| 459 | return 0; |
| 460 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 461 | __pipe_lock(pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 463 | if (!pipe->readers) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | send_sig(SIGPIPE, current, 0); |
| 465 | ret = -EPIPE; |
| 466 | goto out; |
| 467 | } |
| 468 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 469 | #ifdef CONFIG_WATCH_QUEUE |
| 470 | if (pipe->watch_queue) { |
| 471 | ret = -EXDEV; |
| 472 | goto out; |
| 473 | } |
| 474 | #endif |
| 475 | |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 476 | /* |
| 477 | * Only wake up if the pipe started out empty, since |
| 478 | * otherwise there should be no readers waiting. |
| 479 | * |
| 480 | * If it wasn't empty we try to merge new data into |
| 481 | * the last buffer. |
| 482 | * |
| 483 | * That naturally merges small writes, but it also |
| 484 | * page-aligs the rest of the writes for large writes |
| 485 | * spanning multiple pages. |
| 486 | */ |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 487 | head = pipe->head; |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 488 | was_empty = pipe_empty(head, pipe->tail); |
| 489 | chars = total_len & (PAGE_SIZE-1); |
| 490 | if (chars && !was_empty) { |
David Howells | 8f868d6 | 2019-12-05 22:30:37 +0000 | [diff] [blame] | 491 | unsigned int mask = pipe->ring_size - 1; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 492 | struct pipe_buffer *buf = &pipe->bufs[(head - 1) & mask]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | int offset = buf->offset + buf->len; |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 494 | |
Jann Horn | 01e7187 | 2019-01-23 15:19:18 +0100 | [diff] [blame] | 495 | if (pipe_buf_can_merge(buf) && offset + chars <= PAGE_SIZE) { |
Miklos Szeredi | fba597d | 2016-09-27 10:45:12 +0200 | [diff] [blame] | 496 | ret = pipe_buf_confirm(pipe, buf); |
Eric Biggers | 6ae0806 | 2015-10-17 16:26:09 -0500 | [diff] [blame] | 497 | if (ret) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 498 | goto out; |
Jens Axboe | f84d751 | 2006-05-01 19:59:03 +0200 | [diff] [blame] | 499 | |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 500 | ret = copy_page_from_iter(buf->page, offset, chars, from); |
| 501 | if (unlikely(ret < chars)) { |
Eric Biggers | 6ae0806 | 2015-10-17 16:26:09 -0500 | [diff] [blame] | 502 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | goto out; |
Jens Axboe | f6762b7 | 2006-05-01 20:02:05 +0200 | [diff] [blame] | 504 | } |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 505 | |
Eric Biggers | 6ae0806 | 2015-10-17 16:26:09 -0500 | [diff] [blame] | 506 | buf->len += ret; |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 507 | if (!iov_iter_count(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | goto out; |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | for (;;) { |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 513 | if (!pipe->readers) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | send_sig(SIGPIPE, current, 0); |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 515 | if (!ret) |
| 516 | ret = -EPIPE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | break; |
| 518 | } |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 519 | |
David Howells | a194dfe | 2019-09-20 16:32:19 +0100 | [diff] [blame] | 520 | head = pipe->head; |
David Howells | 8f868d6 | 2019-12-05 22:30:37 +0000 | [diff] [blame] | 521 | if (!pipe_full(head, pipe->tail, pipe->max_usage)) { |
| 522 | unsigned int mask = pipe->ring_size - 1; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 523 | struct pipe_buffer *buf = &pipe->bufs[head & mask]; |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 524 | struct page *page = pipe->tmp_page; |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 525 | int copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | if (!page) { |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 528 | page = alloc_page(GFP_HIGHUSER | __GFP_ACCOUNT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | if (unlikely(!page)) { |
| 530 | ret = ret ? : -ENOMEM; |
| 531 | break; |
| 532 | } |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 533 | pipe->tmp_page = page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
David Howells | a194dfe | 2019-09-20 16:32:19 +0100 | [diff] [blame] | 535 | |
| 536 | /* Allocate a slot in the ring in advance and attach an |
| 537 | * empty buffer. If we fault or otherwise fail to use |
| 538 | * it, either the reader will consume it or it'll still |
| 539 | * be there for the next write. |
| 540 | */ |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 541 | spin_lock_irq(&pipe->rd_wait.lock); |
David Howells | a194dfe | 2019-09-20 16:32:19 +0100 | [diff] [blame] | 542 | |
| 543 | head = pipe->head; |
David Howells | 8f868d6 | 2019-12-05 22:30:37 +0000 | [diff] [blame] | 544 | if (pipe_full(head, pipe->tail, pipe->max_usage)) { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 545 | spin_unlock_irq(&pipe->rd_wait.lock); |
David Howells | 8df4412 | 2019-10-07 16:30:51 +0100 | [diff] [blame] | 546 | continue; |
| 547 | } |
| 548 | |
David Howells | a194dfe | 2019-09-20 16:32:19 +0100 | [diff] [blame] | 549 | pipe->head = head + 1; |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 550 | spin_unlock_irq(&pipe->rd_wait.lock); |
David Howells | a194dfe | 2019-09-20 16:32:19 +0100 | [diff] [blame] | 551 | |
| 552 | /* Insert it into the buffer array */ |
| 553 | buf = &pipe->bufs[head & mask]; |
| 554 | buf->page = page; |
| 555 | buf->ops = &anon_pipe_buf_ops; |
| 556 | buf->offset = 0; |
| 557 | buf->len = 0; |
| 558 | buf->flags = 0; |
| 559 | if (is_packetized(filp)) { |
| 560 | buf->ops = &packet_pipe_buf_ops; |
| 561 | buf->flags = PIPE_BUF_FLAG_PACKET; |
| 562 | } |
| 563 | pipe->tmp_page = NULL; |
| 564 | |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 565 | copied = copy_page_from_iter(page, 0, PAGE_SIZE, from); |
| 566 | if (unlikely(copied < PAGE_SIZE && iov_iter_count(from))) { |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 567 | if (!ret) |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 568 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | break; |
| 570 | } |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 571 | ret += copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | buf->offset = 0; |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 573 | buf->len = copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 575 | if (!iov_iter_count(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | break; |
| 577 | } |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 578 | |
David Howells | 8f868d6 | 2019-12-05 22:30:37 +0000 | [diff] [blame] | 579 | if (!pipe_full(head, pipe->tail, pipe->max_usage)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | continue; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 581 | |
| 582 | /* Wait for buffer space to become available. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if (filp->f_flags & O_NONBLOCK) { |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 584 | if (!ret) |
| 585 | ret = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | break; |
| 587 | } |
| 588 | if (signal_pending(current)) { |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 589 | if (!ret) |
| 590 | ret = -ERESTARTSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | break; |
| 592 | } |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 593 | |
| 594 | /* |
| 595 | * We're going to release the pipe lock and wait for more |
| 596 | * space. We wake up any readers if necessary, and then |
| 597 | * after waiting we need to re-check whether the pipe |
| 598 | * become empty while we dropped the lock. |
| 599 | */ |
Linus Torvalds | 85190d1 | 2019-12-07 13:53:09 -0800 | [diff] [blame] | 600 | __pipe_unlock(pipe); |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 601 | if (was_empty) { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 602 | wake_up_interruptible_sync_poll(&pipe->rd_wait, EPOLLIN | EPOLLRDNORM); |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 603 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
| 604 | } |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 605 | wait_event_interruptible_exclusive(pipe->wr_wait, pipe_writable(pipe)); |
Linus Torvalds | 85190d1 | 2019-12-07 13:53:09 -0800 | [diff] [blame] | 606 | __pipe_lock(pipe); |
Jan Stancek | 0dd1e37 | 2019-12-22 13:33:24 +0100 | [diff] [blame] | 607 | was_empty = pipe_empty(pipe->head, pipe->tail); |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 608 | wake_next_writer = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | out: |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 611 | if (pipe_full(pipe->head, pipe->tail, pipe->max_usage)) |
| 612 | wake_next_writer = false; |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 613 | __pipe_unlock(pipe); |
Linus Torvalds | 1b6b26a | 2019-12-07 12:14:28 -0800 | [diff] [blame] | 614 | |
| 615 | /* |
| 616 | * If we do do a wakeup event, we do a 'sync' wakeup, because we |
| 617 | * want the reader to start processing things asap, rather than |
| 618 | * leave the data pending. |
| 619 | * |
| 620 | * This is particularly important for small writes, because of |
| 621 | * how (for example) the GNU make jobserver uses small writes to |
| 622 | * wake up pending jobs |
| 623 | */ |
| 624 | if (was_empty) { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 625 | wake_up_interruptible_sync_poll(&pipe->rd_wait, EPOLLIN | EPOLLRDNORM); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 626 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 628 | if (wake_next_writer) |
| 629 | wake_up_interruptible_sync_poll(&pipe->wr_wait, EPOLLOUT | EPOLLWRNORM); |
Dmitry Monakhov | 7e775f4 | 2014-01-23 15:55:21 -0800 | [diff] [blame] | 630 | if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) { |
Josef Bacik | c3b2da3 | 2012-03-26 09:59:21 -0400 | [diff] [blame] | 631 | int err = file_update_time(filp); |
| 632 | if (err) |
| 633 | ret = err; |
Dmitry Monakhov | 7e775f4 | 2014-01-23 15:55:21 -0800 | [diff] [blame] | 634 | sb_end_write(file_inode(filp)->i_sb); |
Josef Bacik | c3b2da3 | 2012-03-26 09:59:21 -0400 | [diff] [blame] | 635 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | return ret; |
| 637 | } |
| 638 | |
Andi Kleen | d59d0b1 | 2008-02-08 04:21:23 -0800 | [diff] [blame] | 639 | static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | { |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 641 | struct pipe_inode_info *pipe = filp->private_data; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 642 | int count, head, tail, mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
| 644 | switch (cmd) { |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 645 | case FIONREAD: |
| 646 | __pipe_lock(pipe); |
| 647 | count = 0; |
| 648 | head = pipe->head; |
| 649 | tail = pipe->tail; |
| 650 | mask = pipe->ring_size - 1; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 651 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 652 | while (tail != head) { |
| 653 | count += pipe->bufs[tail & mask].len; |
| 654 | tail++; |
| 655 | } |
| 656 | __pipe_unlock(pipe); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 657 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 658 | return put_user(count, (int __user *)arg); |
| 659 | |
| 660 | #ifdef CONFIG_WATCH_QUEUE |
| 661 | case IOC_WATCH_QUEUE_SET_SIZE: { |
| 662 | int ret; |
| 663 | __pipe_lock(pipe); |
| 664 | ret = watch_queue_set_size(pipe, arg); |
| 665 | __pipe_unlock(pipe); |
| 666 | return ret; |
| 667 | } |
| 668 | |
| 669 | case IOC_WATCH_QUEUE_SET_FILTER: |
| 670 | return watch_queue_set_filter( |
| 671 | pipe, (struct watch_notification_filter __user *)arg); |
| 672 | #endif |
| 673 | |
| 674 | default: |
| 675 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | } |
| 677 | } |
| 678 | |
Christoph Hellwig | dd67081 | 2017-12-31 16:42:12 +0100 | [diff] [blame] | 679 | /* No kernel lock held - fine */ |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 680 | static __poll_t |
| 681 | pipe_poll(struct file *filp, poll_table *wait) |
Christoph Hellwig | dd67081 | 2017-12-31 16:42:12 +0100 | [diff] [blame] | 682 | { |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 683 | __poll_t mask; |
Christoph Hellwig | dd67081 | 2017-12-31 16:42:12 +0100 | [diff] [blame] | 684 | struct pipe_inode_info *pipe = filp->private_data; |
Linus Torvalds | ad910e3 | 2019-12-07 10:41:17 -0800 | [diff] [blame] | 685 | unsigned int head, tail; |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 686 | |
Linus Torvalds | ad910e3 | 2019-12-07 10:41:17 -0800 | [diff] [blame] | 687 | /* |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 688 | * Reading pipe state only -- no need for acquiring the semaphore. |
Linus Torvalds | ad910e3 | 2019-12-07 10:41:17 -0800 | [diff] [blame] | 689 | * |
| 690 | * But because this is racy, the code has to add the |
| 691 | * entry to the poll table _first_ .. |
| 692 | */ |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 693 | if (filp->f_mode & FMODE_READ) |
| 694 | poll_wait(filp, &pipe->rd_wait, wait); |
| 695 | if (filp->f_mode & FMODE_WRITE) |
| 696 | poll_wait(filp, &pipe->wr_wait, wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Linus Torvalds | ad910e3 | 2019-12-07 10:41:17 -0800 | [diff] [blame] | 698 | /* |
| 699 | * .. and only then can you do the racy tests. That way, |
| 700 | * if something changes and you got it wrong, the poll |
| 701 | * table entry will wake you up and fix it. |
| 702 | */ |
| 703 | head = READ_ONCE(pipe->head); |
| 704 | tail = READ_ONCE(pipe->tail); |
| 705 | |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 706 | mask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | if (filp->f_mode & FMODE_READ) { |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 708 | if (!pipe_empty(head, tail)) |
| 709 | mask |= EPOLLIN | EPOLLRDNORM; |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 710 | if (!pipe->writers && filp->f_version != pipe->w_counter) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 711 | mask |= EPOLLHUP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | if (filp->f_mode & FMODE_WRITE) { |
David Howells | 6718b6f | 2019-10-16 16:47:32 +0100 | [diff] [blame] | 715 | if (!pipe_full(head, tail, pipe->max_usage)) |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 716 | mask |= EPOLLOUT | EPOLLWRNORM; |
Pekka Enberg | 5e5d7a2 | 2005-09-06 15:17:48 -0700 | [diff] [blame] | 717 | /* |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 718 | * Most Unices do not set EPOLLERR for FIFOs but on Linux they |
Pekka Enberg | 5e5d7a2 | 2005-09-06 15:17:48 -0700 | [diff] [blame] | 719 | * behave exactly like pipes for poll(). |
| 720 | */ |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 721 | if (!pipe->readers) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 722 | mask |= EPOLLERR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | } |
| 724 | |
| 725 | return mask; |
| 726 | } |
| 727 | |
Linus Torvalds | b0d8d22 | 2013-12-02 09:44:51 -0800 | [diff] [blame] | 728 | static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe) |
| 729 | { |
| 730 | int kill = 0; |
| 731 | |
| 732 | spin_lock(&inode->i_lock); |
| 733 | if (!--pipe->files) { |
| 734 | inode->i_pipe = NULL; |
| 735 | kill = 1; |
| 736 | } |
| 737 | spin_unlock(&inode->i_lock); |
| 738 | |
| 739 | if (kill) |
| 740 | free_pipe_info(pipe); |
| 741 | } |
| 742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | static int |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 744 | pipe_release(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | { |
Linus Torvalds | b0d8d22 | 2013-12-02 09:44:51 -0800 | [diff] [blame] | 746 | struct pipe_inode_info *pipe = file->private_data; |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 747 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 748 | __pipe_lock(pipe); |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 749 | if (file->f_mode & FMODE_READ) |
| 750 | pipe->readers--; |
| 751 | if (file->f_mode & FMODE_WRITE) |
| 752 | pipe->writers--; |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 753 | |
Linus Torvalds | 6551d5c | 2020-02-18 10:12:58 -0800 | [diff] [blame] | 754 | /* Was that the last reader or writer, but not the other side? */ |
| 755 | if (!pipe->readers != !pipe->writers) { |
| 756 | wake_up_interruptible_all(&pipe->rd_wait); |
| 757 | wake_up_interruptible_all(&pipe->wr_wait); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 758 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
| 759 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 761 | __pipe_unlock(pipe); |
Al Viro | ba5bb14 | 2013-03-21 02:21:19 -0400 | [diff] [blame] | 762 | |
Linus Torvalds | b0d8d22 | 2013-12-02 09:44:51 -0800 | [diff] [blame] | 763 | put_pipe_info(inode, pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | return 0; |
| 765 | } |
| 766 | |
| 767 | static int |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 768 | pipe_fasync(int fd, struct file *filp, int on) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 770 | struct pipe_inode_info *pipe = filp->private_data; |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 771 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 773 | __pipe_lock(pipe); |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 774 | if (filp->f_mode & FMODE_READ) |
| 775 | retval = fasync_helper(fd, filp, on, &pipe->fasync_readers); |
| 776 | if ((filp->f_mode & FMODE_WRITE) && retval >= 0) { |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 777 | retval = fasync_helper(fd, filp, on, &pipe->fasync_writers); |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 778 | if (retval < 0 && (filp->f_mode & FMODE_READ)) |
| 779 | /* this can happen only if on == T */ |
Oleg Nesterov | e5bc49b | 2009-03-12 14:31:28 -0700 | [diff] [blame] | 780 | fasync_helper(-1, filp, 0, &pipe->fasync_readers); |
| 781 | } |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 782 | __pipe_unlock(pipe); |
Jonathan Corbet | 60aa492 | 2009-02-01 14:52:56 -0700 | [diff] [blame] | 783 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 786 | unsigned long account_pipe_buffers(struct user_struct *user, |
| 787 | unsigned long old, unsigned long new) |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 788 | { |
Michael Kerrisk (man-pages) | 9c87bcf | 2016-10-11 13:53:40 -0700 | [diff] [blame] | 789 | return atomic_long_add_return(new - old, &user->pipe_bufs); |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 790 | } |
| 791 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 792 | bool too_many_pipe_buffers_soft(unsigned long user_bufs) |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 793 | { |
Eric Biggers | f734076 | 2018-02-06 15:42:08 -0800 | [diff] [blame] | 794 | unsigned long soft_limit = READ_ONCE(pipe_user_pages_soft); |
| 795 | |
| 796 | return soft_limit && user_bufs > soft_limit; |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 797 | } |
| 798 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 799 | bool too_many_pipe_buffers_hard(unsigned long user_bufs) |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 800 | { |
Eric Biggers | f734076 | 2018-02-06 15:42:08 -0800 | [diff] [blame] | 801 | unsigned long hard_limit = READ_ONCE(pipe_user_pages_hard); |
| 802 | |
| 803 | return hard_limit && user_bufs > hard_limit; |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 804 | } |
| 805 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 806 | bool pipe_is_unprivileged_user(void) |
Eric Biggers | 85c2dd5 | 2018-02-06 15:41:53 -0800 | [diff] [blame] | 807 | { |
| 808 | return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN); |
| 809 | } |
| 810 | |
Al Viro | 7bee130 | 2013-03-21 11:04:15 -0400 | [diff] [blame] | 811 | struct pipe_inode_info *alloc_pipe_info(void) |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 812 | { |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 813 | struct pipe_inode_info *pipe; |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 814 | unsigned long pipe_bufs = PIPE_DEF_BUFFERS; |
| 815 | struct user_struct *user = get_current_user(); |
Michael Kerrisk (man-pages) | 9c87bcf | 2016-10-11 13:53:40 -0700 | [diff] [blame] | 816 | unsigned long user_bufs; |
Eric Biggers | f734076 | 2018-02-06 15:42:08 -0800 | [diff] [blame] | 817 | unsigned int max_size = READ_ONCE(pipe_max_size); |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 818 | |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 819 | pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL_ACCOUNT); |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 820 | if (pipe == NULL) |
| 821 | goto out_free_uid; |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 822 | |
Eric Biggers | f734076 | 2018-02-06 15:42:08 -0800 | [diff] [blame] | 823 | if (pipe_bufs * PAGE_SIZE > max_size && !capable(CAP_SYS_RESOURCE)) |
| 824 | pipe_bufs = max_size >> PAGE_SHIFT; |
Michael Kerrisk (man-pages) | 086e774 | 2016-10-11 13:53:43 -0700 | [diff] [blame] | 825 | |
Michael Kerrisk (man-pages) | 9c87bcf | 2016-10-11 13:53:40 -0700 | [diff] [blame] | 826 | user_bufs = account_pipe_buffers(user, 0, pipe_bufs); |
Michael Kerrisk (man-pages) | a005ca0 | 2016-10-11 13:53:37 -0700 | [diff] [blame] | 827 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 828 | if (too_many_pipe_buffers_soft(user_bufs) && pipe_is_unprivileged_user()) { |
Michael Kerrisk (man-pages) | 9c87bcf | 2016-10-11 13:53:40 -0700 | [diff] [blame] | 829 | user_bufs = account_pipe_buffers(user, pipe_bufs, 1); |
Michael Kerrisk (man-pages) | a005ca0 | 2016-10-11 13:53:37 -0700 | [diff] [blame] | 830 | pipe_bufs = 1; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 831 | } |
| 832 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 833 | if (too_many_pipe_buffers_hard(user_bufs) && pipe_is_unprivileged_user()) |
Michael Kerrisk (man-pages) | a005ca0 | 2016-10-11 13:53:37 -0700 | [diff] [blame] | 834 | goto out_revert_acct; |
| 835 | |
| 836 | pipe->bufs = kcalloc(pipe_bufs, sizeof(struct pipe_buffer), |
| 837 | GFP_KERNEL_ACCOUNT); |
| 838 | |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 839 | if (pipe->bufs) { |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 840 | init_waitqueue_head(&pipe->rd_wait); |
| 841 | init_waitqueue_head(&pipe->wr_wait); |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 842 | pipe->r_counter = pipe->w_counter = 1; |
David Howells | 6718b6f | 2019-10-16 16:47:32 +0100 | [diff] [blame] | 843 | pipe->max_usage = pipe_bufs; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 844 | pipe->ring_size = pipe_bufs; |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 845 | pipe->nr_accounted = pipe_bufs; |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 846 | pipe->user = user; |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 847 | mutex_init(&pipe->mutex); |
| 848 | return pipe; |
| 849 | } |
| 850 | |
Michael Kerrisk (man-pages) | a005ca0 | 2016-10-11 13:53:37 -0700 | [diff] [blame] | 851 | out_revert_acct: |
Michael Kerrisk (man-pages) | 9c87bcf | 2016-10-11 13:53:40 -0700 | [diff] [blame] | 852 | (void) account_pipe_buffers(user, pipe_bufs, 0); |
Michael Kerrisk (man-pages) | 09b4d19 | 2016-10-11 13:53:34 -0700 | [diff] [blame] | 853 | kfree(pipe); |
| 854 | out_free_uid: |
| 855 | free_uid(user); |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 856 | return NULL; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 857 | } |
| 858 | |
Al Viro | 4b8a8f1 | 2013-03-21 11:06:46 -0400 | [diff] [blame] | 859 | void free_pipe_info(struct pipe_inode_info *pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | { |
| 861 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 863 | #ifdef CONFIG_WATCH_QUEUE |
| 864 | if (pipe->watch_queue) { |
| 865 | watch_queue_clear(pipe->watch_queue); |
| 866 | put_watch_queue(pipe->watch_queue); |
| 867 | } |
| 868 | #endif |
| 869 | |
| 870 | (void) account_pipe_buffers(pipe->user, pipe->nr_accounted, 0); |
Willy Tarreau | 759c011 | 2016-01-18 16:36:09 +0100 | [diff] [blame] | 871 | free_uid(pipe->user); |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 872 | for (i = 0; i < pipe->ring_size; i++) { |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 873 | struct pipe_buffer *buf = pipe->bufs + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | if (buf->ops) |
Miklos Szeredi | a779638 | 2016-09-27 10:45:12 +0200 | [diff] [blame] | 875 | pipe_buf_release(pipe, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 877 | if (pipe->tmp_page) |
| 878 | __free_page(pipe->tmp_page); |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 879 | kfree(pipe->bufs); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 880 | kfree(pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | } |
| 882 | |
Eric Dumazet | fa3536c | 2006-03-26 01:37:24 -0800 | [diff] [blame] | 883 | static struct vfsmount *pipe_mnt __read_mostly; |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 884 | |
Eric Dumazet | c23fbb6 | 2007-05-08 00:26:18 -0700 | [diff] [blame] | 885 | /* |
| 886 | * pipefs_dname() is called from d_path(). |
| 887 | */ |
| 888 | static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen) |
| 889 | { |
| 890 | return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]", |
David Howells | 75c3cfa | 2015-03-17 22:26:12 +0000 | [diff] [blame] | 891 | d_inode(dentry)->i_ino); |
Eric Dumazet | c23fbb6 | 2007-05-08 00:26:18 -0700 | [diff] [blame] | 892 | } |
| 893 | |
Al Viro | 3ba13d1 | 2009-02-20 06:02:22 +0000 | [diff] [blame] | 894 | static const struct dentry_operations pipefs_dentry_operations = { |
Eric Dumazet | c23fbb6 | 2007-05-08 00:26:18 -0700 | [diff] [blame] | 895 | .d_dname = pipefs_dname, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | }; |
| 897 | |
| 898 | static struct inode * get_pipe_inode(void) |
| 899 | { |
Eric Dumazet | a209dfc | 2011-07-26 11:36:34 +0200 | [diff] [blame] | 900 | struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 901 | struct pipe_inode_info *pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | |
| 903 | if (!inode) |
| 904 | goto fail_inode; |
| 905 | |
Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 906 | inode->i_ino = get_next_ino(); |
| 907 | |
Al Viro | 7bee130 | 2013-03-21 11:04:15 -0400 | [diff] [blame] | 908 | pipe = alloc_pipe_info(); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 909 | if (!pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | goto fail_iput; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 911 | |
Al Viro | ba5bb14 | 2013-03-21 02:21:19 -0400 | [diff] [blame] | 912 | inode->i_pipe = pipe; |
| 913 | pipe->files = 2; |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 914 | pipe->readers = pipe->writers = 1; |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 915 | inode->i_fop = &pipefifo_fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
| 917 | /* |
| 918 | * Mark the inode dirty from the very beginning, |
| 919 | * that way it will never be moved to the dirty |
| 920 | * list because "mark_inode_dirty()" will think |
| 921 | * that it already _is_ on the dirty list. |
| 922 | */ |
| 923 | inode->i_state = I_DIRTY; |
| 924 | inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 925 | inode->i_uid = current_fsuid(); |
| 926 | inode->i_gid = current_fsgid(); |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 927 | inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); |
Ingo Molnar | 923f4f2 | 2006-04-11 13:53:33 +0200 | [diff] [blame] | 928 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return inode; |
| 930 | |
| 931 | fail_iput: |
| 932 | iput(inode); |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 933 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | fail_inode: |
| 935 | return NULL; |
| 936 | } |
| 937 | |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 938 | int create_pipe_files(struct file **res, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | { |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 940 | struct inode *inode = get_pipe_inode(); |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 941 | struct file *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | if (!inode) |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 944 | return -ENFILE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 946 | if (flags & O_NOTIFICATION_PIPE) { |
| 947 | #ifdef CONFIG_WATCH_QUEUE |
| 948 | if (watch_queue_init(inode->i_pipe) < 0) { |
| 949 | iput(inode); |
| 950 | return -ENOMEM; |
| 951 | } |
| 952 | #else |
| 953 | return -ENOPKG; |
| 954 | #endif |
| 955 | } |
| 956 | |
Al Viro | 152b637 | 2018-06-09 10:05:18 -0400 | [diff] [blame] | 957 | f = alloc_file_pseudo(inode, pipe_mnt, "", |
| 958 | O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT)), |
| 959 | &pipefifo_fops); |
Eric Biggers | e9bb1f9 | 2015-10-17 16:26:08 -0500 | [diff] [blame] | 960 | if (IS_ERR(f)) { |
Al Viro | 152b637 | 2018-06-09 10:05:18 -0400 | [diff] [blame] | 961 | free_pipe_info(inode->i_pipe); |
| 962 | iput(inode); |
| 963 | return PTR_ERR(f); |
Eric Biggers | e9bb1f9 | 2015-10-17 16:26:08 -0500 | [diff] [blame] | 964 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 966 | f->private_data = inode->i_pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Al Viro | 183266f | 2018-06-17 14:15:10 -0400 | [diff] [blame] | 968 | res[0] = alloc_file_clone(f, O_RDONLY | (flags & O_NONBLOCK), |
| 969 | &pipefifo_fops); |
Eric Biggers | e9bb1f9 | 2015-10-17 16:26:08 -0500 | [diff] [blame] | 970 | if (IS_ERR(res[0])) { |
Al Viro | b10a4a9 | 2018-07-09 02:29:58 -0400 | [diff] [blame] | 971 | put_pipe_info(inode, inode->i_pipe); |
| 972 | fput(f); |
| 973 | return PTR_ERR(res[0]); |
Eric Biggers | e9bb1f9 | 2015-10-17 16:26:08 -0500 | [diff] [blame] | 974 | } |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 975 | res[0]->private_data = inode->i_pipe; |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 976 | res[1] = f; |
Linus Torvalds | d8e464e | 2019-11-17 11:20:48 -0800 | [diff] [blame] | 977 | stream_open(inode, res[0]); |
| 978 | stream_open(inode, res[1]); |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 979 | return 0; |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 980 | } |
| 981 | |
Al Viro | 5b249b1 | 2012-08-19 12:17:29 -0400 | [diff] [blame] | 982 | static int __do_pipe_flags(int *fd, struct file **files, int flags) |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 983 | { |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 984 | int error; |
| 985 | int fdw, fdr; |
| 986 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 987 | if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT | O_NOTIFICATION_PIPE)) |
Ulrich Drepper | ed8cae8 | 2008-07-23 21:29:30 -0700 | [diff] [blame] | 988 | return -EINVAL; |
| 989 | |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 990 | error = create_pipe_files(files, flags); |
| 991 | if (error) |
| 992 | return error; |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 993 | |
Ulrich Drepper | ed8cae8 | 2008-07-23 21:29:30 -0700 | [diff] [blame] | 994 | error = get_unused_fd_flags(flags); |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 995 | if (error < 0) |
| 996 | goto err_read_pipe; |
| 997 | fdr = error; |
| 998 | |
Ulrich Drepper | ed8cae8 | 2008-07-23 21:29:30 -0700 | [diff] [blame] | 999 | error = get_unused_fd_flags(flags); |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 1000 | if (error < 0) |
| 1001 | goto err_fdr; |
| 1002 | fdw = error; |
| 1003 | |
Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 1004 | audit_fd_pair(fdr, fdw); |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 1005 | fd[0] = fdr; |
| 1006 | fd[1] = fdw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | return 0; |
| 1008 | |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 1009 | err_fdr: |
| 1010 | put_unused_fd(fdr); |
| 1011 | err_read_pipe: |
Al Viro | e4fad8e | 2012-07-21 15:33:25 +0400 | [diff] [blame] | 1012 | fput(files[0]); |
| 1013 | fput(files[1]); |
Andi Kleen | d6cbd28 | 2006-09-30 23:29:26 -0700 | [diff] [blame] | 1014 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
Al Viro | 5b249b1 | 2012-08-19 12:17:29 -0400 | [diff] [blame] | 1017 | int do_pipe_flags(int *fd, int flags) |
| 1018 | { |
| 1019 | struct file *files[2]; |
| 1020 | int error = __do_pipe_flags(fd, files, flags); |
| 1021 | if (!error) { |
| 1022 | fd_install(fd[0], files[0]); |
| 1023 | fd_install(fd[1], files[1]); |
| 1024 | } |
| 1025 | return error; |
| 1026 | } |
| 1027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | /* |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1029 | * sys_pipe() is the normal C calling standard for creating |
| 1030 | * a pipe. It's not the way Unix traditionally does this, though. |
| 1031 | */ |
Dominik Brodowski | 0a216dd | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 1032 | static int do_pipe2(int __user *fildes, int flags) |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1033 | { |
Al Viro | 5b249b1 | 2012-08-19 12:17:29 -0400 | [diff] [blame] | 1034 | struct file *files[2]; |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1035 | int fd[2]; |
| 1036 | int error; |
| 1037 | |
Al Viro | 5b249b1 | 2012-08-19 12:17:29 -0400 | [diff] [blame] | 1038 | error = __do_pipe_flags(fd, files, flags); |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1039 | if (!error) { |
Al Viro | 5b249b1 | 2012-08-19 12:17:29 -0400 | [diff] [blame] | 1040 | if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) { |
| 1041 | fput(files[0]); |
| 1042 | fput(files[1]); |
| 1043 | put_unused_fd(fd[0]); |
| 1044 | put_unused_fd(fd[1]); |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1045 | error = -EFAULT; |
Al Viro | 5b249b1 | 2012-08-19 12:17:29 -0400 | [diff] [blame] | 1046 | } else { |
| 1047 | fd_install(fd[0], files[0]); |
| 1048 | fd_install(fd[1], files[1]); |
Ulrich Drepper | ba719ba | 2008-05-06 20:42:38 -0700 | [diff] [blame] | 1049 | } |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1050 | } |
| 1051 | return error; |
| 1052 | } |
| 1053 | |
Dominik Brodowski | 0a216dd | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 1054 | SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags) |
| 1055 | { |
| 1056 | return do_pipe2(fildes, flags); |
| 1057 | } |
| 1058 | |
Heiko Carstens | 2b66421 | 2009-01-14 14:14:35 +0100 | [diff] [blame] | 1059 | SYSCALL_DEFINE1(pipe, int __user *, fildes) |
Ulrich Drepper | ed8cae8 | 2008-07-23 21:29:30 -0700 | [diff] [blame] | 1060 | { |
Dominik Brodowski | 0a216dd | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 1061 | return do_pipe2(fildes, 0); |
Ulrich Drepper | ed8cae8 | 2008-07-23 21:29:30 -0700 | [diff] [blame] | 1062 | } |
| 1063 | |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1064 | static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt) |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1065 | { |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1066 | int cur = *cnt; |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1067 | |
| 1068 | while (cur == *cnt) { |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1069 | pipe_wait(pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1070 | if (signal_pending(current)) |
| 1071 | break; |
| 1072 | } |
| 1073 | return cur == *cnt ? -ERESTARTSYS : 0; |
| 1074 | } |
| 1075 | |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1076 | static void wake_up_partner(struct pipe_inode_info *pipe) |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1077 | { |
Linus Torvalds | 6551d5c | 2020-02-18 10:12:58 -0800 | [diff] [blame] | 1078 | wake_up_interruptible_all(&pipe->rd_wait); |
| 1079 | wake_up_interruptible_all(&pipe->wr_wait); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | static int fifo_open(struct inode *inode, struct file *filp) |
| 1083 | { |
| 1084 | struct pipe_inode_info *pipe; |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 1085 | bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC; |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1086 | int ret; |
| 1087 | |
Al Viro | ba5bb14 | 2013-03-21 02:21:19 -0400 | [diff] [blame] | 1088 | filp->f_version = 0; |
| 1089 | |
| 1090 | spin_lock(&inode->i_lock); |
| 1091 | if (inode->i_pipe) { |
| 1092 | pipe = inode->i_pipe; |
| 1093 | pipe->files++; |
| 1094 | spin_unlock(&inode->i_lock); |
| 1095 | } else { |
| 1096 | spin_unlock(&inode->i_lock); |
Al Viro | 7bee130 | 2013-03-21 11:04:15 -0400 | [diff] [blame] | 1097 | pipe = alloc_pipe_info(); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1098 | if (!pipe) |
Al Viro | ba5bb14 | 2013-03-21 02:21:19 -0400 | [diff] [blame] | 1099 | return -ENOMEM; |
| 1100 | pipe->files = 1; |
| 1101 | spin_lock(&inode->i_lock); |
| 1102 | if (unlikely(inode->i_pipe)) { |
| 1103 | inode->i_pipe->files++; |
| 1104 | spin_unlock(&inode->i_lock); |
Al Viro | 4b8a8f1 | 2013-03-21 11:06:46 -0400 | [diff] [blame] | 1105 | free_pipe_info(pipe); |
Al Viro | ba5bb14 | 2013-03-21 02:21:19 -0400 | [diff] [blame] | 1106 | pipe = inode->i_pipe; |
| 1107 | } else { |
| 1108 | inode->i_pipe = pipe; |
| 1109 | spin_unlock(&inode->i_lock); |
| 1110 | } |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1111 | } |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 1112 | filp->private_data = pipe; |
Al Viro | ba5bb14 | 2013-03-21 02:21:19 -0400 | [diff] [blame] | 1113 | /* OK, we have a pipe and it's pinned down */ |
| 1114 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 1115 | __pipe_lock(pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1116 | |
| 1117 | /* We can only do regular read/write on fifos */ |
Linus Torvalds | d8e464e | 2019-11-17 11:20:48 -0800 | [diff] [blame] | 1118 | stream_open(inode, filp); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1119 | |
Linus Torvalds | d8e464e | 2019-11-17 11:20:48 -0800 | [diff] [blame] | 1120 | switch (filp->f_mode & (FMODE_READ | FMODE_WRITE)) { |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1121 | case FMODE_READ: |
| 1122 | /* |
| 1123 | * O_RDONLY |
| 1124 | * POSIX.1 says that O_NONBLOCK means return with the FIFO |
| 1125 | * opened, even when there is no process writing the FIFO. |
| 1126 | */ |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1127 | pipe->r_counter++; |
| 1128 | if (pipe->readers++ == 0) |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1129 | wake_up_partner(pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1130 | |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 1131 | if (!is_pipe && !pipe->writers) { |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1132 | if ((filp->f_flags & O_NONBLOCK)) { |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 1133 | /* suppress EPOLLHUP until we have |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1134 | * seen a writer */ |
| 1135 | filp->f_version = pipe->w_counter; |
| 1136 | } else { |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1137 | if (wait_for_partner(pipe, &pipe->w_counter)) |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1138 | goto err_rd; |
| 1139 | } |
| 1140 | } |
| 1141 | break; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1142 | |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1143 | case FMODE_WRITE: |
| 1144 | /* |
| 1145 | * O_WRONLY |
| 1146 | * POSIX.1 says that O_NONBLOCK means return -1 with |
| 1147 | * errno=ENXIO when there is no process reading the FIFO. |
| 1148 | */ |
| 1149 | ret = -ENXIO; |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 1150 | if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers) |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1151 | goto err; |
| 1152 | |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1153 | pipe->w_counter++; |
| 1154 | if (!pipe->writers++) |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1155 | wake_up_partner(pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1156 | |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 1157 | if (!is_pipe && !pipe->readers) { |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1158 | if (wait_for_partner(pipe, &pipe->r_counter)) |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1159 | goto err_wr; |
| 1160 | } |
| 1161 | break; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1162 | |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1163 | case FMODE_READ | FMODE_WRITE: |
| 1164 | /* |
| 1165 | * O_RDWR |
| 1166 | * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set. |
| 1167 | * This implementation will NEVER block on a O_RDWR open, since |
| 1168 | * the process can at least talk to itself. |
| 1169 | */ |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1170 | |
| 1171 | pipe->readers++; |
| 1172 | pipe->writers++; |
| 1173 | pipe->r_counter++; |
| 1174 | pipe->w_counter++; |
| 1175 | if (pipe->readers == 1 || pipe->writers == 1) |
Al Viro | fc7478a | 2013-03-21 02:07:59 -0400 | [diff] [blame] | 1176 | wake_up_partner(pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1177 | break; |
| 1178 | |
| 1179 | default: |
| 1180 | ret = -EINVAL; |
| 1181 | goto err; |
| 1182 | } |
| 1183 | |
| 1184 | /* Ok! */ |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 1185 | __pipe_unlock(pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1186 | return 0; |
| 1187 | |
| 1188 | err_rd: |
| 1189 | if (!--pipe->readers) |
Linus Torvalds | 0ddad21 | 2019-12-09 09:48:27 -0800 | [diff] [blame] | 1190 | wake_up_interruptible(&pipe->wr_wait); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1191 | ret = -ERESTARTSYS; |
| 1192 | goto err; |
| 1193 | |
| 1194 | err_wr: |
| 1195 | if (!--pipe->writers) |
Linus Torvalds | 6551d5c | 2020-02-18 10:12:58 -0800 | [diff] [blame] | 1196 | wake_up_interruptible_all(&pipe->rd_wait); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1197 | ret = -ERESTARTSYS; |
| 1198 | goto err; |
| 1199 | |
| 1200 | err: |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 1201 | __pipe_unlock(pipe); |
Linus Torvalds | b0d8d22 | 2013-12-02 09:44:51 -0800 | [diff] [blame] | 1202 | |
| 1203 | put_pipe_info(inode, pipe); |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1204 | return ret; |
| 1205 | } |
| 1206 | |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 1207 | const struct file_operations pipefifo_fops = { |
| 1208 | .open = fifo_open, |
| 1209 | .llseek = no_llseek, |
Al Viro | fb9096a | 2014-04-02 19:56:54 -0400 | [diff] [blame] | 1210 | .read_iter = pipe_read, |
Al Viro | f0d1bec | 2014-04-03 15:05:18 -0400 | [diff] [blame] | 1211 | .write_iter = pipe_write, |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1212 | .poll = pipe_poll, |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 1213 | .unlocked_ioctl = pipe_ioctl, |
| 1214 | .release = pipe_release, |
| 1215 | .fasync = pipe_fasync, |
Al Viro | f776c73 | 2013-03-12 09:46:27 -0400 | [diff] [blame] | 1216 | }; |
| 1217 | |
Ulrich Drepper | d35c7b0 | 2008-05-03 15:10:37 -0400 | [diff] [blame] | 1218 | /* |
Michael Kerrisk (man-pages) | f491bd7 | 2016-10-11 13:53:22 -0700 | [diff] [blame] | 1219 | * Currently we rely on the pipe array holding a power-of-2 number |
Joe Lawrence | d3f14c4 | 2017-11-17 15:29:21 -0800 | [diff] [blame] | 1220 | * of pages. Returns 0 on error. |
Michael Kerrisk (man-pages) | f491bd7 | 2016-10-11 13:53:22 -0700 | [diff] [blame] | 1221 | */ |
Eric Biggers | 96e99be40 | 2018-02-06 15:42:00 -0800 | [diff] [blame] | 1222 | unsigned int round_pipe_size(unsigned long size) |
Michael Kerrisk (man-pages) | f491bd7 | 2016-10-11 13:53:22 -0700 | [diff] [blame] | 1223 | { |
Eric Biggers | c4fed5a | 2018-02-06 15:42:05 -0800 | [diff] [blame] | 1224 | if (size > (1U << 31)) |
Eric Biggers | 96e99be40 | 2018-02-06 15:42:00 -0800 | [diff] [blame] | 1225 | return 0; |
| 1226 | |
Eric Biggers | 4c2e4be | 2018-02-06 15:41:45 -0800 | [diff] [blame] | 1227 | /* Minimum pipe size, as required by POSIX */ |
| 1228 | if (size < PAGE_SIZE) |
Eric Biggers | c4fed5a | 2018-02-06 15:42:05 -0800 | [diff] [blame] | 1229 | return PAGE_SIZE; |
Joe Lawrence | d3f14c4 | 2017-11-17 15:29:21 -0800 | [diff] [blame] | 1230 | |
Eric Biggers | c4fed5a | 2018-02-06 15:42:05 -0800 | [diff] [blame] | 1231 | return roundup_pow_of_two(size); |
Michael Kerrisk (man-pages) | f491bd7 | 2016-10-11 13:53:22 -0700 | [diff] [blame] | 1232 | } |
| 1233 | |
| 1234 | /* |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1235 | * Resize the pipe ring to a number of slots. |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1236 | */ |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1237 | int pipe_resize_ring(struct pipe_inode_info *pipe, unsigned int nr_slots) |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1238 | { |
| 1239 | struct pipe_buffer *bufs; |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1240 | unsigned int head, tail, mask, n; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1241 | |
| 1242 | /* |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1243 | * We can shrink the pipe, if arg is greater than the ring occupancy. |
| 1244 | * Since we don't expect a lot of shrink+grow operations, just free and |
| 1245 | * allocate again like we would do for growing. If the pipe currently |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1246 | * contains more buffers than arg, then return busy. |
| 1247 | */ |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1248 | mask = pipe->ring_size - 1; |
| 1249 | head = pipe->head; |
| 1250 | tail = pipe->tail; |
| 1251 | n = pipe_occupancy(pipe->head, pipe->tail); |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1252 | if (nr_slots < n) |
| 1253 | return -EBUSY; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1254 | |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1255 | bufs = kcalloc(nr_slots, sizeof(*bufs), |
Vladimir Davydov | d86133b | 2016-07-26 15:24:33 -0700 | [diff] [blame] | 1256 | GFP_KERNEL_ACCOUNT | __GFP_NOWARN); |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1257 | if (unlikely(!bufs)) |
| 1258 | return -ENOMEM; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1259 | |
| 1260 | /* |
| 1261 | * The pipe array wraps around, so just start the new one at zero |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1262 | * and adjust the indices. |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1263 | */ |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1264 | if (n > 0) { |
| 1265 | unsigned int h = head & mask; |
| 1266 | unsigned int t = tail & mask; |
| 1267 | if (h > t) { |
| 1268 | memcpy(bufs, pipe->bufs + t, |
| 1269 | n * sizeof(struct pipe_buffer)); |
| 1270 | } else { |
| 1271 | unsigned int tsize = pipe->ring_size - t; |
| 1272 | if (h > 0) |
| 1273 | memcpy(bufs + tsize, pipe->bufs, |
| 1274 | h * sizeof(struct pipe_buffer)); |
| 1275 | memcpy(bufs, pipe->bufs + t, |
| 1276 | tsize * sizeof(struct pipe_buffer)); |
| 1277 | } |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1278 | } |
| 1279 | |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1280 | head = n; |
| 1281 | tail = 0; |
| 1282 | |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1283 | kfree(pipe->bufs); |
| 1284 | pipe->bufs = bufs; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1285 | pipe->ring_size = nr_slots; |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1286 | if (pipe->max_usage > nr_slots) |
| 1287 | pipe->max_usage = nr_slots; |
David Howells | 8cefc10 | 2019-11-15 13:30:32 +0000 | [diff] [blame] | 1288 | pipe->tail = tail; |
| 1289 | pipe->head = head; |
Linus Torvalds | 6551d5c | 2020-02-18 10:12:58 -0800 | [diff] [blame] | 1290 | |
| 1291 | /* This might have made more room for writers */ |
| 1292 | wake_up_interruptible(&pipe->wr_wait); |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1293 | return 0; |
| 1294 | } |
| 1295 | |
| 1296 | /* |
| 1297 | * Allocate a new array of pipe buffers and copy the info over. Returns the |
| 1298 | * pipe size if successful, or return -ERROR on error. |
| 1299 | */ |
| 1300 | static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long arg) |
| 1301 | { |
| 1302 | unsigned long user_bufs; |
| 1303 | unsigned int nr_slots, size; |
| 1304 | long ret = 0; |
| 1305 | |
| 1306 | #ifdef CONFIG_WATCH_QUEUE |
| 1307 | if (pipe->watch_queue) |
| 1308 | return -EBUSY; |
| 1309 | #endif |
| 1310 | |
| 1311 | size = round_pipe_size(arg); |
| 1312 | nr_slots = size >> PAGE_SHIFT; |
| 1313 | |
| 1314 | if (!nr_slots) |
| 1315 | return -EINVAL; |
| 1316 | |
| 1317 | /* |
| 1318 | * If trying to increase the pipe capacity, check that an |
| 1319 | * unprivileged user is not trying to exceed various limits |
| 1320 | * (soft limit check here, hard limit check just below). |
| 1321 | * Decreasing the pipe capacity is always permitted, even |
| 1322 | * if the user is currently over a limit. |
| 1323 | */ |
| 1324 | if (nr_slots > pipe->max_usage && |
| 1325 | size > pipe_max_size && !capable(CAP_SYS_RESOURCE)) |
| 1326 | return -EPERM; |
| 1327 | |
| 1328 | user_bufs = account_pipe_buffers(pipe->user, pipe->nr_accounted, nr_slots); |
| 1329 | |
| 1330 | if (nr_slots > pipe->max_usage && |
| 1331 | (too_many_pipe_buffers_hard(user_bufs) || |
| 1332 | too_many_pipe_buffers_soft(user_bufs)) && |
| 1333 | pipe_is_unprivileged_user()) { |
| 1334 | ret = -EPERM; |
| 1335 | goto out_revert_acct; |
| 1336 | } |
| 1337 | |
| 1338 | ret = pipe_resize_ring(pipe, nr_slots); |
| 1339 | if (ret < 0) |
| 1340 | goto out_revert_acct; |
| 1341 | |
| 1342 | pipe->max_usage = nr_slots; |
| 1343 | pipe->nr_accounted = nr_slots; |
David Howells | 6718b6f | 2019-10-16 16:47:32 +0100 | [diff] [blame] | 1344 | return pipe->max_usage * PAGE_SIZE; |
Michael Kerrisk (man-pages) | b0b91d1 | 2016-10-11 13:53:31 -0700 | [diff] [blame] | 1345 | |
| 1346 | out_revert_acct: |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1347 | (void) account_pipe_buffers(pipe->user, nr_slots, pipe->nr_accounted); |
Michael Kerrisk (man-pages) | b0b91d1 | 2016-10-11 13:53:31 -0700 | [diff] [blame] | 1348 | return ret; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1349 | } |
| 1350 | |
Jens Axboe | ff9da69 | 2010-06-03 14:54:39 +0200 | [diff] [blame] | 1351 | /* |
Linus Torvalds | 7208364 | 2010-11-28 16:27:19 -0800 | [diff] [blame] | 1352 | * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same |
| 1353 | * location, so checking ->i_pipe is not enough to verify that this is a |
| 1354 | * pipe. |
| 1355 | */ |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1356 | struct pipe_inode_info *get_pipe_info(struct file *file, bool for_splice) |
Linus Torvalds | 7208364 | 2010-11-28 16:27:19 -0800 | [diff] [blame] | 1357 | { |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1358 | struct pipe_inode_info *pipe = file->private_data; |
| 1359 | |
| 1360 | if (file->f_op != &pipefifo_fops || !pipe) |
| 1361 | return NULL; |
| 1362 | #ifdef CONFIG_WATCH_QUEUE |
| 1363 | if (for_splice && pipe->watch_queue) |
| 1364 | return NULL; |
| 1365 | #endif |
| 1366 | return pipe; |
Linus Torvalds | 7208364 | 2010-11-28 16:27:19 -0800 | [diff] [blame] | 1367 | } |
| 1368 | |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1369 | long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg) |
| 1370 | { |
| 1371 | struct pipe_inode_info *pipe; |
| 1372 | long ret; |
| 1373 | |
David Howells | c73be61 | 2020-01-14 17:07:11 +0000 | [diff] [blame] | 1374 | pipe = get_pipe_info(file, false); |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1375 | if (!pipe) |
| 1376 | return -EBADF; |
| 1377 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 1378 | __pipe_lock(pipe); |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1379 | |
| 1380 | switch (cmd) { |
Michael Kerrisk (man-pages) | d37d416 | 2016-10-11 13:53:25 -0700 | [diff] [blame] | 1381 | case F_SETPIPE_SZ: |
| 1382 | ret = pipe_set_size(pipe, arg); |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1383 | break; |
| 1384 | case F_GETPIPE_SZ: |
David Howells | 6718b6f | 2019-10-16 16:47:32 +0100 | [diff] [blame] | 1385 | ret = pipe->max_usage * PAGE_SIZE; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1386 | break; |
| 1387 | default: |
| 1388 | ret = -EINVAL; |
| 1389 | break; |
| 1390 | } |
| 1391 | |
Al Viro | ebec73f | 2013-03-21 12:24:01 -0400 | [diff] [blame] | 1392 | __pipe_unlock(pipe); |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1393 | return ret; |
| 1394 | } |
| 1395 | |
Nick Piggin | ff0c7d1 | 2011-01-07 17:49:50 +1100 | [diff] [blame] | 1396 | static const struct super_operations pipefs_ops = { |
| 1397 | .destroy_inode = free_inode_nonrcu, |
Pavel Emelyanov | d70ef97 | 2011-10-31 17:10:04 -0700 | [diff] [blame] | 1398 | .statfs = simple_statfs, |
Nick Piggin | ff0c7d1 | 2011-01-07 17:49:50 +1100 | [diff] [blame] | 1399 | }; |
| 1400 | |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1401 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | * pipefs should _never_ be mounted by userland - too much of security hassle, |
| 1403 | * no real gain from having the whole whorehouse mounted. So we don't need |
| 1404 | * any operations on the root directory. However, we need a non-trivial |
| 1405 | * d_name - pipe: will go nicely and kill the special-casing in procfs. |
| 1406 | */ |
David Howells | 4fa7ec5 | 2019-03-25 16:38:23 +0000 | [diff] [blame] | 1407 | |
| 1408 | static int pipefs_init_fs_context(struct fs_context *fc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | { |
David Howells | 4fa7ec5 | 2019-03-25 16:38:23 +0000 | [diff] [blame] | 1410 | struct pseudo_fs_context *ctx = init_pseudo(fc, PIPEFS_MAGIC); |
| 1411 | if (!ctx) |
| 1412 | return -ENOMEM; |
| 1413 | ctx->ops = &pipefs_ops; |
| 1414 | ctx->dops = &pipefs_dentry_operations; |
| 1415 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
| 1418 | static struct file_system_type pipe_fs_type = { |
| 1419 | .name = "pipefs", |
David Howells | 4fa7ec5 | 2019-03-25 16:38:23 +0000 | [diff] [blame] | 1420 | .init_fs_context = pipefs_init_fs_context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | .kill_sb = kill_anon_super, |
| 1422 | }; |
| 1423 | |
| 1424 | static int __init init_pipe_fs(void) |
| 1425 | { |
| 1426 | int err = register_filesystem(&pipe_fs_type); |
Ingo Molnar | 341b446 | 2006-04-11 13:57:45 +0200 | [diff] [blame] | 1427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | if (!err) { |
| 1429 | pipe_mnt = kern_mount(&pipe_fs_type); |
| 1430 | if (IS_ERR(pipe_mnt)) { |
| 1431 | err = PTR_ERR(pipe_mnt); |
| 1432 | unregister_filesystem(&pipe_fs_type); |
| 1433 | } |
| 1434 | } |
| 1435 | return err; |
| 1436 | } |
| 1437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | fs_initcall(init_pipe_fs); |