2 * x86 single-step support code, common to 32-bit and 64-bit.
4 #include <linux/sched.h>
6 #include <linux/ptrace.h>
8 #include <asm/mmu_context.h>
10 unsigned long convert_ip_to_linear(struct task_struct
*child
, struct pt_regs
*regs
)
12 unsigned long addr
, seg
;
15 seg
= regs
->cs
& 0xffff;
16 if (v8086_mode(regs
)) {
17 addr
= (addr
& 0xffff) + (seg
<< 4);
21 #ifdef CONFIG_MODIFY_LDT_SYSCALL
23 * We'll assume that the code segments in the GDT
24 * are all zero-based. That is largely true: the
25 * TLS segments are used for data, and the PNPBIOS
26 * and APM bios ones we just ignore here.
28 if ((seg
& SEGMENT_TI_MASK
) == SEGMENT_LDT
) {
29 struct desc_struct
*desc
;
34 mutex_lock(&child
->mm
->context
.lock
);
35 if (unlikely(!child
->mm
->context
.ldt
||
36 seg
>= child
->mm
->context
.ldt
->size
))
37 addr
= -1L; /* bogus selector, access would fault */
39 desc
= &child
->mm
->context
.ldt
->entries
[seg
];
40 base
= get_desc_base(desc
);
42 /* 16-bit code segment? */
47 mutex_unlock(&child
->mm
->context
.lock
);
54 static int is_setting_trap_flag(struct task_struct
*child
, struct pt_regs
*regs
)
57 unsigned char opcode
[15];
58 unsigned long addr
= convert_ip_to_linear(child
, regs
);
60 copied
= access_process_vm(child
, addr
, opcode
, sizeof(opcode
), 0);
61 for (i
= 0; i
< copied
; i
++) {
69 /* opcode and address size prefixes */
72 /* irrelevant prefixes (segment overrides and repeats) */
76 case 0xf0: case 0xf2: case 0xf3:
81 if (!user_64bit_mode(regs
))
82 /* 32-bit mode: register increment */
84 /* 64-bit mode: REX prefix */
91 * pushf: NOTE! We should probably not let
92 * the user see the TF bit being set. But
93 * it's more pain than it's worth to avoid
94 * it, and a debugger could emulate this
95 * all in user space if it _really_ cares.
106 * Enable single-stepping. Return nonzero if user mode is not using TF itself.
108 static int enable_single_step(struct task_struct
*child
)
110 struct pt_regs
*regs
= task_pt_regs(child
);
111 unsigned long oflags
;
114 * If we stepped into a sysenter/syscall insn, it trapped in
115 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
116 * If user-mode had set TF itself, then it's still clear from
117 * do_debug() and we need to set it again to restore the user
118 * state so we don't wrongly set TIF_FORCED_TF below.
119 * If enable_single_step() was used last and that is what
120 * set TIF_SINGLESTEP, then both TF and TIF_FORCED_TF are
121 * already set and our bookkeeping is fine.
123 if (unlikely(test_tsk_thread_flag(child
, TIF_SINGLESTEP
)))
124 regs
->flags
|= X86_EFLAGS_TF
;
127 * Always set TIF_SINGLESTEP - this guarantees that
128 * we single-step system calls etc.. This will also
129 * cause us to set TF when returning to user mode.
131 set_tsk_thread_flag(child
, TIF_SINGLESTEP
);
133 oflags
= regs
->flags
;
135 /* Set TF on the kernel stack.. */
136 regs
->flags
|= X86_EFLAGS_TF
;
139 * ..but if TF is changed by the instruction we will trace,
140 * don't mark it as being "us" that set it, so that we
141 * won't clear it by hand later.
143 * Note that if we don't actually execute the popf because
144 * of a signal arriving right now or suchlike, we will lose
145 * track of the fact that it really was "us" that set it.
147 if (is_setting_trap_flag(child
, regs
)) {
148 clear_tsk_thread_flag(child
, TIF_FORCED_TF
);
153 * If TF was already set, check whether it was us who set it.
154 * If not, we should never attempt a block step.
156 if (oflags
& X86_EFLAGS_TF
)
157 return test_tsk_thread_flag(child
, TIF_FORCED_TF
);
159 set_tsk_thread_flag(child
, TIF_FORCED_TF
);
164 void set_task_blockstep(struct task_struct
*task
, bool on
)
166 unsigned long debugctl
;
169 * Ensure irq/preemption can't change debugctl in between.
170 * Note also that both TIF_BLOCKSTEP and debugctl should
171 * be changed atomically wrt preemption.
173 * NOTE: this means that set/clear TIF_BLOCKSTEP is only safe if
174 * task is current or it can't be running, otherwise we can race
175 * with __switch_to_xtra(). We rely on ptrace_freeze_traced() but
176 * PTRACE_KILL is not safe.
179 debugctl
= get_debugctlmsr();
181 debugctl
|= DEBUGCTLMSR_BTF
;
182 set_tsk_thread_flag(task
, TIF_BLOCKSTEP
);
184 debugctl
&= ~DEBUGCTLMSR_BTF
;
185 clear_tsk_thread_flag(task
, TIF_BLOCKSTEP
);
188 update_debugctlmsr(debugctl
);
193 * Enable single or block step.
195 static void enable_step(struct task_struct
*child
, bool block
)
198 * Make sure block stepping (BTF) is not enabled unless it should be.
199 * Note that we don't try to worry about any is_setting_trap_flag()
200 * instructions after the first when using block stepping.
201 * So no one should try to use debugger block stepping in a program
202 * that uses user-mode single stepping itself.
204 if (enable_single_step(child
) && block
)
205 set_task_blockstep(child
, true);
206 else if (test_tsk_thread_flag(child
, TIF_BLOCKSTEP
))
207 set_task_blockstep(child
, false);
210 void user_enable_single_step(struct task_struct
*child
)
212 enable_step(child
, 0);
215 void user_enable_block_step(struct task_struct
*child
)
217 enable_step(child
, 1);
220 void user_disable_single_step(struct task_struct
*child
)
223 * Make sure block stepping (BTF) is disabled.
225 if (test_tsk_thread_flag(child
, TIF_BLOCKSTEP
))
226 set_task_blockstep(child
, false);
228 /* Always clear TIF_SINGLESTEP... */
229 clear_tsk_thread_flag(child
, TIF_SINGLESTEP
);
231 /* But touch TF only if it was set by us.. */
232 if (test_and_clear_tsk_thread_flag(child
, TIF_FORCED_TF
))
233 task_pt_regs(child
)->flags
&= ~X86_EFLAGS_TF
;