1 // SPDX-License-Identifier: GPL-2.0-only
3 * arch/arm/kernel/sys_oabi-compat.c
5 * Compatibility wrappers for syscalls that are used from
6 * old ABI user space binaries with an EABI kernel.
8 * Author: Nicolas Pitre
10 * Copyright: MontaVista Software, Inc.
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.
20 * The following syscalls are affected:
27 * struct stat64 has different sizes and some members are shifted
28 * Compatibility wrappers are needed for them and provided below.
32 * struct flock64 has different sizes and some members are shifted
33 * A compatibility wrapper is needed and provided below.
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.
45 * struct new_utsname has no padding with EABI. No problem there.
50 * struct epoll_event has its second member shifted also affecting the
51 * structure size. Compatibility wrappers are needed and provided below.
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
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.
73 #include <linux/syscalls.h>
74 #include <linux/errno.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/ipc_namespace.h>
84 #include <linux/uaccess.h>
85 #include <linux/slab.h>
87 #include <asm/syscall.h>
89 struct oldabi_stat64 {
90 unsigned long long st_dev;
92 unsigned long __st_ino;
94 unsigned int st_nlink;
99 unsigned long long st_rdev;
103 unsigned long st_blksize;
104 unsigned long long st_blocks;
106 unsigned long st_atime;
107 unsigned long st_atime_nsec;
109 unsigned long st_mtime;
110 unsigned long st_mtime_nsec;
112 unsigned long st_ctime;
113 unsigned long st_ctime_nsec;
115 unsigned long long st_ino;
116 } __attribute__ ((packed,aligned(4)));
118 static long cp_oldabi_stat64(struct kstat *stat,
119 struct oldabi_stat64 __user *statbuf)
121 struct oldabi_stat64 tmp;
123 tmp.st_dev = huge_encode_dev(stat->dev);
125 tmp.__st_ino = stat->ino;
126 tmp.st_mode = stat->mode;
127 tmp.st_nlink = stat->nlink;
128 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
129 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
130 tmp.st_rdev = huge_encode_dev(stat->rdev);
131 tmp.st_size = stat->size;
132 tmp.st_blocks = stat->blocks;
134 tmp.st_blksize = stat->blksize;
135 tmp.st_atime = stat->atime.tv_sec;
136 tmp.st_atime_nsec = stat->atime.tv_nsec;
137 tmp.st_mtime = stat->mtime.tv_sec;
138 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
139 tmp.st_ctime = stat->ctime.tv_sec;
140 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
141 tmp.st_ino = stat->ino;
142 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
145 asmlinkage long sys_oabi_stat64(const char __user * filename,
146 struct oldabi_stat64 __user * statbuf)
149 int error = vfs_stat(filename, &stat);
151 error = cp_oldabi_stat64(&stat, statbuf);
155 asmlinkage long sys_oabi_lstat64(const char __user * filename,
156 struct oldabi_stat64 __user * statbuf)
159 int error = vfs_lstat(filename, &stat);
161 error = cp_oldabi_stat64(&stat, statbuf);
165 asmlinkage long sys_oabi_fstat64(unsigned long fd,
166 struct oldabi_stat64 __user * statbuf)
169 int error = vfs_fstat(fd, &stat);
171 error = cp_oldabi_stat64(&stat, statbuf);
175 asmlinkage long sys_oabi_fstatat64(int dfd,
176 const char __user *filename,
177 struct oldabi_stat64 __user *statbuf,
183 error = vfs_fstatat(dfd, filename, &stat, flag);
186 return cp_oldabi_stat64(&stat, statbuf);
189 struct oabi_flock64 {
195 } __attribute__ ((packed,aligned(4)));
197 static int get_oabi_flock(struct flock64 *kernel, struct oabi_flock64 __user *arg)
199 struct oabi_flock64 user;
201 if (copy_from_user(&user, (struct oabi_flock64 __user *)arg,
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;
214 static int put_oabi_flock(struct flock64 *kernel, struct oabi_flock64 __user *arg)
216 struct oabi_flock64 user;
218 user.l_type = kernel->l_type;
219 user.l_whence = kernel->l_whence;
220 user.l_start = kernel->l_start;
221 user.l_len = kernel->l_len;
222 user.l_pid = kernel->l_pid;
224 if (copy_to_user((struct oabi_flock64 __user *)arg,
225 &user, sizeof(user)))
231 asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd,
234 void __user *argp = (void __user *)arg;
235 struct fd f = fdget_raw(fd);
236 struct flock64 flock;
245 err = security_file_fcntl(f.file, cmd, arg);
248 err = get_oabi_flock(&flock, argp);
251 err = fcntl_getlk64(f.file, cmd, &flock);
253 err = put_oabi_flock(&flock, argp);
259 err = security_file_fcntl(f.file, cmd, arg);
262 err = get_oabi_flock(&flock, argp);
265 err = fcntl_setlk64(fd, f.file, cmd, &flock);
268 err = sys_fcntl64(fd, cmd, arg);
276 struct oabi_epoll_event {
279 } __attribute__ ((packed,aligned(4)));
282 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd,
283 struct oabi_epoll_event __user *event)
285 struct oabi_epoll_event user;
286 struct epoll_event kernel;
288 if (ep_op_has_event(op) &&
289 copy_from_user(&user, event, sizeof(user)))
292 kernel.events = user.events;
293 kernel.data = user.data;
295 return do_epoll_ctl(epfd, op, fd, &kernel, false);
298 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd,
299 struct oabi_epoll_event __user *event)
305 struct epoll_event __user *
306 epoll_put_uevent(__poll_t revents, __u64 data,
307 struct epoll_event __user *uevent)
309 if (in_oabi_syscall()) {
310 struct oabi_epoll_event __user *oevent = (void __user *)uevent;
312 if (__put_user(revents, &oevent->events) ||
313 __put_user(data, &oevent->data))
316 return (void __user *)(oevent+1);
319 if (__put_user(revents, &uevent->events) ||
320 __put_user(data, &uevent->data))
327 unsigned short sem_num;
330 unsigned short __pad;
333 #define sc_semopm sem_ctls[2]
335 #ifdef CONFIG_SYSVIPC
336 asmlinkage long sys_oabi_semtimedop(int semid,
337 struct oabi_sembuf __user *tsops,
339 const struct old_timespec32 __user *timeout)
341 struct ipc_namespace *ns;
346 ns = current->nsproxy->ipc_ns;
347 if (nsops > ns->sc_semopm)
349 if (nsops < 1 || nsops > SEMOPM)
351 sops = kvmalloc_array(nsops, sizeof(*sops), GFP_KERNEL);
355 for (i = 0; i < nsops; i++) {
356 struct oabi_sembuf osb;
357 err |= copy_from_user(&osb, tsops, sizeof(osb));
358 sops[i].sem_num = osb.sem_num;
359 sops[i].sem_op = osb.sem_op;
360 sops[i].sem_flg = osb.sem_flg;
369 struct timespec64 ts;
370 err = get_old_timespec32(&ts, timeout);
373 err = __do_semtimedop(semid, sops, nsops, &ts, ns);
376 err = __do_semtimedop(semid, sops, nsops, NULL, ns);
382 asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
385 return sys_oabi_semtimedop(semid, tsops, nsops, NULL);
388 asmlinkage int sys_oabi_ipc(uint call, int first, int second, int third,
389 void __user *ptr, long fifth)
391 switch (call & 0xffff) {
393 return sys_oabi_semtimedop(first,
394 (struct oabi_sembuf __user *)ptr,
397 return sys_oabi_semtimedop(first,
398 (struct oabi_sembuf __user *)ptr,
400 (const struct old_timespec32 __user *)fifth);
402 return sys_ipc(call, first, second, third, ptr, fifth);
406 asmlinkage long sys_oabi_semtimedop(int semid,
407 struct oabi_sembuf __user *tsops,
409 const struct old_timespec32 __user *timeout)
414 asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
420 asmlinkage int sys_oabi_ipc(uint call, int first, int second, int third,
421 void __user *ptr, long fifth)
427 asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen)
429 sa_family_t sa_family;
430 if (addrlen == 112 &&
431 get_user(sa_family, &addr->sa_family) == 0 &&
432 sa_family == AF_UNIX)
434 return sys_bind(fd, addr, addrlen);
437 asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen)
439 sa_family_t sa_family;
440 if (addrlen == 112 &&
441 get_user(sa_family, &addr->sa_family) == 0 &&
442 sa_family == AF_UNIX)
444 return sys_connect(fd, addr, addrlen);
447 asmlinkage long sys_oabi_sendto(int fd, void __user *buff,
448 size_t len, unsigned flags,
449 struct sockaddr __user *addr,
452 sa_family_t sa_family;
453 if (addrlen == 112 &&
454 get_user(sa_family, &addr->sa_family) == 0 &&
455 sa_family == AF_UNIX)
457 return sys_sendto(fd, buff, len, flags, addr, addrlen);
460 asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags)
462 struct sockaddr __user *addr;
464 sa_family_t sa_family;
466 get_user(msg_namelen, &msg->msg_namelen) == 0 &&
467 msg_namelen == 112 &&
468 get_user(addr, &msg->msg_name) == 0 &&
469 get_user(sa_family, &addr->sa_family) == 0 &&
470 sa_family == AF_UNIX)
473 * HACK ALERT: there is a limit to how much backward bending
474 * we should do for what is actually a transitional
475 * compatibility layer. This already has known flaws with
476 * a few ioctls that we don't intend to fix. Therefore
477 * consider this blatent hack as another one... and take care
478 * to run for cover. In most cases it will "just work fine".
479 * If it doesn't, well, tough.
481 put_user(110, &msg->msg_namelen);
483 return sys_sendmsg(fd, msg, flags);
486 asmlinkage long sys_oabi_socketcall(int call, unsigned long __user *args)
488 unsigned long r = -EFAULT, a[6];
492 if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
493 r = sys_oabi_bind(a[0], (struct sockaddr __user *)a[1], a[2]);
496 if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
497 r = sys_oabi_connect(a[0], (struct sockaddr __user *)a[1], a[2]);
500 if (copy_from_user(a, args, 6 * sizeof(long)) == 0)
501 r = sys_oabi_sendto(a[0], (void __user *)a[1], a[2], a[3],
502 (struct sockaddr __user *)a[4], a[5]);
505 if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
506 r = sys_oabi_sendmsg(a[0], (struct user_msghdr __user *)a[1], a[2]);
509 r = sys_socketcall(call, args);