blob: 2ae9b6da6a1462bf1d2e285032b1b2ae1e10566f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/compat.c
3 *
4 * Kernel compatibililty routines for e.g. 32 bit syscall support
5 * on 64 bit kernels.
6 *
7 * Copyright (C) 2002 Stephen Rothwell, IBM Corporation
8 * Copyright (C) 1997-2000 Jakub Jelinek (jakub@redhat.com)
9 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
10 * Copyright (C) 2001,2002 Andi Kleen, SuSE Labs
Pavel Macheka2531292010-07-18 14:27:13 +020011 * Copyright (C) 2003 Pavel Machek (pavel@ucw.cz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 */
17
Kevin Winchester85c9fe82010-08-09 17:20:22 -070018#include <linux/stddef.h>
Milind Arun Choudhary022a1692007-05-08 00:29:02 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/linkage.h>
21#include <linux/compat.h>
22#include <linux/errno.h>
23#include <linux/time.h>
24#include <linux/fs.h>
25#include <linux/fcntl.h>
26#include <linux/namei.h>
27#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040028#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/vfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ioctl.h>
31#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/ncp_mount.h>
David Howells9a9947b2005-04-18 10:54:51 -070033#include <linux/nfs4_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/syscalls.h>
35#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/dirent.h>
Robert Love0eeca282005-07-12 17:06:03 -040037#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/highuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/personality.h>
40#include <linux/rwsem.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070041#include <linux/tsacct_kern.h>
Christoph Hellwig6272e262007-05-08 00:29:21 -070042#include <linux/security.h>
Al Viroa1f8e7f2006-10-19 16:08:53 -040043#include <linux/highmem.h>
Davide Libenzi6d18c922007-05-10 22:23:15 -070044#include <linux/signal.h>
Al Virobd01f842006-10-19 17:23:57 -040045#include <linux/poll.h>
David S. Miller4a805e82005-09-14 21:40:00 -070046#include <linux/mm.h>
Davide Libenzif6dfb4f2007-03-07 20:41:21 -080047#include <linux/eventpoll.h>
Al Viro498052b2009-03-30 07:20:30 -040048#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
wu zhangjin504b7012010-10-30 08:19:35 -070050#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/uaccess.h>
53#include <asm/mmu_context.h>
54#include <asm/ioctls.h>
David Howells07f3f052006-09-30 20:52:18 +020055#include "internal.h"
David Woodhouse9f729492006-01-18 17:44:05 -080056
Andi Kleenbebfa102006-06-26 13:56:52 +020057int compat_log = 1;
58
59int compat_printk(const char *fmt, ...)
60{
61 va_list ap;
62 int ret;
63 if (!compat_log)
64 return 0;
65 va_start(ap, fmt);
66 ret = vprintk(fmt, ap);
67 va_end(ap);
68 return ret;
69}
70
Badari Pulavartyee0b3e62006-09-30 23:28:47 -070071#include "read_write.h"
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*
74 * Not all architectures have sys_utime, so implement this in terms
75 * of sys_utimes.
76 */
David Howellsc7887322010-08-11 11:26:22 +010077asmlinkage long compat_sys_utime(const char __user *filename,
78 struct compat_utimbuf __user *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Ulrich Drepper1c710c82007-05-08 00:33:25 -070080 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 if (t) {
83 if (get_user(tv[0].tv_sec, &t->actime) ||
84 get_user(tv[1].tv_sec, &t->modtime))
85 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -070086 tv[0].tv_nsec = 0;
87 tv[1].tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -070089 return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0);
90}
91
David Howellsc7887322010-08-11 11:26:22 +010092asmlinkage long compat_sys_utimensat(unsigned int dfd, const char __user *filename, struct compat_timespec __user *t, int flags)
Ulrich Drepper1c710c82007-05-08 00:33:25 -070093{
94 struct timespec tv[2];
95
96 if (t) {
97 if (get_compat_timespec(&tv[0], &t[0]) ||
98 get_compat_timespec(&tv[1], &t[1]))
99 return -EFAULT;
100
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700101 if (tv[0].tv_nsec == UTIME_OMIT && tv[1].tv_nsec == UTIME_OMIT)
102 return 0;
103 }
104 return do_utimes(dfd, filename, t ? tv : NULL, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
David Howellsc7887322010-08-11 11:26:22 +0100107asmlinkage long compat_sys_futimesat(unsigned int dfd, const char __user *filename, struct compat_timeval __user *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700109 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100111 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (get_user(tv[0].tv_sec, &t[0].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700113 get_user(tv[0].tv_nsec, &t[0].tv_usec) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 get_user(tv[1].tv_sec, &t[1].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700115 get_user(tv[1].tv_nsec, &t[1].tv_usec))
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100116 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700117 if (tv[0].tv_nsec >= 1000000 || tv[0].tv_nsec < 0 ||
118 tv[1].tv_nsec >= 1000000 || tv[1].tv_nsec < 0)
119 return -EINVAL;
120 tv[0].tv_nsec *= 1000;
121 tv[1].tv_nsec *= 1000;
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100122 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700123 return do_utimes(dfd, filename, t ? tv : NULL, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800124}
125
David Howellsc7887322010-08-11 11:26:22 +0100126asmlinkage long compat_sys_utimes(const char __user *filename, struct compat_timeval __user *t)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800127{
128 return compat_sys_futimesat(AT_FDCWD, filename, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Christoph Hellwigf7a50002008-10-15 22:02:05 -0700131static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf)
132{
Al Virofcf83062012-02-12 20:56:29 -0500133 struct compat_stat tmp;
Christoph Hellwigf7a50002008-10-15 22:02:05 -0700134
Al Virofcf83062012-02-12 20:56:29 -0500135 if (!old_valid_dev(stat->dev) || !old_valid_dev(stat->rdev))
Christoph Hellwigf7a50002008-10-15 22:02:05 -0700136 return -EOVERFLOW;
137
Al Virofcf83062012-02-12 20:56:29 -0500138 memset(&tmp, 0, sizeof(tmp));
139 tmp.st_dev = old_encode_dev(stat->dev);
140 tmp.st_ino = stat->ino;
141 if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
142 return -EOVERFLOW;
143 tmp.st_mode = stat->mode;
144 tmp.st_nlink = stat->nlink;
145 if (tmp.st_nlink != stat->nlink)
146 return -EOVERFLOW;
147 SET_UID(tmp.st_uid, stat->uid);
148 SET_GID(tmp.st_gid, stat->gid);
149 tmp.st_rdev = old_encode_dev(stat->rdev);
150 if ((u64) stat->size > MAX_NON_LFS)
151 return -EOVERFLOW;
152 tmp.st_size = stat->size;
153 tmp.st_atime = stat->atime.tv_sec;
154 tmp.st_atime_nsec = stat->atime.tv_nsec;
155 tmp.st_mtime = stat->mtime.tv_sec;
156 tmp.st_mtime_nsec = stat->mtime.tv_nsec;
157 tmp.st_ctime = stat->ctime.tv_sec;
158 tmp.st_ctime_nsec = stat->ctime.tv_nsec;
159 tmp.st_blocks = stat->blocks;
160 tmp.st_blksize = stat->blksize;
161 return copy_to_user(ubuf, &tmp, sizeof(tmp)) ? -EFAULT : 0;
Christoph Hellwigf7a50002008-10-15 22:02:05 -0700162}
163
David Howellsc7887322010-08-11 11:26:22 +0100164asmlinkage long compat_sys_newstat(const char __user * filename,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct compat_stat __user *statbuf)
166{
167 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400168 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400170 error = vfs_stat(filename, &stat);
171 if (error)
172 return error;
173 return cp_compat_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
David Howellsc7887322010-08-11 11:26:22 +0100176asmlinkage long compat_sys_newlstat(const char __user * filename,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct compat_stat __user *statbuf)
178{
179 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400180 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400182 error = vfs_lstat(filename, &stat);
183 if (error)
184 return error;
185 return cp_compat_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Kyle McMartin82d821d2006-03-24 03:18:20 -0800188#ifndef __ARCH_WANT_STAT64
David Howellsc7887322010-08-11 11:26:22 +0100189asmlinkage long compat_sys_newfstatat(unsigned int dfd,
190 const char __user *filename,
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800191 struct compat_stat __user *statbuf, int flag)
192{
193 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400194 int error;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800195
Oleg Drokin0112fc22009-04-08 20:05:42 +0400196 error = vfs_fstatat(dfd, filename, &stat, flag);
197 if (error)
198 return error;
199 return cp_compat_stat(&stat, statbuf);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800200}
Kyle McMartin82d821d2006-03-24 03:18:20 -0800201#endif
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203asmlinkage long compat_sys_newfstat(unsigned int fd,
204 struct compat_stat __user * statbuf)
205{
206 struct kstat stat;
207 int error = vfs_fstat(fd, &stat);
208
209 if (!error)
210 error = cp_compat_stat(&stat, statbuf);
211 return error;
212}
213
214static int put_compat_statfs(struct compat_statfs __user *ubuf, struct kstatfs *kbuf)
215{
216
217 if (sizeof ubuf->f_blocks == 4) {
Jon Tollefsonf4a67cc2008-07-23 21:27:55 -0700218 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
219 kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -EOVERFLOW;
221 /* f_files and f_ffree may be -1; it's okay
222 * to stuff that into 32 bits */
223 if (kbuf->f_files != 0xffffffffffffffffULL
224 && (kbuf->f_files & 0xffffffff00000000ULL))
225 return -EOVERFLOW;
226 if (kbuf->f_ffree != 0xffffffffffffffffULL
227 && (kbuf->f_ffree & 0xffffffff00000000ULL))
228 return -EOVERFLOW;
229 }
230 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
231 __put_user(kbuf->f_type, &ubuf->f_type) ||
232 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
233 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
234 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
235 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
236 __put_user(kbuf->f_files, &ubuf->f_files) ||
237 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
238 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
239 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
240 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
241 __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
Eric W. Biederman1448c722011-10-17 13:40:02 -0700242 __put_user(kbuf->f_flags, &ubuf->f_flags) ||
243 __clear_user(ubuf->f_spare, sizeof(ubuf->f_spare)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -EFAULT;
245 return 0;
246}
247
248/*
Namhyung Kim974d8792010-12-27 01:41:53 +0900249 * The following statfs calls are copies of code from fs/statfs.c and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * should be checked against those from time to time
251 */
Al Viro2d8f3032008-07-22 09:59:21 -0400252asmlinkage long compat_sys_statfs(const char __user *pathname, struct compat_statfs __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Al Viroc8b91ac2011-03-12 10:41:39 -0500254 struct kstatfs tmp;
255 int error = user_statfs(pathname, &tmp);
256 if (!error)
257 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return error;
259}
260
261asmlinkage long compat_sys_fstatfs(unsigned int fd, struct compat_statfs __user *buf)
262{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 struct kstatfs tmp;
Al Viroc8b91ac2011-03-12 10:41:39 -0500264 int error = fd_statfs(fd, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800265 if (!error)
266 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return error;
268}
269
270static int put_compat_statfs64(struct compat_statfs64 __user *ubuf, struct kstatfs *kbuf)
271{
272 if (sizeof ubuf->f_blocks == 4) {
Jon Tollefsonf4a67cc2008-07-23 21:27:55 -0700273 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
274 kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return -EOVERFLOW;
276 /* f_files and f_ffree may be -1; it's okay
277 * to stuff that into 32 bits */
278 if (kbuf->f_files != 0xffffffffffffffffULL
279 && (kbuf->f_files & 0xffffffff00000000ULL))
280 return -EOVERFLOW;
281 if (kbuf->f_ffree != 0xffffffffffffffffULL
282 && (kbuf->f_ffree & 0xffffffff00000000ULL))
283 return -EOVERFLOW;
284 }
285 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
286 __put_user(kbuf->f_type, &ubuf->f_type) ||
287 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
288 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
289 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
290 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
291 __put_user(kbuf->f_files, &ubuf->f_files) ||
292 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
293 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
294 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
295 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
Namhyung Kime0bb6bd2010-12-27 01:41:54 +0900296 __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
297 __put_user(kbuf->f_flags, &ubuf->f_flags) ||
298 __clear_user(ubuf->f_spare, sizeof(ubuf->f_spare)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return -EFAULT;
300 return 0;
301}
302
Al Viro2d8f3032008-07-22 09:59:21 -0400303asmlinkage long compat_sys_statfs64(const char __user *pathname, compat_size_t sz, struct compat_statfs64 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct kstatfs tmp;
306 int error;
307
308 if (sz != sizeof(*buf))
309 return -EINVAL;
310
Al Viroc8b91ac2011-03-12 10:41:39 -0500311 error = user_statfs(pathname, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800312 if (!error)
313 error = put_compat_statfs64(buf, &tmp);
Al Viroc8b91ac2011-03-12 10:41:39 -0500314 return error;
315}
316
317asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz, struct compat_statfs64 __user *buf)
318{
319 struct kstatfs tmp;
320 int error;
321
322 if (sz != sizeof(*buf))
323 return -EINVAL;
324
325 error = fd_statfs(fd, &tmp);
326 if (!error)
327 error = put_compat_statfs64(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return error;
329}
330
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100331/*
332 * This is a copy of sys_ustat, just dealing with a structure layout.
333 * Given how simple this syscall is that apporach is more maintainable
334 * than the various conversion hacks.
335 */
336asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u)
337{
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100338 struct compat_ustat tmp;
339 struct kstatfs sbuf;
Al Virocf31e702012-01-02 22:28:36 -0500340 int err = vfs_ustat(new_decode_dev(dev), &sbuf);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100341 if (err)
342 return err;
343
344 memset(&tmp, 0, sizeof(struct compat_ustat));
345 tmp.f_tfree = sbuf.f_bfree;
346 tmp.f_tinode = sbuf.f_ffree;
347 if (copy_to_user(u, &tmp, sizeof(struct compat_ustat)))
348 return -EFAULT;
349 return 0;
350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
353{
354 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
355 __get_user(kfl->l_type, &ufl->l_type) ||
356 __get_user(kfl->l_whence, &ufl->l_whence) ||
357 __get_user(kfl->l_start, &ufl->l_start) ||
358 __get_user(kfl->l_len, &ufl->l_len) ||
359 __get_user(kfl->l_pid, &ufl->l_pid))
360 return -EFAULT;
361 return 0;
362}
363
364static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
365{
366 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
367 __put_user(kfl->l_type, &ufl->l_type) ||
368 __put_user(kfl->l_whence, &ufl->l_whence) ||
369 __put_user(kfl->l_start, &ufl->l_start) ||
370 __put_user(kfl->l_len, &ufl->l_len) ||
371 __put_user(kfl->l_pid, &ufl->l_pid))
372 return -EFAULT;
373 return 0;
374}
375
376#ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
377static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
378{
379 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
380 __get_user(kfl->l_type, &ufl->l_type) ||
381 __get_user(kfl->l_whence, &ufl->l_whence) ||
382 __get_user(kfl->l_start, &ufl->l_start) ||
383 __get_user(kfl->l_len, &ufl->l_len) ||
384 __get_user(kfl->l_pid, &ufl->l_pid))
385 return -EFAULT;
386 return 0;
387}
388#endif
389
390#ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
391static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
392{
393 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
394 __put_user(kfl->l_type, &ufl->l_type) ||
395 __put_user(kfl->l_whence, &ufl->l_whence) ||
396 __put_user(kfl->l_start, &ufl->l_start) ||
397 __put_user(kfl->l_len, &ufl->l_len) ||
398 __put_user(kfl->l_pid, &ufl->l_pid))
399 return -EFAULT;
400 return 0;
401}
402#endif
403
404asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
405 unsigned long arg)
406{
407 mm_segment_t old_fs;
408 struct flock f;
409 long ret;
410
411 switch (cmd) {
412 case F_GETLK:
413 case F_SETLK:
414 case F_SETLKW:
415 ret = get_compat_flock(&f, compat_ptr(arg));
416 if (ret != 0)
417 break;
418 old_fs = get_fs();
419 set_fs(KERNEL_DS);
420 ret = sys_fcntl(fd, cmd, (unsigned long)&f);
421 set_fs(old_fs);
422 if (cmd == F_GETLK && ret == 0) {
Nikanth Karthikesanff677f82009-04-01 14:40:51 +0530423 /* GETLK was successful and we need to return the data...
NeilBrown2520f142006-01-08 01:02:40 -0800424 * but it needs to fit in the compat structure.
425 * l_start shouldn't be too big, unless the original
426 * start + end is greater than COMPAT_OFF_T_MAX, in which
427 * case the app was asking for trouble, so we return
428 * -EOVERFLOW in that case.
429 * l_len could be too big, in which case we just truncate it,
430 * and only allow the app to see that part of the conflicting
431 * lock that might make sense to it anyway
432 */
433
434 if (f.l_start > COMPAT_OFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800436 if (f.l_len > COMPAT_OFF_T_MAX)
437 f.l_len = COMPAT_OFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (ret == 0)
439 ret = put_compat_flock(&f, compat_ptr(arg));
440 }
441 break;
442
443 case F_GETLK64:
444 case F_SETLK64:
445 case F_SETLKW64:
446 ret = get_compat_flock64(&f, compat_ptr(arg));
447 if (ret != 0)
448 break;
449 old_fs = get_fs();
450 set_fs(KERNEL_DS);
451 ret = sys_fcntl(fd, (cmd == F_GETLK64) ? F_GETLK :
452 ((cmd == F_SETLK64) ? F_SETLK : F_SETLKW),
453 (unsigned long)&f);
454 set_fs(old_fs);
455 if (cmd == F_GETLK64 && ret == 0) {
NeilBrown2520f142006-01-08 01:02:40 -0800456 /* need to return lock information - see above for commentary */
457 if (f.l_start > COMPAT_LOFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800459 if (f.l_len > COMPAT_LOFF_T_MAX)
460 f.l_len = COMPAT_LOFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (ret == 0)
462 ret = put_compat_flock64(&f, compat_ptr(arg));
463 }
464 break;
465
466 default:
467 ret = sys_fcntl(fd, cmd, arg);
468 break;
469 }
470 return ret;
471}
472
473asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
474 unsigned long arg)
475{
476 if ((cmd == F_GETLK64) || (cmd == F_SETLK64) || (cmd == F_SETLKW64))
477 return -EINVAL;
478 return compat_sys_fcntl64(fd, cmd, arg);
479}
480
481asmlinkage long
482compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
483{
484 long ret;
485 aio_context_t ctx64;
486
487 mm_segment_t oldfs = get_fs();
488 if (unlikely(get_user(ctx64, ctx32p)))
489 return -EFAULT;
490
491 set_fs(KERNEL_DS);
492 /* The __user pointer cast is valid because of the set_fs() */
493 ret = sys_io_setup(nr_reqs, (aio_context_t __user *) &ctx64);
494 set_fs(oldfs);
495 /* truncating is ok because it's a user address */
496 if (!ret)
497 ret = put_user((u32) ctx64, ctx32p);
498 return ret;
499}
500
501asmlinkage long
502compat_sys_io_getevents(aio_context_t ctx_id,
503 unsigned long min_nr,
504 unsigned long nr,
505 struct io_event __user *events,
506 struct compat_timespec __user *timeout)
507{
508 long ret;
509 struct timespec t;
510 struct timespec __user *ut = NULL;
511
512 ret = -EFAULT;
513 if (unlikely(!access_ok(VERIFY_WRITE, events,
514 nr * sizeof(struct io_event))))
515 goto out;
516 if (timeout) {
517 if (get_compat_timespec(&t, timeout))
518 goto out;
519
520 ut = compat_alloc_user_space(sizeof(*ut));
521 if (copy_to_user(ut, &t, sizeof(t)) )
522 goto out;
523 }
524 ret = sys_io_getevents(ctx_id, min_nr, nr, events, ut);
525out:
526 return ret;
527}
528
Jeff Moyerb8373362010-05-26 14:44:25 -0700529/* A write operation does a read from user space and vice versa */
530#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
531
532ssize_t compat_rw_copy_check_uvector(int type,
533 const struct compat_iovec __user *uvector, unsigned long nr_segs,
534 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohfcf63402011-10-31 17:06:39 -0700535 struct iovec **ret_pointer, int check_access)
Jeff Moyerb8373362010-05-26 14:44:25 -0700536{
537 compat_ssize_t tot_len;
538 struct iovec *iov = *ret_pointer = fast_pointer;
539 ssize_t ret = 0;
540 int seg;
541
542 /*
543 * SuS says "The readv() function *may* fail if the iovcnt argument
544 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
545 * traditionally returned zero for zero segments, so...
546 */
547 if (nr_segs == 0)
548 goto out;
549
550 ret = -EINVAL;
551 if (nr_segs > UIO_MAXIOV || nr_segs < 0)
552 goto out;
553 if (nr_segs > fast_segs) {
554 ret = -ENOMEM;
555 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Namhyung Kim6a5640f2010-12-27 01:41:52 +0900556 if (iov == NULL)
Jeff Moyerb8373362010-05-26 14:44:25 -0700557 goto out;
Jeff Moyerb8373362010-05-26 14:44:25 -0700558 }
559 *ret_pointer = iov;
560
Mathieu Desnoyersa1d714b2013-02-25 10:20:36 -0500561 ret = -EFAULT;
562 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
563 goto out;
564
Jeff Moyerb8373362010-05-26 14:44:25 -0700565 /*
566 * Single unix specification:
567 * We should -EINVAL if an element length is not >= 0 and fitting an
Linus Torvalds435f49a2010-10-29 10:36:49 -0700568 * ssize_t.
Jeff Moyerb8373362010-05-26 14:44:25 -0700569 *
Linus Torvalds435f49a2010-10-29 10:36:49 -0700570 * In Linux, the total length is limited to MAX_RW_COUNT, there is
571 * no overflow possibility.
Jeff Moyerb8373362010-05-26 14:44:25 -0700572 */
573 tot_len = 0;
574 ret = -EINVAL;
575 for (seg = 0; seg < nr_segs; seg++) {
Jeff Moyerb8373362010-05-26 14:44:25 -0700576 compat_uptr_t buf;
577 compat_ssize_t len;
578
579 if (__get_user(len, &uvector->iov_len) ||
580 __get_user(buf, &uvector->iov_base)) {
581 ret = -EFAULT;
582 goto out;
583 }
584 if (len < 0) /* size_t not fitting in compat_ssize_t .. */
585 goto out;
Christopher Yeohfcf63402011-10-31 17:06:39 -0700586 if (check_access &&
587 !access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
Jeff Moyerb8373362010-05-26 14:44:25 -0700588 ret = -EFAULT;
589 goto out;
590 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700591 if (len > MAX_RW_COUNT - tot_len)
592 len = MAX_RW_COUNT - tot_len;
593 tot_len += len;
Jeff Moyerb8373362010-05-26 14:44:25 -0700594 iov->iov_base = compat_ptr(buf);
595 iov->iov_len = (compat_size_t) len;
596 uvector++;
597 iov++;
598 }
599 ret = tot_len;
600
601out:
602 return ret;
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605static inline long
606copy_iocb(long nr, u32 __user *ptr32, struct iocb __user * __user *ptr64)
607{
608 compat_uptr_t uptr;
609 int i;
610
611 for (i = 0; i < nr; ++i) {
612 if (get_user(uptr, ptr32 + i))
613 return -EFAULT;
614 if (put_user(compat_ptr(uptr), ptr64 + i))
615 return -EFAULT;
616 }
617 return 0;
618}
619
620#define MAX_AIO_SUBMITS (PAGE_SIZE/sizeof(struct iocb *))
621
622asmlinkage long
623compat_sys_io_submit(aio_context_t ctx_id, int nr, u32 __user *iocb)
624{
625 struct iocb __user * __user *iocb64;
626 long ret;
627
628 if (unlikely(nr < 0))
629 return -EINVAL;
630
631 if (nr > MAX_AIO_SUBMITS)
632 nr = MAX_AIO_SUBMITS;
633
634 iocb64 = compat_alloc_user_space(nr * sizeof(*iocb64));
635 ret = copy_iocb(nr, iocb, iocb64);
636 if (!ret)
Jeff Moyer9d85cba2010-05-26 14:44:26 -0700637 ret = do_io_submit(ctx_id, nr, iocb64, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return ret;
639}
640
641struct compat_ncp_mount_data {
642 compat_int_t version;
643 compat_uint_t ncp_fd;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700644 __compat_uid_t mounted_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 compat_pid_t wdog_pid;
646 unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
647 compat_uint_t time_out;
648 compat_uint_t retry_count;
649 compat_uint_t flags;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700650 __compat_uid_t uid;
651 __compat_gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 compat_mode_t file_mode;
653 compat_mode_t dir_mode;
654};
655
656struct compat_ncp_mount_data_v4 {
657 compat_int_t version;
658 compat_ulong_t flags;
659 compat_ulong_t mounted_uid;
660 compat_long_t wdog_pid;
661 compat_uint_t ncp_fd;
662 compat_uint_t time_out;
663 compat_uint_t retry_count;
664 compat_ulong_t uid;
665 compat_ulong_t gid;
666 compat_ulong_t file_mode;
667 compat_ulong_t dir_mode;
668};
669
670static void *do_ncp_super_data_conv(void *raw_data)
671{
672 int version = *(unsigned int *)raw_data;
673
674 if (version == 3) {
675 struct compat_ncp_mount_data *c_n = raw_data;
676 struct ncp_mount_data *n = raw_data;
677
678 n->dir_mode = c_n->dir_mode;
679 n->file_mode = c_n->file_mode;
680 n->gid = c_n->gid;
681 n->uid = c_n->uid;
682 memmove (n->mounted_vol, c_n->mounted_vol, (sizeof (c_n->mounted_vol) + 3 * sizeof (unsigned int)));
683 n->wdog_pid = c_n->wdog_pid;
684 n->mounted_uid = c_n->mounted_uid;
685 } else if (version == 4) {
686 struct compat_ncp_mount_data_v4 *c_n = raw_data;
687 struct ncp_mount_data_v4 *n = raw_data;
688
689 n->dir_mode = c_n->dir_mode;
690 n->file_mode = c_n->file_mode;
691 n->gid = c_n->gid;
692 n->uid = c_n->uid;
693 n->retry_count = c_n->retry_count;
694 n->time_out = c_n->time_out;
695 n->ncp_fd = c_n->ncp_fd;
696 n->wdog_pid = c_n->wdog_pid;
697 n->mounted_uid = c_n->mounted_uid;
698 n->flags = c_n->flags;
699 } else if (version != 5) {
700 return NULL;
701 }
702
703 return raw_data;
704}
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
David Howells9a9947b2005-04-18 10:54:51 -0700707struct compat_nfs_string {
708 compat_uint_t len;
David Howells5fc3e622005-04-27 15:39:03 -0700709 compat_uptr_t data;
David Howells9a9947b2005-04-18 10:54:51 -0700710};
711
712static inline void compat_nfs_string(struct nfs_string *dst,
713 struct compat_nfs_string *src)
714{
715 dst->data = compat_ptr(src->data);
716 dst->len = src->len;
717}
718
719struct compat_nfs4_mount_data_v1 {
720 compat_int_t version;
721 compat_int_t flags;
722 compat_int_t rsize;
723 compat_int_t wsize;
724 compat_int_t timeo;
725 compat_int_t retrans;
726 compat_int_t acregmin;
727 compat_int_t acregmax;
728 compat_int_t acdirmin;
729 compat_int_t acdirmax;
730 struct compat_nfs_string client_addr;
731 struct compat_nfs_string mnt_path;
732 struct compat_nfs_string hostname;
733 compat_uint_t host_addrlen;
David Howells5fc3e622005-04-27 15:39:03 -0700734 compat_uptr_t host_addr;
David Howells9a9947b2005-04-18 10:54:51 -0700735 compat_int_t proto;
736 compat_int_t auth_flavourlen;
David Howells5fc3e622005-04-27 15:39:03 -0700737 compat_uptr_t auth_flavours;
David Howells9a9947b2005-04-18 10:54:51 -0700738};
739
740static int do_nfs4_super_data_conv(void *raw_data)
741{
742 int version = *(compat_uint_t *) raw_data;
743
744 if (version == 1) {
745 struct compat_nfs4_mount_data_v1 *raw = raw_data;
746 struct nfs4_mount_data *real = raw_data;
747
748 /* copy the fields backwards */
749 real->auth_flavours = compat_ptr(raw->auth_flavours);
750 real->auth_flavourlen = raw->auth_flavourlen;
751 real->proto = raw->proto;
752 real->host_addr = compat_ptr(raw->host_addr);
753 real->host_addrlen = raw->host_addrlen;
754 compat_nfs_string(&real->hostname, &raw->hostname);
755 compat_nfs_string(&real->mnt_path, &raw->mnt_path);
756 compat_nfs_string(&real->client_addr, &raw->client_addr);
757 real->acdirmax = raw->acdirmax;
758 real->acdirmin = raw->acdirmin;
759 real->acregmax = raw->acregmax;
760 real->acregmin = raw->acregmin;
761 real->retrans = raw->retrans;
762 real->timeo = raw->timeo;
763 real->wsize = raw->wsize;
764 real->rsize = raw->rsize;
765 real->flags = raw->flags;
766 real->version = raw->version;
767 }
David Howells9a9947b2005-04-18 10:54:51 -0700768
769 return 0;
770}
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#define NCPFS_NAME "ncpfs"
David Howells9a9947b2005-04-18 10:54:51 -0700773#define NFS4_NAME "nfs4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
David Howellsc7887322010-08-11 11:26:22 +0100775asmlinkage long compat_sys_mount(const char __user * dev_name,
776 const char __user * dir_name,
777 const char __user * type, unsigned long flags,
778 const void __user * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Vegard Nossumeca6f532009-09-18 13:05:45 -0700780 char *kernel_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 unsigned long data_page;
Vegard Nossumeca6f532009-09-18 13:05:45 -0700782 char *kernel_dev;
Jeff Layton9cee5ca2012-10-10 15:25:28 -0400783 struct filename *dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 int retval;
785
Vegard Nossumeca6f532009-09-18 13:05:45 -0700786 retval = copy_mount_string(type, &kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (retval < 0)
788 goto out;
789
Jeff Layton9cee5ca2012-10-10 15:25:28 -0400790 dir = getname(dir_name);
791 retval = PTR_ERR(dir);
792 if (IS_ERR(dir))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 goto out1;
794
Vegard Nossumeca6f532009-09-18 13:05:45 -0700795 retval = copy_mount_string(dev_name, &kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (retval < 0)
797 goto out2;
798
Vegard Nossumeca6f532009-09-18 13:05:45 -0700799 retval = copy_mount_options(data, &data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (retval < 0)
801 goto out3;
802
803 retval = -EINVAL;
804
Vegard Nossumeca6f532009-09-18 13:05:45 -0700805 if (kernel_type && data_page) {
Arnd Bergmann2116b7a2010-10-04 22:55:57 +0200806 if (!strcmp(kernel_type, NCPFS_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 do_ncp_super_data_conv((void *)data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -0700808 } else if (!strcmp(kernel_type, NFS4_NAME)) {
David Howells9a9947b2005-04-18 10:54:51 -0700809 if (do_nfs4_super_data_conv((void *) data_page))
810 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812 }
813
Jeff Layton9cee5ca2012-10-10 15:25:28 -0400814 retval = do_mount(kernel_dev, dir->name, kernel_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 flags, (void*)data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
David Howells9a9947b2005-04-18 10:54:51 -0700817 out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 free_page(data_page);
819 out3:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700820 kfree(kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 out2:
Jeff Layton9cee5ca2012-10-10 15:25:28 -0400822 putname(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 out1:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700824 kfree(kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 out:
826 return retval;
827}
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829struct compat_old_linux_dirent {
830 compat_ulong_t d_ino;
831 compat_ulong_t d_offset;
832 unsigned short d_namlen;
833 char d_name[1];
834};
835
836struct compat_readdir_callback {
837 struct compat_old_linux_dirent __user *dirent;
838 int result;
839};
840
841static int compat_fillonedir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700842 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct compat_readdir_callback *buf = __buf;
845 struct compat_old_linux_dirent __user *dirent;
David Howellsafefdbb2006-10-03 01:13:46 -0700846 compat_ulong_t d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if (buf->result)
849 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700850 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400851 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
852 buf->result = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700853 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 buf->result++;
856 dirent = buf->dirent;
857 if (!access_ok(VERIFY_WRITE, dirent,
858 (unsigned long)(dirent->d_name + namlen + 1) -
859 (unsigned long)dirent))
860 goto efault;
David Howellsafefdbb2006-10-03 01:13:46 -0700861 if ( __put_user(d_ino, &dirent->d_ino) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 __put_user(offset, &dirent->d_offset) ||
863 __put_user(namlen, &dirent->d_namlen) ||
864 __copy_to_user(dirent->d_name, name, namlen) ||
865 __put_user(0, dirent->d_name + namlen))
866 goto efault;
867 return 0;
868efault:
869 buf->result = -EFAULT;
870 return -EFAULT;
871}
872
873asmlinkage long compat_sys_old_readdir(unsigned int fd,
874 struct compat_old_linux_dirent __user *dirent, unsigned int count)
875{
876 int error;
877 struct file *file;
878 struct compat_readdir_callback buf;
879
880 error = -EBADF;
881 file = fget(fd);
882 if (!file)
883 goto out;
884
885 buf.result = 0;
886 buf.dirent = dirent;
887
888 error = vfs_readdir(file, compat_fillonedir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -0400889 if (buf.result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 error = buf.result;
891
892 fput(file);
893out:
894 return error;
895}
896
897struct compat_linux_dirent {
898 compat_ulong_t d_ino;
899 compat_ulong_t d_off;
900 unsigned short d_reclen;
901 char d_name[1];
902};
903
904struct compat_getdents_callback {
905 struct compat_linux_dirent __user *current_dir;
906 struct compat_linux_dirent __user *previous;
907 int count;
908 int error;
909};
910
911static int compat_filldir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700912 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 struct compat_linux_dirent __user * dirent;
915 struct compat_getdents_callback *buf = __buf;
David Howellsafefdbb2006-10-03 01:13:46 -0700916 compat_ulong_t d_ino;
Kevin Winchester85c9fe82010-08-09 17:20:22 -0700917 int reclen = ALIGN(offsetof(struct compat_linux_dirent, d_name) +
918 namlen + 2, sizeof(compat_long_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 buf->error = -EINVAL; /* only used if we fail.. */
921 if (reclen > buf->count)
922 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700923 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400924 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
925 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700926 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 dirent = buf->previous;
929 if (dirent) {
930 if (__put_user(offset, &dirent->d_off))
931 goto efault;
932 }
933 dirent = buf->current_dir;
David Howellsafefdbb2006-10-03 01:13:46 -0700934 if (__put_user(d_ino, &dirent->d_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 goto efault;
936 if (__put_user(reclen, &dirent->d_reclen))
937 goto efault;
938 if (copy_to_user(dirent->d_name, name, namlen))
939 goto efault;
940 if (__put_user(0, dirent->d_name + namlen))
941 goto efault;
942 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
943 goto efault;
944 buf->previous = dirent;
945 dirent = (void __user *)dirent + reclen;
946 buf->current_dir = dirent;
947 buf->count -= reclen;
948 return 0;
949efault:
950 buf->error = -EFAULT;
951 return -EFAULT;
952}
953
954asmlinkage long compat_sys_getdents(unsigned int fd,
955 struct compat_linux_dirent __user *dirent, unsigned int count)
956{
957 struct file * file;
958 struct compat_linux_dirent __user * lastdirent;
959 struct compat_getdents_callback buf;
960 int error;
961
962 error = -EFAULT;
963 if (!access_ok(VERIFY_WRITE, dirent, count))
964 goto out;
965
966 error = -EBADF;
967 file = fget(fd);
968 if (!file)
969 goto out;
970
971 buf.current_dir = dirent;
972 buf.previous = NULL;
973 buf.count = count;
974 buf.error = 0;
975
976 error = vfs_readdir(file, compat_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -0400977 if (error >= 0)
978 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 lastdirent = buf.previous;
980 if (lastdirent) {
981 if (put_user(file->f_pos, &lastdirent->d_off))
982 error = -EFAULT;
983 else
984 error = count - buf.count;
985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 fput(file);
987out:
988 return error;
989}
990
991#ifndef __ARCH_OMIT_COMPAT_SYS_GETDENTS64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993struct compat_getdents_callback64 {
994 struct linux_dirent64 __user *current_dir;
995 struct linux_dirent64 __user *previous;
996 int count;
997 int error;
998};
999
1000static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -07001001 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 struct linux_dirent64 __user *dirent;
1004 struct compat_getdents_callback64 *buf = __buf;
Kevin Winchester85c9fe82010-08-09 17:20:22 -07001005 int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
1006 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 u64 off;
1008
1009 buf->error = -EINVAL; /* only used if we fail.. */
1010 if (reclen > buf->count)
1011 return -EINVAL;
1012 dirent = buf->previous;
1013
1014 if (dirent) {
1015 if (__put_user_unaligned(offset, &dirent->d_off))
1016 goto efault;
1017 }
1018 dirent = buf->current_dir;
1019 if (__put_user_unaligned(ino, &dirent->d_ino))
1020 goto efault;
1021 off = 0;
1022 if (__put_user_unaligned(off, &dirent->d_off))
1023 goto efault;
1024 if (__put_user(reclen, &dirent->d_reclen))
1025 goto efault;
1026 if (__put_user(d_type, &dirent->d_type))
1027 goto efault;
1028 if (copy_to_user(dirent->d_name, name, namlen))
1029 goto efault;
1030 if (__put_user(0, dirent->d_name + namlen))
1031 goto efault;
1032 buf->previous = dirent;
1033 dirent = (void __user *)dirent + reclen;
1034 buf->current_dir = dirent;
1035 buf->count -= reclen;
1036 return 0;
1037efault:
1038 buf->error = -EFAULT;
1039 return -EFAULT;
1040}
1041
1042asmlinkage long compat_sys_getdents64(unsigned int fd,
1043 struct linux_dirent64 __user * dirent, unsigned int count)
1044{
1045 struct file * file;
1046 struct linux_dirent64 __user * lastdirent;
1047 struct compat_getdents_callback64 buf;
1048 int error;
1049
1050 error = -EFAULT;
1051 if (!access_ok(VERIFY_WRITE, dirent, count))
1052 goto out;
1053
1054 error = -EBADF;
1055 file = fget(fd);
1056 if (!file)
1057 goto out;
1058
1059 buf.current_dir = dirent;
1060 buf.previous = NULL;
1061 buf.count = count;
1062 buf.error = 0;
1063
1064 error = vfs_readdir(file, compat_filldir64, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001065 if (error >= 0)
1066 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 lastdirent = buf.previous;
1068 if (lastdirent) {
1069 typeof(lastdirent->d_off) d_off = file->f_pos;
Heiko Carstens7116e992006-12-06 20:36:36 -08001070 if (__put_user_unaligned(d_off, &lastdirent->d_off))
Al Viro53c9c5c2008-08-24 07:29:52 -04001071 error = -EFAULT;
1072 else
1073 error = count - buf.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 fput(file);
1076out:
1077 return error;
1078}
1079#endif /* ! __ARCH_OMIT_COMPAT_SYS_GETDENTS64 */
1080
1081static ssize_t compat_do_readv_writev(int type, struct file *file,
1082 const struct compat_iovec __user *uvector,
1083 unsigned long nr_segs, loff_t *pos)
1084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 compat_ssize_t tot_len;
1086 struct iovec iovstack[UIO_FASTIOV];
Dan Rosenberg767b68e2010-09-22 14:32:56 -04001087 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 io_fn_t fn;
1090 iov_fn_t fnv;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (!file->f_op)
1094 goto out;
Jeff Moyerb8373362010-05-26 14:44:25 -07001095
Mathieu Desnoyersa1d714b2013-02-25 10:20:36 -05001096 ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,
Christopher Yeohfcf63402011-10-31 17:06:39 -07001097 UIO_FASTIOV, iovstack, &iov, 1);
Mathieu Desnoyersa1d714b2013-02-25 10:20:36 -05001098 if (ret <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Mathieu Desnoyersa1d714b2013-02-25 10:20:36 -05001101 tot_len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001103 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 goto out;
1105
1106 fnv = NULL;
1107 if (type == READ) {
1108 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001109 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 } else {
1111 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001112 fnv = file->f_op->aio_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001115 if (fnv)
1116 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
1117 pos, fnv);
1118 else
1119 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121out:
1122 if (iov != iovstack)
1123 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -04001124 if ((ret + (type == READ)) > 0) {
Robert Love0eeca282005-07-12 17:06:03 -04001125 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -05001126 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -04001127 else
Eric Paris2a12a9d2009-12-17 21:24:21 -05001128 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -04001129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return ret;
1131}
1132
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001133static size_t compat_readv(struct file *file,
1134 const struct compat_iovec __user *vec,
1135 unsigned long vlen, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 ssize_t ret = -EBADF;
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (!(file->f_mode & FMODE_READ))
1140 goto out;
1141
1142 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001143 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 goto out;
1145
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001146 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148out:
Gerd Hoffmannca8a5bd2009-01-06 14:41:09 -08001149 if (ret > 0)
1150 add_rchar(current, ret);
1151 inc_syscr(current);
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001152 return ret;
1153}
1154
1155asmlinkage ssize_t
1156compat_sys_readv(unsigned long fd, const struct compat_iovec __user *vec,
1157 unsigned long vlen)
1158{
1159 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001160 int fput_needed;
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001161 ssize_t ret;
Al Viro2e2c86b2012-08-20 15:28:00 +01001162 loff_t pos;
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001163
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001164 file = fget_light(fd, &fput_needed);
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001165 if (!file)
1166 return -EBADF;
Al Viro2e2c86b2012-08-20 15:28:00 +01001167 pos = file->f_pos;
1168 ret = compat_readv(file, vec, vlen, &pos);
1169 file->f_pos = pos;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001170 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return ret;
1172}
1173
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001174asmlinkage ssize_t
H. J. Lu4ee5c0d2012-02-14 13:30:41 -08001175compat_sys_preadv64(unsigned long fd, const struct compat_iovec __user *vec,
1176 unsigned long vlen, loff_t pos)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001177{
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001178 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001179 int fput_needed;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001180 ssize_t ret;
1181
1182 if (pos < 0)
1183 return -EINVAL;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001184 file = fget_light(fd, &fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001185 if (!file)
1186 return -EBADF;
Al Viro586ce092011-03-13 01:50:58 -05001187 ret = -ESPIPE;
1188 if (file->f_mode & FMODE_PREAD)
1189 ret = compat_readv(file, vec, vlen, &pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001190 fput_light(file, fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001191 return ret;
1192}
1193
H. J. Lu4ee5c0d2012-02-14 13:30:41 -08001194asmlinkage ssize_t
1195compat_sys_preadv(unsigned long fd, const struct compat_iovec __user *vec,
1196 unsigned long vlen, u32 pos_low, u32 pos_high)
1197{
1198 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1199 return compat_sys_preadv64(fd, vec, vlen, pos);
1200}
1201
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001202static size_t compat_writev(struct file *file,
1203 const struct compat_iovec __user *vec,
1204 unsigned long vlen, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 ssize_t ret = -EBADF;
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (!(file->f_mode & FMODE_WRITE))
1209 goto out;
1210
1211 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001212 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 goto out;
1214
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001215 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217out:
Gerd Hoffmannca8a5bd2009-01-06 14:41:09 -08001218 if (ret > 0)
1219 add_wchar(current, ret);
1220 inc_syscw(current);
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001221 return ret;
1222}
1223
1224asmlinkage ssize_t
1225compat_sys_writev(unsigned long fd, const struct compat_iovec __user *vec,
1226 unsigned long vlen)
1227{
1228 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001229 int fput_needed;
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001230 ssize_t ret;
Al Viro2e2c86b2012-08-20 15:28:00 +01001231 loff_t pos;
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001232
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001233 file = fget_light(fd, &fput_needed);
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001234 if (!file)
1235 return -EBADF;
Al Viro2e2c86b2012-08-20 15:28:00 +01001236 pos = file->f_pos;
1237 ret = compat_writev(file, vec, vlen, &pos);
1238 file->f_pos = pos;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001239 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return ret;
1241}
1242
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001243asmlinkage ssize_t
H. J. Lu4ee5c0d2012-02-14 13:30:41 -08001244compat_sys_pwritev64(unsigned long fd, const struct compat_iovec __user *vec,
1245 unsigned long vlen, loff_t pos)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001246{
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001247 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001248 int fput_needed;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001249 ssize_t ret;
1250
1251 if (pos < 0)
1252 return -EINVAL;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001253 file = fget_light(fd, &fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001254 if (!file)
1255 return -EBADF;
Al Viro586ce092011-03-13 01:50:58 -05001256 ret = -ESPIPE;
1257 if (file->f_mode & FMODE_PWRITE)
1258 ret = compat_writev(file, vec, vlen, &pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001259 fput_light(file, fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001260 return ret;
1261}
1262
H. J. Lu4ee5c0d2012-02-14 13:30:41 -08001263asmlinkage ssize_t
1264compat_sys_pwritev(unsigned long fd, const struct compat_iovec __user *vec,
1265 unsigned long vlen, u32 pos_low, u32 pos_high)
1266{
1267 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1268 return compat_sys_pwritev64(fd, vec, vlen, pos);
1269}
1270
Andi Kleend2610202006-05-01 12:15:48 -07001271asmlinkage long
1272compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32,
1273 unsigned int nr_segs, unsigned int flags)
1274{
1275 unsigned i;
Al Viro90cbad62006-10-10 22:44:17 +01001276 struct iovec __user *iov;
Jens Axboe98232d52006-05-04 09:13:49 +02001277 if (nr_segs > UIO_MAXIOV)
Andi Kleend2610202006-05-01 12:15:48 -07001278 return -EINVAL;
1279 iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec));
1280 for (i = 0; i < nr_segs; i++) {
1281 struct compat_iovec v;
1282 if (get_user(v.iov_base, &iov32[i].iov_base) ||
1283 get_user(v.iov_len, &iov32[i].iov_len) ||
1284 put_user(compat_ptr(v.iov_base), &iov[i].iov_base) ||
1285 put_user(v.iov_len, &iov[i].iov_len))
1286 return -EFAULT;
1287 }
1288 return sys_vmsplice(fd, iov, nr_segs, flags);
1289}
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291/*
Miklos Szeredie922efc2005-09-06 15:18:25 -07001292 * Exactly like fs/open.c:sys_open(), except that it doesn't set the
1293 * O_LARGEFILE flag.
1294 */
1295asmlinkage long
Al Viroa218d0f2011-11-21 14:59:34 -05001296compat_sys_open(const char __user *filename, int flags, umode_t mode)
Miklos Szeredie922efc2005-09-06 15:18:25 -07001297{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001298 return do_sys_open(AT_FDCWD, filename, flags, mode);
1299}
1300
1301/*
1302 * Exactly like fs/open.c:sys_openat(), except that it doesn't set the
1303 * O_LARGEFILE flag.
1304 */
1305asmlinkage long
Al Viroa218d0f2011-11-21 14:59:34 -05001306compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, umode_t mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001307{
1308 return do_sys_open(dfd, filename, flags, mode);
Miklos Szeredie922efc2005-09-06 15:18:25 -07001309}
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311#define __COMPAT_NFDBITS (8 * sizeof(compat_ulong_t))
1312
Thomas Gleixnerb773ad42008-08-31 08:16:57 -07001313static int poll_select_copy_remaining(struct timespec *end_time, void __user *p,
1314 int timeval, int ret)
1315{
1316 struct timespec ts;
1317
1318 if (!p)
1319 return ret;
1320
1321 if (current->personality & STICKY_TIMEOUTS)
1322 goto sticky;
1323
1324 /* No update for zero timeout */
1325 if (!end_time->tv_sec && !end_time->tv_nsec)
1326 return ret;
1327
1328 ktime_get_ts(&ts);
1329 ts = timespec_sub(*end_time, ts);
1330 if (ts.tv_sec < 0)
1331 ts.tv_sec = ts.tv_nsec = 0;
1332
1333 if (timeval) {
1334 struct compat_timeval rtv;
1335
1336 rtv.tv_sec = ts.tv_sec;
1337 rtv.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
1338
1339 if (!copy_to_user(p, &rtv, sizeof(rtv)))
1340 return ret;
1341 } else {
1342 struct compat_timespec rts;
1343
1344 rts.tv_sec = ts.tv_sec;
1345 rts.tv_nsec = ts.tv_nsec;
1346
1347 if (!copy_to_user(p, &rts, sizeof(rts)))
1348 return ret;
1349 }
1350 /*
1351 * If an application puts its timeval in read-only memory, we
1352 * don't want the Linux-specific update to the timeval to
1353 * cause a fault after the select has completed
1354 * successfully. However, because we're not updating the
1355 * timeval, we can't restart the system call.
1356 */
1357
1358sticky:
1359 if (ret == -ERESTARTNOHAND)
1360 ret = -EINTR;
1361 return ret;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/*
1365 * Ooo, nasty. We need here to frob 32-bit unsigned longs to
1366 * 64-bit unsigned longs.
1367 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001368static
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369int compat_get_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1370 unsigned long *fdset)
1371{
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001372 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (ufdset) {
1374 unsigned long odd;
1375
1376 if (!access_ok(VERIFY_WRITE, ufdset, nr*sizeof(compat_ulong_t)))
1377 return -EFAULT;
1378
1379 odd = nr & 1UL;
1380 nr &= ~1UL;
1381 while (nr) {
1382 unsigned long h, l;
Heiko Carstens7116e992006-12-06 20:36:36 -08001383 if (__get_user(l, ufdset) || __get_user(h, ufdset+1))
1384 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 ufdset += 2;
1386 *fdset++ = h << 32 | l;
1387 nr -= 2;
1388 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001389 if (odd && __get_user(*fdset, ufdset))
1390 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 } else {
1392 /* Tricky, must clear full unsigned long in the
1393 * kernel fdset at the end, this makes sure that
1394 * actually happens.
1395 */
1396 memset(fdset, 0, ((nr + 1) & ~1)*sizeof(compat_ulong_t));
1397 }
1398 return 0;
1399}
1400
Arjan van de Ven858119e2006-01-14 13:20:43 -08001401static
Heiko Carstens7116e992006-12-06 20:36:36 -08001402int compat_set_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1403 unsigned long *fdset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 unsigned long odd;
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001406 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 if (!ufdset)
Heiko Carstens7116e992006-12-06 20:36:36 -08001409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 odd = nr & 1UL;
1412 nr &= ~1UL;
1413 while (nr) {
1414 unsigned long h, l;
1415 l = *fdset++;
1416 h = l >> 32;
Heiko Carstens7116e992006-12-06 20:36:36 -08001417 if (__put_user(l, ufdset) || __put_user(h, ufdset+1))
1418 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 ufdset += 2;
1420 nr -= 2;
1421 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001422 if (odd && __put_user(*fdset, ufdset))
1423 return -EFAULT;
1424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
1427
1428/*
1429 * This is a virtual copy of sys_select from fs/select.c and probably
1430 * should be compared to it from time to time
1431 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433/*
1434 * We can actually return ERESTARTSYS instead of EINTR, but I'd
1435 * like to be certain this leads to no problems. So I return
1436 * EINTR just for safety.
1437 *
1438 * Update: ERESTARTSYS breaks at least the xview clock binary, so
1439 * I'm trying ERESTARTNOHAND which restart only when you want to.
1440 */
David Woodhouse9f729492006-01-18 17:44:05 -08001441int compat_core_sys_select(int n, compat_ulong_t __user *inp,
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001442 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1443 struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 fd_set_bits fds;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001446 void *bits;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001447 int size, max_fds, ret = -EINVAL;
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001448 struct fdtable *fdt;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001449 long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (n < 0)
1452 goto out_nofds;
1453
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001454 /* max_fds can increase, so grab it once to avoid race */
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001455 rcu_read_lock();
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001456 fdt = files_fdtable(current->files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001457 max_fds = fdt->max_fds;
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001458 rcu_read_unlock();
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001459 if (n > max_fds)
1460 n = max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /*
1463 * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
1464 * since we used fdset we need to allocate memory in units of
1465 * long-words.
1466 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 size = FDS_BYTES(n);
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001468 bits = stack_fds;
1469 if (size > sizeof(stack_fds) / 6) {
1470 bits = kmalloc(6 * size, GFP_KERNEL);
1471 ret = -ENOMEM;
1472 if (!bits)
1473 goto out_nofds;
1474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 fds.in = (unsigned long *) bits;
1476 fds.out = (unsigned long *) (bits + size);
1477 fds.ex = (unsigned long *) (bits + 2*size);
1478 fds.res_in = (unsigned long *) (bits + 3*size);
1479 fds.res_out = (unsigned long *) (bits + 4*size);
1480 fds.res_ex = (unsigned long *) (bits + 5*size);
1481
1482 if ((ret = compat_get_fd_set(n, inp, fds.in)) ||
1483 (ret = compat_get_fd_set(n, outp, fds.out)) ||
1484 (ret = compat_get_fd_set(n, exp, fds.ex)))
1485 goto out;
1486 zero_fd_set(n, fds.res_in);
1487 zero_fd_set(n, fds.res_out);
1488 zero_fd_set(n, fds.res_ex);
1489
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001490 ret = do_select(n, &fds, end_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 if (ret < 0)
1493 goto out;
1494 if (!ret) {
1495 ret = -ERESTARTNOHAND;
1496 if (signal_pending(current))
1497 goto out;
1498 ret = 0;
1499 }
1500
Heiko Carstens7116e992006-12-06 20:36:36 -08001501 if (compat_set_fd_set(n, inp, fds.res_in) ||
1502 compat_set_fd_set(n, outp, fds.res_out) ||
1503 compat_set_fd_set(n, exp, fds.res_ex))
1504 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505out:
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001506 if (bits != stack_fds)
1507 kfree(bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508out_nofds:
1509 return ret;
1510}
1511
David Woodhouse9f729492006-01-18 17:44:05 -08001512asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
1513 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1514 struct compat_timeval __user *tvp)
1515{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001516 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001517 struct compat_timeval tv;
1518 int ret;
1519
1520 if (tvp) {
1521 if (copy_from_user(&tv, tvp, sizeof(tv)))
1522 return -EFAULT;
1523
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001524 to = &end_time;
Arjan van de Ven4d36a9e2008-10-25 12:41:41 -07001525 if (poll_select_set_timeout(to,
1526 tv.tv_sec + (tv.tv_usec / USEC_PER_SEC),
1527 (tv.tv_usec % USEC_PER_SEC) * NSEC_PER_USEC))
David Woodhouse9f729492006-01-18 17:44:05 -08001528 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -08001529 }
1530
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001531 ret = compat_core_sys_select(n, inp, outp, exp, to);
1532 ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001533
1534 return ret;
1535}
1536
Christoph Hellwig5d0e5282010-03-10 15:21:13 -08001537struct compat_sel_arg_struct {
1538 compat_ulong_t n;
1539 compat_uptr_t inp;
1540 compat_uptr_t outp;
1541 compat_uptr_t exp;
1542 compat_uptr_t tvp;
1543};
1544
1545asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg)
1546{
1547 struct compat_sel_arg_struct a;
1548
1549 if (copy_from_user(&a, arg, sizeof(a)))
1550 return -EFAULT;
1551 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
1552 compat_ptr(a.exp), compat_ptr(a.tvp));
1553}
1554
Roland McGrathf3de2722008-04-30 00:53:09 -07001555#ifdef HAVE_SET_RESTORE_SIGMASK
Heiko Carstensc9da9f22009-01-14 14:13:57 +01001556static long do_compat_pselect(int n, compat_ulong_t __user *inp,
David Woodhouse9f729492006-01-18 17:44:05 -08001557 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1558 struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask,
1559 compat_size_t sigsetsize)
1560{
1561 compat_sigset_t ss32;
1562 sigset_t ksigmask, sigsaved;
David Woodhouse9f729492006-01-18 17:44:05 -08001563 struct compat_timespec ts;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001564 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001565 int ret;
1566
1567 if (tsp) {
1568 if (copy_from_user(&ts, tsp, sizeof(ts)))
1569 return -EFAULT;
1570
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001571 to = &end_time;
1572 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
David Woodhouse9f729492006-01-18 17:44:05 -08001573 return -EINVAL;
1574 }
1575
1576 if (sigmask) {
1577 if (sigsetsize != sizeof(compat_sigset_t))
1578 return -EINVAL;
1579 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1580 return -EFAULT;
1581 sigset_from_compat(&ksigmask, &ss32);
1582
1583 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1584 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1585 }
1586
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001587 ret = compat_core_sys_select(n, inp, outp, exp, to);
1588 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001589
1590 if (ret == -ERESTARTNOHAND) {
1591 /*
1592 * Don't restore the signal mask yet. Let do_signal() deliver
1593 * the signal on the way back to userspace, before the signal
1594 * mask is restored.
1595 */
1596 if (sigmask) {
1597 memcpy(&current->saved_sigmask, &sigsaved,
1598 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001599 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -08001600 }
1601 } else if (sigmask)
1602 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1603
1604 return ret;
1605}
1606
1607asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
1608 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1609 struct compat_timespec __user *tsp, void __user *sig)
1610{
1611 compat_size_t sigsetsize = 0;
1612 compat_uptr_t up = 0;
1613
1614 if (sig) {
1615 if (!access_ok(VERIFY_READ, sig,
1616 sizeof(compat_uptr_t)+sizeof(compat_size_t)) ||
1617 __get_user(up, (compat_uptr_t __user *)sig) ||
1618 __get_user(sigsetsize,
1619 (compat_size_t __user *)(sig+sizeof(up))))
1620 return -EFAULT;
1621 }
Heiko Carstensc9da9f22009-01-14 14:13:57 +01001622 return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up),
1623 sigsetsize);
David Woodhouse9f729492006-01-18 17:44:05 -08001624}
1625
1626asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
1627 unsigned int nfds, struct compat_timespec __user *tsp,
1628 const compat_sigset_t __user *sigmask, compat_size_t sigsetsize)
1629{
1630 compat_sigset_t ss32;
1631 sigset_t ksigmask, sigsaved;
1632 struct compat_timespec ts;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001633 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001634 int ret;
1635
1636 if (tsp) {
1637 if (copy_from_user(&ts, tsp, sizeof(ts)))
1638 return -EFAULT;
1639
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001640 to = &end_time;
1641 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
1642 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -08001643 }
1644
1645 if (sigmask) {
Alexey Dobriyan3835a9b2006-05-15 09:44:27 -07001646 if (sigsetsize != sizeof(compat_sigset_t))
David Woodhouse9f729492006-01-18 17:44:05 -08001647 return -EINVAL;
1648 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1649 return -EFAULT;
1650 sigset_from_compat(&ksigmask, &ss32);
1651
1652 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1653 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1654 }
1655
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001656 ret = do_sys_poll(ufds, nfds, to);
David Woodhouse9f729492006-01-18 17:44:05 -08001657
1658 /* We can restart this syscall, usually */
1659 if (ret == -EINTR) {
1660 /*
1661 * Don't restore the signal mask yet. Let do_signal() deliver
1662 * the signal on the way back to userspace, before the signal
1663 * mask is restored.
1664 */
1665 if (sigmask) {
1666 memcpy(&current->saved_sigmask, &sigsaved,
1667 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001668 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -08001669 }
1670 ret = -ERESTARTNOHAND;
1671 } else if (sigmask)
1672 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1673
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001674 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001675
1676 return ret;
1677}
Roland McGrathf3de2722008-04-30 00:53:09 -07001678#endif /* HAVE_SET_RESTORE_SIGMASK */
David Woodhouse9f729492006-01-18 17:44:05 -08001679
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001680#ifdef CONFIG_EPOLL
1681
Roland McGrathf3de2722008-04-30 00:53:09 -07001682#ifdef HAVE_SET_RESTORE_SIGMASK
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001683asmlinkage long compat_sys_epoll_pwait(int epfd,
1684 struct compat_epoll_event __user *events,
1685 int maxevents, int timeout,
1686 const compat_sigset_t __user *sigmask,
1687 compat_size_t sigsetsize)
1688{
1689 long err;
1690 compat_sigset_t csigmask;
1691 sigset_t ksigmask, sigsaved;
1692
1693 /*
1694 * If the caller wants a certain signal mask to be set during the wait,
1695 * we apply it here.
1696 */
1697 if (sigmask) {
1698 if (sigsetsize != sizeof(compat_sigset_t))
1699 return -EINVAL;
1700 if (copy_from_user(&csigmask, sigmask, sizeof(csigmask)))
1701 return -EFAULT;
1702 sigset_from_compat(&ksigmask, &csigmask);
1703 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
1704 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1705 }
1706
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001707 err = sys_epoll_wait(epfd, events, maxevents, timeout);
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001708
1709 /*
1710 * If we changed the signal mask, we need to restore the original one.
1711 * In case we've got a signal while waiting, we do not restore the
1712 * signal mask yet, and we allow do_signal() to deliver the signal on
1713 * the way back to userspace, before the signal mask is restored.
1714 */
1715 if (sigmask) {
1716 if (err == -EINTR) {
1717 memcpy(&current->saved_sigmask, &sigsaved,
1718 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001719 set_restore_sigmask();
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001720 } else
1721 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1722 }
1723
1724 return err;
1725}
Roland McGrathf3de2722008-04-30 00:53:09 -07001726#endif /* HAVE_SET_RESTORE_SIGMASK */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001727
1728#endif /* CONFIG_EPOLL */
Davide Libenzi6d18c922007-05-10 22:23:15 -07001729
1730#ifdef CONFIG_SIGNALFD
1731
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07001732asmlinkage long compat_sys_signalfd4(int ufd,
1733 const compat_sigset_t __user *sigmask,
1734 compat_size_t sigsetsize, int flags)
Davide Libenzi6d18c922007-05-10 22:23:15 -07001735{
1736 compat_sigset_t ss32;
1737 sigset_t tmp;
1738 sigset_t __user *ksigmask;
1739
1740 if (sigsetsize != sizeof(compat_sigset_t))
1741 return -EINVAL;
1742 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1743 return -EFAULT;
1744 sigset_from_compat(&tmp, &ss32);
1745 ksigmask = compat_alloc_user_space(sizeof(sigset_t));
1746 if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t)))
1747 return -EFAULT;
1748
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07001749 return sys_signalfd4(ufd, ksigmask, sizeof(sigset_t), flags);
Davide Libenzi6d18c922007-05-10 22:23:15 -07001750}
1751
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07001752asmlinkage long compat_sys_signalfd(int ufd,
1753 const compat_sigset_t __user *sigmask,
1754 compat_size_t sigsetsize)
1755{
1756 return compat_sys_signalfd4(ufd, sigmask, sigsetsize, 0);
1757}
Davide Libenzi6d18c922007-05-10 22:23:15 -07001758#endif /* CONFIG_SIGNALFD */
1759
Davide Libenzi83f5d122007-05-10 22:23:18 -07001760#ifdef CONFIG_TIMERFD
1761
Davide Libenzi4d672e72008-02-04 22:27:26 -08001762asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
1763 const struct compat_itimerspec __user *utmr,
1764 struct compat_itimerspec __user *otmr)
Davide Libenzi83f5d122007-05-10 22:23:18 -07001765{
Davide Libenzi4d672e72008-02-04 22:27:26 -08001766 int error;
Davide Libenzi83f5d122007-05-10 22:23:18 -07001767 struct itimerspec t;
1768 struct itimerspec __user *ut;
1769
Davide Libenzi83f5d122007-05-10 22:23:18 -07001770 if (get_compat_itimerspec(&t, utmr))
Heiko Carstens8317f142007-05-16 22:11:08 -07001771 return -EFAULT;
Davide Libenzi4d672e72008-02-04 22:27:26 -08001772 ut = compat_alloc_user_space(2 * sizeof(struct itimerspec));
1773 if (copy_to_user(&ut[0], &t, sizeof(t)))
Heiko Carstens8317f142007-05-16 22:11:08 -07001774 return -EFAULT;
Davide Libenzi4d672e72008-02-04 22:27:26 -08001775 error = sys_timerfd_settime(ufd, flags, &ut[0], &ut[1]);
1776 if (!error && otmr)
1777 error = (copy_from_user(&t, &ut[1], sizeof(struct itimerspec)) ||
1778 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
Davide Libenzi83f5d122007-05-10 22:23:18 -07001779
Davide Libenzi4d672e72008-02-04 22:27:26 -08001780 return error;
1781}
1782
1783asmlinkage long compat_sys_timerfd_gettime(int ufd,
1784 struct compat_itimerspec __user *otmr)
1785{
1786 int error;
1787 struct itimerspec t;
1788 struct itimerspec __user *ut;
1789
1790 ut = compat_alloc_user_space(sizeof(struct itimerspec));
1791 error = sys_timerfd_gettime(ufd, ut);
1792 if (!error)
1793 error = (copy_from_user(&t, ut, sizeof(struct itimerspec)) ||
1794 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
1795
1796 return error;
Davide Libenzi83f5d122007-05-10 22:23:18 -07001797}
1798
1799#endif /* CONFIG_TIMERFD */
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +05301800
1801#ifdef CONFIG_FHANDLE
1802/*
1803 * Exactly like fs/open.c:sys_open_by_handle_at(), except that it
1804 * doesn't set the O_LARGEFILE flag.
1805 */
1806asmlinkage long
1807compat_sys_open_by_handle_at(int mountdirfd,
1808 struct file_handle __user *handle, int flags)
1809{
1810 return do_handle_open(mountdirfd, handle, flags);
1811}
1812#endif