blob: adb08eb5c22a38710299d3e1a05b3b55e2ee7e63 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright 2003 PathScale, Inc.
4 *
5 * Licensed under the GPL
6 */
7
Al Virod2ce4e92012-09-20 09:28:25 -04008#include <linux/sched.h>
9#include <asm/prctl.h> /* XXX This should get the constants from libc */
10#include <os.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Jeff Dike77bf4402007-10-16 01:26:58 -070012long arch_prctl(struct task_struct *task, int code, unsigned long __user *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013{
Jeff Dikeba180fd2007-10-16 01:27:00 -070014 unsigned long *ptr = addr, tmp;
Jeff Dikef3555592007-02-10 01:44:29 -080015 long ret;
Jeff Dike6c738ff2007-10-16 01:27:06 -070016 int pid = task->mm->context.id.u.pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Jeff Dikef3555592007-02-10 01:44:29 -080018 /*
19 * With ARCH_SET_FS (and ARCH_SET_GS is treated similarly to
20 * be safe), we need to call arch_prctl on the host because
21 * setting %fs may result in something else happening (like a
Jeff Dike6e6d74c2007-02-10 01:44:30 -080022 * GDT or thread.fs being set instead). So, we let the host
23 * fiddle the registers and thread struct and restore the
24 * registers afterwards.
Jeff Dikef3555592007-02-10 01:44:29 -080025 *
26 * So, the saved registers are stored to the process (this
27 * needed because a stub may have been the last thing to run),
28 * arch_prctl is run on the host, then the registers are read
29 * back.
30 */
Jeff Dikeba180fd2007-10-16 01:27:00 -070031 switch (code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 case ARCH_SET_FS:
Paolo 'Blaisorblade' Giarrussof767b022005-05-28 15:52:03 -070033 case ARCH_SET_GS:
Jeff Dike3e6f2ac2008-02-04 22:30:58 -080034 ret = restore_registers(pid, &current->thread.regs.regs);
35 if (ret)
36 return ret;
Jeff Dikeba180fd2007-10-16 01:27:00 -070037 break;
38 case ARCH_GET_FS:
39 case ARCH_GET_GS:
40 /*
41 * With these two, we read to a local pointer and
42 * put_user it to the userspace pointer that we were
43 * given. If addr isn't valid (because it hasn't been
44 * faulted in or is just bogus), we want put_user to
45 * fault it in (or return -EFAULT) instead of having
46 * the host return -EFAULT.
47 */
48 ptr = &tmp;
49 }
Jeff Dikef3555592007-02-10 01:44:29 -080050
Jeff Dikeba180fd2007-10-16 01:27:00 -070051 ret = os_arch_prctl(pid, code, ptr);
52 if (ret)
53 return ret;
Jeff Dikef3555592007-02-10 01:44:29 -080054
Jeff Dikeba180fd2007-10-16 01:27:00 -070055 switch (code) {
Jeff Dikef3555592007-02-10 01:44:29 -080056 case ARCH_SET_FS:
Jeff Dike44f5c4c2007-03-07 20:41:26 -080057 current->thread.arch.fs = (unsigned long) ptr;
Jeff Dike3e6f2ac2008-02-04 22:30:58 -080058 ret = save_registers(pid, &current->thread.regs.regs);
Jeff Dike44f5c4c2007-03-07 20:41:26 -080059 break;
Jeff Dikef3555592007-02-10 01:44:29 -080060 case ARCH_SET_GS:
Jeff Dike3e6f2ac2008-02-04 22:30:58 -080061 ret = save_registers(pid, &current->thread.regs.regs);
Paolo 'Blaisorblade' Giarrussof767b022005-05-28 15:52:03 -070062 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 case ARCH_GET_FS:
Jeff Dikef3555592007-02-10 01:44:29 -080064 ret = put_user(tmp, addr);
Jeff Dikeba180fd2007-10-16 01:27:00 -070065 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 case ARCH_GET_GS:
Jeff Dikef3555592007-02-10 01:44:29 -080067 ret = put_user(tmp, addr);
Jeff Dikeba180fd2007-10-16 01:27:00 -070068 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
70
Jeff Dikef3555592007-02-10 01:44:29 -080071 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74long sys_arch_prctl(int code, unsigned long addr)
75{
Jeff Dike77bf4402007-10-16 01:26:58 -070076 return arch_prctl(current, code, (unsigned long __user *) addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Karol Swietlicki291248f2008-02-04 22:30:49 -080079void arch_switch_to(struct task_struct *to)
Jeff Dikef3555592007-02-10 01:44:29 -080080{
Jeff Dikeba180fd2007-10-16 01:27:00 -070081 if ((to->thread.arch.fs == 0) || (to->mm == NULL))
82 return;
Jeff Dikef3555592007-02-10 01:44:29 -080083
Jeff Dikeba180fd2007-10-16 01:27:00 -070084 arch_prctl(to, ARCH_SET_FS, (void __user *) to->thread.arch.fs);
Jeff Dikef3555592007-02-10 01:44:29 -080085}