x86/mpx: Remove redundant MPX_BNDCFG_ADDR_MASK
[cascardo/linux.git] / arch / x86 / include / asm / mpx.h
1 #ifndef _ASM_X86_MPX_H
2 #define _ASM_X86_MPX_H
3
4 #include <linux/types.h>
5 #include <asm/ptrace.h>
6 #include <asm/insn.h>
7
8 /*
9  * NULL is theoretically a valid place to put the bounds
10  * directory, so point this at an invalid address.
11  */
12 #define MPX_INVALID_BOUNDS_DIR  ((void __user *)-1)
13 #define MPX_BNDCFG_ENABLE_FLAG  0x1
14 #define MPX_BD_ENTRY_VALID_FLAG 0x1
15
16 #ifdef CONFIG_X86_64
17
18 /* upper 28 bits [47:20] of the virtual address in 64-bit used to
19  * index into bounds directory (BD).
20  */
21 #define MPX_BD_ENTRY_OFFSET     28
22 #define MPX_BD_ENTRY_SHIFT      3
23 /* bits [19:3] of the virtual address in 64-bit used to index into
24  * bounds table (BT).
25  */
26 #define MPX_BT_ENTRY_OFFSET     17
27 #define MPX_BT_ENTRY_SHIFT      5
28 #define MPX_IGN_BITS            3
29 #define MPX_BD_ENTRY_TAIL       3
30
31 #else
32
33 #define MPX_BD_ENTRY_OFFSET     20
34 #define MPX_BD_ENTRY_SHIFT      2
35 #define MPX_BT_ENTRY_OFFSET     10
36 #define MPX_BT_ENTRY_SHIFT      4
37 #define MPX_IGN_BITS            2
38 #define MPX_BD_ENTRY_TAIL       2
39
40 #endif
41
42 #define MPX_BD_SIZE_BYTES (1UL<<(MPX_BD_ENTRY_OFFSET+MPX_BD_ENTRY_SHIFT))
43 #define MPX_BT_SIZE_BYTES (1UL<<(MPX_BT_ENTRY_OFFSET+MPX_BT_ENTRY_SHIFT))
44
45 #define MPX_BNDSTA_TAIL         2
46 #define MPX_BNDCFG_TAIL         12
47 #define MPX_BNDSTA_ADDR_MASK    (~((1UL<<MPX_BNDSTA_TAIL)-1))
48 #define MPX_BT_ADDR_MASK        (~((1UL<<MPX_BD_ENTRY_TAIL)-1))
49
50 #define MPX_BNDCFG_ADDR_MASK    (~((1UL<<MPX_BNDCFG_TAIL)-1))
51 #define MPX_BNDSTA_ERROR_CODE   0x3
52
53 #define MPX_BD_ENTRY_MASK       ((1<<MPX_BD_ENTRY_OFFSET)-1)
54 #define MPX_BT_ENTRY_MASK       ((1<<MPX_BT_ENTRY_OFFSET)-1)
55 #define MPX_GET_BD_ENTRY_OFFSET(addr)   ((((addr)>>(MPX_BT_ENTRY_OFFSET+ \
56                 MPX_IGN_BITS)) & MPX_BD_ENTRY_MASK) << MPX_BD_ENTRY_SHIFT)
57 #define MPX_GET_BT_ENTRY_OFFSET(addr)   ((((addr)>>MPX_IGN_BITS) & \
58                 MPX_BT_ENTRY_MASK) << MPX_BT_ENTRY_SHIFT)
59
60 #ifdef CONFIG_X86_INTEL_MPX
61 siginfo_t *mpx_generate_siginfo(struct pt_regs *regs);
62 int mpx_handle_bd_fault(void);
63 static inline int kernel_managing_mpx_tables(struct mm_struct *mm)
64 {
65         return (mm->bd_addr != MPX_INVALID_BOUNDS_DIR);
66 }
67 static 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          */
73         mm->bd_addr = MPX_INVALID_BOUNDS_DIR;
74 }
75 void mpx_notify_unmap(struct mm_struct *mm, struct vm_area_struct *vma,
76                       unsigned long start, unsigned long end);
77 #else
78 static inline siginfo_t *mpx_generate_siginfo(struct pt_regs *regs)
79 {
80         return NULL;
81 }
82 static inline int mpx_handle_bd_fault(void)
83 {
84         return -EINVAL;
85 }
86 static inline int kernel_managing_mpx_tables(struct mm_struct *mm)
87 {
88         return 0;
89 }
90 static inline void mpx_mm_init(struct mm_struct *mm)
91 {
92 }
93 static inline void mpx_notify_unmap(struct mm_struct *mm,
94                                     struct vm_area_struct *vma,
95                                     unsigned long start, unsigned long end)
96 {
97 }
98 #endif /* CONFIG_X86_INTEL_MPX */
99
100 #endif /* _ASM_X86_MPX_H */