blob: 71368850dfc03b05257bf38db7c17f3b4bd0f6ec [file] [log] [blame]
David S. Millerbc5a2e62007-07-18 14:28:59 -07001/* sys_sparc32.c: Conversion between 32bit and 64bit native syscalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
David S. Millerbc5a2e62007-07-18 14:28:59 -07004 * Copyright (C) 1997, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * These routines maintain argument size conversion between 32bit and 64bit
7 * environment.
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
11#include <linux/sched.h>
Randy Dunlapa9415642006-01-11 12:17:48 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/fs.h>
14#include <linux/mm.h>
15#include <linux/file.h>
16#include <linux/signal.h>
17#include <linux/resource.h>
18#include <linux/times.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/sem.h>
21#include <linux/msg.h>
22#include <linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/uio.h>
24#include <linux/nfs_fs.h>
25#include <linux/quota.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/poll.h>
27#include <linux/personality.h>
28#include <linux/stat.h>
29#include <linux/filter.h>
30#include <linux/highmem.h>
31#include <linux/highuid.h>
32#include <linux/mman.h>
33#include <linux/ipv6.h>
34#include <linux/in.h>
35#include <linux/icmpv6.h>
36#include <linux/syscalls.h>
37#include <linux/sysctl.h>
38#include <linux/binfmts.h>
39#include <linux/dnotify.h>
40#include <linux/security.h>
41#include <linux/compat.h>
42#include <linux/vfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/ptrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/uaccess.h>
48#include <asm/fpumacro.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/mmu_context.h>
David S. Miller14cc6ab2006-10-02 14:17:57 -070050#include <asm/compat_signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
53{
54 if ((int)high < 0)
55 return -EINVAL;
56 else
57 return sys_truncate(path, (high << 32) | low);
58}
59
60asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
61{
62 if ((int)high < 0)
63 return -EINVAL;
64 else
65 return sys_ftruncate(fd, (high << 32) | low);
66}
67
Adrian Bunk908f5162008-06-05 11:42:40 -070068static int cp_compat_stat64(struct kstat *stat,
69 struct compat_stat64 __user *statbuf)
David S. Miller0ba4da02005-04-18 15:13:15 -070070{
71 int err;
72
73 err = put_user(huge_encode_dev(stat->dev), &statbuf->st_dev);
74 err |= put_user(stat->ino, &statbuf->st_ino);
75 err |= put_user(stat->mode, &statbuf->st_mode);
76 err |= put_user(stat->nlink, &statbuf->st_nlink);
Eric W. Biedermana7c19382012-02-09 09:10:30 -080077 err |= put_user(from_kuid_munged(current_user_ns(), stat->uid), &statbuf->st_uid);
78 err |= put_user(from_kgid_munged(current_user_ns(), stat->gid), &statbuf->st_gid);
David S. Miller0ba4da02005-04-18 15:13:15 -070079 err |= put_user(huge_encode_dev(stat->rdev), &statbuf->st_rdev);
80 err |= put_user(0, (unsigned long __user *) &statbuf->__pad3[0]);
81 err |= put_user(stat->size, &statbuf->st_size);
82 err |= put_user(stat->blksize, &statbuf->st_blksize);
83 err |= put_user(0, (unsigned int __user *) &statbuf->__pad4[0]);
84 err |= put_user(0, (unsigned int __user *) &statbuf->__pad4[4]);
85 err |= put_user(stat->blocks, &statbuf->st_blocks);
86 err |= put_user(stat->atime.tv_sec, &statbuf->st_atime);
87 err |= put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec);
88 err |= put_user(stat->mtime.tv_sec, &statbuf->st_mtime);
89 err |= put_user(stat->mtime.tv_nsec, &statbuf->st_mtime_nsec);
90 err |= put_user(stat->ctime.tv_sec, &statbuf->st_ctime);
91 err |= put_user(stat->ctime.tv_nsec, &statbuf->st_ctime_nsec);
92 err |= put_user(0, &statbuf->__unused4);
93 err |= put_user(0, &statbuf->__unused5);
94
95 return err;
96}
97
David Howellsc7887322010-08-11 11:26:22 +010098asmlinkage long compat_sys_stat64(const char __user * filename,
David S. Miller0ba4da02005-04-18 15:13:15 -070099 struct compat_stat64 __user *statbuf)
100{
101 struct kstat stat;
102 int error = vfs_stat(filename, &stat);
103
104 if (!error)
105 error = cp_compat_stat64(&stat, statbuf);
106 return error;
107}
108
David Howellsc7887322010-08-11 11:26:22 +0100109asmlinkage long compat_sys_lstat64(const char __user * filename,
David S. Miller0ba4da02005-04-18 15:13:15 -0700110 struct compat_stat64 __user *statbuf)
111{
112 struct kstat stat;
113 int error = vfs_lstat(filename, &stat);
114
115 if (!error)
116 error = cp_compat_stat64(&stat, statbuf);
117 return error;
118}
119
120asmlinkage long compat_sys_fstat64(unsigned int fd,
121 struct compat_stat64 __user * statbuf)
122{
123 struct kstat stat;
124 int error = vfs_fstat(fd, &stat);
125
126 if (!error)
127 error = cp_compat_stat64(&stat, statbuf);
128 return error;
129}
130
David Howellsc7887322010-08-11 11:26:22 +0100131asmlinkage long compat_sys_fstatat64(unsigned int dfd,
132 const char __user *filename,
David S. Miller40ad7a62006-02-12 23:30:11 -0800133 struct compat_stat64 __user * statbuf, int flag)
134{
135 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400136 int error;
David S. Miller40ad7a62006-02-12 23:30:11 -0800137
Oleg Drokin0112fc22009-04-08 20:05:42 +0400138 error = vfs_fstatat(dfd, filename, &stat, flag);
139 if (error)
140 return error;
141 return cp_compat_stat64(&stat, statbuf);
David S. Miller40ad7a62006-02-12 23:30:11 -0800142}
143
Al Viroa274bd42012-12-25 19:18:40 -0500144COMPAT_SYSCALL_DEFINE3(sparc_sigaction, int, sig,
145 struct compat_old_sigaction __user *,act,
146 struct compat_old_sigaction __user *,oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
David S. Miller5526b7e2008-04-27 02:26:36 -0700148 WARN_ON_ONCE(sig >= 0);
Al Viroa274bd42012-12-25 19:18:40 -0500149 return compat_sys_sigaction(-sig, act, oact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Al Virobdc40ab2012-12-25 18:45:43 -0500152COMPAT_SYSCALL_DEFINE5(rt_sigaction, int, sig,
153 struct compat_sigaction __user *,act,
154 struct compat_sigaction __user *,oact,
155 void __user *,restorer,
156 compat_size_t,sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 struct k_sigaction new_ka, old_ka;
159 int ret;
160 compat_sigset_t set32;
161
162 /* XXX: Don't preclude handling different sized sigset_t's. */
163 if (sigsetsize != sizeof(compat_sigset_t))
164 return -EINVAL;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (act) {
167 u32 u_handler, u_restorer;
168
169 new_ka.ka_restorer = restorer;
170 ret = get_user(u_handler, &act->sa_handler);
171 new_ka.sa.sa_handler = compat_ptr(u_handler);
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -0700172 ret |= copy_from_user(&set32, &act->sa_mask, sizeof(compat_sigset_t));
Al Virobdc40ab2012-12-25 18:45:43 -0500173 sigset_from_compat(&new_ka.sa.sa_mask, &set32);
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -0700174 ret |= get_user(new_ka.sa.sa_flags, &act->sa_flags);
175 ret |= get_user(u_restorer, &act->sa_restorer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 new_ka.sa.sa_restorer = compat_ptr(u_restorer);
177 if (ret)
178 return -EFAULT;
179 }
180
181 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
182
183 if (!ret && oact) {
Al Virobdc40ab2012-12-25 18:45:43 -0500184 sigset_to_compat(&set32, &old_ka.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ret = put_user(ptr_to_compat(old_ka.sa.sa_handler), &oact->sa_handler);
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -0700186 ret |= copy_to_user(&oact->sa_mask, &set32, sizeof(compat_sigset_t));
187 ret |= put_user(old_ka.sa.sa_flags, &oact->sa_flags);
188 ret |= put_user(ptr_to_compat(old_ka.sa.sa_restorer), &oact->sa_restorer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (ret)
190 ret = -EFAULT;
191 }
192
193 return ret;
194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196asmlinkage compat_ssize_t sys32_pread64(unsigned int fd,
197 char __user *ubuf,
198 compat_size_t count,
199 unsigned long poshi,
200 unsigned long poslo)
201{
202 return sys_pread64(fd, ubuf, count, (poshi << 32) | poslo);
203}
204
205asmlinkage compat_ssize_t sys32_pwrite64(unsigned int fd,
206 char __user *ubuf,
207 compat_size_t count,
208 unsigned long poshi,
209 unsigned long poslo)
210{
211 return sys_pwrite64(fd, ubuf, count, (poshi << 32) | poslo);
212}
213
214asmlinkage long compat_sys_readahead(int fd,
215 unsigned long offhi,
216 unsigned long offlo,
217 compat_size_t count)
218{
219 return sys_readahead(fd, (offhi << 32) | offlo, count);
220}
221
222long compat_sys_fadvise64(int fd,
223 unsigned long offhi,
224 unsigned long offlo,
225 compat_size_t len, int advice)
226{
227 return sys_fadvise64_64(fd, (offhi << 32) | offlo, len, advice);
228}
229
230long compat_sys_fadvise64_64(int fd,
231 unsigned long offhi, unsigned long offlo,
232 unsigned long lenhi, unsigned long lenlo,
233 int advice)
234{
235 return sys_fadvise64_64(fd,
236 (offhi << 32) | offlo,
237 (lenhi << 32) | lenlo,
238 advice);
239}
240
Al Viro2ae80c42013-03-02 10:38:22 -0500241long sys32_sync_file_range(unsigned int fd, unsigned long off_high, unsigned long off_low, unsigned long nb_high, unsigned long nb_low, unsigned int flags)
David S. Miller289eee62006-03-31 23:49:34 -0800242{
243 return sys_sync_file_range(fd,
244 (off_high << 32) | off_low,
245 (nb_high << 32) | nb_low,
246 flags);
247}
David S. Millerbc5a2e62007-07-18 14:28:59 -0700248
249asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo,
250 u32 lenhi, u32 lenlo)
251{
252 return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
253 ((loff_t)lenhi << 32) | lenlo);
254}