]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
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> | |
35f3d14d | 15 | #include <linux/log2.h> |
1da177e4 | 16 | #include <linux/mount.h> |
4fa7ec5d | 17 | #include <linux/pseudo_fs.h> |
b502bd11 | 18 | #include <linux/magic.h> |
1da177e4 LT |
19 | #include <linux/pipe_fs_i.h> |
20 | #include <linux/uio.h> | |
21 | #include <linux/highmem.h> | |
5274f052 | 22 | #include <linux/pagemap.h> |
db349509 | 23 | #include <linux/audit.h> |
ba719bae | 24 | #include <linux/syscalls.h> |
b492e95b | 25 | #include <linux/fcntl.h> |
d86133bd | 26 | #include <linux/memcontrol.h> |
1da177e4 | 27 | |
7c0f6ba6 | 28 | #include <linux/uaccess.h> |
1da177e4 LT |
29 | #include <asm/ioctls.h> |
30 | ||
599a0ac1 AV |
31 | #include "internal.h" |
32 | ||
b492e95b JA |
33 | /* |
34 | * The max size that a non-root user is allowed to grow the pipe. Can | |
ff9da691 | 35 | * be set by root in /proc/sys/fs/pipe-max-size |
b492e95b | 36 | */ |
ff9da691 JA |
37 | unsigned int pipe_max_size = 1048576; |
38 | ||
759c0114 WT |
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 | ||
1da177e4 | 45 | /* |
8cefc107 DH |
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 | * | |
1da177e4 LT |
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 <[email protected]> 2001-08-16 | |
57 | * | |
58 | * pipe_read & write cleanup | |
59 | * -- Manfred Spraul <[email protected]> 2002-05-09 | |
60 | */ | |
61 | ||
61e0d47c MS |
62 | static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass) |
63 | { | |
6447a3cf | 64 | if (pipe->files) |
72b0d9aa | 65 | mutex_lock_nested(&pipe->mutex, subclass); |
61e0d47c MS |
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 | { | |
6447a3cf | 79 | if (pipe->files) |
72b0d9aa | 80 | mutex_unlock(&pipe->mutex); |
61e0d47c MS |
81 | } |
82 | EXPORT_SYMBOL(pipe_unlock); | |
83 | ||
ebec73f4 AV |
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 | ||
61e0d47c MS |
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 { | |
023d43c7 PZ |
103 | pipe_lock_nested(pipe2, I_MUTEX_PARENT); |
104 | pipe_lock_nested(pipe1, I_MUTEX_CHILD); | |
61e0d47c MS |
105 | } |
106 | } | |
107 | ||
1da177e4 | 108 | /* Drop the inode semaphore and wait for a pipe event, atomically */ |
3a326a2c | 109 | void pipe_wait(struct pipe_inode_info *pipe) |
1da177e4 LT |
110 | { |
111 | DEFINE_WAIT(wait); | |
112 | ||
d79fc0fc IM |
113 | /* |
114 | * Pipes are system-local resources, so sleeping on them | |
115 | * is considered a noninteractive wait: | |
116 | */ | |
af927232 | 117 | prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE); |
61e0d47c | 118 | pipe_unlock(pipe); |
1da177e4 | 119 | schedule(); |
3a326a2c | 120 | finish_wait(&pipe->wait, &wait); |
61e0d47c | 121 | pipe_lock(pipe); |
1da177e4 LT |
122 | } |
123 | ||
341b446b IM |
124 | static void anon_pipe_buf_release(struct pipe_inode_info *pipe, |
125 | struct pipe_buffer *buf) | |
1da177e4 LT |
126 | { |
127 | struct page *page = buf->page; | |
128 | ||
5274f052 JA |
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 | |
341b446b | 132 | * allocation cache. (Otherwise just release our reference to it) |
5274f052 | 133 | */ |
341b446b | 134 | if (page_count(page) == 1 && !pipe->tmp_page) |
923f4f23 | 135 | pipe->tmp_page = page; |
341b446b | 136 | else |
09cbfeaf | 137 | put_page(page); |
1da177e4 LT |
138 | } |
139 | ||
d86133bd VD |
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) { | |
60cd4bcd | 146 | memcg_kmem_uncharge(page, 0); |
d86133bd VD |
147 | __SetPageLocked(page); |
148 | return 0; | |
149 | } | |
150 | return 1; | |
151 | } | |
152 | ||
0845718d | 153 | /** |
b51d63c6 | 154 | * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer |
0845718d JA |
155 | * @pipe: the pipe that the buffer belongs to |
156 | * @buf: the buffer to attempt to steal | |
157 | * | |
158 | * Description: | |
b51d63c6 | 159 | * This function attempts to steal the &struct page attached to |
0845718d JA |
160 | * @buf. If successful, this function returns 0 and returns with |
161 | * the page locked. The caller may then reuse the page for whatever | |
b51d63c6 | 162 | * he wishes; the typical use is insertion into a different file |
0845718d JA |
163 | * page cache. |
164 | */ | |
330ab716 JA |
165 | int generic_pipe_buf_steal(struct pipe_inode_info *pipe, |
166 | struct pipe_buffer *buf) | |
5abc97aa | 167 | { |
46e678c9 JA |
168 | struct page *page = buf->page; |
169 | ||
0845718d JA |
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 | */ | |
46e678c9 | 175 | if (page_count(page) == 1) { |
46e678c9 JA |
176 | lock_page(page); |
177 | return 0; | |
178 | } | |
179 | ||
180 | return 1; | |
5abc97aa | 181 | } |
51921cb7 | 182 | EXPORT_SYMBOL(generic_pipe_buf_steal); |
5abc97aa | 183 | |
0845718d | 184 | /** |
b51d63c6 | 185 | * generic_pipe_buf_get - get a reference to a &struct pipe_buffer |
0845718d JA |
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 | */ | |
15fab63e | 194 | bool generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf) |
70524490 | 195 | { |
15fab63e | 196 | return try_get_page(buf->page); |
70524490 | 197 | } |
51921cb7 | 198 | EXPORT_SYMBOL(generic_pipe_buf_get); |
70524490 | 199 | |
0845718d JA |
200 | /** |
201 | * generic_pipe_buf_confirm - verify contents of the pipe buffer | |
79685b8d | 202 | * @info: the pipe that the buffer belongs to |
0845718d JA |
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 | */ | |
cac36bb0 JA |
209 | int generic_pipe_buf_confirm(struct pipe_inode_info *info, |
210 | struct pipe_buffer *buf) | |
f84d7519 JA |
211 | { |
212 | return 0; | |
213 | } | |
51921cb7 | 214 | EXPORT_SYMBOL(generic_pipe_buf_confirm); |
f84d7519 | 215 | |
6818173b MS |
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 | { | |
09cbfeaf | 227 | put_page(buf->page); |
6818173b | 228 | } |
51921cb7 | 229 | EXPORT_SYMBOL(generic_pipe_buf_release); |
6818173b | 230 | |
01e7187b | 231 | /* New data written to a pipe may be appended to a buffer with this type. */ |
d4c3cca9 | 232 | static const struct pipe_buf_operations anon_pipe_buf_ops = { |
cac36bb0 | 233 | .confirm = generic_pipe_buf_confirm, |
1da177e4 | 234 | .release = anon_pipe_buf_release, |
d86133bd | 235 | .steal = anon_pipe_buf_steal, |
f84d7519 | 236 | .get = generic_pipe_buf_get, |
1da177e4 LT |
237 | }; |
238 | ||
a0ce2f0a | 239 | static const struct pipe_buf_operations anon_pipe_buf_nomerge_ops = { |
cac36bb0 | 240 | .confirm = generic_pipe_buf_confirm, |
1da177e4 | 241 | .release = anon_pipe_buf_release, |
d86133bd | 242 | .steal = anon_pipe_buf_steal, |
f84d7519 | 243 | .get = generic_pipe_buf_get, |
1da177e4 LT |
244 | }; |
245 | ||
9883035a | 246 | static const struct pipe_buf_operations packet_pipe_buf_ops = { |
9883035a LT |
247 | .confirm = generic_pipe_buf_confirm, |
248 | .release = anon_pipe_buf_release, | |
d86133bd | 249 | .steal = anon_pipe_buf_steal, |
9883035a LT |
250 | .get = generic_pipe_buf_get, |
251 | }; | |
252 | ||
01e7187b JH |
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 | */ | |
a0ce2f0a JH |
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 | ||
01e7187b JH |
268 | static bool pipe_buf_can_merge(struct pipe_buffer *buf) |
269 | { | |
270 | return buf->ops == &anon_pipe_buf_ops; | |
271 | } | |
272 | ||
1da177e4 | 273 | static ssize_t |
fb9096a3 | 274 | pipe_read(struct kiocb *iocb, struct iov_iter *to) |
1da177e4 | 275 | { |
fb9096a3 | 276 | size_t total_len = iov_iter_count(to); |
ee0b3e67 | 277 | struct file *filp = iocb->ki_filp; |
de32ec4c | 278 | struct pipe_inode_info *pipe = filp->private_data; |
1da177e4 LT |
279 | int do_wakeup; |
280 | ssize_t ret; | |
1da177e4 | 281 | |
1da177e4 LT |
282 | /* Null read succeeds. */ |
283 | if (unlikely(total_len == 0)) | |
284 | return 0; | |
285 | ||
286 | do_wakeup = 0; | |
287 | ret = 0; | |
ebec73f4 | 288 | __pipe_lock(pipe); |
1da177e4 | 289 | for (;;) { |
8cefc107 DH |
290 | unsigned int head = pipe->head; |
291 | unsigned int tail = pipe->tail; | |
292 | unsigned int mask = pipe->ring_size - 1; | |
293 | ||
294 | if (!pipe_empty(head, tail)) { | |
295 | struct pipe_buffer *buf = &pipe->bufs[tail & mask]; | |
1da177e4 | 296 | size_t chars = buf->len; |
637b58c2 AV |
297 | size_t written; |
298 | int error; | |
1da177e4 LT |
299 | |
300 | if (chars > total_len) | |
301 | chars = total_len; | |
302 | ||
fba597db | 303 | error = pipe_buf_confirm(pipe, buf); |
f84d7519 | 304 | if (error) { |
5274f052 | 305 | if (!ret) |
e5953cbd | 306 | ret = error; |
5274f052 JA |
307 | break; |
308 | } | |
f84d7519 | 309 | |
fb9096a3 | 310 | written = copy_page_to_iter(buf->page, buf->offset, chars, to); |
637b58c2 | 311 | if (unlikely(written < chars)) { |
341b446b | 312 | if (!ret) |
637b58c2 | 313 | ret = -EFAULT; |
1da177e4 LT |
314 | break; |
315 | } | |
316 | ret += chars; | |
317 | buf->offset += chars; | |
318 | buf->len -= chars; | |
9883035a LT |
319 | |
320 | /* Was it a packet buffer? Clean up and exit */ | |
321 | if (buf->flags & PIPE_BUF_FLAG_PACKET) { | |
322 | total_len = chars; | |
323 | buf->len = 0; | |
324 | } | |
325 | ||
1da177e4 | 326 | if (!buf->len) { |
cefa80ce | 327 | bool wake; |
a779638c | 328 | pipe_buf_release(pipe, buf); |
b667b867 | 329 | spin_lock_irq(&pipe->wait.lock); |
8cefc107 DH |
330 | tail++; |
331 | pipe->tail = tail; | |
1da177e4 | 332 | do_wakeup = 1; |
cefa80ce DH |
333 | wake = head - (tail - 1) == pipe->max_usage / 2; |
334 | if (wake) | |
3c0edea9 | 335 | wake_up_locked_poll( |
8446487f | 336 | &pipe->wait, EPOLLOUT | EPOLLWRNORM); |
b667b867 | 337 | spin_unlock_irq(&pipe->wait.lock); |
cefa80ce | 338 | if (wake) |
8446487f | 339 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
1da177e4 LT |
340 | } |
341 | total_len -= chars; | |
342 | if (!total_len) | |
343 | break; /* common path: read succeeded */ | |
8cefc107 DH |
344 | if (!pipe_empty(head, tail)) /* More to do? */ |
345 | continue; | |
1da177e4 | 346 | } |
8cefc107 | 347 | |
923f4f23 | 348 | if (!pipe->writers) |
1da177e4 | 349 | break; |
923f4f23 | 350 | if (!pipe->waiting_writers) { |
1da177e4 LT |
351 | /* syscall merging: Usually we must not sleep |
352 | * if O_NONBLOCK is set, or if we got some data. | |
353 | * But if a writer sleeps in kernel space, then | |
354 | * we can wait for that data without violating POSIX. | |
355 | */ | |
356 | if (ret) | |
357 | break; | |
358 | if (filp->f_flags & O_NONBLOCK) { | |
359 | ret = -EAGAIN; | |
360 | break; | |
361 | } | |
362 | } | |
363 | if (signal_pending(current)) { | |
341b446b IM |
364 | if (!ret) |
365 | ret = -ERESTARTSYS; | |
1da177e4 LT |
366 | break; |
367 | } | |
923f4f23 | 368 | pipe_wait(pipe); |
1da177e4 | 369 | } |
ebec73f4 | 370 | __pipe_unlock(pipe); |
341b446b IM |
371 | |
372 | /* Signal writers asynchronously that there is more room. */ | |
1da177e4 | 373 | if (do_wakeup) { |
3c0edea9 | 374 | wake_up_interruptible_poll(&pipe->wait, EPOLLOUT | EPOLLWRNORM); |
923f4f23 | 375 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
1da177e4 LT |
376 | } |
377 | if (ret > 0) | |
378 | file_accessed(filp); | |
379 | return ret; | |
380 | } | |
381 | ||
9883035a LT |
382 | static inline int is_packetized(struct file *file) |
383 | { | |
384 | return (file->f_flags & O_DIRECT) != 0; | |
385 | } | |
386 | ||
1da177e4 | 387 | static ssize_t |
f0d1bec9 | 388 | pipe_write(struct kiocb *iocb, struct iov_iter *from) |
1da177e4 | 389 | { |
ee0b3e67 | 390 | struct file *filp = iocb->ki_filp; |
de32ec4c | 391 | struct pipe_inode_info *pipe = filp->private_data; |
8f868d68 | 392 | unsigned int head; |
f0d1bec9 | 393 | ssize_t ret = 0; |
f0d1bec9 | 394 | size_t total_len = iov_iter_count(from); |
1da177e4 | 395 | ssize_t chars; |
1b6b26ae | 396 | bool was_empty = false; |
1da177e4 | 397 | |
1da177e4 LT |
398 | /* Null write succeeds. */ |
399 | if (unlikely(total_len == 0)) | |
400 | return 0; | |
401 | ||
ebec73f4 | 402 | __pipe_lock(pipe); |
1da177e4 | 403 | |
923f4f23 | 404 | if (!pipe->readers) { |
1da177e4 LT |
405 | send_sig(SIGPIPE, current, 0); |
406 | ret = -EPIPE; | |
407 | goto out; | |
408 | } | |
409 | ||
1b6b26ae LT |
410 | /* |
411 | * Only wake up if the pipe started out empty, since | |
412 | * otherwise there should be no readers waiting. | |
413 | * | |
414 | * If it wasn't empty we try to merge new data into | |
415 | * the last buffer. | |
416 | * | |
417 | * That naturally merges small writes, but it also | |
418 | * page-aligs the rest of the writes for large writes | |
419 | * spanning multiple pages. | |
420 | */ | |
8cefc107 | 421 | head = pipe->head; |
1b6b26ae LT |
422 | was_empty = pipe_empty(head, pipe->tail); |
423 | chars = total_len & (PAGE_SIZE-1); | |
424 | if (chars && !was_empty) { | |
8f868d68 | 425 | unsigned int mask = pipe->ring_size - 1; |
8cefc107 | 426 | struct pipe_buffer *buf = &pipe->bufs[(head - 1) & mask]; |
1da177e4 | 427 | int offset = buf->offset + buf->len; |
341b446b | 428 | |
01e7187b | 429 | if (pipe_buf_can_merge(buf) && offset + chars <= PAGE_SIZE) { |
fba597db | 430 | ret = pipe_buf_confirm(pipe, buf); |
6ae08069 | 431 | if (ret) |
5274f052 | 432 | goto out; |
f84d7519 | 433 | |
f0d1bec9 AV |
434 | ret = copy_page_from_iter(buf->page, offset, chars, from); |
435 | if (unlikely(ret < chars)) { | |
6ae08069 | 436 | ret = -EFAULT; |
1da177e4 | 437 | goto out; |
f6762b7a | 438 | } |
1b6b26ae | 439 | |
6ae08069 | 440 | buf->len += ret; |
f0d1bec9 | 441 | if (!iov_iter_count(from)) |
1da177e4 LT |
442 | goto out; |
443 | } | |
444 | } | |
445 | ||
446 | for (;;) { | |
923f4f23 | 447 | if (!pipe->readers) { |
1da177e4 | 448 | send_sig(SIGPIPE, current, 0); |
341b446b IM |
449 | if (!ret) |
450 | ret = -EPIPE; | |
1da177e4 LT |
451 | break; |
452 | } | |
8cefc107 | 453 | |
a194dfe6 | 454 | head = pipe->head; |
8f868d68 DH |
455 | if (!pipe_full(head, pipe->tail, pipe->max_usage)) { |
456 | unsigned int mask = pipe->ring_size - 1; | |
8cefc107 | 457 | struct pipe_buffer *buf = &pipe->bufs[head & mask]; |
923f4f23 | 458 | struct page *page = pipe->tmp_page; |
f0d1bec9 | 459 | int copied; |
1da177e4 LT |
460 | |
461 | if (!page) { | |
d86133bd | 462 | page = alloc_page(GFP_HIGHUSER | __GFP_ACCOUNT); |
1da177e4 LT |
463 | if (unlikely(!page)) { |
464 | ret = ret ? : -ENOMEM; | |
465 | break; | |
466 | } | |
923f4f23 | 467 | pipe->tmp_page = page; |
1da177e4 | 468 | } |
a194dfe6 DH |
469 | |
470 | /* Allocate a slot in the ring in advance and attach an | |
471 | * empty buffer. If we fault or otherwise fail to use | |
472 | * it, either the reader will consume it or it'll still | |
473 | * be there for the next write. | |
474 | */ | |
475 | spin_lock_irq(&pipe->wait.lock); | |
476 | ||
477 | head = pipe->head; | |
8f868d68 | 478 | if (pipe_full(head, pipe->tail, pipe->max_usage)) { |
8df44129 DH |
479 | spin_unlock_irq(&pipe->wait.lock); |
480 | continue; | |
481 | } | |
482 | ||
a194dfe6 | 483 | pipe->head = head + 1; |
a194dfe6 | 484 | spin_unlock_irq(&pipe->wait.lock); |
1da177e4 LT |
485 | |
486 | /* Insert it into the buffer array */ | |
a194dfe6 | 487 | buf = &pipe->bufs[head & mask]; |
1da177e4 LT |
488 | buf->page = page; |
489 | buf->ops = &anon_pipe_buf_ops; | |
490 | buf->offset = 0; | |
a194dfe6 | 491 | buf->len = 0; |
9883035a LT |
492 | buf->flags = 0; |
493 | if (is_packetized(filp)) { | |
494 | buf->ops = &packet_pipe_buf_ops; | |
495 | buf->flags = PIPE_BUF_FLAG_PACKET; | |
496 | } | |
923f4f23 | 497 | pipe->tmp_page = NULL; |
1da177e4 | 498 | |
a194dfe6 DH |
499 | copied = copy_page_from_iter(page, 0, PAGE_SIZE, from); |
500 | if (unlikely(copied < PAGE_SIZE && iov_iter_count(from))) { | |
501 | if (!ret) | |
502 | ret = -EFAULT; | |
503 | break; | |
504 | } | |
505 | ret += copied; | |
506 | buf->offset = 0; | |
507 | buf->len = copied; | |
508 | ||
f0d1bec9 | 509 | if (!iov_iter_count(from)) |
1da177e4 LT |
510 | break; |
511 | } | |
8cefc107 | 512 | |
8f868d68 | 513 | if (!pipe_full(head, pipe->tail, pipe->max_usage)) |
1da177e4 | 514 | continue; |
8cefc107 DH |
515 | |
516 | /* Wait for buffer space to become available. */ | |
1da177e4 | 517 | if (filp->f_flags & O_NONBLOCK) { |
341b446b IM |
518 | if (!ret) |
519 | ret = -EAGAIN; | |
1da177e4 LT |
520 | break; |
521 | } | |
522 | if (signal_pending(current)) { | |
341b446b IM |
523 | if (!ret) |
524 | ret = -ERESTARTSYS; | |
1da177e4 LT |
525 | break; |
526 | } | |
1b6b26ae LT |
527 | |
528 | /* | |
529 | * We're going to release the pipe lock and wait for more | |
530 | * space. We wake up any readers if necessary, and then | |
531 | * after waiting we need to re-check whether the pipe | |
532 | * become empty while we dropped the lock. | |
533 | */ | |
534 | if (was_empty) { | |
535 | wake_up_interruptible_sync_poll(&pipe->wait, EPOLLIN | EPOLLRDNORM); | |
536 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); | |
537 | } | |
923f4f23 IM |
538 | pipe->waiting_writers++; |
539 | pipe_wait(pipe); | |
540 | pipe->waiting_writers--; | |
1b6b26ae LT |
541 | |
542 | was_empty = pipe_empty(head, pipe->tail); | |
1da177e4 LT |
543 | } |
544 | out: | |
ebec73f4 | 545 | __pipe_unlock(pipe); |
1b6b26ae LT |
546 | |
547 | /* | |
548 | * If we do do a wakeup event, we do a 'sync' wakeup, because we | |
549 | * want the reader to start processing things asap, rather than | |
550 | * leave the data pending. | |
551 | * | |
552 | * This is particularly important for small writes, because of | |
553 | * how (for example) the GNU make jobserver uses small writes to | |
554 | * wake up pending jobs | |
555 | */ | |
556 | if (was_empty) { | |
557 | wake_up_interruptible_sync_poll(&pipe->wait, EPOLLIN | EPOLLRDNORM); | |
923f4f23 | 558 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
1da177e4 | 559 | } |
7e775f46 | 560 | if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) { |
c3b2da31 JB |
561 | int err = file_update_time(filp); |
562 | if (err) | |
563 | ret = err; | |
7e775f46 | 564 | sb_end_write(file_inode(filp)->i_sb); |
c3b2da31 | 565 | } |
1da177e4 LT |
566 | return ret; |
567 | } | |
568 | ||
d59d0b1b | 569 | static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
1da177e4 | 570 | { |
de32ec4c | 571 | struct pipe_inode_info *pipe = filp->private_data; |
8cefc107 | 572 | int count, head, tail, mask; |
1da177e4 LT |
573 | |
574 | switch (cmd) { | |
575 | case FIONREAD: | |
ebec73f4 | 576 | __pipe_lock(pipe); |
1da177e4 | 577 | count = 0; |
8cefc107 DH |
578 | head = pipe->head; |
579 | tail = pipe->tail; | |
580 | mask = pipe->ring_size - 1; | |
581 | ||
582 | while (tail != head) { | |
583 | count += pipe->bufs[tail & mask].len; | |
584 | tail++; | |
1da177e4 | 585 | } |
ebec73f4 | 586 | __pipe_unlock(pipe); |
923f4f23 | 587 | |
1da177e4 LT |
588 | return put_user(count, (int __user *)arg); |
589 | default: | |
46ce341b | 590 | return -ENOIOCTLCMD; |
1da177e4 LT |
591 | } |
592 | } | |
593 | ||
dd67081b | 594 | /* No kernel lock held - fine */ |
a11e1d43 LT |
595 | static __poll_t |
596 | pipe_poll(struct file *filp, poll_table *wait) | |
dd67081b | 597 | { |
a11e1d43 | 598 | __poll_t mask; |
dd67081b | 599 | struct pipe_inode_info *pipe = filp->private_data; |
ad910e36 | 600 | unsigned int head, tail; |
a11e1d43 | 601 | |
ad910e36 LT |
602 | /* |
603 | * Reading only -- no need for acquiring the semaphore. | |
604 | * | |
605 | * But because this is racy, the code has to add the | |
606 | * entry to the poll table _first_ .. | |
607 | */ | |
a11e1d43 | 608 | poll_wait(filp, &pipe->wait, wait); |
1da177e4 | 609 | |
ad910e36 LT |
610 | /* |
611 | * .. and only then can you do the racy tests. That way, | |
612 | * if something changes and you got it wrong, the poll | |
613 | * table entry will wake you up and fix it. | |
614 | */ | |
615 | head = READ_ONCE(pipe->head); | |
616 | tail = READ_ONCE(pipe->tail); | |
617 | ||
a11e1d43 | 618 | mask = 0; |
1da177e4 | 619 | if (filp->f_mode & FMODE_READ) { |
8cefc107 DH |
620 | if (!pipe_empty(head, tail)) |
621 | mask |= EPOLLIN | EPOLLRDNORM; | |
923f4f23 | 622 | if (!pipe->writers && filp->f_version != pipe->w_counter) |
a9a08845 | 623 | mask |= EPOLLHUP; |
1da177e4 LT |
624 | } |
625 | ||
626 | if (filp->f_mode & FMODE_WRITE) { | |
6718b6f8 | 627 | if (!pipe_full(head, tail, pipe->max_usage)) |
8cefc107 | 628 | mask |= EPOLLOUT | EPOLLWRNORM; |
5e5d7a22 | 629 | /* |
a9a08845 | 630 | * Most Unices do not set EPOLLERR for FIFOs but on Linux they |
5e5d7a22 PE |
631 | * behave exactly like pipes for poll(). |
632 | */ | |
923f4f23 | 633 | if (!pipe->readers) |
a9a08845 | 634 | mask |= EPOLLERR; |
1da177e4 LT |
635 | } |
636 | ||
637 | return mask; | |
638 | } | |
639 | ||
b0d8d229 LT |
640 | static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe) |
641 | { | |
642 | int kill = 0; | |
643 | ||
644 | spin_lock(&inode->i_lock); | |
645 | if (!--pipe->files) { | |
646 | inode->i_pipe = NULL; | |
647 | kill = 1; | |
648 | } | |
649 | spin_unlock(&inode->i_lock); | |
650 | ||
651 | if (kill) | |
652 | free_pipe_info(pipe); | |
653 | } | |
654 | ||
1da177e4 | 655 | static int |
599a0ac1 | 656 | pipe_release(struct inode *inode, struct file *file) |
1da177e4 | 657 | { |
b0d8d229 | 658 | struct pipe_inode_info *pipe = file->private_data; |
923f4f23 | 659 | |
ebec73f4 | 660 | __pipe_lock(pipe); |
599a0ac1 AV |
661 | if (file->f_mode & FMODE_READ) |
662 | pipe->readers--; | |
663 | if (file->f_mode & FMODE_WRITE) | |
664 | pipe->writers--; | |
341b446b | 665 | |
ba5bb147 | 666 | if (pipe->readers || pipe->writers) { |
a9a08845 | 667 | wake_up_interruptible_sync_poll(&pipe->wait, EPOLLIN | EPOLLOUT | EPOLLRDNORM | EPOLLWRNORM | EPOLLERR | EPOLLHUP); |
923f4f23 IM |
668 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
669 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); | |
1da177e4 | 670 | } |
ebec73f4 | 671 | __pipe_unlock(pipe); |
ba5bb147 | 672 | |
b0d8d229 | 673 | put_pipe_info(inode, pipe); |
1da177e4 LT |
674 | return 0; |
675 | } | |
676 | ||
677 | static int | |
599a0ac1 | 678 | pipe_fasync(int fd, struct file *filp, int on) |
1da177e4 | 679 | { |
de32ec4c | 680 | struct pipe_inode_info *pipe = filp->private_data; |
599a0ac1 | 681 | int retval = 0; |
1da177e4 | 682 | |
ebec73f4 | 683 | __pipe_lock(pipe); |
599a0ac1 AV |
684 | if (filp->f_mode & FMODE_READ) |
685 | retval = fasync_helper(fd, filp, on, &pipe->fasync_readers); | |
686 | if ((filp->f_mode & FMODE_WRITE) && retval >= 0) { | |
341b446b | 687 | retval = fasync_helper(fd, filp, on, &pipe->fasync_writers); |
599a0ac1 AV |
688 | if (retval < 0 && (filp->f_mode & FMODE_READ)) |
689 | /* this can happen only if on == T */ | |
e5bc49ba ON |
690 | fasync_helper(-1, filp, 0, &pipe->fasync_readers); |
691 | } | |
ebec73f4 | 692 | __pipe_unlock(pipe); |
60aa4924 | 693 | return retval; |
1da177e4 LT |
694 | } |
695 | ||
9c87bcf0 | 696 | static unsigned long account_pipe_buffers(struct user_struct *user, |
759c0114 WT |
697 | unsigned long old, unsigned long new) |
698 | { | |
9c87bcf0 | 699 | return atomic_long_add_return(new - old, &user->pipe_bufs); |
759c0114 WT |
700 | } |
701 | ||
9c87bcf0 | 702 | static bool too_many_pipe_buffers_soft(unsigned long user_bufs) |
759c0114 | 703 | { |
f7340761 EB |
704 | unsigned long soft_limit = READ_ONCE(pipe_user_pages_soft); |
705 | ||
706 | return soft_limit && user_bufs > soft_limit; | |
759c0114 WT |
707 | } |
708 | ||
9c87bcf0 | 709 | static bool too_many_pipe_buffers_hard(unsigned long user_bufs) |
759c0114 | 710 | { |
f7340761 EB |
711 | unsigned long hard_limit = READ_ONCE(pipe_user_pages_hard); |
712 | ||
713 | return hard_limit && user_bufs > hard_limit; | |
759c0114 WT |
714 | } |
715 | ||
85c2dd54 EB |
716 | static bool is_unprivileged_user(void) |
717 | { | |
718 | return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN); | |
719 | } | |
720 | ||
7bee130e | 721 | struct pipe_inode_info *alloc_pipe_info(void) |
3a326a2c | 722 | { |
923f4f23 | 723 | struct pipe_inode_info *pipe; |
09b4d199 MK |
724 | unsigned long pipe_bufs = PIPE_DEF_BUFFERS; |
725 | struct user_struct *user = get_current_user(); | |
9c87bcf0 | 726 | unsigned long user_bufs; |
f7340761 | 727 | unsigned int max_size = READ_ONCE(pipe_max_size); |
3a326a2c | 728 | |
d86133bd | 729 | pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL_ACCOUNT); |
09b4d199 MK |
730 | if (pipe == NULL) |
731 | goto out_free_uid; | |
732 | ||
f7340761 EB |
733 | if (pipe_bufs * PAGE_SIZE > max_size && !capable(CAP_SYS_RESOURCE)) |
734 | pipe_bufs = max_size >> PAGE_SHIFT; | |
086e774a | 735 | |
9c87bcf0 | 736 | user_bufs = account_pipe_buffers(user, 0, pipe_bufs); |
a005ca0e | 737 | |
85c2dd54 | 738 | if (too_many_pipe_buffers_soft(user_bufs) && is_unprivileged_user()) { |
9c87bcf0 | 739 | user_bufs = account_pipe_buffers(user, pipe_bufs, 1); |
a005ca0e | 740 | pipe_bufs = 1; |
09b4d199 | 741 | } |
759c0114 | 742 | |
85c2dd54 | 743 | if (too_many_pipe_buffers_hard(user_bufs) && is_unprivileged_user()) |
a005ca0e MK |
744 | goto out_revert_acct; |
745 | ||
746 | pipe->bufs = kcalloc(pipe_bufs, sizeof(struct pipe_buffer), | |
747 | GFP_KERNEL_ACCOUNT); | |
748 | ||
09b4d199 MK |
749 | if (pipe->bufs) { |
750 | init_waitqueue_head(&pipe->wait); | |
751 | pipe->r_counter = pipe->w_counter = 1; | |
6718b6f8 | 752 | pipe->max_usage = pipe_bufs; |
8cefc107 | 753 | pipe->ring_size = pipe_bufs; |
09b4d199 | 754 | pipe->user = user; |
09b4d199 MK |
755 | mutex_init(&pipe->mutex); |
756 | return pipe; | |
3a326a2c IM |
757 | } |
758 | ||
a005ca0e | 759 | out_revert_acct: |
9c87bcf0 | 760 | (void) account_pipe_buffers(user, pipe_bufs, 0); |
09b4d199 MK |
761 | kfree(pipe); |
762 | out_free_uid: | |
763 | free_uid(user); | |
35f3d14d | 764 | return NULL; |
3a326a2c IM |
765 | } |
766 | ||
4b8a8f1e | 767 | void free_pipe_info(struct pipe_inode_info *pipe) |
1da177e4 LT |
768 | { |
769 | int i; | |
1da177e4 | 770 | |
8cefc107 | 771 | (void) account_pipe_buffers(pipe->user, pipe->ring_size, 0); |
759c0114 | 772 | free_uid(pipe->user); |
8cefc107 | 773 | for (i = 0; i < pipe->ring_size; i++) { |
923f4f23 | 774 | struct pipe_buffer *buf = pipe->bufs + i; |
1da177e4 | 775 | if (buf->ops) |
a779638c | 776 | pipe_buf_release(pipe, buf); |
1da177e4 | 777 | } |
923f4f23 IM |
778 | if (pipe->tmp_page) |
779 | __free_page(pipe->tmp_page); | |
35f3d14d | 780 | kfree(pipe->bufs); |
923f4f23 | 781 | kfree(pipe); |
1da177e4 LT |
782 | } |
783 | ||
fa3536cc | 784 | static struct vfsmount *pipe_mnt __read_mostly; |
341b446b | 785 | |
c23fbb6b ED |
786 | /* |
787 | * pipefs_dname() is called from d_path(). | |
788 | */ | |
789 | static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen) | |
790 | { | |
791 | return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]", | |
75c3cfa8 | 792 | d_inode(dentry)->i_ino); |
c23fbb6b ED |
793 | } |
794 | ||
3ba13d17 | 795 | static const struct dentry_operations pipefs_dentry_operations = { |
c23fbb6b | 796 | .d_dname = pipefs_dname, |
1da177e4 LT |
797 | }; |
798 | ||
799 | static struct inode * get_pipe_inode(void) | |
800 | { | |
a209dfc7 | 801 | struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb); |
923f4f23 | 802 | struct pipe_inode_info *pipe; |
1da177e4 LT |
803 | |
804 | if (!inode) | |
805 | goto fail_inode; | |
806 | ||
85fe4025 CH |
807 | inode->i_ino = get_next_ino(); |
808 | ||
7bee130e | 809 | pipe = alloc_pipe_info(); |
923f4f23 | 810 | if (!pipe) |
1da177e4 | 811 | goto fail_iput; |
3a326a2c | 812 | |
ba5bb147 AV |
813 | inode->i_pipe = pipe; |
814 | pipe->files = 2; | |
923f4f23 | 815 | pipe->readers = pipe->writers = 1; |
599a0ac1 | 816 | inode->i_fop = &pipefifo_fops; |
1da177e4 LT |
817 | |
818 | /* | |
819 | * Mark the inode dirty from the very beginning, | |
820 | * that way it will never be moved to the dirty | |
821 | * list because "mark_inode_dirty()" will think | |
822 | * that it already _is_ on the dirty list. | |
823 | */ | |
824 | inode->i_state = I_DIRTY; | |
825 | inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR; | |
da9592ed DH |
826 | inode->i_uid = current_fsuid(); |
827 | inode->i_gid = current_fsgid(); | |
078cd827 | 828 | inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); |
923f4f23 | 829 | |
1da177e4 LT |
830 | return inode; |
831 | ||
832 | fail_iput: | |
833 | iput(inode); | |
341b446b | 834 | |
1da177e4 LT |
835 | fail_inode: |
836 | return NULL; | |
837 | } | |
838 | ||
e4fad8e5 | 839 | int create_pipe_files(struct file **res, int flags) |
1da177e4 | 840 | { |
e4fad8e5 | 841 | struct inode *inode = get_pipe_inode(); |
d6cbd281 | 842 | struct file *f; |
1da177e4 | 843 | |
1da177e4 | 844 | if (!inode) |
e4fad8e5 | 845 | return -ENFILE; |
1da177e4 | 846 | |
152b6372 AV |
847 | f = alloc_file_pseudo(inode, pipe_mnt, "", |
848 | O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT)), | |
849 | &pipefifo_fops); | |
e9bb1f9b | 850 | if (IS_ERR(f)) { |
152b6372 AV |
851 | free_pipe_info(inode->i_pipe); |
852 | iput(inode); | |
853 | return PTR_ERR(f); | |
e9bb1f9b | 854 | } |
341b446b | 855 | |
de32ec4c | 856 | f->private_data = inode->i_pipe; |
d6cbd281 | 857 | |
183266f2 AV |
858 | res[0] = alloc_file_clone(f, O_RDONLY | (flags & O_NONBLOCK), |
859 | &pipefifo_fops); | |
e9bb1f9b | 860 | if (IS_ERR(res[0])) { |
b10a4a9f AV |
861 | put_pipe_info(inode, inode->i_pipe); |
862 | fput(f); | |
863 | return PTR_ERR(res[0]); | |
e9bb1f9b | 864 | } |
de32ec4c | 865 | res[0]->private_data = inode->i_pipe; |
e4fad8e5 | 866 | res[1] = f; |
d8e464ec LT |
867 | stream_open(inode, res[0]); |
868 | stream_open(inode, res[1]); | |
e4fad8e5 | 869 | return 0; |
d6cbd281 AK |
870 | } |
871 | ||
5b249b1b | 872 | static int __do_pipe_flags(int *fd, struct file **files, int flags) |
d6cbd281 | 873 | { |
d6cbd281 AK |
874 | int error; |
875 | int fdw, fdr; | |
876 | ||
9883035a | 877 | if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT)) |
ed8cae8b UD |
878 | return -EINVAL; |
879 | ||
e4fad8e5 AV |
880 | error = create_pipe_files(files, flags); |
881 | if (error) | |
882 | return error; | |
d6cbd281 | 883 | |
ed8cae8b | 884 | error = get_unused_fd_flags(flags); |
d6cbd281 AK |
885 | if (error < 0) |
886 | goto err_read_pipe; | |
887 | fdr = error; | |
888 | ||
ed8cae8b | 889 | error = get_unused_fd_flags(flags); |
d6cbd281 AK |
890 | if (error < 0) |
891 | goto err_fdr; | |
892 | fdw = error; | |
893 | ||
157cf649 | 894 | audit_fd_pair(fdr, fdw); |
d6cbd281 AK |
895 | fd[0] = fdr; |
896 | fd[1] = fdw; | |
d6cbd281 AK |
897 | return 0; |
898 | ||
899 | err_fdr: | |
900 | put_unused_fd(fdr); | |
901 | err_read_pipe: | |
e4fad8e5 AV |
902 | fput(files[0]); |
903 | fput(files[1]); | |
d6cbd281 | 904 | return error; |
1da177e4 LT |
905 | } |
906 | ||
5b249b1b AV |
907 | int do_pipe_flags(int *fd, int flags) |
908 | { | |
909 | struct file *files[2]; | |
910 | int error = __do_pipe_flags(fd, files, flags); | |
911 | if (!error) { | |
912 | fd_install(fd[0], files[0]); | |
913 | fd_install(fd[1], files[1]); | |
914 | } | |
915 | return error; | |
916 | } | |
917 | ||
d35c7b0e UD |
918 | /* |
919 | * sys_pipe() is the normal C calling standard for creating | |
920 | * a pipe. It's not the way Unix traditionally does this, though. | |
921 | */ | |
0a216dd1 | 922 | static int do_pipe2(int __user *fildes, int flags) |
d35c7b0e | 923 | { |
5b249b1b | 924 | struct file *files[2]; |
d35c7b0e UD |
925 | int fd[2]; |
926 | int error; | |
927 | ||
5b249b1b | 928 | error = __do_pipe_flags(fd, files, flags); |
d35c7b0e | 929 | if (!error) { |
5b249b1b AV |
930 | if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) { |
931 | fput(files[0]); | |
932 | fput(files[1]); | |
933 | put_unused_fd(fd[0]); | |
934 | put_unused_fd(fd[1]); | |
d35c7b0e | 935 | error = -EFAULT; |
5b249b1b AV |
936 | } else { |
937 | fd_install(fd[0], files[0]); | |
938 | fd_install(fd[1], files[1]); | |
ba719bae | 939 | } |
d35c7b0e UD |
940 | } |
941 | return error; | |
942 | } | |
943 | ||
0a216dd1 DB |
944 | SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags) |
945 | { | |
946 | return do_pipe2(fildes, flags); | |
947 | } | |
948 | ||
2b664219 | 949 | SYSCALL_DEFINE1(pipe, int __user *, fildes) |
ed8cae8b | 950 | { |
0a216dd1 | 951 | return do_pipe2(fildes, 0); |
ed8cae8b UD |
952 | } |
953 | ||
fc7478a2 | 954 | static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt) |
f776c738 | 955 | { |
8cefc107 | 956 | int cur = *cnt; |
f776c738 AV |
957 | |
958 | while (cur == *cnt) { | |
fc7478a2 | 959 | pipe_wait(pipe); |
f776c738 AV |
960 | if (signal_pending(current)) |
961 | break; | |
962 | } | |
963 | return cur == *cnt ? -ERESTARTSYS : 0; | |
964 | } | |
965 | ||
fc7478a2 | 966 | static void wake_up_partner(struct pipe_inode_info *pipe) |
f776c738 | 967 | { |
fc7478a2 | 968 | wake_up_interruptible(&pipe->wait); |
f776c738 AV |
969 | } |
970 | ||
971 | static int fifo_open(struct inode *inode, struct file *filp) | |
972 | { | |
973 | struct pipe_inode_info *pipe; | |
599a0ac1 | 974 | bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC; |
f776c738 AV |
975 | int ret; |
976 | ||
ba5bb147 AV |
977 | filp->f_version = 0; |
978 | ||
979 | spin_lock(&inode->i_lock); | |
980 | if (inode->i_pipe) { | |
981 | pipe = inode->i_pipe; | |
982 | pipe->files++; | |
983 | spin_unlock(&inode->i_lock); | |
984 | } else { | |
985 | spin_unlock(&inode->i_lock); | |
7bee130e | 986 | pipe = alloc_pipe_info(); |
f776c738 | 987 | if (!pipe) |
ba5bb147 AV |
988 | return -ENOMEM; |
989 | pipe->files = 1; | |
990 | spin_lock(&inode->i_lock); | |
991 | if (unlikely(inode->i_pipe)) { | |
992 | inode->i_pipe->files++; | |
993 | spin_unlock(&inode->i_lock); | |
4b8a8f1e | 994 | free_pipe_info(pipe); |
ba5bb147 AV |
995 | pipe = inode->i_pipe; |
996 | } else { | |
997 | inode->i_pipe = pipe; | |
998 | spin_unlock(&inode->i_lock); | |
999 | } | |
f776c738 | 1000 | } |
de32ec4c | 1001 | filp->private_data = pipe; |
ba5bb147 AV |
1002 | /* OK, we have a pipe and it's pinned down */ |
1003 | ||
ebec73f4 | 1004 | __pipe_lock(pipe); |
f776c738 AV |
1005 | |
1006 | /* We can only do regular read/write on fifos */ | |
d8e464ec | 1007 | stream_open(inode, filp); |
f776c738 | 1008 | |
d8e464ec | 1009 | switch (filp->f_mode & (FMODE_READ | FMODE_WRITE)) { |
f776c738 AV |
1010 | case FMODE_READ: |
1011 | /* | |
1012 | * O_RDONLY | |
1013 | * POSIX.1 says that O_NONBLOCK means return with the FIFO | |
1014 | * opened, even when there is no process writing the FIFO. | |
1015 | */ | |
f776c738 AV |
1016 | pipe->r_counter++; |
1017 | if (pipe->readers++ == 0) | |
fc7478a2 | 1018 | wake_up_partner(pipe); |
f776c738 | 1019 | |
599a0ac1 | 1020 | if (!is_pipe && !pipe->writers) { |
f776c738 | 1021 | if ((filp->f_flags & O_NONBLOCK)) { |
a9a08845 | 1022 | /* suppress EPOLLHUP until we have |
f776c738 AV |
1023 | * seen a writer */ |
1024 | filp->f_version = pipe->w_counter; | |
1025 | } else { | |
fc7478a2 | 1026 | if (wait_for_partner(pipe, &pipe->w_counter)) |
f776c738 AV |
1027 | goto err_rd; |
1028 | } | |
1029 | } | |
1030 | break; | |
8cefc107 | 1031 | |
f776c738 AV |
1032 | case FMODE_WRITE: |
1033 | /* | |
1034 | * O_WRONLY | |
1035 | * POSIX.1 says that O_NONBLOCK means return -1 with | |
1036 | * errno=ENXIO when there is no process reading the FIFO. | |
1037 | */ | |
1038 | ret = -ENXIO; | |
599a0ac1 | 1039 | if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers) |
f776c738 AV |
1040 | goto err; |
1041 | ||
f776c738 AV |
1042 | pipe->w_counter++; |
1043 | if (!pipe->writers++) | |
fc7478a2 | 1044 | wake_up_partner(pipe); |
f776c738 | 1045 | |
599a0ac1 | 1046 | if (!is_pipe && !pipe->readers) { |
fc7478a2 | 1047 | if (wait_for_partner(pipe, &pipe->r_counter)) |
f776c738 AV |
1048 | goto err_wr; |
1049 | } | |
1050 | break; | |
8cefc107 | 1051 | |
f776c738 AV |
1052 | case FMODE_READ | FMODE_WRITE: |
1053 | /* | |
1054 | * O_RDWR | |
1055 | * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set. | |
1056 | * This implementation will NEVER block on a O_RDWR open, since | |
1057 | * the process can at least talk to itself. | |
1058 | */ | |
f776c738 AV |
1059 | |
1060 | pipe->readers++; | |
1061 | pipe->writers++; | |
1062 | pipe->r_counter++; | |
1063 | pipe->w_counter++; | |
1064 | if (pipe->readers == 1 || pipe->writers == 1) | |
fc7478a2 | 1065 | wake_up_partner(pipe); |
f776c738 AV |
1066 | break; |
1067 | ||
1068 | default: | |
1069 | ret = -EINVAL; | |
1070 | goto err; | |
1071 | } | |
1072 | ||
1073 | /* Ok! */ | |
ebec73f4 | 1074 | __pipe_unlock(pipe); |
f776c738 AV |
1075 | return 0; |
1076 | ||
1077 | err_rd: | |
1078 | if (!--pipe->readers) | |
1079 | wake_up_interruptible(&pipe->wait); | |
1080 | ret = -ERESTARTSYS; | |
1081 | goto err; | |
1082 | ||
1083 | err_wr: | |
1084 | if (!--pipe->writers) | |
1085 | wake_up_interruptible(&pipe->wait); | |
1086 | ret = -ERESTARTSYS; | |
1087 | goto err; | |
1088 | ||
1089 | err: | |
ebec73f4 | 1090 | __pipe_unlock(pipe); |
b0d8d229 LT |
1091 | |
1092 | put_pipe_info(inode, pipe); | |
f776c738 AV |
1093 | return ret; |
1094 | } | |
1095 | ||
599a0ac1 AV |
1096 | const struct file_operations pipefifo_fops = { |
1097 | .open = fifo_open, | |
1098 | .llseek = no_llseek, | |
fb9096a3 | 1099 | .read_iter = pipe_read, |
f0d1bec9 | 1100 | .write_iter = pipe_write, |
a11e1d43 | 1101 | .poll = pipe_poll, |
599a0ac1 AV |
1102 | .unlocked_ioctl = pipe_ioctl, |
1103 | .release = pipe_release, | |
1104 | .fasync = pipe_fasync, | |
f776c738 AV |
1105 | }; |
1106 | ||
f491bd71 MK |
1107 | /* |
1108 | * Currently we rely on the pipe array holding a power-of-2 number | |
d3f14c48 | 1109 | * of pages. Returns 0 on error. |
f491bd71 | 1110 | */ |
96e99be4 | 1111 | unsigned int round_pipe_size(unsigned long size) |
f491bd71 | 1112 | { |
c4fed5a9 | 1113 | if (size > (1U << 31)) |
96e99be4 EB |
1114 | return 0; |
1115 | ||
4c2e4bef EB |
1116 | /* Minimum pipe size, as required by POSIX */ |
1117 | if (size < PAGE_SIZE) | |
c4fed5a9 | 1118 | return PAGE_SIZE; |
d3f14c48 | 1119 | |
c4fed5a9 | 1120 | return roundup_pow_of_two(size); |
f491bd71 MK |
1121 | } |
1122 | ||
35f3d14d JA |
1123 | /* |
1124 | * Allocate a new array of pipe buffers and copy the info over. Returns the | |
1125 | * pipe size if successful, or return -ERROR on error. | |
1126 | */ | |
d37d4166 | 1127 | static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long arg) |
35f3d14d JA |
1128 | { |
1129 | struct pipe_buffer *bufs; | |
8cefc107 | 1130 | unsigned int size, nr_slots, head, tail, mask, n; |
9c87bcf0 | 1131 | unsigned long user_bufs; |
b0b91d18 | 1132 | long ret = 0; |
d37d4166 MK |
1133 | |
1134 | size = round_pipe_size(arg); | |
8cefc107 | 1135 | nr_slots = size >> PAGE_SHIFT; |
d37d4166 | 1136 | |
8cefc107 | 1137 | if (!nr_slots) |
d37d4166 MK |
1138 | return -EINVAL; |
1139 | ||
b0b91d18 MK |
1140 | /* |
1141 | * If trying to increase the pipe capacity, check that an | |
1142 | * unprivileged user is not trying to exceed various limits | |
1143 | * (soft limit check here, hard limit check just below). | |
1144 | * Decreasing the pipe capacity is always permitted, even | |
1145 | * if the user is currently over a limit. | |
1146 | */ | |
8cefc107 | 1147 | if (nr_slots > pipe->ring_size && |
b0b91d18 | 1148 | size > pipe_max_size && !capable(CAP_SYS_RESOURCE)) |
d37d4166 MK |
1149 | return -EPERM; |
1150 | ||
8cefc107 | 1151 | user_bufs = account_pipe_buffers(pipe->user, pipe->ring_size, nr_slots); |
b0b91d18 | 1152 | |
8cefc107 | 1153 | if (nr_slots > pipe->ring_size && |
9c87bcf0 MK |
1154 | (too_many_pipe_buffers_hard(user_bufs) || |
1155 | too_many_pipe_buffers_soft(user_bufs)) && | |
85c2dd54 | 1156 | is_unprivileged_user()) { |
b0b91d18 MK |
1157 | ret = -EPERM; |
1158 | goto out_revert_acct; | |
1159 | } | |
35f3d14d | 1160 | |
35f3d14d | 1161 | /* |
8cefc107 DH |
1162 | * We can shrink the pipe, if arg is greater than the ring occupancy. |
1163 | * Since we don't expect a lot of shrink+grow operations, just free and | |
1164 | * allocate again like we would do for growing. If the pipe currently | |
35f3d14d JA |
1165 | * contains more buffers than arg, then return busy. |
1166 | */ | |
8cefc107 DH |
1167 | mask = pipe->ring_size - 1; |
1168 | head = pipe->head; | |
1169 | tail = pipe->tail; | |
1170 | n = pipe_occupancy(pipe->head, pipe->tail); | |
1171 | if (nr_slots < n) { | |
b0b91d18 MK |
1172 | ret = -EBUSY; |
1173 | goto out_revert_acct; | |
1174 | } | |
35f3d14d | 1175 | |
8cefc107 | 1176 | bufs = kcalloc(nr_slots, sizeof(*bufs), |
d86133bd | 1177 | GFP_KERNEL_ACCOUNT | __GFP_NOWARN); |
b0b91d18 MK |
1178 | if (unlikely(!bufs)) { |
1179 | ret = -ENOMEM; | |
1180 | goto out_revert_acct; | |
1181 | } | |
35f3d14d JA |
1182 | |
1183 | /* | |
1184 | * The pipe array wraps around, so just start the new one at zero | |
8cefc107 | 1185 | * and adjust the indices. |
35f3d14d | 1186 | */ |
8cefc107 DH |
1187 | if (n > 0) { |
1188 | unsigned int h = head & mask; | |
1189 | unsigned int t = tail & mask; | |
1190 | if (h > t) { | |
1191 | memcpy(bufs, pipe->bufs + t, | |
1192 | n * sizeof(struct pipe_buffer)); | |
1193 | } else { | |
1194 | unsigned int tsize = pipe->ring_size - t; | |
1195 | if (h > 0) | |
1196 | memcpy(bufs + tsize, pipe->bufs, | |
1197 | h * sizeof(struct pipe_buffer)); | |
1198 | memcpy(bufs, pipe->bufs + t, | |
1199 | tsize * sizeof(struct pipe_buffer)); | |
1200 | } | |
35f3d14d JA |
1201 | } |
1202 | ||
8cefc107 DH |
1203 | head = n; |
1204 | tail = 0; | |
1205 | ||
35f3d14d JA |
1206 | kfree(pipe->bufs); |
1207 | pipe->bufs = bufs; | |
8cefc107 | 1208 | pipe->ring_size = nr_slots; |
6718b6f8 | 1209 | pipe->max_usage = nr_slots; |
8cefc107 DH |
1210 | pipe->tail = tail; |
1211 | pipe->head = head; | |
8c7b8c34 | 1212 | wake_up_interruptible_all(&pipe->wait); |
6718b6f8 | 1213 | return pipe->max_usage * PAGE_SIZE; |
b0b91d18 MK |
1214 | |
1215 | out_revert_acct: | |
8cefc107 | 1216 | (void) account_pipe_buffers(pipe->user, nr_slots, pipe->ring_size); |
b0b91d18 | 1217 | return ret; |
35f3d14d JA |
1218 | } |
1219 | ||
72083646 LT |
1220 | /* |
1221 | * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same | |
1222 | * location, so checking ->i_pipe is not enough to verify that this is a | |
1223 | * pipe. | |
1224 | */ | |
1225 | struct pipe_inode_info *get_pipe_info(struct file *file) | |
1226 | { | |
de32ec4c | 1227 | return file->f_op == &pipefifo_fops ? file->private_data : NULL; |
72083646 LT |
1228 | } |
1229 | ||
35f3d14d JA |
1230 | long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg) |
1231 | { | |
1232 | struct pipe_inode_info *pipe; | |
1233 | long ret; | |
1234 | ||
c66fb347 | 1235 | pipe = get_pipe_info(file); |
35f3d14d JA |
1236 | if (!pipe) |
1237 | return -EBADF; | |
1238 | ||
ebec73f4 | 1239 | __pipe_lock(pipe); |
35f3d14d JA |
1240 | |
1241 | switch (cmd) { | |
d37d4166 MK |
1242 | case F_SETPIPE_SZ: |
1243 | ret = pipe_set_size(pipe, arg); | |
35f3d14d JA |
1244 | break; |
1245 | case F_GETPIPE_SZ: | |
6718b6f8 | 1246 | ret = pipe->max_usage * PAGE_SIZE; |
35f3d14d JA |
1247 | break; |
1248 | default: | |
1249 | ret = -EINVAL; | |
1250 | break; | |
1251 | } | |
1252 | ||
ebec73f4 | 1253 | __pipe_unlock(pipe); |
35f3d14d JA |
1254 | return ret; |
1255 | } | |
1256 | ||
ff0c7d15 NP |
1257 | static const struct super_operations pipefs_ops = { |
1258 | .destroy_inode = free_inode_nonrcu, | |
d70ef97b | 1259 | .statfs = simple_statfs, |
ff0c7d15 NP |
1260 | }; |
1261 | ||
1da177e4 LT |
1262 | /* |
1263 | * pipefs should _never_ be mounted by userland - too much of security hassle, | |
1264 | * no real gain from having the whole whorehouse mounted. So we don't need | |
1265 | * any operations on the root directory. However, we need a non-trivial | |
1266 | * d_name - pipe: will go nicely and kill the special-casing in procfs. | |
1267 | */ | |
4fa7ec5d DH |
1268 | |
1269 | static int pipefs_init_fs_context(struct fs_context *fc) | |
1da177e4 | 1270 | { |
4fa7ec5d DH |
1271 | struct pseudo_fs_context *ctx = init_pseudo(fc, PIPEFS_MAGIC); |
1272 | if (!ctx) | |
1273 | return -ENOMEM; | |
1274 | ctx->ops = &pipefs_ops; | |
1275 | ctx->dops = &pipefs_dentry_operations; | |
1276 | return 0; | |
1da177e4 LT |
1277 | } |
1278 | ||
1279 | static struct file_system_type pipe_fs_type = { | |
1280 | .name = "pipefs", | |
4fa7ec5d | 1281 | .init_fs_context = pipefs_init_fs_context, |
1da177e4 LT |
1282 | .kill_sb = kill_anon_super, |
1283 | }; | |
1284 | ||
1285 | static int __init init_pipe_fs(void) | |
1286 | { | |
1287 | int err = register_filesystem(&pipe_fs_type); | |
341b446b | 1288 | |
1da177e4 LT |
1289 | if (!err) { |
1290 | pipe_mnt = kern_mount(&pipe_fs_type); | |
1291 | if (IS_ERR(pipe_mnt)) { | |
1292 | err = PTR_ERR(pipe_mnt); | |
1293 | unregister_filesystem(&pipe_fs_type); | |
1294 | } | |
1295 | } | |
1296 | return err; | |
1297 | } | |
1298 | ||
1da177e4 | 1299 | fs_initcall(init_pipe_fs); |