Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[deliverable/linux.git] / arch / x86 / kernel / step.c
CommitLineData
fa1e03ea
RM
1/*
2 * x86 single-step support code, common to 32-bit and 64-bit.
3 */
4#include <linux/sched.h>
5#include <linux/mm.h>
6#include <linux/ptrace.h>
254e0a6b 7#include <asm/desc.h>
37868fe1 8#include <asm/mmu_context.h>
fa1e03ea 9
37cd9cf3 10unsigned long convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs)
fa1e03ea
RM
11{
12 unsigned long addr, seg;
13
65ea5b03 14 addr = regs->ip;
fa1e03ea 15 seg = regs->cs & 0xffff;
65ea5b03 16 if (v8086_mode(regs)) {
7122ec81
RM
17 addr = (addr & 0xffff) + (seg << 4);
18 return addr;
19 }
fa1e03ea 20
a5b9e5a2 21#ifdef CONFIG_MODIFY_LDT_SYSCALL
fa1e03ea
RM
22 /*
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.
27 */
3f80c1ad 28 if ((seg & SEGMENT_TI_MASK) == SEGMENT_LDT) {
254e0a6b 29 struct desc_struct *desc;
fa1e03ea
RM
30 unsigned long base;
31
136d9d83 32 seg >>= 3;
fa1e03ea
RM
33
34 mutex_lock(&child->mm->context.lock);
37868fe1 35 if (unlikely(!child->mm->context.ldt ||
136d9d83 36 seg >= child->mm->context.ldt->size))
fa1e03ea
RM
37 addr = -1L; /* bogus selector, access would fault */
38 else {
37868fe1 39 desc = &child->mm->context.ldt->entries[seg];
254e0a6b 40 base = get_desc_base(desc);
fa1e03ea
RM
41
42 /* 16-bit code segment? */
254e0a6b 43 if (!desc->d)
fa1e03ea
RM
44 addr &= 0xffff;
45 addr += base;
46 }
47 mutex_unlock(&child->mm->context.lock);
48 }
a5b9e5a2 49#endif
fa1e03ea
RM
50
51 return addr;
52}
53
54static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
55{
56 int i, copied;
57 unsigned char opcode[15];
37cd9cf3 58 unsigned long addr = convert_ip_to_linear(child, regs);
fa1e03ea
RM
59
60 copied = access_process_vm(child, addr, opcode, sizeof(opcode), 0);
61 for (i = 0; i < copied; i++) {
62 switch (opcode[i]) {
63 /* popf and iret */
64 case 0x9d: case 0xcf:
65 return 1;
66
67 /* CHECKME: 64 65 */
68
69 /* opcode and address size prefixes */
70 case 0x66: case 0x67:
71 continue;
72 /* irrelevant prefixes (segment overrides and repeats) */
73 case 0x26: case 0x2e:
74 case 0x36: case 0x3e:
75 case 0x64: case 0x65:
5f76cb1f 76 case 0xf0: case 0xf2: case 0xf3:
fa1e03ea
RM
77 continue;
78
7122ec81 79#ifdef CONFIG_X86_64
fa1e03ea 80 case 0x40 ... 0x4f:
318f5a2a 81 if (!user_64bit_mode(regs))
fa1e03ea
RM
82 /* 32-bit mode: register increment */
83 return 0;
84 /* 64-bit mode: REX prefix */
85 continue;
7122ec81 86#endif
fa1e03ea
RM
87
88 /* CHECKME: f2, f3 */
89
90 /*
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.
96 */
97 case 0x9c:
98 default:
99 return 0;
100 }
101 }
102 return 0;
103}
104
10faa81e
RM
105/*
106 * Enable single-stepping. Return nonzero if user mode is not using TF itself.
107 */
108static int enable_single_step(struct task_struct *child)
fa1e03ea
RM
109{
110 struct pt_regs *regs = task_pt_regs(child);
6718d0d6 111 unsigned long oflags;
fa1e03ea 112
380fdd75
RM
113 /*
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.
122 */
123 if (unlikely(test_tsk_thread_flag(child, TIF_SINGLESTEP)))
124 regs->flags |= X86_EFLAGS_TF;
125
fa1e03ea
RM
126 /*
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.
130 */
131 set_tsk_thread_flag(child, TIF_SINGLESTEP);
132
6718d0d6 133 oflags = regs->flags;
fa1e03ea
RM
134
135 /* Set TF on the kernel stack.. */
65ea5b03 136 regs->flags |= X86_EFLAGS_TF;
fa1e03ea
RM
137
138 /*
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.
6718d0d6
RM
142 *
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.
fa1e03ea 146 */
6718d0d6
RM
147 if (is_setting_trap_flag(child, regs)) {
148 clear_tsk_thread_flag(child, TIF_FORCED_TF);
10faa81e 149 return 0;
6718d0d6
RM
150 }
151
152 /*
153 * If TF was already set, check whether it was us who set it.
154 * If not, we should never attempt a block step.
155 */
156 if (oflags & X86_EFLAGS_TF)
157 return test_tsk_thread_flag(child, TIF_FORCED_TF);
fa1e03ea 158
e1f28773 159 set_tsk_thread_flag(child, TIF_FORCED_TF);
10faa81e
RM
160
161 return 1;
162}
163
9bd1190a 164void set_task_blockstep(struct task_struct *task, bool on)
848e8f5f
ON
165{
166 unsigned long debugctl;
167
95cf00fa
ON
168 /*
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.
9899d11f
ON
172 *
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.
95cf00fa
ON
177 */
178 local_irq_disable();
848e8f5f
ON
179 debugctl = get_debugctlmsr();
180 if (on) {
181 debugctl |= DEBUGCTLMSR_BTF;
182 set_tsk_thread_flag(task, TIF_BLOCKSTEP);
183 } else {
184 debugctl &= ~DEBUGCTLMSR_BTF;
185 clear_tsk_thread_flag(task, TIF_BLOCKSTEP);
186 }
95cf00fa
ON
187 if (task == current)
188 update_debugctlmsr(debugctl);
189 local_irq_enable();
848e8f5f
ON
190}
191
10faa81e
RM
192/*
193 * Enable single or block step.
194 */
195static void enable_step(struct task_struct *child, bool block)
196{
197 /*
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.
0d2eb44f 201 * So no one should try to use debugger block stepping in a program
10faa81e
RM
202 * that uses user-mode single stepping itself.
203 */
848e8f5f
ON
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);
10faa81e
RM
208}
209
210void user_enable_single_step(struct task_struct *child)
211{
212 enable_step(child, 0);
213}
214
215void user_enable_block_step(struct task_struct *child)
216{
217 enable_step(child, 1);
fa1e03ea
RM
218}
219
220void user_disable_single_step(struct task_struct *child)
221{
10faa81e
RM
222 /*
223 * Make sure block stepping (BTF) is disabled.
224 */
848e8f5f
ON
225 if (test_tsk_thread_flag(child, TIF_BLOCKSTEP))
226 set_task_blockstep(child, false);
10faa81e 227
fa1e03ea
RM
228 /* Always clear TIF_SINGLESTEP... */
229 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
230
231 /* But touch TF only if it was set by us.. */
e1f28773 232 if (test_and_clear_tsk_thread_flag(child, TIF_FORCED_TF))
65ea5b03 233 task_pt_regs(child)->flags &= ~X86_EFLAGS_TF;
fa1e03ea 234}
This page took 0.992343 seconds and 5 git commands to generate.