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>
12 #ifdef CONFIG_UACCESS_MEMCPY
13 #include <asm/unaligned.h>
15 static __always_inline
int
16 __get_user_fn(size_t size
, const void __user
*from
, void *to
)
18 BUILD_BUG_ON(!__builtin_constant_p(size
));
22 *(u8
*)to
= get_unaligned((u8 __force
*)from
);
25 *(u16
*)to
= get_unaligned((u16 __force
*)from
);
28 *(u32
*)to
= get_unaligned((u32 __force
*)from
);
31 *(u64
*)to
= get_unaligned((u64 __force
*)from
);
39 #define __get_user_fn(sz, u, k) __get_user_fn(sz, u, k)
41 static __always_inline
int
42 __put_user_fn(size_t size
, void __user
*to
, void *from
)
44 BUILD_BUG_ON(!__builtin_constant_p(size
));
48 put_unaligned(*(u8
*)from
, (u8 __force
*)to
);
51 put_unaligned(*(u16
*)from
, (u16 __force
*)to
);
54 put_unaligned(*(u32
*)from
, (u32 __force
*)to
);
57 put_unaligned(*(u64
*)from
, (u64 __force
*)to
);
64 #define __put_user_fn(sz, u, k) __put_user_fn(sz, u, k)
66 #define __get_kernel_nofault(dst, src, type, err_label) \
68 *((type *)dst) = get_unaligned((type *)(src)); \
69 if (0) /* make sure the label looks used to the compiler */ \
73 #define __put_kernel_nofault(dst, src, type, err_label) \
75 put_unaligned(*((type *)src), (type *)(dst)); \
76 if (0) /* make sure the label looks used to the compiler */ \
80 #define HAVE_GET_KERNEL_NOFAULT 1
82 static inline __must_check
unsigned long
83 raw_copy_from_user(void *to
, const void __user
* from
, unsigned long n
)
85 memcpy(to
, (const void __force
*)from
, n
);
89 static inline __must_check
unsigned long
90 raw_copy_to_user(void __user
*to
, const void *from
, unsigned long n
)
92 memcpy((void __force
*)to
, from
, n
);
95 #define INLINE_COPY_FROM_USER
96 #define INLINE_COPY_TO_USER
97 #endif /* CONFIG_UACCESS_MEMCPY */
100 #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
103 #define KERNEL_DS MAKE_MM_SEG(~0UL)
107 #define USER_DS MAKE_MM_SEG(TASK_SIZE - 1)
111 #define get_fs() (current_thread_info()->addr_limit)
113 static inline void set_fs(mm_segment_t fs
)
115 current_thread_info()->addr_limit
= fs
;
119 #ifndef uaccess_kernel
120 #define uaccess_kernel() (get_fs().seg == KERNEL_DS.seg)
122 #endif /* CONFIG_SET_FS */
124 #define access_ok(addr, size) __access_ok((unsigned long)(addr),(size))
127 * The architecture should really override this if possible, at least
128 * doing a check on the get_fs()
131 static inline int __access_ok(unsigned long addr
, unsigned long size
)
138 * These are the main single-value transfer routines. They automatically
139 * use the right size if we just have the right pointer type.
140 * This version just falls back to copy_{from,to}_user, which should
141 * provide a fast-path for small values.
143 #define __put_user(x, ptr) \
145 __typeof__(*(ptr)) __x = (x); \
146 int __pu_err = -EFAULT; \
147 __chk_user_ptr(ptr); \
148 switch (sizeof (*(ptr))) { \
153 __pu_err = __put_user_fn(sizeof (*(ptr)), \
163 #define put_user(x, ptr) \
165 void __user *__p = (ptr); \
167 access_ok(__p, sizeof(*ptr)) ? \
168 __put_user((x), ((__typeof__(*(ptr)) __user *)__p)) : \
172 #ifndef __put_user_fn
174 static inline int __put_user_fn(size_t size
, void __user
*ptr
, void *x
)
176 return unlikely(raw_copy_to_user(ptr
, x
, size
)) ? -EFAULT
: 0;
179 #define __put_user_fn(sz, u, k) __put_user_fn(sz, u, k)
183 extern int __put_user_bad(void) __attribute__((noreturn
));
185 #define __get_user(x, ptr) \
187 int __gu_err = -EFAULT; \
188 __chk_user_ptr(ptr); \
189 switch (sizeof(*(ptr))) { \
191 unsigned char __x = 0; \
192 __gu_err = __get_user_fn(sizeof (*(ptr)), \
194 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
198 unsigned short __x = 0; \
199 __gu_err = __get_user_fn(sizeof (*(ptr)), \
201 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
205 unsigned int __x = 0; \
206 __gu_err = __get_user_fn(sizeof (*(ptr)), \
208 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
212 unsigned long long __x = 0; \
213 __gu_err = __get_user_fn(sizeof (*(ptr)), \
215 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
225 #define get_user(x, ptr) \
227 const void __user *__p = (ptr); \
229 access_ok(__p, sizeof(*ptr)) ? \
230 __get_user((x), (__typeof__(*(ptr)) __user *)__p) :\
231 ((x) = (__typeof__(*(ptr)))0,-EFAULT); \
234 #ifndef __get_user_fn
235 static inline int __get_user_fn(size_t size
, const void __user
*ptr
, void *x
)
237 return unlikely(raw_copy_from_user(x
, ptr
, size
)) ? -EFAULT
: 0;
240 #define __get_user_fn(sz, u, k) __get_user_fn(sz, u, k)
244 extern int __get_user_bad(void) __attribute__((noreturn
));
247 * Copy a null terminated string from userspace.
249 #ifndef __strncpy_from_user
251 __strncpy_from_user(char *dst
, const char __user
*src
, long count
)
254 strncpy(dst
, (const char __force
*)src
, count
);
255 for (tmp
= dst
; *tmp
&& count
> 0; tmp
++, count
--)
262 strncpy_from_user(char *dst
, const char __user
*src
, long count
)
264 if (!access_ok(src
, 1))
266 return __strncpy_from_user(dst
, src
, count
);
270 * Return the size of a string (including the ending 0)
272 * Return 0 on exception, a value greater than N if too long
274 #ifndef __strnlen_user
275 #define __strnlen_user(s, n) (strnlen((s), (n)) + 1)
279 * Unlike strnlen, strnlen_user includes the nul terminator in
280 * its returned count. Callers should check for a returned value
281 * greater than N as an indication the string is too long.
283 static inline long strnlen_user(const char __user
*src
, long n
)
285 if (!access_ok(src
, 1))
287 return __strnlen_user(src
, n
);
294 static inline __must_check
unsigned long
295 __clear_user(void __user
*to
, unsigned long n
)
297 memset((void __force
*)to
, 0, n
);
302 static inline __must_check
unsigned long
303 clear_user(void __user
*to
, unsigned long n
)
306 if (!access_ok(to
, n
))
309 return __clear_user(to
, n
);
312 #include <asm/extable.h>
314 #endif /* __ASM_GENERIC_UACCESS_H */