blob: 05e3f3d2cd77e974d2613b2a1c4a2b00a60e436f [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>
36#include <linux/module.h>
37#include <linux/dirent.h>
Robert Love0eeca282005-07-12 17:06:03 -040038#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/highuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/personality.h>
41#include <linux/rwsem.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070042#include <linux/tsacct_kern.h>
Christoph Hellwig6272e262007-05-08 00:29:21 -070043#include <linux/security.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040044#include <linux/highmem.h>
Davide Libenzi6d18c922007-05-10 22:23:15 -070045#include <linux/signal.h>
Al Virobd01f842006-10-19 17:23:57 -040046#include <linux/poll.h>
David S. Miller4a805e82005-09-14 21:40:00 -070047#include <linux/mm.h>
Davide Libenzif6dfb4f2007-03-07 20:41:21 -080048#include <linux/eventpoll.h>
Al Viro498052b2009-03-30 07:20:30 -040049#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
wu zhangjin504b7012010-10-30 08:19:35 -070051#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/uaccess.h>
54#include <asm/mmu_context.h>
55#include <asm/ioctls.h>
David Howells07f3f052006-09-30 20:52:18 +020056#include "internal.h"
David Woodhouse9f729492006-01-18 17:44:05 -080057
Andi Kleenbebfa102006-06-26 13:56:52 +020058int compat_log = 1;
59
60int compat_printk(const char *fmt, ...)
61{
62 va_list ap;
63 int ret;
64 if (!compat_log)
65 return 0;
66 va_start(ap, fmt);
67 ret = vprintk(fmt, ap);
68 va_end(ap);
69 return ret;
70}
71
Badari Pulavartyee0b3e62006-09-30 23:28:47 -070072#include "read_write.h"
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
75 * Not all architectures have sys_utime, so implement this in terms
76 * of sys_utimes.
77 */
David Howellsc7887322010-08-11 11:26:22 +010078asmlinkage long compat_sys_utime(const char __user *filename,
79 struct compat_utimbuf __user *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Ulrich Drepper1c710c82007-05-08 00:33:25 -070081 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 if (t) {
84 if (get_user(tv[0].tv_sec, &t->actime) ||
85 get_user(tv[1].tv_sec, &t->modtime))
86 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -070087 tv[0].tv_nsec = 0;
88 tv[1].tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -070090 return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0);
91}
92
David Howellsc7887322010-08-11 11:26:22 +010093asmlinkage 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 -070094{
95 struct timespec tv[2];
96
97 if (t) {
98 if (get_compat_timespec(&tv[0], &t[0]) ||
99 get_compat_timespec(&tv[1], &t[1]))
100 return -EFAULT;
101
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700102 if (tv[0].tv_nsec == UTIME_OMIT && tv[1].tv_nsec == UTIME_OMIT)
103 return 0;
104 }
105 return do_utimes(dfd, filename, t ? tv : NULL, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
David Howellsc7887322010-08-11 11:26:22 +0100108asmlinkage long compat_sys_futimesat(unsigned int dfd, const char __user *filename, struct compat_timeval __user *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700110 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100112 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (get_user(tv[0].tv_sec, &t[0].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700114 get_user(tv[0].tv_nsec, &t[0].tv_usec) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 get_user(tv[1].tv_sec, &t[1].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700116 get_user(tv[1].tv_nsec, &t[1].tv_usec))
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100117 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700118 if (tv[0].tv_nsec >= 1000000 || tv[0].tv_nsec < 0 ||
119 tv[1].tv_nsec >= 1000000 || tv[1].tv_nsec < 0)
120 return -EINVAL;
121 tv[0].tv_nsec *= 1000;
122 tv[1].tv_nsec *= 1000;
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100123 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700124 return do_utimes(dfd, filename, t ? tv : NULL, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800125}
126
David Howellsc7887322010-08-11 11:26:22 +0100127asmlinkage long compat_sys_utimes(const char __user *filename, struct compat_timeval __user *t)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800128{
129 return compat_sys_futimesat(AT_FDCWD, filename, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Christoph Hellwigf7a50002008-10-15 22:02:05 -0700132static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf)
133{
134 compat_ino_t ino = stat->ino;
135 typeof(ubuf->st_uid) uid = 0;
136 typeof(ubuf->st_gid) gid = 0;
137 int err;
138
139 SET_UID(uid, stat->uid);
140 SET_GID(gid, stat->gid);
141
142 if ((u64) stat->size > MAX_NON_LFS ||
143 !old_valid_dev(stat->dev) ||
144 !old_valid_dev(stat->rdev))
145 return -EOVERFLOW;
146 if (sizeof(ino) < sizeof(stat->ino) && ino != stat->ino)
147 return -EOVERFLOW;
148
149 if (clear_user(ubuf, sizeof(*ubuf)))
150 return -EFAULT;
151
152 err = __put_user(old_encode_dev(stat->dev), &ubuf->st_dev);
153 err |= __put_user(ino, &ubuf->st_ino);
154 err |= __put_user(stat->mode, &ubuf->st_mode);
155 err |= __put_user(stat->nlink, &ubuf->st_nlink);
156 err |= __put_user(uid, &ubuf->st_uid);
157 err |= __put_user(gid, &ubuf->st_gid);
158 err |= __put_user(old_encode_dev(stat->rdev), &ubuf->st_rdev);
159 err |= __put_user(stat->size, &ubuf->st_size);
160 err |= __put_user(stat->atime.tv_sec, &ubuf->st_atime);
161 err |= __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec);
162 err |= __put_user(stat->mtime.tv_sec, &ubuf->st_mtime);
163 err |= __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec);
164 err |= __put_user(stat->ctime.tv_sec, &ubuf->st_ctime);
165 err |= __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec);
166 err |= __put_user(stat->blksize, &ubuf->st_blksize);
167 err |= __put_user(stat->blocks, &ubuf->st_blocks);
168 return err;
169}
170
David Howellsc7887322010-08-11 11:26:22 +0100171asmlinkage long compat_sys_newstat(const char __user * filename,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct compat_stat __user *statbuf)
173{
174 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400175 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400177 error = vfs_stat(filename, &stat);
178 if (error)
179 return error;
180 return cp_compat_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
David Howellsc7887322010-08-11 11:26:22 +0100183asmlinkage long compat_sys_newlstat(const char __user * filename,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct compat_stat __user *statbuf)
185{
186 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400187 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400189 error = vfs_lstat(filename, &stat);
190 if (error)
191 return error;
192 return cp_compat_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Kyle McMartin82d821d2006-03-24 03:18:20 -0800195#ifndef __ARCH_WANT_STAT64
David Howellsc7887322010-08-11 11:26:22 +0100196asmlinkage long compat_sys_newfstatat(unsigned int dfd,
197 const char __user *filename,
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800198 struct compat_stat __user *statbuf, int flag)
199{
200 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400201 int error;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800202
Oleg Drokin0112fc22009-04-08 20:05:42 +0400203 error = vfs_fstatat(dfd, filename, &stat, flag);
204 if (error)
205 return error;
206 return cp_compat_stat(&stat, statbuf);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800207}
Kyle McMartin82d821d2006-03-24 03:18:20 -0800208#endif
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210asmlinkage long compat_sys_newfstat(unsigned int fd,
211 struct compat_stat __user * statbuf)
212{
213 struct kstat stat;
214 int error = vfs_fstat(fd, &stat);
215
216 if (!error)
217 error = cp_compat_stat(&stat, statbuf);
218 return error;
219}
220
221static int put_compat_statfs(struct compat_statfs __user *ubuf, struct kstatfs *kbuf)
222{
223
224 if (sizeof ubuf->f_blocks == 4) {
Jon Tollefsonf4a67cc2008-07-23 21:27:55 -0700225 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
226 kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -EOVERFLOW;
228 /* f_files and f_ffree may be -1; it's okay
229 * to stuff that into 32 bits */
230 if (kbuf->f_files != 0xffffffffffffffffULL
231 && (kbuf->f_files & 0xffffffff00000000ULL))
232 return -EOVERFLOW;
233 if (kbuf->f_ffree != 0xffffffffffffffffULL
234 && (kbuf->f_ffree & 0xffffffff00000000ULL))
235 return -EOVERFLOW;
236 }
237 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
238 __put_user(kbuf->f_type, &ubuf->f_type) ||
239 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
240 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
241 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
242 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
243 __put_user(kbuf->f_files, &ubuf->f_files) ||
244 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
245 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
246 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
247 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
248 __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
249 __put_user(0, &ubuf->f_spare[0]) ||
250 __put_user(0, &ubuf->f_spare[1]) ||
251 __put_user(0, &ubuf->f_spare[2]) ||
252 __put_user(0, &ubuf->f_spare[3]) ||
253 __put_user(0, &ubuf->f_spare[4]))
254 return -EFAULT;
255 return 0;
256}
257
258/*
Namhyung Kim974d8792010-12-27 01:41:53 +0900259 * The following statfs calls are copies of code from fs/statfs.c and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 * should be checked against those from time to time
261 */
Al Viro2d8f3032008-07-22 09:59:21 -0400262asmlinkage long compat_sys_statfs(const char __user *pathname, struct compat_statfs __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Al Viroc8b91ac2011-03-12 10:41:39 -0500264 struct kstatfs tmp;
265 int error = user_statfs(pathname, &tmp);
266 if (!error)
267 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return error;
269}
270
271asmlinkage long compat_sys_fstatfs(unsigned int fd, struct compat_statfs __user *buf)
272{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct kstatfs tmp;
Al Viroc8b91ac2011-03-12 10:41:39 -0500274 int error = fd_statfs(fd, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800275 if (!error)
276 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return error;
278}
279
280static int put_compat_statfs64(struct compat_statfs64 __user *ubuf, struct kstatfs *kbuf)
281{
282 if (sizeof ubuf->f_blocks == 4) {
Jon Tollefsonf4a67cc2008-07-23 21:27:55 -0700283 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
284 kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -EOVERFLOW;
286 /* f_files and f_ffree may be -1; it's okay
287 * to stuff that into 32 bits */
288 if (kbuf->f_files != 0xffffffffffffffffULL
289 && (kbuf->f_files & 0xffffffff00000000ULL))
290 return -EOVERFLOW;
291 if (kbuf->f_ffree != 0xffffffffffffffffULL
292 && (kbuf->f_ffree & 0xffffffff00000000ULL))
293 return -EOVERFLOW;
294 }
295 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
296 __put_user(kbuf->f_type, &ubuf->f_type) ||
297 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
298 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
299 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
300 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
301 __put_user(kbuf->f_files, &ubuf->f_files) ||
302 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
303 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
304 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
305 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
Namhyung Kime0bb6bd2010-12-27 01:41:54 +0900306 __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
307 __put_user(kbuf->f_flags, &ubuf->f_flags) ||
308 __clear_user(ubuf->f_spare, sizeof(ubuf->f_spare)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return -EFAULT;
310 return 0;
311}
312
Al Viro2d8f3032008-07-22 09:59:21 -0400313asmlinkage long compat_sys_statfs64(const char __user *pathname, compat_size_t sz, struct compat_statfs64 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct kstatfs tmp;
316 int error;
317
318 if (sz != sizeof(*buf))
319 return -EINVAL;
320
Al Viroc8b91ac2011-03-12 10:41:39 -0500321 error = user_statfs(pathname, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800322 if (!error)
323 error = put_compat_statfs64(buf, &tmp);
Al Viroc8b91ac2011-03-12 10:41:39 -0500324 return error;
325}
326
327asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz, struct compat_statfs64 __user *buf)
328{
329 struct kstatfs tmp;
330 int error;
331
332 if (sz != sizeof(*buf))
333 return -EINVAL;
334
335 error = fd_statfs(fd, &tmp);
336 if (!error)
337 error = put_compat_statfs64(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return error;
339}
340
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100341/*
342 * This is a copy of sys_ustat, just dealing with a structure layout.
343 * Given how simple this syscall is that apporach is more maintainable
344 * than the various conversion hacks.
345 */
346asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u)
347{
348 struct super_block *sb;
349 struct compat_ustat tmp;
350 struct kstatfs sbuf;
351 int err;
352
353 sb = user_get_super(new_decode_dev(dev));
354 if (!sb)
355 return -EINVAL;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +0200356 err = statfs_by_dentry(sb->s_root, &sbuf);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100357 drop_super(sb);
358 if (err)
359 return err;
360
361 memset(&tmp, 0, sizeof(struct compat_ustat));
362 tmp.f_tfree = sbuf.f_bfree;
363 tmp.f_tinode = sbuf.f_ffree;
364 if (copy_to_user(u, &tmp, sizeof(struct compat_ustat)))
365 return -EFAULT;
366 return 0;
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
370{
371 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
372 __get_user(kfl->l_type, &ufl->l_type) ||
373 __get_user(kfl->l_whence, &ufl->l_whence) ||
374 __get_user(kfl->l_start, &ufl->l_start) ||
375 __get_user(kfl->l_len, &ufl->l_len) ||
376 __get_user(kfl->l_pid, &ufl->l_pid))
377 return -EFAULT;
378 return 0;
379}
380
381static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
382{
383 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
384 __put_user(kfl->l_type, &ufl->l_type) ||
385 __put_user(kfl->l_whence, &ufl->l_whence) ||
386 __put_user(kfl->l_start, &ufl->l_start) ||
387 __put_user(kfl->l_len, &ufl->l_len) ||
388 __put_user(kfl->l_pid, &ufl->l_pid))
389 return -EFAULT;
390 return 0;
391}
392
393#ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
394static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
395{
396 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
397 __get_user(kfl->l_type, &ufl->l_type) ||
398 __get_user(kfl->l_whence, &ufl->l_whence) ||
399 __get_user(kfl->l_start, &ufl->l_start) ||
400 __get_user(kfl->l_len, &ufl->l_len) ||
401 __get_user(kfl->l_pid, &ufl->l_pid))
402 return -EFAULT;
403 return 0;
404}
405#endif
406
407#ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
408static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
409{
410 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
411 __put_user(kfl->l_type, &ufl->l_type) ||
412 __put_user(kfl->l_whence, &ufl->l_whence) ||
413 __put_user(kfl->l_start, &ufl->l_start) ||
414 __put_user(kfl->l_len, &ufl->l_len) ||
415 __put_user(kfl->l_pid, &ufl->l_pid))
416 return -EFAULT;
417 return 0;
418}
419#endif
420
421asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
422 unsigned long arg)
423{
424 mm_segment_t old_fs;
425 struct flock f;
426 long ret;
427
428 switch (cmd) {
429 case F_GETLK:
430 case F_SETLK:
431 case F_SETLKW:
432 ret = get_compat_flock(&f, compat_ptr(arg));
433 if (ret != 0)
434 break;
435 old_fs = get_fs();
436 set_fs(KERNEL_DS);
437 ret = sys_fcntl(fd, cmd, (unsigned long)&f);
438 set_fs(old_fs);
439 if (cmd == F_GETLK && ret == 0) {
Nikanth Karthikesanff677f82009-04-01 14:40:51 +0530440 /* GETLK was successful and we need to return the data...
NeilBrown2520f142006-01-08 01:02:40 -0800441 * but it needs to fit in the compat structure.
442 * l_start shouldn't be too big, unless the original
443 * start + end is greater than COMPAT_OFF_T_MAX, in which
444 * case the app was asking for trouble, so we return
445 * -EOVERFLOW in that case.
446 * l_len could be too big, in which case we just truncate it,
447 * and only allow the app to see that part of the conflicting
448 * lock that might make sense to it anyway
449 */
450
451 if (f.l_start > COMPAT_OFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800453 if (f.l_len > COMPAT_OFF_T_MAX)
454 f.l_len = COMPAT_OFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (ret == 0)
456 ret = put_compat_flock(&f, compat_ptr(arg));
457 }
458 break;
459
460 case F_GETLK64:
461 case F_SETLK64:
462 case F_SETLKW64:
463 ret = get_compat_flock64(&f, compat_ptr(arg));
464 if (ret != 0)
465 break;
466 old_fs = get_fs();
467 set_fs(KERNEL_DS);
468 ret = sys_fcntl(fd, (cmd == F_GETLK64) ? F_GETLK :
469 ((cmd == F_SETLK64) ? F_SETLK : F_SETLKW),
470 (unsigned long)&f);
471 set_fs(old_fs);
472 if (cmd == F_GETLK64 && ret == 0) {
NeilBrown2520f142006-01-08 01:02:40 -0800473 /* need to return lock information - see above for commentary */
474 if (f.l_start > COMPAT_LOFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800476 if (f.l_len > COMPAT_LOFF_T_MAX)
477 f.l_len = COMPAT_LOFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (ret == 0)
479 ret = put_compat_flock64(&f, compat_ptr(arg));
480 }
481 break;
482
483 default:
484 ret = sys_fcntl(fd, cmd, arg);
485 break;
486 }
487 return ret;
488}
489
490asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
491 unsigned long arg)
492{
493 if ((cmd == F_GETLK64) || (cmd == F_SETLK64) || (cmd == F_SETLKW64))
494 return -EINVAL;
495 return compat_sys_fcntl64(fd, cmd, arg);
496}
497
498asmlinkage long
499compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
500{
501 long ret;
502 aio_context_t ctx64;
503
504 mm_segment_t oldfs = get_fs();
505 if (unlikely(get_user(ctx64, ctx32p)))
506 return -EFAULT;
507
508 set_fs(KERNEL_DS);
509 /* The __user pointer cast is valid because of the set_fs() */
510 ret = sys_io_setup(nr_reqs, (aio_context_t __user *) &ctx64);
511 set_fs(oldfs);
512 /* truncating is ok because it's a user address */
513 if (!ret)
514 ret = put_user((u32) ctx64, ctx32p);
515 return ret;
516}
517
518asmlinkage long
519compat_sys_io_getevents(aio_context_t ctx_id,
520 unsigned long min_nr,
521 unsigned long nr,
522 struct io_event __user *events,
523 struct compat_timespec __user *timeout)
524{
525 long ret;
526 struct timespec t;
527 struct timespec __user *ut = NULL;
528
529 ret = -EFAULT;
530 if (unlikely(!access_ok(VERIFY_WRITE, events,
531 nr * sizeof(struct io_event))))
532 goto out;
533 if (timeout) {
534 if (get_compat_timespec(&t, timeout))
535 goto out;
536
537 ut = compat_alloc_user_space(sizeof(*ut));
538 if (copy_to_user(ut, &t, sizeof(t)) )
539 goto out;
540 }
541 ret = sys_io_getevents(ctx_id, min_nr, nr, events, ut);
542out:
543 return ret;
544}
545
Jeff Moyerb8373362010-05-26 14:44:25 -0700546/* A write operation does a read from user space and vice versa */
547#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
548
549ssize_t compat_rw_copy_check_uvector(int type,
550 const struct compat_iovec __user *uvector, unsigned long nr_segs,
551 unsigned long fast_segs, struct iovec *fast_pointer,
552 struct iovec **ret_pointer)
553{
554 compat_ssize_t tot_len;
555 struct iovec *iov = *ret_pointer = fast_pointer;
556 ssize_t ret = 0;
557 int seg;
558
559 /*
560 * SuS says "The readv() function *may* fail if the iovcnt argument
561 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
562 * traditionally returned zero for zero segments, so...
563 */
564 if (nr_segs == 0)
565 goto out;
566
567 ret = -EINVAL;
568 if (nr_segs > UIO_MAXIOV || nr_segs < 0)
569 goto out;
570 if (nr_segs > fast_segs) {
571 ret = -ENOMEM;
572 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Namhyung Kim6a5640f12010-12-27 01:41:52 +0900573 if (iov == NULL)
Jeff Moyerb8373362010-05-26 14:44:25 -0700574 goto out;
Jeff Moyerb8373362010-05-26 14:44:25 -0700575 }
576 *ret_pointer = iov;
577
578 /*
579 * Single unix specification:
580 * We should -EINVAL if an element length is not >= 0 and fitting an
Linus Torvalds435f49a2010-10-29 10:36:49 -0700581 * ssize_t.
Jeff Moyerb8373362010-05-26 14:44:25 -0700582 *
Linus Torvalds435f49a2010-10-29 10:36:49 -0700583 * In Linux, the total length is limited to MAX_RW_COUNT, there is
584 * no overflow possibility.
Jeff Moyerb8373362010-05-26 14:44:25 -0700585 */
586 tot_len = 0;
587 ret = -EINVAL;
588 for (seg = 0; seg < nr_segs; seg++) {
Jeff Moyerb8373362010-05-26 14:44:25 -0700589 compat_uptr_t buf;
590 compat_ssize_t len;
591
592 if (__get_user(len, &uvector->iov_len) ||
593 __get_user(buf, &uvector->iov_base)) {
594 ret = -EFAULT;
595 goto out;
596 }
597 if (len < 0) /* size_t not fitting in compat_ssize_t .. */
598 goto out;
Heiko Carstens7cbe1772010-06-04 14:14:47 -0700599 if (!access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
Jeff Moyerb8373362010-05-26 14:44:25 -0700600 ret = -EFAULT;
601 goto out;
602 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700603 if (len > MAX_RW_COUNT - tot_len)
604 len = MAX_RW_COUNT - tot_len;
605 tot_len += len;
Jeff Moyerb8373362010-05-26 14:44:25 -0700606 iov->iov_base = compat_ptr(buf);
607 iov->iov_len = (compat_size_t) len;
608 uvector++;
609 iov++;
610 }
611 ret = tot_len;
612
613out:
614 return ret;
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617static inline long
618copy_iocb(long nr, u32 __user *ptr32, struct iocb __user * __user *ptr64)
619{
620 compat_uptr_t uptr;
621 int i;
622
623 for (i = 0; i < nr; ++i) {
624 if (get_user(uptr, ptr32 + i))
625 return -EFAULT;
626 if (put_user(compat_ptr(uptr), ptr64 + i))
627 return -EFAULT;
628 }
629 return 0;
630}
631
632#define MAX_AIO_SUBMITS (PAGE_SIZE/sizeof(struct iocb *))
633
634asmlinkage long
635compat_sys_io_submit(aio_context_t ctx_id, int nr, u32 __user *iocb)
636{
637 struct iocb __user * __user *iocb64;
638 long ret;
639
640 if (unlikely(nr < 0))
641 return -EINVAL;
642
643 if (nr > MAX_AIO_SUBMITS)
644 nr = MAX_AIO_SUBMITS;
645
646 iocb64 = compat_alloc_user_space(nr * sizeof(*iocb64));
647 ret = copy_iocb(nr, iocb, iocb64);
648 if (!ret)
Jeff Moyer9d85cba2010-05-26 14:44:26 -0700649 ret = do_io_submit(ctx_id, nr, iocb64, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return ret;
651}
652
653struct compat_ncp_mount_data {
654 compat_int_t version;
655 compat_uint_t ncp_fd;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700656 __compat_uid_t mounted_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 compat_pid_t wdog_pid;
658 unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
659 compat_uint_t time_out;
660 compat_uint_t retry_count;
661 compat_uint_t flags;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700662 __compat_uid_t uid;
663 __compat_gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 compat_mode_t file_mode;
665 compat_mode_t dir_mode;
666};
667
668struct compat_ncp_mount_data_v4 {
669 compat_int_t version;
670 compat_ulong_t flags;
671 compat_ulong_t mounted_uid;
672 compat_long_t wdog_pid;
673 compat_uint_t ncp_fd;
674 compat_uint_t time_out;
675 compat_uint_t retry_count;
676 compat_ulong_t uid;
677 compat_ulong_t gid;
678 compat_ulong_t file_mode;
679 compat_ulong_t dir_mode;
680};
681
682static void *do_ncp_super_data_conv(void *raw_data)
683{
684 int version = *(unsigned int *)raw_data;
685
686 if (version == 3) {
687 struct compat_ncp_mount_data *c_n = raw_data;
688 struct ncp_mount_data *n = raw_data;
689
690 n->dir_mode = c_n->dir_mode;
691 n->file_mode = c_n->file_mode;
692 n->gid = c_n->gid;
693 n->uid = c_n->uid;
694 memmove (n->mounted_vol, c_n->mounted_vol, (sizeof (c_n->mounted_vol) + 3 * sizeof (unsigned int)));
695 n->wdog_pid = c_n->wdog_pid;
696 n->mounted_uid = c_n->mounted_uid;
697 } else if (version == 4) {
698 struct compat_ncp_mount_data_v4 *c_n = raw_data;
699 struct ncp_mount_data_v4 *n = raw_data;
700
701 n->dir_mode = c_n->dir_mode;
702 n->file_mode = c_n->file_mode;
703 n->gid = c_n->gid;
704 n->uid = c_n->uid;
705 n->retry_count = c_n->retry_count;
706 n->time_out = c_n->time_out;
707 n->ncp_fd = c_n->ncp_fd;
708 n->wdog_pid = c_n->wdog_pid;
709 n->mounted_uid = c_n->mounted_uid;
710 n->flags = c_n->flags;
711 } else if (version != 5) {
712 return NULL;
713 }
714
715 return raw_data;
716}
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
David Howells9a9947b2005-04-18 10:54:51 -0700719struct compat_nfs_string {
720 compat_uint_t len;
David Howells5fc3e622005-04-27 15:39:03 -0700721 compat_uptr_t data;
David Howells9a9947b2005-04-18 10:54:51 -0700722};
723
724static inline void compat_nfs_string(struct nfs_string *dst,
725 struct compat_nfs_string *src)
726{
727 dst->data = compat_ptr(src->data);
728 dst->len = src->len;
729}
730
731struct compat_nfs4_mount_data_v1 {
732 compat_int_t version;
733 compat_int_t flags;
734 compat_int_t rsize;
735 compat_int_t wsize;
736 compat_int_t timeo;
737 compat_int_t retrans;
738 compat_int_t acregmin;
739 compat_int_t acregmax;
740 compat_int_t acdirmin;
741 compat_int_t acdirmax;
742 struct compat_nfs_string client_addr;
743 struct compat_nfs_string mnt_path;
744 struct compat_nfs_string hostname;
745 compat_uint_t host_addrlen;
David Howells5fc3e622005-04-27 15:39:03 -0700746 compat_uptr_t host_addr;
David Howells9a9947b2005-04-18 10:54:51 -0700747 compat_int_t proto;
748 compat_int_t auth_flavourlen;
David Howells5fc3e622005-04-27 15:39:03 -0700749 compat_uptr_t auth_flavours;
David Howells9a9947b2005-04-18 10:54:51 -0700750};
751
752static int do_nfs4_super_data_conv(void *raw_data)
753{
754 int version = *(compat_uint_t *) raw_data;
755
756 if (version == 1) {
757 struct compat_nfs4_mount_data_v1 *raw = raw_data;
758 struct nfs4_mount_data *real = raw_data;
759
760 /* copy the fields backwards */
761 real->auth_flavours = compat_ptr(raw->auth_flavours);
762 real->auth_flavourlen = raw->auth_flavourlen;
763 real->proto = raw->proto;
764 real->host_addr = compat_ptr(raw->host_addr);
765 real->host_addrlen = raw->host_addrlen;
766 compat_nfs_string(&real->hostname, &raw->hostname);
767 compat_nfs_string(&real->mnt_path, &raw->mnt_path);
768 compat_nfs_string(&real->client_addr, &raw->client_addr);
769 real->acdirmax = raw->acdirmax;
770 real->acdirmin = raw->acdirmin;
771 real->acregmax = raw->acregmax;
772 real->acregmin = raw->acregmin;
773 real->retrans = raw->retrans;
774 real->timeo = raw->timeo;
775 real->wsize = raw->wsize;
776 real->rsize = raw->rsize;
777 real->flags = raw->flags;
778 real->version = raw->version;
779 }
David Howells9a9947b2005-04-18 10:54:51 -0700780
781 return 0;
782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784#define NCPFS_NAME "ncpfs"
David Howells9a9947b2005-04-18 10:54:51 -0700785#define NFS4_NAME "nfs4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
David Howellsc7887322010-08-11 11:26:22 +0100787asmlinkage long compat_sys_mount(const char __user * dev_name,
788 const char __user * dir_name,
789 const char __user * type, unsigned long flags,
790 const void __user * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Vegard Nossumeca6f532009-09-18 13:05:45 -0700792 char *kernel_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 unsigned long data_page;
Vegard Nossumeca6f532009-09-18 13:05:45 -0700794 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 char *dir_page;
796 int retval;
797
Vegard Nossumeca6f532009-09-18 13:05:45 -0700798 retval = copy_mount_string(type, &kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (retval < 0)
800 goto out;
801
802 dir_page = getname(dir_name);
803 retval = PTR_ERR(dir_page);
804 if (IS_ERR(dir_page))
805 goto out1;
806
Vegard Nossumeca6f532009-09-18 13:05:45 -0700807 retval = copy_mount_string(dev_name, &kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (retval < 0)
809 goto out2;
810
Vegard Nossumeca6f532009-09-18 13:05:45 -0700811 retval = copy_mount_options(data, &data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (retval < 0)
813 goto out3;
814
815 retval = -EINVAL;
816
Vegard Nossumeca6f532009-09-18 13:05:45 -0700817 if (kernel_type && data_page) {
Arnd Bergmann2116b7a2010-10-04 22:55:57 +0200818 if (!strcmp(kernel_type, NCPFS_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 do_ncp_super_data_conv((void *)data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -0700820 } else if (!strcmp(kernel_type, NFS4_NAME)) {
David Howells9a9947b2005-04-18 10:54:51 -0700821 if (do_nfs4_super_data_conv((void *) data_page))
822 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824 }
825
Vegard Nossumeca6f532009-09-18 13:05:45 -0700826 retval = do_mount(kernel_dev, dir_page, kernel_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 flags, (void*)data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
David Howells9a9947b2005-04-18 10:54:51 -0700829 out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 free_page(data_page);
831 out3:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700832 kfree(kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 out2:
834 putname(dir_page);
835 out1:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700836 kfree(kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 out:
838 return retval;
839}
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841struct compat_old_linux_dirent {
842 compat_ulong_t d_ino;
843 compat_ulong_t d_offset;
844 unsigned short d_namlen;
845 char d_name[1];
846};
847
848struct compat_readdir_callback {
849 struct compat_old_linux_dirent __user *dirent;
850 int result;
851};
852
853static int compat_fillonedir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700854 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct compat_readdir_callback *buf = __buf;
857 struct compat_old_linux_dirent __user *dirent;
David Howellsafefdbb2006-10-03 01:13:46 -0700858 compat_ulong_t d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 if (buf->result)
861 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700862 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400863 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
864 buf->result = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700865 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 buf->result++;
868 dirent = buf->dirent;
869 if (!access_ok(VERIFY_WRITE, dirent,
870 (unsigned long)(dirent->d_name + namlen + 1) -
871 (unsigned long)dirent))
872 goto efault;
David Howellsafefdbb2006-10-03 01:13:46 -0700873 if ( __put_user(d_ino, &dirent->d_ino) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 __put_user(offset, &dirent->d_offset) ||
875 __put_user(namlen, &dirent->d_namlen) ||
876 __copy_to_user(dirent->d_name, name, namlen) ||
877 __put_user(0, dirent->d_name + namlen))
878 goto efault;
879 return 0;
880efault:
881 buf->result = -EFAULT;
882 return -EFAULT;
883}
884
885asmlinkage long compat_sys_old_readdir(unsigned int fd,
886 struct compat_old_linux_dirent __user *dirent, unsigned int count)
887{
888 int error;
889 struct file *file;
890 struct compat_readdir_callback buf;
891
892 error = -EBADF;
893 file = fget(fd);
894 if (!file)
895 goto out;
896
897 buf.result = 0;
898 buf.dirent = dirent;
899
900 error = vfs_readdir(file, compat_fillonedir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -0400901 if (buf.result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 error = buf.result;
903
904 fput(file);
905out:
906 return error;
907}
908
909struct compat_linux_dirent {
910 compat_ulong_t d_ino;
911 compat_ulong_t d_off;
912 unsigned short d_reclen;
913 char d_name[1];
914};
915
916struct compat_getdents_callback {
917 struct compat_linux_dirent __user *current_dir;
918 struct compat_linux_dirent __user *previous;
919 int count;
920 int error;
921};
922
923static int compat_filldir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700924 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
926 struct compat_linux_dirent __user * dirent;
927 struct compat_getdents_callback *buf = __buf;
David Howellsafefdbb2006-10-03 01:13:46 -0700928 compat_ulong_t d_ino;
Kevin Winchester85c9fe82010-08-09 17:20:22 -0700929 int reclen = ALIGN(offsetof(struct compat_linux_dirent, d_name) +
930 namlen + 2, sizeof(compat_long_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 buf->error = -EINVAL; /* only used if we fail.. */
933 if (reclen > buf->count)
934 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700935 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400936 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
937 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700938 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dirent = buf->previous;
941 if (dirent) {
942 if (__put_user(offset, &dirent->d_off))
943 goto efault;
944 }
945 dirent = buf->current_dir;
David Howellsafefdbb2006-10-03 01:13:46 -0700946 if (__put_user(d_ino, &dirent->d_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 goto efault;
948 if (__put_user(reclen, &dirent->d_reclen))
949 goto efault;
950 if (copy_to_user(dirent->d_name, name, namlen))
951 goto efault;
952 if (__put_user(0, dirent->d_name + namlen))
953 goto efault;
954 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
955 goto efault;
956 buf->previous = dirent;
957 dirent = (void __user *)dirent + reclen;
958 buf->current_dir = dirent;
959 buf->count -= reclen;
960 return 0;
961efault:
962 buf->error = -EFAULT;
963 return -EFAULT;
964}
965
966asmlinkage long compat_sys_getdents(unsigned int fd,
967 struct compat_linux_dirent __user *dirent, unsigned int count)
968{
969 struct file * file;
970 struct compat_linux_dirent __user * lastdirent;
971 struct compat_getdents_callback buf;
972 int error;
973
974 error = -EFAULT;
975 if (!access_ok(VERIFY_WRITE, dirent, count))
976 goto out;
977
978 error = -EBADF;
979 file = fget(fd);
980 if (!file)
981 goto out;
982
983 buf.current_dir = dirent;
984 buf.previous = NULL;
985 buf.count = count;
986 buf.error = 0;
987
988 error = vfs_readdir(file, compat_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -0400989 if (error >= 0)
990 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 lastdirent = buf.previous;
992 if (lastdirent) {
993 if (put_user(file->f_pos, &lastdirent->d_off))
994 error = -EFAULT;
995 else
996 error = count - buf.count;
997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 fput(file);
999out:
1000 return error;
1001}
1002
1003#ifndef __ARCH_OMIT_COMPAT_SYS_GETDENTS64
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005struct compat_getdents_callback64 {
1006 struct linux_dirent64 __user *current_dir;
1007 struct linux_dirent64 __user *previous;
1008 int count;
1009 int error;
1010};
1011
1012static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -07001013 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 struct linux_dirent64 __user *dirent;
1016 struct compat_getdents_callback64 *buf = __buf;
Kevin Winchester85c9fe82010-08-09 17:20:22 -07001017 int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
1018 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 u64 off;
1020
1021 buf->error = -EINVAL; /* only used if we fail.. */
1022 if (reclen > buf->count)
1023 return -EINVAL;
1024 dirent = buf->previous;
1025
1026 if (dirent) {
1027 if (__put_user_unaligned(offset, &dirent->d_off))
1028 goto efault;
1029 }
1030 dirent = buf->current_dir;
1031 if (__put_user_unaligned(ino, &dirent->d_ino))
1032 goto efault;
1033 off = 0;
1034 if (__put_user_unaligned(off, &dirent->d_off))
1035 goto efault;
1036 if (__put_user(reclen, &dirent->d_reclen))
1037 goto efault;
1038 if (__put_user(d_type, &dirent->d_type))
1039 goto efault;
1040 if (copy_to_user(dirent->d_name, name, namlen))
1041 goto efault;
1042 if (__put_user(0, dirent->d_name + namlen))
1043 goto efault;
1044 buf->previous = dirent;
1045 dirent = (void __user *)dirent + reclen;
1046 buf->current_dir = dirent;
1047 buf->count -= reclen;
1048 return 0;
1049efault:
1050 buf->error = -EFAULT;
1051 return -EFAULT;
1052}
1053
1054asmlinkage long compat_sys_getdents64(unsigned int fd,
1055 struct linux_dirent64 __user * dirent, unsigned int count)
1056{
1057 struct file * file;
1058 struct linux_dirent64 __user * lastdirent;
1059 struct compat_getdents_callback64 buf;
1060 int error;
1061
1062 error = -EFAULT;
1063 if (!access_ok(VERIFY_WRITE, dirent, count))
1064 goto out;
1065
1066 error = -EBADF;
1067 file = fget(fd);
1068 if (!file)
1069 goto out;
1070
1071 buf.current_dir = dirent;
1072 buf.previous = NULL;
1073 buf.count = count;
1074 buf.error = 0;
1075
1076 error = vfs_readdir(file, compat_filldir64, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001077 if (error >= 0)
1078 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 lastdirent = buf.previous;
1080 if (lastdirent) {
1081 typeof(lastdirent->d_off) d_off = file->f_pos;
Heiko Carstens7116e992006-12-06 20:36:36 -08001082 if (__put_user_unaligned(d_off, &lastdirent->d_off))
Al Viro53c9c5c2008-08-24 07:29:52 -04001083 error = -EFAULT;
1084 else
1085 error = count - buf.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 fput(file);
1088out:
1089 return error;
1090}
1091#endif /* ! __ARCH_OMIT_COMPAT_SYS_GETDENTS64 */
1092
1093static ssize_t compat_do_readv_writev(int type, struct file *file,
1094 const struct compat_iovec __user *uvector,
1095 unsigned long nr_segs, loff_t *pos)
1096{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 compat_ssize_t tot_len;
1098 struct iovec iovstack[UIO_FASTIOV];
Dan Rosenberg767b68e2010-09-22 14:32:56 -04001099 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 io_fn_t fn;
1102 iov_fn_t fnv;
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (!file->f_op)
1106 goto out;
Jeff Moyerb8373362010-05-26 14:44:25 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 ret = -EFAULT;
1109 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
1110 goto out;
1111
Jeff Moyerb8373362010-05-26 14:44:25 -07001112 tot_len = compat_rw_copy_check_uvector(type, uvector, nr_segs,
1113 UIO_FASTIOV, iovstack, &iov);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (tot_len == 0) {
1115 ret = 0;
1116 goto out;
1117 }
1118
1119 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001120 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 goto out;
1122
1123 fnv = NULL;
1124 if (type == READ) {
1125 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001126 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 } else {
1128 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001129 fnv = file->f_op->aio_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001132 if (fnv)
1133 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
1134 pos, fnv);
1135 else
1136 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138out:
1139 if (iov != iovstack)
1140 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -04001141 if ((ret + (type == READ)) > 0) {
Robert Love0eeca282005-07-12 17:06:03 -04001142 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -05001143 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -04001144 else
Eric Paris2a12a9d2009-12-17 21:24:21 -05001145 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -04001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return ret;
1148}
1149
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001150static size_t compat_readv(struct file *file,
1151 const struct compat_iovec __user *vec,
1152 unsigned long vlen, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 ssize_t ret = -EBADF;
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (!(file->f_mode & FMODE_READ))
1157 goto out;
1158
1159 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001160 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 goto out;
1162
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001163 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165out:
Gerd Hoffmannca8a5bd2009-01-06 14:41:09 -08001166 if (ret > 0)
1167 add_rchar(current, ret);
1168 inc_syscr(current);
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001169 return ret;
1170}
1171
1172asmlinkage ssize_t
1173compat_sys_readv(unsigned long fd, const struct compat_iovec __user *vec,
1174 unsigned long vlen)
1175{
1176 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001177 int fput_needed;
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001178 ssize_t ret;
1179
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001180 file = fget_light(fd, &fput_needed);
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001181 if (!file)
1182 return -EBADF;
1183 ret = compat_readv(file, vec, vlen, &file->f_pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001184 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return ret;
1186}
1187
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001188asmlinkage ssize_t
1189compat_sys_preadv(unsigned long fd, const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -07001190 unsigned long vlen, u32 pos_low, u32 pos_high)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001191{
1192 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1193 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001194 int fput_needed;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001195 ssize_t ret;
1196
1197 if (pos < 0)
1198 return -EINVAL;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001199 file = fget_light(fd, &fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001200 if (!file)
1201 return -EBADF;
Al Viro586ce092011-03-13 01:50:58 -05001202 ret = -ESPIPE;
1203 if (file->f_mode & FMODE_PREAD)
1204 ret = compat_readv(file, vec, vlen, &pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001205 fput_light(file, fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001206 return ret;
1207}
1208
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001209static size_t compat_writev(struct file *file,
1210 const struct compat_iovec __user *vec,
1211 unsigned long vlen, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 ssize_t ret = -EBADF;
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (!(file->f_mode & FMODE_WRITE))
1216 goto out;
1217
1218 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001219 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 goto out;
1221
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001222 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224out:
Gerd Hoffmannca8a5bd2009-01-06 14:41:09 -08001225 if (ret > 0)
1226 add_wchar(current, ret);
1227 inc_syscw(current);
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001228 return ret;
1229}
1230
1231asmlinkage ssize_t
1232compat_sys_writev(unsigned long fd, const struct compat_iovec __user *vec,
1233 unsigned long vlen)
1234{
1235 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001236 int fput_needed;
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001237 ssize_t ret;
1238
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001239 file = fget_light(fd, &fput_needed);
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001240 if (!file)
1241 return -EBADF;
1242 ret = compat_writev(file, vec, vlen, &file->f_pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001243 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return ret;
1245}
1246
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001247asmlinkage ssize_t
1248compat_sys_pwritev(unsigned long fd, const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -07001249 unsigned long vlen, u32 pos_low, u32 pos_high)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001250{
1251 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1252 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001253 int fput_needed;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001254 ssize_t ret;
1255
1256 if (pos < 0)
1257 return -EINVAL;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001258 file = fget_light(fd, &fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001259 if (!file)
1260 return -EBADF;
Al Viro586ce092011-03-13 01:50:58 -05001261 ret = -ESPIPE;
1262 if (file->f_mode & FMODE_PWRITE)
1263 ret = compat_writev(file, vec, vlen, &pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001264 fput_light(file, fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001265 return ret;
1266}
1267
Andi Kleend2610202006-05-01 12:15:48 -07001268asmlinkage long
1269compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32,
1270 unsigned int nr_segs, unsigned int flags)
1271{
1272 unsigned i;
Al Viro90cbad62006-10-10 22:44:17 +01001273 struct iovec __user *iov;
Jens Axboe98232d52006-05-04 09:13:49 +02001274 if (nr_segs > UIO_MAXIOV)
Andi Kleend2610202006-05-01 12:15:48 -07001275 return -EINVAL;
1276 iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec));
1277 for (i = 0; i < nr_segs; i++) {
1278 struct compat_iovec v;
1279 if (get_user(v.iov_base, &iov32[i].iov_base) ||
1280 get_user(v.iov_len, &iov32[i].iov_len) ||
1281 put_user(compat_ptr(v.iov_base), &iov[i].iov_base) ||
1282 put_user(v.iov_len, &iov[i].iov_len))
1283 return -EFAULT;
1284 }
1285 return sys_vmsplice(fd, iov, nr_segs, flags);
1286}
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288/*
Miklos Szeredie922efc2005-09-06 15:18:25 -07001289 * Exactly like fs/open.c:sys_open(), except that it doesn't set the
1290 * O_LARGEFILE flag.
1291 */
1292asmlinkage long
1293compat_sys_open(const char __user *filename, int flags, int mode)
1294{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001295 return do_sys_open(AT_FDCWD, filename, flags, mode);
1296}
1297
1298/*
1299 * Exactly like fs/open.c:sys_openat(), except that it doesn't set the
1300 * O_LARGEFILE flag.
1301 */
1302asmlinkage long
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +11001303compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, int mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001304{
1305 return do_sys_open(dfd, filename, flags, mode);
Miklos Szeredie922efc2005-09-06 15:18:25 -07001306}
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308#define __COMPAT_NFDBITS (8 * sizeof(compat_ulong_t))
1309
Thomas Gleixnerb773ad42008-08-31 08:16:57 -07001310static int poll_select_copy_remaining(struct timespec *end_time, void __user *p,
1311 int timeval, int ret)
1312{
1313 struct timespec ts;
1314
1315 if (!p)
1316 return ret;
1317
1318 if (current->personality & STICKY_TIMEOUTS)
1319 goto sticky;
1320
1321 /* No update for zero timeout */
1322 if (!end_time->tv_sec && !end_time->tv_nsec)
1323 return ret;
1324
1325 ktime_get_ts(&ts);
1326 ts = timespec_sub(*end_time, ts);
1327 if (ts.tv_sec < 0)
1328 ts.tv_sec = ts.tv_nsec = 0;
1329
1330 if (timeval) {
1331 struct compat_timeval rtv;
1332
1333 rtv.tv_sec = ts.tv_sec;
1334 rtv.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
1335
1336 if (!copy_to_user(p, &rtv, sizeof(rtv)))
1337 return ret;
1338 } else {
1339 struct compat_timespec rts;
1340
1341 rts.tv_sec = ts.tv_sec;
1342 rts.tv_nsec = ts.tv_nsec;
1343
1344 if (!copy_to_user(p, &rts, sizeof(rts)))
1345 return ret;
1346 }
1347 /*
1348 * If an application puts its timeval in read-only memory, we
1349 * don't want the Linux-specific update to the timeval to
1350 * cause a fault after the select has completed
1351 * successfully. However, because we're not updating the
1352 * timeval, we can't restart the system call.
1353 */
1354
1355sticky:
1356 if (ret == -ERESTARTNOHAND)
1357 ret = -EINTR;
1358 return ret;
1359}
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361/*
1362 * Ooo, nasty. We need here to frob 32-bit unsigned longs to
1363 * 64-bit unsigned longs.
1364 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001365static
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366int compat_get_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1367 unsigned long *fdset)
1368{
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001369 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (ufdset) {
1371 unsigned long odd;
1372
1373 if (!access_ok(VERIFY_WRITE, ufdset, nr*sizeof(compat_ulong_t)))
1374 return -EFAULT;
1375
1376 odd = nr & 1UL;
1377 nr &= ~1UL;
1378 while (nr) {
1379 unsigned long h, l;
Heiko Carstens7116e992006-12-06 20:36:36 -08001380 if (__get_user(l, ufdset) || __get_user(h, ufdset+1))
1381 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ufdset += 2;
1383 *fdset++ = h << 32 | l;
1384 nr -= 2;
1385 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001386 if (odd && __get_user(*fdset, ufdset))
1387 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 } else {
1389 /* Tricky, must clear full unsigned long in the
1390 * kernel fdset at the end, this makes sure that
1391 * actually happens.
1392 */
1393 memset(fdset, 0, ((nr + 1) & ~1)*sizeof(compat_ulong_t));
1394 }
1395 return 0;
1396}
1397
Arjan van de Ven858119e2006-01-14 13:20:43 -08001398static
Heiko Carstens7116e992006-12-06 20:36:36 -08001399int compat_set_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1400 unsigned long *fdset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 unsigned long odd;
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001403 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (!ufdset)
Heiko Carstens7116e992006-12-06 20:36:36 -08001406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 odd = nr & 1UL;
1409 nr &= ~1UL;
1410 while (nr) {
1411 unsigned long h, l;
1412 l = *fdset++;
1413 h = l >> 32;
Heiko Carstens7116e992006-12-06 20:36:36 -08001414 if (__put_user(l, ufdset) || __put_user(h, ufdset+1))
1415 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 ufdset += 2;
1417 nr -= 2;
1418 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001419 if (odd && __put_user(*fdset, ufdset))
1420 return -EFAULT;
1421 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424
1425/*
1426 * This is a virtual copy of sys_select from fs/select.c and probably
1427 * should be compared to it from time to time
1428 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430/*
1431 * We can actually return ERESTARTSYS instead of EINTR, but I'd
1432 * like to be certain this leads to no problems. So I return
1433 * EINTR just for safety.
1434 *
1435 * Update: ERESTARTSYS breaks at least the xview clock binary, so
1436 * I'm trying ERESTARTNOHAND which restart only when you want to.
1437 */
David Woodhouse9f729492006-01-18 17:44:05 -08001438int compat_core_sys_select(int n, compat_ulong_t __user *inp,
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001439 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1440 struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
1442 fd_set_bits fds;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001443 void *bits;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001444 int size, max_fds, ret = -EINVAL;
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001445 struct fdtable *fdt;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001446 long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (n < 0)
1449 goto out_nofds;
1450
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001451 /* max_fds can increase, so grab it once to avoid race */
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001452 rcu_read_lock();
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001453 fdt = files_fdtable(current->files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001454 max_fds = fdt->max_fds;
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001455 rcu_read_unlock();
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001456 if (n > max_fds)
1457 n = max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /*
1460 * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
1461 * since we used fdset we need to allocate memory in units of
1462 * long-words.
1463 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 size = FDS_BYTES(n);
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001465 bits = stack_fds;
1466 if (size > sizeof(stack_fds) / 6) {
1467 bits = kmalloc(6 * size, GFP_KERNEL);
1468 ret = -ENOMEM;
1469 if (!bits)
1470 goto out_nofds;
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 fds.in = (unsigned long *) bits;
1473 fds.out = (unsigned long *) (bits + size);
1474 fds.ex = (unsigned long *) (bits + 2*size);
1475 fds.res_in = (unsigned long *) (bits + 3*size);
1476 fds.res_out = (unsigned long *) (bits + 4*size);
1477 fds.res_ex = (unsigned long *) (bits + 5*size);
1478
1479 if ((ret = compat_get_fd_set(n, inp, fds.in)) ||
1480 (ret = compat_get_fd_set(n, outp, fds.out)) ||
1481 (ret = compat_get_fd_set(n, exp, fds.ex)))
1482 goto out;
1483 zero_fd_set(n, fds.res_in);
1484 zero_fd_set(n, fds.res_out);
1485 zero_fd_set(n, fds.res_ex);
1486
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001487 ret = do_select(n, &fds, end_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 if (ret < 0)
1490 goto out;
1491 if (!ret) {
1492 ret = -ERESTARTNOHAND;
1493 if (signal_pending(current))
1494 goto out;
1495 ret = 0;
1496 }
1497
Heiko Carstens7116e992006-12-06 20:36:36 -08001498 if (compat_set_fd_set(n, inp, fds.res_in) ||
1499 compat_set_fd_set(n, outp, fds.res_out) ||
1500 compat_set_fd_set(n, exp, fds.res_ex))
1501 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502out:
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001503 if (bits != stack_fds)
1504 kfree(bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505out_nofds:
1506 return ret;
1507}
1508
David Woodhouse9f729492006-01-18 17:44:05 -08001509asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
1510 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1511 struct compat_timeval __user *tvp)
1512{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001513 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001514 struct compat_timeval tv;
1515 int ret;
1516
1517 if (tvp) {
1518 if (copy_from_user(&tv, tvp, sizeof(tv)))
1519 return -EFAULT;
1520
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001521 to = &end_time;
Arjan van de Ven4d36a9e2008-10-25 12:41:41 -07001522 if (poll_select_set_timeout(to,
1523 tv.tv_sec + (tv.tv_usec / USEC_PER_SEC),
1524 (tv.tv_usec % USEC_PER_SEC) * NSEC_PER_USEC))
David Woodhouse9f729492006-01-18 17:44:05 -08001525 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -08001526 }
1527
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001528 ret = compat_core_sys_select(n, inp, outp, exp, to);
1529 ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001530
1531 return ret;
1532}
1533
Christoph Hellwig5d0e5282010-03-10 15:21:13 -08001534struct compat_sel_arg_struct {
1535 compat_ulong_t n;
1536 compat_uptr_t inp;
1537 compat_uptr_t outp;
1538 compat_uptr_t exp;
1539 compat_uptr_t tvp;
1540};
1541
1542asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg)
1543{
1544 struct compat_sel_arg_struct a;
1545
1546 if (copy_from_user(&a, arg, sizeof(a)))
1547 return -EFAULT;
1548 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
1549 compat_ptr(a.exp), compat_ptr(a.tvp));
1550}
1551
Roland McGrathf3de2722008-04-30 00:53:09 -07001552#ifdef HAVE_SET_RESTORE_SIGMASK
Heiko Carstensc9da9f22009-01-14 14:13:57 +01001553static long do_compat_pselect(int n, compat_ulong_t __user *inp,
David Woodhouse9f729492006-01-18 17:44:05 -08001554 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1555 struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask,
1556 compat_size_t sigsetsize)
1557{
1558 compat_sigset_t ss32;
1559 sigset_t ksigmask, sigsaved;
David Woodhouse9f729492006-01-18 17:44:05 -08001560 struct compat_timespec ts;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001561 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001562 int ret;
1563
1564 if (tsp) {
1565 if (copy_from_user(&ts, tsp, sizeof(ts)))
1566 return -EFAULT;
1567
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001568 to = &end_time;
1569 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
David Woodhouse9f729492006-01-18 17:44:05 -08001570 return -EINVAL;
1571 }
1572
1573 if (sigmask) {
1574 if (sigsetsize != sizeof(compat_sigset_t))
1575 return -EINVAL;
1576 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1577 return -EFAULT;
1578 sigset_from_compat(&ksigmask, &ss32);
1579
1580 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1581 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1582 }
1583
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001584 ret = compat_core_sys_select(n, inp, outp, exp, to);
1585 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001586
1587 if (ret == -ERESTARTNOHAND) {
1588 /*
1589 * Don't restore the signal mask yet. Let do_signal() deliver
1590 * the signal on the way back to userspace, before the signal
1591 * mask is restored.
1592 */
1593 if (sigmask) {
1594 memcpy(&current->saved_sigmask, &sigsaved,
1595 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001596 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -08001597 }
1598 } else if (sigmask)
1599 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1600
1601 return ret;
1602}
1603
1604asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
1605 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1606 struct compat_timespec __user *tsp, void __user *sig)
1607{
1608 compat_size_t sigsetsize = 0;
1609 compat_uptr_t up = 0;
1610
1611 if (sig) {
1612 if (!access_ok(VERIFY_READ, sig,
1613 sizeof(compat_uptr_t)+sizeof(compat_size_t)) ||
1614 __get_user(up, (compat_uptr_t __user *)sig) ||
1615 __get_user(sigsetsize,
1616 (compat_size_t __user *)(sig+sizeof(up))))
1617 return -EFAULT;
1618 }
Heiko Carstensc9da9f22009-01-14 14:13:57 +01001619 return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up),
1620 sigsetsize);
David Woodhouse9f729492006-01-18 17:44:05 -08001621}
1622
1623asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
1624 unsigned int nfds, struct compat_timespec __user *tsp,
1625 const compat_sigset_t __user *sigmask, compat_size_t sigsetsize)
1626{
1627 compat_sigset_t ss32;
1628 sigset_t ksigmask, sigsaved;
1629 struct compat_timespec ts;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001630 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001631 int ret;
1632
1633 if (tsp) {
1634 if (copy_from_user(&ts, tsp, sizeof(ts)))
1635 return -EFAULT;
1636
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001637 to = &end_time;
1638 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
1639 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -08001640 }
1641
1642 if (sigmask) {
Alexey Dobriyan3835a9b2006-05-15 09:44:27 -07001643 if (sigsetsize != sizeof(compat_sigset_t))
David Woodhouse9f729492006-01-18 17:44:05 -08001644 return -EINVAL;
1645 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1646 return -EFAULT;
1647 sigset_from_compat(&ksigmask, &ss32);
1648
1649 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1650 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1651 }
1652
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001653 ret = do_sys_poll(ufds, nfds, to);
David Woodhouse9f729492006-01-18 17:44:05 -08001654
1655 /* We can restart this syscall, usually */
1656 if (ret == -EINTR) {
1657 /*
1658 * Don't restore the signal mask yet. Let do_signal() deliver
1659 * the signal on the way back to userspace, before the signal
1660 * mask is restored.
1661 */
1662 if (sigmask) {
1663 memcpy(&current->saved_sigmask, &sigsaved,
1664 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001665 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -08001666 }
1667 ret = -ERESTARTNOHAND;
1668 } else if (sigmask)
1669 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1670
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001671 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001672
1673 return ret;
1674}
Roland McGrathf3de2722008-04-30 00:53:09 -07001675#endif /* HAVE_SET_RESTORE_SIGMASK */
David Woodhouse9f729492006-01-18 17:44:05 -08001676
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001677#ifdef CONFIG_EPOLL
1678
Roland McGrathf3de2722008-04-30 00:53:09 -07001679#ifdef HAVE_SET_RESTORE_SIGMASK
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001680asmlinkage long compat_sys_epoll_pwait(int epfd,
1681 struct compat_epoll_event __user *events,
1682 int maxevents, int timeout,
1683 const compat_sigset_t __user *sigmask,
1684 compat_size_t sigsetsize)
1685{
1686 long err;
1687 compat_sigset_t csigmask;
1688 sigset_t ksigmask, sigsaved;
1689
1690 /*
1691 * If the caller wants a certain signal mask to be set during the wait,
1692 * we apply it here.
1693 */
1694 if (sigmask) {
1695 if (sigsetsize != sizeof(compat_sigset_t))
1696 return -EINVAL;
1697 if (copy_from_user(&csigmask, sigmask, sizeof(csigmask)))
1698 return -EFAULT;
1699 sigset_from_compat(&ksigmask, &csigmask);
1700 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
1701 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1702 }
1703
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001704 err = sys_epoll_wait(epfd, events, maxevents, timeout);
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001705
1706 /*
1707 * If we changed the signal mask, we need to restore the original one.
1708 * In case we've got a signal while waiting, we do not restore the
1709 * signal mask yet, and we allow do_signal() to deliver the signal on
1710 * the way back to userspace, before the signal mask is restored.
1711 */
1712 if (sigmask) {
1713 if (err == -EINTR) {
1714 memcpy(&current->saved_sigmask, &sigsaved,
1715 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001716 set_restore_sigmask();
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001717 } else
1718 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1719 }
1720
1721 return err;
1722}
Roland McGrathf3de2722008-04-30 00:53:09 -07001723#endif /* HAVE_SET_RESTORE_SIGMASK */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08001724
1725#endif /* CONFIG_EPOLL */
Davide Libenzi6d18c922007-05-10 22:23:15 -07001726
1727#ifdef CONFIG_SIGNALFD
1728
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07001729asmlinkage long compat_sys_signalfd4(int ufd,
1730 const compat_sigset_t __user *sigmask,
1731 compat_size_t sigsetsize, int flags)
Davide Libenzi6d18c922007-05-10 22:23:15 -07001732{
1733 compat_sigset_t ss32;
1734 sigset_t tmp;
1735 sigset_t __user *ksigmask;
1736
1737 if (sigsetsize != sizeof(compat_sigset_t))
1738 return -EINVAL;
1739 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1740 return -EFAULT;
1741 sigset_from_compat(&tmp, &ss32);
1742 ksigmask = compat_alloc_user_space(sizeof(sigset_t));
1743 if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t)))
1744 return -EFAULT;
1745
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07001746 return sys_signalfd4(ufd, ksigmask, sizeof(sigset_t), flags);
Davide Libenzi6d18c922007-05-10 22:23:15 -07001747}
1748
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07001749asmlinkage long compat_sys_signalfd(int ufd,
1750 const compat_sigset_t __user *sigmask,
1751 compat_size_t sigsetsize)
1752{
1753 return compat_sys_signalfd4(ufd, sigmask, sigsetsize, 0);
1754}
Davide Libenzi6d18c922007-05-10 22:23:15 -07001755#endif /* CONFIG_SIGNALFD */
1756
Davide Libenzi83f5d122007-05-10 22:23:18 -07001757#ifdef CONFIG_TIMERFD
1758
Davide Libenzi4d672e72008-02-04 22:27:26 -08001759asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
1760 const struct compat_itimerspec __user *utmr,
1761 struct compat_itimerspec __user *otmr)
Davide Libenzi83f5d122007-05-10 22:23:18 -07001762{
Davide Libenzi4d672e72008-02-04 22:27:26 -08001763 int error;
Davide Libenzi83f5d122007-05-10 22:23:18 -07001764 struct itimerspec t;
1765 struct itimerspec __user *ut;
1766
Davide Libenzi83f5d122007-05-10 22:23:18 -07001767 if (get_compat_itimerspec(&t, utmr))
Heiko Carstens8317f142007-05-16 22:11:08 -07001768 return -EFAULT;
Davide Libenzi4d672e72008-02-04 22:27:26 -08001769 ut = compat_alloc_user_space(2 * sizeof(struct itimerspec));
1770 if (copy_to_user(&ut[0], &t, sizeof(t)))
Heiko Carstens8317f142007-05-16 22:11:08 -07001771 return -EFAULT;
Davide Libenzi4d672e72008-02-04 22:27:26 -08001772 error = sys_timerfd_settime(ufd, flags, &ut[0], &ut[1]);
1773 if (!error && otmr)
1774 error = (copy_from_user(&t, &ut[1], sizeof(struct itimerspec)) ||
1775 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
Davide Libenzi83f5d122007-05-10 22:23:18 -07001776
Davide Libenzi4d672e72008-02-04 22:27:26 -08001777 return error;
1778}
1779
1780asmlinkage long compat_sys_timerfd_gettime(int ufd,
1781 struct compat_itimerspec __user *otmr)
1782{
1783 int error;
1784 struct itimerspec t;
1785 struct itimerspec __user *ut;
1786
1787 ut = compat_alloc_user_space(sizeof(struct itimerspec));
1788 error = sys_timerfd_gettime(ufd, ut);
1789 if (!error)
1790 error = (copy_from_user(&t, ut, sizeof(struct itimerspec)) ||
1791 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
1792
1793 return error;
Davide Libenzi83f5d122007-05-10 22:23:18 -07001794}
1795
1796#endif /* CONFIG_TIMERFD */
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +05301797
1798#ifdef CONFIG_FHANDLE
1799/*
1800 * Exactly like fs/open.c:sys_open_by_handle_at(), except that it
1801 * doesn't set the O_LARGEFILE flag.
1802 */
1803asmlinkage long
1804compat_sys_open_by_handle_at(int mountdirfd,
1805 struct file_handle __user *handle, int flags)
1806{
1807 return do_handle_open(mountdirfd, handle, flags);
1808}
1809#endif