1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_GENERIC_UACCESS_H
3 #define __ASM_GENERIC_UACCESS_H
6 * User space memory access functions, these should work
7 * on any machine that has kernel and user data in the same
8 * address space, e.g. all NOMMU machines.
10 #include <linux/string.h>
11 #include <asm-generic/access_ok.h>
13 #ifdef CONFIG_UACCESS_MEMCPY
14 #include <asm/unaligned.h>
16 static __always_inline int
17 __get_user_fn(size_t size, const void __user *from, void *to)
19 BUILD_BUG_ON(!__builtin_constant_p(size));
23 *(u8 *)to = *((u8 __force *)from);
26 *(u16 *)to = get_unaligned((u16 __force *)from);
29 *(u32 *)to = get_unaligned((u32 __force *)from);
32 *(u64 *)to = get_unaligned((u64 __force *)from);
40 #define __get_user_fn(sz, u, k) __get_user_fn(sz, u, k)
42 static __always_inline int
43 __put_user_fn(size_t size, void __user *to, void *from)
45 BUILD_BUG_ON(!__builtin_constant_p(size));
49 *(u8 __force *)to = *(u8 *)from;
52 put_unaligned(*(u16 *)from, (u16 __force *)to);
55 put_unaligned(*(u32 *)from, (u32 __force *)to);
58 put_unaligned(*(u64 *)from, (u64 __force *)to);
65 #define __put_user_fn(sz, u, k) __put_user_fn(sz, u, k)
67 #define __get_kernel_nofault(dst, src, type, err_label) \
69 *((type *)dst) = get_unaligned((type *)(src)); \
70 if (0) /* make sure the label looks used to the compiler */ \
74 #define __put_kernel_nofault(dst, src, type, err_label) \
76 put_unaligned(*((type *)src), (type *)(dst)); \
77 if (0) /* make sure the label looks used to the compiler */ \
81 static inline __must_check unsigned long
82 raw_copy_from_user(void *to, const void __user * from, unsigned long n)
84 memcpy(to, (const void __force *)from, n);
88 static inline __must_check unsigned long
89 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
91 memcpy((void __force *)to, from, n);
94 #define INLINE_COPY_FROM_USER
95 #define INLINE_COPY_TO_USER
96 #endif /* CONFIG_UACCESS_MEMCPY */
99 * These are the main single-value transfer routines. They automatically
100 * use the right size if we just have the right pointer type.
101 * This version just falls back to copy_{from,to}_user, which should
102 * provide a fast-path for small values.
104 #define __put_user(x, ptr) \
106 __typeof__(*(ptr)) __x = (x); \
107 int __pu_err = -EFAULT; \
108 __chk_user_ptr(ptr); \
109 switch (sizeof (*(ptr))) { \
114 __pu_err = __put_user_fn(sizeof (*(ptr)), \
124 #define put_user(x, ptr) \
126 void __user *__p = (ptr); \
128 access_ok(__p, sizeof(*ptr)) ? \
129 __put_user((x), ((__typeof__(*(ptr)) __user *)__p)) : \
133 #ifndef __put_user_fn
135 static inline int __put_user_fn(size_t size, void __user *ptr, void *x)
137 return unlikely(raw_copy_to_user(ptr, x, size)) ? -EFAULT : 0;
140 #define __put_user_fn(sz, u, k) __put_user_fn(sz, u, k)
144 extern int __put_user_bad(void) __attribute__((noreturn));
146 #define __get_user(x, ptr) \
148 int __gu_err = -EFAULT; \
149 __chk_user_ptr(ptr); \
150 switch (sizeof(*(ptr))) { \
152 unsigned char __x = 0; \
153 __gu_err = __get_user_fn(sizeof (*(ptr)), \
155 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
159 unsigned short __x = 0; \
160 __gu_err = __get_user_fn(sizeof (*(ptr)), \
162 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
166 unsigned int __x = 0; \
167 __gu_err = __get_user_fn(sizeof (*(ptr)), \
169 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
173 unsigned long long __x = 0; \
174 __gu_err = __get_user_fn(sizeof (*(ptr)), \
176 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
186 #define get_user(x, ptr) \
188 const void __user *__p = (ptr); \
190 access_ok(__p, sizeof(*ptr)) ? \
191 __get_user((x), (__typeof__(*(ptr)) __user *)__p) :\
192 ((x) = (__typeof__(*(ptr)))0,-EFAULT); \
195 #ifndef __get_user_fn
196 static inline int __get_user_fn(size_t size, const void __user *ptr, void *x)
198 return unlikely(raw_copy_from_user(x, ptr, size)) ? -EFAULT : 0;
201 #define __get_user_fn(sz, u, k) __get_user_fn(sz, u, k)
205 extern int __get_user_bad(void) __attribute__((noreturn));
211 static inline __must_check unsigned long
212 __clear_user(void __user *to, unsigned long n)
214 memset((void __force *)to, 0, n);
219 static inline __must_check unsigned long
220 clear_user(void __user *to, unsigned long n)
223 if (!access_ok(to, n))
226 return __clear_user(to, n);
229 #include <asm/extable.h>
231 __must_check long strncpy_from_user(char *dst, const char __user *src,
233 __must_check long strnlen_user(const char __user *src, long n);
235 #endif /* __ASM_GENERIC_UACCESS_H */