]> git.karo-electronics.de Git - karo-tx-linux.git/blob
a59bc637f9af
[karo-tx-linux.git] /
1 /* linux/arch/sparc/kernel/sys_sparc.c
2  *
3  * This file contains various random system calls that
4  * have a non-standard calling sequence on the Linux/sparc
5  * platform.
6  */
7
8 #include <linux/errno.h>
9 #include <linux/types.h>
10 #include <linux/sched.h>
11 #include <linux/mm.h>
12 #include <linux/fs.h>
13 #include <linux/file.h>
14 #include <linux/sem.h>
15 #include <linux/msg.h>
16 #include <linux/shm.h>
17 #include <linux/stat.h>
18 #include <linux/syscalls.h>
19 #include <linux/mman.h>
20 #include <linux/utsname.h>
21 #include <linux/smp.h>
22 #include <linux/ipc.h>
23
24 #include <asm/uaccess.h>
25 #include <asm/unistd.h>
26
27 /* #define DEBUG_UNIMP_SYSCALL */
28
29 /* XXX Make this per-binary type, this way we can detect the type of
30  * XXX a binary.  Every Sparc executable calls this very early on.
31  */
32 asmlinkage unsigned long sys_getpagesize(void)
33 {
34         return PAGE_SIZE; /* Possibly older binaries want 8192 on sun4's? */
35 }
36
37 #define COLOUR_ALIGN(addr)      (((addr)+SHMLBA-1)&~(SHMLBA-1))
38
39 unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags)
40 {
41         struct vm_area_struct * vmm;
42         struct vm_unmapped_area_info info;
43
44         if (flags & MAP_FIXED) {
45                 /* We do not accept a shared mapping if it would violate
46                  * cache aliasing constraints.
47                  */
48                 if ((flags & MAP_SHARED) &&
49                     ((addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1)))
50                         return -EINVAL;
51                 return addr;
52         }
53
54         /* See asm-sparc/uaccess.h */
55         if (len > TASK_SIZE - PAGE_SIZE)
56                 return -ENOMEM;
57         if (!addr)
58                 addr = TASK_UNMAPPED_BASE;
59
60         info.flags = 0;
61         info.length = len;
62         info.low_limit = addr;
63         info.high_limit = TASK_SIZE;
64         info.align_mask = (flags & MAP_SHARED) ?
65                 (PAGE_MASK & (SHMLBA - 1)) : 0;
66         info.align_offset = pgoff << PAGE_SHIFT;
67         return vm_unmapped_area(&info);
68 }
69
70 /*
71  * sys_pipe() is the normal C calling standard for creating
72  * a pipe. It's not the way unix traditionally does this, though.
73  */
74 asmlinkage int sparc_pipe(struct pt_regs *regs)
75 {
76         int fd[2];
77         int error;
78
79         error = do_pipe_flags(fd, 0);
80         if (error)
81                 goto out;
82         regs->u_regs[UREG_I1] = fd[1];
83         error = fd[0];
84 out:
85         return error;
86 }
87
88 int sparc_mmap_check(unsigned long addr, unsigned long len)
89 {
90         /* See asm-sparc/uaccess.h */
91         if (len > TASK_SIZE - PAGE_SIZE || addr + len > TASK_SIZE - PAGE_SIZE)
92                 return -EINVAL;
93
94         return 0;
95 }
96
97 /* Linux version of mmap */
98
99 asmlinkage unsigned long sys_mmap2(unsigned long addr, unsigned long len,
100         unsigned long prot, unsigned long flags, unsigned long fd,
101         unsigned long pgoff)
102 {
103         /* Make sure the shift for mmap2 is constant (12), no matter what PAGE_SIZE
104            we have. */
105         return sys_mmap_pgoff(addr, len, prot, flags, fd,
106                               pgoff >> (PAGE_SHIFT - 12));
107 }
108
109 asmlinkage unsigned long sys_mmap(unsigned long addr, unsigned long len,
110         unsigned long prot, unsigned long flags, unsigned long fd,
111         unsigned long off)
112 {
113         /* no alignment check? */
114         return sys_mmap_pgoff(addr, len, prot, flags, fd, off >> PAGE_SHIFT);
115 }
116
117 long sparc_remap_file_pages(unsigned long start, unsigned long size,
118                            unsigned long prot, unsigned long pgoff,
119                            unsigned long flags)
120 {
121         /* This works on an existing mmap so we don't need to validate
122          * the range as that was done at the original mmap call.
123          */
124         return sys_remap_file_pages(start, size, prot,
125                                     (pgoff >> (PAGE_SHIFT - 12)), flags);
126 }
127
128 /* we come to here via sys_nis_syscall so it can setup the regs argument */
129 asmlinkage unsigned long
130 c_sys_nis_syscall (struct pt_regs *regs)
131 {
132         static int count = 0;
133
134         if (count++ > 5)
135                 return -ENOSYS;
136         printk ("%s[%d]: Unimplemented SPARC system call %d\n",
137                 current->comm, task_pid_nr(current), (int)regs->u_regs[1]);
138 #ifdef DEBUG_UNIMP_SYSCALL      
139         show_regs (regs);
140 #endif
141         return -ENOSYS;
142 }
143
144 /* #define DEBUG_SPARC_BREAKPOINT */
145
146 asmlinkage void
147 sparc_breakpoint (struct pt_regs *regs)
148 {
149         siginfo_t info;
150
151 #ifdef DEBUG_SPARC_BREAKPOINT
152         printk ("TRAP: Entering kernel PC=%x, nPC=%x\n", regs->pc, regs->npc);
153 #endif
154         info.si_signo = SIGTRAP;
155         info.si_errno = 0;
156         info.si_code = TRAP_BRKPT;
157         info.si_addr = (void __user *)regs->pc;
158         info.si_trapno = 0;
159         force_sig_info(SIGTRAP, &info, current);
160
161 #ifdef DEBUG_SPARC_BREAKPOINT
162         printk ("TRAP: Returning to space: PC=%x nPC=%x\n", regs->pc, regs->npc);
163 #endif
164 }
165
166 asmlinkage int
167 sparc_sigaction (int sig, const struct old_sigaction __user *act,
168                  struct old_sigaction __user *oact)
169 {
170         struct k_sigaction new_ka, old_ka;
171         int ret;
172
173         WARN_ON_ONCE(sig >= 0);
174         sig = -sig;
175
176         if (act) {
177                 unsigned long mask;
178
179                 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
180                     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
181                     __get_user(new_ka.sa.sa_restorer, &act->sa_restorer) ||
182                     __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
183                     __get_user(mask, &act->sa_mask))
184                         return -EFAULT;
185                 siginitset(&new_ka.sa.sa_mask, mask);
186                 new_ka.ka_restorer = NULL;
187         }
188
189         ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
190
191         if (!ret && oact) {
192                 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
193                     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
194                     __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer) ||
195                     __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
196                     __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
197                         return -EFAULT;
198         }
199
200         return ret;
201 }
202
203 asmlinkage long
204 sys_rt_sigaction(int sig,
205                  const struct sigaction __user *act,
206                  struct sigaction __user *oact,
207                  void __user *restorer,
208                  size_t sigsetsize)
209 {
210         struct k_sigaction new_ka, old_ka;
211         int ret;
212
213         /* XXX: Don't preclude handling different sized sigset_t's.  */
214         if (sigsetsize != sizeof(sigset_t))
215                 return -EINVAL;
216
217         if (act) {
218                 new_ka.ka_restorer = restorer;
219                 if (copy_from_user(&new_ka.sa, act, sizeof(*act)))
220                         return -EFAULT;
221         }
222
223         ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
224
225         if (!ret && oact) {
226                 if (copy_to_user(oact, &old_ka.sa, sizeof(*oact)))
227                         return -EFAULT;
228         }
229
230         return ret;
231 }
232
233 asmlinkage int sys_getdomainname(char __user *name, int len)
234 {
235         int nlen, err;
236         
237         if (len < 0)
238                 return -EINVAL;
239
240         down_read(&uts_sem);
241         
242         nlen = strlen(utsname()->domainname) + 1;
243         err = -EINVAL;
244         if (nlen > len)
245                 goto out;
246
247         err = -EFAULT;
248         if (!copy_to_user(name, utsname()->domainname, nlen))
249                 err = 0;
250
251 out:
252         up_read(&uts_sem);
253         return err;
254 }