Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 *  arch/arm/kernel/sys_oabi-compat.c
  3 *
  4 *  Compatibility wrappers for syscalls that are used from
  5 *  old ABI user space binaries with an EABI kernel.
  6 *
  7 *  Author:	Nicolas Pitre
  8 *  Created:	Oct 7, 2005
  9 *  Copyright:	MontaVista Software, Inc.
 10 *
 11 *  This program is free software; you can redistribute it and/or modify
 12 *  it under the terms of the GNU General Public License version 2 as
 13 *  published by the Free Software Foundation.
 14 */
 15
 16/*
 17 * The legacy ABI and the new ARM EABI have different rules making some
 18 * syscalls incompatible especially with structure arguments.
 19 * Most notably, Eabi says 64-bit members should be 64-bit aligned instead of
 20 * simply word aligned.  EABI also pads structures to the size of the largest
 21 * member it contains instead of the invariant 32-bit.
 22 *
 23 * The following syscalls are affected:
 24 *
 25 * sys_stat64:
 26 * sys_lstat64:
 27 * sys_fstat64:
 28 * sys_fstatat64:
 29 *
 30 *   struct stat64 has different sizes and some members are shifted
 31 *   Compatibility wrappers are needed for them and provided below.
 32 *
 33 * sys_fcntl64:
 34 *
 35 *   struct flock64 has different sizes and some members are shifted
 36 *   A compatibility wrapper is needed and provided below.
 37 *
 38 * sys_statfs64:
 39 * sys_fstatfs64:
 40 *
 41 *   struct statfs64 has extra padding with EABI growing its size from
 42 *   84 to 88.  This struct is now __attribute__((packed,aligned(4)))
 43 *   with a small assembly wrapper to force the sz argument to 84 if it is 88
 44 *   to avoid copying the extra padding over user space unexpecting it.
 45 *
 46 * sys_newuname:
 47 *
 48 *   struct new_utsname has no padding with EABI.  No problem there.
 49 *
 50 * sys_epoll_ctl:
 51 * sys_epoll_wait:
 52 *
 53 *   struct epoll_event has its second member shifted also affecting the
 54 *   structure size. Compatibility wrappers are needed and provided below.
 55 *
 56 * sys_ipc:
 57 * sys_semop:
 58 * sys_semtimedop:
 59 *
 60 *   struct sembuf loses its padding with EABI.  Since arrays of them are
 61 *   used they have to be copyed to remove the padding. Compatibility wrappers
 62 *   provided below.
 63 *
 64 * sys_bind:
 65 * sys_connect:
 66 * sys_sendmsg:
 67 * sys_sendto:
 68 * sys_socketcall:
 69 *
 70 *   struct sockaddr_un loses its padding with EABI.  Since the size of the
 71 *   structure is used as a validation test in unix_mkname(), we need to
 72 *   change the length argument to 110 whenever it is 112.  Compatibility
 73 *   wrappers provided below.
 74 */
 75
 76#include <linux/syscalls.h>
 77#include <linux/errno.h>
 78#include <linux/fs.h>
 
 79#include <linux/fcntl.h>
 80#include <linux/eventpoll.h>
 81#include <linux/sem.h>
 82#include <linux/socket.h>
 83#include <linux/net.h>
 84#include <linux/ipc.h>
 85#include <linux/uaccess.h>
 86#include <linux/slab.h>
 87
 88struct oldabi_stat64 {
 89	unsigned long long st_dev;
 90	unsigned int	__pad1;
 91	unsigned long	__st_ino;
 92	unsigned int	st_mode;
 93	unsigned int	st_nlink;
 94
 95	unsigned long	st_uid;
 96	unsigned long	st_gid;
 97
 98	unsigned long long st_rdev;
 99	unsigned int	__pad2;
100
101	long long	st_size;
102	unsigned long	st_blksize;
103	unsigned long long st_blocks;
104
105	unsigned long	st_atime;
106	unsigned long	st_atime_nsec;
107
108	unsigned long	st_mtime;
109	unsigned long	st_mtime_nsec;
110
111	unsigned long	st_ctime;
112	unsigned long	st_ctime_nsec;
113
114	unsigned long long st_ino;
115} __attribute__ ((packed,aligned(4)));
116
117static long cp_oldabi_stat64(struct kstat *stat,
118			     struct oldabi_stat64 __user *statbuf)
119{
120	struct oldabi_stat64 tmp;
121
122	tmp.st_dev = huge_encode_dev(stat->dev);
123	tmp.__pad1 = 0;
124	tmp.__st_ino = stat->ino;
125	tmp.st_mode = stat->mode;
126	tmp.st_nlink = stat->nlink;
127	tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
128	tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
129	tmp.st_rdev = huge_encode_dev(stat->rdev);
130	tmp.st_size = stat->size;
131	tmp.st_blocks = stat->blocks;
132	tmp.__pad2 = 0;
133	tmp.st_blksize = stat->blksize;
134	tmp.st_atime = stat->atime.tv_sec;
135	tmp.st_atime_nsec = stat->atime.tv_nsec;
136	tmp.st_mtime = stat->mtime.tv_sec;
137	tmp.st_mtime_nsec = stat->mtime.tv_nsec;
138	tmp.st_ctime = stat->ctime.tv_sec;
139	tmp.st_ctime_nsec = stat->ctime.tv_nsec;
140	tmp.st_ino = stat->ino;
141	return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
142}
143
144asmlinkage long sys_oabi_stat64(const char __user * filename,
145				struct oldabi_stat64 __user * statbuf)
146{
147	struct kstat stat;
148	int error = vfs_stat(filename, &stat);
149	if (!error)
150		error = cp_oldabi_stat64(&stat, statbuf);
151	return error;
152}
153
154asmlinkage long sys_oabi_lstat64(const char __user * filename,
155				 struct oldabi_stat64 __user * statbuf)
156{
157	struct kstat stat;
158	int error = vfs_lstat(filename, &stat);
159	if (!error)
160		error = cp_oldabi_stat64(&stat, statbuf);
161	return error;
162}
163
164asmlinkage long sys_oabi_fstat64(unsigned long fd,
165				 struct oldabi_stat64 __user * statbuf)
166{
167	struct kstat stat;
168	int error = vfs_fstat(fd, &stat);
169	if (!error)
170		error = cp_oldabi_stat64(&stat, statbuf);
171	return error;
172}
173
174asmlinkage long sys_oabi_fstatat64(int dfd,
175				   const char __user *filename,
176				   struct oldabi_stat64  __user *statbuf,
177				   int flag)
178{
179	struct kstat stat;
180	int error;
181
182	error = vfs_fstatat(dfd, filename, &stat, flag);
183	if (error)
184		return error;
185	return cp_oldabi_stat64(&stat, statbuf);
186}
187
188struct oabi_flock64 {
189	short	l_type;
190	short	l_whence;
191	loff_t	l_start;
192	loff_t	l_len;
193	pid_t	l_pid;
194} __attribute__ ((packed,aligned(4)));
195
196static long do_locks(unsigned int fd, unsigned int cmd,
197				 unsigned long arg)
198{
199	struct flock64 kernel;
200	struct oabi_flock64 user;
201	mm_segment_t fs;
202	long ret;
203
204	if (copy_from_user(&user, (struct oabi_flock64 __user *)arg,
205			   sizeof(user)))
206		return -EFAULT;
207	kernel.l_type	= user.l_type;
208	kernel.l_whence	= user.l_whence;
209	kernel.l_start	= user.l_start;
210	kernel.l_len	= user.l_len;
211	kernel.l_pid	= user.l_pid;
212
213	fs = get_fs();
214	set_fs(KERNEL_DS);
215	ret = sys_fcntl64(fd, cmd, (unsigned long)&kernel);
216	set_fs(fs);
217
218	if (!ret && (cmd == F_GETLK64 || cmd == F_OFD_GETLK)) {
219		user.l_type	= kernel.l_type;
220		user.l_whence	= kernel.l_whence;
221		user.l_start	= kernel.l_start;
222		user.l_len	= kernel.l_len;
223		user.l_pid	= kernel.l_pid;
224		if (copy_to_user((struct oabi_flock64 __user *)arg,
225				 &user, sizeof(user)))
226			ret = -EFAULT;
227	}
228	return ret;
229}
230
231asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd,
232				 unsigned long arg)
233{
234	switch (cmd) {
235	case F_OFD_GETLK:
236	case F_OFD_SETLK:
237	case F_OFD_SETLKW:
238	case F_GETLK64:
239	case F_SETLK64:
240	case F_SETLKW64:
241		return do_locks(fd, cmd, arg);
242
243	default:
244		return sys_fcntl64(fd, cmd, arg);
245	}
246}
247
248struct oabi_epoll_event {
249	__u32 events;
250	__u64 data;
251} __attribute__ ((packed,aligned(4)));
252
253asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd,
254				   struct oabi_epoll_event __user *event)
255{
256	struct oabi_epoll_event user;
257	struct epoll_event kernel;
258	mm_segment_t fs;
259	long ret;
260
261	if (op == EPOLL_CTL_DEL)
262		return sys_epoll_ctl(epfd, op, fd, NULL);
263	if (copy_from_user(&user, event, sizeof(user)))
264		return -EFAULT;
 
265	kernel.events = user.events;
266	kernel.data   = user.data;
267	fs = get_fs();
268	set_fs(KERNEL_DS);
269	ret = sys_epoll_ctl(epfd, op, fd, &kernel);
270	set_fs(fs);
271	return ret;
272}
273
274asmlinkage long sys_oabi_epoll_wait(int epfd,
275				    struct oabi_epoll_event __user *events,
276				    int maxevents, int timeout)
277{
278	struct epoll_event *kbuf;
 
279	mm_segment_t fs;
280	long ret, err, i;
281
282	if (maxevents <= 0 || maxevents > (INT_MAX/sizeof(struct epoll_event)))
 
 
283		return -EINVAL;
284	kbuf = kmalloc(sizeof(*kbuf) * maxevents, GFP_KERNEL);
 
 
285	if (!kbuf)
286		return -ENOMEM;
287	fs = get_fs();
288	set_fs(KERNEL_DS);
289	ret = sys_epoll_wait(epfd, kbuf, maxevents, timeout);
290	set_fs(fs);
291	err = 0;
292	for (i = 0; i < ret; i++) {
293		__put_user_error(kbuf[i].events, &events->events, err);
294		__put_user_error(kbuf[i].data,   &events->data,   err);
 
 
 
295		events++;
296	}
297	kfree(kbuf);
298	return err ? -EFAULT : ret;
299}
300
301struct oabi_sembuf {
302	unsigned short	sem_num;
303	short		sem_op;
304	short		sem_flg;
305	unsigned short	__pad;
306};
307
308asmlinkage long sys_oabi_semtimedop(int semid,
309				    struct oabi_sembuf __user *tsops,
310				    unsigned nsops,
311				    const struct timespec __user *timeout)
312{
313	struct sembuf *sops;
314	struct timespec local_timeout;
315	long err;
316	int i;
317
318	if (nsops < 1 || nsops > SEMOPM)
319		return -EINVAL;
320	sops = kmalloc(sizeof(*sops) * nsops, GFP_KERNEL);
 
 
321	if (!sops)
322		return -ENOMEM;
323	err = 0;
324	for (i = 0; i < nsops; i++) {
325		__get_user_error(sops[i].sem_num, &tsops->sem_num, err);
326		__get_user_error(sops[i].sem_op,  &tsops->sem_op,  err);
327		__get_user_error(sops[i].sem_flg, &tsops->sem_flg, err);
 
 
328		tsops++;
329	}
330	if (timeout) {
331		/* copy this as well before changing domain protection */
332		err |= copy_from_user(&local_timeout, timeout, sizeof(*timeout));
333		timeout = &local_timeout;
334	}
335	if (err) {
336		err = -EFAULT;
337	} else {
338		mm_segment_t fs = get_fs();
339		set_fs(KERNEL_DS);
340		err = sys_semtimedop(semid, sops, nsops, timeout);
341		set_fs(fs);
342	}
343	kfree(sops);
344	return err;
345}
346
347asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
348			       unsigned nsops)
349{
350	return sys_oabi_semtimedop(semid, tsops, nsops, NULL);
351}
352
353asmlinkage int sys_oabi_ipc(uint call, int first, int second, int third,
354			    void __user *ptr, long fifth)
355{
356	switch (call & 0xffff) {
357	case SEMOP:
358		return  sys_oabi_semtimedop(first,
359					    (struct oabi_sembuf __user *)ptr,
360					    second, NULL);
361	case SEMTIMEDOP:
362		return  sys_oabi_semtimedop(first,
363					    (struct oabi_sembuf __user *)ptr,
364					    second,
365					    (const struct timespec __user *)fifth);
366	default:
367		return sys_ipc(call, first, second, third, ptr, fifth);
368	}
369}
370
371asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen)
372{
373	sa_family_t sa_family;
374	if (addrlen == 112 &&
375	    get_user(sa_family, &addr->sa_family) == 0 &&
376	    sa_family == AF_UNIX)
377			addrlen = 110;
378	return sys_bind(fd, addr, addrlen);
379}
380
381asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen)
382{
383	sa_family_t sa_family;
384	if (addrlen == 112 &&
385	    get_user(sa_family, &addr->sa_family) == 0 &&
386	    sa_family == AF_UNIX)
387			addrlen = 110;
388	return sys_connect(fd, addr, addrlen);
389}
390
391asmlinkage long sys_oabi_sendto(int fd, void __user *buff,
392				size_t len, unsigned flags,
393				struct sockaddr __user *addr,
394				int addrlen)
395{
396	sa_family_t sa_family;
397	if (addrlen == 112 &&
398	    get_user(sa_family, &addr->sa_family) == 0 &&
399	    sa_family == AF_UNIX)
400			addrlen = 110;
401	return sys_sendto(fd, buff, len, flags, addr, addrlen);
402}
403
404asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags)
405{
406	struct sockaddr __user *addr;
407	int msg_namelen;
408	sa_family_t sa_family;
409	if (msg &&
410	    get_user(msg_namelen, &msg->msg_namelen) == 0 &&
411	    msg_namelen == 112 &&
412	    get_user(addr, &msg->msg_name) == 0 &&
413	    get_user(sa_family, &addr->sa_family) == 0 &&
414	    sa_family == AF_UNIX)
415	{
416		/*
417		 * HACK ALERT: there is a limit to how much backward bending
418		 * we should do for what is actually a transitional
419		 * compatibility layer.  This already has known flaws with
420		 * a few ioctls that we don't intend to fix.  Therefore
421		 * consider this blatent hack as another one... and take care
422		 * to run for cover.  In most cases it will "just work fine".
423		 * If it doesn't, well, tough.
424		 */
425		put_user(110, &msg->msg_namelen);
426	}
427	return sys_sendmsg(fd, msg, flags);
428}
429
430asmlinkage long sys_oabi_socketcall(int call, unsigned long __user *args)
431{
432	unsigned long r = -EFAULT, a[6];
433
434	switch (call) {
435	case SYS_BIND:
436		if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
437			r = sys_oabi_bind(a[0], (struct sockaddr __user *)a[1], a[2]);
438		break;
439	case SYS_CONNECT:
440		if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
441			r = sys_oabi_connect(a[0], (struct sockaddr __user *)a[1], a[2]);
442		break;
443	case SYS_SENDTO:
444		if (copy_from_user(a, args, 6 * sizeof(long)) == 0)
445			r = sys_oabi_sendto(a[0], (void __user *)a[1], a[2], a[3],
446					    (struct sockaddr __user *)a[4], a[5]);
447		break;
448	case SYS_SENDMSG:
449		if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
450			r = sys_oabi_sendmsg(a[0], (struct user_msghdr __user *)a[1], a[2]);
451		break;
452	default:
453		r = sys_socketcall(call, args);
454	}
455
456	return r;
457}
v5.9
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 *  arch/arm/kernel/sys_oabi-compat.c
  4 *
  5 *  Compatibility wrappers for syscalls that are used from
  6 *  old ABI user space binaries with an EABI kernel.
  7 *
  8 *  Author:	Nicolas Pitre
  9 *  Created:	Oct 7, 2005
 10 *  Copyright:	MontaVista Software, Inc.
 
 
 
 
 11 */
 12
 13/*
 14 * The legacy ABI and the new ARM EABI have different rules making some
 15 * syscalls incompatible especially with structure arguments.
 16 * Most notably, Eabi says 64-bit members should be 64-bit aligned instead of
 17 * simply word aligned.  EABI also pads structures to the size of the largest
 18 * member it contains instead of the invariant 32-bit.
 19 *
 20 * The following syscalls are affected:
 21 *
 22 * sys_stat64:
 23 * sys_lstat64:
 24 * sys_fstat64:
 25 * sys_fstatat64:
 26 *
 27 *   struct stat64 has different sizes and some members are shifted
 28 *   Compatibility wrappers are needed for them and provided below.
 29 *
 30 * sys_fcntl64:
 31 *
 32 *   struct flock64 has different sizes and some members are shifted
 33 *   A compatibility wrapper is needed and provided below.
 34 *
 35 * sys_statfs64:
 36 * sys_fstatfs64:
 37 *
 38 *   struct statfs64 has extra padding with EABI growing its size from
 39 *   84 to 88.  This struct is now __attribute__((packed,aligned(4)))
 40 *   with a small assembly wrapper to force the sz argument to 84 if it is 88
 41 *   to avoid copying the extra padding over user space unexpecting it.
 42 *
 43 * sys_newuname:
 44 *
 45 *   struct new_utsname has no padding with EABI.  No problem there.
 46 *
 47 * sys_epoll_ctl:
 48 * sys_epoll_wait:
 49 *
 50 *   struct epoll_event has its second member shifted also affecting the
 51 *   structure size. Compatibility wrappers are needed and provided below.
 52 *
 53 * sys_ipc:
 54 * sys_semop:
 55 * sys_semtimedop:
 56 *
 57 *   struct sembuf loses its padding with EABI.  Since arrays of them are
 58 *   used they have to be copyed to remove the padding. Compatibility wrappers
 59 *   provided below.
 60 *
 61 * sys_bind:
 62 * sys_connect:
 63 * sys_sendmsg:
 64 * sys_sendto:
 65 * sys_socketcall:
 66 *
 67 *   struct sockaddr_un loses its padding with EABI.  Since the size of the
 68 *   structure is used as a validation test in unix_mkname(), we need to
 69 *   change the length argument to 110 whenever it is 112.  Compatibility
 70 *   wrappers provided below.
 71 */
 72
 73#include <linux/syscalls.h>
 74#include <linux/errno.h>
 75#include <linux/fs.h>
 76#include <linux/cred.h>
 77#include <linux/fcntl.h>
 78#include <linux/eventpoll.h>
 79#include <linux/sem.h>
 80#include <linux/socket.h>
 81#include <linux/net.h>
 82#include <linux/ipc.h>
 83#include <linux/uaccess.h>
 84#include <linux/slab.h>
 85
 86struct oldabi_stat64 {
 87	unsigned long long st_dev;
 88	unsigned int	__pad1;
 89	unsigned long	__st_ino;
 90	unsigned int	st_mode;
 91	unsigned int	st_nlink;
 92
 93	unsigned long	st_uid;
 94	unsigned long	st_gid;
 95
 96	unsigned long long st_rdev;
 97	unsigned int	__pad2;
 98
 99	long long	st_size;
100	unsigned long	st_blksize;
101	unsigned long long st_blocks;
102
103	unsigned long	st_atime;
104	unsigned long	st_atime_nsec;
105
106	unsigned long	st_mtime;
107	unsigned long	st_mtime_nsec;
108
109	unsigned long	st_ctime;
110	unsigned long	st_ctime_nsec;
111
112	unsigned long long st_ino;
113} __attribute__ ((packed,aligned(4)));
114
115static long cp_oldabi_stat64(struct kstat *stat,
116			     struct oldabi_stat64 __user *statbuf)
117{
118	struct oldabi_stat64 tmp;
119
120	tmp.st_dev = huge_encode_dev(stat->dev);
121	tmp.__pad1 = 0;
122	tmp.__st_ino = stat->ino;
123	tmp.st_mode = stat->mode;
124	tmp.st_nlink = stat->nlink;
125	tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
126	tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
127	tmp.st_rdev = huge_encode_dev(stat->rdev);
128	tmp.st_size = stat->size;
129	tmp.st_blocks = stat->blocks;
130	tmp.__pad2 = 0;
131	tmp.st_blksize = stat->blksize;
132	tmp.st_atime = stat->atime.tv_sec;
133	tmp.st_atime_nsec = stat->atime.tv_nsec;
134	tmp.st_mtime = stat->mtime.tv_sec;
135	tmp.st_mtime_nsec = stat->mtime.tv_nsec;
136	tmp.st_ctime = stat->ctime.tv_sec;
137	tmp.st_ctime_nsec = stat->ctime.tv_nsec;
138	tmp.st_ino = stat->ino;
139	return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
140}
141
142asmlinkage long sys_oabi_stat64(const char __user * filename,
143				struct oldabi_stat64 __user * statbuf)
144{
145	struct kstat stat;
146	int error = vfs_stat(filename, &stat);
147	if (!error)
148		error = cp_oldabi_stat64(&stat, statbuf);
149	return error;
150}
151
152asmlinkage long sys_oabi_lstat64(const char __user * filename,
153				 struct oldabi_stat64 __user * statbuf)
154{
155	struct kstat stat;
156	int error = vfs_lstat(filename, &stat);
157	if (!error)
158		error = cp_oldabi_stat64(&stat, statbuf);
159	return error;
160}
161
162asmlinkage long sys_oabi_fstat64(unsigned long fd,
163				 struct oldabi_stat64 __user * statbuf)
164{
165	struct kstat stat;
166	int error = vfs_fstat(fd, &stat);
167	if (!error)
168		error = cp_oldabi_stat64(&stat, statbuf);
169	return error;
170}
171
172asmlinkage long sys_oabi_fstatat64(int dfd,
173				   const char __user *filename,
174				   struct oldabi_stat64  __user *statbuf,
175				   int flag)
176{
177	struct kstat stat;
178	int error;
179
180	error = vfs_fstatat(dfd, filename, &stat, flag);
181	if (error)
182		return error;
183	return cp_oldabi_stat64(&stat, statbuf);
184}
185
186struct oabi_flock64 {
187	short	l_type;
188	short	l_whence;
189	loff_t	l_start;
190	loff_t	l_len;
191	pid_t	l_pid;
192} __attribute__ ((packed,aligned(4)));
193
194static long do_locks(unsigned int fd, unsigned int cmd,
195				 unsigned long arg)
196{
197	struct flock64 kernel;
198	struct oabi_flock64 user;
199	mm_segment_t fs;
200	long ret;
201
202	if (copy_from_user(&user, (struct oabi_flock64 __user *)arg,
203			   sizeof(user)))
204		return -EFAULT;
205	kernel.l_type	= user.l_type;
206	kernel.l_whence	= user.l_whence;
207	kernel.l_start	= user.l_start;
208	kernel.l_len	= user.l_len;
209	kernel.l_pid	= user.l_pid;
210
211	fs = get_fs();
212	set_fs(KERNEL_DS);
213	ret = sys_fcntl64(fd, cmd, (unsigned long)&kernel);
214	set_fs(fs);
215
216	if (!ret && (cmd == F_GETLK64 || cmd == F_OFD_GETLK)) {
217		user.l_type	= kernel.l_type;
218		user.l_whence	= kernel.l_whence;
219		user.l_start	= kernel.l_start;
220		user.l_len	= kernel.l_len;
221		user.l_pid	= kernel.l_pid;
222		if (copy_to_user((struct oabi_flock64 __user *)arg,
223				 &user, sizeof(user)))
224			ret = -EFAULT;
225	}
226	return ret;
227}
228
229asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd,
230				 unsigned long arg)
231{
232	switch (cmd) {
233	case F_OFD_GETLK:
234	case F_OFD_SETLK:
235	case F_OFD_SETLKW:
236	case F_GETLK64:
237	case F_SETLK64:
238	case F_SETLKW64:
239		return do_locks(fd, cmd, arg);
240
241	default:
242		return sys_fcntl64(fd, cmd, arg);
243	}
244}
245
246struct oabi_epoll_event {
247	__u32 events;
248	__u64 data;
249} __attribute__ ((packed,aligned(4)));
250
251asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd,
252				   struct oabi_epoll_event __user *event)
253{
254	struct oabi_epoll_event user;
255	struct epoll_event kernel;
 
 
256
257	if (ep_op_has_event(op) &&
258	    copy_from_user(&user, event, sizeof(user)))
 
259		return -EFAULT;
260
261	kernel.events = user.events;
262	kernel.data   = user.data;
263
264	return do_epoll_ctl(epfd, op, fd, &kernel, false);
 
 
 
265}
266
267asmlinkage long sys_oabi_epoll_wait(int epfd,
268				    struct oabi_epoll_event __user *events,
269				    int maxevents, int timeout)
270{
271	struct epoll_event *kbuf;
272	struct oabi_epoll_event e;
273	mm_segment_t fs;
274	long ret, err, i;
275
276	if (maxevents <= 0 ||
277			maxevents > (INT_MAX/sizeof(*kbuf)) ||
278			maxevents > (INT_MAX/sizeof(*events)))
279		return -EINVAL;
280	if (!access_ok(events, sizeof(*events) * maxevents))
281		return -EFAULT;
282	kbuf = kmalloc_array(maxevents, sizeof(*kbuf), GFP_KERNEL);
283	if (!kbuf)
284		return -ENOMEM;
285	fs = get_fs();
286	set_fs(KERNEL_DS);
287	ret = sys_epoll_wait(epfd, kbuf, maxevents, timeout);
288	set_fs(fs);
289	err = 0;
290	for (i = 0; i < ret; i++) {
291		e.events = kbuf[i].events;
292		e.data = kbuf[i].data;
293		err = __copy_to_user(events, &e, sizeof(e));
294		if (err)
295			break;
296		events++;
297	}
298	kfree(kbuf);
299	return err ? -EFAULT : ret;
300}
301
302struct oabi_sembuf {
303	unsigned short	sem_num;
304	short		sem_op;
305	short		sem_flg;
306	unsigned short	__pad;
307};
308
309asmlinkage long sys_oabi_semtimedop(int semid,
310				    struct oabi_sembuf __user *tsops,
311				    unsigned nsops,
312				    const struct old_timespec32 __user *timeout)
313{
314	struct sembuf *sops;
315	struct old_timespec32 local_timeout;
316	long err;
317	int i;
318
319	if (nsops < 1 || nsops > SEMOPM)
320		return -EINVAL;
321	if (!access_ok(tsops, sizeof(*tsops) * nsops))
322		return -EFAULT;
323	sops = kmalloc_array(nsops, sizeof(*sops), GFP_KERNEL);
324	if (!sops)
325		return -ENOMEM;
326	err = 0;
327	for (i = 0; i < nsops; i++) {
328		struct oabi_sembuf osb;
329		err |= __copy_from_user(&osb, tsops, sizeof(osb));
330		sops[i].sem_num = osb.sem_num;
331		sops[i].sem_op = osb.sem_op;
332		sops[i].sem_flg = osb.sem_flg;
333		tsops++;
334	}
335	if (timeout) {
336		/* copy this as well before changing domain protection */
337		err |= copy_from_user(&local_timeout, timeout, sizeof(*timeout));
338		timeout = &local_timeout;
339	}
340	if (err) {
341		err = -EFAULT;
342	} else {
343		mm_segment_t fs = get_fs();
344		set_fs(KERNEL_DS);
345		err = sys_semtimedop_time32(semid, sops, nsops, timeout);
346		set_fs(fs);
347	}
348	kfree(sops);
349	return err;
350}
351
352asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
353			       unsigned nsops)
354{
355	return sys_oabi_semtimedop(semid, tsops, nsops, NULL);
356}
357
358asmlinkage int sys_oabi_ipc(uint call, int first, int second, int third,
359			    void __user *ptr, long fifth)
360{
361	switch (call & 0xffff) {
362	case SEMOP:
363		return  sys_oabi_semtimedop(first,
364					    (struct oabi_sembuf __user *)ptr,
365					    second, NULL);
366	case SEMTIMEDOP:
367		return  sys_oabi_semtimedop(first,
368					    (struct oabi_sembuf __user *)ptr,
369					    second,
370					    (const struct old_timespec32 __user *)fifth);
371	default:
372		return sys_ipc(call, first, second, third, ptr, fifth);
373	}
374}
375
376asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen)
377{
378	sa_family_t sa_family;
379	if (addrlen == 112 &&
380	    get_user(sa_family, &addr->sa_family) == 0 &&
381	    sa_family == AF_UNIX)
382			addrlen = 110;
383	return sys_bind(fd, addr, addrlen);
384}
385
386asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen)
387{
388	sa_family_t sa_family;
389	if (addrlen == 112 &&
390	    get_user(sa_family, &addr->sa_family) == 0 &&
391	    sa_family == AF_UNIX)
392			addrlen = 110;
393	return sys_connect(fd, addr, addrlen);
394}
395
396asmlinkage long sys_oabi_sendto(int fd, void __user *buff,
397				size_t len, unsigned flags,
398				struct sockaddr __user *addr,
399				int addrlen)
400{
401	sa_family_t sa_family;
402	if (addrlen == 112 &&
403	    get_user(sa_family, &addr->sa_family) == 0 &&
404	    sa_family == AF_UNIX)
405			addrlen = 110;
406	return sys_sendto(fd, buff, len, flags, addr, addrlen);
407}
408
409asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags)
410{
411	struct sockaddr __user *addr;
412	int msg_namelen;
413	sa_family_t sa_family;
414	if (msg &&
415	    get_user(msg_namelen, &msg->msg_namelen) == 0 &&
416	    msg_namelen == 112 &&
417	    get_user(addr, &msg->msg_name) == 0 &&
418	    get_user(sa_family, &addr->sa_family) == 0 &&
419	    sa_family == AF_UNIX)
420	{
421		/*
422		 * HACK ALERT: there is a limit to how much backward bending
423		 * we should do for what is actually a transitional
424		 * compatibility layer.  This already has known flaws with
425		 * a few ioctls that we don't intend to fix.  Therefore
426		 * consider this blatent hack as another one... and take care
427		 * to run for cover.  In most cases it will "just work fine".
428		 * If it doesn't, well, tough.
429		 */
430		put_user(110, &msg->msg_namelen);
431	}
432	return sys_sendmsg(fd, msg, flags);
433}
434
435asmlinkage long sys_oabi_socketcall(int call, unsigned long __user *args)
436{
437	unsigned long r = -EFAULT, a[6];
438
439	switch (call) {
440	case SYS_BIND:
441		if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
442			r = sys_oabi_bind(a[0], (struct sockaddr __user *)a[1], a[2]);
443		break;
444	case SYS_CONNECT:
445		if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
446			r = sys_oabi_connect(a[0], (struct sockaddr __user *)a[1], a[2]);
447		break;
448	case SYS_SENDTO:
449		if (copy_from_user(a, args, 6 * sizeof(long)) == 0)
450			r = sys_oabi_sendto(a[0], (void __user *)a[1], a[2], a[3],
451					    (struct sockaddr __user *)a[4], a[5]);
452		break;
453	case SYS_SENDMSG:
454		if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
455			r = sys_oabi_sendmsg(a[0], (struct user_msghdr __user *)a[1], a[2]);
456		break;
457	default:
458		r = sys_socketcall(call, args);
459	}
460
461	return r;
462}