|
@@ -339,3 +339,133 @@ do { \
|
|
\
|
|
\
|
|
might_fault(); \
|
|
might_fault(); \
|
|
if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) { \
|
|
if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) { \
|
|
|
|
+ switch (size) { \
|
|
|
|
+ case 1: __put_user_asm("sb", __pu_addr); break; \
|
|
|
|
+ case 2: __put_user_asm("sh", __pu_addr); break; \
|
|
|
|
+ case 4: __put_user_asm("sw", __pu_addr); break; \
|
|
|
|
+ case 8: __PUT_USER_DW(__pu_addr); break; \
|
|
|
|
+ default: __put_user_unknown(); break; \
|
|
|
|
+ } \
|
|
|
|
+ } \
|
|
|
|
+ __pu_err; \
|
|
|
|
+})
|
|
|
|
+
|
|
|
|
+#define __put_user_asm(insn, ptr) \
|
|
|
|
+{ \
|
|
|
|
+ __asm__ __volatile__( \
|
|
|
|
+ "1: " insn " %z2, %3 # __put_user_asm\n" \
|
|
|
|
+ "2: \n" \
|
|
|
|
+ " .section .fixup,\"ax\" \n" \
|
|
|
|
+ "3: li %0, %4 \n" \
|
|
|
|
+ " j 2b \n" \
|
|
|
|
+ " .previous \n" \
|
|
|
|
+ " .section __ex_table,\"a\" \n" \
|
|
|
|
+ " " __UA_ADDR " 1b, 3b \n" \
|
|
|
|
+ " .previous \n" \
|
|
|
|
+ : "=r" (__pu_err) \
|
|
|
|
+ : "0" (0), "Jr" (__pu_val), "o" (__m(ptr)), \
|
|
|
|
+ "i" (-EFAULT)); \
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#define __put_user_asm_ll32(ptr) \
|
|
|
|
+{ \
|
|
|
|
+ __asm__ __volatile__( \
|
|
|
|
+ "1: sw %2, (%3) # __put_user_asm_ll32 \n" \
|
|
|
|
+ "2: sw %D2, 4(%3) \n" \
|
|
|
|
+ "3: \n" \
|
|
|
|
+ " .section .fixup,\"ax\" \n" \
|
|
|
|
+ "4: li %0, %4 \n" \
|
|
|
|
+ " j 3b \n" \
|
|
|
|
+ " .previous \n" \
|
|
|
|
+ " .section __ex_table,\"a\" \n" \
|
|
|
|
+ " " __UA_ADDR " 1b, 4b \n" \
|
|
|
|
+ " " __UA_ADDR " 2b, 4b \n" \
|
|
|
|
+ " .previous" \
|
|
|
|
+ : "=r" (__pu_err) \
|
|
|
|
+ : "0" (0), "r" (__pu_val), "r" (ptr), \
|
|
|
|
+ "i" (-EFAULT)); \
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+extern void __put_user_unknown(void);
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * put_user_unaligned: - Write a simple value into user space.
|
|
|
|
+ * @x: Value to copy to user space.
|
|
|
|
+ * @ptr: Destination address, in user space.
|
|
|
|
+ *
|
|
|
|
+ * Context: User context only. This function may sleep.
|
|
|
|
+ *
|
|
|
|
+ * This macro copies a single simple value from kernel space to user
|
|
|
|
+ * space. It supports simple types like char and int, but not larger
|
|
|
|
+ * data types like structures or arrays.
|
|
|
|
+ *
|
|
|
|
+ * @ptr must have pointer-to-simple-variable type, and @x must be assignable
|
|
|
|
+ * to the result of dereferencing @ptr.
|
|
|
|
+ *
|
|
|
|
+ * Returns zero on success, or -EFAULT on error.
|
|
|
|
+ */
|
|
|
|
+#define put_user_unaligned(x,ptr) \
|
|
|
|
+ __put_user_unaligned_check((x),(ptr),sizeof(*(ptr)))
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * get_user_unaligned: - Get a simple variable from user space.
|
|
|
|
+ * @x: Variable to store result.
|
|
|
|
+ * @ptr: Source address, in user space.
|
|
|
|
+ *
|
|
|
|
+ * Context: User context only. This function may sleep.
|
|
|
|
+ *
|
|
|
|
+ * This macro copies a single simple variable from user space to kernel
|
|
|
|
+ * space. It supports simple types like char and int, but not larger
|
|
|
|
+ * data types like structures or arrays.
|
|
|
|
+ *
|
|
|
|
+ * @ptr must have pointer-to-simple-variable type, and the result of
|
|
|
|
+ * dereferencing @ptr must be assignable to @x without a cast.
|
|
|
|
+ *
|
|
|
|
+ * Returns zero on success, or -EFAULT on error.
|
|
|
|
+ * On error, the variable @x is set to zero.
|
|
|
|
+ */
|
|
|
|
+#define get_user_unaligned(x,ptr) \
|
|
|
|
+ __get_user_unaligned_check((x),(ptr),sizeof(*(ptr)))
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * __put_user_unaligned: - Write a simple value into user space, with less checking.
|
|
|
|
+ * @x: Value to copy to user space.
|
|
|
|
+ * @ptr: Destination address, in user space.
|
|
|
|
+ *
|
|
|
|
+ * Context: User context only. This function may sleep.
|
|
|
|
+ *
|
|
|
|
+ * This macro copies a single simple value from kernel space to user
|
|
|
|
+ * space. It supports simple types like char and int, but not larger
|
|
|
|
+ * data types like structures or arrays.
|
|
|
|
+ *
|
|
|
|
+ * @ptr must have pointer-to-simple-variable type, and @x must be assignable
|
|
|
|
+ * to the result of dereferencing @ptr.
|
|
|
|
+ *
|
|
|
|
+ * Caller must check the pointer with access_ok() before calling this
|
|
|
|
+ * function.
|
|
|
|
+ *
|
|
|
|
+ * Returns zero on success, or -EFAULT on error.
|
|
|
|
+ */
|
|
|
|
+#define __put_user_unaligned(x,ptr) \
|
|
|
|
+ __put_user_unaligned_nocheck((x),(ptr),sizeof(*(ptr)))
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * __get_user_unaligned: - Get a simple variable from user space, with less checking.
|
|
|
|
+ * @x: Variable to store result.
|
|
|
|
+ * @ptr: Source address, in user space.
|
|
|
|
+ *
|
|
|
|
+ * Context: User context only. This function may sleep.
|
|
|
|
+ *
|
|
|
|
+ * This macro copies a single simple variable from user space to kernel
|
|
|
|
+ * space. It supports simple types like char and int, but not larger
|
|
|
|
+ * data types like structures or arrays.
|
|
|
|
+ *
|
|
|
|
+ * @ptr must have pointer-to-simple-variable type, and the result of
|
|
|
|
+ * dereferencing @ptr must be assignable to @x without a cast.
|
|
|
|
+ *
|
|
|
|
+ * Caller must check the pointer with access_ok() before calling this
|
|
|
|
+ * function.
|
|
|
|
+ *
|
|
|
|
+ * Returns zero on success, or -EFAULT on error.
|
|
|
|
+ * On error, the variable @x is set to zero.
|
|
|
|
+ */
|