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>
10 #include <asm/mmu_context.h>
12 unsigned long convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs)
14 unsigned long addr, seg;
18 if (v8086_mode(regs)) {
19 addr = (addr & 0xffff) + (seg << 4);
23 #ifdef CONFIG_MODIFY_LDT_SYSCALL
25 * We'll assume that the code segments in the GDT
26 * are all zero-based. That is largely true: the
27 * TLS segments are used for data, and the PNPBIOS
28 * and APM bios ones we just ignore here.
30 if ((seg & SEGMENT_TI_MASK) == SEGMENT_LDT) {
31 struct desc_struct *desc;
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; /* bogus selector, access would fault */
41 desc = &child->mm->context.ldt->entries[seg];
42 base = get_desc_base(desc);
44 /* 16-bit code segment? */
49 mutex_unlock(&child->mm->context.lock);
56 static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
59 unsigned char opcode[15];
60 unsigned long addr = convert_ip_to_linear(child, regs);
62 copied = access_process_vm(child, addr, opcode, sizeof(opcode),
64 for (i = 0; i < copied; i++) {
72 /* opcode and address size prefixes */
75 /* irrelevant prefixes (segment overrides and repeats) */
79 case 0xf0: case 0xf2: case 0xf3:
84 if (!user_64bit_mode(regs))
85 /* 32-bit mode: register increment */
87 /* 64-bit mode: REX prefix */
94 * pushf: NOTE! We should probably not let
95 * the user see the TF bit being set. But
96 * it's more pain than it's worth to avoid
97 * it, and a debugger could emulate this
98 * all in user space if it _really_ cares.
109 * Enable single-stepping. Return nonzero if user mode is not using TF itself.
111 static int enable_single_step(struct task_struct *child)
113 struct pt_regs *regs = task_pt_regs(child);
114 unsigned long oflags;
117 * If we stepped into a sysenter/syscall insn, it trapped in
118 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
119 * If user-mode had set TF itself, then it's still clear from
120 * do_debug() and we need to set it again to restore the user
121 * state so we don't wrongly set TIF_FORCED_TF below.
122 * If enable_single_step() was used last and that is what
123 * set TIF_SINGLESTEP, then both TF and TIF_FORCED_TF are
124 * already set and our bookkeeping is fine.
126 if (unlikely(test_tsk_thread_flag(child, TIF_SINGLESTEP)))
127 regs->flags |= X86_EFLAGS_TF;
130 * Always set TIF_SINGLESTEP - this guarantees that
131 * we single-step system calls etc.. This will also
132 * cause us to set TF when returning to user mode.
134 set_tsk_thread_flag(child, TIF_SINGLESTEP);
136 oflags = regs->flags;
138 /* Set TF on the kernel stack.. */
139 regs->flags |= X86_EFLAGS_TF;
142 * ..but if TF is changed by the instruction we will trace,
143 * don't mark it as being "us" that set it, so that we
144 * won't clear it by hand later.
146 * Note that if we don't actually execute the popf because
147 * of a signal arriving right now or suchlike, we will lose
148 * track of the fact that it really was "us" that set it.
150 if (is_setting_trap_flag(child, regs)) {
151 clear_tsk_thread_flag(child, TIF_FORCED_TF);
156 * If TF was already set, check whether it was us who set it.
157 * If not, we should never attempt a block step.
159 if (oflags & X86_EFLAGS_TF)
160 return test_tsk_thread_flag(child, TIF_FORCED_TF);
162 set_tsk_thread_flag(child, TIF_FORCED_TF);
167 void set_task_blockstep(struct task_struct *task, bool on)
169 unsigned long debugctl;
172 * Ensure irq/preemption can't change debugctl in between.
173 * Note also that both TIF_BLOCKSTEP and debugctl should
174 * be changed atomically wrt preemption.
176 * NOTE: this means that set/clear TIF_BLOCKSTEP is only safe if
177 * task is current or it can't be running, otherwise we can race
178 * with __switch_to_xtra(). We rely on ptrace_freeze_traced() but
179 * PTRACE_KILL is not safe.
182 debugctl = get_debugctlmsr();
184 debugctl |= DEBUGCTLMSR_BTF;
185 set_tsk_thread_flag(task, TIF_BLOCKSTEP);
187 debugctl &= ~DEBUGCTLMSR_BTF;
188 clear_tsk_thread_flag(task, TIF_BLOCKSTEP);
191 update_debugctlmsr(debugctl);
196 * Enable single or block step.
198 static void enable_step(struct task_struct *child, bool block)
201 * Make sure block stepping (BTF) is not enabled unless it should be.
202 * Note that we don't try to worry about any is_setting_trap_flag()
203 * instructions after the first when using block stepping.
204 * So no one should try to use debugger block stepping in a program
205 * that uses user-mode single stepping itself.
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);
213 void user_enable_single_step(struct task_struct *child)
215 enable_step(child, 0);
218 void user_enable_block_step(struct task_struct *child)
220 enable_step(child, 1);
223 void user_disable_single_step(struct task_struct *child)
226 * Make sure block stepping (BTF) is disabled.
228 if (test_tsk_thread_flag(child, TIF_BLOCKSTEP))
229 set_task_blockstep(child, false);
231 /* Always clear TIF_SINGLESTEP... */
232 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
234 /* But touch TF only if it was set by us.. */
235 if (test_and_clear_tsk_thread_flag(child, TIF_FORCED_TF))
236 task_pt_regs(child)->flags &= ~X86_EFLAGS_TF;