sys_oabi-compat.c 12 KB

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