blob: fd12da80b6f27bab90763d9cca7c43d38f226b06 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Christopher Yeohfcf63402011-10-31 17:06:39 -07002/*
3 * linux/mm/process_vm_access.c
4 *
5 * Copyright (C) 2010-2011 Christopher Yeoh <cyeoh@au1.ibm.com>, IBM Corp.
Christopher Yeohfcf63402011-10-31 17:06:39 -07006 */
7
8#include <linux/mm.h>
9#include <linux/uio.h>
10#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010011#include <linux/sched/mm.h>
Christopher Yeohfcf63402011-10-31 17:06:39 -070012#include <linux/highmem.h>
13#include <linux/ptrace.h>
14#include <linux/slab.h>
15#include <linux/syscalls.h>
16
Christopher Yeohfcf63402011-10-31 17:06:39 -070017/**
18 * process_vm_rw_pages - read/write pages from task specified
Al Viro4bafbec2014-02-05 13:25:32 -050019 * @pages: array of pointers to pages we want to copy
Mike Rapoportf144c392018-02-06 15:42:16 -080020 * @offset: offset in page to start copying from/to
Christopher Yeohfcf63402011-10-31 17:06:39 -070021 * @len: number of bytes to copy
Al Viro4bafbec2014-02-05 13:25:32 -050022 * @iter: where to copy to/from locally
Christopher Yeohfcf63402011-10-31 17:06:39 -070023 * @vm_write: 0 means copy from, 1 means copy to
Christopher Yeohfcf63402011-10-31 17:06:39 -070024 * Returns 0 on success, error code otherwise
25 */
Al Viro70eca122014-02-05 12:44:24 -050026static int process_vm_rw_pages(struct page **pages,
27 unsigned offset,
Al Viroe21345f2014-02-05 12:55:11 -050028 size_t len,
Al Viro9f78bdf2014-02-05 11:51:53 -050029 struct iov_iter *iter,
Al Viro9acc1a02014-02-05 13:15:28 -050030 int vm_write)
Christopher Yeohfcf63402011-10-31 17:06:39 -070031{
Christopher Yeohfcf63402011-10-31 17:06:39 -070032 /* Do the copy for each page */
Al Viro9acc1a02014-02-05 13:15:28 -050033 while (len && iov_iter_count(iter)) {
Al Viro70eca122014-02-05 12:44:24 -050034 struct page *page = *pages++;
Al Viroe21345f2014-02-05 12:55:11 -050035 size_t copy = PAGE_SIZE - offset;
Al Viro70eca122014-02-05 12:44:24 -050036 size_t copied;
Christopher Yeohfcf63402011-10-31 17:06:39 -070037
Al Viroe21345f2014-02-05 12:55:11 -050038 if (copy > len)
39 copy = len;
Christopher Yeohfcf63402011-10-31 17:06:39 -070040
John Hubbard803e4572020-01-30 22:13:05 -080041 if (vm_write)
Al Viroe7c24602014-04-10 20:54:51 -040042 copied = copy_page_from_iter(page, offset, copy, iter);
John Hubbard803e4572020-01-30 22:13:05 -080043 else
Al Viro70eca122014-02-05 12:44:24 -050044 copied = copy_page_to_iter(page, offset, copy, iter);
John Hubbard803e4572020-01-30 22:13:05 -080045
Al Viro70eca122014-02-05 12:44:24 -050046 len -= copied;
47 if (copied < copy && iov_iter_count(iter))
48 return -EFAULT;
49 offset = 0;
Christopher Yeohfcf63402011-10-31 17:06:39 -070050 }
Al Viro70eca122014-02-05 12:44:24 -050051 return 0;
Christopher Yeohfcf63402011-10-31 17:06:39 -070052}
53
54/* Maximum number of pages kmalloc'd to hold struct page's during copy */
55#define PVM_MAX_KMALLOC_PAGES (PAGE_SIZE * 2)
56
57/**
58 * process_vm_rw_single_vec - read/write pages from task specified
59 * @addr: start memory address of target process
60 * @len: size of area to copy to/from
Al Viro4bafbec2014-02-05 13:25:32 -050061 * @iter: where to copy to/from locally
Christopher Yeohfcf63402011-10-31 17:06:39 -070062 * @process_pages: struct pages area that can store at least
63 * nr_pages_to_copy struct page pointers
64 * @mm: mm for task
65 * @task: task to read/write from
66 * @vm_write: 0 means copy from, 1 means copy to
Christopher Yeohfcf63402011-10-31 17:06:39 -070067 * Returns 0 on success or on failure error code
68 */
69static int process_vm_rw_single_vec(unsigned long addr,
70 unsigned long len,
Al Viro9f78bdf2014-02-05 11:51:53 -050071 struct iov_iter *iter,
Christopher Yeohfcf63402011-10-31 17:06:39 -070072 struct page **process_pages,
73 struct mm_struct *mm,
74 struct task_struct *task,
Al Viro9acc1a02014-02-05 13:15:28 -050075 int vm_write)
Christopher Yeohfcf63402011-10-31 17:06:39 -070076{
77 unsigned long pa = addr & PAGE_MASK;
78 unsigned long start_offset = addr - pa;
79 unsigned long nr_pages;
Christopher Yeohfcf63402011-10-31 17:06:39 -070080 ssize_t rc = 0;
Christopher Yeohfcf63402011-10-31 17:06:39 -070081 unsigned long max_pages_per_loop = PVM_MAX_KMALLOC_PAGES
82 / sizeof(struct pages *);
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -080083 unsigned int flags = 0;
Christopher Yeohfcf63402011-10-31 17:06:39 -070084
Christopher Yeohfcf63402011-10-31 17:06:39 -070085 /* Work out address and page range required */
86 if (len == 0)
87 return 0;
88 nr_pages = (addr + len - 1) / PAGE_SIZE - addr / PAGE_SIZE + 1;
89
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +010090 if (vm_write)
91 flags |= FOLL_WRITE;
92
Al Viro4bafbec2014-02-05 13:25:32 -050093 while (!rc && nr_pages && iov_iter_count(iter)) {
John Hubbard803e4572020-01-30 22:13:05 -080094 int pinned_pages = min(nr_pages, max_pages_per_loop);
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -080095 int locked = 1;
Al Viro4bafbec2014-02-05 13:25:32 -050096 size_t bytes;
Christopher Yeohfcf63402011-10-31 17:06:39 -070097
Dave Hansen1e987792016-02-12 13:01:54 -080098 /*
99 * Get the pages we're interested in. We must
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -0800100 * access remotely because task/mm might not
Dave Hansen1e987792016-02-12 13:01:54 -0800101 * current/current->mm
102 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700103 mmap_read_lock(mm);
Peter Xu64019a22020-08-11 18:39:01 -0700104 pinned_pages = pin_user_pages_remote(mm, pa, pinned_pages,
John Hubbard803e4572020-01-30 22:13:05 -0800105 flags, process_pages,
106 NULL, &locked);
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -0800107 if (locked)
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700108 mmap_read_unlock(mm);
John Hubbard803e4572020-01-30 22:13:05 -0800109 if (pinned_pages <= 0)
Al Viro70eca122014-02-05 12:44:24 -0500110 return -EFAULT;
111
John Hubbard803e4572020-01-30 22:13:05 -0800112 bytes = pinned_pages * PAGE_SIZE - start_offset;
Al Viro4bafbec2014-02-05 13:25:32 -0500113 if (bytes > len)
114 bytes = len;
Al Viroe21345f2014-02-05 12:55:11 -0500115
Al Viro70eca122014-02-05 12:44:24 -0500116 rc = process_vm_rw_pages(process_pages,
Al Viro4bafbec2014-02-05 13:25:32 -0500117 start_offset, bytes, iter,
Al Viro9acc1a02014-02-05 13:15:28 -0500118 vm_write);
Al Viro4bafbec2014-02-05 13:25:32 -0500119 len -= bytes;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700120 start_offset = 0;
John Hubbard803e4572020-01-30 22:13:05 -0800121 nr_pages -= pinned_pages;
122 pa += pinned_pages * PAGE_SIZE;
123
124 /* If vm_write is set, the pages need to be made dirty: */
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800125 unpin_user_pages_dirty_lock(process_pages, pinned_pages,
126 vm_write);
Christopher Yeohfcf63402011-10-31 17:06:39 -0700127 }
128
129 return rc;
130}
131
132/* Maximum number of entries for process pages array
133 which lives on stack */
134#define PVM_MAX_PP_ARRAY_COUNT 16
135
136/**
137 * process_vm_rw_core - core of reading/writing pages from task specified
138 * @pid: PID of process to read/write from/to
Al Viro4bafbec2014-02-05 13:25:32 -0500139 * @iter: where to copy to/from locally
Christopher Yeohfcf63402011-10-31 17:06:39 -0700140 * @rvec: iovec array specifying where to copy to/from in the other process
141 * @riovcnt: size of rvec array
142 * @flags: currently unused
143 * @vm_write: 0 if reading from other process, 1 if writing to other process
Mike Rapoporta5d09be2018-02-06 15:42:19 -0800144 *
Christopher Yeohfcf63402011-10-31 17:06:39 -0700145 * Returns the number of bytes read/written or error code. May
146 * return less bytes than expected if an error occurs during the copying
147 * process.
148 */
Al Viro9f78bdf2014-02-05 11:51:53 -0500149static ssize_t process_vm_rw_core(pid_t pid, struct iov_iter *iter,
Christopher Yeohfcf63402011-10-31 17:06:39 -0700150 const struct iovec *rvec,
151 unsigned long riovcnt,
152 unsigned long flags, int vm_write)
153{
154 struct task_struct *task;
155 struct page *pp_stack[PVM_MAX_PP_ARRAY_COUNT];
156 struct page **process_pages = pp_stack;
157 struct mm_struct *mm;
158 unsigned long i;
159 ssize_t rc = 0;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700160 unsigned long nr_pages = 0;
161 unsigned long nr_pages_iov;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700162 ssize_t iov_len;
Al Viro9acc1a02014-02-05 13:15:28 -0500163 size_t total_len = iov_iter_count(iter);
Christopher Yeohfcf63402011-10-31 17:06:39 -0700164
165 /*
166 * Work out how many pages of struct pages we're going to need
167 * when eventually calling get_user_pages
168 */
169 for (i = 0; i < riovcnt; i++) {
170 iov_len = rvec[i].iov_len;
171 if (iov_len > 0) {
172 nr_pages_iov = ((unsigned long)rvec[i].iov_base
173 + iov_len)
174 / PAGE_SIZE - (unsigned long)rvec[i].iov_base
175 / PAGE_SIZE + 1;
176 nr_pages = max(nr_pages, nr_pages_iov);
177 }
178 }
179
180 if (nr_pages == 0)
181 return 0;
182
183 if (nr_pages > PVM_MAX_PP_ARRAY_COUNT) {
184 /* For reliability don't try to kmalloc more than
185 2 pages worth */
186 process_pages = kmalloc(min_t(size_t, PVM_MAX_KMALLOC_PAGES,
187 sizeof(struct pages *)*nr_pages),
188 GFP_KERNEL);
189
190 if (!process_pages)
191 return -ENOMEM;
192 }
193
194 /* Get process information */
Mike Rapoport2ee08262018-02-06 15:40:17 -0800195 task = find_get_task_by_vpid(pid);
Christopher Yeohfcf63402011-10-31 17:06:39 -0700196 if (!task) {
197 rc = -ESRCH;
198 goto free_proc_pages;
199 }
200
Jann Horncaaee622016-01-20 15:00:04 -0800201 mm = mm_access(task, PTRACE_MODE_ATTACH_REALCREDS);
Christopher Yeoh8cdb8782012-02-02 11:34:09 +1030202 if (!mm || IS_ERR(mm)) {
203 rc = IS_ERR(mm) ? PTR_ERR(mm) : -ESRCH;
204 /*
Bernd Edlinger8d09db82020-03-20 21:26:34 +0100205 * Explicitly map EACCES to EPERM as EPERM is a more
Christopher Yeoh8cdb8782012-02-02 11:34:09 +1030206 * appropriate error code for process_vw_readv/writev
207 */
208 if (rc == -EACCES)
209 rc = -EPERM;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700210 goto put_task_struct;
211 }
Christopher Yeohfcf63402011-10-31 17:06:39 -0700212
Al Viro9acc1a02014-02-05 13:15:28 -0500213 for (i = 0; i < riovcnt && iov_iter_count(iter) && !rc; i++)
Christopher Yeohfcf63402011-10-31 17:06:39 -0700214 rc = process_vm_rw_single_vec(
215 (unsigned long)rvec[i].iov_base, rvec[i].iov_len,
Al Viro9acc1a02014-02-05 13:15:28 -0500216 iter, process_pages, mm, task, vm_write);
Christopher Yeohfcf63402011-10-31 17:06:39 -0700217
Al Viro9acc1a02014-02-05 13:15:28 -0500218 /* copied = space before - space after */
219 total_len -= iov_iter_count(iter);
220
221 /* If we have managed to copy any data at all then
222 we return the number of bytes copied. Otherwise
223 we return the error code */
224 if (total_len)
225 rc = total_len;
226
Christopher Yeohfcf63402011-10-31 17:06:39 -0700227 mmput(mm);
228
229put_task_struct:
230 put_task_struct(task);
231
232free_proc_pages:
233 if (process_pages != pp_stack)
234 kfree(process_pages);
235 return rc;
236}
237
238/**
239 * process_vm_rw - check iovecs before calling core routine
240 * @pid: PID of process to read/write from/to
241 * @lvec: iovec array specifying where to copy to/from locally
242 * @liovcnt: size of lvec array
243 * @rvec: iovec array specifying where to copy to/from in the other process
244 * @riovcnt: size of rvec array
245 * @flags: currently unused
246 * @vm_write: 0 if reading from other process, 1 if writing to other process
Mike Rapoporta5d09be2018-02-06 15:42:19 -0800247 *
Christopher Yeohfcf63402011-10-31 17:06:39 -0700248 * Returns the number of bytes read/written or error code. May
249 * return less bytes than expected if an error occurs during the copying
250 * process.
251 */
252static ssize_t process_vm_rw(pid_t pid,
253 const struct iovec __user *lvec,
254 unsigned long liovcnt,
255 const struct iovec __user *rvec,
256 unsigned long riovcnt,
257 unsigned long flags, int vm_write)
258{
259 struct iovec iovstack_l[UIO_FASTIOV];
260 struct iovec iovstack_r[UIO_FASTIOV];
261 struct iovec *iov_l = iovstack_l;
262 struct iovec *iov_r = iovstack_r;
Al Viro9f78bdf2014-02-05 11:51:53 -0500263 struct iov_iter iter;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700264 ssize_t rc;
Al Viro17d17e72015-03-21 14:47:11 -0400265 int dir = vm_write ? WRITE : READ;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700266
267 if (flags != 0)
268 return -EINVAL;
269
270 /* Check iovecs */
Al Viro17d17e72015-03-21 14:47:11 -0400271 rc = import_iovec(dir, lvec, liovcnt, UIO_FASTIOV, &iov_l, &iter);
272 if (rc < 0)
273 return rc;
274 if (!iov_iter_count(&iter))
Christoph Hellwigbfdc5972020-09-25 06:51:40 +0200275 goto free_iov_l;
276 iov_r = iovec_from_user(rvec, riovcnt, UIO_FASTIOV, iovstack_r, false);
277 if (IS_ERR(iov_r)) {
278 rc = PTR_ERR(iov_r);
279 goto free_iov_l;
280 }
Al Viro9f78bdf2014-02-05 11:51:53 -0500281 rc = process_vm_rw_core(pid, &iter, iov_r, riovcnt, flags, vm_write);
Christopher Yeohfcf63402011-10-31 17:06:39 -0700282 if (iov_r != iovstack_r)
283 kfree(iov_r);
Christoph Hellwigbfdc5972020-09-25 06:51:40 +0200284free_iov_l:
Al Viro17d17e72015-03-21 14:47:11 -0400285 kfree(iov_l);
Christopher Yeohfcf63402011-10-31 17:06:39 -0700286 return rc;
287}
288
289SYSCALL_DEFINE6(process_vm_readv, pid_t, pid, const struct iovec __user *, lvec,
290 unsigned long, liovcnt, const struct iovec __user *, rvec,
291 unsigned long, riovcnt, unsigned long, flags)
292{
293 return process_vm_rw(pid, lvec, liovcnt, rvec, riovcnt, flags, 0);
294}
295
296SYSCALL_DEFINE6(process_vm_writev, pid_t, pid,
297 const struct iovec __user *, lvec,
298 unsigned long, liovcnt, const struct iovec __user *, rvec,
299 unsigned long, riovcnt, unsigned long, flags)
300{
301 return process_vm_rw(pid, lvec, liovcnt, rvec, riovcnt, flags, 1);
302}