2 * linux/mm/process_vm_access.c
4 * Copyright (C) 2010-2011 Christopher Yeoh <cyeoh@au1.ibm.com>, IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #include <linux/uio.h>
14 #include <linux/sched.h>
15 #include <linux/highmem.h>
16 #include <linux/ptrace.h>
17 #include <linux/slab.h>
18 #include <linux/syscalls.h>
21 #include <linux/compat.h>
25 * process_vm_rw_pages - read/write pages from task specified
26 * @task: task to read/write from
28 * @process_pages: struct pages area that can store at least
29 * nr_pages_to_copy struct page pointers
30 * @pa: address of page in task to start copying from/to
31 * @start_offset: offset in page to start copying from/to
32 * @len: number of bytes to copy
33 * @lvec: iovec array specifying where to copy to/from
34 * @lvec_cnt: number of elements in iovec array
35 * @lvec_current: index in iovec array we are up to
36 * @lvec_offset: offset in bytes from current iovec iov_base we are up to
37 * @vm_write: 0 means copy from, 1 means copy to
38 * @nr_pages_to_copy: number of pages to copy
39 * @bytes_copied: returns number of bytes successfully copied
40 * Returns 0 on success, error code otherwise
42 static int process_vm_rw_pages(struct task_struct
*task
,
44 struct page
**process_pages
,
46 unsigned long start_offset
,
48 const struct iovec
*lvec
,
49 unsigned long lvec_cnt
,
50 unsigned long *lvec_current
,
53 unsigned int nr_pages_to_copy
,
54 ssize_t
*bytes_copied
)
61 ssize_t bytes_to_copy
;
66 /* Get the pages we're interested in */
67 down_read(&mm
->mmap_sem
);
68 pages_pinned
= get_user_pages(task
, mm
, pa
,
70 vm_write
, 0, process_pages
, NULL
);
71 up_read(&mm
->mmap_sem
);
73 if (pages_pinned
!= nr_pages_to_copy
) {
78 /* Do the copy for each page */
80 (pgs_copied
< nr_pages_to_copy
) && (*lvec_current
< lvec_cnt
);
82 /* Make sure we have a non zero length iovec */
83 while (*lvec_current
< lvec_cnt
84 && lvec
[*lvec_current
].iov_len
== 0)
86 if (*lvec_current
== lvec_cnt
)
90 * Will copy smallest of:
91 * - bytes remaining in page
92 * - bytes remaining in destination iovec
94 bytes_to_copy
= min_t(ssize_t
, PAGE_SIZE
- start_offset
,
96 bytes_to_copy
= min_t(ssize_t
, bytes_to_copy
,
97 lvec
[*lvec_current
].iov_len
100 target_kaddr
= kmap(process_pages
[pgs_copied
]) + start_offset
;
103 ret
= copy_from_user(target_kaddr
,
104 lvec
[*lvec_current
].iov_base
108 ret
= copy_to_user(lvec
[*lvec_current
].iov_base
110 target_kaddr
, bytes_to_copy
);
111 kunmap(process_pages
[pgs_copied
]);
113 *bytes_copied
+= bytes_to_copy
- ret
;
118 *bytes_copied
+= bytes_to_copy
;
119 *lvec_offset
+= bytes_to_copy
;
120 if (*lvec_offset
== lvec
[*lvec_current
].iov_len
) {
122 * Need to copy remaining part of page into the
123 * next iovec if there are any bytes left in page
127 start_offset
= (start_offset
+ bytes_to_copy
)
138 for (j
= 0; j
< pages_pinned
; j
++) {
140 set_page_dirty_lock(process_pages
[j
]);
141 put_page(process_pages
[j
]);
144 for (j
= 0; j
< pages_pinned
; j
++)
145 put_page(process_pages
[j
]);
151 /* Maximum number of pages kmalloc'd to hold struct page's during copy */
152 #define PVM_MAX_KMALLOC_PAGES (PAGE_SIZE * 2)
155 * process_vm_rw_single_vec - read/write pages from task specified
156 * @addr: start memory address of target process
157 * @len: size of area to copy to/from
158 * @lvec: iovec array specifying where to copy to/from locally
159 * @lvec_cnt: number of elements in iovec array
160 * @lvec_current: index in iovec array we are up to
161 * @lvec_offset: offset in bytes from current iovec iov_base we are up to
162 * @process_pages: struct pages area that can store at least
163 * nr_pages_to_copy struct page pointers
165 * @task: task to read/write from
166 * @vm_write: 0 means copy from, 1 means copy to
167 * @bytes_copied: returns number of bytes successfully copied
168 * Returns 0 on success or on failure error code
170 static int process_vm_rw_single_vec(unsigned long addr
,
172 const struct iovec
*lvec
,
173 unsigned long lvec_cnt
,
174 unsigned long *lvec_current
,
176 struct page
**process_pages
,
177 struct mm_struct
*mm
,
178 struct task_struct
*task
,
180 ssize_t
*bytes_copied
)
182 unsigned long pa
= addr
& PAGE_MASK
;
183 unsigned long start_offset
= addr
- pa
;
184 unsigned long nr_pages
;
185 ssize_t bytes_copied_loop
;
187 unsigned long nr_pages_copied
= 0;
188 unsigned long nr_pages_to_copy
;
189 unsigned long max_pages_per_loop
= PVM_MAX_KMALLOC_PAGES
190 / sizeof(struct pages
*);
194 /* Work out address and page range required */
197 nr_pages
= (addr
+ len
- 1) / PAGE_SIZE
- addr
/ PAGE_SIZE
+ 1;
199 while ((nr_pages_copied
< nr_pages
) && (*lvec_current
< lvec_cnt
)) {
200 nr_pages_to_copy
= min(nr_pages
- nr_pages_copied
,
203 rc
= process_vm_rw_pages(task
, mm
, process_pages
, pa
,
206 lvec_current
, lvec_offset
,
207 vm_write
, nr_pages_to_copy
,
210 *bytes_copied
+= bytes_copied_loop
;
215 len
-= bytes_copied_loop
;
216 nr_pages_copied
+= nr_pages_to_copy
;
217 pa
+= nr_pages_to_copy
* PAGE_SIZE
;
224 /* Maximum number of entries for process pages array
225 which lives on stack */
226 #define PVM_MAX_PP_ARRAY_COUNT 16
229 * process_vm_rw_core - core of reading/writing pages from task specified
230 * @pid: PID of process to read/write from/to
231 * @lvec: iovec array specifying where to copy to/from locally
232 * @liovcnt: size of lvec array
233 * @rvec: iovec array specifying where to copy to/from in the other process
234 * @riovcnt: size of rvec array
235 * @flags: currently unused
236 * @vm_write: 0 if reading from other process, 1 if writing to other process
237 * Returns the number of bytes read/written or error code. May
238 * return less bytes than expected if an error occurs during the copying
241 static ssize_t
process_vm_rw_core(pid_t pid
, const struct iovec
*lvec
,
242 unsigned long liovcnt
,
243 const struct iovec
*rvec
,
244 unsigned long riovcnt
,
245 unsigned long flags
, int vm_write
)
247 struct task_struct
*task
;
248 struct page
*pp_stack
[PVM_MAX_PP_ARRAY_COUNT
];
249 struct page
**process_pages
= pp_stack
;
250 struct mm_struct
*mm
;
253 ssize_t bytes_copied_loop
;
254 ssize_t bytes_copied
= 0;
255 unsigned long nr_pages
= 0;
256 unsigned long nr_pages_iov
;
257 unsigned long iov_l_curr_idx
= 0;
258 size_t iov_l_curr_offset
= 0;
262 * Work out how many pages of struct pages we're going to need
263 * when eventually calling get_user_pages
265 for (i
= 0; i
< riovcnt
; i
++) {
266 iov_len
= rvec
[i
].iov_len
;
268 nr_pages_iov
= ((unsigned long)rvec
[i
].iov_base
270 / PAGE_SIZE
- (unsigned long)rvec
[i
].iov_base
272 nr_pages
= max(nr_pages
, nr_pages_iov
);
279 if (nr_pages
> PVM_MAX_PP_ARRAY_COUNT
) {
280 /* For reliability don't try to kmalloc more than
282 process_pages
= kmalloc(min_t(size_t, PVM_MAX_KMALLOC_PAGES
,
283 sizeof(struct pages
*)*nr_pages
),
290 /* Get process information */
292 task
= find_task_by_vpid(pid
);
294 get_task_struct(task
);
298 goto free_proc_pages
;
302 if (__ptrace_may_access(task
, PTRACE_MODE_ATTACH
)) {
305 goto put_task_struct
;
309 if (!mm
|| (task
->flags
& PF_KTHREAD
)) {
312 goto put_task_struct
;
315 atomic_inc(&mm
->mm_users
);
318 for (i
= 0; i
< riovcnt
&& iov_l_curr_idx
< liovcnt
; i
++) {
319 rc
= process_vm_rw_single_vec(
320 (unsigned long)rvec
[i
].iov_base
, rvec
[i
].iov_len
,
321 lvec
, liovcnt
, &iov_l_curr_idx
, &iov_l_curr_offset
,
322 process_pages
, mm
, task
, vm_write
, &bytes_copied_loop
);
323 bytes_copied
+= bytes_copied_loop
;
325 /* If we have managed to copy any data at all then
326 we return the number of bytes copied. Otherwise
327 we return the error code */
339 put_task_struct(task
);
342 if (process_pages
!= pp_stack
)
343 kfree(process_pages
);
348 * process_vm_rw - check iovecs before calling core routine
349 * @pid: PID of process to read/write from/to
350 * @lvec: iovec array specifying where to copy to/from locally
351 * @liovcnt: size of lvec array
352 * @rvec: iovec array specifying where to copy to/from in the other process
353 * @riovcnt: size of rvec array
354 * @flags: currently unused
355 * @vm_write: 0 if reading from other process, 1 if writing to other process
356 * Returns the number of bytes read/written or error code. May
357 * return less bytes than expected if an error occurs during the copying
360 static ssize_t
process_vm_rw(pid_t pid
,
361 const struct iovec __user
*lvec
,
362 unsigned long liovcnt
,
363 const struct iovec __user
*rvec
,
364 unsigned long riovcnt
,
365 unsigned long flags
, int vm_write
)
367 struct iovec iovstack_l
[UIO_FASTIOV
];
368 struct iovec iovstack_r
[UIO_FASTIOV
];
369 struct iovec
*iov_l
= iovstack_l
;
370 struct iovec
*iov_r
= iovstack_r
;
378 rc
= rw_copy_check_uvector(WRITE
, lvec
, liovcnt
, UIO_FASTIOV
,
379 iovstack_l
, &iov_l
, 1);
381 rc
= rw_copy_check_uvector(READ
, lvec
, liovcnt
, UIO_FASTIOV
,
382 iovstack_l
, &iov_l
, 1);
386 rc
= rw_copy_check_uvector(READ
, rvec
, riovcnt
, UIO_FASTIOV
,
387 iovstack_r
, &iov_r
, 0);
391 rc
= process_vm_rw_core(pid
, iov_l
, liovcnt
, iov_r
, riovcnt
, flags
,
395 if (iov_r
!= iovstack_r
)
397 if (iov_l
!= iovstack_l
)
403 SYSCALL_DEFINE6(process_vm_readv
, pid_t
, pid
, const struct iovec __user
*, lvec
,
404 unsigned long, liovcnt
, const struct iovec __user
*, rvec
,
405 unsigned long, riovcnt
, unsigned long, flags
)
407 return process_vm_rw(pid
, lvec
, liovcnt
, rvec
, riovcnt
, flags
, 0);
410 SYSCALL_DEFINE6(process_vm_writev
, pid_t
, pid
,
411 const struct iovec __user
*, lvec
,
412 unsigned long, liovcnt
, const struct iovec __user
*, rvec
,
413 unsigned long, riovcnt
, unsigned long, flags
)
415 return process_vm_rw(pid
, lvec
, liovcnt
, rvec
, riovcnt
, flags
, 1);
421 compat_process_vm_rw(compat_pid_t pid
,
422 const struct compat_iovec __user
*lvec
,
423 unsigned long liovcnt
,
424 const struct compat_iovec __user
*rvec
,
425 unsigned long riovcnt
,
426 unsigned long flags
, int vm_write
)
428 struct iovec iovstack_l
[UIO_FASTIOV
];
429 struct iovec iovstack_r
[UIO_FASTIOV
];
430 struct iovec
*iov_l
= iovstack_l
;
431 struct iovec
*iov_r
= iovstack_r
;
432 ssize_t rc
= -EFAULT
;
437 if (!access_ok(VERIFY_READ
, lvec
, liovcnt
* sizeof(*lvec
)))
440 if (!access_ok(VERIFY_READ
, rvec
, riovcnt
* sizeof(*rvec
)))
444 rc
= compat_rw_copy_check_uvector(WRITE
, lvec
, liovcnt
,
445 UIO_FASTIOV
, iovstack_l
,
448 rc
= compat_rw_copy_check_uvector(READ
, lvec
, liovcnt
,
449 UIO_FASTIOV
, iovstack_l
,
453 rc
= compat_rw_copy_check_uvector(READ
, rvec
, riovcnt
,
454 UIO_FASTIOV
, iovstack_r
,
459 rc
= process_vm_rw_core(pid
, iov_l
, liovcnt
, iov_r
, riovcnt
, flags
,
463 if (iov_r
!= iovstack_r
)
465 if (iov_l
!= iovstack_l
)
473 compat_sys_process_vm_readv(compat_pid_t pid
,
474 const struct compat_iovec __user
*lvec
,
475 unsigned long liovcnt
,
476 const struct compat_iovec __user
*rvec
,
477 unsigned long riovcnt
,
480 return compat_process_vm_rw(pid
, lvec
, liovcnt
, rvec
,
485 compat_sys_process_vm_writev(compat_pid_t pid
,
486 const struct compat_iovec __user
*lvec
,
487 unsigned long liovcnt
,
488 const struct compat_iovec __user
*rvec
,
489 unsigned long riovcnt
,
492 return compat_process_vm_rw(pid
, lvec
, liovcnt
, rvec
,