blob: d844c5c9364bbf056099d69bad5ea55fcb101704 [file] [log] [blame]
Nicolas Pitre687ad012006-01-14 16:35:31 +00001/*
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:
Riku Voipioc60afe12008-03-28 13:08:09 +010028 * sys_fstatat64:
Nicolas Pitre687ad012006-01-14 16:35:31 +000029 *
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.
Nicolas Pitre99595d02006-02-08 21:19:36 +000063 *
64 * sys_bind:
65 * sys_connect:
66 * sys_sendmsg:
67 * sys_sendto:
Nicolas Pitre6c0fa492006-02-16 22:36:13 +000068 * sys_socketcall:
Nicolas Pitre99595d02006-02-08 21:19:36 +000069 *
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.
Nicolas Pitre687ad012006-01-14 16:35:31 +000074 */
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>
Nicolas Pitre99595d02006-02-08 21:19:36 +000082#include <linux/socket.h>
Nicolas Pitre6c0fa492006-02-16 22:36:13 +000083#include <linux/net.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070084#include <linux/ipc.h>
Russell King33fa9b12008-09-06 11:35:55 +010085#include <linux/uaccess.h>
eric miaocbb55092009-04-16 09:55:23 +010086#include <linux/slab.h>
Nicolas Pitre687ad012006-01-14 16:35:31 +000087
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;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800127 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
128 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
Nicolas Pitre687ad012006-01-14 16:35:31 +0000129 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
David Howellsc7887322010-08-11 11:26:22 +0100144asmlinkage long sys_oabi_stat64(const char __user * filename,
Nicolas Pitre687ad012006-01-14 16:35:31 +0000145 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
David Howellsc7887322010-08-11 11:26:22 +0100154asmlinkage long sys_oabi_lstat64(const char __user * filename,
Nicolas Pitre687ad012006-01-14 16:35:31 +0000155 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
Riku Voipioc60afe12008-03-28 13:08:09 +0100174asmlinkage long sys_oabi_fstatat64(int dfd,
David Howellsc7887322010-08-11 11:26:22 +0100175 const char __user *filename,
Riku Voipioc60afe12008-03-28 13:08:09 +0100176 struct oldabi_stat64 __user *statbuf,
177 int flag)
178{
179 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400180 int error;
Riku Voipioc60afe12008-03-28 13:08:09 +0100181
Oleg Drokin0112fc22009-04-08 20:05:42 +0400182 error = vfs_fstatat(dfd, filename, &stat, flag);
183 if (error)
184 return error;
185 return cp_oldabi_stat64(&stat, statbuf);
Riku Voipioc60afe12008-03-28 13:08:09 +0100186}
187
Nicolas Pitre687ad012006-01-14 16:35:31 +0000188struct 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
Al Viro76cc4042015-12-28 20:47:08 -0500196static 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
Nicolas Pitre687ad012006-01-14 16:35:31 +0000231asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd,
232 unsigned long arg)
233{
Nicolas Pitre687ad012006-01-14 16:35:31 +0000234 switch (cmd) {
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400235 case F_OFD_GETLK:
236 case F_OFD_SETLK:
237 case F_OFD_SETLKW:
Nicolas Pitre687ad012006-01-14 16:35:31 +0000238 case F_GETLK64:
239 case F_SETLK64:
240 case F_SETLKW64:
Al Viro76cc4042015-12-28 20:47:08 -0500241 return do_locks(fd, cmd, arg);
242
243 default:
244 return sys_fcntl64(fd, cmd, arg);
Nicolas Pitre687ad012006-01-14 16:35:31 +0000245 }
Nicolas Pitre687ad012006-01-14 16:35:31 +0000246}
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;
Julien Thierrybb35d3d2019-02-14 09:49:17 -0500279 struct oabi_epoll_event e;
Nicolas Pitre687ad012006-01-14 16:35:31 +0000280 mm_segment_t fs;
281 long ret, err, i;
282
Dave Weinstein7de24992016-07-28 11:55:41 -0700283 if (maxevents <= 0 ||
284 maxevents > (INT_MAX/sizeof(*kbuf)) ||
285 maxevents > (INT_MAX/sizeof(*events)))
Nicolas Pitre687ad012006-01-14 16:35:31 +0000286 return -EINVAL;
Dave Weinstein7de24992016-07-28 11:55:41 -0700287 if (!access_ok(VERIFY_WRITE, events, sizeof(*events) * maxevents))
288 return -EFAULT;
Nicolas Pitre687ad012006-01-14 16:35:31 +0000289 kbuf = kmalloc(sizeof(*kbuf) * maxevents, GFP_KERNEL);
290 if (!kbuf)
291 return -ENOMEM;
292 fs = get_fs();
293 set_fs(KERNEL_DS);
294 ret = sys_epoll_wait(epfd, kbuf, maxevents, timeout);
295 set_fs(fs);
296 err = 0;
297 for (i = 0; i < ret; i++) {
Julien Thierrybb35d3d2019-02-14 09:49:17 -0500298 e.events = kbuf[i].events;
299 e.data = kbuf[i].data;
300 err = __copy_to_user(events, &e, sizeof(e));
301 if (err)
302 break;
Nicolas Pitre687ad012006-01-14 16:35:31 +0000303 events++;
304 }
305 kfree(kbuf);
306 return err ? -EFAULT : ret;
307}
308
309struct oabi_sembuf {
310 unsigned short sem_num;
311 short sem_op;
312 short sem_flg;
313 unsigned short __pad;
314};
315
316asmlinkage long sys_oabi_semtimedop(int semid,
317 struct oabi_sembuf __user *tsops,
318 unsigned nsops,
319 const struct timespec __user *timeout)
320{
321 struct sembuf *sops;
322 struct timespec local_timeout;
323 long err;
324 int i;
325
Dan Rosenberg0f220722011-04-29 15:48:07 +0100326 if (nsops < 1 || nsops > SEMOPM)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000327 return -EINVAL;
Dave Weinstein7de24992016-07-28 11:55:41 -0700328 if (!access_ok(VERIFY_READ, tsops, sizeof(*tsops) * nsops))
329 return -EFAULT;
Nicolas Pitre687ad012006-01-14 16:35:31 +0000330 sops = kmalloc(sizeof(*sops) * nsops, GFP_KERNEL);
331 if (!sops)
332 return -ENOMEM;
333 err = 0;
334 for (i = 0; i < nsops; i++) {
Russell Kingd609e4a2018-11-07 11:43:59 -0500335 struct oabi_sembuf osb;
336 err |= __copy_from_user(&osb, tsops, sizeof(osb));
337 sops[i].sem_num = osb.sem_num;
338 sops[i].sem_op = osb.sem_op;
339 sops[i].sem_flg = osb.sem_flg;
Nicolas Pitre687ad012006-01-14 16:35:31 +0000340 tsops++;
341 }
342 if (timeout) {
343 /* copy this as well before changing domain protection */
344 err |= copy_from_user(&local_timeout, timeout, sizeof(*timeout));
345 timeout = &local_timeout;
346 }
347 if (err) {
348 err = -EFAULT;
349 } else {
350 mm_segment_t fs = get_fs();
351 set_fs(KERNEL_DS);
352 err = sys_semtimedop(semid, sops, nsops, timeout);
353 set_fs(fs);
354 }
355 kfree(sops);
356 return err;
357}
358
359asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
360 unsigned nsops)
361{
362 return sys_oabi_semtimedop(semid, tsops, nsops, NULL);
363}
364
Nicolas Pitre687ad012006-01-14 16:35:31 +0000365asmlinkage int sys_oabi_ipc(uint call, int first, int second, int third,
366 void __user *ptr, long fifth)
367{
368 switch (call & 0xffff) {
369 case SEMOP:
370 return sys_oabi_semtimedop(first,
371 (struct oabi_sembuf __user *)ptr,
372 second, NULL);
373 case SEMTIMEDOP:
374 return sys_oabi_semtimedop(first,
375 (struct oabi_sembuf __user *)ptr,
376 second,
377 (const struct timespec __user *)fifth);
378 default:
379 return sys_ipc(call, first, second, third, ptr, fifth);
380 }
381}
Nicolas Pitre99595d02006-02-08 21:19:36 +0000382
383asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen)
384{
385 sa_family_t sa_family;
386 if (addrlen == 112 &&
387 get_user(sa_family, &addr->sa_family) == 0 &&
388 sa_family == AF_UNIX)
389 addrlen = 110;
390 return sys_bind(fd, addr, addrlen);
391}
392
393asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen)
394{
395 sa_family_t sa_family;
396 if (addrlen == 112 &&
397 get_user(sa_family, &addr->sa_family) == 0 &&
398 sa_family == AF_UNIX)
399 addrlen = 110;
400 return sys_connect(fd, addr, addrlen);
401}
402
403asmlinkage long sys_oabi_sendto(int fd, void __user *buff,
404 size_t len, unsigned flags,
405 struct sockaddr __user *addr,
406 int addrlen)
407{
408 sa_family_t sa_family;
409 if (addrlen == 112 &&
410 get_user(sa_family, &addr->sa_family) == 0 &&
411 sa_family == AF_UNIX)
412 addrlen = 110;
413 return sys_sendto(fd, buff, len, flags, addr, addrlen);
414}
415
Al Viro666547f2014-04-06 14:03:05 -0400416asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags)
Nicolas Pitre99595d02006-02-08 21:19:36 +0000417{
418 struct sockaddr __user *addr;
419 int msg_namelen;
420 sa_family_t sa_family;
421 if (msg &&
422 get_user(msg_namelen, &msg->msg_namelen) == 0 &&
423 msg_namelen == 112 &&
424 get_user(addr, &msg->msg_name) == 0 &&
425 get_user(sa_family, &addr->sa_family) == 0 &&
426 sa_family == AF_UNIX)
427 {
428 /*
429 * HACK ALERT: there is a limit to how much backward bending
430 * we should do for what is actually a transitional
431 * compatibility layer. This already has known flaws with
432 * a few ioctls that we don't intend to fix. Therefore
433 * consider this blatent hack as another one... and take care
434 * to run for cover. In most cases it will "just work fine".
435 * If it doesn't, well, tough.
436 */
437 put_user(110, &msg->msg_namelen);
438 }
439 return sys_sendmsg(fd, msg, flags);
440}
441
Nicolas Pitre6c0fa492006-02-16 22:36:13 +0000442asmlinkage long sys_oabi_socketcall(int call, unsigned long __user *args)
443{
444 unsigned long r = -EFAULT, a[6];
445
446 switch (call) {
447 case SYS_BIND:
448 if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
449 r = sys_oabi_bind(a[0], (struct sockaddr __user *)a[1], a[2]);
450 break;
451 case SYS_CONNECT:
452 if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
453 r = sys_oabi_connect(a[0], (struct sockaddr __user *)a[1], a[2]);
454 break;
455 case SYS_SENDTO:
456 if (copy_from_user(a, args, 6 * sizeof(long)) == 0)
457 r = sys_oabi_sendto(a[0], (void __user *)a[1], a[2], a[3],
458 (struct sockaddr __user *)a[4], a[5]);
459 break;
460 case SYS_SENDMSG:
461 if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
Al Viro666547f2014-04-06 14:03:05 -0400462 r = sys_oabi_sendmsg(a[0], (struct user_msghdr __user *)a[1], a[2]);
Nicolas Pitre6c0fa492006-02-16 22:36:13 +0000463 break;
464 default:
465 r = sys_socketcall(call, args);
466 }
467
468 return r;
469}