blob: d576b552e8e2eb90a98324e79b7d8917fb96c04c [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
11 * Copyright (C) 2003 Pavel Machek (pavel@suse.cz)
12 *
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
Milind Arun Choudhary022a1692007-05-08 00:29:02 -070018#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/linkage.h>
20#include <linux/compat.h>
21#include <linux/errno.h>
22#include <linux/time.h>
23#include <linux/fs.h>
24#include <linux/fcntl.h>
25#include <linux/namei.h>
26#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040027#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/vfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/ioctl.h>
30#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/smb.h>
32#include <linux/smb_mount.h>
33#include <linux/ncp_mount.h>
David Howells9a9947b2005-04-18 10:54:51 -070034#include <linux/nfs4_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/syscalls.h>
36#include <linux/ctype.h>
37#include <linux/module.h>
38#include <linux/dirent.h>
Robert Love0eeca282005-07-12 17:06:03 -040039#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/highuid.h>
41#include <linux/sunrpc/svc.h>
42#include <linux/nfsd/nfsd.h>
43#include <linux/nfsd/syscall.h>
44#include <linux/personality.h>
45#include <linux/rwsem.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070046#include <linux/tsacct_kern.h>
Christoph Hellwig6272e262007-05-08 00:29:21 -070047#include <linux/security.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040048#include <linux/highmem.h>
Davide Libenzi6d18c922007-05-10 22:23:15 -070049#include <linux/signal.h>
Al Virobd01f842006-10-19 17:23:57 -040050#include <linux/poll.h>
David S. Miller4a805e82005-09-14 21:40:00 -070051#include <linux/mm.h>
Davide Libenzif6dfb4f2007-03-07 20:41:21 -080052#include <linux/eventpoll.h>
Al Viro498052b2009-03-30 07:20:30 -040053#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/uaccess.h>
56#include <asm/mmu_context.h>
57#include <asm/ioctls.h>
David Howells07f3f052006-09-30 20:52:18 +020058#include "internal.h"
David Woodhouse9f729492006-01-18 17:44:05 -080059
Andi Kleenbebfa102006-06-26 13:56:52 +020060int compat_log = 1;
61
62int compat_printk(const char *fmt, ...)
63{
64 va_list ap;
65 int ret;
66 if (!compat_log)
67 return 0;
68 va_start(ap, fmt);
69 ret = vprintk(fmt, ap);
70 va_end(ap);
71 return ret;
72}
73
Badari Pulavartyee0b3e62006-09-30 23:28:47 -070074#include "read_write.h"
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/*
77 * Not all architectures have sys_utime, so implement this in terms
78 * of sys_utimes.
79 */
80asmlinkage long compat_sys_utime(char __user *filename, struct compat_utimbuf __user *t)
81{
Ulrich Drepper1c710c82007-05-08 00:33:25 -070082 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 if (t) {
85 if (get_user(tv[0].tv_sec, &t->actime) ||
86 get_user(tv[1].tv_sec, &t->modtime))
87 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -070088 tv[0].tv_nsec = 0;
89 tv[1].tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -070091 return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0);
92}
93
94asmlinkage long compat_sys_utimensat(unsigned int dfd, char __user *filename, struct compat_timespec __user *t, int flags)
95{
96 struct timespec tv[2];
97
98 if (t) {
99 if (get_compat_timespec(&tv[0], &t[0]) ||
100 get_compat_timespec(&tv[1], &t[1]))
101 return -EFAULT;
102
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700103 if (tv[0].tv_nsec == UTIME_OMIT && tv[1].tv_nsec == UTIME_OMIT)
104 return 0;
105 }
106 return do_utimes(dfd, filename, t ? tv : NULL, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100109asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename, struct compat_timeval __user *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700111 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100113 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (get_user(tv[0].tv_sec, &t[0].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700115 get_user(tv[0].tv_nsec, &t[0].tv_usec) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 get_user(tv[1].tv_sec, &t[1].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700117 get_user(tv[1].tv_nsec, &t[1].tv_usec))
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100118 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700119 if (tv[0].tv_nsec >= 1000000 || tv[0].tv_nsec < 0 ||
120 tv[1].tv_nsec >= 1000000 || tv[1].tv_nsec < 0)
121 return -EINVAL;
122 tv[0].tv_nsec *= 1000;
123 tv[1].tv_nsec *= 1000;
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100124 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700125 return do_utimes(dfd, filename, t ? tv : NULL, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800126}
127
128asmlinkage long compat_sys_utimes(char __user *filename, struct compat_timeval __user *t)
129{
130 return compat_sys_futimesat(AT_FDCWD, filename, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Christoph Hellwigf7a50002008-10-15 22:02:05 -0700133static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf)
134{
135 compat_ino_t ino = stat->ino;
136 typeof(ubuf->st_uid) uid = 0;
137 typeof(ubuf->st_gid) gid = 0;
138 int err;
139
140 SET_UID(uid, stat->uid);
141 SET_GID(gid, stat->gid);
142
143 if ((u64) stat->size > MAX_NON_LFS ||
144 !old_valid_dev(stat->dev) ||
145 !old_valid_dev(stat->rdev))
146 return -EOVERFLOW;
147 if (sizeof(ino) < sizeof(stat->ino) && ino != stat->ino)
148 return -EOVERFLOW;
149
150 if (clear_user(ubuf, sizeof(*ubuf)))
151 return -EFAULT;
152
153 err = __put_user(old_encode_dev(stat->dev), &ubuf->st_dev);
154 err |= __put_user(ino, &ubuf->st_ino);
155 err |= __put_user(stat->mode, &ubuf->st_mode);
156 err |= __put_user(stat->nlink, &ubuf->st_nlink);
157 err |= __put_user(uid, &ubuf->st_uid);
158 err |= __put_user(gid, &ubuf->st_gid);
159 err |= __put_user(old_encode_dev(stat->rdev), &ubuf->st_rdev);
160 err |= __put_user(stat->size, &ubuf->st_size);
161 err |= __put_user(stat->atime.tv_sec, &ubuf->st_atime);
162 err |= __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec);
163 err |= __put_user(stat->mtime.tv_sec, &ubuf->st_mtime);
164 err |= __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec);
165 err |= __put_user(stat->ctime.tv_sec, &ubuf->st_ctime);
166 err |= __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec);
167 err |= __put_user(stat->blksize, &ubuf->st_blksize);
168 err |= __put_user(stat->blocks, &ubuf->st_blocks);
169 return err;
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172asmlinkage long compat_sys_newstat(char __user * filename,
173 struct compat_stat __user *statbuf)
174{
175 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400176 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400178 error = vfs_stat(filename, &stat);
179 if (error)
180 return error;
181 return cp_compat_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184asmlinkage long compat_sys_newlstat(char __user * filename,
185 struct compat_stat __user *statbuf)
186{
187 struct kstat stat;
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400188 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Christoph Hellwig2eae7a12009-04-08 16:34:03 -0400190 error = vfs_lstat(filename, &stat);
191 if (error)
192 return error;
193 return cp_compat_stat(&stat, statbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Kyle McMartin82d821d2006-03-24 03:18:20 -0800196#ifndef __ARCH_WANT_STAT64
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100197asmlinkage long compat_sys_newfstatat(unsigned int dfd, 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/*
259 * The following statfs calls are copies of code from fs/open.c and
260 * 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 Viro2d8f3032008-07-22 09:59:21 -0400264 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 int error;
266
Al Viro2d8f3032008-07-22 09:59:21 -0400267 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (!error) {
269 struct kstatfs tmp;
Al Viro2d8f3032008-07-22 09:59:21 -0400270 error = vfs_statfs(path.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800271 if (!error)
272 error = put_compat_statfs(buf, &tmp);
Al Viro2d8f3032008-07-22 09:59:21 -0400273 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275 return error;
276}
277
278asmlinkage long compat_sys_fstatfs(unsigned int fd, struct compat_statfs __user *buf)
279{
280 struct file * file;
281 struct kstatfs tmp;
282 int error;
283
284 error = -EBADF;
285 file = fget(fd);
286 if (!file)
287 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800288 error = vfs_statfs(file->f_path.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800289 if (!error)
290 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 fput(file);
292out:
293 return error;
294}
295
296static int put_compat_statfs64(struct compat_statfs64 __user *ubuf, struct kstatfs *kbuf)
297{
298 if (sizeof ubuf->f_blocks == 4) {
Jon Tollefsonf4a67cc2008-07-23 21:27:55 -0700299 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
300 kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -EOVERFLOW;
302 /* f_files and f_ffree may be -1; it's okay
303 * to stuff that into 32 bits */
304 if (kbuf->f_files != 0xffffffffffffffffULL
305 && (kbuf->f_files & 0xffffffff00000000ULL))
306 return -EOVERFLOW;
307 if (kbuf->f_ffree != 0xffffffffffffffffULL
308 && (kbuf->f_ffree & 0xffffffff00000000ULL))
309 return -EOVERFLOW;
310 }
311 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
312 __put_user(kbuf->f_type, &ubuf->f_type) ||
313 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
314 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
315 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
316 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
317 __put_user(kbuf->f_files, &ubuf->f_files) ||
318 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
319 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
320 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
321 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
322 __put_user(kbuf->f_frsize, &ubuf->f_frsize))
323 return -EFAULT;
324 return 0;
325}
326
Al Viro2d8f3032008-07-22 09:59:21 -0400327asmlinkage long compat_sys_statfs64(const char __user *pathname, compat_size_t sz, struct compat_statfs64 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Al Viro2d8f3032008-07-22 09:59:21 -0400329 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 int error;
331
332 if (sz != sizeof(*buf))
333 return -EINVAL;
334
Al Viro2d8f3032008-07-22 09:59:21 -0400335 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!error) {
337 struct kstatfs tmp;
Al Viro2d8f3032008-07-22 09:59:21 -0400338 error = vfs_statfs(path.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800339 if (!error)
340 error = put_compat_statfs64(buf, &tmp);
Al Viro2d8f3032008-07-22 09:59:21 -0400341 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 return error;
344}
345
346asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz, struct compat_statfs64 __user *buf)
347{
348 struct file * file;
349 struct kstatfs tmp;
350 int error;
351
352 if (sz != sizeof(*buf))
353 return -EINVAL;
354
355 error = -EBADF;
356 file = fget(fd);
357 if (!file)
358 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800359 error = vfs_statfs(file->f_path.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800360 if (!error)
361 error = put_compat_statfs64(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 fput(file);
363out:
364 return error;
365}
366
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100367/*
368 * This is a copy of sys_ustat, just dealing with a structure layout.
369 * Given how simple this syscall is that apporach is more maintainable
370 * than the various conversion hacks.
371 */
372asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u)
373{
374 struct super_block *sb;
375 struct compat_ustat tmp;
376 struct kstatfs sbuf;
377 int err;
378
379 sb = user_get_super(new_decode_dev(dev));
380 if (!sb)
381 return -EINVAL;
382 err = vfs_statfs(sb->s_root, &sbuf);
383 drop_super(sb);
384 if (err)
385 return err;
386
387 memset(&tmp, 0, sizeof(struct compat_ustat));
388 tmp.f_tfree = sbuf.f_bfree;
389 tmp.f_tinode = sbuf.f_ffree;
390 if (copy_to_user(u, &tmp, sizeof(struct compat_ustat)))
391 return -EFAULT;
392 return 0;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
396{
397 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
398 __get_user(kfl->l_type, &ufl->l_type) ||
399 __get_user(kfl->l_whence, &ufl->l_whence) ||
400 __get_user(kfl->l_start, &ufl->l_start) ||
401 __get_user(kfl->l_len, &ufl->l_len) ||
402 __get_user(kfl->l_pid, &ufl->l_pid))
403 return -EFAULT;
404 return 0;
405}
406
407static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
408{
409 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
410 __put_user(kfl->l_type, &ufl->l_type) ||
411 __put_user(kfl->l_whence, &ufl->l_whence) ||
412 __put_user(kfl->l_start, &ufl->l_start) ||
413 __put_user(kfl->l_len, &ufl->l_len) ||
414 __put_user(kfl->l_pid, &ufl->l_pid))
415 return -EFAULT;
416 return 0;
417}
418
419#ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
420static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
421{
422 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
423 __get_user(kfl->l_type, &ufl->l_type) ||
424 __get_user(kfl->l_whence, &ufl->l_whence) ||
425 __get_user(kfl->l_start, &ufl->l_start) ||
426 __get_user(kfl->l_len, &ufl->l_len) ||
427 __get_user(kfl->l_pid, &ufl->l_pid))
428 return -EFAULT;
429 return 0;
430}
431#endif
432
433#ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
434static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
435{
436 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
437 __put_user(kfl->l_type, &ufl->l_type) ||
438 __put_user(kfl->l_whence, &ufl->l_whence) ||
439 __put_user(kfl->l_start, &ufl->l_start) ||
440 __put_user(kfl->l_len, &ufl->l_len) ||
441 __put_user(kfl->l_pid, &ufl->l_pid))
442 return -EFAULT;
443 return 0;
444}
445#endif
446
447asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
448 unsigned long arg)
449{
450 mm_segment_t old_fs;
451 struct flock f;
452 long ret;
453
454 switch (cmd) {
455 case F_GETLK:
456 case F_SETLK:
457 case F_SETLKW:
458 ret = get_compat_flock(&f, compat_ptr(arg));
459 if (ret != 0)
460 break;
461 old_fs = get_fs();
462 set_fs(KERNEL_DS);
463 ret = sys_fcntl(fd, cmd, (unsigned long)&f);
464 set_fs(old_fs);
465 if (cmd == F_GETLK && ret == 0) {
Nikanth Karthikesanff677f82009-04-01 14:40:51 +0530466 /* GETLK was successful and we need to return the data...
NeilBrown2520f142006-01-08 01:02:40 -0800467 * but it needs to fit in the compat structure.
468 * l_start shouldn't be too big, unless the original
469 * start + end is greater than COMPAT_OFF_T_MAX, in which
470 * case the app was asking for trouble, so we return
471 * -EOVERFLOW in that case.
472 * l_len could be too big, in which case we just truncate it,
473 * and only allow the app to see that part of the conflicting
474 * lock that might make sense to it anyway
475 */
476
477 if (f.l_start > COMPAT_OFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800479 if (f.l_len > COMPAT_OFF_T_MAX)
480 f.l_len = COMPAT_OFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (ret == 0)
482 ret = put_compat_flock(&f, compat_ptr(arg));
483 }
484 break;
485
486 case F_GETLK64:
487 case F_SETLK64:
488 case F_SETLKW64:
489 ret = get_compat_flock64(&f, compat_ptr(arg));
490 if (ret != 0)
491 break;
492 old_fs = get_fs();
493 set_fs(KERNEL_DS);
494 ret = sys_fcntl(fd, (cmd == F_GETLK64) ? F_GETLK :
495 ((cmd == F_SETLK64) ? F_SETLK : F_SETLKW),
496 (unsigned long)&f);
497 set_fs(old_fs);
498 if (cmd == F_GETLK64 && ret == 0) {
NeilBrown2520f142006-01-08 01:02:40 -0800499 /* need to return lock information - see above for commentary */
500 if (f.l_start > COMPAT_LOFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800502 if (f.l_len > COMPAT_LOFF_T_MAX)
503 f.l_len = COMPAT_LOFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (ret == 0)
505 ret = put_compat_flock64(&f, compat_ptr(arg));
506 }
507 break;
508
509 default:
510 ret = sys_fcntl(fd, cmd, arg);
511 break;
512 }
513 return ret;
514}
515
516asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
517 unsigned long arg)
518{
519 if ((cmd == F_GETLK64) || (cmd == F_SETLK64) || (cmd == F_SETLKW64))
520 return -EINVAL;
521 return compat_sys_fcntl64(fd, cmd, arg);
522}
523
524asmlinkage long
525compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
526{
527 long ret;
528 aio_context_t ctx64;
529
530 mm_segment_t oldfs = get_fs();
531 if (unlikely(get_user(ctx64, ctx32p)))
532 return -EFAULT;
533
534 set_fs(KERNEL_DS);
535 /* The __user pointer cast is valid because of the set_fs() */
536 ret = sys_io_setup(nr_reqs, (aio_context_t __user *) &ctx64);
537 set_fs(oldfs);
538 /* truncating is ok because it's a user address */
539 if (!ret)
540 ret = put_user((u32) ctx64, ctx32p);
541 return ret;
542}
543
544asmlinkage long
545compat_sys_io_getevents(aio_context_t ctx_id,
546 unsigned long min_nr,
547 unsigned long nr,
548 struct io_event __user *events,
549 struct compat_timespec __user *timeout)
550{
551 long ret;
552 struct timespec t;
553 struct timespec __user *ut = NULL;
554
555 ret = -EFAULT;
556 if (unlikely(!access_ok(VERIFY_WRITE, events,
557 nr * sizeof(struct io_event))))
558 goto out;
559 if (timeout) {
560 if (get_compat_timespec(&t, timeout))
561 goto out;
562
563 ut = compat_alloc_user_space(sizeof(*ut));
564 if (copy_to_user(ut, &t, sizeof(t)) )
565 goto out;
566 }
567 ret = sys_io_getevents(ctx_id, min_nr, nr, events, ut);
568out:
569 return ret;
570}
571
572static inline long
573copy_iocb(long nr, u32 __user *ptr32, struct iocb __user * __user *ptr64)
574{
575 compat_uptr_t uptr;
576 int i;
577
578 for (i = 0; i < nr; ++i) {
579 if (get_user(uptr, ptr32 + i))
580 return -EFAULT;
581 if (put_user(compat_ptr(uptr), ptr64 + i))
582 return -EFAULT;
583 }
584 return 0;
585}
586
587#define MAX_AIO_SUBMITS (PAGE_SIZE/sizeof(struct iocb *))
588
589asmlinkage long
590compat_sys_io_submit(aio_context_t ctx_id, int nr, u32 __user *iocb)
591{
592 struct iocb __user * __user *iocb64;
593 long ret;
594
595 if (unlikely(nr < 0))
596 return -EINVAL;
597
598 if (nr > MAX_AIO_SUBMITS)
599 nr = MAX_AIO_SUBMITS;
600
601 iocb64 = compat_alloc_user_space(nr * sizeof(*iocb64));
602 ret = copy_iocb(nr, iocb, iocb64);
603 if (!ret)
604 ret = sys_io_submit(ctx_id, nr, iocb64);
605 return ret;
606}
607
608struct compat_ncp_mount_data {
609 compat_int_t version;
610 compat_uint_t ncp_fd;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700611 __compat_uid_t mounted_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 compat_pid_t wdog_pid;
613 unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
614 compat_uint_t time_out;
615 compat_uint_t retry_count;
616 compat_uint_t flags;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700617 __compat_uid_t uid;
618 __compat_gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 compat_mode_t file_mode;
620 compat_mode_t dir_mode;
621};
622
623struct compat_ncp_mount_data_v4 {
624 compat_int_t version;
625 compat_ulong_t flags;
626 compat_ulong_t mounted_uid;
627 compat_long_t wdog_pid;
628 compat_uint_t ncp_fd;
629 compat_uint_t time_out;
630 compat_uint_t retry_count;
631 compat_ulong_t uid;
632 compat_ulong_t gid;
633 compat_ulong_t file_mode;
634 compat_ulong_t dir_mode;
635};
636
637static void *do_ncp_super_data_conv(void *raw_data)
638{
639 int version = *(unsigned int *)raw_data;
640
641 if (version == 3) {
642 struct compat_ncp_mount_data *c_n = raw_data;
643 struct ncp_mount_data *n = raw_data;
644
645 n->dir_mode = c_n->dir_mode;
646 n->file_mode = c_n->file_mode;
647 n->gid = c_n->gid;
648 n->uid = c_n->uid;
649 memmove (n->mounted_vol, c_n->mounted_vol, (sizeof (c_n->mounted_vol) + 3 * sizeof (unsigned int)));
650 n->wdog_pid = c_n->wdog_pid;
651 n->mounted_uid = c_n->mounted_uid;
652 } else if (version == 4) {
653 struct compat_ncp_mount_data_v4 *c_n = raw_data;
654 struct ncp_mount_data_v4 *n = raw_data;
655
656 n->dir_mode = c_n->dir_mode;
657 n->file_mode = c_n->file_mode;
658 n->gid = c_n->gid;
659 n->uid = c_n->uid;
660 n->retry_count = c_n->retry_count;
661 n->time_out = c_n->time_out;
662 n->ncp_fd = c_n->ncp_fd;
663 n->wdog_pid = c_n->wdog_pid;
664 n->mounted_uid = c_n->mounted_uid;
665 n->flags = c_n->flags;
666 } else if (version != 5) {
667 return NULL;
668 }
669
670 return raw_data;
671}
672
673struct compat_smb_mount_data {
674 compat_int_t version;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700675 __compat_uid_t mounted_uid;
676 __compat_uid_t uid;
677 __compat_gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 compat_mode_t file_mode;
679 compat_mode_t dir_mode;
680};
681
682static void *do_smb_super_data_conv(void *raw_data)
683{
684 struct smb_mount_data *s = raw_data;
685 struct compat_smb_mount_data *c_s = raw_data;
686
687 if (c_s->version != SMB_MOUNT_OLDVERSION)
688 goto out;
689 s->dir_mode = c_s->dir_mode;
690 s->file_mode = c_s->file_mode;
691 s->gid = c_s->gid;
692 s->uid = c_s->uid;
693 s->mounted_uid = c_s->mounted_uid;
694 out:
695 return raw_data;
696}
697
David Howells9a9947b2005-04-18 10:54:51 -0700698struct compat_nfs_string {
699 compat_uint_t len;
David Howells5fc3e622005-04-27 15:39:03 -0700700 compat_uptr_t data;
David Howells9a9947b2005-04-18 10:54:51 -0700701};
702
703static inline void compat_nfs_string(struct nfs_string *dst,
704 struct compat_nfs_string *src)
705{
706 dst->data = compat_ptr(src->data);
707 dst->len = src->len;
708}
709
710struct compat_nfs4_mount_data_v1 {
711 compat_int_t version;
712 compat_int_t flags;
713 compat_int_t rsize;
714 compat_int_t wsize;
715 compat_int_t timeo;
716 compat_int_t retrans;
717 compat_int_t acregmin;
718 compat_int_t acregmax;
719 compat_int_t acdirmin;
720 compat_int_t acdirmax;
721 struct compat_nfs_string client_addr;
722 struct compat_nfs_string mnt_path;
723 struct compat_nfs_string hostname;
724 compat_uint_t host_addrlen;
David Howells5fc3e622005-04-27 15:39:03 -0700725 compat_uptr_t host_addr;
David Howells9a9947b2005-04-18 10:54:51 -0700726 compat_int_t proto;
727 compat_int_t auth_flavourlen;
David Howells5fc3e622005-04-27 15:39:03 -0700728 compat_uptr_t auth_flavours;
David Howells9a9947b2005-04-18 10:54:51 -0700729};
730
731static int do_nfs4_super_data_conv(void *raw_data)
732{
733 int version = *(compat_uint_t *) raw_data;
734
735 if (version == 1) {
736 struct compat_nfs4_mount_data_v1 *raw = raw_data;
737 struct nfs4_mount_data *real = raw_data;
738
739 /* copy the fields backwards */
740 real->auth_flavours = compat_ptr(raw->auth_flavours);
741 real->auth_flavourlen = raw->auth_flavourlen;
742 real->proto = raw->proto;
743 real->host_addr = compat_ptr(raw->host_addr);
744 real->host_addrlen = raw->host_addrlen;
745 compat_nfs_string(&real->hostname, &raw->hostname);
746 compat_nfs_string(&real->mnt_path, &raw->mnt_path);
747 compat_nfs_string(&real->client_addr, &raw->client_addr);
748 real->acdirmax = raw->acdirmax;
749 real->acdirmin = raw->acdirmin;
750 real->acregmax = raw->acregmax;
751 real->acregmin = raw->acregmin;
752 real->retrans = raw->retrans;
753 real->timeo = raw->timeo;
754 real->wsize = raw->wsize;
755 real->rsize = raw->rsize;
756 real->flags = raw->flags;
757 real->version = raw->version;
758 }
David Howells9a9947b2005-04-18 10:54:51 -0700759
760 return 0;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763#define SMBFS_NAME "smbfs"
764#define NCPFS_NAME "ncpfs"
David Howells9a9947b2005-04-18 10:54:51 -0700765#define NFS4_NAME "nfs4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767asmlinkage long compat_sys_mount(char __user * dev_name, char __user * dir_name,
768 char __user * type, unsigned long flags,
769 void __user * data)
770{
Vegard Nossumeca6f532009-09-18 13:05:45 -0700771 char *kernel_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 unsigned long data_page;
Vegard Nossumeca6f532009-09-18 13:05:45 -0700773 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 char *dir_page;
775 int retval;
776
Vegard Nossumeca6f532009-09-18 13:05:45 -0700777 retval = copy_mount_string(type, &kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (retval < 0)
779 goto out;
780
781 dir_page = getname(dir_name);
782 retval = PTR_ERR(dir_page);
783 if (IS_ERR(dir_page))
784 goto out1;
785
Vegard Nossumeca6f532009-09-18 13:05:45 -0700786 retval = copy_mount_string(dev_name, &kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (retval < 0)
788 goto out2;
789
Vegard Nossumeca6f532009-09-18 13:05:45 -0700790 retval = copy_mount_options(data, &data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (retval < 0)
792 goto out3;
793
794 retval = -EINVAL;
795
Vegard Nossumeca6f532009-09-18 13:05:45 -0700796 if (kernel_type && data_page) {
797 if (!strcmp(kernel_type, SMBFS_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 do_smb_super_data_conv((void *)data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -0700799 } else if (!strcmp(kernel_type, NCPFS_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 do_ncp_super_data_conv((void *)data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -0700801 } else if (!strcmp(kernel_type, NFS4_NAME)) {
David Howells9a9947b2005-04-18 10:54:51 -0700802 if (do_nfs4_super_data_conv((void *) data_page))
803 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
806
Vegard Nossumeca6f532009-09-18 13:05:45 -0700807 retval = do_mount(kernel_dev, dir_page, kernel_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 flags, (void*)data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
David Howells9a9947b2005-04-18 10:54:51 -0700810 out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 free_page(data_page);
812 out3:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700813 kfree(kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 out2:
815 putname(dir_page);
816 out1:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700817 kfree(kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 out:
819 return retval;
820}
821
822#define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824struct compat_old_linux_dirent {
825 compat_ulong_t d_ino;
826 compat_ulong_t d_offset;
827 unsigned short d_namlen;
828 char d_name[1];
829};
830
831struct compat_readdir_callback {
832 struct compat_old_linux_dirent __user *dirent;
833 int result;
834};
835
836static int compat_fillonedir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700837 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 struct compat_readdir_callback *buf = __buf;
840 struct compat_old_linux_dirent __user *dirent;
David Howellsafefdbb2006-10-03 01:13:46 -0700841 compat_ulong_t d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 if (buf->result)
844 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700845 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400846 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
847 buf->result = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700848 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 buf->result++;
851 dirent = buf->dirent;
852 if (!access_ok(VERIFY_WRITE, dirent,
853 (unsigned long)(dirent->d_name + namlen + 1) -
854 (unsigned long)dirent))
855 goto efault;
David Howellsafefdbb2006-10-03 01:13:46 -0700856 if ( __put_user(d_ino, &dirent->d_ino) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 __put_user(offset, &dirent->d_offset) ||
858 __put_user(namlen, &dirent->d_namlen) ||
859 __copy_to_user(dirent->d_name, name, namlen) ||
860 __put_user(0, dirent->d_name + namlen))
861 goto efault;
862 return 0;
863efault:
864 buf->result = -EFAULT;
865 return -EFAULT;
866}
867
868asmlinkage long compat_sys_old_readdir(unsigned int fd,
869 struct compat_old_linux_dirent __user *dirent, unsigned int count)
870{
871 int error;
872 struct file *file;
873 struct compat_readdir_callback buf;
874
875 error = -EBADF;
876 file = fget(fd);
877 if (!file)
878 goto out;
879
880 buf.result = 0;
881 buf.dirent = dirent;
882
883 error = vfs_readdir(file, compat_fillonedir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -0400884 if (buf.result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 error = buf.result;
886
887 fput(file);
888out:
889 return error;
890}
891
892struct compat_linux_dirent {
893 compat_ulong_t d_ino;
894 compat_ulong_t d_off;
895 unsigned short d_reclen;
896 char d_name[1];
897};
898
899struct compat_getdents_callback {
900 struct compat_linux_dirent __user *current_dir;
901 struct compat_linux_dirent __user *previous;
902 int count;
903 int error;
904};
905
906static int compat_filldir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700907 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 struct compat_linux_dirent __user * dirent;
910 struct compat_getdents_callback *buf = __buf;
David Howellsafefdbb2006-10-03 01:13:46 -0700911 compat_ulong_t d_ino;
Milind Arun Choudhary022a1692007-05-08 00:29:02 -0700912 int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 2, sizeof(compat_long_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 buf->error = -EINVAL; /* only used if we fail.. */
915 if (reclen > buf->count)
916 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700917 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400918 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
919 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700920 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 dirent = buf->previous;
923 if (dirent) {
924 if (__put_user(offset, &dirent->d_off))
925 goto efault;
926 }
927 dirent = buf->current_dir;
David Howellsafefdbb2006-10-03 01:13:46 -0700928 if (__put_user(d_ino, &dirent->d_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 goto efault;
930 if (__put_user(reclen, &dirent->d_reclen))
931 goto efault;
932 if (copy_to_user(dirent->d_name, name, namlen))
933 goto efault;
934 if (__put_user(0, dirent->d_name + namlen))
935 goto efault;
936 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
937 goto efault;
938 buf->previous = dirent;
939 dirent = (void __user *)dirent + reclen;
940 buf->current_dir = dirent;
941 buf->count -= reclen;
942 return 0;
943efault:
944 buf->error = -EFAULT;
945 return -EFAULT;
946}
947
948asmlinkage long compat_sys_getdents(unsigned int fd,
949 struct compat_linux_dirent __user *dirent, unsigned int count)
950{
951 struct file * file;
952 struct compat_linux_dirent __user * lastdirent;
953 struct compat_getdents_callback buf;
954 int error;
955
956 error = -EFAULT;
957 if (!access_ok(VERIFY_WRITE, dirent, count))
958 goto out;
959
960 error = -EBADF;
961 file = fget(fd);
962 if (!file)
963 goto out;
964
965 buf.current_dir = dirent;
966 buf.previous = NULL;
967 buf.count = count;
968 buf.error = 0;
969
970 error = vfs_readdir(file, compat_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -0400971 if (error >= 0)
972 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 lastdirent = buf.previous;
974 if (lastdirent) {
975 if (put_user(file->f_pos, &lastdirent->d_off))
976 error = -EFAULT;
977 else
978 error = count - buf.count;
979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 fput(file);
981out:
982 return error;
983}
984
985#ifndef __ARCH_OMIT_COMPAT_SYS_GETDENTS64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987struct compat_getdents_callback64 {
988 struct linux_dirent64 __user *current_dir;
989 struct linux_dirent64 __user *previous;
990 int count;
991 int error;
992};
993
994static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -0700995 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
997 struct linux_dirent64 __user *dirent;
998 struct compat_getdents_callback64 *buf = __buf;
999 int jj = NAME_OFFSET(dirent);
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001000 int reclen = ALIGN(jj + namlen + 1, sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 u64 off;
1002
1003 buf->error = -EINVAL; /* only used if we fail.. */
1004 if (reclen > buf->count)
1005 return -EINVAL;
1006 dirent = buf->previous;
1007
1008 if (dirent) {
1009 if (__put_user_unaligned(offset, &dirent->d_off))
1010 goto efault;
1011 }
1012 dirent = buf->current_dir;
1013 if (__put_user_unaligned(ino, &dirent->d_ino))
1014 goto efault;
1015 off = 0;
1016 if (__put_user_unaligned(off, &dirent->d_off))
1017 goto efault;
1018 if (__put_user(reclen, &dirent->d_reclen))
1019 goto efault;
1020 if (__put_user(d_type, &dirent->d_type))
1021 goto efault;
1022 if (copy_to_user(dirent->d_name, name, namlen))
1023 goto efault;
1024 if (__put_user(0, dirent->d_name + namlen))
1025 goto efault;
1026 buf->previous = dirent;
1027 dirent = (void __user *)dirent + reclen;
1028 buf->current_dir = dirent;
1029 buf->count -= reclen;
1030 return 0;
1031efault:
1032 buf->error = -EFAULT;
1033 return -EFAULT;
1034}
1035
1036asmlinkage long compat_sys_getdents64(unsigned int fd,
1037 struct linux_dirent64 __user * dirent, unsigned int count)
1038{
1039 struct file * file;
1040 struct linux_dirent64 __user * lastdirent;
1041 struct compat_getdents_callback64 buf;
1042 int error;
1043
1044 error = -EFAULT;
1045 if (!access_ok(VERIFY_WRITE, dirent, count))
1046 goto out;
1047
1048 error = -EBADF;
1049 file = fget(fd);
1050 if (!file)
1051 goto out;
1052
1053 buf.current_dir = dirent;
1054 buf.previous = NULL;
1055 buf.count = count;
1056 buf.error = 0;
1057
1058 error = vfs_readdir(file, compat_filldir64, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001059 if (error >= 0)
1060 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 lastdirent = buf.previous;
1062 if (lastdirent) {
1063 typeof(lastdirent->d_off) d_off = file->f_pos;
Heiko Carstens7116e992006-12-06 20:36:36 -08001064 if (__put_user_unaligned(d_off, &lastdirent->d_off))
Al Viro53c9c5c2008-08-24 07:29:52 -04001065 error = -EFAULT;
1066 else
1067 error = count - buf.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 fput(file);
1070out:
1071 return error;
1072}
1073#endif /* ! __ARCH_OMIT_COMPAT_SYS_GETDENTS64 */
1074
1075static ssize_t compat_do_readv_writev(int type, struct file *file,
1076 const struct compat_iovec __user *uvector,
1077 unsigned long nr_segs, loff_t *pos)
1078{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 compat_ssize_t tot_len;
1080 struct iovec iovstack[UIO_FASTIOV];
1081 struct iovec *iov=iovstack, *vector;
1082 ssize_t ret;
1083 int seg;
1084 io_fn_t fn;
1085 iov_fn_t fnv;
1086
1087 /*
1088 * SuS says "The readv() function *may* fail if the iovcnt argument
1089 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
1090 * traditionally returned zero for zero segments, so...
1091 */
1092 ret = 0;
1093 if (nr_segs == 0)
1094 goto out;
1095
1096 /*
1097 * First get the "struct iovec" from user memory and
1098 * verify all the pointers
1099 */
1100 ret = -EINVAL;
1101 if ((nr_segs > UIO_MAXIOV) || (nr_segs <= 0))
1102 goto out;
1103 if (!file->f_op)
1104 goto out;
1105 if (nr_segs > UIO_FASTIOV) {
1106 ret = -ENOMEM;
1107 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
1108 if (!iov)
1109 goto out;
1110 }
1111 ret = -EFAULT;
1112 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
1113 goto out;
1114
1115 /*
1116 * Single unix specification:
1117 * We should -EINVAL if an element length is not >= 0 and fitting an
1118 * ssize_t. The total length is fitting an ssize_t
1119 *
1120 * Be careful here because iov_len is a size_t not an ssize_t
1121 */
1122 tot_len = 0;
1123 vector = iov;
1124 ret = -EINVAL;
1125 for (seg = 0 ; seg < nr_segs; seg++) {
1126 compat_ssize_t tmp = tot_len;
1127 compat_ssize_t len;
1128 compat_uptr_t buf;
1129
1130 if (__get_user(len, &uvector->iov_len) ||
1131 __get_user(buf, &uvector->iov_base)) {
1132 ret = -EFAULT;
1133 goto out;
1134 }
1135 if (len < 0) /* size_t not fitting an compat_ssize_t .. */
1136 goto out;
1137 tot_len += len;
1138 if (tot_len < tmp) /* maths overflow on the compat_ssize_t */
1139 goto out;
1140 vector->iov_base = compat_ptr(buf);
1141 vector->iov_len = (compat_size_t) len;
1142 uvector++;
1143 vector++;
1144 }
1145 if (tot_len == 0) {
1146 ret = 0;
1147 goto out;
1148 }
1149
1150 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001151 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 goto out;
1153
1154 fnv = NULL;
1155 if (type == READ) {
1156 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001157 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 } else {
1159 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001160 fnv = file->f_op->aio_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001163 if (fnv)
1164 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
1165 pos, fnv);
1166 else
1167 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169out:
1170 if (iov != iovstack)
1171 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -04001172 if ((ret + (type == READ)) > 0) {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001173 struct dentry *dentry = file->f_path.dentry;
Robert Love0eeca282005-07-12 17:06:03 -04001174 if (type == READ)
1175 fsnotify_access(dentry);
1176 else
1177 fsnotify_modify(dentry);
1178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return ret;
1180}
1181
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001182static size_t compat_readv(struct file *file,
1183 const struct compat_iovec __user *vec,
1184 unsigned long vlen, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 ssize_t ret = -EBADF;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (!(file->f_mode & FMODE_READ))
1189 goto out;
1190
1191 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001192 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 goto out;
1194
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001195 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197out:
Gerd Hoffmannca8a5bd2009-01-06 14:41:09 -08001198 if (ret > 0)
1199 add_rchar(current, ret);
1200 inc_syscr(current);
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001201 return ret;
1202}
1203
1204asmlinkage ssize_t
1205compat_sys_readv(unsigned long fd, const struct compat_iovec __user *vec,
1206 unsigned long vlen)
1207{
1208 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001209 int fput_needed;
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001210 ssize_t ret;
1211
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001212 file = fget_light(fd, &fput_needed);
Gerd Hoffmanndac12132009-04-02 16:59:20 -07001213 if (!file)
1214 return -EBADF;
1215 ret = compat_readv(file, vec, vlen, &file->f_pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001216 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return ret;
1218}
1219
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001220asmlinkage ssize_t
1221compat_sys_preadv(unsigned long fd, const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -07001222 unsigned long vlen, u32 pos_low, u32 pos_high)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001223{
1224 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1225 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001226 int fput_needed;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001227 ssize_t ret;
1228
1229 if (pos < 0)
1230 return -EINVAL;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001231 file = fget_light(fd, &fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001232 if (!file)
1233 return -EBADF;
1234 ret = compat_readv(file, vec, vlen, &pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001235 fput_light(file, fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001236 return ret;
1237}
1238
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001239static size_t compat_writev(struct file *file,
1240 const struct compat_iovec __user *vec,
1241 unsigned long vlen, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ssize_t ret = -EBADF;
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 if (!(file->f_mode & FMODE_WRITE))
1246 goto out;
1247
1248 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001249 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 goto out;
1251
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001252 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254out:
Gerd Hoffmannca8a5bd2009-01-06 14:41:09 -08001255 if (ret > 0)
1256 add_wchar(current, ret);
1257 inc_syscw(current);
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001258 return ret;
1259}
1260
1261asmlinkage ssize_t
1262compat_sys_writev(unsigned long fd, const struct compat_iovec __user *vec,
1263 unsigned long vlen)
1264{
1265 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001266 int fput_needed;
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001267 ssize_t ret;
1268
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001269 file = fget_light(fd, &fput_needed);
Gerd Hoffmann6949a632009-04-02 16:59:21 -07001270 if (!file)
1271 return -EBADF;
1272 ret = compat_writev(file, vec, vlen, &file->f_pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001273 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return ret;
1275}
1276
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001277asmlinkage ssize_t
1278compat_sys_pwritev(unsigned long fd, const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -07001279 unsigned long vlen, u32 pos_low, u32 pos_high)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001280{
1281 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1282 struct file *file;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001283 int fput_needed;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001284 ssize_t ret;
1285
1286 if (pos < 0)
1287 return -EINVAL;
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001288 file = fget_light(fd, &fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001289 if (!file)
1290 return -EBADF;
1291 ret = compat_writev(file, vec, vlen, &pos);
Gerd Hoffmann10c7db22009-04-02 16:59:25 -07001292 fput_light(file, fput_needed);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001293 return ret;
1294}
1295
Andi Kleend2610202006-05-01 12:15:48 -07001296asmlinkage long
1297compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32,
1298 unsigned int nr_segs, unsigned int flags)
1299{
1300 unsigned i;
Al Viro90cbad62006-10-10 22:44:17 +01001301 struct iovec __user *iov;
Jens Axboe98232d52006-05-04 09:13:49 +02001302 if (nr_segs > UIO_MAXIOV)
Andi Kleend2610202006-05-01 12:15:48 -07001303 return -EINVAL;
1304 iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec));
1305 for (i = 0; i < nr_segs; i++) {
1306 struct compat_iovec v;
1307 if (get_user(v.iov_base, &iov32[i].iov_base) ||
1308 get_user(v.iov_len, &iov32[i].iov_len) ||
1309 put_user(compat_ptr(v.iov_base), &iov[i].iov_base) ||
1310 put_user(v.iov_len, &iov[i].iov_len))
1311 return -EFAULT;
1312 }
1313 return sys_vmsplice(fd, iov, nr_segs, flags);
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
Miklos Szeredie922efc2005-09-06 15:18:25 -07001317 * Exactly like fs/open.c:sys_open(), except that it doesn't set the
1318 * O_LARGEFILE flag.
1319 */
1320asmlinkage long
1321compat_sys_open(const char __user *filename, int flags, int mode)
1322{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001323 return do_sys_open(AT_FDCWD, filename, flags, mode);
1324}
1325
1326/*
1327 * Exactly like fs/open.c:sys_openat(), except that it doesn't set the
1328 * O_LARGEFILE flag.
1329 */
1330asmlinkage long
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +11001331compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, int mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001332{
1333 return do_sys_open(dfd, filename, flags, mode);
Miklos Szeredie922efc2005-09-06 15:18:25 -07001334}
1335
1336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 * compat_count() counts the number of arguments/envelopes. It is basically
1338 * a copy of count() from fs/exec.c, except that it works with 32 bit argv
1339 * and envp pointers.
1340 */
1341static int compat_count(compat_uptr_t __user *argv, int max)
1342{
1343 int i = 0;
1344
1345 if (argv != NULL) {
1346 for (;;) {
1347 compat_uptr_t p;
1348
1349 if (get_user(p, argv))
1350 return -EFAULT;
1351 if (!p)
1352 break;
1353 argv++;
Jason Baron362e6662008-10-15 22:01:52 -07001354 if (i++ >= max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -E2BIG;
1356 }
1357 }
1358 return i;
1359}
1360
1361/*
1362 * compat_copy_strings() is basically a copy of copy_strings() from fs/exec.c
1363 * except that it works with 32 bit argv and envp pointers.
1364 */
1365static int compat_copy_strings(int argc, compat_uptr_t __user *argv,
1366 struct linux_binprm *bprm)
1367{
1368 struct page *kmapped_page = NULL;
1369 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001370 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 int ret;
1372
1373 while (argc-- > 0) {
1374 compat_uptr_t str;
1375 int len;
1376 unsigned long pos;
1377
1378 if (get_user(str, argv+argc) ||
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001379 !(len = strnlen_user(compat_ptr(str), MAX_ARG_STRLEN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 ret = -EFAULT;
1381 goto out;
1382 }
1383
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001384 if (len > MAX_ARG_STRLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 ret = -E2BIG;
1386 goto out;
1387 }
1388
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001389 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001391 str += len;
1392 bprm->p -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001398 if (offset == 0)
1399 offset = PAGE_SIZE;
1400
1401 bytes_to_copy = offset;
1402 if (bytes_to_copy > len)
1403 bytes_to_copy = len;
1404
1405 offset -= bytes_to_copy;
1406 pos -= bytes_to_copy;
1407 str -= bytes_to_copy;
1408 len -= bytes_to_copy;
1409
1410 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
1411 struct page *page;
1412
1413#ifdef CONFIG_STACK_GROWSUP
1414 ret = expand_stack_downwards(bprm->vma, pos);
1415 if (ret < 0) {
1416 /* We've exceed the stack rlimit. */
1417 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 goto out;
1419 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001420#endif
1421 ret = get_user_pages(current, bprm->mm, pos,
1422 1, 1, 1, &page, NULL);
1423 if (ret <= 0) {
1424 /* We've exceed the stack rlimit. */
1425 ret = -E2BIG;
1426 goto out;
1427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001429 if (kmapped_page) {
1430 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001432 put_page(kmapped_page);
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 kmapped_page = page;
1435 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001436 kpos = pos & PAGE_MASK;
1437 flush_cache_page(bprm->vma, kpos,
1438 page_to_pfn(kmapped_page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001440 if (copy_from_user(kaddr+offset, compat_ptr(str),
1441 bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 ret = -EFAULT;
1443 goto out;
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
1446 }
1447 ret = 0;
1448out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001449 if (kmapped_page) {
1450 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001452 put_page(kmapped_page);
1453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return ret;
1455}
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*
1458 * compat_do_execve() is mostly a copy of do_execve(), with the exception
1459 * that it processes 32 bit argv and envp pointers.
1460 */
1461int compat_do_execve(char * filename,
1462 compat_uptr_t __user *argv,
1463 compat_uptr_t __user *envp,
1464 struct pt_regs * regs)
1465{
1466 struct linux_binprm *bprm;
1467 struct file *file;
Hugh Dickins53e93092009-03-28 23:16:03 +00001468 struct files_struct *displaced;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001469 bool clear_in_exec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Hugh Dickins53e93092009-03-28 23:16:03 +00001472 retval = unshare_files(&displaced);
1473 if (retval)
1474 goto out_ret;
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 retval = -ENOMEM;
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001477 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (!bprm)
Hugh Dickins53e93092009-03-28 23:16:03 +00001479 goto out_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Oleg Nesterova2a84742009-09-05 11:17:13 -07001481 retval = prepare_bprm_creds(bprm);
1482 if (retval)
David Howellsa6f76f22008-11-14 10:39:24 +11001483 goto out_free;
Al Viro498052b2009-03-30 07:20:30 -04001484
1485 retval = check_unsafe_exec(bprm);
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001486 if (retval < 0)
Oleg Nesterova2a84742009-09-05 11:17:13 -07001487 goto out_free;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001488 clear_in_exec = retval;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001489 current->in_execve = 1;
David Howellsa6f76f22008-11-14 10:39:24 +11001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 file = open_exec(filename);
1492 retval = PTR_ERR(file);
1493 if (IS_ERR(file))
Al Viro498052b2009-03-30 07:20:30 -04001494 goto out_unmark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 sched_exec();
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 bprm->file = file;
1499 bprm->filename = filename;
1500 bprm->interp = filename;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001501
1502 retval = bprm_mm_init(bprm);
1503 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 goto out_file;
1505
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001506 bprm->argc = compat_count(argv, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if ((retval = bprm->argc) < 0)
David Howellsa6f76f22008-11-14 10:39:24 +11001508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001510 bprm->envc = compat_count(envp, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if ((retval = bprm->envc) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 goto out;
1513
1514 retval = prepare_binprm(bprm);
1515 if (retval < 0)
1516 goto out;
1517
1518 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1519 if (retval < 0)
1520 goto out;
1521
1522 bprm->exec = bprm->p;
1523 retval = compat_copy_strings(bprm->envc, envp, bprm);
1524 if (retval < 0)
1525 goto out;
1526
1527 retval = compat_copy_strings(bprm->argc, argv, bprm);
1528 if (retval < 0)
1529 goto out;
1530
1531 retval = search_binary_handler(bprm, regs);
David Howellsa6f76f22008-11-14 10:39:24 +11001532 if (retval < 0)
1533 goto out;
1534
1535 /* execve succeeded */
Al Viro498052b2009-03-30 07:20:30 -04001536 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001537 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001538 acct_update_integrals(current);
1539 free_bprm(bprm);
Hugh Dickins53e93092009-03-28 23:16:03 +00001540 if (displaced)
1541 put_files_struct(displaced);
David Howellsa6f76f22008-11-14 10:39:24 +11001542 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (bprm->mm)
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001546 mmput(bprm->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548out_file:
1549 if (bprm->file) {
1550 allow_write_access(bprm->file);
1551 fput(bprm->file);
1552 }
1553
Al Viro498052b2009-03-30 07:20:30 -04001554out_unmark:
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001555 if (clear_in_exec)
1556 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001557 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001558
1559out_free:
Al Viro08a6fac2008-05-10 16:38:25 -04001560 free_bprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Hugh Dickins53e93092009-03-28 23:16:03 +00001562out_files:
1563 if (displaced)
1564 reset_files_struct(displaced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565out_ret:
1566 return retval;
1567}
1568
1569#define __COMPAT_NFDBITS (8 * sizeof(compat_ulong_t))
1570
Thomas Gleixnerb773ad42008-08-31 08:16:57 -07001571static int poll_select_copy_remaining(struct timespec *end_time, void __user *p,
1572 int timeval, int ret)
1573{
1574 struct timespec ts;
1575
1576 if (!p)
1577 return ret;
1578
1579 if (current->personality & STICKY_TIMEOUTS)
1580 goto sticky;
1581
1582 /* No update for zero timeout */
1583 if (!end_time->tv_sec && !end_time->tv_nsec)
1584 return ret;
1585
1586 ktime_get_ts(&ts);
1587 ts = timespec_sub(*end_time, ts);
1588 if (ts.tv_sec < 0)
1589 ts.tv_sec = ts.tv_nsec = 0;
1590
1591 if (timeval) {
1592 struct compat_timeval rtv;
1593
1594 rtv.tv_sec = ts.tv_sec;
1595 rtv.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
1596
1597 if (!copy_to_user(p, &rtv, sizeof(rtv)))
1598 return ret;
1599 } else {
1600 struct compat_timespec rts;
1601
1602 rts.tv_sec = ts.tv_sec;
1603 rts.tv_nsec = ts.tv_nsec;
1604
1605 if (!copy_to_user(p, &rts, sizeof(rts)))
1606 return ret;
1607 }
1608 /*
1609 * If an application puts its timeval in read-only memory, we
1610 * don't want the Linux-specific update to the timeval to
1611 * cause a fault after the select has completed
1612 * successfully. However, because we're not updating the
1613 * timeval, we can't restart the system call.
1614 */
1615
1616sticky:
1617 if (ret == -ERESTARTNOHAND)
1618 ret = -EINTR;
1619 return ret;
1620}
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622/*
1623 * Ooo, nasty. We need here to frob 32-bit unsigned longs to
1624 * 64-bit unsigned longs.
1625 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001626static
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627int compat_get_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1628 unsigned long *fdset)
1629{
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001630 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (ufdset) {
1632 unsigned long odd;
1633
1634 if (!access_ok(VERIFY_WRITE, ufdset, nr*sizeof(compat_ulong_t)))
1635 return -EFAULT;
1636
1637 odd = nr & 1UL;
1638 nr &= ~1UL;
1639 while (nr) {
1640 unsigned long h, l;
Heiko Carstens7116e992006-12-06 20:36:36 -08001641 if (__get_user(l, ufdset) || __get_user(h, ufdset+1))
1642 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 ufdset += 2;
1644 *fdset++ = h << 32 | l;
1645 nr -= 2;
1646 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001647 if (odd && __get_user(*fdset, ufdset))
1648 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 } else {
1650 /* Tricky, must clear full unsigned long in the
1651 * kernel fdset at the end, this makes sure that
1652 * actually happens.
1653 */
1654 memset(fdset, 0, ((nr + 1) & ~1)*sizeof(compat_ulong_t));
1655 }
1656 return 0;
1657}
1658
Arjan van de Ven858119e2006-01-14 13:20:43 -08001659static
Heiko Carstens7116e992006-12-06 20:36:36 -08001660int compat_set_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1661 unsigned long *fdset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
1663 unsigned long odd;
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001664 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 if (!ufdset)
Heiko Carstens7116e992006-12-06 20:36:36 -08001667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 odd = nr & 1UL;
1670 nr &= ~1UL;
1671 while (nr) {
1672 unsigned long h, l;
1673 l = *fdset++;
1674 h = l >> 32;
Heiko Carstens7116e992006-12-06 20:36:36 -08001675 if (__put_user(l, ufdset) || __put_user(h, ufdset+1))
1676 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 ufdset += 2;
1678 nr -= 2;
1679 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001680 if (odd && __put_user(*fdset, ufdset))
1681 return -EFAULT;
1682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
1685
1686/*
1687 * This is a virtual copy of sys_select from fs/select.c and probably
1688 * should be compared to it from time to time
1689 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691/*
1692 * We can actually return ERESTARTSYS instead of EINTR, but I'd
1693 * like to be certain this leads to no problems. So I return
1694 * EINTR just for safety.
1695 *
1696 * Update: ERESTARTSYS breaks at least the xview clock binary, so
1697 * I'm trying ERESTARTNOHAND which restart only when you want to.
1698 */
1699#define MAX_SELECT_SECONDS \
1700 ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1)
1701
David Woodhouse9f729492006-01-18 17:44:05 -08001702int compat_core_sys_select(int n, compat_ulong_t __user *inp,
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001703 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1704 struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 fd_set_bits fds;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001707 void *bits;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001708 int size, max_fds, ret = -EINVAL;
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001709 struct fdtable *fdt;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001710 long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (n < 0)
1713 goto out_nofds;
1714
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001715 /* max_fds can increase, so grab it once to avoid race */
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001716 rcu_read_lock();
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001717 fdt = files_fdtable(current->files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001718 max_fds = fdt->max_fds;
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001719 rcu_read_unlock();
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001720 if (n > max_fds)
1721 n = max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 /*
1724 * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
1725 * since we used fdset we need to allocate memory in units of
1726 * long-words.
1727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 size = FDS_BYTES(n);
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001729 bits = stack_fds;
1730 if (size > sizeof(stack_fds) / 6) {
1731 bits = kmalloc(6 * size, GFP_KERNEL);
1732 ret = -ENOMEM;
1733 if (!bits)
1734 goto out_nofds;
1735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 fds.in = (unsigned long *) bits;
1737 fds.out = (unsigned long *) (bits + size);
1738 fds.ex = (unsigned long *) (bits + 2*size);
1739 fds.res_in = (unsigned long *) (bits + 3*size);
1740 fds.res_out = (unsigned long *) (bits + 4*size);
1741 fds.res_ex = (unsigned long *) (bits + 5*size);
1742
1743 if ((ret = compat_get_fd_set(n, inp, fds.in)) ||
1744 (ret = compat_get_fd_set(n, outp, fds.out)) ||
1745 (ret = compat_get_fd_set(n, exp, fds.ex)))
1746 goto out;
1747 zero_fd_set(n, fds.res_in);
1748 zero_fd_set(n, fds.res_out);
1749 zero_fd_set(n, fds.res_ex);
1750
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001751 ret = do_select(n, &fds, end_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 if (ret < 0)
1754 goto out;
1755 if (!ret) {
1756 ret = -ERESTARTNOHAND;
1757 if (signal_pending(current))
1758 goto out;
1759 ret = 0;
1760 }
1761
Heiko Carstens7116e992006-12-06 20:36:36 -08001762 if (compat_set_fd_set(n, inp, fds.res_in) ||
1763 compat_set_fd_set(n, outp, fds.res_out) ||
1764 compat_set_fd_set(n, exp, fds.res_ex))
1765 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766out:
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001767 if (bits != stack_fds)
1768 kfree(bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769out_nofds:
1770 return ret;
1771}
1772
David Woodhouse9f729492006-01-18 17:44:05 -08001773asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
1774 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1775 struct compat_timeval __user *tvp)
1776{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001777 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001778 struct compat_timeval tv;
1779 int ret;
1780
1781 if (tvp) {
1782 if (copy_from_user(&tv, tvp, sizeof(tv)))
1783 return -EFAULT;
1784
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001785 to = &end_time;
Arjan van de Ven4d36a9e2008-10-25 12:41:41 -07001786 if (poll_select_set_timeout(to,
1787 tv.tv_sec + (tv.tv_usec / USEC_PER_SEC),
1788 (tv.tv_usec % USEC_PER_SEC) * NSEC_PER_USEC))
David Woodhouse9f729492006-01-18 17:44:05 -08001789 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -08001790 }
1791
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001792 ret = compat_core_sys_select(n, inp, outp, exp, to);
1793 ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001794
1795 return ret;
1796}
1797
Roland McGrathf3de2722008-04-30 00:53:09 -07001798#ifdef HAVE_SET_RESTORE_SIGMASK
Heiko Carstensc9da9f22009-01-14 14:13:57 +01001799static long do_compat_pselect(int n, compat_ulong_t __user *inp,
David Woodhouse9f729492006-01-18 17:44:05 -08001800 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1801 struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask,
1802 compat_size_t sigsetsize)
1803{
1804 compat_sigset_t ss32;
1805 sigset_t ksigmask, sigsaved;
David Woodhouse9f729492006-01-18 17:44:05 -08001806 struct compat_timespec ts;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001807 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001808 int ret;
1809
1810 if (tsp) {
1811 if (copy_from_user(&ts, tsp, sizeof(ts)))
1812 return -EFAULT;
1813
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001814 to = &end_time;
1815 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
David Woodhouse9f729492006-01-18 17:44:05 -08001816 return -EINVAL;
1817 }
1818
1819 if (sigmask) {
1820 if (sigsetsize != sizeof(compat_sigset_t))
1821 return -EINVAL;
1822 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1823 return -EFAULT;
1824 sigset_from_compat(&ksigmask, &ss32);
1825
1826 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1827 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1828 }
1829
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001830 ret = compat_core_sys_select(n, inp, outp, exp, to);
1831 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001832
1833 if (ret == -ERESTARTNOHAND) {
1834 /*
1835 * Don't restore the signal mask yet. Let do_signal() deliver
1836 * the signal on the way back to userspace, before the signal
1837 * mask is restored.
1838 */
1839 if (sigmask) {
1840 memcpy(&current->saved_sigmask, &sigsaved,
1841 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001842 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -08001843 }
1844 } else if (sigmask)
1845 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1846
1847 return ret;
1848}
1849
1850asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
1851 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1852 struct compat_timespec __user *tsp, void __user *sig)
1853{
1854 compat_size_t sigsetsize = 0;
1855 compat_uptr_t up = 0;
1856
1857 if (sig) {
1858 if (!access_ok(VERIFY_READ, sig,
1859 sizeof(compat_uptr_t)+sizeof(compat_size_t)) ||
1860 __get_user(up, (compat_uptr_t __user *)sig) ||
1861 __get_user(sigsetsize,
1862 (compat_size_t __user *)(sig+sizeof(up))))
1863 return -EFAULT;
1864 }
Heiko Carstensc9da9f22009-01-14 14:13:57 +01001865 return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up),
1866 sigsetsize);
David Woodhouse9f729492006-01-18 17:44:05 -08001867}
1868
1869asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
1870 unsigned int nfds, struct compat_timespec __user *tsp,
1871 const compat_sigset_t __user *sigmask, compat_size_t sigsetsize)
1872{
1873 compat_sigset_t ss32;
1874 sigset_t ksigmask, sigsaved;
1875 struct compat_timespec ts;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001876 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -08001877 int ret;
1878
1879 if (tsp) {
1880 if (copy_from_user(&ts, tsp, sizeof(ts)))
1881 return -EFAULT;
1882
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001883 to = &end_time;
1884 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
1885 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -08001886 }
1887
1888 if (sigmask) {
Alexey Dobriyan3835a9b2006-05-15 09:44:27 -07001889 if (sigsetsize != sizeof(compat_sigset_t))
David Woodhouse9f729492006-01-18 17:44:05 -08001890 return -EINVAL;
1891 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1892 return -EFAULT;
1893 sigset_from_compat(&ksigmask, &ss32);
1894
1895 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1896 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1897 }
1898
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001899 ret = do_sys_poll(ufds, nfds, to);
David Woodhouse9f729492006-01-18 17:44:05 -08001900
1901 /* We can restart this syscall, usually */
1902 if (ret == -EINTR) {
1903 /*
1904 * Don't restore the signal mask yet. Let do_signal() deliver
1905 * the signal on the way back to userspace, before the signal
1906 * mask is restored.
1907 */
1908 if (sigmask) {
1909 memcpy(&current->saved_sigmask, &sigsaved,
1910 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001911 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -08001912 }
1913 ret = -ERESTARTNOHAND;
1914 } else if (sigmask)
1915 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1916
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -07001917 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -08001918
1919 return ret;
1920}
Roland McGrathf3de2722008-04-30 00:53:09 -07001921#endif /* HAVE_SET_RESTORE_SIGMASK */
David Woodhouse9f729492006-01-18 17:44:05 -08001922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923#if defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE)
1924/* Stuff for NFS server syscalls... */
1925struct compat_nfsctl_svc {
1926 u16 svc32_port;
1927 s32 svc32_nthreads;
1928};
1929
1930struct compat_nfsctl_client {
1931 s8 cl32_ident[NFSCLNT_IDMAX+1];
1932 s32 cl32_naddr;
1933 struct in_addr cl32_addrlist[NFSCLNT_ADDRMAX];
1934 s32 cl32_fhkeytype;
1935 s32 cl32_fhkeylen;
1936 u8 cl32_fhkey[NFSCLNT_KEYMAX];
1937};
1938
1939struct compat_nfsctl_export {
1940 char ex32_client[NFSCLNT_IDMAX+1];
1941 char ex32_path[NFS_MAXPATHLEN+1];
1942 compat_dev_t ex32_dev;
1943 compat_ino_t ex32_ino;
1944 compat_int_t ex32_flags;
Stephen Rothwell202e5972005-09-06 15:16:40 -07001945 __compat_uid_t ex32_anon_uid;
1946 __compat_gid_t ex32_anon_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947};
1948
1949struct compat_nfsctl_fdparm {
1950 struct sockaddr gd32_addr;
1951 s8 gd32_path[NFS_MAXPATHLEN+1];
1952 compat_int_t gd32_version;
1953};
1954
1955struct compat_nfsctl_fsparm {
1956 struct sockaddr gd32_addr;
1957 s8 gd32_path[NFS_MAXPATHLEN+1];
1958 compat_int_t gd32_maxlen;
1959};
1960
1961struct compat_nfsctl_arg {
1962 compat_int_t ca32_version; /* safeguard */
1963 union {
1964 struct compat_nfsctl_svc u32_svc;
1965 struct compat_nfsctl_client u32_client;
1966 struct compat_nfsctl_export u32_export;
1967 struct compat_nfsctl_fdparm u32_getfd;
1968 struct compat_nfsctl_fsparm u32_getfs;
1969 } u;
1970#define ca32_svc u.u32_svc
1971#define ca32_client u.u32_client
1972#define ca32_export u.u32_export
1973#define ca32_getfd u.u32_getfd
1974#define ca32_getfs u.u32_getfs
1975};
1976
1977union compat_nfsctl_res {
1978 __u8 cr32_getfh[NFS_FHSIZE];
1979 struct knfsd_fh cr32_getfs;
1980};
1981
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001982static int compat_nfs_svc_trans(struct nfsctl_arg *karg,
1983 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001985 if (!access_ok(VERIFY_READ, &arg->ca32_svc, sizeof(arg->ca32_svc)) ||
1986 get_user(karg->ca_version, &arg->ca32_version) ||
1987 __get_user(karg->ca_svc.svc_port, &arg->ca32_svc.svc32_port) ||
1988 __get_user(karg->ca_svc.svc_nthreads,
1989 &arg->ca32_svc.svc32_nthreads))
1990 return -EFAULT;
1991 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992}
1993
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001994static int compat_nfs_clnt_trans(struct nfsctl_arg *karg,
1995 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001997 if (!access_ok(VERIFY_READ, &arg->ca32_client,
1998 sizeof(arg->ca32_client)) ||
1999 get_user(karg->ca_version, &arg->ca32_version) ||
2000 __copy_from_user(&karg->ca_client.cl_ident[0],
2001 &arg->ca32_client.cl32_ident[0],
2002 NFSCLNT_IDMAX) ||
2003 __get_user(karg->ca_client.cl_naddr,
2004 &arg->ca32_client.cl32_naddr) ||
2005 __copy_from_user(&karg->ca_client.cl_addrlist[0],
2006 &arg->ca32_client.cl32_addrlist[0],
2007 (sizeof(struct in_addr) * NFSCLNT_ADDRMAX)) ||
2008 __get_user(karg->ca_client.cl_fhkeytype,
2009 &arg->ca32_client.cl32_fhkeytype) ||
2010 __get_user(karg->ca_client.cl_fhkeylen,
2011 &arg->ca32_client.cl32_fhkeylen) ||
2012 __copy_from_user(&karg->ca_client.cl_fhkey[0],
2013 &arg->ca32_client.cl32_fhkey[0],
2014 NFSCLNT_KEYMAX))
2015 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002017 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002020static int compat_nfs_exp_trans(struct nfsctl_arg *karg,
2021 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002023 if (!access_ok(VERIFY_READ, &arg->ca32_export,
2024 sizeof(arg->ca32_export)) ||
2025 get_user(karg->ca_version, &arg->ca32_version) ||
2026 __copy_from_user(&karg->ca_export.ex_client[0],
2027 &arg->ca32_export.ex32_client[0],
2028 NFSCLNT_IDMAX) ||
2029 __copy_from_user(&karg->ca_export.ex_path[0],
2030 &arg->ca32_export.ex32_path[0],
2031 NFS_MAXPATHLEN) ||
2032 __get_user(karg->ca_export.ex_dev,
2033 &arg->ca32_export.ex32_dev) ||
2034 __get_user(karg->ca_export.ex_ino,
2035 &arg->ca32_export.ex32_ino) ||
2036 __get_user(karg->ca_export.ex_flags,
2037 &arg->ca32_export.ex32_flags) ||
2038 __get_user(karg->ca_export.ex_anon_uid,
2039 &arg->ca32_export.ex32_anon_uid) ||
2040 __get_user(karg->ca_export.ex_anon_gid,
2041 &arg->ca32_export.ex32_anon_gid))
2042 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 SET_UID(karg->ca_export.ex_anon_uid, karg->ca_export.ex_anon_uid);
2044 SET_GID(karg->ca_export.ex_anon_gid, karg->ca_export.ex_anon_gid);
2045
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002046 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
2048
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002049static int compat_nfs_getfd_trans(struct nfsctl_arg *karg,
2050 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002052 if (!access_ok(VERIFY_READ, &arg->ca32_getfd,
2053 sizeof(arg->ca32_getfd)) ||
2054 get_user(karg->ca_version, &arg->ca32_version) ||
2055 __copy_from_user(&karg->ca_getfd.gd_addr,
2056 &arg->ca32_getfd.gd32_addr,
2057 (sizeof(struct sockaddr))) ||
2058 __copy_from_user(&karg->ca_getfd.gd_path,
2059 &arg->ca32_getfd.gd32_path,
2060 (NFS_MAXPATHLEN+1)) ||
2061 __get_user(karg->ca_getfd.gd_version,
2062 &arg->ca32_getfd.gd32_version))
2063 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066}
2067
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002068static int compat_nfs_getfs_trans(struct nfsctl_arg *karg,
2069 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002071 if (!access_ok(VERIFY_READ,&arg->ca32_getfs,sizeof(arg->ca32_getfs)) ||
2072 get_user(karg->ca_version, &arg->ca32_version) ||
2073 __copy_from_user(&karg->ca_getfs.gd_addr,
2074 &arg->ca32_getfs.gd32_addr,
2075 (sizeof(struct sockaddr))) ||
2076 __copy_from_user(&karg->ca_getfs.gd_path,
2077 &arg->ca32_getfs.gd32_path,
2078 (NFS_MAXPATHLEN+1)) ||
2079 __get_user(karg->ca_getfs.gd_maxlen,
2080 &arg->ca32_getfs.gd32_maxlen))
2081 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002083 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
2086/* This really doesn't need translations, we are only passing
2087 * back a union which contains opaque nfs file handle data.
2088 */
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002089static int compat_nfs_getfh_res_trans(union nfsctl_res *kres,
2090 union compat_nfsctl_res __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
2092 int err;
2093
2094 err = copy_to_user(res, kres, sizeof(*res));
2095
2096 return (err) ? -EFAULT : 0;
2097}
2098
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002099asmlinkage long compat_sys_nfsservctl(int cmd,
2100 struct compat_nfsctl_arg __user *arg,
2101 union compat_nfsctl_res __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 struct nfsctl_arg *karg;
2104 union nfsctl_res *kres;
2105 mm_segment_t oldfs;
2106 int err;
2107
2108 karg = kmalloc(sizeof(*karg), GFP_USER);
2109 kres = kmalloc(sizeof(*kres), GFP_USER);
2110 if(!karg || !kres) {
2111 err = -ENOMEM;
2112 goto done;
2113 }
2114
2115 switch(cmd) {
2116 case NFSCTL_SVC:
2117 err = compat_nfs_svc_trans(karg, arg);
2118 break;
2119
2120 case NFSCTL_ADDCLIENT:
2121 err = compat_nfs_clnt_trans(karg, arg);
2122 break;
2123
2124 case NFSCTL_DELCLIENT:
2125 err = compat_nfs_clnt_trans(karg, arg);
2126 break;
2127
2128 case NFSCTL_EXPORT:
2129 case NFSCTL_UNEXPORT:
2130 err = compat_nfs_exp_trans(karg, arg);
2131 break;
2132
2133 case NFSCTL_GETFD:
2134 err = compat_nfs_getfd_trans(karg, arg);
2135 break;
2136
2137 case NFSCTL_GETFS:
2138 err = compat_nfs_getfs_trans(karg, arg);
2139 break;
2140
2141 default:
2142 err = -EINVAL;
Peter Staubach57070d02006-03-25 03:08:04 -08002143 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145
Peter Staubach57070d02006-03-25 03:08:04 -08002146 if (err)
2147 goto done;
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 oldfs = get_fs();
2150 set_fs(KERNEL_DS);
2151 /* The __user pointer casts are valid because of the set_fs() */
2152 err = sys_nfsservctl(cmd, (void __user *) karg, (void __user *) kres);
2153 set_fs(oldfs);
2154
2155 if (err)
2156 goto done;
2157
2158 if((cmd == NFSCTL_GETFD) ||
2159 (cmd == NFSCTL_GETFS))
2160 err = compat_nfs_getfh_res_trans(kres, res);
2161
2162done:
2163 kfree(karg);
2164 kfree(kres);
2165 return err;
2166}
2167#else /* !NFSD */
2168long asmlinkage compat_sys_nfsservctl(int cmd, void *notused, void *notused2)
2169{
2170 return sys_ni_syscall();
2171}
2172#endif
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002173
2174#ifdef CONFIG_EPOLL
2175
Roland McGrathf3de2722008-04-30 00:53:09 -07002176#ifdef HAVE_SET_RESTORE_SIGMASK
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002177asmlinkage long compat_sys_epoll_pwait(int epfd,
2178 struct compat_epoll_event __user *events,
2179 int maxevents, int timeout,
2180 const compat_sigset_t __user *sigmask,
2181 compat_size_t sigsetsize)
2182{
2183 long err;
2184 compat_sigset_t csigmask;
2185 sigset_t ksigmask, sigsaved;
2186
2187 /*
2188 * If the caller wants a certain signal mask to be set during the wait,
2189 * we apply it here.
2190 */
2191 if (sigmask) {
2192 if (sigsetsize != sizeof(compat_sigset_t))
2193 return -EINVAL;
2194 if (copy_from_user(&csigmask, sigmask, sizeof(csigmask)))
2195 return -EFAULT;
2196 sigset_from_compat(&ksigmask, &csigmask);
2197 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2198 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
2199 }
2200
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002201 err = sys_epoll_wait(epfd, events, maxevents, timeout);
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002202
2203 /*
2204 * If we changed the signal mask, we need to restore the original one.
2205 * In case we've got a signal while waiting, we do not restore the
2206 * signal mask yet, and we allow do_signal() to deliver the signal on
2207 * the way back to userspace, before the signal mask is restored.
2208 */
2209 if (sigmask) {
2210 if (err == -EINTR) {
2211 memcpy(&current->saved_sigmask, &sigsaved,
2212 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002213 set_restore_sigmask();
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002214 } else
2215 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2216 }
2217
2218 return err;
2219}
Roland McGrathf3de2722008-04-30 00:53:09 -07002220#endif /* HAVE_SET_RESTORE_SIGMASK */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002221
2222#endif /* CONFIG_EPOLL */
Davide Libenzi6d18c922007-05-10 22:23:15 -07002223
2224#ifdef CONFIG_SIGNALFD
2225
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07002226asmlinkage long compat_sys_signalfd4(int ufd,
2227 const compat_sigset_t __user *sigmask,
2228 compat_size_t sigsetsize, int flags)
Davide Libenzi6d18c922007-05-10 22:23:15 -07002229{
2230 compat_sigset_t ss32;
2231 sigset_t tmp;
2232 sigset_t __user *ksigmask;
2233
2234 if (sigsetsize != sizeof(compat_sigset_t))
2235 return -EINVAL;
2236 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
2237 return -EFAULT;
2238 sigset_from_compat(&tmp, &ss32);
2239 ksigmask = compat_alloc_user_space(sizeof(sigset_t));
2240 if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t)))
2241 return -EFAULT;
2242
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07002243 return sys_signalfd4(ufd, ksigmask, sizeof(sigset_t), flags);
Davide Libenzi6d18c922007-05-10 22:23:15 -07002244}
2245
Ulrich Drepper9deb27b2008-07-23 21:29:24 -07002246asmlinkage long compat_sys_signalfd(int ufd,
2247 const compat_sigset_t __user *sigmask,
2248 compat_size_t sigsetsize)
2249{
2250 return compat_sys_signalfd4(ufd, sigmask, sigsetsize, 0);
2251}
Davide Libenzi6d18c922007-05-10 22:23:15 -07002252#endif /* CONFIG_SIGNALFD */
2253
Davide Libenzi83f5d122007-05-10 22:23:18 -07002254#ifdef CONFIG_TIMERFD
2255
Davide Libenzi4d672e72008-02-04 22:27:26 -08002256asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
2257 const struct compat_itimerspec __user *utmr,
2258 struct compat_itimerspec __user *otmr)
Davide Libenzi83f5d122007-05-10 22:23:18 -07002259{
Davide Libenzi4d672e72008-02-04 22:27:26 -08002260 int error;
Davide Libenzi83f5d122007-05-10 22:23:18 -07002261 struct itimerspec t;
2262 struct itimerspec __user *ut;
2263
Davide Libenzi83f5d122007-05-10 22:23:18 -07002264 if (get_compat_itimerspec(&t, utmr))
Heiko Carstens8317f142007-05-16 22:11:08 -07002265 return -EFAULT;
Davide Libenzi4d672e72008-02-04 22:27:26 -08002266 ut = compat_alloc_user_space(2 * sizeof(struct itimerspec));
2267 if (copy_to_user(&ut[0], &t, sizeof(t)))
Heiko Carstens8317f142007-05-16 22:11:08 -07002268 return -EFAULT;
Davide Libenzi4d672e72008-02-04 22:27:26 -08002269 error = sys_timerfd_settime(ufd, flags, &ut[0], &ut[1]);
2270 if (!error && otmr)
2271 error = (copy_from_user(&t, &ut[1], sizeof(struct itimerspec)) ||
2272 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
Davide Libenzi83f5d122007-05-10 22:23:18 -07002273
Davide Libenzi4d672e72008-02-04 22:27:26 -08002274 return error;
2275}
2276
2277asmlinkage long compat_sys_timerfd_gettime(int ufd,
2278 struct compat_itimerspec __user *otmr)
2279{
2280 int error;
2281 struct itimerspec t;
2282 struct itimerspec __user *ut;
2283
2284 ut = compat_alloc_user_space(sizeof(struct itimerspec));
2285 error = sys_timerfd_gettime(ufd, ut);
2286 if (!error)
2287 error = (copy_from_user(&t, ut, sizeof(struct itimerspec)) ||
2288 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
2289
2290 return error;
Davide Libenzi83f5d122007-05-10 22:23:18 -07002291}
2292
2293#endif /* CONFIG_TIMERFD */