1
2
3
4
5#include <linux/sched.h>
6#include <linux/sched/task_stack.h>
7#include <linux/mm.h>
8#include <linux/ptrace.h>
9#include <asm/desc.h>
10#include <asm/mmu_context.h>
11
12unsigned long convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs)
13{
14 unsigned long addr, seg;
15
16 addr = regs->ip;
17 seg = regs->cs;
18 if (v8086_mode(regs)) {
19 addr = (addr & 0xffff) + (seg << 4);
20 return addr;
21 }
22
23#ifdef CONFIG_MODIFY_LDT_SYSCALL
24
25
26
27
28
29
30 if ((seg & SEGMENT_TI_MASK) == SEGMENT_LDT) {
31 struct desc_struct *desc;
32 unsigned long base;
33
34 seg >>= 3;
35
36 mutex_lock(&child->mm->context.lock);
37 if (unlikely(!child->mm->context.ldt ||
38 seg >= child->mm->context.ldt->nr_entries))
39 addr = -1L;
40 else {
41 desc = &child->mm->context.ldt->entries[seg];
42 base = get_desc_base(desc);
43
44
45 if (!desc->d)
46 addr &= 0xffff;
47 addr += base;
48 }
49 mutex_unlock(&child->mm->context.lock);
50 }
51#endif
52
53 return addr;
54}
55
56static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
57{
58 int i, copied;
59 unsigned char opcode[15];
60 unsigned long addr = convert_ip_to_linear(child, regs);
61
62 copied = access_process_vm(child, addr, opcode, sizeof(opcode),
63 FOLL_FORCE);
64 for (i = 0; i < copied; i++) {
65 switch (opcode[i]) {
66
67 case 0x9d: case 0xcf:
68 return 1;
69
70
71
72
73 case 0x66: case 0x67:
74 continue;
75
76 case 0x26: case 0x2e:
77 case 0x36: case 0x3e:
78 case 0x64: case 0x65:
79 case 0xf0: case 0xf2: case 0xf3:
80 continue;
81
82#ifdef CONFIG_X86_64
83 case 0x40 ... 0x4f:
84 if (!user_64bit_mode(regs))
85
86 return 0;
87
88 continue;
89#endif
90
91
92
93
94
95
96
97
98
99
100 case 0x9c:
101 default:
102 return 0;
103 }
104 }
105 return 0;
106}
107
108
109
110
111static int enable_single_step(struct task_struct *child)
112{
113 struct pt_regs *regs = task_pt_regs(child);
114 unsigned long oflags;
115
116
117
118
119
120
121
122
123
124
125
126 if (unlikely(test_tsk_thread_flag(child, TIF_SINGLESTEP)))
127 regs->flags |= X86_EFLAGS_TF;
128
129
130
131
132
133
134 set_tsk_thread_flag(child, TIF_SINGLESTEP);
135
136 oflags = regs->flags;
137
138
139 regs->flags |= X86_EFLAGS_TF;
140
141
142
143
144
145
146
147
148
149
150 if (is_setting_trap_flag(child, regs)) {
151 clear_tsk_thread_flag(child, TIF_FORCED_TF);
152 return 0;
153 }
154
155
156
157
158
159 if (oflags & X86_EFLAGS_TF)
160 return test_tsk_thread_flag(child, TIF_FORCED_TF);
161
162 set_tsk_thread_flag(child, TIF_FORCED_TF);
163
164 return 1;
165}
166
167void set_task_blockstep(struct task_struct *task, bool on)
168{
169 unsigned long debugctl;
170
171
172
173
174
175
176
177
178
179
180
181 local_irq_disable();
182 debugctl = get_debugctlmsr();
183 if (on) {
184 debugctl |= DEBUGCTLMSR_BTF;
185 set_tsk_thread_flag(task, TIF_BLOCKSTEP);
186 } else {
187 debugctl &= ~DEBUGCTLMSR_BTF;
188 clear_tsk_thread_flag(task, TIF_BLOCKSTEP);
189 }
190 if (task == current)
191 update_debugctlmsr(debugctl);
192 local_irq_enable();
193}
194
195
196
197
198static void enable_step(struct task_struct *child, bool block)
199{
200
201
202
203
204
205
206
207 if (enable_single_step(child) && block)
208 set_task_blockstep(child, true);
209 else if (test_tsk_thread_flag(child, TIF_BLOCKSTEP))
210 set_task_blockstep(child, false);
211}
212
213void user_enable_single_step(struct task_struct *child)
214{
215 enable_step(child, 0);
216}
217
218void user_enable_block_step(struct task_struct *child)
219{
220 enable_step(child, 1);
221}
222
223void user_disable_single_step(struct task_struct *child)
224{
225
226
227
228 if (test_tsk_thread_flag(child, TIF_BLOCKSTEP))
229 set_task_blockstep(child, false);
230
231
232 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
233
234
235 if (test_and_clear_tsk_thread_flag(child, TIF_FORCED_TF))
236 task_pt_regs(child)->flags &= ~X86_EFLAGS_TF;
237}
238