blob: 9d8cf056e661fab2c7389a78f0c5ac1248bcfe62 [file] [log] [blame]
Hiro Yoshiokac22ce142006-06-23 02:04:16 -07001#ifndef __LINUX_UACCESS_H__
2#define __LINUX_UACCESS_H__
3
Peter Zijlstraa8663742006-12-06 20:32:20 -08004#include <linux/preempt.h>
Hiro Yoshiokac22ce142006-06-23 02:04:16 -07005#include <asm/uaccess.h>
6
Peter Zijlstraa8663742006-12-06 20:32:20 -08007/*
8 * These routines enable/disable the pagefault handler in that
9 * it will not take any locks and go straight to the fixup table.
10 *
11 * They have great resemblance to the preempt_disable/enable calls
12 * and in fact they are identical; this is because currently there is
13 * no other way to make the pagefault handlers do this. So we do
14 * disable preemption but we don't necessarily care about that.
15 */
16static inline void pagefault_disable(void)
17{
Peter Zijlstrabdb43802013-09-10 12:15:23 +020018 preempt_count_inc();
Peter Zijlstraa8663742006-12-06 20:32:20 -080019 /*
20 * make sure to have issued the store before a pagefault
21 * can hit.
22 */
23 barrier();
24}
25
26static inline void pagefault_enable(void)
27{
28 /*
29 * make sure to issue those last loads/stores before enabling
30 * the pagefault handler again.
31 */
32 barrier();
Peter Zijlstrabdb43802013-09-10 12:15:23 +020033 preempt_count_dec();
Peter Zijlstraa8663742006-12-06 20:32:20 -080034 preempt_check_resched();
35}
36
Hiro Yoshiokac22ce142006-06-23 02:04:16 -070037#ifndef ARCH_HAS_NOCACHE_UACCESS
38
39static inline unsigned long __copy_from_user_inatomic_nocache(void *to,
40 const void __user *from, unsigned long n)
41{
42 return __copy_from_user_inatomic(to, from, n);
43}
44
45static inline unsigned long __copy_from_user_nocache(void *to,
46 const void __user *from, unsigned long n)
47{
48 return __copy_from_user(to, from, n);
49}
50
51#endif /* ARCH_HAS_NOCACHE_UACCESS */
52
Andrew Morton1b79e552006-09-27 01:51:14 -070053/**
54 * probe_kernel_address(): safely attempt to read from a location
55 * @addr: address to read from - its type is type typeof(retval)*
56 * @retval: read into this variable
57 *
58 * Safely read from address @addr into variable @revtal. If a kernel fault
59 * happens, handle that and return -EFAULT.
60 * We ensure that the __get_user() is executed in atomic context so that
61 * do_page_fault() doesn't attempt to take mmap_sem. This makes
62 * probe_kernel_address() suitable for use within regions where the caller
63 * already holds mmap_sem, or other locks which nest inside mmap_sem.
Andrew Morton20aa7b22006-12-06 20:36:40 -080064 * This must be a macro because __get_user() needs to know the types of the
65 * args.
66 *
67 * We don't include enough header files to be able to do the set_fs(). We
68 * require that the probe_kernel_address() caller will do that.
Andrew Morton1b79e552006-09-27 01:51:14 -070069 */
70#define probe_kernel_address(addr, retval) \
71 ({ \
72 long ret; \
Andrew Morton20aa7b22006-12-06 20:36:40 -080073 mm_segment_t old_fs = get_fs(); \
Andrew Morton1b79e552006-09-27 01:51:14 -070074 \
Andrew Morton20aa7b22006-12-06 20:36:40 -080075 set_fs(KERNEL_DS); \
Peter Zijlstraa8663742006-12-06 20:32:20 -080076 pagefault_disable(); \
Hiroshi Shimamotofb71e452008-09-15 18:04:26 -070077 ret = __copy_from_user_inatomic(&(retval), (__force typeof(retval) __user *)(addr), sizeof(retval)); \
Peter Zijlstraa8663742006-12-06 20:32:20 -080078 pagefault_enable(); \
Andrew Morton20aa7b22006-12-06 20:36:40 -080079 set_fs(old_fs); \
Andrew Morton1b79e552006-09-27 01:51:14 -070080 ret; \
81 })
82
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020083/*
84 * probe_kernel_read(): safely attempt to read from a location
85 * @dst: pointer to the buffer that shall take the data
86 * @src: address to read from
87 * @size: size of the data chunk
88 *
89 * Safely read from address @src to the buffer at @dst. If a kernel fault
90 * happens, handle that and return -EFAULT.
91 */
Steven Rostedtf29c5042011-05-19 14:35:33 -040092extern long probe_kernel_read(void *dst, const void *src, size_t size);
93extern long __probe_kernel_read(void *dst, const void *src, size_t size);
Ingo Molnarc33fa9f2008-04-17 20:05:36 +020094
95/*
96 * probe_kernel_write(): safely attempt to write to a location
97 * @dst: address to write to
98 * @src: pointer to the data that shall be written
99 * @size: size of the data chunk
100 *
101 * Safely write to address @dst from the buffer at @src. If a kernel fault
102 * happens, handle that and return -EFAULT.
103 */
Steven Rostedtf29c5042011-05-19 14:35:33 -0400104extern long notrace probe_kernel_write(void *dst, const void *src, size_t size);
105extern long notrace __probe_kernel_write(void *dst, const void *src, size_t size);
Ingo Molnarc33fa9f2008-04-17 20:05:36 +0200106
Hiro Yoshiokac22ce142006-06-23 02:04:16 -0700107#endif /* __LINUX_UACCESS_H__ */