fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / arch / um / sys-x86_64 / syscalls.c
1 /*
2  * Copyright 2003 PathScale, Inc.
3  *
4  * Licensed under the GPL
5  */
6
7 #include "linux/linkage.h"
8 #include "linux/slab.h"
9 #include "linux/shm.h"
10 #include "linux/utsname.h"
11 #include "linux/personality.h"
12 #include "asm/uaccess.h"
13 #define __FRAME_OFFSETS
14 #include "asm/ptrace.h"
15 #include "asm/unistd.h"
16 #include "asm/prctl.h" /* XXX This should get the constants from libc */
17 #include "choose-mode.h"
18 #include "kern.h"
19 #include "os.h"
20
21 asmlinkage long sys_uname64(struct new_utsname __user * name)
22 {
23         int err;
24         down_read(&uts_sem);
25         err = copy_to_user(name, utsname(), sizeof (*name));
26         up_read(&uts_sem);
27         if (personality(current->personality) == PER_LINUX32)
28                 err |= copy_to_user(&name->machine, "i686", 5);
29         return err ? -EFAULT : 0;
30 }
31
32 #ifdef CONFIG_MODE_TT
33 extern long arch_prctl(int code, unsigned long addr);
34
35 static long arch_prctl_tt(int code, unsigned long addr)
36 {
37         unsigned long tmp;
38         long ret;
39
40         switch(code){
41         case ARCH_SET_GS:
42         case ARCH_SET_FS:
43                 ret = arch_prctl(code, addr);
44                 break;
45         case ARCH_GET_FS:
46         case ARCH_GET_GS:
47                 ret = arch_prctl(code, (unsigned long) &tmp);
48                 if(!ret)
49                         ret = put_user(tmp, (long __user *)addr);
50                 break;
51         default:
52                 ret = -EINVAL;
53                 break;
54         }
55
56         return(ret);
57 }
58 #endif
59
60 #ifdef CONFIG_MODE_SKAS
61
62 static long arch_prctl_skas(int code, unsigned long __user *addr)
63 {
64         unsigned long *ptr = addr, tmp;
65         long ret;
66         int pid = current->mm->context.skas.id.u.pid;
67
68         /*
69          * With ARCH_SET_FS (and ARCH_SET_GS is treated similarly to
70          * be safe), we need to call arch_prctl on the host because
71          * setting %fs may result in something else happening (like a
72          * GDT being set instead).  So, we let the host fiddle the
73          * registers and restore them afterwards.
74          *
75          * So, the saved registers are stored to the process (this
76          * needed because a stub may have been the last thing to run),
77          * arch_prctl is run on the host, then the registers are read
78          * back.
79          */
80         switch(code){
81         case ARCH_SET_FS:
82         case ARCH_SET_GS:
83                 restore_registers(pid, &current->thread.regs.regs);
84                 break;
85         case ARCH_GET_FS:
86         case ARCH_GET_GS:
87                 /*
88                  * With these two, we read to a local pointer and
89                  * put_user it to the userspace pointer that we were
90                  * given.  If addr isn't valid (because it hasn't been
91                  * faulted in or is just bogus), we want put_user to
92                  * fault it in (or return -EFAULT) instead of having
93                  * the host return -EFAULT.
94                  */
95                 ptr = &tmp;
96         }
97
98         ret = os_arch_prctl(pid, code, ptr);
99         if(ret)
100                 return ret;
101
102         switch(code){
103         case ARCH_SET_FS:
104                 current->thread.arch.fs = (unsigned long) ptr;
105                 save_registers(pid, &current->thread.regs.regs);
106                 break;
107         case ARCH_SET_GS:
108                 save_registers(pid, &current->thread.regs.regs);
109                 break;
110         case ARCH_GET_FS:
111                 ret = put_user(tmp, addr);
112                 break;
113         case ARCH_GET_GS:
114                 ret = put_user(tmp, addr);
115                 break;
116         }
117
118         return ret;
119 }
120 #endif
121
122 long sys_arch_prctl(int code, unsigned long addr)
123 {
124         return CHOOSE_MODE_PROC(arch_prctl_tt, arch_prctl_skas, code,
125                                 (unsigned long __user *) addr);
126 }
127
128 long sys_clone(unsigned long clone_flags, unsigned long newsp,
129                void __user *parent_tid, void __user *child_tid)
130 {
131         long ret;
132
133         if (!newsp)
134                 newsp = UPT_SP(&current->thread.regs.regs);
135         current->thread.forking = 1;
136         ret = do_fork(clone_flags, newsp, &current->thread.regs, 0, parent_tid,
137                       child_tid);
138         current->thread.forking = 0;
139         return ret;
140 }
141
142 void arch_switch_to_skas(struct task_struct *from, struct task_struct *to)
143 {
144         if((to->thread.arch.fs == 0) || (to->mm == NULL))
145                 return;
146
147         arch_prctl_skas(ARCH_SET_FS, (void __user *) to->thread.arch.fs);
148 }
149