uaccess.h 4.7 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4
#ifndef __ASM_SH_UACCESS_H
#define __ASM_SH_UACCESS_H

5
#include <asm/segment.h>
A
Al Viro 已提交
6
#include <asm/extable.h>
7 8 9 10 11 12 13 14 15 16 17 18

#define __addr_ok(addr) \
	((unsigned long __force)(addr) < current_thread_info()->addr_limit.seg)

/*
 * __access_ok: Check if address with size is OK or not.
 *
 * Uhhuh, this needs 33-bit arithmetic. We have a carry..
 *
 * sum := addr + size;  carry? --> flag = true;
 * if (sum >= addr_limit) flag = true;
 */
19 20 21 22 23
#define __access_ok(addr, size)	({				\
	unsigned long __ao_a = (addr), __ao_b = (size);		\
	unsigned long __ao_end = __ao_a + __ao_b - !!__ao_b;	\
	__ao_end >= __ao_a && __addr_ok(__ao_end); })

24
#define access_ok(addr, size)	\
25 26 27
	(__chk_user_ptr(addr),		\
	 __access_ok((unsigned long __force)(addr), (size)))

28 29
#define user_addr_max()	(current_thread_info()->addr_limit.seg)

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
/*
 * Uh, these should become the main single-value transfer routines ...
 * They automatically use the right size if we just have the right
 * pointer type ...
 *
 * As SuperH uses the same address space for kernel and user data, we
 * can just do these as direct assignments.
 *
 * Careful to not
 * (a) re-use the arguments for side effects (sizeof is ok)
 * (b) require any knowledge of processes at this stage
 */
#define put_user(x,ptr)		__put_user_check((x), (ptr), sizeof(*(ptr)))
#define get_user(x,ptr)		__get_user_check((x), (ptr), sizeof(*(ptr)))

/*
 * The "__xxx" versions do not do address space checking, useful when
 * doing multiple accesses to the same area (the user has to do the
 * checks by hand with "access_ok()")
 */
#define __put_user(x,ptr)	__put_user_nocheck((x), (ptr), sizeof(*(ptr)))
#define __get_user(x,ptr)	__get_user_nocheck((x), (ptr), sizeof(*(ptr)))

struct __large_struct { unsigned long buf[100]; };
#define __m(x) (*(struct __large_struct __user *)(x))

#define __get_user_nocheck(x,ptr,size)				\
({								\
	long __gu_err;						\
	unsigned long __gu_val;					\
	const __typeof__(*(ptr)) __user *__gu_addr = (ptr);	\
	__chk_user_ptr(ptr);					\
	__get_user_size(__gu_val, __gu_addr, (size), __gu_err);	\
63
	(x) = (__force __typeof__(*(ptr)))__gu_val;		\
64 65 66 67 68 69 70 71
	__gu_err;						\
})

#define __get_user_check(x,ptr,size)					\
({									\
	long __gu_err = -EFAULT;					\
	unsigned long __gu_val = 0;					\
	const __typeof__(*(ptr)) *__gu_addr = (ptr);			\
72
	if (likely(access_ok(__gu_addr, (size))))		\
73
		__get_user_size(__gu_val, __gu_addr, (size), __gu_err);	\
74
	(x) = (__force __typeof__(*(ptr)))__gu_val;			\
75 76 77 78 79 80 81
	__gu_err;							\
})

#define __put_user_nocheck(x,ptr,size)				\
({								\
	long __pu_err;						\
	__typeof__(*(ptr)) __user *__pu_addr = (ptr);		\
82
	__typeof__(*(ptr)) __pu_val = x;			\
83
	__chk_user_ptr(ptr);					\
84
	__put_user_size(__pu_val, __pu_addr, (size), __pu_err);	\
85 86 87 88 89 90 91
	__pu_err;						\
})

#define __put_user_check(x,ptr,size)				\
({								\
	long __pu_err = -EFAULT;				\
	__typeof__(*(ptr)) __user *__pu_addr = (ptr);		\
92
	__typeof__(*(ptr)) __pu_val = x;			\
93
	if (likely(access_ok(__pu_addr, size)))	\
94
		__put_user_size(__pu_val, __pu_addr, (size),	\
95 96 97 98
				__pu_err);			\
	__pu_err;						\
})

99
# include <asm/uaccess_32.h>
100

101 102
extern long strncpy_from_user(char *dest, const char __user *src, long count);

103 104
extern __must_check long strnlen_user(const char __user *str, long n);

105 106 107 108 109
/* Generic arbitrary sized copy.  */
/* Return the number of bytes NOT copied */
__kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n);

static __always_inline unsigned long
A
Al Viro 已提交
110
raw_copy_from_user(void *to, const void __user *from, unsigned long n)
111 112 113 114 115
{
	return __copy_user(to, (__force void *)from, n);
}

static __always_inline unsigned long __must_check
A
Al Viro 已提交
116
raw_copy_to_user(void __user *to, const void *from, unsigned long n)
117 118 119
{
	return __copy_user((__force void *)to, from, n);
}
A
Al Viro 已提交
120 121
#define INLINE_COPY_FROM_USER
#define INLINE_COPY_TO_USER
122 123 124 125 126 127 128 129 130 131 132 133

/*
 * Clear the area and return remaining number of bytes
 * (on failure.  Usually it's 0.)
 */
__kernel_size_t __clear_user(void *addr, __kernel_size_t size);

#define clear_user(addr,n)						\
({									\
	void __user * __cl_addr = (addr);				\
	unsigned long __cl_size = (n);					\
									\
134
	if (__cl_size && access_ok(__cl_addr, __cl_size))		\
135 136 137 138 139
		__cl_size = __clear_user(__cl_addr, __cl_size);		\
									\
	__cl_size;							\
})

D
David Howells 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153
extern void *set_exception_table_vec(unsigned int vec, void *handler);

static inline void *set_exception_table_evt(unsigned int evt, void *handler)
{
	return set_exception_table_vec(evt >> 5, handler);
}

struct mem_access {
	unsigned long (*from)(void *dst, const void __user *src, unsigned long cnt);
	unsigned long (*to)(void __user *dst, const void *src, unsigned long cnt);
};

int handle_unaligned_access(insn_size_t instruction, struct pt_regs *regs,
			    struct mem_access *ma, int, unsigned long address);
154

155
#endif /* __ASM_SH_UACCESS_H */