diff options
author | Stephen Wilson <wilsons@start.ca> | 2011-03-13 15:49:20 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-23 16:36:57 -0400 |
commit | 5ddd36b9c59887c6416e21daf984fbdd9b1818df (patch) | |
tree | 1cc7ce9a671f4c49dc594e1f5d1fc8b596e77b5f | |
parent | 206cb636576b969e9b471cdedeaea7752e6acb33 (diff) |
mm: implement access_remote_vm
Provide an alternative to access_process_vm that allows the caller to obtain a
reference to the supplied mm_struct.
Signed-off-by: Stephen Wilson <wilsons@start.ca>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | include/linux/mm.h | 2 | ||||
-rw-r--r-- | mm/memory.c | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 9d6efefdde50..60011d26bffc 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -971,6 +971,8 @@ static inline int handle_mm_fault(struct mm_struct *mm, | |||
971 | 971 | ||
972 | extern int make_pages_present(unsigned long addr, unsigned long end); | 972 | extern int make_pages_present(unsigned long addr, unsigned long end); |
973 | extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write); | 973 | extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write); |
974 | extern int access_remote_vm(struct mm_struct *mm, unsigned long addr, | ||
975 | void *buf, int len, int write); | ||
974 | 976 | ||
975 | int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm, | 977 | int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm, |
976 | unsigned long start, int len, unsigned int foll_flags, | 978 | unsigned long start, int len, unsigned int foll_flags, |
diff --git a/mm/memory.c b/mm/memory.c index 820b4c4810f0..468f5076754c 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -3711,6 +3711,22 @@ static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm, | |||
3711 | return buf - old_buf; | 3711 | return buf - old_buf; |
3712 | } | 3712 | } |
3713 | 3713 | ||
3714 | /** | ||
3715 | * @access_remote_vm - access another process' address space | ||
3716 | * @mm: the mm_struct of the target address space | ||
3717 | * @addr: start address to access | ||
3718 | * @buf: source or destination buffer | ||
3719 | * @len: number of bytes to transfer | ||
3720 | * @write: whether the access is a write | ||
3721 | * | ||
3722 | * The caller must hold a reference on @mm. | ||
3723 | */ | ||
3724 | int access_remote_vm(struct mm_struct *mm, unsigned long addr, | ||
3725 | void *buf, int len, int write) | ||
3726 | { | ||
3727 | return __access_remote_vm(NULL, mm, addr, buf, len, write); | ||
3728 | } | ||
3729 | |||
3714 | /* | 3730 | /* |
3715 | * Access another process' address space. | 3731 | * Access another process' address space. |
3716 | * Source/target buffer must be kernel space, | 3732 | * Source/target buffer must be kernel space, |