blob: 2d3c3d01064c98cb210f489258c6ea776ee1f557 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Ingo Molnarc33fa9f2008-04-17 20:05:36 +02002/*
3 * Access kernel memory without faulting.
4 */
Paul Gortmakerb95f1b312011-10-16 02:01:52 -04005#include <linux/export.h>
Ingo Molnarc33fa9f2008-04-17 20:05:36 +02006#include <linux/mm.h>
David Howells7c7fcf72010-10-27 17:29:01 +01007#include <linux/uaccess.h>
Ingo Molnarc33fa9f2008-04-17 20:05:36 +02008
Masami Hiramatsu3d708182019-05-15 14:38:18 +09009static __always_inline long
10probe_read_common(void *dst, const void __user *src, size_t size)
11{
12 long ret;
13
14 pagefault_disable();
15 ret = __copy_from_user_inatomic(dst, src, size);
16 pagefault_enable();
17
18 return ret ? -EFAULT : 0;
19}
20
Daniel Borkmann1d1585c2019-11-02 00:17:56 +010021static __always_inline long
22probe_write_common(void __user *dst, const void *src, size_t size)
23{
24 long ret;
25
26 pagefault_disable();
27 ret = __copy_to_user_inatomic(dst, src, size);
28 pagefault_enable();
29
30 return ret ? -EFAULT : 0;
31}
32
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020033/**
Masami Hiramatsu3d708182019-05-15 14:38:18 +090034 * probe_kernel_read(): safely attempt to read from a kernel-space location
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020035 * @dst: pointer to the buffer that shall take the data
36 * @src: address to read from
37 * @size: size of the data chunk
38 *
39 * Safely read from address @src to the buffer at @dst. If a kernel fault
40 * happens, handle that and return -EFAULT.
Andrew Morton0ab32b62015-11-05 18:46:03 -080041 *
42 * We ensure that the copy_from_user is executed in atomic context so that
43 * do_page_fault() doesn't attempt to take mmap_sem. This makes
44 * probe_kernel_read() suitable for use within regions where the caller
45 * already holds mmap_sem, or other locks which nest inside mmap_sem.
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020046 */
Jason Wessel6144a852010-01-07 11:58:36 -060047
Steven Rostedtf29c5042011-05-19 14:35:33 -040048long __weak probe_kernel_read(void *dst, const void *src, size_t size)
Jason Wessel6144a852010-01-07 11:58:36 -060049 __attribute__((alias("__probe_kernel_read")));
50
Steven Rostedtf29c5042011-05-19 14:35:33 -040051long __probe_kernel_read(void *dst, const void *src, size_t size)
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020052{
53 long ret;
Jason Wesselb4b8ac52008-02-20 13:33:38 -060054 mm_segment_t old_fs = get_fs();
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020055
Jason Wesselb4b8ac52008-02-20 13:33:38 -060056 set_fs(KERNEL_DS);
Masami Hiramatsu3d708182019-05-15 14:38:18 +090057 ret = probe_read_common(dst, (__force const void __user *)src, size);
Jason Wesselb4b8ac52008-02-20 13:33:38 -060058 set_fs(old_fs);
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020059
Masami Hiramatsu3d708182019-05-15 14:38:18 +090060 return ret;
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020061}
62EXPORT_SYMBOL_GPL(probe_kernel_read);
63
64/**
Masami Hiramatsu3d708182019-05-15 14:38:18 +090065 * probe_user_read(): safely attempt to read from a user-space location
66 * @dst: pointer to the buffer that shall take the data
67 * @src: address to read from. This must be a user address.
68 * @size: size of the data chunk
69 *
70 * Safely read from user address @src to the buffer at @dst. If a kernel fault
71 * happens, handle that and return -EFAULT.
72 */
73
74long __weak probe_user_read(void *dst, const void __user *src, size_t size)
75 __attribute__((alias("__probe_user_read")));
76
77long __probe_user_read(void *dst, const void __user *src, size_t size)
78{
79 long ret = -EFAULT;
80 mm_segment_t old_fs = get_fs();
81
82 set_fs(USER_DS);
83 if (access_ok(src, size))
84 ret = probe_read_common(dst, src, size);
85 set_fs(old_fs);
86
87 return ret;
88}
89EXPORT_SYMBOL_GPL(probe_user_read);
90
91/**
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020092 * probe_kernel_write(): safely attempt to write to a location
93 * @dst: address to write to
94 * @src: pointer to the data that shall be written
95 * @size: size of the data chunk
96 *
97 * Safely write to address @dst from the buffer at @src. If a kernel fault
98 * happens, handle that and return -EFAULT.
99 */
Daniel Borkmann1d1585c2019-11-02 00:17:56 +0100100
Steven Rostedtf29c5042011-05-19 14:35:33 -0400101long __weak probe_kernel_write(void *dst, const void *src, size_t size)
Jason Wessel6144a852010-01-07 11:58:36 -0600102 __attribute__((alias("__probe_kernel_write")));
103
Steven Rostedtf29c5042011-05-19 14:35:33 -0400104long __probe_kernel_write(void *dst, const void *src, size_t size)
Ingo Molnarc33fa9f2008-04-17 20:05:36 +0200105{
106 long ret;
Jason Wesselb4b8ac52008-02-20 13:33:38 -0600107 mm_segment_t old_fs = get_fs();
Ingo Molnarc33fa9f2008-04-17 20:05:36 +0200108
Jason Wesselb4b8ac52008-02-20 13:33:38 -0600109 set_fs(KERNEL_DS);
Daniel Borkmann1d1585c2019-11-02 00:17:56 +0100110 ret = probe_write_common((__force void __user *)dst, src, size);
Jason Wesselb4b8ac52008-02-20 13:33:38 -0600111 set_fs(old_fs);
Ingo Molnarc33fa9f2008-04-17 20:05:36 +0200112
Daniel Borkmann1d1585c2019-11-02 00:17:56 +0100113 return ret;
Ingo Molnarc33fa9f2008-04-17 20:05:36 +0200114}
115EXPORT_SYMBOL_GPL(probe_kernel_write);
Alexei Starovoitovdbb7ee02015-08-31 08:57:10 -0700116
Daniel Borkmann1d1585c2019-11-02 00:17:56 +0100117/**
118 * probe_user_write(): safely attempt to write to a user-space location
119 * @dst: address to write to
120 * @src: pointer to the data that shall be written
121 * @size: size of the data chunk
122 *
123 * Safely write to address @dst from the buffer at @src. If a kernel fault
124 * happens, handle that and return -EFAULT.
125 */
126
127long __weak probe_user_write(void __user *dst, const void *src, size_t size)
128 __attribute__((alias("__probe_user_write")));
129
130long __probe_user_write(void __user *dst, const void *src, size_t size)
131{
132 long ret = -EFAULT;
133 mm_segment_t old_fs = get_fs();
134
135 set_fs(USER_DS);
136 if (access_ok(dst, size))
137 ret = probe_write_common(dst, src, size);
138 set_fs(old_fs);
139
140 return ret;
141}
142EXPORT_SYMBOL_GPL(probe_user_write);
Masami Hiramatsu3d708182019-05-15 14:38:18 +0900143
Alexei Starovoitovdbb7ee02015-08-31 08:57:10 -0700144/**
145 * strncpy_from_unsafe: - Copy a NUL terminated string from unsafe address.
146 * @dst: Destination address, in kernel space. This buffer must be at
147 * least @count bytes long.
Mike Rapoportf144c392018-02-06 15:42:16 -0800148 * @unsafe_addr: Unsafe address.
Alexei Starovoitovdbb7ee02015-08-31 08:57:10 -0700149 * @count: Maximum number of bytes to copy, including the trailing NUL.
150 *
151 * Copies a NUL-terminated string from unsafe address to kernel buffer.
152 *
153 * On success, returns the length of the string INCLUDING the trailing NUL.
154 *
155 * If access fails, returns -EFAULT (some data may have been copied
156 * and the trailing NUL added).
157 *
158 * If @count is smaller than the length of the string, copies @count-1 bytes,
159 * sets the last byte of @dst buffer to NUL and returns @count.
160 */
161long strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count)
162{
163 mm_segment_t old_fs = get_fs();
164 const void *src = unsafe_addr;
165 long ret;
166
167 if (unlikely(count <= 0))
168 return 0;
169
170 set_fs(KERNEL_DS);
171 pagefault_disable();
172
173 do {
Linus Torvaldsbd28b142016-05-22 17:21:27 -0700174 ret = __get_user(*dst++, (const char __user __force *)src++);
Alexei Starovoitovdbb7ee02015-08-31 08:57:10 -0700175 } while (dst[-1] && ret == 0 && src - unsafe_addr < count);
176
177 dst[-1] = '\0';
178 pagefault_enable();
179 set_fs(old_fs);
180
Rasmus Villemoes9dd861d2015-11-05 18:50:11 -0800181 return ret ? -EFAULT : src - unsafe_addr;
Alexei Starovoitovdbb7ee02015-08-31 08:57:10 -0700182}
Masami Hiramatsu3d708182019-05-15 14:38:18 +0900183
184/**
185 * strncpy_from_unsafe_user: - Copy a NUL terminated string from unsafe user
186 * address.
187 * @dst: Destination address, in kernel space. This buffer must be at
188 * least @count bytes long.
189 * @unsafe_addr: Unsafe user address.
190 * @count: Maximum number of bytes to copy, including the trailing NUL.
191 *
192 * Copies a NUL-terminated string from unsafe user address to kernel buffer.
193 *
194 * On success, returns the length of the string INCLUDING the trailing NUL.
195 *
196 * If access fails, returns -EFAULT (some data may have been copied
197 * and the trailing NUL added).
198 *
199 * If @count is smaller than the length of the string, copies @count-1 bytes,
200 * sets the last byte of @dst buffer to NUL and returns @count.
201 */
202long strncpy_from_unsafe_user(char *dst, const void __user *unsafe_addr,
203 long count)
204{
205 mm_segment_t old_fs = get_fs();
206 long ret;
207
208 if (unlikely(count <= 0))
209 return 0;
210
211 set_fs(USER_DS);
212 pagefault_disable();
213 ret = strncpy_from_user(dst, unsafe_addr, count);
214 pagefault_enable();
215 set_fs(old_fs);
216
217 if (ret >= count) {
218 ret = count;
219 dst[ret - 1] = '\0';
220 } else if (ret > 0) {
221 ret++;
222 }
223
224 return ret;
225}
226
227/**
228 * strnlen_unsafe_user: - Get the size of a user string INCLUDING final NUL.
229 * @unsafe_addr: The string to measure.
230 * @count: Maximum count (including NUL)
231 *
232 * Get the size of a NUL-terminated string in user space without pagefault.
233 *
234 * Returns the size of the string INCLUDING the terminating NUL.
235 *
236 * If the string is too long, returns a number larger than @count. User
237 * has to check the return value against "> count".
238 * On exception (or invalid count), returns 0.
239 *
240 * Unlike strnlen_user, this can be used from IRQ handler etc. because
241 * it disables pagefaults.
242 */
243long strnlen_unsafe_user(const void __user *unsafe_addr, long count)
244{
245 mm_segment_t old_fs = get_fs();
246 int ret;
247
248 set_fs(USER_DS);
249 pagefault_disable();
250 ret = strnlen_user(unsafe_addr, count);
251 pagefault_enable();
252 set_fs(old_fs);
253
254 return ret;
255}