blob: 61eb4b63c5ec0730a848068e0b129521b04ecb13 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Qiaowei Ren57319d82014-11-14 07:18:27 -08002#ifndef _ASM_X86_MPX_H
3#define _ASM_X86_MPX_H
4
5#include <linux/types.h>
Ingo Molnar589ee622017-02-04 00:16:44 +01006#include <linux/mm_types.h>
7
Qiaowei Ren57319d82014-11-14 07:18:27 -08008#include <asm/ptrace.h>
Dave Hansenfcc7ffd2014-11-14 07:18:28 -08009#include <asm/insn.h>
Qiaowei Ren57319d82014-11-14 07:18:27 -080010
Dave Hansenfe3d1972014-11-14 07:18:29 -080011/*
12 * NULL is theoretically a valid place to put the bounds
13 * directory, so point this at an invalid address.
14 */
15#define MPX_INVALID_BOUNDS_DIR ((void __user *)-1)
16#define MPX_BNDCFG_ENABLE_FLAG 0x1
17#define MPX_BD_ENTRY_VALID_FLAG 0x1
18
Dave Hansen613fcb72015-06-07 11:37:05 -070019/*
20 * The upper 28 bits [47:20] of the virtual address in 64-bit
21 * are used to index into bounds directory (BD).
22 *
23 * The directory is 2G (2^31) in size, and with 8-byte entries
24 * it has 2^28 entries.
Qiaowei Ren57319d82014-11-14 07:18:27 -080025 */
Dave Hansen613fcb72015-06-07 11:37:05 -070026#define MPX_BD_SIZE_BYTES_64 (1UL<<31)
27#define MPX_BD_ENTRY_BYTES_64 8
28#define MPX_BD_NR_ENTRIES_64 (MPX_BD_SIZE_BYTES_64/MPX_BD_ENTRY_BYTES_64)
29
30/*
31 * The 32-bit directory is 4MB (2^22) in size, and with 4-byte
32 * entries it has 2^20 entries.
Qiaowei Ren57319d82014-11-14 07:18:27 -080033 */
Dave Hansen613fcb72015-06-07 11:37:05 -070034#define MPX_BD_SIZE_BYTES_32 (1UL<<22)
35#define MPX_BD_ENTRY_BYTES_32 4
36#define MPX_BD_NR_ENTRIES_32 (MPX_BD_SIZE_BYTES_32/MPX_BD_ENTRY_BYTES_32)
Qiaowei Ren57319d82014-11-14 07:18:27 -080037
Dave Hansen613fcb72015-06-07 11:37:05 -070038/*
39 * A 64-bit table is 4MB total in size, and an entry is
40 * 4 64-bit pointers in size.
41 */
42#define MPX_BT_SIZE_BYTES_64 (1UL<<22)
43#define MPX_BT_ENTRY_BYTES_64 32
44#define MPX_BT_NR_ENTRIES_64 (MPX_BT_SIZE_BYTES_64/MPX_BT_ENTRY_BYTES_64)
Qiaowei Ren57319d82014-11-14 07:18:27 -080045
Dave Hansen613fcb72015-06-07 11:37:05 -070046/*
47 * A 32-bit table is 16kB total in size, and an entry is
48 * 4 32-bit pointers in size.
49 */
50#define MPX_BT_SIZE_BYTES_32 (1UL<<14)
51#define MPX_BT_ENTRY_BYTES_32 16
52#define MPX_BT_NR_ENTRIES_32 (MPX_BT_SIZE_BYTES_32/MPX_BT_ENTRY_BYTES_32)
Qiaowei Ren57319d82014-11-14 07:18:27 -080053
Dave Hansenfe3d1972014-11-14 07:18:29 -080054#define MPX_BNDSTA_TAIL 2
55#define MPX_BNDCFG_TAIL 12
56#define MPX_BNDSTA_ADDR_MASK (~((1UL<<MPX_BNDSTA_TAIL)-1))
Dave Hansenfe3d1972014-11-14 07:18:29 -080057#define MPX_BNDCFG_ADDR_MASK (~((1UL<<MPX_BNDCFG_TAIL)-1))
Qiaowei Ren57319d82014-11-14 07:18:27 -080058#define MPX_BNDSTA_ERROR_CODE 0x3
59
Dave Hansenfcc7ffd2014-11-14 07:18:28 -080060#ifdef CONFIG_X86_INTEL_MPX
Dave Hansen46a6e0c2015-06-07 11:37:02 -070061siginfo_t *mpx_generate_siginfo(struct pt_regs *regs);
62int mpx_handle_bd_fault(void);
Dave Hansenfe3d1972014-11-14 07:18:29 -080063static inline int kernel_managing_mpx_tables(struct mm_struct *mm)
64{
Mark Rutlandcb02de92016-12-16 12:40:55 +000065 return (mm->context.bd_addr != MPX_INVALID_BOUNDS_DIR);
Dave Hansenfe3d1972014-11-14 07:18:29 -080066}
67static inline void mpx_mm_init(struct mm_struct *mm)
68{
69 /*
70 * NULL is theoretically a valid place to put the bounds
71 * directory, so point this at an invalid address.
72 */
Mark Rutlandcb02de92016-12-16 12:40:55 +000073 mm->context.bd_addr = MPX_INVALID_BOUNDS_DIR;
Dave Hansenfe3d1972014-11-14 07:18:29 -080074}
Dave Hansen1de4fa12014-11-14 07:18:31 -080075void mpx_notify_unmap(struct mm_struct *mm, struct vm_area_struct *vma,
76 unsigned long start, unsigned long end);
Kirill A. Shutemov44b04912017-07-17 01:59:51 +030077
78unsigned long mpx_unmapped_area_check(unsigned long addr, unsigned long len,
79 unsigned long flags);
Dave Hansenfcc7ffd2014-11-14 07:18:28 -080080#else
Dave Hansen46a6e0c2015-06-07 11:37:02 -070081static inline siginfo_t *mpx_generate_siginfo(struct pt_regs *regs)
Dave Hansenfcc7ffd2014-11-14 07:18:28 -080082{
83 return NULL;
84}
Dave Hansen46a6e0c2015-06-07 11:37:02 -070085static inline int mpx_handle_bd_fault(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -080086{
87 return -EINVAL;
88}
89static inline int kernel_managing_mpx_tables(struct mm_struct *mm)
90{
91 return 0;
92}
93static inline void mpx_mm_init(struct mm_struct *mm)
94{
95}
Dave Hansen1de4fa12014-11-14 07:18:31 -080096static inline void mpx_notify_unmap(struct mm_struct *mm,
97 struct vm_area_struct *vma,
98 unsigned long start, unsigned long end)
99{
100}
Kirill A. Shutemov44b04912017-07-17 01:59:51 +0300101
102static inline unsigned long mpx_unmapped_area_check(unsigned long addr,
103 unsigned long len, unsigned long flags)
104{
105 return addr;
106}
Dave Hansenfcc7ffd2014-11-14 07:18:28 -0800107#endif /* CONFIG_X86_INTEL_MPX */
108
Qiaowei Ren57319d82014-11-14 07:18:27 -0800109#endif /* _ASM_X86_MPX_H */