sys_oabi-compat.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  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. asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd,
  178. unsigned long arg)
  179. {
  180. struct oabi_flock64 user;
  181. struct flock64 kernel;
  182. mm_segment_t fs = USER_DS; /* initialized to kill a warning */
  183. unsigned long local_arg = arg;
  184. int ret;
  185. switch (cmd) {
  186. case F_OFD_GETLK:
  187. case F_OFD_SETLK:
  188. case F_OFD_SETLKW:
  189. case F_GETLK64:
  190. case F_SETLK64:
  191. case F_SETLKW64:
  192. if (copy_from_user(&user, (struct oabi_flock64 __user *)arg,
  193. sizeof(user)))
  194. return -EFAULT;
  195. kernel.l_type = user.l_type;
  196. kernel.l_whence = user.l_whence;
  197. kernel.l_start = user.l_start;
  198. kernel.l_len = user.l_len;
  199. kernel.l_pid = user.l_pid;
  200. local_arg = (unsigned long)&kernel;
  201. fs = get_fs();
  202. set_fs(KERNEL_DS);
  203. }
  204. ret = sys_fcntl64(fd, cmd, local_arg);
  205. switch (cmd) {
  206. case F_GETLK64:
  207. if (!ret) {
  208. user.l_type = kernel.l_type;
  209. user.l_whence = kernel.l_whence;
  210. user.l_start = kernel.l_start;
  211. user.l_len = kernel.l_len;
  212. user.l_pid = kernel.l_pid;
  213. if (copy_to_user((struct oabi_flock64 __user *)arg,
  214. &user, sizeof(user)))
  215. ret = -EFAULT;
  216. }
  217. case F_SETLK64:
  218. case F_SETLKW64:
  219. set_fs(fs);
  220. }
  221. return ret;
  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 || maxevents > (INT_MAX/sizeof(struct epoll_event)))
  254. return -EINVAL;
  255. kbuf = kmalloc(sizeof(*kbuf) * maxevents, GFP_KERNEL);
  256. if (!kbuf)
  257. return -ENOMEM;
  258. fs = get_fs();
  259. set_fs(KERNEL_DS);
  260. ret = sys_epoll_wait(epfd, kbuf, maxevents, timeout);
  261. set_fs(fs);
  262. err = 0;
  263. for (i = 0; i < ret; i++) {
  264. __put_user_error(kbuf[i].events, &events->events, err);
  265. __put_user_error(kbuf[i].data, &events->data, err);
  266. events++;
  267. }
  268. kfree(kbuf);
  269. return err ? -EFAULT : ret;
  270. }
  271. struct oabi_sembuf {
  272. unsigned short sem_num;
  273. short sem_op;
  274. short sem_flg;
  275. unsigned short __pad;
  276. };
  277. asmlinkage long sys_oabi_semtimedop(int semid,
  278. struct oabi_sembuf __user *tsops,
  279. unsigned nsops,
  280. const struct timespec __user *timeout)
  281. {
  282. struct sembuf *sops;
  283. struct timespec local_timeout;
  284. long err;
  285. int i;
  286. if (nsops < 1 || nsops > SEMOPM)
  287. return -EINVAL;
  288. sops = kmalloc(sizeof(*sops) * nsops, GFP_KERNEL);
  289. if (!sops)
  290. return -ENOMEM;
  291. err = 0;
  292. for (i = 0; i < nsops; i++) {
  293. __get_user_error(sops[i].sem_num, &tsops->sem_num, err);
  294. __get_user_error(sops[i].sem_op, &tsops->sem_op, err);
  295. __get_user_error(sops[i].sem_flg, &tsops->sem_flg, err);
  296. tsops++;
  297. }
  298. if (timeout) {
  299. /* copy this as well before changing domain protection */
  300. err |= copy_from_user(&local_timeout, timeout, sizeof(*timeout));
  301. timeout = &local_timeout;
  302. }
  303. if (err) {
  304. err = -EFAULT;
  305. } else {
  306. mm_segment_t fs = get_fs();
  307. set_fs(KERNEL_DS);
  308. err = sys_semtimedop(semid, sops, nsops, timeout);
  309. set_fs(fs);
  310. }
  311. kfree(sops);
  312. return err;
  313. }
  314. asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
  315. unsigned nsops)
  316. {
  317. return sys_oabi_semtimedop(semid, tsops, nsops, NULL);
  318. }
  319. asmlinkage int sys_oabi_ipc(uint call, int first, int second, int third,
  320. void __user *ptr, long fifth)
  321. {
  322. switch (call & 0xffff) {
  323. case SEMOP:
  324. return sys_oabi_semtimedop(first,
  325. (struct oabi_sembuf __user *)ptr,
  326. second, NULL);
  327. case SEMTIMEDOP:
  328. return sys_oabi_semtimedop(first,
  329. (struct oabi_sembuf __user *)ptr,
  330. second,
  331. (const struct timespec __user *)fifth);
  332. default:
  333. return sys_ipc(call, first, second, third, ptr, fifth);
  334. }
  335. }
  336. asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen)
  337. {
  338. sa_family_t sa_family;
  339. if (addrlen == 112 &&
  340. get_user(sa_family, &addr->sa_family) == 0 &&
  341. sa_family == AF_UNIX)
  342. addrlen = 110;
  343. return sys_bind(fd, addr, addrlen);
  344. }
  345. asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen)
  346. {
  347. sa_family_t sa_family;
  348. if (addrlen == 112 &&
  349. get_user(sa_family, &addr->sa_family) == 0 &&
  350. sa_family == AF_UNIX)
  351. addrlen = 110;
  352. return sys_connect(fd, addr, addrlen);
  353. }
  354. asmlinkage long sys_oabi_sendto(int fd, void __user *buff,
  355. size_t len, unsigned flags,
  356. struct sockaddr __user *addr,
  357. int addrlen)
  358. {
  359. sa_family_t sa_family;
  360. if (addrlen == 112 &&
  361. get_user(sa_family, &addr->sa_family) == 0 &&
  362. sa_family == AF_UNIX)
  363. addrlen = 110;
  364. return sys_sendto(fd, buff, len, flags, addr, addrlen);
  365. }
  366. asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags)
  367. {
  368. struct sockaddr __user *addr;
  369. int msg_namelen;
  370. sa_family_t sa_family;
  371. if (msg &&
  372. get_user(msg_namelen, &msg->msg_namelen) == 0 &&
  373. msg_namelen == 112 &&
  374. get_user(addr, &msg->msg_name) == 0 &&
  375. get_user(sa_family, &addr->sa_family) == 0 &&
  376. sa_family == AF_UNIX)
  377. {
  378. /*
  379. * HACK ALERT: there is a limit to how much backward bending
  380. * we should do for what is actually a transitional
  381. * compatibility layer. This already has known flaws with
  382. * a few ioctls that we don't intend to fix. Therefore
  383. * consider this blatent hack as another one... and take care
  384. * to run for cover. In most cases it will "just work fine".
  385. * If it doesn't, well, tough.
  386. */
  387. put_user(110, &msg->msg_namelen);
  388. }
  389. return sys_sendmsg(fd, msg, flags);
  390. }
  391. asmlinkage long sys_oabi_socketcall(int call, unsigned long __user *args)
  392. {
  393. unsigned long r = -EFAULT, a[6];
  394. switch (call) {
  395. case SYS_BIND:
  396. if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
  397. r = sys_oabi_bind(a[0], (struct sockaddr __user *)a[1], a[2]);
  398. break;
  399. case SYS_CONNECT:
  400. if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
  401. r = sys_oabi_connect(a[0], (struct sockaddr __user *)a[1], a[2]);
  402. break;
  403. case SYS_SENDTO:
  404. if (copy_from_user(a, args, 6 * sizeof(long)) == 0)
  405. r = sys_oabi_sendto(a[0], (void __user *)a[1], a[2], a[3],
  406. (struct sockaddr __user *)a[4], a[5]);
  407. break;
  408. case SYS_SENDMSG:
  409. if (copy_from_user(a, args, 3 * sizeof(long)) == 0)
  410. r = sys_oabi_sendmsg(a[0], (struct user_msghdr __user *)a[1], a[2]);
  411. break;
  412. default:
  413. r = sys_socketcall(call, args);
  414. }
  415. return r;
  416. }