projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c64c67c
)
fs: prevent out-of-bounds array speculation when closing a file descriptor
author
Theodore Ts'o
<tytso@mit.edu>
Mon, 6 Mar 2023 18:54:50 +0000
(13:54 -0500)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Fri, 10 Mar 2023 03:46:21 +0000
(22:46 -0500)
Google-Bug-Id:
114199369
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/file.c
patch
|
blob
|
history
diff --git
a/fs/file.c
b/fs/file.c
index
c942c89
..
7893ea1
100644
(file)
--- a/
fs/file.c
+++ b/
fs/file.c
@@
-642,6
+642,7
@@
static struct file *pick_file(struct files_struct *files, unsigned fd)
if (fd >= fdt->max_fds)
return NULL;
+ fd = array_index_nospec(fd, fdt->max_fds);
file = fdt->fd[fd];
if (file) {
rcu_assign_pointer(fdt->fd[fd], NULL);