blob: 7beba0769a8cfac34f23ad120f597e20f3ab819d [file] [log] [blame]
Roland McGrathfa1e03e2008-01-30 13:30:50 +01001/*
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>
Akinobu Mita254e0a62009-07-19 00:08:54 +09007#include <asm/desc.h>
Roland McGrathfa1e03e2008-01-30 13:30:50 +01008
Harvey Harrison37cd9cf2008-01-30 13:33:12 +01009unsigned long convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs)
Roland McGrathfa1e03e2008-01-30 13:30:50 +010010{
11 unsigned long addr, seg;
12
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010013 addr = regs->ip;
Roland McGrathfa1e03e2008-01-30 13:30:50 +010014 seg = regs->cs & 0xffff;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010015 if (v8086_mode(regs)) {
Roland McGrath7122ec82008-01-30 13:30:50 +010016 addr = (addr & 0xffff) + (seg << 4);
17 return addr;
18 }
Roland McGrathfa1e03e2008-01-30 13:30:50 +010019
20 /*
21 * We'll assume that the code segments in the GDT
22 * are all zero-based. That is largely true: the
23 * TLS segments are used for data, and the PNPBIOS
24 * and APM bios ones we just ignore here.
25 */
Roland McGrath3f80c1a2008-01-30 13:30:50 +010026 if ((seg & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Akinobu Mita254e0a62009-07-19 00:08:54 +090027 struct desc_struct *desc;
Roland McGrathfa1e03e2008-01-30 13:30:50 +010028 unsigned long base;
29
30 seg &= ~7UL;
31
32 mutex_lock(&child->mm->context.lock);
33 if (unlikely((seg >> 3) >= child->mm->context.size))
34 addr = -1L; /* bogus selector, access would fault */
35 else {
36 desc = child->mm->context.ldt + seg;
Akinobu Mita254e0a62009-07-19 00:08:54 +090037 base = get_desc_base(desc);
Roland McGrathfa1e03e2008-01-30 13:30:50 +010038
39 /* 16-bit code segment? */
Akinobu Mita254e0a62009-07-19 00:08:54 +090040 if (!desc->d)
Roland McGrathfa1e03e2008-01-30 13:30:50 +010041 addr &= 0xffff;
42 addr += base;
43 }
44 mutex_unlock(&child->mm->context.lock);
45 }
46
47 return addr;
48}
49
50static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
51{
52 int i, copied;
53 unsigned char opcode[15];
Harvey Harrison37cd9cf2008-01-30 13:33:12 +010054 unsigned long addr = convert_ip_to_linear(child, regs);
Roland McGrathfa1e03e2008-01-30 13:30:50 +010055
56 copied = access_process_vm(child, addr, opcode, sizeof(opcode), 0);
57 for (i = 0; i < copied; i++) {
58 switch (opcode[i]) {
59 /* popf and iret */
60 case 0x9d: case 0xcf:
61 return 1;
62
63 /* CHECKME: 64 65 */
64
65 /* opcode and address size prefixes */
66 case 0x66: case 0x67:
67 continue;
68 /* irrelevant prefixes (segment overrides and repeats) */
69 case 0x26: case 0x2e:
70 case 0x36: case 0x3e:
71 case 0x64: case 0x65:
Roland McGrath5f76cb12008-01-30 13:30:50 +010072 case 0xf0: case 0xf2: case 0xf3:
Roland McGrathfa1e03e2008-01-30 13:30:50 +010073 continue;
74
Roland McGrath7122ec82008-01-30 13:30:50 +010075#ifdef CONFIG_X86_64
Roland McGrathfa1e03e2008-01-30 13:30:50 +010076 case 0x40 ... 0x4f:
77 if (regs->cs != __USER_CS)
78 /* 32-bit mode: register increment */
79 return 0;
80 /* 64-bit mode: REX prefix */
81 continue;
Roland McGrath7122ec82008-01-30 13:30:50 +010082#endif
Roland McGrathfa1e03e2008-01-30 13:30:50 +010083
84 /* CHECKME: f2, f3 */
85
86 /*
87 * pushf: NOTE! We should probably not let
88 * the user see the TF bit being set. But
89 * it's more pain than it's worth to avoid
90 * it, and a debugger could emulate this
91 * all in user space if it _really_ cares.
92 */
93 case 0x9c:
94 default:
95 return 0;
96 }
97 }
98 return 0;
99}
100
Roland McGrath10faa812008-01-30 13:30:54 +0100101/*
102 * Enable single-stepping. Return nonzero if user mode is not using TF itself.
103 */
104static int enable_single_step(struct task_struct *child)
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100105{
106 struct pt_regs *regs = task_pt_regs(child);
Roland McGrath6718d0d2008-07-09 01:07:02 -0700107 unsigned long oflags;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100108
109 /*
Roland McGrath380fdd72008-07-09 02:39:29 -0700110 * If we stepped into a sysenter/syscall insn, it trapped in
111 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
112 * If user-mode had set TF itself, then it's still clear from
113 * do_debug() and we need to set it again to restore the user
114 * state so we don't wrongly set TIF_FORCED_TF below.
115 * If enable_single_step() was used last and that is what
116 * set TIF_SINGLESTEP, then both TF and TIF_FORCED_TF are
117 * already set and our bookkeeping is fine.
118 */
119 if (unlikely(test_tsk_thread_flag(child, TIF_SINGLESTEP)))
120 regs->flags |= X86_EFLAGS_TF;
121
122 /*
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100123 * Always set TIF_SINGLESTEP - this guarantees that
124 * we single-step system calls etc.. This will also
125 * cause us to set TF when returning to user mode.
126 */
127 set_tsk_thread_flag(child, TIF_SINGLESTEP);
128
Roland McGrath6718d0d2008-07-09 01:07:02 -0700129 oflags = regs->flags;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100130
131 /* Set TF on the kernel stack.. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100132 regs->flags |= X86_EFLAGS_TF;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100133
134 /*
135 * ..but if TF is changed by the instruction we will trace,
136 * don't mark it as being "us" that set it, so that we
137 * won't clear it by hand later.
Roland McGrath6718d0d2008-07-09 01:07:02 -0700138 *
139 * Note that if we don't actually execute the popf because
140 * of a signal arriving right now or suchlike, we will lose
141 * track of the fact that it really was "us" that set it.
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100142 */
Roland McGrath6718d0d2008-07-09 01:07:02 -0700143 if (is_setting_trap_flag(child, regs)) {
144 clear_tsk_thread_flag(child, TIF_FORCED_TF);
Roland McGrath10faa812008-01-30 13:30:54 +0100145 return 0;
Roland McGrath6718d0d2008-07-09 01:07:02 -0700146 }
147
148 /*
149 * If TF was already set, check whether it was us who set it.
150 * If not, we should never attempt a block step.
151 */
152 if (oflags & X86_EFLAGS_TF)
153 return test_tsk_thread_flag(child, TIF_FORCED_TF);
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100154
Roland McGrathe1f28772008-01-30 13:30:50 +0100155 set_tsk_thread_flag(child, TIF_FORCED_TF);
Roland McGrath10faa812008-01-30 13:30:54 +0100156
157 return 1;
158}
159
160/*
Roland McGrath10faa812008-01-30 13:30:54 +0100161 * Enable single or block step.
162 */
163static void enable_step(struct task_struct *child, bool block)
164{
165 /*
166 * Make sure block stepping (BTF) is not enabled unless it should be.
167 * Note that we don't try to worry about any is_setting_trap_flag()
168 * instructions after the first when using block stepping.
169 * So noone should try to use debugger block stepping in a program
170 * that uses user-mode single stepping itself.
171 */
Peter Zijlstrafaa46022010-03-25 14:51:50 +0100172 if (!enable_single_step(child))
173 return;
174 /* XXX */
Roland McGrath10faa812008-01-30 13:30:54 +0100175}
176
177void user_enable_single_step(struct task_struct *child)
178{
179 enable_step(child, 0);
180}
181
182void user_enable_block_step(struct task_struct *child)
183{
184 enable_step(child, 1);
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100185}
186
187void user_disable_single_step(struct task_struct *child)
188{
Roland McGrath10faa812008-01-30 13:30:54 +0100189 /*
190 * Make sure block stepping (BTF) is disabled.
191 */
Peter Zijlstrafaa46022010-03-25 14:51:50 +0100192 /* XXX */
Roland McGrath10faa812008-01-30 13:30:54 +0100193
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100194 /* Always clear TIF_SINGLESTEP... */
195 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
196
197 /* But touch TF only if it was set by us.. */
Roland McGrathe1f28772008-01-30 13:30:50 +0100198 if (test_and_clear_tsk_thread_flag(child, TIF_FORCED_TF))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100199 task_pt_regs(child)->flags &= ~X86_EFLAGS_TF;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100200}