blob: 60d2c3798ba28ffe902151e27541958a99d71b24 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Roland McGrathfa1e03e2008-01-30 13:30:50 +01002/*
3 * x86 single-step support code, common to 32-bit and 64-bit.
4 */
5#include <linux/sched.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +01006#include <linux/sched/task_stack.h>
Roland McGrathfa1e03e2008-01-30 13:30:50 +01007#include <linux/mm.h>
8#include <linux/ptrace.h>
Akinobu Mita254e0a62009-07-19 00:08:54 +09009#include <asm/desc.h>
Andy Lutomirski37868fe2015-07-30 14:31:32 -070010#include <asm/mmu_context.h>
Roland McGrathfa1e03e2008-01-30 13:30:50 +010011
Harvey Harrison37cd9cf2008-01-30 13:33:12 +010012unsigned long convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs)
Roland McGrathfa1e03e2008-01-30 13:30:50 +010013{
14 unsigned long addr, seg;
15
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010016 addr = regs->ip;
Andy Lutomirski99504812017-07-28 06:00:32 -070017 seg = regs->cs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010018 if (v8086_mode(regs)) {
Roland McGrath7122ec82008-01-30 13:30:50 +010019 addr = (addr & 0xffff) + (seg << 4);
20 return addr;
21 }
Roland McGrathfa1e03e2008-01-30 13:30:50 +010022
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -070023#ifdef CONFIG_MODIFY_LDT_SYSCALL
Roland McGrathfa1e03e2008-01-30 13:30:50 +010024 /*
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.
29 */
Roland McGrath3f80c1a2008-01-30 13:30:50 +010030 if ((seg & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Akinobu Mita254e0a62009-07-19 00:08:54 +090031 struct desc_struct *desc;
Roland McGrathfa1e03e2008-01-30 13:30:50 +010032 unsigned long base;
33
Juergen Gross136d9d82015-08-06 10:04:38 +020034 seg >>= 3;
Roland McGrathfa1e03e2008-01-30 13:30:50 +010035
36 mutex_lock(&child->mm->context.lock);
Andy Lutomirski37868fe2015-07-30 14:31:32 -070037 if (unlikely(!child->mm->context.ldt ||
Borislav Petkovbbf79d22017-06-06 19:31:16 +020038 seg >= child->mm->context.ldt->nr_entries))
Roland McGrathfa1e03e2008-01-30 13:30:50 +010039 addr = -1L; /* bogus selector, access would fault */
40 else {
Andy Lutomirski37868fe2015-07-30 14:31:32 -070041 desc = &child->mm->context.ldt->entries[seg];
Akinobu Mita254e0a62009-07-19 00:08:54 +090042 base = get_desc_base(desc);
Roland McGrathfa1e03e2008-01-30 13:30:50 +010043
44 /* 16-bit code segment? */
Akinobu Mita254e0a62009-07-19 00:08:54 +090045 if (!desc->d)
Roland McGrathfa1e03e2008-01-30 13:30:50 +010046 addr &= 0xffff;
47 addr += base;
48 }
49 mutex_unlock(&child->mm->context.lock);
50 }
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -070051#endif
Roland McGrathfa1e03e2008-01-30 13:30:50 +010052
53 return addr;
54}
55
56static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
57{
58 int i, copied;
59 unsigned char opcode[15];
Harvey Harrison37cd9cf2008-01-30 13:33:12 +010060 unsigned long addr = convert_ip_to_linear(child, regs);
Roland McGrathfa1e03e2008-01-30 13:30:50 +010061
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +010062 copied = access_process_vm(child, addr, opcode, sizeof(opcode),
63 FOLL_FORCE);
Roland McGrathfa1e03e2008-01-30 13:30:50 +010064 for (i = 0; i < copied; i++) {
65 switch (opcode[i]) {
66 /* popf and iret */
67 case 0x9d: case 0xcf:
68 return 1;
69
70 /* CHECKME: 64 65 */
71
72 /* opcode and address size prefixes */
73 case 0x66: case 0x67:
74 continue;
75 /* irrelevant prefixes (segment overrides and repeats) */
76 case 0x26: case 0x2e:
77 case 0x36: case 0x3e:
78 case 0x64: case 0x65:
Roland McGrath5f76cb12008-01-30 13:30:50 +010079 case 0xf0: case 0xf2: case 0xf3:
Roland McGrathfa1e03e2008-01-30 13:30:50 +010080 continue;
81
Roland McGrath7122ec82008-01-30 13:30:50 +010082#ifdef CONFIG_X86_64
Roland McGrathfa1e03e2008-01-30 13:30:50 +010083 case 0x40 ... 0x4f:
Andy Lutomirski318f5a22011-08-03 09:31:53 -040084 if (!user_64bit_mode(regs))
Roland McGrathfa1e03e2008-01-30 13:30:50 +010085 /* 32-bit mode: register increment */
86 return 0;
87 /* 64-bit mode: REX prefix */
88 continue;
Roland McGrath7122ec82008-01-30 13:30:50 +010089#endif
Roland McGrathfa1e03e2008-01-30 13:30:50 +010090
91 /* CHECKME: f2, f3 */
92
93 /*
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.
99 */
100 case 0x9c:
101 default:
102 return 0;
103 }
104 }
105 return 0;
106}
107
Roland McGrath10faa812008-01-30 13:30:54 +0100108/*
109 * Enable single-stepping. Return nonzero if user mode is not using TF itself.
110 */
111static int enable_single_step(struct task_struct *child)
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100112{
113 struct pt_regs *regs = task_pt_regs(child);
Roland McGrath6718d0d2008-07-09 01:07:02 -0700114 unsigned long oflags;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100115
116 /*
Roland McGrath380fdd72008-07-09 02:39:29 -0700117 * 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.
125 */
126 if (unlikely(test_tsk_thread_flag(child, TIF_SINGLESTEP)))
127 regs->flags |= X86_EFLAGS_TF;
128
129 /*
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100130 * 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.
133 */
134 set_tsk_thread_flag(child, TIF_SINGLESTEP);
135
Roland McGrath6718d0d2008-07-09 01:07:02 -0700136 oflags = regs->flags;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100137
138 /* Set TF on the kernel stack.. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100139 regs->flags |= X86_EFLAGS_TF;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100140
141 /*
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.
Roland McGrath6718d0d2008-07-09 01:07:02 -0700145 *
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.
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100149 */
Roland McGrath6718d0d2008-07-09 01:07:02 -0700150 if (is_setting_trap_flag(child, regs)) {
151 clear_tsk_thread_flag(child, TIF_FORCED_TF);
Roland McGrath10faa812008-01-30 13:30:54 +0100152 return 0;
Roland McGrath6718d0d2008-07-09 01:07:02 -0700153 }
154
155 /*
156 * If TF was already set, check whether it was us who set it.
157 * If not, we should never attempt a block step.
158 */
159 if (oflags & X86_EFLAGS_TF)
160 return test_tsk_thread_flag(child, TIF_FORCED_TF);
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100161
Roland McGrathe1f28772008-01-30 13:30:50 +0100162 set_tsk_thread_flag(child, TIF_FORCED_TF);
Roland McGrath10faa812008-01-30 13:30:54 +0100163
164 return 1;
165}
166
Oleg Nesterov9bd11902012-09-03 15:24:17 +0200167void set_task_blockstep(struct task_struct *task, bool on)
Oleg Nesterov848e8f52012-08-03 17:31:46 +0200168{
169 unsigned long debugctl;
170
Oleg Nesterov95cf00f2012-08-11 18:06:42 +0200171 /*
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.
Oleg Nesterov9899d112013-01-21 20:48:00 +0100175 *
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.
Oleg Nesterov95cf00f2012-08-11 18:06:42 +0200180 */
181 local_irq_disable();
Oleg Nesterov848e8f52012-08-03 17:31:46 +0200182 debugctl = get_debugctlmsr();
183 if (on) {
184 debugctl |= DEBUGCTLMSR_BTF;
185 set_tsk_thread_flag(task, TIF_BLOCKSTEP);
186 } else {
187 debugctl &= ~DEBUGCTLMSR_BTF;
188 clear_tsk_thread_flag(task, TIF_BLOCKSTEP);
189 }
Oleg Nesterov95cf00f2012-08-11 18:06:42 +0200190 if (task == current)
191 update_debugctlmsr(debugctl);
192 local_irq_enable();
Oleg Nesterov848e8f52012-08-03 17:31:46 +0200193}
194
Roland McGrath10faa812008-01-30 13:30:54 +0100195/*
Roland McGrath10faa812008-01-30 13:30:54 +0100196 * Enable single or block step.
197 */
198static void enable_step(struct task_struct *child, bool block)
199{
200 /*
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.
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300204 * So no one should try to use debugger block stepping in a program
Roland McGrath10faa812008-01-30 13:30:54 +0100205 * that uses user-mode single stepping itself.
206 */
Oleg Nesterov848e8f52012-08-03 17:31:46 +0200207 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);
Roland McGrath10faa812008-01-30 13:30:54 +0100211}
212
213void user_enable_single_step(struct task_struct *child)
214{
215 enable_step(child, 0);
216}
217
218void user_enable_block_step(struct task_struct *child)
219{
220 enable_step(child, 1);
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100221}
222
223void user_disable_single_step(struct task_struct *child)
224{
Roland McGrath10faa812008-01-30 13:30:54 +0100225 /*
226 * Make sure block stepping (BTF) is disabled.
227 */
Oleg Nesterov848e8f52012-08-03 17:31:46 +0200228 if (test_tsk_thread_flag(child, TIF_BLOCKSTEP))
229 set_task_blockstep(child, false);
Roland McGrath10faa812008-01-30 13:30:54 +0100230
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100231 /* Always clear TIF_SINGLESTEP... */
232 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
233
234 /* But touch TF only if it was set by us.. */
Roland McGrathe1f28772008-01-30 13:30:50 +0100235 if (test_and_clear_tsk_thread_flag(child, TIF_FORCED_TF))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100236 task_pt_regs(child)->flags &= ~X86_EFLAGS_TF;
Roland McGrathfa1e03e2008-01-30 13:30:50 +0100237}