diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-18 11:37:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-18 11:37:01 -0400 |
commit | 9732b6112343df2872518ec6701c8ef729310a05 (patch) | |
tree | 9e3dcc461845038da4730c2062eee546348ca445 /mm | |
parent | 9e9abecfc0ff3a9ad2ead954b37bbfcb863c775e (diff) | |
parent | 1a9a3e76dde191f82f7a8a66059dcbb4a9f63ff3 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-kgdb
* git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-kgdb:
kgdb: always use icache flush for sw breakpoints
kgdb: fix SMP NMI kgdb_handle_exception exit race
kgdb: documentation fixes
kgdb: allow static kgdbts boot configuration
kgdb: add documentation
kgdb: Kconfig fix
kgdb: add kgdb internal test suite
kgdb: fix several kgdb regressions
kgdb: kgdboc pl011 I/O module
kgdb: fix optional arch functions and probe_kernel_*
kgdb: add x86 HW breakpoints
kgdb: print breakpoint removed on exception
kgdb: clocksource watchdog
kgdb: fix NMI hangs
kgdb: fix kgdboc dynamic module configuration
kgdb: document parameters
x86: kgdb support
consoles: polling support, kgdboc
kgdb: core
uaccess: add probe_kernel_write()
Diffstat (limited to 'mm')
-rw-r--r-- | mm/Makefile | 2 | ||||
-rw-r--r-- | mm/maccess.c | 55 |
2 files changed, 56 insertions, 1 deletions
diff --git a/mm/Makefile b/mm/Makefile index a5b0dd93427a..18c143b3c46c 100644 --- a/mm/Makefile +++ b/mm/Makefile | |||
@@ -8,7 +8,7 @@ mmu-$(CONFIG_MMU) := fremap.o highmem.o madvise.o memory.o mincore.o \ | |||
8 | vmalloc.o | 8 | vmalloc.o |
9 | 9 | ||
10 | obj-y := bootmem.o filemap.o mempool.o oom_kill.o fadvise.o \ | 10 | obj-y := bootmem.o filemap.o mempool.o oom_kill.o fadvise.o \ |
11 | page_alloc.o page-writeback.o pdflush.o \ | 11 | maccess.o page_alloc.o page-writeback.o pdflush.o \ |
12 | readahead.o swap.o truncate.o vmscan.o \ | 12 | readahead.o swap.o truncate.o vmscan.o \ |
13 | prio_tree.o util.o mmzone.o vmstat.o backing-dev.o \ | 13 | prio_tree.o util.o mmzone.o vmstat.o backing-dev.o \ |
14 | page_isolation.o $(mmu-y) | 14 | page_isolation.o $(mmu-y) |
diff --git a/mm/maccess.c b/mm/maccess.c new file mode 100644 index 000000000000..ac40796cfb15 --- /dev/null +++ b/mm/maccess.c | |||
@@ -0,0 +1,55 @@ | |||
1 | /* | ||
2 | * Access kernel memory without faulting. | ||
3 | */ | ||
4 | #include <linux/uaccess.h> | ||
5 | #include <linux/module.h> | ||
6 | #include <linux/mm.h> | ||
7 | |||
8 | /** | ||
9 | * probe_kernel_read(): safely attempt to read from a location | ||
10 | * @dst: pointer to the buffer that shall take the data | ||
11 | * @src: address to read from | ||
12 | * @size: size of the data chunk | ||
13 | * | ||
14 | * Safely read from address @src to the buffer at @dst. If a kernel fault | ||
15 | * happens, handle that and return -EFAULT. | ||
16 | */ | ||
17 | long probe_kernel_read(void *dst, void *src, size_t size) | ||
18 | { | ||
19 | long ret; | ||
20 | mm_segment_t old_fs = get_fs(); | ||
21 | |||
22 | set_fs(KERNEL_DS); | ||
23 | pagefault_disable(); | ||
24 | ret = __copy_from_user_inatomic(dst, | ||
25 | (__force const void __user *)src, size); | ||
26 | pagefault_enable(); | ||
27 | set_fs(old_fs); | ||
28 | |||
29 | return ret ? -EFAULT : 0; | ||
30 | } | ||
31 | EXPORT_SYMBOL_GPL(probe_kernel_read); | ||
32 | |||
33 | /** | ||
34 | * probe_kernel_write(): safely attempt to write to a location | ||
35 | * @dst: address to write to | ||
36 | * @src: pointer to the data that shall be written | ||
37 | * @size: size of the data chunk | ||
38 | * | ||
39 | * Safely write to address @dst from the buffer at @src. If a kernel fault | ||
40 | * happens, handle that and return -EFAULT. | ||
41 | */ | ||
42 | long probe_kernel_write(void *dst, void *src, size_t size) | ||
43 | { | ||
44 | long ret; | ||
45 | mm_segment_t old_fs = get_fs(); | ||
46 | |||
47 | set_fs(KERNEL_DS); | ||
48 | pagefault_disable(); | ||
49 | ret = __copy_to_user_inatomic((__force void __user *)dst, src, size); | ||
50 | pagefault_enable(); | ||
51 | set_fs(old_fs); | ||
52 | |||
53 | return ret ? -EFAULT : 0; | ||
54 | } | ||
55 | EXPORT_SYMBOL_GPL(probe_kernel_write); | ||