Blame view

mm/maccess.c 1.39 KB
c33fa9f56   Ingo Molnar   uaccess: add prob...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   * Access kernel memory without faulting.
   */
  #include <linux/uaccess.h>
  #include <linux/module.h>
  #include <linux/mm.h>
  
  /**
   * probe_kernel_read(): safely attempt to read from a location
   * @dst: pointer to the buffer that shall take the data
   * @src: address to read from
   * @size: size of the data chunk
   *
   * Safely read from address @src to the buffer at @dst.  If a kernel fault
   * happens, handle that and return -EFAULT.
   */
  long probe_kernel_read(void *dst, void *src, size_t size)
  {
  	long ret;
b4b8ac524   Jason Wessel   kgdb: fix optiona...
20
  	mm_segment_t old_fs = get_fs();
c33fa9f56   Ingo Molnar   uaccess: add prob...
21

b4b8ac524   Jason Wessel   kgdb: fix optiona...
22
  	set_fs(KERNEL_DS);
c33fa9f56   Ingo Molnar   uaccess: add prob...
23
24
25
26
  	pagefault_disable();
  	ret = __copy_from_user_inatomic(dst,
  			(__force const void __user *)src, size);
  	pagefault_enable();
b4b8ac524   Jason Wessel   kgdb: fix optiona...
27
  	set_fs(old_fs);
c33fa9f56   Ingo Molnar   uaccess: add prob...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  
  	return ret ? -EFAULT : 0;
  }
  EXPORT_SYMBOL_GPL(probe_kernel_read);
  
  /**
   * probe_kernel_write(): safely attempt to write to a location
   * @dst: address to write to
   * @src: pointer to the data that shall be written
   * @size: size of the data chunk
   *
   * Safely write to address @dst from the buffer at @src.  If a kernel fault
   * happens, handle that and return -EFAULT.
   */
d93f82b6e   Heiko Carstens   [S390] maccess: a...
42
  long notrace __weak probe_kernel_write(void *dst, void *src, size_t size)
c33fa9f56   Ingo Molnar   uaccess: add prob...
43
44
  {
  	long ret;
b4b8ac524   Jason Wessel   kgdb: fix optiona...
45
  	mm_segment_t old_fs = get_fs();
c33fa9f56   Ingo Molnar   uaccess: add prob...
46

b4b8ac524   Jason Wessel   kgdb: fix optiona...
47
  	set_fs(KERNEL_DS);
c33fa9f56   Ingo Molnar   uaccess: add prob...
48
49
50
  	pagefault_disable();
  	ret = __copy_to_user_inatomic((__force void __user *)dst, src, size);
  	pagefault_enable();
b4b8ac524   Jason Wessel   kgdb: fix optiona...
51
  	set_fs(old_fs);
c33fa9f56   Ingo Molnar   uaccess: add prob...
52
53
54
55
  
  	return ret ? -EFAULT : 0;
  }
  EXPORT_SYMBOL_GPL(probe_kernel_write);