blob: d4a59657fb99c4601a40ff61b455e81d9e5afc2d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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"
Paolo 'Blaisorblade' Giarrussof7fe8782005-05-05 16:15:15 -070010#include "linux/utsname.h"
11#include "linux/personality.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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"
Jeff Dikeba9950c2005-05-20 13:59:07 -070018#include "kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Paolo 'Blaisorblade' Giarrusso80f95072005-05-01 08:58:55 -070020asmlinkage long sys_uname64(struct new_utsname __user * name)
21{
22 int err;
23 down_read(&uts_sem);
24 err = copy_to_user(name, &system_utsname, sizeof (*name));
25 up_read(&uts_sem);
26 if (personality(current->personality) == PER_LINUX32)
27 err |= copy_to_user(&name->machine, "i686", 5);
28 return err ? -EFAULT : 0;
29}
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#ifdef CONFIG_MODE_TT
32extern int modify_ldt(int func, void *ptr, unsigned long bytecount);
33
34long sys_modify_ldt_tt(int func, void *ptr, unsigned long bytecount)
35{
36 /* XXX This should check VERIFY_WRITE depending on func, check this
37 * in i386 as well.
38 */
39 if (!access_ok(VERIFY_READ, ptr, bytecount))
40 return -EFAULT;
41 return(modify_ldt(func, ptr, bytecount));
42}
43#endif
44
45#ifdef CONFIG_MODE_SKAS
46extern int userspace_pid[];
47
Jeff Dike2d58cc92005-05-06 21:30:55 -070048#include "skas_ptrace.h"
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050long sys_modify_ldt_skas(int func, void *ptr, unsigned long bytecount)
51{
52 struct ptrace_ldt ldt;
53 void *buf;
54 int res, n;
55
56 buf = kmalloc(bytecount, GFP_KERNEL);
57 if(buf == NULL)
58 return(-ENOMEM);
59
60 res = 0;
61
62 switch(func){
63 case 1:
64 case 0x11:
65 res = copy_from_user(buf, ptr, bytecount);
66 break;
67 }
68
69 if(res != 0){
70 res = -EFAULT;
71 goto out;
72 }
73
74 ldt = ((struct ptrace_ldt) { .func = func,
75 .ptr = buf,
76 .bytecount = bytecount });
77#warning Need to look up userspace_pid by cpu
78 res = ptrace(PTRACE_LDT, userspace_pid[0], 0, (unsigned long) &ldt);
79 if(res < 0)
80 goto out;
81
82 switch(func){
83 case 0:
84 case 2:
85 n = res;
86 res = copy_to_user(ptr, buf, n);
87 if(res != 0)
88 res = -EFAULT;
89 else
90 res = n;
91 break;
92 }
93
94 out:
95 kfree(buf);
96 return(res);
97}
98#endif
99
100long sys_modify_ldt(int func, void *ptr, unsigned long bytecount)
101{
102 return(CHOOSE_MODE_PROC(sys_modify_ldt_tt, sys_modify_ldt_skas, func,
103 ptr, bytecount));
104}
105
106#ifdef CONFIG_MODE_TT
107extern long arch_prctl(int code, unsigned long addr);
108
109static long arch_prctl_tt(int code, unsigned long addr)
110{
111 unsigned long tmp;
112 long ret;
113
114 switch(code){
115 case ARCH_SET_GS:
116 case ARCH_SET_FS:
117 ret = arch_prctl(code, addr);
118 break;
119 case ARCH_GET_FS:
120 case ARCH_GET_GS:
121 ret = arch_prctl(code, (unsigned long) &tmp);
122 if(!ret)
123 ret = put_user(tmp, &addr);
124 break;
125 default:
126 ret = -EINVAL;
127 break;
128 }
129
130 return(ret);
131}
132#endif
133
134#ifdef CONFIG_MODE_SKAS
135
136static long arch_prctl_skas(int code, unsigned long addr)
137{
138 long ret = 0;
139
140 switch(code){
141 case ARCH_SET_GS:
142 current->thread.regs.regs.skas.regs[GS_BASE / sizeof(unsigned long)] = addr;
143 break;
144 case ARCH_SET_FS:
145 current->thread.regs.regs.skas.regs[FS_BASE / sizeof(unsigned long)] = addr;
146 break;
147 case ARCH_GET_FS:
148 ret = put_user(current->thread.regs.regs.skas.regs[GS / sizeof(unsigned long)], &addr);
149 break;
150 case ARCH_GET_GS:
151 ret = put_user(current->thread.regs.regs.skas.regs[FS / sizeof(unsigned \
152long)], &addr);
153 break;
154 default:
155 ret = -EINVAL;
156 break;
157 }
158
159 return(ret);
160}
161#endif
162
163long sys_arch_prctl(int code, unsigned long addr)
164{
165 return(CHOOSE_MODE_PROC(arch_prctl_tt, arch_prctl_skas, code, addr));
166}
167
168long sys_clone(unsigned long clone_flags, unsigned long newsp,
169 void __user *parent_tid, void __user *child_tid)
170{
171 long ret;
172
173 /* XXX: normal arch do here this pass, and also pass the regs to
174 * do_fork, instead of NULL. Currently the arch-independent code
175 * ignores these values, while the UML code (actually it's
176 * copy_thread) does the right thing. But this should change,
177 probably. */
178 /*if (!newsp)
179 newsp = UPT_SP(current->thread.regs);*/
180 current->thread.forking = 1;
181 ret = do_fork(clone_flags, newsp, NULL, 0, parent_tid, child_tid);
182 current->thread.forking = 0;
183 return(ret);
184}
185
186/*
187 * Overrides for Emacs so that we follow Linus's tabbing style.
188 * Emacs will notice this stuff at the end of the file and automatically
189 * adjust the settings for this buffer only. This must remain at the end
190 * of the file.
191 * ---------------------------------------------------------------------------
192 * Local variables:
193 * c-file-style: "linux"
194 * End:
195 */