blob: 6233d5195f0102614caa94a4d2d9f71e3f3269fd [file] [log] [blame]
Qiaowei Ren57319d82014-11-14 07:18:27 -08001/*
2 * mpx.c - Memory Protection eXtensions
3 *
4 * Copyright (c) 2014, Intel Corporation.
5 * Qiaowei Ren <qiaowei.ren@intel.com>
6 * Dave Hansen <dave.hansen@intel.com>
7 */
8#include <linux/kernel.h>
Dave Hansenfcc7ffd2014-11-14 07:18:28 -08009#include <linux/slab.h>
Qiaowei Ren57319d82014-11-14 07:18:27 -080010#include <linux/syscalls.h>
11#include <linux/sched/sysctl.h>
12
Dave Hansenfe3d1972014-11-14 07:18:29 -080013#include <asm/insn.h>
Qiaowei Ren57319d82014-11-14 07:18:27 -080014#include <asm/mman.h>
Dave Hansen1de4fa12014-11-14 07:18:31 -080015#include <asm/mmu_context.h>
Qiaowei Ren57319d82014-11-14 07:18:27 -080016#include <asm/mpx.h>
Dave Hansenfe3d1972014-11-14 07:18:29 -080017#include <asm/processor.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020018#include <asm/fpu/internal.h>
Qiaowei Ren57319d82014-11-14 07:18:27 -080019
Dave Hansene7126cf2015-06-07 11:37:03 -070020#define CREATE_TRACE_POINTS
21#include <asm/trace/mpx.h>
22
Qiaowei Ren57319d82014-11-14 07:18:27 -080023static const char *mpx_mapping_name(struct vm_area_struct *vma)
24{
25 return "[mpx]";
26}
27
28static struct vm_operations_struct mpx_vma_ops = {
29 .name = mpx_mapping_name,
30};
31
Dave Hansen1de4fa12014-11-14 07:18:31 -080032static int is_mpx_vma(struct vm_area_struct *vma)
33{
34 return (vma->vm_ops == &mpx_vma_ops);
35}
36
Dave Hansen613fcb72015-06-07 11:37:05 -070037static inline unsigned long mpx_bd_size_bytes(struct mm_struct *mm)
38{
39 if (is_64bit_mm(mm))
40 return MPX_BD_SIZE_BYTES_64;
41 else
42 return MPX_BD_SIZE_BYTES_32;
43}
44
45static inline unsigned long mpx_bt_size_bytes(struct mm_struct *mm)
46{
47 if (is_64bit_mm(mm))
48 return MPX_BT_SIZE_BYTES_64;
49 else
50 return MPX_BT_SIZE_BYTES_32;
51}
52
Qiaowei Ren57319d82014-11-14 07:18:27 -080053/*
54 * This is really a simplified "vm_mmap". it only handles MPX
55 * bounds tables (the bounds directory is user-allocated).
56 *
57 * Later on, we use the vma->vm_ops to uniquely identify these
58 * VMAs.
59 */
60static unsigned long mpx_mmap(unsigned long len)
61{
62 unsigned long ret;
63 unsigned long addr, pgoff;
64 struct mm_struct *mm = current->mm;
65 vm_flags_t vm_flags;
66 struct vm_area_struct *vma;
67
Dave Hanseneb099e52015-06-07 11:37:02 -070068 /* Only bounds table can be allocated here */
Dave Hansen613fcb72015-06-07 11:37:05 -070069 if (len != mpx_bt_size_bytes(mm))
Qiaowei Ren57319d82014-11-14 07:18:27 -080070 return -EINVAL;
71
72 down_write(&mm->mmap_sem);
73
74 /* Too many mappings? */
75 if (mm->map_count > sysctl_max_map_count) {
76 ret = -ENOMEM;
77 goto out;
78 }
79
80 /* Obtain the address to map to. we verify (or select) it and ensure
81 * that it represents a valid section of the address space.
82 */
83 addr = get_unmapped_area(NULL, 0, len, 0, MAP_ANONYMOUS | MAP_PRIVATE);
84 if (addr & ~PAGE_MASK) {
85 ret = addr;
86 goto out;
87 }
88
89 vm_flags = VM_READ | VM_WRITE | VM_MPX |
90 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
91
92 /* Set pgoff according to addr for anon_vma */
93 pgoff = addr >> PAGE_SHIFT;
94
95 ret = mmap_region(NULL, addr, len, vm_flags, pgoff);
96 if (IS_ERR_VALUE(ret))
97 goto out;
98
99 vma = find_vma(mm, ret);
100 if (!vma) {
101 ret = -ENOMEM;
102 goto out;
103 }
104 vma->vm_ops = &mpx_vma_ops;
105
106 if (vm_flags & VM_LOCKED) {
107 up_write(&mm->mmap_sem);
108 mm_populate(ret, len);
109 return ret;
110 }
111
112out:
113 up_write(&mm->mmap_sem);
114 return ret;
115}
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800116
117enum reg_type {
118 REG_TYPE_RM = 0,
119 REG_TYPE_INDEX,
120 REG_TYPE_BASE,
121};
122
Dave Hansen68c009c2014-11-18 10:23:43 -0800123static int get_reg_offset(struct insn *insn, struct pt_regs *regs,
124 enum reg_type type)
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800125{
126 int regno = 0;
127
128 static const int regoff[] = {
129 offsetof(struct pt_regs, ax),
130 offsetof(struct pt_regs, cx),
131 offsetof(struct pt_regs, dx),
132 offsetof(struct pt_regs, bx),
133 offsetof(struct pt_regs, sp),
134 offsetof(struct pt_regs, bp),
135 offsetof(struct pt_regs, si),
136 offsetof(struct pt_regs, di),
137#ifdef CONFIG_X86_64
138 offsetof(struct pt_regs, r8),
139 offsetof(struct pt_regs, r9),
140 offsetof(struct pt_regs, r10),
141 offsetof(struct pt_regs, r11),
142 offsetof(struct pt_regs, r12),
143 offsetof(struct pt_regs, r13),
144 offsetof(struct pt_regs, r14),
145 offsetof(struct pt_regs, r15),
146#endif
147 };
148 int nr_registers = ARRAY_SIZE(regoff);
149 /*
150 * Don't possibly decode a 32-bit instructions as
151 * reading a 64-bit-only register.
152 */
153 if (IS_ENABLED(CONFIG_X86_64) && !insn->x86_64)
154 nr_registers -= 8;
155
156 switch (type) {
157 case REG_TYPE_RM:
158 regno = X86_MODRM_RM(insn->modrm.value);
159 if (X86_REX_B(insn->rex_prefix.value) == 1)
160 regno += 8;
161 break;
162
163 case REG_TYPE_INDEX:
164 regno = X86_SIB_INDEX(insn->sib.value);
165 if (X86_REX_X(insn->rex_prefix.value) == 1)
166 regno += 8;
167 break;
168
169 case REG_TYPE_BASE:
170 regno = X86_SIB_BASE(insn->sib.value);
171 if (X86_REX_B(insn->rex_prefix.value) == 1)
172 regno += 8;
173 break;
174
175 default:
176 pr_err("invalid register type");
177 BUG();
178 break;
179 }
180
181 if (regno > nr_registers) {
182 WARN_ONCE(1, "decoded an instruction with an invalid register");
183 return -EINVAL;
184 }
185 return regoff[regno];
186}
187
188/*
189 * return the address being referenced be instruction
190 * for rm=3 returning the content of the rm reg
191 * for rm!=3 calculates the address using SIB and Disp
192 */
193static void __user *mpx_get_addr_ref(struct insn *insn, struct pt_regs *regs)
194{
Dave Hansen68c009c2014-11-18 10:23:43 -0800195 unsigned long addr, base, indx;
196 int addr_offset, base_offset, indx_offset;
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800197 insn_byte_t sib;
198
199 insn_get_modrm(insn);
200 insn_get_sib(insn);
201 sib = insn->sib.value;
202
203 if (X86_MODRM_MOD(insn->modrm.value) == 3) {
204 addr_offset = get_reg_offset(insn, regs, REG_TYPE_RM);
205 if (addr_offset < 0)
206 goto out_err;
207 addr = regs_get_register(regs, addr_offset);
208 } else {
209 if (insn->sib.nbytes) {
210 base_offset = get_reg_offset(insn, regs, REG_TYPE_BASE);
211 if (base_offset < 0)
212 goto out_err;
213
214 indx_offset = get_reg_offset(insn, regs, REG_TYPE_INDEX);
215 if (indx_offset < 0)
216 goto out_err;
217
218 base = regs_get_register(regs, base_offset);
219 indx = regs_get_register(regs, indx_offset);
220 addr = base + indx * (1 << X86_SIB_SCALE(sib));
221 } else {
222 addr_offset = get_reg_offset(insn, regs, REG_TYPE_RM);
223 if (addr_offset < 0)
224 goto out_err;
225 addr = regs_get_register(regs, addr_offset);
226 }
227 addr += insn->displacement.value;
228 }
229 return (void __user *)addr;
230out_err:
231 return (void __user *)-1;
232}
233
234static int mpx_insn_decode(struct insn *insn,
235 struct pt_regs *regs)
236{
237 unsigned char buf[MAX_INSN_SIZE];
238 int x86_64 = !test_thread_flag(TIF_IA32);
239 int not_copied;
240 int nr_copied;
241
242 not_copied = copy_from_user(buf, (void __user *)regs->ip, sizeof(buf));
243 nr_copied = sizeof(buf) - not_copied;
244 /*
245 * The decoder _should_ fail nicely if we pass it a short buffer.
246 * But, let's not depend on that implementation detail. If we
247 * did not get anything, just error out now.
248 */
249 if (!nr_copied)
250 return -EFAULT;
251 insn_init(insn, buf, nr_copied, x86_64);
252 insn_get_length(insn);
253 /*
254 * copy_from_user() tries to get as many bytes as we could see in
255 * the largest possible instruction. If the instruction we are
256 * after is shorter than that _and_ we attempt to copy from
257 * something unreadable, we might get a short read. This is OK
258 * as long as the read did not stop in the middle of the
259 * instruction. Check to see if we got a partial instruction.
260 */
261 if (nr_copied < insn->length)
262 return -EFAULT;
263
264 insn_get_opcode(insn);
265 /*
266 * We only _really_ need to decode bndcl/bndcn/bndcu
267 * Error out on anything else.
268 */
269 if (insn->opcode.bytes[0] != 0x0f)
270 goto bad_opcode;
271 if ((insn->opcode.bytes[1] != 0x1a) &&
272 (insn->opcode.bytes[1] != 0x1b))
273 goto bad_opcode;
274
275 return 0;
276bad_opcode:
277 return -EINVAL;
278}
279
280/*
281 * If a bounds overflow occurs then a #BR is generated. This
282 * function decodes MPX instructions to get violation address
283 * and set this address into extended struct siginfo.
284 *
285 * Note that this is not a super precise way of doing this.
286 * Userspace could have, by the time we get here, written
287 * anything it wants in to the instructions. We can not
288 * trust anything about it. They might not be valid
289 * instructions or might encode invalid registers, etc...
290 *
291 * The caller is expected to kfree() the returned siginfo_t.
292 */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700293siginfo_t *mpx_generate_siginfo(struct pt_regs *regs)
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800294{
Dave Hansena84eeaa2015-06-07 11:37:01 -0700295 const struct bndreg *bndregs, *bndreg;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800296 siginfo_t *info = NULL;
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800297 struct insn insn;
298 uint8_t bndregno;
299 int err;
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800300
301 err = mpx_insn_decode(&insn, regs);
302 if (err)
303 goto err_out;
304
305 /*
306 * We know at this point that we are only dealing with
307 * MPX instructions.
308 */
309 insn_get_modrm(&insn);
310 bndregno = X86_MODRM_REG(insn.modrm.value);
311 if (bndregno > 3) {
312 err = -EINVAL;
313 goto err_out;
314 }
Dave Hansena84eeaa2015-06-07 11:37:01 -0700315 /* get bndregs field from current task's xsave area */
316 bndregs = get_xsave_field_ptr(XSTATE_BNDREGS);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800317 if (!bndregs) {
318 err = -EINVAL;
319 goto err_out;
320 }
321 /* now go select the individual register in the set of 4 */
322 bndreg = &bndregs[bndregno];
323
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800324 info = kzalloc(sizeof(*info), GFP_KERNEL);
325 if (!info) {
326 err = -ENOMEM;
327 goto err_out;
328 }
329 /*
330 * The registers are always 64-bit, but the upper 32
331 * bits are ignored in 32-bit mode. Also, note that the
332 * upper bounds are architecturally represented in 1's
333 * complement form.
334 *
335 * The 'unsigned long' cast is because the compiler
336 * complains when casting from integers to different-size
337 * pointers.
338 */
Dave Hansenfe3d1972014-11-14 07:18:29 -0800339 info->si_lower = (void __user *)(unsigned long)bndreg->lower_bound;
340 info->si_upper = (void __user *)(unsigned long)~bndreg->upper_bound;
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800341 info->si_addr_lsb = 0;
342 info->si_signo = SIGSEGV;
343 info->si_errno = 0;
344 info->si_code = SEGV_BNDERR;
345 info->si_addr = mpx_get_addr_ref(&insn, regs);
346 /*
347 * We were not able to extract an address from the instruction,
348 * probably because there was something invalid in it.
349 */
350 if (info->si_addr == (void *)-1) {
351 err = -EINVAL;
352 goto err_out;
353 }
Dave Hansen97efebf2015-06-07 11:37:03 -0700354 trace_mpx_bounds_register_exception(info->si_addr, bndreg);
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800355 return info;
356err_out:
Dave Hansenfe3d1972014-11-14 07:18:29 -0800357 /* info might be NULL, but kfree() handles that */
358 kfree(info);
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800359 return ERR_PTR(err);
360}
Dave Hansenfe3d1972014-11-14 07:18:29 -0800361
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700362static __user void *mpx_get_bounds_dir(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800363{
Dave Hansena84eeaa2015-06-07 11:37:01 -0700364 const struct bndcsr *bndcsr;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800365
366 if (!cpu_feature_enabled(X86_FEATURE_MPX))
367 return MPX_INVALID_BOUNDS_DIR;
368
369 /*
Dave Hansen814564a2015-01-08 14:30:20 -0800370 * 32-bit binaries on 64-bit kernels are currently
371 * unsupported.
372 */
373 if (IS_ENABLED(CONFIG_X86_64) && test_thread_flag(TIF_IA32))
374 return MPX_INVALID_BOUNDS_DIR;
375 /*
Dave Hansenfe3d1972014-11-14 07:18:29 -0800376 * The bounds directory pointer is stored in a register
377 * only accessible if we first do an xsave.
378 */
Dave Hansena84eeaa2015-06-07 11:37:01 -0700379 bndcsr = get_xsave_field_ptr(XSTATE_BNDCSR);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800380 if (!bndcsr)
381 return MPX_INVALID_BOUNDS_DIR;
382
383 /*
384 * Make sure the register looks valid by checking the
385 * enable bit.
386 */
387 if (!(bndcsr->bndcfgu & MPX_BNDCFG_ENABLE_FLAG))
388 return MPX_INVALID_BOUNDS_DIR;
389
390 /*
391 * Lastly, mask off the low bits used for configuration
392 * flags, and return the address of the bounds table.
393 */
394 return (void __user *)(unsigned long)
395 (bndcsr->bndcfgu & MPX_BNDCFG_ADDR_MASK);
396}
397
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700398int mpx_enable_management(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800399{
400 void __user *bd_base = MPX_INVALID_BOUNDS_DIR;
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700401 struct mm_struct *mm = current->mm;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800402 int ret = 0;
403
404 /*
405 * runtime in the userspace will be responsible for allocation of
406 * the bounds directory. Then, it will save the base of the bounds
407 * directory into XSAVE/XRSTOR Save Area and enable MPX through
408 * XRSTOR instruction.
409 *
Dave Hansena84eeaa2015-06-07 11:37:01 -0700410 * The copy_xregs_to_kernel() beneath get_xsave_field_ptr() is
411 * expected to be relatively expensive. Storing the bounds
412 * directory here means that we do not have to do xsave in the
413 * unmap path; we can just use mm->bd_addr instead.
Dave Hansenfe3d1972014-11-14 07:18:29 -0800414 */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700415 bd_base = mpx_get_bounds_dir();
Dave Hansenfe3d1972014-11-14 07:18:29 -0800416 down_write(&mm->mmap_sem);
417 mm->bd_addr = bd_base;
418 if (mm->bd_addr == MPX_INVALID_BOUNDS_DIR)
419 ret = -ENXIO;
420
421 up_write(&mm->mmap_sem);
422 return ret;
423}
424
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700425int mpx_disable_management(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800426{
427 struct mm_struct *mm = current->mm;
428
429 if (!cpu_feature_enabled(X86_FEATURE_MPX))
430 return -ENXIO;
431
432 down_write(&mm->mmap_sem);
433 mm->bd_addr = MPX_INVALID_BOUNDS_DIR;
434 up_write(&mm->mmap_sem);
435 return 0;
436}
437
Dave Hansen6ac52bb2015-06-07 11:37:05 -0700438static int mpx_cmpxchg_bd_entry(struct mm_struct *mm,
439 unsigned long *curval,
440 unsigned long __user *addr,
441 unsigned long old_val, unsigned long new_val)
442{
443 int ret;
444 /*
445 * user_atomic_cmpxchg_inatomic() actually uses sizeof()
446 * the pointer that we pass to it to figure out how much
447 * data to cmpxchg. We have to be careful here not to
448 * pass a pointer to a 64-bit data type when we only want
449 * a 32-bit copy.
450 */
451 if (is_64bit_mm(mm)) {
452 ret = user_atomic_cmpxchg_inatomic(curval,
453 addr, old_val, new_val);
454 } else {
455 u32 uninitialized_var(curval_32);
456 u32 old_val_32 = old_val;
457 u32 new_val_32 = new_val;
458 u32 __user *addr_32 = (u32 __user *)addr;
459
460 ret = user_atomic_cmpxchg_inatomic(&curval_32,
461 addr_32, old_val_32, new_val_32);
462 *curval = curval_32;
463 }
464 return ret;
465}
466
Dave Hansenfe3d1972014-11-14 07:18:29 -0800467/*
Dave Hansen613fcb72015-06-07 11:37:05 -0700468 * With 32-bit mode, a bounds directory is 4MB, and the size of each
469 * bounds table is 16KB. With 64-bit mode, a bounds directory is 2GB,
Dave Hansenfe3d1972014-11-14 07:18:29 -0800470 * and the size of each bounds table is 4MB.
471 */
Dave Hansen613fcb72015-06-07 11:37:05 -0700472static int allocate_bt(struct mm_struct *mm, long __user *bd_entry)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800473{
474 unsigned long expected_old_val = 0;
475 unsigned long actual_old_val = 0;
476 unsigned long bt_addr;
Dave Hansena1149fc2015-06-07 11:37:04 -0700477 unsigned long bd_new_entry;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800478 int ret = 0;
479
480 /*
481 * Carve the virtual space out of userspace for the new
482 * bounds table:
483 */
Dave Hansen613fcb72015-06-07 11:37:05 -0700484 bt_addr = mpx_mmap(mpx_bt_size_bytes(mm));
Dave Hansenfe3d1972014-11-14 07:18:29 -0800485 if (IS_ERR((void *)bt_addr))
486 return PTR_ERR((void *)bt_addr);
487 /*
488 * Set the valid flag (kinda like _PAGE_PRESENT in a pte)
489 */
Dave Hansena1149fc2015-06-07 11:37:04 -0700490 bd_new_entry = bt_addr | MPX_BD_ENTRY_VALID_FLAG;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800491
492 /*
493 * Go poke the address of the new bounds table in to the
494 * bounds directory entry out in userspace memory. Note:
495 * we may race with another CPU instantiating the same table.
496 * In that case the cmpxchg will see an unexpected
497 * 'actual_old_val'.
498 *
499 * This can fault, but that's OK because we do not hold
500 * mmap_sem at this point, unlike some of the other part
501 * of the MPX code that have to pagefault_disable().
502 */
Dave Hansen6ac52bb2015-06-07 11:37:05 -0700503 ret = mpx_cmpxchg_bd_entry(mm, &actual_old_val, bd_entry,
504 expected_old_val, bd_new_entry);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800505 if (ret)
506 goto out_unmap;
507
508 /*
509 * The user_atomic_cmpxchg_inatomic() will only return nonzero
510 * for faults, *not* if the cmpxchg itself fails. Now we must
511 * verify that the cmpxchg itself completed successfully.
512 */
513 /*
514 * We expected an empty 'expected_old_val', but instead found
515 * an apparently valid entry. Assume we raced with another
516 * thread to instantiate this table and desclare succecss.
517 */
518 if (actual_old_val & MPX_BD_ENTRY_VALID_FLAG) {
519 ret = 0;
520 goto out_unmap;
521 }
522 /*
523 * We found a non-empty bd_entry but it did not have the
524 * VALID_FLAG set. Return an error which will result in
525 * a SEGV since this probably means that somebody scribbled
526 * some invalid data in to a bounds table.
527 */
528 if (expected_old_val != actual_old_val) {
529 ret = -EINVAL;
530 goto out_unmap;
531 }
Dave Hansencd4996d2015-06-07 11:37:04 -0700532 trace_mpx_new_bounds_table(bt_addr);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800533 return 0;
534out_unmap:
Dave Hansen613fcb72015-06-07 11:37:05 -0700535 vm_munmap(bt_addr, mpx_bt_size_bytes(mm));
Dave Hansenfe3d1972014-11-14 07:18:29 -0800536 return ret;
537}
538
539/*
540 * When a BNDSTX instruction attempts to save bounds to a bounds
541 * table, it will first attempt to look up the table in the
542 * first-level bounds directory. If it does not find a table in
543 * the directory, a #BR is generated and we get here in order to
544 * allocate a new table.
545 *
546 * With 32-bit mode, the size of BD is 4MB, and the size of each
547 * bound table is 16KB. With 64-bit mode, the size of BD is 2GB,
548 * and the size of each bound table is 4MB.
549 */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700550static int do_mpx_bt_fault(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800551{
552 unsigned long bd_entry, bd_base;
Dave Hansena84eeaa2015-06-07 11:37:01 -0700553 const struct bndcsr *bndcsr;
Dave Hansen613fcb72015-06-07 11:37:05 -0700554 struct mm_struct *mm = current->mm;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800555
Dave Hansena84eeaa2015-06-07 11:37:01 -0700556 bndcsr = get_xsave_field_ptr(XSTATE_BNDCSR);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800557 if (!bndcsr)
558 return -EINVAL;
559 /*
560 * Mask off the preserve and enable bits
561 */
562 bd_base = bndcsr->bndcfgu & MPX_BNDCFG_ADDR_MASK;
563 /*
564 * The hardware provides the address of the missing or invalid
565 * entry via BNDSTATUS, so we don't have to go look it up.
566 */
567 bd_entry = bndcsr->bndstatus & MPX_BNDSTA_ADDR_MASK;
568 /*
569 * Make sure the directory entry is within where we think
570 * the directory is.
571 */
572 if ((bd_entry < bd_base) ||
Dave Hansen613fcb72015-06-07 11:37:05 -0700573 (bd_entry >= bd_base + mpx_bd_size_bytes(mm)))
Dave Hansenfe3d1972014-11-14 07:18:29 -0800574 return -EINVAL;
575
Dave Hansen613fcb72015-06-07 11:37:05 -0700576 return allocate_bt(mm, (long __user *)bd_entry);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800577}
578
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700579int mpx_handle_bd_fault(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800580{
581 /*
582 * Userspace never asked us to manage the bounds tables,
583 * so refuse to help.
584 */
585 if (!kernel_managing_mpx_tables(current->mm))
586 return -EINVAL;
587
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700588 if (do_mpx_bt_fault()) {
Dave Hansenfe3d1972014-11-14 07:18:29 -0800589 force_sig(SIGSEGV, current);
590 /*
591 * The force_sig() is essentially "handling" this
592 * exception, so we do not pass up the error
593 * from do_mpx_bt_fault().
594 */
595 }
596 return 0;
597}
Dave Hansen1de4fa12014-11-14 07:18:31 -0800598
599/*
600 * A thin wrapper around get_user_pages(). Returns 0 if the
601 * fault was resolved or -errno if not.
602 */
603static int mpx_resolve_fault(long __user *addr, int write)
604{
605 long gup_ret;
606 int nr_pages = 1;
607 int force = 0;
608
609 gup_ret = get_user_pages(current, current->mm, (unsigned long)addr,
610 nr_pages, write, force, NULL, NULL);
611 /*
612 * get_user_pages() returns number of pages gotten.
613 * 0 means we failed to fault in and get anything,
614 * probably because 'addr' is bad.
615 */
616 if (!gup_ret)
617 return -EFAULT;
618 /* Other error, return it */
619 if (gup_ret < 0)
620 return gup_ret;
621 /* must have gup'd a page and gup_ret>0, success */
622 return 0;
623}
624
Dave Hansen54587652015-06-07 11:37:04 -0700625static unsigned long mpx_bd_entry_to_bt_addr(struct mm_struct *mm,
626 unsigned long bd_entry)
627{
628 unsigned long bt_addr = bd_entry;
629 int align_to_bytes;
630 /*
631 * Bit 0 in a bt_entry is always the valid bit.
632 */
633 bt_addr &= ~MPX_BD_ENTRY_VALID_FLAG;
634 /*
635 * Tables are naturally aligned at 8-byte boundaries
636 * on 64-bit and 4-byte boundaries on 32-bit. The
637 * documentation makes it appear that the low bits
638 * are ignored by the hardware, so we do the same.
639 */
640 if (is_64bit_mm(mm))
641 align_to_bytes = 8;
642 else
643 align_to_bytes = 4;
644 bt_addr &= ~(align_to_bytes-1);
645 return bt_addr;
646}
647
Dave Hansen1de4fa12014-11-14 07:18:31 -0800648/*
649 * Get the base of bounds tables pointed by specific bounds
650 * directory entry.
651 */
652static int get_bt_addr(struct mm_struct *mm,
Dave Hansen54587652015-06-07 11:37:04 -0700653 long __user *bd_entry_ptr,
654 unsigned long *bt_addr_result)
Dave Hansen1de4fa12014-11-14 07:18:31 -0800655{
656 int ret;
657 int valid_bit;
Dave Hansen54587652015-06-07 11:37:04 -0700658 unsigned long bd_entry;
659 unsigned long bt_addr;
Dave Hansen1de4fa12014-11-14 07:18:31 -0800660
Dave Hansen54587652015-06-07 11:37:04 -0700661 if (!access_ok(VERIFY_READ, (bd_entry_ptr), sizeof(*bd_entry_ptr)))
Dave Hansen1de4fa12014-11-14 07:18:31 -0800662 return -EFAULT;
663
664 while (1) {
665 int need_write = 0;
666
667 pagefault_disable();
Dave Hansen54587652015-06-07 11:37:04 -0700668 ret = get_user(bd_entry, bd_entry_ptr);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800669 pagefault_enable();
670 if (!ret)
671 break;
672 if (ret == -EFAULT)
Dave Hansen54587652015-06-07 11:37:04 -0700673 ret = mpx_resolve_fault(bd_entry_ptr, need_write);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800674 /*
675 * If we could not resolve the fault, consider it
676 * userspace's fault and error out.
677 */
678 if (ret)
679 return ret;
680 }
681
Dave Hansen54587652015-06-07 11:37:04 -0700682 valid_bit = bd_entry & MPX_BD_ENTRY_VALID_FLAG;
683 bt_addr = mpx_bd_entry_to_bt_addr(mm, bd_entry);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800684
685 /*
686 * When the kernel is managing bounds tables, a bounds directory
687 * entry will either have a valid address (plus the valid bit)
688 * *OR* be completely empty. If we see a !valid entry *and* some
689 * data in the address field, we know something is wrong. This
690 * -EINVAL return will cause a SIGSEGV.
691 */
Dave Hansen54587652015-06-07 11:37:04 -0700692 if (!valid_bit && bt_addr)
Dave Hansen1de4fa12014-11-14 07:18:31 -0800693 return -EINVAL;
694 /*
695 * Do we have an completely zeroed bt entry? That is OK. It
696 * just means there was no bounds table for this memory. Make
697 * sure to distinguish this from -EINVAL, which will cause
698 * a SEGV.
699 */
700 if (!valid_bit)
701 return -ENOENT;
702
Dave Hansen54587652015-06-07 11:37:04 -0700703 *bt_addr_result = bt_addr;
Dave Hansen1de4fa12014-11-14 07:18:31 -0800704 return 0;
705}
706
Dave Hansen613fcb72015-06-07 11:37:05 -0700707static inline int bt_entry_size_bytes(struct mm_struct *mm)
708{
709 if (is_64bit_mm(mm))
710 return MPX_BT_ENTRY_BYTES_64;
711 else
712 return MPX_BT_ENTRY_BYTES_32;
713}
714
715/*
716 * Take a virtual address and turns it in to the offset in bytes
717 * inside of the bounds table where the bounds table entry
718 * controlling 'addr' can be found.
719 */
720static unsigned long mpx_get_bt_entry_offset_bytes(struct mm_struct *mm,
721 unsigned long addr)
722{
723 unsigned long bt_table_nr_entries;
724 unsigned long offset = addr;
725
726 if (is_64bit_mm(mm)) {
727 /* Bottom 3 bits are ignored on 64-bit */
728 offset >>= 3;
729 bt_table_nr_entries = MPX_BT_NR_ENTRIES_64;
730 } else {
731 /* Bottom 2 bits are ignored on 32-bit */
732 offset >>= 2;
733 bt_table_nr_entries = MPX_BT_NR_ENTRIES_32;
734 }
735 /*
736 * We know the size of the table in to which we are
737 * indexing, and we have eliminated all the low bits
738 * which are ignored for indexing.
739 *
740 * Mask out all the high bits which we do not need
741 * to index in to the table. Note that the tables
742 * are always powers of two so this gives us a proper
743 * mask.
744 */
745 offset &= (bt_table_nr_entries-1);
746 /*
747 * We now have an entry offset in terms of *entries* in
748 * the table. We need to scale it back up to bytes.
749 */
750 offset *= bt_entry_size_bytes(mm);
751 return offset;
752}
753
754/*
755 * How much virtual address space does a single bounds
756 * directory entry cover?
757 *
758 * Note, we need a long long because 4GB doesn't fit in
759 * to a long on 32-bit.
760 */
761static inline unsigned long bd_entry_virt_space(struct mm_struct *mm)
762{
763 unsigned long long virt_space = (1ULL << boot_cpu_data.x86_virt_bits);
764 if (is_64bit_mm(mm))
765 return virt_space / MPX_BD_NR_ENTRIES_64;
766 else
767 return virt_space / MPX_BD_NR_ENTRIES_32;
768}
769
770/*
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700771 * Free the backing physical pages of bounds table 'bt_addr'.
772 * Assume start...end is within that bounds table.
Dave Hansen613fcb72015-06-07 11:37:05 -0700773 */
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700774static noinline int zap_bt_entries_mapping(struct mm_struct *mm,
775 unsigned long bt_addr,
776 unsigned long start_mapping, unsigned long end_mapping)
777{
778 struct vm_area_struct *vma;
779 unsigned long addr, len;
780 unsigned long start;
781 unsigned long end;
782
783 /*
784 * if we 'end' on a boundary, the offset will be 0 which
785 * is not what we want. Back it up a byte to get the
786 * last bt entry. Then once we have the entry itself,
787 * move 'end' back up by the table entry size.
788 */
789 start = bt_addr + mpx_get_bt_entry_offset_bytes(mm, start_mapping);
790 end = bt_addr + mpx_get_bt_entry_offset_bytes(mm, end_mapping - 1);
791 /*
792 * Move end back up by one entry. Among other things
793 * this ensures that it remains page-aligned and does
794 * not screw up zap_page_range()
795 */
796 end += bt_entry_size_bytes(mm);
797
798 /*
799 * Find the first overlapping vma. If vma->vm_start > start, there
800 * will be a hole in the bounds table. This -EINVAL return will
801 * cause a SIGSEGV.
802 */
803 vma = find_vma(mm, start);
804 if (!vma || vma->vm_start > start)
805 return -EINVAL;
806
807 /*
808 * A NUMA policy on a VM_MPX VMA could cause this bounds table to
809 * be split. So we need to look across the entire 'start -> end'
810 * range of this bounds table, find all of the VM_MPX VMAs, and
811 * zap only those.
812 */
813 addr = start;
814 while (vma && vma->vm_start < end) {
815 /*
816 * We followed a bounds directory entry down
817 * here. If we find a non-MPX VMA, that's bad,
818 * so stop immediately and return an error. This
819 * probably results in a SIGSEGV.
820 */
821 if (!is_mpx_vma(vma))
822 return -EINVAL;
823
824 len = min(vma->vm_end, end) - addr;
825 zap_page_range(vma, addr, len, NULL);
826 trace_mpx_unmap_zap(addr, addr+len);
827
828 vma = vma->vm_next;
829 addr = vma->vm_start;
830 }
831 return 0;
832}
833
Dave Hansen613fcb72015-06-07 11:37:05 -0700834static unsigned long mpx_get_bd_entry_offset(struct mm_struct *mm,
835 unsigned long addr)
836{
837 /*
838 * There are several ways to derive the bd offsets. We
839 * use the following approach here:
840 * 1. We know the size of the virtual address space
841 * 2. We know the number of entries in a bounds table
842 * 3. We know that each entry covers a fixed amount of
843 * virtual address space.
844 * So, we can just divide the virtual address by the
845 * virtual space used by one entry to determine which
846 * entry "controls" the given virtual address.
847 */
848 if (is_64bit_mm(mm)) {
849 int bd_entry_size = 8; /* 64-bit pointer */
850 /*
851 * Take the 64-bit addressing hole in to account.
852 */
853 addr &= ((1UL << boot_cpu_data.x86_virt_bits) - 1);
854 return (addr / bd_entry_virt_space(mm)) * bd_entry_size;
855 } else {
856 int bd_entry_size = 4; /* 32-bit pointer */
857 /*
858 * 32-bit has no hole so this case needs no mask
859 */
860 return (addr / bd_entry_virt_space(mm)) * bd_entry_size;
861 }
862 /*
863 * The two return calls above are exact copies. If we
864 * pull out a single copy and put it in here, gcc won't
865 * realize that we're doing a power-of-2 divide and use
866 * shifts. It uses a real divide. If we put them up
867 * there, it manages to figure it out (gcc 4.8.3).
868 */
Dave Hansen1de4fa12014-11-14 07:18:31 -0800869}
870
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700871static int unmap_entire_bt(struct mm_struct *mm,
872 long __user *bd_entry, unsigned long bt_addr)
Dave Hansen1de4fa12014-11-14 07:18:31 -0800873{
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700874 unsigned long expected_old_val = bt_addr | MPX_BD_ENTRY_VALID_FLAG;
875 unsigned long uninitialized_var(actual_old_val);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800876 int ret;
877
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700878 while (1) {
879 int need_write = 1;
880 unsigned long cleared_bd_entry = 0;
881
882 pagefault_disable();
883 ret = mpx_cmpxchg_bd_entry(mm, &actual_old_val,
884 bd_entry, expected_old_val, cleared_bd_entry);
885 pagefault_enable();
886 if (!ret)
887 break;
888 if (ret == -EFAULT)
889 ret = mpx_resolve_fault(bd_entry, need_write);
890 /*
891 * If we could not resolve the fault, consider it
892 * userspace's fault and error out.
893 */
894 if (ret)
895 return ret;
896 }
Dave Hansen1de4fa12014-11-14 07:18:31 -0800897 /*
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700898 * The cmpxchg was performed, check the results.
Dave Hansen1de4fa12014-11-14 07:18:31 -0800899 */
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700900 if (actual_old_val != expected_old_val) {
901 /*
902 * Someone else raced with us to unmap the table.
903 * That is OK, since we were both trying to do
904 * the same thing. Declare success.
905 */
906 if (!actual_old_val)
907 return 0;
908 /*
909 * Something messed with the bounds directory
910 * entry. We hold mmap_sem for read or write
911 * here, so it could not be a _new_ bounds table
912 * that someone just allocated. Something is
913 * wrong, so pass up the error and SIGSEGV.
914 */
915 return -EINVAL;
916 }
917 /*
918 * Note, we are likely being called under do_munmap() already. To
919 * avoid recursion, do_munmap() will check whether it comes
920 * from one bounds table through VM_MPX flag.
921 */
922 return do_munmap(mm, bt_addr, mpx_bt_size_bytes(mm));
Dave Hansen1de4fa12014-11-14 07:18:31 -0800923}
924
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700925static int try_unmap_single_bt(struct mm_struct *mm,
926 unsigned long start, unsigned long end)
Dave Hansen1de4fa12014-11-14 07:18:31 -0800927{
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700928 struct vm_area_struct *next;
929 struct vm_area_struct *prev;
Dave Hansen1de4fa12014-11-14 07:18:31 -0800930 /*
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700931 * "bta" == Bounds Table Area: the area controlled by the
932 * bounds table that we are unmapping.
933 */
934 unsigned long bta_start_vaddr = start & ~(bd_entry_virt_space(mm)-1);
935 unsigned long bta_end_vaddr = bta_start_vaddr + bd_entry_virt_space(mm);
936 unsigned long uninitialized_var(bt_addr);
937 void __user *bde_vaddr;
938 int ret;
939 /*
Dave Hansenbea03c52015-06-07 11:37:06 -0700940 * We already unlinked the VMAs from the mm's rbtree so 'start'
941 * is guaranteed to be in a hole. This gets us the first VMA
942 * before the hole in to 'prev' and the next VMA after the hole
943 * in to 'next'.
944 */
945 next = find_vma_prev(mm, start, &prev);
946 /*
947 * Do not count other MPX bounds table VMAs as neighbors.
948 * Although theoretically possible, we do not allow bounds
949 * tables for bounds tables so our heads do not explode.
950 * If we count them as neighbors here, we may end up with
951 * lots of tables even though we have no actual table
952 * entries in use.
953 */
954 while (next && is_mpx_vma(next))
955 next = next->vm_next;
956 while (prev && is_mpx_vma(prev))
957 prev = prev->vm_prev;
958 /*
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700959 * We know 'start' and 'end' lie within an area controlled
960 * by a single bounds table. See if there are any other
961 * VMAs controlled by that bounds table. If there are not
962 * then we can "expand" the are we are unmapping to possibly
963 * cover the entire table.
Dave Hansen1de4fa12014-11-14 07:18:31 -0800964 */
965 next = find_vma_prev(mm, start, &prev);
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700966 if ((!prev || prev->vm_end <= bta_start_vaddr) &&
967 (!next || next->vm_start >= bta_end_vaddr)) {
968 /*
969 * No neighbor VMAs controlled by same bounds
970 * table. Try to unmap the whole thing
971 */
972 start = bta_start_vaddr;
973 end = bta_end_vaddr;
Dave Hansen1de4fa12014-11-14 07:18:31 -0800974 }
975
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700976 bde_vaddr = mm->bd_addr + mpx_get_bd_entry_offset(mm, start);
977 ret = get_bt_addr(mm, bde_vaddr, &bt_addr);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800978 /*
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700979 * No bounds table there, so nothing to unmap.
Dave Hansen1de4fa12014-11-14 07:18:31 -0800980 */
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700981 if (ret == -ENOENT) {
982 ret = 0;
983 return 0;
984 }
Dave Hansen1de4fa12014-11-14 07:18:31 -0800985 if (ret)
986 return ret;
Dave Hansen3ceaccd2015-06-07 11:37:06 -0700987 /*
988 * We are unmapping an entire table. Either because the
989 * unmap that started this whole process was large enough
990 * to cover an entire table, or that the unmap was small
991 * but was the area covered by a bounds table.
992 */
993 if ((start == bta_start_vaddr) &&
994 (end == bta_end_vaddr))
995 return unmap_entire_bt(mm, bde_vaddr, bt_addr);
996 return zap_bt_entries_mapping(mm, bt_addr, start, end);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800997}
998
999static int mpx_unmap_tables(struct mm_struct *mm,
1000 unsigned long start, unsigned long end)
1001{
Dave Hansen3ceaccd2015-06-07 11:37:06 -07001002 unsigned long one_unmap_start;
Dave Hansen2a1dcb12015-06-07 11:37:03 -07001003 trace_mpx_unmap_search(start, end);
Dave Hansen1de4fa12014-11-14 07:18:31 -08001004
Dave Hansen3ceaccd2015-06-07 11:37:06 -07001005 one_unmap_start = start;
1006 while (one_unmap_start < end) {
1007 int ret;
1008 unsigned long next_unmap_start = ALIGN(one_unmap_start+1,
1009 bd_entry_virt_space(mm));
1010 unsigned long one_unmap_end = end;
1011 /*
1012 * if the end is beyond the current bounds table,
1013 * move it back so we only deal with a single one
1014 * at a time
1015 */
1016 if (one_unmap_end > next_unmap_start)
1017 one_unmap_end = next_unmap_start;
1018 ret = try_unmap_single_bt(mm, one_unmap_start, one_unmap_end);
Dave Hansen1de4fa12014-11-14 07:18:31 -08001019 if (ret)
1020 return ret;
Dave Hansen1de4fa12014-11-14 07:18:31 -08001021
Dave Hansen3ceaccd2015-06-07 11:37:06 -07001022 one_unmap_start = next_unmap_start;
1023 }
Dave Hansen1de4fa12014-11-14 07:18:31 -08001024 return 0;
1025}
1026
1027/*
1028 * Free unused bounds tables covered in a virtual address region being
1029 * munmap()ed. Assume end > start.
1030 *
1031 * This function will be called by do_munmap(), and the VMAs covering
1032 * the virtual address region start...end have already been split if
1033 * necessary, and the 'vma' is the first vma in this range (start -> end).
1034 */
1035void mpx_notify_unmap(struct mm_struct *mm, struct vm_area_struct *vma,
1036 unsigned long start, unsigned long end)
1037{
1038 int ret;
1039
1040 /*
1041 * Refuse to do anything unless userspace has asked
1042 * the kernel to help manage the bounds tables,
1043 */
1044 if (!kernel_managing_mpx_tables(current->mm))
1045 return;
1046 /*
1047 * This will look across the entire 'start -> end' range,
1048 * and find all of the non-VM_MPX VMAs.
1049 *
1050 * To avoid recursion, if a VM_MPX vma is found in the range
1051 * (start->end), we will not continue follow-up work. This
1052 * recursion represents having bounds tables for bounds tables,
1053 * which should not occur normally. Being strict about it here
1054 * helps ensure that we do not have an exploitable stack overflow.
1055 */
1056 do {
1057 if (vma->vm_flags & VM_MPX)
1058 return;
1059 vma = vma->vm_next;
1060 } while (vma && vma->vm_start < end);
1061
1062 ret = mpx_unmap_tables(mm, start, end);
1063 if (ret)
1064 force_sig(SIGSEGV, current);
1065}