1 // SPDX-License-Identifier: GPL-2.0
3 * x86 single-step support code, common to 32-bit and 64-bit.
5 #include <linux/sched.h>
6 #include <linux/sched/task_stack.h>
8 #include <linux/ptrace.h>
11 #include <asm/debugreg.h>
12 #include <asm/mmu_context.h>
14 unsigned long convert_ip_to_linear(struct task_struct
*child
, struct pt_regs
*regs
)
16 unsigned long addr
, seg
;
20 if (v8086_mode(regs
)) {
21 addr
= (addr
& 0xffff) + (seg
<< 4);
25 #ifdef CONFIG_MODIFY_LDT_SYSCALL
27 * We'll assume that the code segments in the GDT
28 * are all zero-based. That is largely true: the
29 * TLS segments are used for data, and the PNPBIOS
30 * and APM bios ones we just ignore here.
32 if ((seg
& SEGMENT_TI_MASK
) == SEGMENT_LDT
) {
33 struct desc_struct
*desc
;
38 mutex_lock(&child
->mm
->context
.lock
);
39 if (unlikely(!child
->mm
->context
.ldt
||
40 seg
>= child
->mm
->context
.ldt
->nr_entries
))
41 addr
= -1L; /* bogus selector, access would fault */
43 desc
= &child
->mm
->context
.ldt
->entries
[seg
];
44 base
= get_desc_base(desc
);
46 /* 16-bit code segment? */
51 mutex_unlock(&child
->mm
->context
.lock
);
58 static int is_setting_trap_flag(struct task_struct
*child
, struct pt_regs
*regs
)
61 unsigned char opcode
[15];
62 unsigned long addr
= convert_ip_to_linear(child
, regs
);
64 copied
= access_process_vm(child
, addr
, opcode
, sizeof(opcode
),
66 for (i
= 0; i
< copied
; i
++) {
74 /* opcode and address size prefixes */
77 /* irrelevant prefixes (segment overrides and repeats) */
81 case 0xf0: case 0xf2: case 0xf3:
86 if (!user_64bit_mode(regs
))
87 /* 32-bit mode: register increment */
89 /* 64-bit mode: REX prefix */
96 * pushf: NOTE! We should probably not let
97 * the user see the TF bit being set. But
98 * it's more pain than it's worth to avoid
99 * it, and a debugger could emulate this
100 * all in user space if it _really_ cares.
111 * Enable single-stepping. Return nonzero if user mode is not using TF itself.
113 static int enable_single_step(struct task_struct
*child
)
115 struct pt_regs
*regs
= task_pt_regs(child
);
116 unsigned long oflags
;
119 * If we stepped into a sysenter/syscall insn, it trapped in
120 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
121 * If user-mode had set TF itself, then it's still clear from
122 * do_debug() and we need to set it again to restore the user
123 * state so we don't wrongly set TIF_FORCED_TF below.
124 * If enable_single_step() was used last and that is what
125 * set TIF_SINGLESTEP, then both TF and TIF_FORCED_TF are
126 * already set and our bookkeeping is fine.
128 if (unlikely(test_tsk_thread_flag(child
, TIF_SINGLESTEP
)))
129 regs
->flags
|= X86_EFLAGS_TF
;
132 * Always set TIF_SINGLESTEP. This will also
133 * cause us to set TF when returning to user mode.
135 set_tsk_thread_flag(child
, TIF_SINGLESTEP
);
138 * Ensure that a trap is triggered once stepping out of a system
139 * call prior to executing any user instruction.
141 set_task_syscall_work(child
, SYSCALL_EXIT_TRAP
);
143 oflags
= regs
->flags
;
145 /* Set TF on the kernel stack.. */
146 regs
->flags
|= X86_EFLAGS_TF
;
149 * ..but if TF is changed by the instruction we will trace,
150 * don't mark it as being "us" that set it, so that we
151 * won't clear it by hand later.
153 * Note that if we don't actually execute the popf because
154 * of a signal arriving right now or suchlike, we will lose
155 * track of the fact that it really was "us" that set it.
157 if (is_setting_trap_flag(child
, regs
)) {
158 clear_tsk_thread_flag(child
, TIF_FORCED_TF
);
163 * If TF was already set, check whether it was us who set it.
164 * If not, we should never attempt a block step.
166 if (oflags
& X86_EFLAGS_TF
)
167 return test_tsk_thread_flag(child
, TIF_FORCED_TF
);
169 set_tsk_thread_flag(child
, TIF_FORCED_TF
);
174 void set_task_blockstep(struct task_struct
*task
, bool on
)
176 unsigned long debugctl
;
179 * Ensure irq/preemption can't change debugctl in between.
180 * Note also that both TIF_BLOCKSTEP and debugctl should
181 * be changed atomically wrt preemption.
183 * NOTE: this means that set/clear TIF_BLOCKSTEP is only safe if
184 * task is current or it can't be running, otherwise we can race
185 * with __switch_to_xtra(). We rely on ptrace_freeze_traced().
188 debugctl
= get_debugctlmsr();
190 debugctl
|= DEBUGCTLMSR_BTF
;
191 set_tsk_thread_flag(task
, TIF_BLOCKSTEP
);
193 debugctl
&= ~DEBUGCTLMSR_BTF
;
194 clear_tsk_thread_flag(task
, TIF_BLOCKSTEP
);
197 update_debugctlmsr(debugctl
);
202 * Enable single or block step.
204 static void enable_step(struct task_struct
*child
, bool block
)
207 * Make sure block stepping (BTF) is not enabled unless it should be.
208 * Note that we don't try to worry about any is_setting_trap_flag()
209 * instructions after the first when using block stepping.
210 * So no one should try to use debugger block stepping in a program
211 * that uses user-mode single stepping itself.
213 if (enable_single_step(child
) && block
)
214 set_task_blockstep(child
, true);
215 else if (test_tsk_thread_flag(child
, TIF_BLOCKSTEP
))
216 set_task_blockstep(child
, false);
219 void user_enable_single_step(struct task_struct
*child
)
221 enable_step(child
, 0);
224 void user_enable_block_step(struct task_struct
*child
)
226 enable_step(child
, 1);
229 void user_disable_single_step(struct task_struct
*child
)
232 * Make sure block stepping (BTF) is disabled.
234 if (test_tsk_thread_flag(child
, TIF_BLOCKSTEP
))
235 set_task_blockstep(child
, false);
237 /* Always clear TIF_SINGLESTEP... */
238 clear_tsk_thread_flag(child
, TIF_SINGLESTEP
);
239 clear_task_syscall_work(child
, SYSCALL_EXIT_TRAP
);
241 /* But touch TF only if it was set by us.. */
242 if (test_and_clear_tsk_thread_flag(child
, TIF_FORCED_TF
))
243 task_pt_regs(child
)->flags
&= ~X86_EFLAGS_TF
;