mpx.c 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  1. /*
  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>
  9. #include <linux/slab.h>
  10. #include <linux/syscalls.h>
  11. #include <linux/sched/sysctl.h>
  12. #include <asm/insn.h>
  13. #include <asm/mman.h>
  14. #include <asm/mmu_context.h>
  15. #include <asm/mpx.h>
  16. #include <asm/processor.h>
  17. #include <asm/fpu/internal.h>
  18. #define CREATE_TRACE_POINTS
  19. #include <asm/trace/mpx.h>
  20. static inline unsigned long mpx_bd_size_bytes(struct mm_struct *mm)
  21. {
  22. if (is_64bit_mm(mm))
  23. return MPX_BD_SIZE_BYTES_64;
  24. else
  25. return MPX_BD_SIZE_BYTES_32;
  26. }
  27. static inline unsigned long mpx_bt_size_bytes(struct mm_struct *mm)
  28. {
  29. if (is_64bit_mm(mm))
  30. return MPX_BT_SIZE_BYTES_64;
  31. else
  32. return MPX_BT_SIZE_BYTES_32;
  33. }
  34. /*
  35. * This is really a simplified "vm_mmap". it only handles MPX
  36. * bounds tables (the bounds directory is user-allocated).
  37. */
  38. static unsigned long mpx_mmap(unsigned long len)
  39. {
  40. struct mm_struct *mm = current->mm;
  41. unsigned long addr, populate;
  42. /* Only bounds table can be allocated here */
  43. if (len != mpx_bt_size_bytes(mm))
  44. return -EINVAL;
  45. down_write(&mm->mmap_sem);
  46. addr = do_mmap(NULL, 0, len, PROT_READ | PROT_WRITE,
  47. MAP_ANONYMOUS | MAP_PRIVATE, VM_MPX, 0, &populate);
  48. up_write(&mm->mmap_sem);
  49. if (populate)
  50. mm_populate(addr, populate);
  51. return addr;
  52. }
  53. enum reg_type {
  54. REG_TYPE_RM = 0,
  55. REG_TYPE_INDEX,
  56. REG_TYPE_BASE,
  57. };
  58. static int get_reg_offset(struct insn *insn, struct pt_regs *regs,
  59. enum reg_type type)
  60. {
  61. int regno = 0;
  62. static const int regoff[] = {
  63. offsetof(struct pt_regs, ax),
  64. offsetof(struct pt_regs, cx),
  65. offsetof(struct pt_regs, dx),
  66. offsetof(struct pt_regs, bx),
  67. offsetof(struct pt_regs, sp),
  68. offsetof(struct pt_regs, bp),
  69. offsetof(struct pt_regs, si),
  70. offsetof(struct pt_regs, di),
  71. #ifdef CONFIG_X86_64
  72. offsetof(struct pt_regs, r8),
  73. offsetof(struct pt_regs, r9),
  74. offsetof(struct pt_regs, r10),
  75. offsetof(struct pt_regs, r11),
  76. offsetof(struct pt_regs, r12),
  77. offsetof(struct pt_regs, r13),
  78. offsetof(struct pt_regs, r14),
  79. offsetof(struct pt_regs, r15),
  80. #endif
  81. };
  82. int nr_registers = ARRAY_SIZE(regoff);
  83. /*
  84. * Don't possibly decode a 32-bit instructions as
  85. * reading a 64-bit-only register.
  86. */
  87. if (IS_ENABLED(CONFIG_X86_64) && !insn->x86_64)
  88. nr_registers -= 8;
  89. switch (type) {
  90. case REG_TYPE_RM:
  91. regno = X86_MODRM_RM(insn->modrm.value);
  92. if (X86_REX_B(insn->rex_prefix.value))
  93. regno += 8;
  94. break;
  95. case REG_TYPE_INDEX:
  96. regno = X86_SIB_INDEX(insn->sib.value);
  97. if (X86_REX_X(insn->rex_prefix.value))
  98. regno += 8;
  99. break;
  100. case REG_TYPE_BASE:
  101. regno = X86_SIB_BASE(insn->sib.value);
  102. if (X86_REX_B(insn->rex_prefix.value))
  103. regno += 8;
  104. break;
  105. default:
  106. pr_err("invalid register type");
  107. BUG();
  108. break;
  109. }
  110. if (regno >= nr_registers) {
  111. WARN_ONCE(1, "decoded an instruction with an invalid register");
  112. return -EINVAL;
  113. }
  114. return regoff[regno];
  115. }
  116. /*
  117. * return the address being referenced be instruction
  118. * for rm=3 returning the content of the rm reg
  119. * for rm!=3 calculates the address using SIB and Disp
  120. */
  121. static void __user *mpx_get_addr_ref(struct insn *insn, struct pt_regs *regs)
  122. {
  123. unsigned long addr, base, indx;
  124. int addr_offset, base_offset, indx_offset;
  125. insn_byte_t sib;
  126. insn_get_modrm(insn);
  127. insn_get_sib(insn);
  128. sib = insn->sib.value;
  129. if (X86_MODRM_MOD(insn->modrm.value) == 3) {
  130. addr_offset = get_reg_offset(insn, regs, REG_TYPE_RM);
  131. if (addr_offset < 0)
  132. goto out_err;
  133. addr = regs_get_register(regs, addr_offset);
  134. } else {
  135. if (insn->sib.nbytes) {
  136. base_offset = get_reg_offset(insn, regs, REG_TYPE_BASE);
  137. if (base_offset < 0)
  138. goto out_err;
  139. indx_offset = get_reg_offset(insn, regs, REG_TYPE_INDEX);
  140. if (indx_offset < 0)
  141. goto out_err;
  142. base = regs_get_register(regs, base_offset);
  143. indx = regs_get_register(regs, indx_offset);
  144. addr = base + indx * (1 << X86_SIB_SCALE(sib));
  145. } else {
  146. addr_offset = get_reg_offset(insn, regs, REG_TYPE_RM);
  147. if (addr_offset < 0)
  148. goto out_err;
  149. addr = regs_get_register(regs, addr_offset);
  150. }
  151. addr += insn->displacement.value;
  152. }
  153. return (void __user *)addr;
  154. out_err:
  155. return (void __user *)-1;
  156. }
  157. static int mpx_insn_decode(struct insn *insn,
  158. struct pt_regs *regs)
  159. {
  160. unsigned char buf[MAX_INSN_SIZE];
  161. int x86_64 = !test_thread_flag(TIF_IA32);
  162. int not_copied;
  163. int nr_copied;
  164. not_copied = copy_from_user(buf, (void __user *)regs->ip, sizeof(buf));
  165. nr_copied = sizeof(buf) - not_copied;
  166. /*
  167. * The decoder _should_ fail nicely if we pass it a short buffer.
  168. * But, let's not depend on that implementation detail. If we
  169. * did not get anything, just error out now.
  170. */
  171. if (!nr_copied)
  172. return -EFAULT;
  173. insn_init(insn, buf, nr_copied, x86_64);
  174. insn_get_length(insn);
  175. /*
  176. * copy_from_user() tries to get as many bytes as we could see in
  177. * the largest possible instruction. If the instruction we are
  178. * after is shorter than that _and_ we attempt to copy from
  179. * something unreadable, we might get a short read. This is OK
  180. * as long as the read did not stop in the middle of the
  181. * instruction. Check to see if we got a partial instruction.
  182. */
  183. if (nr_copied < insn->length)
  184. return -EFAULT;
  185. insn_get_opcode(insn);
  186. /*
  187. * We only _really_ need to decode bndcl/bndcn/bndcu
  188. * Error out on anything else.
  189. */
  190. if (insn->opcode.bytes[0] != 0x0f)
  191. goto bad_opcode;
  192. if ((insn->opcode.bytes[1] != 0x1a) &&
  193. (insn->opcode.bytes[1] != 0x1b))
  194. goto bad_opcode;
  195. return 0;
  196. bad_opcode:
  197. return -EINVAL;
  198. }
  199. /*
  200. * If a bounds overflow occurs then a #BR is generated. This
  201. * function decodes MPX instructions to get violation address
  202. * and set this address into extended struct siginfo.
  203. *
  204. * Note that this is not a super precise way of doing this.
  205. * Userspace could have, by the time we get here, written
  206. * anything it wants in to the instructions. We can not
  207. * trust anything about it. They might not be valid
  208. * instructions or might encode invalid registers, etc...
  209. *
  210. * The caller is expected to kfree() the returned siginfo_t.
  211. */
  212. siginfo_t *mpx_generate_siginfo(struct pt_regs *regs)
  213. {
  214. const struct mpx_bndreg_state *bndregs;
  215. const struct mpx_bndreg *bndreg;
  216. siginfo_t *info = NULL;
  217. struct insn insn;
  218. uint8_t bndregno;
  219. int err;
  220. err = mpx_insn_decode(&insn, regs);
  221. if (err)
  222. goto err_out;
  223. /*
  224. * We know at this point that we are only dealing with
  225. * MPX instructions.
  226. */
  227. insn_get_modrm(&insn);
  228. bndregno = X86_MODRM_REG(insn.modrm.value);
  229. if (bndregno > 3) {
  230. err = -EINVAL;
  231. goto err_out;
  232. }
  233. /* get bndregs field from current task's xsave area */
  234. bndregs = get_xsave_field_ptr(XFEATURE_MASK_BNDREGS);
  235. if (!bndregs) {
  236. err = -EINVAL;
  237. goto err_out;
  238. }
  239. /* now go select the individual register in the set of 4 */
  240. bndreg = &bndregs->bndreg[bndregno];
  241. info = kzalloc(sizeof(*info), GFP_KERNEL);
  242. if (!info) {
  243. err = -ENOMEM;
  244. goto err_out;
  245. }
  246. /*
  247. * The registers are always 64-bit, but the upper 32
  248. * bits are ignored in 32-bit mode. Also, note that the
  249. * upper bounds are architecturally represented in 1's
  250. * complement form.
  251. *
  252. * The 'unsigned long' cast is because the compiler
  253. * complains when casting from integers to different-size
  254. * pointers.
  255. */
  256. info->si_lower = (void __user *)(unsigned long)bndreg->lower_bound;
  257. info->si_upper = (void __user *)(unsigned long)~bndreg->upper_bound;
  258. info->si_addr_lsb = 0;
  259. info->si_signo = SIGSEGV;
  260. info->si_errno = 0;
  261. info->si_code = SEGV_BNDERR;
  262. info->si_addr = mpx_get_addr_ref(&insn, regs);
  263. /*
  264. * We were not able to extract an address from the instruction,
  265. * probably because there was something invalid in it.
  266. */
  267. if (info->si_addr == (void *)-1) {
  268. err = -EINVAL;
  269. goto err_out;
  270. }
  271. trace_mpx_bounds_register_exception(info->si_addr, bndreg);
  272. return info;
  273. err_out:
  274. /* info might be NULL, but kfree() handles that */
  275. kfree(info);
  276. return ERR_PTR(err);
  277. }
  278. static __user void *mpx_get_bounds_dir(void)
  279. {
  280. const struct mpx_bndcsr *bndcsr;
  281. if (!cpu_feature_enabled(X86_FEATURE_MPX))
  282. return MPX_INVALID_BOUNDS_DIR;
  283. /*
  284. * The bounds directory pointer is stored in a register
  285. * only accessible if we first do an xsave.
  286. */
  287. bndcsr = get_xsave_field_ptr(XFEATURE_MASK_BNDCSR);
  288. if (!bndcsr)
  289. return MPX_INVALID_BOUNDS_DIR;
  290. /*
  291. * Make sure the register looks valid by checking the
  292. * enable bit.
  293. */
  294. if (!(bndcsr->bndcfgu & MPX_BNDCFG_ENABLE_FLAG))
  295. return MPX_INVALID_BOUNDS_DIR;
  296. /*
  297. * Lastly, mask off the low bits used for configuration
  298. * flags, and return the address of the bounds table.
  299. */
  300. return (void __user *)(unsigned long)
  301. (bndcsr->bndcfgu & MPX_BNDCFG_ADDR_MASK);
  302. }
  303. int mpx_enable_management(void)
  304. {
  305. void __user *bd_base = MPX_INVALID_BOUNDS_DIR;
  306. struct mm_struct *mm = current->mm;
  307. int ret = 0;
  308. /*
  309. * runtime in the userspace will be responsible for allocation of
  310. * the bounds directory. Then, it will save the base of the bounds
  311. * directory into XSAVE/XRSTOR Save Area and enable MPX through
  312. * XRSTOR instruction.
  313. *
  314. * The copy_xregs_to_kernel() beneath get_xsave_field_ptr() is
  315. * expected to be relatively expensive. Storing the bounds
  316. * directory here means that we do not have to do xsave in the
  317. * unmap path; we can just use mm->context.bd_addr instead.
  318. */
  319. bd_base = mpx_get_bounds_dir();
  320. down_write(&mm->mmap_sem);
  321. mm->context.bd_addr = bd_base;
  322. if (mm->context.bd_addr == MPX_INVALID_BOUNDS_DIR)
  323. ret = -ENXIO;
  324. up_write(&mm->mmap_sem);
  325. return ret;
  326. }
  327. int mpx_disable_management(void)
  328. {
  329. struct mm_struct *mm = current->mm;
  330. if (!cpu_feature_enabled(X86_FEATURE_MPX))
  331. return -ENXIO;
  332. down_write(&mm->mmap_sem);
  333. mm->context.bd_addr = MPX_INVALID_BOUNDS_DIR;
  334. up_write(&mm->mmap_sem);
  335. return 0;
  336. }
  337. static int mpx_cmpxchg_bd_entry(struct mm_struct *mm,
  338. unsigned long *curval,
  339. unsigned long __user *addr,
  340. unsigned long old_val, unsigned long new_val)
  341. {
  342. int ret;
  343. /*
  344. * user_atomic_cmpxchg_inatomic() actually uses sizeof()
  345. * the pointer that we pass to it to figure out how much
  346. * data to cmpxchg. We have to be careful here not to
  347. * pass a pointer to a 64-bit data type when we only want
  348. * a 32-bit copy.
  349. */
  350. if (is_64bit_mm(mm)) {
  351. ret = user_atomic_cmpxchg_inatomic(curval,
  352. addr, old_val, new_val);
  353. } else {
  354. u32 uninitialized_var(curval_32);
  355. u32 old_val_32 = old_val;
  356. u32 new_val_32 = new_val;
  357. u32 __user *addr_32 = (u32 __user *)addr;
  358. ret = user_atomic_cmpxchg_inatomic(&curval_32,
  359. addr_32, old_val_32, new_val_32);
  360. *curval = curval_32;
  361. }
  362. return ret;
  363. }
  364. /*
  365. * With 32-bit mode, a bounds directory is 4MB, and the size of each
  366. * bounds table is 16KB. With 64-bit mode, a bounds directory is 2GB,
  367. * and the size of each bounds table is 4MB.
  368. */
  369. static int allocate_bt(struct mm_struct *mm, long __user *bd_entry)
  370. {
  371. unsigned long expected_old_val = 0;
  372. unsigned long actual_old_val = 0;
  373. unsigned long bt_addr;
  374. unsigned long bd_new_entry;
  375. int ret = 0;
  376. /*
  377. * Carve the virtual space out of userspace for the new
  378. * bounds table:
  379. */
  380. bt_addr = mpx_mmap(mpx_bt_size_bytes(mm));
  381. if (IS_ERR((void *)bt_addr))
  382. return PTR_ERR((void *)bt_addr);
  383. /*
  384. * Set the valid flag (kinda like _PAGE_PRESENT in a pte)
  385. */
  386. bd_new_entry = bt_addr | MPX_BD_ENTRY_VALID_FLAG;
  387. /*
  388. * Go poke the address of the new bounds table in to the
  389. * bounds directory entry out in userspace memory. Note:
  390. * we may race with another CPU instantiating the same table.
  391. * In that case the cmpxchg will see an unexpected
  392. * 'actual_old_val'.
  393. *
  394. * This can fault, but that's OK because we do not hold
  395. * mmap_sem at this point, unlike some of the other part
  396. * of the MPX code that have to pagefault_disable().
  397. */
  398. ret = mpx_cmpxchg_bd_entry(mm, &actual_old_val, bd_entry,
  399. expected_old_val, bd_new_entry);
  400. if (ret)
  401. goto out_unmap;
  402. /*
  403. * The user_atomic_cmpxchg_inatomic() will only return nonzero
  404. * for faults, *not* if the cmpxchg itself fails. Now we must
  405. * verify that the cmpxchg itself completed successfully.
  406. */
  407. /*
  408. * We expected an empty 'expected_old_val', but instead found
  409. * an apparently valid entry. Assume we raced with another
  410. * thread to instantiate this table and desclare succecss.
  411. */
  412. if (actual_old_val & MPX_BD_ENTRY_VALID_FLAG) {
  413. ret = 0;
  414. goto out_unmap;
  415. }
  416. /*
  417. * We found a non-empty bd_entry but it did not have the
  418. * VALID_FLAG set. Return an error which will result in
  419. * a SEGV since this probably means that somebody scribbled
  420. * some invalid data in to a bounds table.
  421. */
  422. if (expected_old_val != actual_old_val) {
  423. ret = -EINVAL;
  424. goto out_unmap;
  425. }
  426. trace_mpx_new_bounds_table(bt_addr);
  427. return 0;
  428. out_unmap:
  429. vm_munmap(bt_addr, mpx_bt_size_bytes(mm));
  430. return ret;
  431. }
  432. /*
  433. * When a BNDSTX instruction attempts to save bounds to a bounds
  434. * table, it will first attempt to look up the table in the
  435. * first-level bounds directory. If it does not find a table in
  436. * the directory, a #BR is generated and we get here in order to
  437. * allocate a new table.
  438. *
  439. * With 32-bit mode, the size of BD is 4MB, and the size of each
  440. * bound table is 16KB. With 64-bit mode, the size of BD is 2GB,
  441. * and the size of each bound table is 4MB.
  442. */
  443. static int do_mpx_bt_fault(void)
  444. {
  445. unsigned long bd_entry, bd_base;
  446. const struct mpx_bndcsr *bndcsr;
  447. struct mm_struct *mm = current->mm;
  448. bndcsr = get_xsave_field_ptr(XFEATURE_MASK_BNDCSR);
  449. if (!bndcsr)
  450. return -EINVAL;
  451. /*
  452. * Mask off the preserve and enable bits
  453. */
  454. bd_base = bndcsr->bndcfgu & MPX_BNDCFG_ADDR_MASK;
  455. /*
  456. * The hardware provides the address of the missing or invalid
  457. * entry via BNDSTATUS, so we don't have to go look it up.
  458. */
  459. bd_entry = bndcsr->bndstatus & MPX_BNDSTA_ADDR_MASK;
  460. /*
  461. * Make sure the directory entry is within where we think
  462. * the directory is.
  463. */
  464. if ((bd_entry < bd_base) ||
  465. (bd_entry >= bd_base + mpx_bd_size_bytes(mm)))
  466. return -EINVAL;
  467. return allocate_bt(mm, (long __user *)bd_entry);
  468. }
  469. int mpx_handle_bd_fault(void)
  470. {
  471. /*
  472. * Userspace never asked us to manage the bounds tables,
  473. * so refuse to help.
  474. */
  475. if (!kernel_managing_mpx_tables(current->mm))
  476. return -EINVAL;
  477. if (do_mpx_bt_fault()) {
  478. force_sig(SIGSEGV, current);
  479. /*
  480. * The force_sig() is essentially "handling" this
  481. * exception, so we do not pass up the error
  482. * from do_mpx_bt_fault().
  483. */
  484. }
  485. return 0;
  486. }
  487. /*
  488. * A thin wrapper around get_user_pages(). Returns 0 if the
  489. * fault was resolved or -errno if not.
  490. */
  491. static int mpx_resolve_fault(long __user *addr, int write)
  492. {
  493. long gup_ret;
  494. int nr_pages = 1;
  495. gup_ret = get_user_pages((unsigned long)addr, nr_pages,
  496. write ? FOLL_WRITE : 0, NULL, NULL);
  497. /*
  498. * get_user_pages() returns number of pages gotten.
  499. * 0 means we failed to fault in and get anything,
  500. * probably because 'addr' is bad.
  501. */
  502. if (!gup_ret)
  503. return -EFAULT;
  504. /* Other error, return it */
  505. if (gup_ret < 0)
  506. return gup_ret;
  507. /* must have gup'd a page and gup_ret>0, success */
  508. return 0;
  509. }
  510. static unsigned long mpx_bd_entry_to_bt_addr(struct mm_struct *mm,
  511. unsigned long bd_entry)
  512. {
  513. unsigned long bt_addr = bd_entry;
  514. int align_to_bytes;
  515. /*
  516. * Bit 0 in a bt_entry is always the valid bit.
  517. */
  518. bt_addr &= ~MPX_BD_ENTRY_VALID_FLAG;
  519. /*
  520. * Tables are naturally aligned at 8-byte boundaries
  521. * on 64-bit and 4-byte boundaries on 32-bit. The
  522. * documentation makes it appear that the low bits
  523. * are ignored by the hardware, so we do the same.
  524. */
  525. if (is_64bit_mm(mm))
  526. align_to_bytes = 8;
  527. else
  528. align_to_bytes = 4;
  529. bt_addr &= ~(align_to_bytes-1);
  530. return bt_addr;
  531. }
  532. /*
  533. * We only want to do a 4-byte get_user() on 32-bit. Otherwise,
  534. * we might run off the end of the bounds table if we are on
  535. * a 64-bit kernel and try to get 8 bytes.
  536. */
  537. int get_user_bd_entry(struct mm_struct *mm, unsigned long *bd_entry_ret,
  538. long __user *bd_entry_ptr)
  539. {
  540. u32 bd_entry_32;
  541. int ret;
  542. if (is_64bit_mm(mm))
  543. return get_user(*bd_entry_ret, bd_entry_ptr);
  544. /*
  545. * Note that get_user() uses the type of the *pointer* to
  546. * establish the size of the get, not the destination.
  547. */
  548. ret = get_user(bd_entry_32, (u32 __user *)bd_entry_ptr);
  549. *bd_entry_ret = bd_entry_32;
  550. return ret;
  551. }
  552. /*
  553. * Get the base of bounds tables pointed by specific bounds
  554. * directory entry.
  555. */
  556. static int get_bt_addr(struct mm_struct *mm,
  557. long __user *bd_entry_ptr,
  558. unsigned long *bt_addr_result)
  559. {
  560. int ret;
  561. int valid_bit;
  562. unsigned long bd_entry;
  563. unsigned long bt_addr;
  564. if (!access_ok(VERIFY_READ, (bd_entry_ptr), sizeof(*bd_entry_ptr)))
  565. return -EFAULT;
  566. while (1) {
  567. int need_write = 0;
  568. pagefault_disable();
  569. ret = get_user_bd_entry(mm, &bd_entry, bd_entry_ptr);
  570. pagefault_enable();
  571. if (!ret)
  572. break;
  573. if (ret == -EFAULT)
  574. ret = mpx_resolve_fault(bd_entry_ptr, need_write);
  575. /*
  576. * If we could not resolve the fault, consider it
  577. * userspace's fault and error out.
  578. */
  579. if (ret)
  580. return ret;
  581. }
  582. valid_bit = bd_entry & MPX_BD_ENTRY_VALID_FLAG;
  583. bt_addr = mpx_bd_entry_to_bt_addr(mm, bd_entry);
  584. /*
  585. * When the kernel is managing bounds tables, a bounds directory
  586. * entry will either have a valid address (plus the valid bit)
  587. * *OR* be completely empty. If we see a !valid entry *and* some
  588. * data in the address field, we know something is wrong. This
  589. * -EINVAL return will cause a SIGSEGV.
  590. */
  591. if (!valid_bit && bt_addr)
  592. return -EINVAL;
  593. /*
  594. * Do we have an completely zeroed bt entry? That is OK. It
  595. * just means there was no bounds table for this memory. Make
  596. * sure to distinguish this from -EINVAL, which will cause
  597. * a SEGV.
  598. */
  599. if (!valid_bit)
  600. return -ENOENT;
  601. *bt_addr_result = bt_addr;
  602. return 0;
  603. }
  604. static inline int bt_entry_size_bytes(struct mm_struct *mm)
  605. {
  606. if (is_64bit_mm(mm))
  607. return MPX_BT_ENTRY_BYTES_64;
  608. else
  609. return MPX_BT_ENTRY_BYTES_32;
  610. }
  611. /*
  612. * Take a virtual address and turns it in to the offset in bytes
  613. * inside of the bounds table where the bounds table entry
  614. * controlling 'addr' can be found.
  615. */
  616. static unsigned long mpx_get_bt_entry_offset_bytes(struct mm_struct *mm,
  617. unsigned long addr)
  618. {
  619. unsigned long bt_table_nr_entries;
  620. unsigned long offset = addr;
  621. if (is_64bit_mm(mm)) {
  622. /* Bottom 3 bits are ignored on 64-bit */
  623. offset >>= 3;
  624. bt_table_nr_entries = MPX_BT_NR_ENTRIES_64;
  625. } else {
  626. /* Bottom 2 bits are ignored on 32-bit */
  627. offset >>= 2;
  628. bt_table_nr_entries = MPX_BT_NR_ENTRIES_32;
  629. }
  630. /*
  631. * We know the size of the table in to which we are
  632. * indexing, and we have eliminated all the low bits
  633. * which are ignored for indexing.
  634. *
  635. * Mask out all the high bits which we do not need
  636. * to index in to the table. Note that the tables
  637. * are always powers of two so this gives us a proper
  638. * mask.
  639. */
  640. offset &= (bt_table_nr_entries-1);
  641. /*
  642. * We now have an entry offset in terms of *entries* in
  643. * the table. We need to scale it back up to bytes.
  644. */
  645. offset *= bt_entry_size_bytes(mm);
  646. return offset;
  647. }
  648. /*
  649. * How much virtual address space does a single bounds
  650. * directory entry cover?
  651. *
  652. * Note, we need a long long because 4GB doesn't fit in
  653. * to a long on 32-bit.
  654. */
  655. static inline unsigned long bd_entry_virt_space(struct mm_struct *mm)
  656. {
  657. unsigned long long virt_space;
  658. unsigned long long GB = (1ULL << 30);
  659. /*
  660. * This covers 32-bit emulation as well as 32-bit kernels
  661. * running on 64-bit hardware.
  662. */
  663. if (!is_64bit_mm(mm))
  664. return (4ULL * GB) / MPX_BD_NR_ENTRIES_32;
  665. /*
  666. * 'x86_virt_bits' returns what the hardware is capable
  667. * of, and returns the full >32-bit address space when
  668. * running 32-bit kernels on 64-bit hardware.
  669. */
  670. virt_space = (1ULL << boot_cpu_data.x86_virt_bits);
  671. return virt_space / MPX_BD_NR_ENTRIES_64;
  672. }
  673. /*
  674. * Free the backing physical pages of bounds table 'bt_addr'.
  675. * Assume start...end is within that bounds table.
  676. */
  677. static noinline int zap_bt_entries_mapping(struct mm_struct *mm,
  678. unsigned long bt_addr,
  679. unsigned long start_mapping, unsigned long end_mapping)
  680. {
  681. struct vm_area_struct *vma;
  682. unsigned long addr, len;
  683. unsigned long start;
  684. unsigned long end;
  685. /*
  686. * if we 'end' on a boundary, the offset will be 0 which
  687. * is not what we want. Back it up a byte to get the
  688. * last bt entry. Then once we have the entry itself,
  689. * move 'end' back up by the table entry size.
  690. */
  691. start = bt_addr + mpx_get_bt_entry_offset_bytes(mm, start_mapping);
  692. end = bt_addr + mpx_get_bt_entry_offset_bytes(mm, end_mapping - 1);
  693. /*
  694. * Move end back up by one entry. Among other things
  695. * this ensures that it remains page-aligned and does
  696. * not screw up zap_page_range()
  697. */
  698. end += bt_entry_size_bytes(mm);
  699. /*
  700. * Find the first overlapping vma. If vma->vm_start > start, there
  701. * will be a hole in the bounds table. This -EINVAL return will
  702. * cause a SIGSEGV.
  703. */
  704. vma = find_vma(mm, start);
  705. if (!vma || vma->vm_start > start)
  706. return -EINVAL;
  707. /*
  708. * A NUMA policy on a VM_MPX VMA could cause this bounds table to
  709. * be split. So we need to look across the entire 'start -> end'
  710. * range of this bounds table, find all of the VM_MPX VMAs, and
  711. * zap only those.
  712. */
  713. addr = start;
  714. while (vma && vma->vm_start < end) {
  715. /*
  716. * We followed a bounds directory entry down
  717. * here. If we find a non-MPX VMA, that's bad,
  718. * so stop immediately and return an error. This
  719. * probably results in a SIGSEGV.
  720. */
  721. if (!(vma->vm_flags & VM_MPX))
  722. return -EINVAL;
  723. len = min(vma->vm_end, end) - addr;
  724. zap_page_range(vma, addr, len, NULL);
  725. trace_mpx_unmap_zap(addr, addr+len);
  726. vma = vma->vm_next;
  727. addr = vma->vm_start;
  728. }
  729. return 0;
  730. }
  731. static unsigned long mpx_get_bd_entry_offset(struct mm_struct *mm,
  732. unsigned long addr)
  733. {
  734. /*
  735. * There are several ways to derive the bd offsets. We
  736. * use the following approach here:
  737. * 1. We know the size of the virtual address space
  738. * 2. We know the number of entries in a bounds table
  739. * 3. We know that each entry covers a fixed amount of
  740. * virtual address space.
  741. * So, we can just divide the virtual address by the
  742. * virtual space used by one entry to determine which
  743. * entry "controls" the given virtual address.
  744. */
  745. if (is_64bit_mm(mm)) {
  746. int bd_entry_size = 8; /* 64-bit pointer */
  747. /*
  748. * Take the 64-bit addressing hole in to account.
  749. */
  750. addr &= ((1UL << boot_cpu_data.x86_virt_bits) - 1);
  751. return (addr / bd_entry_virt_space(mm)) * bd_entry_size;
  752. } else {
  753. int bd_entry_size = 4; /* 32-bit pointer */
  754. /*
  755. * 32-bit has no hole so this case needs no mask
  756. */
  757. return (addr / bd_entry_virt_space(mm)) * bd_entry_size;
  758. }
  759. /*
  760. * The two return calls above are exact copies. If we
  761. * pull out a single copy and put it in here, gcc won't
  762. * realize that we're doing a power-of-2 divide and use
  763. * shifts. It uses a real divide. If we put them up
  764. * there, it manages to figure it out (gcc 4.8.3).
  765. */
  766. }
  767. static int unmap_entire_bt(struct mm_struct *mm,
  768. long __user *bd_entry, unsigned long bt_addr)
  769. {
  770. unsigned long expected_old_val = bt_addr | MPX_BD_ENTRY_VALID_FLAG;
  771. unsigned long uninitialized_var(actual_old_val);
  772. int ret;
  773. while (1) {
  774. int need_write = 1;
  775. unsigned long cleared_bd_entry = 0;
  776. pagefault_disable();
  777. ret = mpx_cmpxchg_bd_entry(mm, &actual_old_val,
  778. bd_entry, expected_old_val, cleared_bd_entry);
  779. pagefault_enable();
  780. if (!ret)
  781. break;
  782. if (ret == -EFAULT)
  783. ret = mpx_resolve_fault(bd_entry, need_write);
  784. /*
  785. * If we could not resolve the fault, consider it
  786. * userspace's fault and error out.
  787. */
  788. if (ret)
  789. return ret;
  790. }
  791. /*
  792. * The cmpxchg was performed, check the results.
  793. */
  794. if (actual_old_val != expected_old_val) {
  795. /*
  796. * Someone else raced with us to unmap the table.
  797. * That is OK, since we were both trying to do
  798. * the same thing. Declare success.
  799. */
  800. if (!actual_old_val)
  801. return 0;
  802. /*
  803. * Something messed with the bounds directory
  804. * entry. We hold mmap_sem for read or write
  805. * here, so it could not be a _new_ bounds table
  806. * that someone just allocated. Something is
  807. * wrong, so pass up the error and SIGSEGV.
  808. */
  809. return -EINVAL;
  810. }
  811. /*
  812. * Note, we are likely being called under do_munmap() already. To
  813. * avoid recursion, do_munmap() will check whether it comes
  814. * from one bounds table through VM_MPX flag.
  815. */
  816. return do_munmap(mm, bt_addr, mpx_bt_size_bytes(mm));
  817. }
  818. static int try_unmap_single_bt(struct mm_struct *mm,
  819. unsigned long start, unsigned long end)
  820. {
  821. struct vm_area_struct *next;
  822. struct vm_area_struct *prev;
  823. /*
  824. * "bta" == Bounds Table Area: the area controlled by the
  825. * bounds table that we are unmapping.
  826. */
  827. unsigned long bta_start_vaddr = start & ~(bd_entry_virt_space(mm)-1);
  828. unsigned long bta_end_vaddr = bta_start_vaddr + bd_entry_virt_space(mm);
  829. unsigned long uninitialized_var(bt_addr);
  830. void __user *bde_vaddr;
  831. int ret;
  832. /*
  833. * We already unlinked the VMAs from the mm's rbtree so 'start'
  834. * is guaranteed to be in a hole. This gets us the first VMA
  835. * before the hole in to 'prev' and the next VMA after the hole
  836. * in to 'next'.
  837. */
  838. next = find_vma_prev(mm, start, &prev);
  839. /*
  840. * Do not count other MPX bounds table VMAs as neighbors.
  841. * Although theoretically possible, we do not allow bounds
  842. * tables for bounds tables so our heads do not explode.
  843. * If we count them as neighbors here, we may end up with
  844. * lots of tables even though we have no actual table
  845. * entries in use.
  846. */
  847. while (next && (next->vm_flags & VM_MPX))
  848. next = next->vm_next;
  849. while (prev && (prev->vm_flags & VM_MPX))
  850. prev = prev->vm_prev;
  851. /*
  852. * We know 'start' and 'end' lie within an area controlled
  853. * by a single bounds table. See if there are any other
  854. * VMAs controlled by that bounds table. If there are not
  855. * then we can "expand" the are we are unmapping to possibly
  856. * cover the entire table.
  857. */
  858. next = find_vma_prev(mm, start, &prev);
  859. if ((!prev || prev->vm_end <= bta_start_vaddr) &&
  860. (!next || next->vm_start >= bta_end_vaddr)) {
  861. /*
  862. * No neighbor VMAs controlled by same bounds
  863. * table. Try to unmap the whole thing
  864. */
  865. start = bta_start_vaddr;
  866. end = bta_end_vaddr;
  867. }
  868. bde_vaddr = mm->context.bd_addr + mpx_get_bd_entry_offset(mm, start);
  869. ret = get_bt_addr(mm, bde_vaddr, &bt_addr);
  870. /*
  871. * No bounds table there, so nothing to unmap.
  872. */
  873. if (ret == -ENOENT) {
  874. ret = 0;
  875. return 0;
  876. }
  877. if (ret)
  878. return ret;
  879. /*
  880. * We are unmapping an entire table. Either because the
  881. * unmap that started this whole process was large enough
  882. * to cover an entire table, or that the unmap was small
  883. * but was the area covered by a bounds table.
  884. */
  885. if ((start == bta_start_vaddr) &&
  886. (end == bta_end_vaddr))
  887. return unmap_entire_bt(mm, bde_vaddr, bt_addr);
  888. return zap_bt_entries_mapping(mm, bt_addr, start, end);
  889. }
  890. static int mpx_unmap_tables(struct mm_struct *mm,
  891. unsigned long start, unsigned long end)
  892. {
  893. unsigned long one_unmap_start;
  894. trace_mpx_unmap_search(start, end);
  895. one_unmap_start = start;
  896. while (one_unmap_start < end) {
  897. int ret;
  898. unsigned long next_unmap_start = ALIGN(one_unmap_start+1,
  899. bd_entry_virt_space(mm));
  900. unsigned long one_unmap_end = end;
  901. /*
  902. * if the end is beyond the current bounds table,
  903. * move it back so we only deal with a single one
  904. * at a time
  905. */
  906. if (one_unmap_end > next_unmap_start)
  907. one_unmap_end = next_unmap_start;
  908. ret = try_unmap_single_bt(mm, one_unmap_start, one_unmap_end);
  909. if (ret)
  910. return ret;
  911. one_unmap_start = next_unmap_start;
  912. }
  913. return 0;
  914. }
  915. /*
  916. * Free unused bounds tables covered in a virtual address region being
  917. * munmap()ed. Assume end > start.
  918. *
  919. * This function will be called by do_munmap(), and the VMAs covering
  920. * the virtual address region start...end have already been split if
  921. * necessary, and the 'vma' is the first vma in this range (start -> end).
  922. */
  923. void mpx_notify_unmap(struct mm_struct *mm, struct vm_area_struct *vma,
  924. unsigned long start, unsigned long end)
  925. {
  926. int ret;
  927. /*
  928. * Refuse to do anything unless userspace has asked
  929. * the kernel to help manage the bounds tables,
  930. */
  931. if (!kernel_managing_mpx_tables(current->mm))
  932. return;
  933. /*
  934. * This will look across the entire 'start -> end' range,
  935. * and find all of the non-VM_MPX VMAs.
  936. *
  937. * To avoid recursion, if a VM_MPX vma is found in the range
  938. * (start->end), we will not continue follow-up work. This
  939. * recursion represents having bounds tables for bounds tables,
  940. * which should not occur normally. Being strict about it here
  941. * helps ensure that we do not have an exploitable stack overflow.
  942. */
  943. do {
  944. if (vma->vm_flags & VM_MPX)
  945. return;
  946. vma = vma->vm_next;
  947. } while (vma && vma->vm_start < end);
  948. ret = mpx_unmap_tables(mm, start, end);
  949. if (ret)
  950. force_sig(SIGSEGV, current);
  951. }