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