2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1995 Linus Torvalds
|
|
|
|
*
|
|
|
|
* Pentium III FXSR, SSE support
|
|
|
|
* Gareth Hughes <gareth@valinux.com>, May 2000
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file handles the architecture-dependent parts of process handling..
|
|
|
|
*/
|
|
|
|
|
2005-06-26 05:54:50 +08:00
|
|
|
#include <linux/cpu.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/sched.h>
|
2017-02-09 01:51:36 +08:00
|
|
|
#include <linux/sched/task.h>
|
2017-02-09 01:51:37 +08:00
|
|
|
#include <linux/sched/task_stack.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/elfcore.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/user.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
#include <linux/mc146818rtc.h>
|
2016-07-14 08:18:56 +08:00
|
|
|
#include <linux/export.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/kallsyms.h>
|
|
|
|
#include <linux/ptrace.h>
|
2006-09-26 16:52:28 +08:00
|
|
|
#include <linux/personality.h>
|
2007-05-03 01:27:16 +08:00
|
|
|
#include <linux/percpu.h>
|
2008-04-14 06:24:18 +08:00
|
|
|
#include <linux/prctl.h>
|
2008-12-06 10:40:00 +08:00
|
|
|
#include <linux/ftrace.h>
|
2009-01-04 18:48:56 +08:00
|
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/kdebug.h>
|
2017-03-20 16:16:24 +08:00
|
|
|
#include <linux/syscalls.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/ldt.h>
|
|
|
|
#include <asm/processor.h>
|
2015-04-24 08:54:44 +08:00
|
|
|
#include <asm/fpu/internal.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/desc.h>
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
|
2005-06-26 05:54:50 +08:00
|
|
|
#include <asm/tlbflush.h>
|
|
|
|
#include <asm/cpu.h>
|
2008-07-22 00:04:13 +08:00
|
|
|
#include <asm/syscalls.h>
|
2009-06-02 02:14:55 +08:00
|
|
|
#include <asm/debugreg.h>
|
2012-03-29 01:11:12 +08:00
|
|
|
#include <asm/switch_to.h>
|
2015-07-29 13:41:21 +08:00
|
|
|
#include <asm/vm86.h>
|
2018-11-22 04:28:25 +08:00
|
|
|
#include <asm/resctrl_sched.h>
|
2017-03-20 16:16:24 +08:00
|
|
|
#include <asm/proto.h>
|
2005-06-26 05:54:50 +08:00
|
|
|
|
2018-11-26 02:33:47 +08:00
|
|
|
#include "process.h"
|
|
|
|
|
2018-09-01 03:41:51 +08:00
|
|
|
void __show_regs(struct pt_regs *regs, enum show_regs_mode mode)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
|
2007-07-21 23:10:42 +08:00
|
|
|
unsigned long d0, d1, d2, d3, d6, d7;
|
2019-05-08 05:25:54 +08:00
|
|
|
unsigned short gs;
|
2007-10-20 02:35:03 +08:00
|
|
|
|
2019-05-08 05:25:54 +08:00
|
|
|
if (user_mode(regs))
|
2009-02-09 21:17:40 +08:00
|
|
|
gs = get_user_gs(regs);
|
2019-05-08 05:25:54 +08:00
|
|
|
else
|
2007-10-20 02:35:03 +08:00
|
|
|
savesegment(gs, gs);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-04-18 00:11:22 +08:00
|
|
|
show_ip(regs, KERN_DEFAULT);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-12-28 16:26:59 +08:00
|
|
|
printk(KERN_DEFAULT "EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
|
2008-01-30 20:30:56 +08:00
|
|
|
regs->ax, regs->bx, regs->cx, regs->dx);
|
2009-12-28 16:26:59 +08:00
|
|
|
printk(KERN_DEFAULT "ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
|
2019-05-08 05:25:54 +08:00
|
|
|
regs->si, regs->di, regs->bp, regs->sp);
|
2018-04-18 00:11:22 +08:00
|
|
|
printk(KERN_DEFAULT "DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x EFLAGS: %08lx\n",
|
2019-05-08 05:25:54 +08:00
|
|
|
(u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, regs->ss, regs->flags);
|
2007-10-20 02:35:03 +08:00
|
|
|
|
2018-09-01 03:41:51 +08:00
|
|
|
if (mode != SHOW_REGS_ALL)
|
2007-10-20 02:35:03 +08:00
|
|
|
return;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-09-04 06:56:36 +08:00
|
|
|
cr0 = read_cr0();
|
|
|
|
cr2 = read_cr2();
|
2017-06-13 01:26:14 +08:00
|
|
|
cr3 = __read_cr3();
|
2016-09-30 03:48:12 +08:00
|
|
|
cr4 = __read_cr4();
|
2009-12-28 16:26:59 +08:00
|
|
|
printk(KERN_DEFAULT "CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
|
2007-10-20 02:35:03 +08:00
|
|
|
cr0, cr2, cr3, cr4);
|
2007-07-21 23:10:42 +08:00
|
|
|
|
|
|
|
get_debugreg(d0, 0);
|
|
|
|
get_debugreg(d1, 1);
|
|
|
|
get_debugreg(d2, 2);
|
|
|
|
get_debugreg(d3, 3);
|
|
|
|
get_debugreg(d6, 6);
|
|
|
|
get_debugreg(d7, 7);
|
2013-06-19 00:09:11 +08:00
|
|
|
|
|
|
|
/* Only print out debug registers if they are in their non-default state. */
|
|
|
|
if ((d0 == 0) && (d1 == 0) && (d2 == 0) && (d3 == 0) &&
|
|
|
|
(d6 == DR6_RESERVED) && (d7 == 0x400))
|
|
|
|
return;
|
|
|
|
|
|
|
|
printk(KERN_DEFAULT "DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
|
|
|
|
d0, d1, d2, d3);
|
2009-12-28 16:26:59 +08:00
|
|
|
printk(KERN_DEFAULT "DR6: %08lx DR7: %08lx\n",
|
2007-10-20 02:35:03 +08:00
|
|
|
d6, d7);
|
|
|
|
}
|
2007-07-21 23:10:42 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
void release_thread(struct task_struct *dead_task)
|
|
|
|
{
|
2006-01-06 16:11:59 +08:00
|
|
|
BUG_ON(dead_task->mm);
|
2005-04-17 06:20:36 +08:00
|
|
|
release_vm86_irqs(dead_task);
|
|
|
|
}
|
|
|
|
|
2015-07-01 06:00:00 +08:00
|
|
|
int copy_thread_tls(unsigned long clone_flags, unsigned long sp,
|
|
|
|
unsigned long arg, struct task_struct *p, unsigned long tls)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2012-09-11 04:44:54 +08:00
|
|
|
struct pt_regs *childregs = task_pt_regs(p);
|
2016-08-14 00:38:19 +08:00
|
|
|
struct fork_frame *fork_frame = container_of(childregs, struct fork_frame, regs);
|
|
|
|
struct inactive_task_frame *frame = &fork_frame->frame;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct task_struct *tsk;
|
|
|
|
int err;
|
|
|
|
|
2019-02-14 17:30:52 +08:00
|
|
|
/*
|
|
|
|
* For a new task use the RESET flags value since there is no before.
|
|
|
|
* All the status flags are zero; DF and all the system flags must also
|
|
|
|
* be 0, specifically IF must be 0 because we context switch to the new
|
|
|
|
* task with interrupts disabled.
|
|
|
|
*/
|
|
|
|
frame->flags = X86_EFLAGS_FIXED;
|
2016-08-14 00:38:19 +08:00
|
|
|
frame->bp = 0;
|
2016-08-14 00:38:20 +08:00
|
|
|
frame->ret_addr = (unsigned long) ret_from_fork;
|
2016-08-14 00:38:19 +08:00
|
|
|
p->thread.sp = (unsigned long) fork_frame;
|
2012-09-11 04:44:54 +08:00
|
|
|
p->thread.sp0 = (unsigned long) (childregs+1);
|
2014-09-03 01:57:33 +08:00
|
|
|
memset(p->thread.ptrace_bps, 0, sizeof(p->thread.ptrace_bps));
|
2012-09-11 04:44:54 +08:00
|
|
|
|
2012-10-23 10:34:11 +08:00
|
|
|
if (unlikely(p->flags & PF_KTHREAD)) {
|
2012-09-11 04:44:54 +08:00
|
|
|
/* kernel thread */
|
|
|
|
memset(childregs, 0, sizeof(struct pt_regs));
|
2016-08-14 00:38:20 +08:00
|
|
|
frame->bx = sp; /* function */
|
|
|
|
frame->di = arg;
|
2012-09-11 04:44:54 +08:00
|
|
|
p->thread.io_bitmap_ptr = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-14 00:38:20 +08:00
|
|
|
frame->bx = 0;
|
2012-10-23 10:34:11 +08:00
|
|
|
*childregs = *current_pt_regs();
|
2008-01-30 20:30:56 +08:00
|
|
|
childregs->ax = 0;
|
2012-10-23 10:34:11 +08:00
|
|
|
if (sp)
|
|
|
|
childregs->sp = sp;
|
2005-05-06 07:15:03 +08:00
|
|
|
|
2012-10-23 10:34:11 +08:00
|
|
|
task_user_gs(p) = get_user_gs(current_pt_regs());
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-06-02 02:14:55 +08:00
|
|
|
p->thread.io_bitmap_ptr = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
tsk = current;
|
2009-06-02 02:14:55 +08:00
|
|
|
err = -ENOMEM;
|
2009-09-10 01:22:48 +08:00
|
|
|
|
2006-07-10 09:12:39 +08:00
|
|
|
if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) {
|
2006-10-01 14:27:21 +08:00
|
|
|
p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr,
|
|
|
|
IO_BITMAP_BYTES, GFP_KERNEL);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!p->thread.io_bitmap_ptr) {
|
|
|
|
p->thread.io_bitmap_max = 0;
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2006-07-10 09:12:39 +08:00
|
|
|
set_tsk_thread_flag(p, TIF_IO_BITMAP);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-01-30 20:30:46 +08:00
|
|
|
err = 0;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Set a new TLS for the child thread?
|
|
|
|
*/
|
2008-01-30 20:30:46 +08:00
|
|
|
if (clone_flags & CLONE_SETTLS)
|
|
|
|
err = do_set_thread_area(p, -1,
|
2015-07-01 06:00:00 +08:00
|
|
|
(struct user_desc __user *)tls, 0);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (err && p->thread.io_bitmap_ptr) {
|
|
|
|
kfree(p->thread.io_bitmap_ptr);
|
|
|
|
p->thread.io_bitmap_max = 0;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-02-21 12:18:40 +08:00
|
|
|
void
|
|
|
|
start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
|
|
|
|
{
|
2009-02-09 21:17:40 +08:00
|
|
|
set_user_gs(regs, 0);
|
2008-02-21 12:18:40 +08:00
|
|
|
regs->fs = 0;
|
|
|
|
regs->ds = __USER_DS;
|
|
|
|
regs->es = __USER_DS;
|
|
|
|
regs->ss = __USER_DS;
|
|
|
|
regs->cs = __USER_CS;
|
|
|
|
regs->ip = new_ip;
|
|
|
|
regs->sp = new_sp;
|
2012-08-03 03:05:11 +08:00
|
|
|
regs->flags = X86_EFLAGS_IF;
|
2015-03-22 06:54:21 +08:00
|
|
|
force_iret();
|
2008-02-21 12:18:40 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(start_thread);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2011-04-28 17:02:08 +08:00
|
|
|
* switch_to(x,y) should switch tasks from x to y.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* We fsave/fwait so that an exception goes off at the right time
|
|
|
|
* (as a call from the fsave or fwait in effect) rather than to
|
|
|
|
* the wrong process. Lazy FP saving no longer makes any sense
|
|
|
|
* with modern CPU's, and this simplifies a lot of things (SMP
|
|
|
|
* and UP become the same).
|
|
|
|
*
|
|
|
|
* NOTE! We used to use the x86 hardware context switching. The
|
|
|
|
* reason for not using it any more becomes apparent when you
|
|
|
|
* try to recover gracefully from saved state that is no longer
|
|
|
|
* valid (stale segment register values in particular). With the
|
|
|
|
* hardware task-switch, there is no way to fix up bad state in
|
|
|
|
* a reasonable manner.
|
|
|
|
*
|
|
|
|
* The fact that Intel documents the hardware task-switching to
|
|
|
|
* be slow is a fairly red herring - this code is not noticeably
|
|
|
|
* faster. However, there _is_ some room for improvement here,
|
|
|
|
* so the performance issues may eventually be a valid point.
|
|
|
|
* More important, however, is the fact that this allows us much
|
|
|
|
* more flexibility.
|
|
|
|
*
|
2008-01-30 20:30:56 +08:00
|
|
|
* The return value (in %ax) will be the "prev" task after
|
2005-04-17 06:20:36 +08:00
|
|
|
* the task-switch, and shows up in ret_from_fork in entry.S,
|
|
|
|
* for example.
|
|
|
|
*/
|
2013-08-06 06:02:39 +08:00
|
|
|
__visible __notrace_funcgraph struct task_struct *
|
2008-12-06 10:40:00 +08:00
|
|
|
__switch_to(struct task_struct *prev_p, struct task_struct *next_p)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct thread_struct *prev = &prev_p->thread,
|
2015-04-23 23:43:27 +08:00
|
|
|
*next = &next_p->thread;
|
|
|
|
struct fpu *prev_fpu = &prev->fpu;
|
|
|
|
struct fpu *next_fpu = &next->fpu;
|
2005-04-17 06:20:36 +08:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
/* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
|
|
|
|
|
2019-04-04 00:41:52 +08:00
|
|
|
if (!test_thread_flag(TIF_NEED_FPU_LOAD))
|
|
|
|
switch_fpu_prepare(prev_fpu, cpu);
|
2006-12-07 09:14:01 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2007-02-13 20:26:20 +08:00
|
|
|
* Save away %gs. No need to save %fs, as it was saved on the
|
[PATCH] i386: Use %gs as the PDA base-segment in the kernel
This patch is the meat of the PDA change. This patch makes several related
changes:
1: Most significantly, %gs is now used in the kernel. This means that on
entry, the old value of %gs is saved away, and it is reloaded with
__KERNEL_PDA.
2: entry.S constructs the stack in the shape of struct pt_regs, and this
is passed around the kernel so that the process's saved register
state can be accessed.
Unfortunately struct pt_regs doesn't currently have space for %gs
(or %fs). This patch extends pt_regs to add space for gs (no space
is allocated for %fs, since it won't be used, and it would just
complicate the code in entry.S to work around the space).
3: Because %gs is now saved on the stack like %ds, %es and the integer
registers, there are a number of places where it no longer needs to
be handled specially; namely context switch, and saving/restoring the
register state in a signal context.
4: And since kernel threads run in kernel space and call normal kernel
code, they need to be created with their %gs == __KERNEL_PDA.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Cc: Chuck Ebbert <76306.1226@compuserve.com>
Cc: Zachary Amsden <zach@vmware.com>
Cc: Jan Beulich <jbeulich@novell.com>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
2006-12-07 09:14:02 +08:00
|
|
|
* stack on entry. No need to save %es and %ds, as those are
|
|
|
|
* always kernel segments while inside the kernel. Doing this
|
|
|
|
* before setting the new TLS descriptors avoids the situation
|
|
|
|
* where we temporarily have non-reloadable segments in %fs
|
|
|
|
* and %gs. This could be an issue if the NMI handler ever
|
|
|
|
* used %fs or %gs (it does not today), or if the kernel is
|
|
|
|
* running inside of a hypervisor layer.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2009-02-09 21:17:40 +08:00
|
|
|
lazy_save_gs(prev->gs);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2005-09-04 06:56:39 +08:00
|
|
|
* Load the per-thread Thread-Local Storage descriptor.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2005-09-04 06:56:39 +08:00
|
|
|
load_TLS(next, cpu);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-02-13 20:26:21 +08:00
|
|
|
/*
|
|
|
|
* Restore IOPL if needed. In normal use, the flags restore
|
|
|
|
* in the switch assembly will handle this. But if the kernel
|
|
|
|
* is running virtualized at a non-zero CPL, the popf will
|
|
|
|
* not restore flags, so it must be done in a separate step.
|
|
|
|
*/
|
|
|
|
if (get_kernel_rpl() && unlikely(prev->iopl != next->iopl))
|
|
|
|
set_iopl_mask(next->iopl);
|
|
|
|
|
2018-11-26 02:33:47 +08:00
|
|
|
switch_to_extra(prev_p, next_p);
|
2005-06-28 05:36:36 +08:00
|
|
|
|
2007-02-13 20:26:21 +08:00
|
|
|
/*
|
|
|
|
* Leave lazy mode, flushing any hypercalls made here.
|
|
|
|
* This must be done before restoring TLS segments so
|
2019-04-04 00:41:31 +08:00
|
|
|
* the GDT and LDT are properly updated.
|
2007-02-13 20:26:21 +08:00
|
|
|
*/
|
2009-02-19 03:18:57 +08:00
|
|
|
arch_end_context_switch(next_p);
|
2007-02-13 20:26:21 +08:00
|
|
|
|
2015-03-07 09:50:18 +08:00
|
|
|
/*
|
2015-04-24 23:31:34 +08:00
|
|
|
* Reload esp0 and cpu_current_top_of_stack. This changes
|
2017-11-02 15:59:09 +08:00
|
|
|
* current_thread_info(). Refresh the SYSENTER configuration in
|
|
|
|
* case prev or next is vm86.
|
2015-03-07 09:50:18 +08:00
|
|
|
*/
|
2018-07-18 17:40:51 +08:00
|
|
|
update_task_stack(next_p);
|
2017-11-02 15:59:09 +08:00
|
|
|
refresh_sysenter_cs(next);
|
2015-03-07 09:50:19 +08:00
|
|
|
this_cpu_write(cpu_current_top_of_stack,
|
|
|
|
(unsigned long)task_stack_page(next_p) +
|
|
|
|
THREAD_SIZE);
|
2014-02-06 22:41:31 +08:00
|
|
|
|
2007-02-13 20:26:21 +08:00
|
|
|
/*
|
|
|
|
* Restore %gs if needed (which is common)
|
|
|
|
*/
|
|
|
|
if (prev->gs | next->gs)
|
2009-02-09 21:17:40 +08:00
|
|
|
lazy_load_gs(next->gs);
|
2007-02-13 20:26:21 +08:00
|
|
|
|
2012-05-11 15:35:27 +08:00
|
|
|
this_cpu_write(current_task, next_p);
|
2007-02-13 20:26:21 +08:00
|
|
|
|
2019-04-04 00:41:52 +08:00
|
|
|
switch_fpu_finish(next_fpu);
|
2019-04-04 00:41:36 +08:00
|
|
|
|
2016-10-29 06:04:48 +08:00
|
|
|
/* Load the Intel cache allocation PQR MSR. */
|
2018-11-22 04:28:27 +08:00
|
|
|
resctrl_sched_in();
|
2016-10-29 06:04:48 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return prev_p;
|
|
|
|
}
|
2017-03-20 16:16:24 +08:00
|
|
|
|
|
|
|
SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2)
|
|
|
|
{
|
|
|
|
return do_arch_prctl_common(current, option, arg2);
|
|
|
|
}
|