Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
| 2 | #include <linux/fs.h> |
| 3 | #include <linux/fs_struct.h> |
| 4 | #include <linux/kernel_read_file.h> |
| 5 | #include <linux/security.h> |
| 6 | #include <linux/vmalloc.h> |
| 7 | |
Kees Cook | 113eeb5 | 2020-10-02 10:38:18 -0700 | [diff] [blame] | 8 | /** |
| 9 | * kernel_read_file() - read file contents into a kernel buffer |
| 10 | * |
| 11 | * @file file to read from |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 12 | * @offset where to start reading from (see below). |
Kees Cook | 113eeb5 | 2020-10-02 10:38:18 -0700 | [diff] [blame] | 13 | * @buf pointer to a "void *" buffer for reading into (if |
| 14 | * *@buf is NULL, a buffer will be allocated, and |
| 15 | * @buf_size will be ignored) |
| 16 | * @buf_size size of buf, if already allocated. If @buf not |
| 17 | * allocated, this is the largest size to allocate. |
Kees Cook | 8853528 | 2020-10-02 10:38:19 -0700 | [diff] [blame] | 18 | * @file_size if non-NULL, the full size of @file will be |
| 19 | * written here. |
Kees Cook | 113eeb5 | 2020-10-02 10:38:18 -0700 | [diff] [blame] | 20 | * @id the kernel_read_file_id identifying the type of |
| 21 | * file contents being read (for LSMs to examine) |
| 22 | * |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 23 | * @offset must be 0 unless both @buf and @file_size are non-NULL |
| 24 | * (i.e. the caller must be expecting to read partial file contents |
| 25 | * via an already-allocated @buf, in at most @buf_size chunks, and |
| 26 | * will be able to determine when the entire file was read by |
| 27 | * checking @file_size). This isn't a recommended way to read a |
| 28 | * file, though, since it is possible that the contents might |
| 29 | * change between calls to kernel_read_file(). |
| 30 | * |
Kees Cook | 113eeb5 | 2020-10-02 10:38:18 -0700 | [diff] [blame] | 31 | * Returns number of bytes read (no single read will be bigger |
| 32 | * than INT_MAX), or negative on error. |
| 33 | * |
| 34 | */ |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 35 | int kernel_read_file(struct file *file, loff_t offset, void **buf, |
Kees Cook | 8853528 | 2020-10-02 10:38:19 -0700 | [diff] [blame] | 36 | size_t buf_size, size_t *file_size, |
| 37 | enum kernel_read_file_id id) |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 38 | { |
| 39 | loff_t i_size, pos; |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 40 | size_t copied; |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 41 | void *allocated = NULL; |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 42 | bool whole_file; |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 43 | int ret; |
| 44 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 45 | if (offset != 0 && (!*buf || !file_size)) |
| 46 | return -EINVAL; |
| 47 | |
Kees Cook | 113eeb5 | 2020-10-02 10:38:18 -0700 | [diff] [blame] | 48 | if (!S_ISREG(file_inode(file)->i_mode)) |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 49 | return -EINVAL; |
| 50 | |
| 51 | ret = deny_write_access(file); |
| 52 | if (ret) |
| 53 | return ret; |
| 54 | |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 55 | i_size = i_size_read(file_inode(file)); |
| 56 | if (i_size <= 0) { |
| 57 | ret = -EINVAL; |
| 58 | goto out; |
| 59 | } |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 60 | /* The file is too big for sane activities. */ |
| 61 | if (i_size > INT_MAX) { |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 62 | ret = -EFBIG; |
| 63 | goto out; |
| 64 | } |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 65 | /* The entire file cannot be read in one buffer. */ |
| 66 | if (!file_size && offset == 0 && i_size > buf_size) { |
| 67 | ret = -EFBIG; |
| 68 | goto out; |
| 69 | } |
| 70 | |
| 71 | whole_file = (offset == 0 && i_size <= buf_size); |
| 72 | ret = security_kernel_read_file(file, id, whole_file); |
| 73 | if (ret) |
| 74 | goto out; |
| 75 | |
Kees Cook | 8853528 | 2020-10-02 10:38:19 -0700 | [diff] [blame] | 76 | if (file_size) |
| 77 | *file_size = i_size; |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 78 | |
| 79 | if (!*buf) |
| 80 | *buf = allocated = vmalloc(i_size); |
| 81 | if (!*buf) { |
| 82 | ret = -ENOMEM; |
| 83 | goto out; |
| 84 | } |
| 85 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 86 | pos = offset; |
| 87 | copied = 0; |
| 88 | while (copied < buf_size) { |
| 89 | ssize_t bytes; |
| 90 | size_t wanted = min_t(size_t, buf_size - copied, |
| 91 | i_size - pos); |
| 92 | |
| 93 | bytes = kernel_read(file, *buf + copied, wanted, &pos); |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 94 | if (bytes < 0) { |
| 95 | ret = bytes; |
| 96 | goto out_free; |
| 97 | } |
| 98 | |
| 99 | if (bytes == 0) |
| 100 | break; |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 101 | copied += bytes; |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 102 | } |
| 103 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 104 | if (whole_file) { |
| 105 | if (pos != i_size) { |
| 106 | ret = -EIO; |
| 107 | goto out_free; |
| 108 | } |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 109 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 110 | ret = security_kernel_post_read_file(file, *buf, i_size, id); |
| 111 | } |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 112 | |
| 113 | out_free: |
| 114 | if (ret < 0) { |
| 115 | if (allocated) { |
| 116 | vfree(*buf); |
| 117 | *buf = NULL; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | out: |
| 122 | allow_write_access(file); |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 123 | return ret == 0 ? copied : ret; |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 124 | } |
| 125 | EXPORT_SYMBOL_GPL(kernel_read_file); |
| 126 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 127 | int kernel_read_file_from_path(const char *path, loff_t offset, void **buf, |
Kees Cook | 8853528 | 2020-10-02 10:38:19 -0700 | [diff] [blame] | 128 | size_t buf_size, size_t *file_size, |
| 129 | enum kernel_read_file_id id) |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 130 | { |
| 131 | struct file *file; |
| 132 | int ret; |
| 133 | |
| 134 | if (!path || !*path) |
| 135 | return -EINVAL; |
| 136 | |
| 137 | file = filp_open(path, O_RDONLY, 0); |
| 138 | if (IS_ERR(file)) |
| 139 | return PTR_ERR(file); |
| 140 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 141 | ret = kernel_read_file(file, offset, buf, buf_size, file_size, id); |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 142 | fput(file); |
| 143 | return ret; |
| 144 | } |
| 145 | EXPORT_SYMBOL_GPL(kernel_read_file_from_path); |
| 146 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 147 | int kernel_read_file_from_path_initns(const char *path, loff_t offset, |
| 148 | void **buf, size_t buf_size, |
| 149 | size_t *file_size, |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 150 | enum kernel_read_file_id id) |
| 151 | { |
| 152 | struct file *file; |
| 153 | struct path root; |
| 154 | int ret; |
| 155 | |
| 156 | if (!path || !*path) |
| 157 | return -EINVAL; |
| 158 | |
| 159 | task_lock(&init_task); |
| 160 | get_fs_root(init_task.fs, &root); |
| 161 | task_unlock(&init_task); |
| 162 | |
Al Viro | ffb37ca | 2021-04-01 19:00:57 -0400 | [diff] [blame] | 163 | file = file_open_root(&root, path, O_RDONLY, 0); |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 164 | path_put(&root); |
| 165 | if (IS_ERR(file)) |
| 166 | return PTR_ERR(file); |
| 167 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 168 | ret = kernel_read_file(file, offset, buf, buf_size, file_size, id); |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 169 | fput(file); |
| 170 | return ret; |
| 171 | } |
| 172 | EXPORT_SYMBOL_GPL(kernel_read_file_from_path_initns); |
| 173 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 174 | int kernel_read_file_from_fd(int fd, loff_t offset, void **buf, |
| 175 | size_t buf_size, size_t *file_size, |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 176 | enum kernel_read_file_id id) |
| 177 | { |
| 178 | struct fd f = fdget(fd); |
| 179 | int ret = -EBADF; |
| 180 | |
Matthew Wilcox (Oracle) | 032146c | 2021-10-18 15:16:12 -0700 | [diff] [blame] | 181 | if (!f.file || !(f.file->f_mode & FMODE_READ)) |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 182 | goto out; |
| 183 | |
Kees Cook | 0fa8e08 | 2020-10-02 10:38:25 -0700 | [diff] [blame] | 184 | ret = kernel_read_file(f.file, offset, buf, buf_size, file_size, id); |
Kees Cook | 5287b07 | 2020-10-02 10:38:16 -0700 | [diff] [blame] | 185 | out: |
| 186 | fdput(f); |
| 187 | return ret; |
| 188 | } |
| 189 | EXPORT_SYMBOL_GPL(kernel_read_file_from_fd); |