blob: 5216c3fd751771ab4349753f68395b6daba74063 [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>
27#include <linux/vfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/ioctl.h>
29#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/smb.h>
31#include <linux/smb_mount.h>
32#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/smp_lock.h>
35#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/uaccess.h>
55#include <asm/mmu_context.h>
56#include <asm/ioctls.h>
David Howells07f3f052006-09-30 20:52:18 +020057#include "internal.h"
David Woodhouse9f729492006-01-18 17:44:05 -080058
Andi Kleenbebfa102006-06-26 13:56:52 +020059int compat_log = 1;
60
61int compat_printk(const char *fmt, ...)
62{
63 va_list ap;
64 int ret;
65 if (!compat_log)
66 return 0;
67 va_start(ap, fmt);
68 ret = vprintk(fmt, ap);
69 va_end(ap);
70 return ret;
71}
72
Badari Pulavartyee0b3e62006-09-30 23:28:47 -070073#include "read_write.h"
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
76 * Not all architectures have sys_utime, so implement this in terms
77 * of sys_utimes.
78 */
79asmlinkage long compat_sys_utime(char __user *filename, struct compat_utimbuf __user *t)
80{
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
93asmlinkage long compat_sys_utimensat(unsigned int dfd, char __user *filename, struct compat_timespec __user *t, int flags)
94{
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
102 if ((tv[0].tv_nsec == UTIME_OMIT || tv[0].tv_nsec == UTIME_NOW)
103 && tv[0].tv_sec != 0)
104 return -EINVAL;
105 if ((tv[1].tv_nsec == UTIME_OMIT || tv[1].tv_nsec == UTIME_NOW)
106 && tv[1].tv_sec != 0)
107 return -EINVAL;
108
109 if (tv[0].tv_nsec == UTIME_OMIT && tv[1].tv_nsec == UTIME_OMIT)
110 return 0;
111 }
112 return do_utimes(dfd, filename, t ? tv : NULL, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100115asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename, struct compat_timeval __user *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700117 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100119 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (get_user(tv[0].tv_sec, &t[0].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700121 get_user(tv[0].tv_nsec, &t[0].tv_usec) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 get_user(tv[1].tv_sec, &t[1].tv_sec) ||
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700123 get_user(tv[1].tv_nsec, &t[1].tv_usec))
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100124 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700125 if (tv[0].tv_nsec >= 1000000 || tv[0].tv_nsec < 0 ||
126 tv[1].tv_nsec >= 1000000 || tv[1].tv_nsec < 0)
127 return -EINVAL;
128 tv[0].tv_nsec *= 1000;
129 tv[1].tv_nsec *= 1000;
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100130 }
Ulrich Drepper1c710c82007-05-08 00:33:25 -0700131 return do_utimes(dfd, filename, t ? tv : NULL, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800132}
133
134asmlinkage long compat_sys_utimes(char __user *filename, struct compat_timeval __user *t)
135{
136 return compat_sys_futimesat(AT_FDCWD, filename, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139asmlinkage long compat_sys_newstat(char __user * filename,
140 struct compat_stat __user *statbuf)
141{
142 struct kstat stat;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800143 int error = vfs_stat_fd(AT_FDCWD, filename, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 if (!error)
146 error = cp_compat_stat(&stat, statbuf);
147 return error;
148}
149
150asmlinkage long compat_sys_newlstat(char __user * filename,
151 struct compat_stat __user *statbuf)
152{
153 struct kstat stat;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800154 int error = vfs_lstat_fd(AT_FDCWD, filename, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (!error)
157 error = cp_compat_stat(&stat, statbuf);
158 return error;
159}
160
Kyle McMartin82d821d2006-03-24 03:18:20 -0800161#ifndef __ARCH_WANT_STAT64
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +1100162asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user *filename,
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800163 struct compat_stat __user *statbuf, int flag)
164{
165 struct kstat stat;
166 int error = -EINVAL;
167
168 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
169 goto out;
170
171 if (flag & AT_SYMLINK_NOFOLLOW)
172 error = vfs_lstat_fd(dfd, filename, &stat);
173 else
174 error = vfs_stat_fd(dfd, filename, &stat);
175
176 if (!error)
177 error = cp_compat_stat(&stat, statbuf);
178
179out:
180 return error;
181}
Kyle McMartin82d821d2006-03-24 03:18:20 -0800182#endif
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184asmlinkage long compat_sys_newfstat(unsigned int fd,
185 struct compat_stat __user * statbuf)
186{
187 struct kstat stat;
188 int error = vfs_fstat(fd, &stat);
189
190 if (!error)
191 error = cp_compat_stat(&stat, statbuf);
192 return error;
193}
194
195static int put_compat_statfs(struct compat_statfs __user *ubuf, struct kstatfs *kbuf)
196{
197
198 if (sizeof ubuf->f_blocks == 4) {
199 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail) &
200 0xffffffff00000000ULL)
201 return -EOVERFLOW;
202 /* f_files and f_ffree may be -1; it's okay
203 * to stuff that into 32 bits */
204 if (kbuf->f_files != 0xffffffffffffffffULL
205 && (kbuf->f_files & 0xffffffff00000000ULL))
206 return -EOVERFLOW;
207 if (kbuf->f_ffree != 0xffffffffffffffffULL
208 && (kbuf->f_ffree & 0xffffffff00000000ULL))
209 return -EOVERFLOW;
210 }
211 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
212 __put_user(kbuf->f_type, &ubuf->f_type) ||
213 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
214 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
215 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
216 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
217 __put_user(kbuf->f_files, &ubuf->f_files) ||
218 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
219 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
220 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
221 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
222 __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
223 __put_user(0, &ubuf->f_spare[0]) ||
224 __put_user(0, &ubuf->f_spare[1]) ||
225 __put_user(0, &ubuf->f_spare[2]) ||
226 __put_user(0, &ubuf->f_spare[3]) ||
227 __put_user(0, &ubuf->f_spare[4]))
228 return -EFAULT;
229 return 0;
230}
231
232/*
233 * The following statfs calls are copies of code from fs/open.c and
234 * should be checked against those from time to time
235 */
236asmlinkage long compat_sys_statfs(const char __user *path, struct compat_statfs __user *buf)
237{
238 struct nameidata nd;
239 int error;
240
241 error = user_path_walk(path, &nd);
242 if (!error) {
243 struct kstatfs tmp;
David Howells726c3342006-06-23 02:02:58 -0700244 error = vfs_statfs(nd.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800245 if (!error)
246 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 path_release(&nd);
248 }
249 return error;
250}
251
252asmlinkage long compat_sys_fstatfs(unsigned int fd, struct compat_statfs __user *buf)
253{
254 struct file * file;
255 struct kstatfs tmp;
256 int error;
257
258 error = -EBADF;
259 file = fget(fd);
260 if (!file)
261 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800262 error = vfs_statfs(file->f_path.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800263 if (!error)
264 error = put_compat_statfs(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 fput(file);
266out:
267 return error;
268}
269
270static int put_compat_statfs64(struct compat_statfs64 __user *ubuf, struct kstatfs *kbuf)
271{
272 if (sizeof ubuf->f_blocks == 4) {
273 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail) &
274 0xffffffff00000000ULL)
275 return -EOVERFLOW;
276 /* f_files and f_ffree may be -1; it's okay
277 * to stuff that into 32 bits */
278 if (kbuf->f_files != 0xffffffffffffffffULL
279 && (kbuf->f_files & 0xffffffff00000000ULL))
280 return -EOVERFLOW;
281 if (kbuf->f_ffree != 0xffffffffffffffffULL
282 && (kbuf->f_ffree & 0xffffffff00000000ULL))
283 return -EOVERFLOW;
284 }
285 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
286 __put_user(kbuf->f_type, &ubuf->f_type) ||
287 __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
288 __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
289 __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
290 __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
291 __put_user(kbuf->f_files, &ubuf->f_files) ||
292 __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
293 __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
294 __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
295 __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
296 __put_user(kbuf->f_frsize, &ubuf->f_frsize))
297 return -EFAULT;
298 return 0;
299}
300
301asmlinkage long compat_sys_statfs64(const char __user *path, compat_size_t sz, struct compat_statfs64 __user *buf)
302{
303 struct nameidata nd;
304 int error;
305
306 if (sz != sizeof(*buf))
307 return -EINVAL;
308
309 error = user_path_walk(path, &nd);
310 if (!error) {
311 struct kstatfs tmp;
David Howells726c3342006-06-23 02:02:58 -0700312 error = vfs_statfs(nd.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800313 if (!error)
314 error = put_compat_statfs64(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 path_release(&nd);
316 }
317 return error;
318}
319
320asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz, struct compat_statfs64 __user *buf)
321{
322 struct file * file;
323 struct kstatfs tmp;
324 int error;
325
326 if (sz != sizeof(*buf))
327 return -EINVAL;
328
329 error = -EBADF;
330 file = fget(fd);
331 if (!file)
332 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800333 error = vfs_statfs(file->f_path.dentry, &tmp);
David Gibson86e07ce2005-11-21 21:32:23 -0800334 if (!error)
335 error = put_compat_statfs64(buf, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 fput(file);
337out:
338 return error;
339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
342{
343 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
344 __get_user(kfl->l_type, &ufl->l_type) ||
345 __get_user(kfl->l_whence, &ufl->l_whence) ||
346 __get_user(kfl->l_start, &ufl->l_start) ||
347 __get_user(kfl->l_len, &ufl->l_len) ||
348 __get_user(kfl->l_pid, &ufl->l_pid))
349 return -EFAULT;
350 return 0;
351}
352
353static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
354{
355 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
356 __put_user(kfl->l_type, &ufl->l_type) ||
357 __put_user(kfl->l_whence, &ufl->l_whence) ||
358 __put_user(kfl->l_start, &ufl->l_start) ||
359 __put_user(kfl->l_len, &ufl->l_len) ||
360 __put_user(kfl->l_pid, &ufl->l_pid))
361 return -EFAULT;
362 return 0;
363}
364
365#ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
366static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
367{
368 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
369 __get_user(kfl->l_type, &ufl->l_type) ||
370 __get_user(kfl->l_whence, &ufl->l_whence) ||
371 __get_user(kfl->l_start, &ufl->l_start) ||
372 __get_user(kfl->l_len, &ufl->l_len) ||
373 __get_user(kfl->l_pid, &ufl->l_pid))
374 return -EFAULT;
375 return 0;
376}
377#endif
378
379#ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
380static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
381{
382 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
383 __put_user(kfl->l_type, &ufl->l_type) ||
384 __put_user(kfl->l_whence, &ufl->l_whence) ||
385 __put_user(kfl->l_start, &ufl->l_start) ||
386 __put_user(kfl->l_len, &ufl->l_len) ||
387 __put_user(kfl->l_pid, &ufl->l_pid))
388 return -EFAULT;
389 return 0;
390}
391#endif
392
393asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
394 unsigned long arg)
395{
396 mm_segment_t old_fs;
397 struct flock f;
398 long ret;
399
400 switch (cmd) {
401 case F_GETLK:
402 case F_SETLK:
403 case F_SETLKW:
404 ret = get_compat_flock(&f, compat_ptr(arg));
405 if (ret != 0)
406 break;
407 old_fs = get_fs();
408 set_fs(KERNEL_DS);
409 ret = sys_fcntl(fd, cmd, (unsigned long)&f);
410 set_fs(old_fs);
411 if (cmd == F_GETLK && ret == 0) {
NeilBrown2520f142006-01-08 01:02:40 -0800412 /* GETLK was successfule and we need to return the data...
413 * but it needs to fit in the compat structure.
414 * l_start shouldn't be too big, unless the original
415 * start + end is greater than COMPAT_OFF_T_MAX, in which
416 * case the app was asking for trouble, so we return
417 * -EOVERFLOW in that case.
418 * l_len could be too big, in which case we just truncate it,
419 * and only allow the app to see that part of the conflicting
420 * lock that might make sense to it anyway
421 */
422
423 if (f.l_start > COMPAT_OFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800425 if (f.l_len > COMPAT_OFF_T_MAX)
426 f.l_len = COMPAT_OFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (ret == 0)
428 ret = put_compat_flock(&f, compat_ptr(arg));
429 }
430 break;
431
432 case F_GETLK64:
433 case F_SETLK64:
434 case F_SETLKW64:
435 ret = get_compat_flock64(&f, compat_ptr(arg));
436 if (ret != 0)
437 break;
438 old_fs = get_fs();
439 set_fs(KERNEL_DS);
440 ret = sys_fcntl(fd, (cmd == F_GETLK64) ? F_GETLK :
441 ((cmd == F_SETLK64) ? F_SETLK : F_SETLKW),
442 (unsigned long)&f);
443 set_fs(old_fs);
444 if (cmd == F_GETLK64 && ret == 0) {
NeilBrown2520f142006-01-08 01:02:40 -0800445 /* need to return lock information - see above for commentary */
446 if (f.l_start > COMPAT_LOFF_T_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ret = -EOVERFLOW;
NeilBrown2520f142006-01-08 01:02:40 -0800448 if (f.l_len > COMPAT_LOFF_T_MAX)
449 f.l_len = COMPAT_LOFF_T_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (ret == 0)
451 ret = put_compat_flock64(&f, compat_ptr(arg));
452 }
453 break;
454
455 default:
456 ret = sys_fcntl(fd, cmd, arg);
457 break;
458 }
459 return ret;
460}
461
462asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
463 unsigned long arg)
464{
465 if ((cmd == F_GETLK64) || (cmd == F_SETLK64) || (cmd == F_SETLKW64))
466 return -EINVAL;
467 return compat_sys_fcntl64(fd, cmd, arg);
468}
469
470asmlinkage long
471compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
472{
473 long ret;
474 aio_context_t ctx64;
475
476 mm_segment_t oldfs = get_fs();
477 if (unlikely(get_user(ctx64, ctx32p)))
478 return -EFAULT;
479
480 set_fs(KERNEL_DS);
481 /* The __user pointer cast is valid because of the set_fs() */
482 ret = sys_io_setup(nr_reqs, (aio_context_t __user *) &ctx64);
483 set_fs(oldfs);
484 /* truncating is ok because it's a user address */
485 if (!ret)
486 ret = put_user((u32) ctx64, ctx32p);
487 return ret;
488}
489
490asmlinkage long
491compat_sys_io_getevents(aio_context_t ctx_id,
492 unsigned long min_nr,
493 unsigned long nr,
494 struct io_event __user *events,
495 struct compat_timespec __user *timeout)
496{
497 long ret;
498 struct timespec t;
499 struct timespec __user *ut = NULL;
500
501 ret = -EFAULT;
502 if (unlikely(!access_ok(VERIFY_WRITE, events,
503 nr * sizeof(struct io_event))))
504 goto out;
505 if (timeout) {
506 if (get_compat_timespec(&t, timeout))
507 goto out;
508
509 ut = compat_alloc_user_space(sizeof(*ut));
510 if (copy_to_user(ut, &t, sizeof(t)) )
511 goto out;
512 }
513 ret = sys_io_getevents(ctx_id, min_nr, nr, events, ut);
514out:
515 return ret;
516}
517
518static inline long
519copy_iocb(long nr, u32 __user *ptr32, struct iocb __user * __user *ptr64)
520{
521 compat_uptr_t uptr;
522 int i;
523
524 for (i = 0; i < nr; ++i) {
525 if (get_user(uptr, ptr32 + i))
526 return -EFAULT;
527 if (put_user(compat_ptr(uptr), ptr64 + i))
528 return -EFAULT;
529 }
530 return 0;
531}
532
533#define MAX_AIO_SUBMITS (PAGE_SIZE/sizeof(struct iocb *))
534
535asmlinkage long
536compat_sys_io_submit(aio_context_t ctx_id, int nr, u32 __user *iocb)
537{
538 struct iocb __user * __user *iocb64;
539 long ret;
540
541 if (unlikely(nr < 0))
542 return -EINVAL;
543
544 if (nr > MAX_AIO_SUBMITS)
545 nr = MAX_AIO_SUBMITS;
546
547 iocb64 = compat_alloc_user_space(nr * sizeof(*iocb64));
548 ret = copy_iocb(nr, iocb, iocb64);
549 if (!ret)
550 ret = sys_io_submit(ctx_id, nr, iocb64);
551 return ret;
552}
553
554struct compat_ncp_mount_data {
555 compat_int_t version;
556 compat_uint_t ncp_fd;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700557 __compat_uid_t mounted_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 compat_pid_t wdog_pid;
559 unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
560 compat_uint_t time_out;
561 compat_uint_t retry_count;
562 compat_uint_t flags;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700563 __compat_uid_t uid;
564 __compat_gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 compat_mode_t file_mode;
566 compat_mode_t dir_mode;
567};
568
569struct compat_ncp_mount_data_v4 {
570 compat_int_t version;
571 compat_ulong_t flags;
572 compat_ulong_t mounted_uid;
573 compat_long_t wdog_pid;
574 compat_uint_t ncp_fd;
575 compat_uint_t time_out;
576 compat_uint_t retry_count;
577 compat_ulong_t uid;
578 compat_ulong_t gid;
579 compat_ulong_t file_mode;
580 compat_ulong_t dir_mode;
581};
582
583static void *do_ncp_super_data_conv(void *raw_data)
584{
585 int version = *(unsigned int *)raw_data;
586
587 if (version == 3) {
588 struct compat_ncp_mount_data *c_n = raw_data;
589 struct ncp_mount_data *n = raw_data;
590
591 n->dir_mode = c_n->dir_mode;
592 n->file_mode = c_n->file_mode;
593 n->gid = c_n->gid;
594 n->uid = c_n->uid;
595 memmove (n->mounted_vol, c_n->mounted_vol, (sizeof (c_n->mounted_vol) + 3 * sizeof (unsigned int)));
596 n->wdog_pid = c_n->wdog_pid;
597 n->mounted_uid = c_n->mounted_uid;
598 } else if (version == 4) {
599 struct compat_ncp_mount_data_v4 *c_n = raw_data;
600 struct ncp_mount_data_v4 *n = raw_data;
601
602 n->dir_mode = c_n->dir_mode;
603 n->file_mode = c_n->file_mode;
604 n->gid = c_n->gid;
605 n->uid = c_n->uid;
606 n->retry_count = c_n->retry_count;
607 n->time_out = c_n->time_out;
608 n->ncp_fd = c_n->ncp_fd;
609 n->wdog_pid = c_n->wdog_pid;
610 n->mounted_uid = c_n->mounted_uid;
611 n->flags = c_n->flags;
612 } else if (version != 5) {
613 return NULL;
614 }
615
616 return raw_data;
617}
618
619struct compat_smb_mount_data {
620 compat_int_t version;
Stephen Rothwell202e5972005-09-06 15:16:40 -0700621 __compat_uid_t mounted_uid;
622 __compat_uid_t uid;
623 __compat_gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 compat_mode_t file_mode;
625 compat_mode_t dir_mode;
626};
627
628static void *do_smb_super_data_conv(void *raw_data)
629{
630 struct smb_mount_data *s = raw_data;
631 struct compat_smb_mount_data *c_s = raw_data;
632
633 if (c_s->version != SMB_MOUNT_OLDVERSION)
634 goto out;
635 s->dir_mode = c_s->dir_mode;
636 s->file_mode = c_s->file_mode;
637 s->gid = c_s->gid;
638 s->uid = c_s->uid;
639 s->mounted_uid = c_s->mounted_uid;
640 out:
641 return raw_data;
642}
643
David Howells9a9947b2005-04-18 10:54:51 -0700644struct compat_nfs_string {
645 compat_uint_t len;
David Howells5fc3e622005-04-27 15:39:03 -0700646 compat_uptr_t data;
David Howells9a9947b2005-04-18 10:54:51 -0700647};
648
649static inline void compat_nfs_string(struct nfs_string *dst,
650 struct compat_nfs_string *src)
651{
652 dst->data = compat_ptr(src->data);
653 dst->len = src->len;
654}
655
656struct compat_nfs4_mount_data_v1 {
657 compat_int_t version;
658 compat_int_t flags;
659 compat_int_t rsize;
660 compat_int_t wsize;
661 compat_int_t timeo;
662 compat_int_t retrans;
663 compat_int_t acregmin;
664 compat_int_t acregmax;
665 compat_int_t acdirmin;
666 compat_int_t acdirmax;
667 struct compat_nfs_string client_addr;
668 struct compat_nfs_string mnt_path;
669 struct compat_nfs_string hostname;
670 compat_uint_t host_addrlen;
David Howells5fc3e622005-04-27 15:39:03 -0700671 compat_uptr_t host_addr;
David Howells9a9947b2005-04-18 10:54:51 -0700672 compat_int_t proto;
673 compat_int_t auth_flavourlen;
David Howells5fc3e622005-04-27 15:39:03 -0700674 compat_uptr_t auth_flavours;
David Howells9a9947b2005-04-18 10:54:51 -0700675};
676
677static int do_nfs4_super_data_conv(void *raw_data)
678{
679 int version = *(compat_uint_t *) raw_data;
680
681 if (version == 1) {
682 struct compat_nfs4_mount_data_v1 *raw = raw_data;
683 struct nfs4_mount_data *real = raw_data;
684
685 /* copy the fields backwards */
686 real->auth_flavours = compat_ptr(raw->auth_flavours);
687 real->auth_flavourlen = raw->auth_flavourlen;
688 real->proto = raw->proto;
689 real->host_addr = compat_ptr(raw->host_addr);
690 real->host_addrlen = raw->host_addrlen;
691 compat_nfs_string(&real->hostname, &raw->hostname);
692 compat_nfs_string(&real->mnt_path, &raw->mnt_path);
693 compat_nfs_string(&real->client_addr, &raw->client_addr);
694 real->acdirmax = raw->acdirmax;
695 real->acdirmin = raw->acdirmin;
696 real->acregmax = raw->acregmax;
697 real->acregmin = raw->acregmin;
698 real->retrans = raw->retrans;
699 real->timeo = raw->timeo;
700 real->wsize = raw->wsize;
701 real->rsize = raw->rsize;
702 real->flags = raw->flags;
703 real->version = raw->version;
704 }
705 else {
706 return -EINVAL;
707 }
708
709 return 0;
710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712#define SMBFS_NAME "smbfs"
713#define NCPFS_NAME "ncpfs"
David Howells9a9947b2005-04-18 10:54:51 -0700714#define NFS4_NAME "nfs4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716asmlinkage long compat_sys_mount(char __user * dev_name, char __user * dir_name,
717 char __user * type, unsigned long flags,
718 void __user * data)
719{
720 unsigned long type_page;
721 unsigned long data_page;
722 unsigned long dev_page;
723 char *dir_page;
724 int retval;
725
726 retval = copy_mount_options (type, &type_page);
727 if (retval < 0)
728 goto out;
729
730 dir_page = getname(dir_name);
731 retval = PTR_ERR(dir_page);
732 if (IS_ERR(dir_page))
733 goto out1;
734
735 retval = copy_mount_options (dev_name, &dev_page);
736 if (retval < 0)
737 goto out2;
738
739 retval = copy_mount_options (data, &data_page);
740 if (retval < 0)
741 goto out3;
742
743 retval = -EINVAL;
744
Andrey Mirkin822191a2006-12-06 20:31:35 -0800745 if (type_page && data_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!strcmp((char *)type_page, SMBFS_NAME)) {
747 do_smb_super_data_conv((void *)data_page);
748 } else if (!strcmp((char *)type_page, NCPFS_NAME)) {
749 do_ncp_super_data_conv((void *)data_page);
David Howells9a9947b2005-04-18 10:54:51 -0700750 } else if (!strcmp((char *)type_page, NFS4_NAME)) {
751 if (do_nfs4_super_data_conv((void *) data_page))
752 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754 }
755
756 lock_kernel();
757 retval = do_mount((char*)dev_page, dir_page, (char*)type_page,
758 flags, (void*)data_page);
759 unlock_kernel();
760
David Howells9a9947b2005-04-18 10:54:51 -0700761 out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 free_page(data_page);
763 out3:
764 free_page(dev_page);
765 out2:
766 putname(dir_page);
767 out1:
768 free_page(type_page);
769 out:
770 return retval;
771}
772
773#define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775struct compat_old_linux_dirent {
776 compat_ulong_t d_ino;
777 compat_ulong_t d_offset;
778 unsigned short d_namlen;
779 char d_name[1];
780};
781
782struct compat_readdir_callback {
783 struct compat_old_linux_dirent __user *dirent;
784 int result;
785};
786
787static int compat_fillonedir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700788 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 struct compat_readdir_callback *buf = __buf;
791 struct compat_old_linux_dirent __user *dirent;
David Howellsafefdbb2006-10-03 01:13:46 -0700792 compat_ulong_t d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (buf->result)
795 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700796 d_ino = ino;
797 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino)
798 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 buf->result++;
800 dirent = buf->dirent;
801 if (!access_ok(VERIFY_WRITE, dirent,
802 (unsigned long)(dirent->d_name + namlen + 1) -
803 (unsigned long)dirent))
804 goto efault;
David Howellsafefdbb2006-10-03 01:13:46 -0700805 if ( __put_user(d_ino, &dirent->d_ino) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 __put_user(offset, &dirent->d_offset) ||
807 __put_user(namlen, &dirent->d_namlen) ||
808 __copy_to_user(dirent->d_name, name, namlen) ||
809 __put_user(0, dirent->d_name + namlen))
810 goto efault;
811 return 0;
812efault:
813 buf->result = -EFAULT;
814 return -EFAULT;
815}
816
817asmlinkage long compat_sys_old_readdir(unsigned int fd,
818 struct compat_old_linux_dirent __user *dirent, unsigned int count)
819{
820 int error;
821 struct file *file;
822 struct compat_readdir_callback buf;
823
824 error = -EBADF;
825 file = fget(fd);
826 if (!file)
827 goto out;
828
829 buf.result = 0;
830 buf.dirent = dirent;
831
832 error = vfs_readdir(file, compat_fillonedir, &buf);
833 if (error >= 0)
834 error = buf.result;
835
836 fput(file);
837out:
838 return error;
839}
840
841struct compat_linux_dirent {
842 compat_ulong_t d_ino;
843 compat_ulong_t d_off;
844 unsigned short d_reclen;
845 char d_name[1];
846};
847
848struct compat_getdents_callback {
849 struct compat_linux_dirent __user *current_dir;
850 struct compat_linux_dirent __user *previous;
851 int count;
852 int error;
853};
854
855static int compat_filldir(void *__buf, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700856 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct compat_linux_dirent __user * dirent;
859 struct compat_getdents_callback *buf = __buf;
David Howellsafefdbb2006-10-03 01:13:46 -0700860 compat_ulong_t d_ino;
Milind Arun Choudhary022a1692007-05-08 00:29:02 -0700861 int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 2, sizeof(compat_long_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 buf->error = -EINVAL; /* only used if we fail.. */
864 if (reclen > buf->count)
865 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700866 d_ino = ino;
867 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino)
868 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 dirent = buf->previous;
870 if (dirent) {
871 if (__put_user(offset, &dirent->d_off))
872 goto efault;
873 }
874 dirent = buf->current_dir;
David Howellsafefdbb2006-10-03 01:13:46 -0700875 if (__put_user(d_ino, &dirent->d_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto efault;
877 if (__put_user(reclen, &dirent->d_reclen))
878 goto efault;
879 if (copy_to_user(dirent->d_name, name, namlen))
880 goto efault;
881 if (__put_user(0, dirent->d_name + namlen))
882 goto efault;
883 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
884 goto efault;
885 buf->previous = dirent;
886 dirent = (void __user *)dirent + reclen;
887 buf->current_dir = dirent;
888 buf->count -= reclen;
889 return 0;
890efault:
891 buf->error = -EFAULT;
892 return -EFAULT;
893}
894
895asmlinkage long compat_sys_getdents(unsigned int fd,
896 struct compat_linux_dirent __user *dirent, unsigned int count)
897{
898 struct file * file;
899 struct compat_linux_dirent __user * lastdirent;
900 struct compat_getdents_callback buf;
901 int error;
902
903 error = -EFAULT;
904 if (!access_ok(VERIFY_WRITE, dirent, count))
905 goto out;
906
907 error = -EBADF;
908 file = fget(fd);
909 if (!file)
910 goto out;
911
912 buf.current_dir = dirent;
913 buf.previous = NULL;
914 buf.count = count;
915 buf.error = 0;
916
917 error = vfs_readdir(file, compat_filldir, &buf);
918 if (error < 0)
919 goto out_putf;
920 error = buf.error;
921 lastdirent = buf.previous;
922 if (lastdirent) {
923 if (put_user(file->f_pos, &lastdirent->d_off))
924 error = -EFAULT;
925 else
926 error = count - buf.count;
927 }
928
929out_putf:
930 fput(file);
931out:
932 return error;
933}
934
935#ifndef __ARCH_OMIT_COMPAT_SYS_GETDENTS64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937struct compat_getdents_callback64 {
938 struct linux_dirent64 __user *current_dir;
939 struct linux_dirent64 __user *previous;
940 int count;
941 int error;
942};
943
944static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -0700945 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 struct linux_dirent64 __user *dirent;
948 struct compat_getdents_callback64 *buf = __buf;
949 int jj = NAME_OFFSET(dirent);
Milind Arun Choudhary022a1692007-05-08 00:29:02 -0700950 int reclen = ALIGN(jj + namlen + 1, sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 u64 off;
952
953 buf->error = -EINVAL; /* only used if we fail.. */
954 if (reclen > buf->count)
955 return -EINVAL;
956 dirent = buf->previous;
957
958 if (dirent) {
959 if (__put_user_unaligned(offset, &dirent->d_off))
960 goto efault;
961 }
962 dirent = buf->current_dir;
963 if (__put_user_unaligned(ino, &dirent->d_ino))
964 goto efault;
965 off = 0;
966 if (__put_user_unaligned(off, &dirent->d_off))
967 goto efault;
968 if (__put_user(reclen, &dirent->d_reclen))
969 goto efault;
970 if (__put_user(d_type, &dirent->d_type))
971 goto efault;
972 if (copy_to_user(dirent->d_name, name, namlen))
973 goto efault;
974 if (__put_user(0, dirent->d_name + namlen))
975 goto efault;
976 buf->previous = dirent;
977 dirent = (void __user *)dirent + reclen;
978 buf->current_dir = dirent;
979 buf->count -= reclen;
980 return 0;
981efault:
982 buf->error = -EFAULT;
983 return -EFAULT;
984}
985
986asmlinkage long compat_sys_getdents64(unsigned int fd,
987 struct linux_dirent64 __user * dirent, unsigned int count)
988{
989 struct file * file;
990 struct linux_dirent64 __user * lastdirent;
991 struct compat_getdents_callback64 buf;
992 int error;
993
994 error = -EFAULT;
995 if (!access_ok(VERIFY_WRITE, dirent, count))
996 goto out;
997
998 error = -EBADF;
999 file = fget(fd);
1000 if (!file)
1001 goto out;
1002
1003 buf.current_dir = dirent;
1004 buf.previous = NULL;
1005 buf.count = count;
1006 buf.error = 0;
1007
1008 error = vfs_readdir(file, compat_filldir64, &buf);
1009 if (error < 0)
1010 goto out_putf;
1011 error = buf.error;
1012 lastdirent = buf.previous;
1013 if (lastdirent) {
1014 typeof(lastdirent->d_off) d_off = file->f_pos;
Heiko Carstens7116e992006-12-06 20:36:36 -08001015 error = -EFAULT;
1016 if (__put_user_unaligned(d_off, &lastdirent->d_off))
1017 goto out_putf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 error = count - buf.count;
1019 }
1020
1021out_putf:
1022 fput(file);
1023out:
1024 return error;
1025}
1026#endif /* ! __ARCH_OMIT_COMPAT_SYS_GETDENTS64 */
1027
1028static ssize_t compat_do_readv_writev(int type, struct file *file,
1029 const struct compat_iovec __user *uvector,
1030 unsigned long nr_segs, loff_t *pos)
1031{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 compat_ssize_t tot_len;
1033 struct iovec iovstack[UIO_FASTIOV];
1034 struct iovec *iov=iovstack, *vector;
1035 ssize_t ret;
1036 int seg;
1037 io_fn_t fn;
1038 iov_fn_t fnv;
1039
1040 /*
1041 * SuS says "The readv() function *may* fail if the iovcnt argument
1042 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
1043 * traditionally returned zero for zero segments, so...
1044 */
1045 ret = 0;
1046 if (nr_segs == 0)
1047 goto out;
1048
1049 /*
1050 * First get the "struct iovec" from user memory and
1051 * verify all the pointers
1052 */
1053 ret = -EINVAL;
1054 if ((nr_segs > UIO_MAXIOV) || (nr_segs <= 0))
1055 goto out;
1056 if (!file->f_op)
1057 goto out;
1058 if (nr_segs > UIO_FASTIOV) {
1059 ret = -ENOMEM;
1060 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
1061 if (!iov)
1062 goto out;
1063 }
1064 ret = -EFAULT;
1065 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
1066 goto out;
1067
1068 /*
1069 * Single unix specification:
1070 * We should -EINVAL if an element length is not >= 0 and fitting an
1071 * ssize_t. The total length is fitting an ssize_t
1072 *
1073 * Be careful here because iov_len is a size_t not an ssize_t
1074 */
1075 tot_len = 0;
1076 vector = iov;
1077 ret = -EINVAL;
1078 for (seg = 0 ; seg < nr_segs; seg++) {
1079 compat_ssize_t tmp = tot_len;
1080 compat_ssize_t len;
1081 compat_uptr_t buf;
1082
1083 if (__get_user(len, &uvector->iov_len) ||
1084 __get_user(buf, &uvector->iov_base)) {
1085 ret = -EFAULT;
1086 goto out;
1087 }
1088 if (len < 0) /* size_t not fitting an compat_ssize_t .. */
1089 goto out;
1090 tot_len += len;
1091 if (tot_len < tmp) /* maths overflow on the compat_ssize_t */
1092 goto out;
1093 vector->iov_base = compat_ptr(buf);
1094 vector->iov_len = (compat_size_t) len;
1095 uvector++;
1096 vector++;
1097 }
1098 if (tot_len == 0) {
1099 ret = 0;
1100 goto out;
1101 }
1102
1103 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001104 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 goto out;
1106
1107 fnv = NULL;
1108 if (type == READ) {
1109 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001110 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 } else {
1112 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001113 fnv = file->f_op->aio_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
1115
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001116 if (fnv)
1117 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
1118 pos, fnv);
1119 else
1120 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122out:
1123 if (iov != iovstack)
1124 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -04001125 if ((ret + (type == READ)) > 0) {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001126 struct dentry *dentry = file->f_path.dentry;
Robert Love0eeca282005-07-12 17:06:03 -04001127 if (type == READ)
1128 fsnotify_access(dentry);
1129 else
1130 fsnotify_modify(dentry);
1131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return ret;
1133}
1134
1135asmlinkage ssize_t
1136compat_sys_readv(unsigned long fd, const struct compat_iovec __user *vec, unsigned long vlen)
1137{
1138 struct file *file;
1139 ssize_t ret = -EBADF;
1140
1141 file = fget(fd);
1142 if (!file)
1143 return -EBADF;
1144
1145 if (!(file->f_mode & FMODE_READ))
1146 goto out;
1147
1148 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001149 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 goto out;
1151
1152 ret = compat_do_readv_writev(READ, file, vec, vlen, &file->f_pos);
1153
1154out:
1155 fput(file);
1156 return ret;
1157}
1158
1159asmlinkage ssize_t
1160compat_sys_writev(unsigned long fd, const struct compat_iovec __user *vec, unsigned long vlen)
1161{
1162 struct file *file;
1163 ssize_t ret = -EBADF;
1164
1165 file = fget(fd);
1166 if (!file)
1167 return -EBADF;
1168 if (!(file->f_mode & FMODE_WRITE))
1169 goto out;
1170
1171 ret = -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001172 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 goto out;
1174
1175 ret = compat_do_readv_writev(WRITE, file, vec, vlen, &file->f_pos);
1176
1177out:
1178 fput(file);
1179 return ret;
1180}
1181
Andi Kleend2610202006-05-01 12:15:48 -07001182asmlinkage long
1183compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32,
1184 unsigned int nr_segs, unsigned int flags)
1185{
1186 unsigned i;
Al Viro90cbad62006-10-10 22:44:17 +01001187 struct iovec __user *iov;
Jens Axboe98232d52006-05-04 09:13:49 +02001188 if (nr_segs > UIO_MAXIOV)
Andi Kleend2610202006-05-01 12:15:48 -07001189 return -EINVAL;
1190 iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec));
1191 for (i = 0; i < nr_segs; i++) {
1192 struct compat_iovec v;
1193 if (get_user(v.iov_base, &iov32[i].iov_base) ||
1194 get_user(v.iov_len, &iov32[i].iov_len) ||
1195 put_user(compat_ptr(v.iov_base), &iov[i].iov_base) ||
1196 put_user(v.iov_len, &iov[i].iov_len))
1197 return -EFAULT;
1198 }
1199 return sys_vmsplice(fd, iov, nr_segs, flags);
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202/*
Miklos Szeredie922efc2005-09-06 15:18:25 -07001203 * Exactly like fs/open.c:sys_open(), except that it doesn't set the
1204 * O_LARGEFILE flag.
1205 */
1206asmlinkage long
1207compat_sys_open(const char __user *filename, int flags, int mode)
1208{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001209 return do_sys_open(AT_FDCWD, filename, flags, mode);
1210}
1211
1212/*
1213 * Exactly like fs/open.c:sys_openat(), except that it doesn't set the
1214 * O_LARGEFILE flag.
1215 */
1216asmlinkage long
Stephen Rothwell9ad11ab2006-02-02 16:11:51 +11001217compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, int mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001218{
1219 return do_sys_open(dfd, filename, flags, mode);
Miklos Szeredie922efc2005-09-06 15:18:25 -07001220}
1221
1222/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 * compat_count() counts the number of arguments/envelopes. It is basically
1224 * a copy of count() from fs/exec.c, except that it works with 32 bit argv
1225 * and envp pointers.
1226 */
1227static int compat_count(compat_uptr_t __user *argv, int max)
1228{
1229 int i = 0;
1230
1231 if (argv != NULL) {
1232 for (;;) {
1233 compat_uptr_t p;
1234
1235 if (get_user(p, argv))
1236 return -EFAULT;
1237 if (!p)
1238 break;
1239 argv++;
1240 if(++i > max)
1241 return -E2BIG;
1242 }
1243 }
1244 return i;
1245}
1246
1247/*
1248 * compat_copy_strings() is basically a copy of copy_strings() from fs/exec.c
1249 * except that it works with 32 bit argv and envp pointers.
1250 */
1251static int compat_copy_strings(int argc, compat_uptr_t __user *argv,
1252 struct linux_binprm *bprm)
1253{
1254 struct page *kmapped_page = NULL;
1255 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001256 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 int ret;
1258
1259 while (argc-- > 0) {
1260 compat_uptr_t str;
1261 int len;
1262 unsigned long pos;
1263
1264 if (get_user(str, argv+argc) ||
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001265 !(len = strnlen_user(compat_ptr(str), MAX_ARG_STRLEN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 ret = -EFAULT;
1267 goto out;
1268 }
1269
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001270 if (len > MAX_ARG_STRLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 ret = -E2BIG;
1272 goto out;
1273 }
1274
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001275 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001277 str += len;
1278 bprm->p -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001284 if (offset == 0)
1285 offset = PAGE_SIZE;
1286
1287 bytes_to_copy = offset;
1288 if (bytes_to_copy > len)
1289 bytes_to_copy = len;
1290
1291 offset -= bytes_to_copy;
1292 pos -= bytes_to_copy;
1293 str -= bytes_to_copy;
1294 len -= bytes_to_copy;
1295
1296 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
1297 struct page *page;
1298
1299#ifdef CONFIG_STACK_GROWSUP
1300 ret = expand_stack_downwards(bprm->vma, pos);
1301 if (ret < 0) {
1302 /* We've exceed the stack rlimit. */
1303 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 goto out;
1305 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001306#endif
1307 ret = get_user_pages(current, bprm->mm, pos,
1308 1, 1, 1, &page, NULL);
1309 if (ret <= 0) {
1310 /* We've exceed the stack rlimit. */
1311 ret = -E2BIG;
1312 goto out;
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001315 if (kmapped_page) {
1316 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001318 put_page(kmapped_page);
1319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 kmapped_page = page;
1321 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001322 kpos = pos & PAGE_MASK;
1323 flush_cache_page(bprm->vma, kpos,
1324 page_to_pfn(kmapped_page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001326 if (copy_from_user(kaddr+offset, compat_ptr(str),
1327 bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 ret = -EFAULT;
1329 goto out;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332 }
1333 ret = 0;
1334out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001335 if (kmapped_page) {
1336 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001338 put_page(kmapped_page);
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return ret;
1341}
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343/*
1344 * compat_do_execve() is mostly a copy of do_execve(), with the exception
1345 * that it processes 32 bit argv and envp pointers.
1346 */
1347int compat_do_execve(char * filename,
1348 compat_uptr_t __user *argv,
1349 compat_uptr_t __user *envp,
1350 struct pt_regs * regs)
1351{
1352 struct linux_binprm *bprm;
1353 struct file *file;
1354 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 retval = -ENOMEM;
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001357 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (!bprm)
1359 goto out_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 file = open_exec(filename);
1362 retval = PTR_ERR(file);
1363 if (IS_ERR(file))
1364 goto out_kfree;
1365
1366 sched_exec();
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 bprm->file = file;
1369 bprm->filename = filename;
1370 bprm->interp = filename;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001371
1372 retval = bprm_mm_init(bprm);
1373 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 goto out_file;
1375
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001376 bprm->argc = compat_count(argv, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if ((retval = bprm->argc) < 0)
1378 goto out_mm;
1379
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001380 bprm->envc = compat_count(envp, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if ((retval = bprm->envc) < 0)
1382 goto out_mm;
1383
1384 retval = security_bprm_alloc(bprm);
1385 if (retval)
1386 goto out;
1387
1388 retval = prepare_binprm(bprm);
1389 if (retval < 0)
1390 goto out;
1391
1392 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1393 if (retval < 0)
1394 goto out;
1395
1396 bprm->exec = bprm->p;
1397 retval = compat_copy_strings(bprm->envc, envp, bprm);
1398 if (retval < 0)
1399 goto out;
1400
1401 retval = compat_copy_strings(bprm->argc, argv, bprm);
1402 if (retval < 0)
1403 goto out;
1404
1405 retval = search_binary_handler(bprm, regs);
1406 if (retval >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* execve success */
1408 security_bprm_free(bprm);
David S. Miller4a805e82005-09-14 21:40:00 -07001409 acct_update_integrals(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 kfree(bprm);
1411 return retval;
1412 }
1413
1414out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (bprm->security)
1416 security_bprm_free(bprm);
1417
1418out_mm:
1419 if (bprm->mm)
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001420 mmput(bprm->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422out_file:
1423 if (bprm->file) {
1424 allow_write_access(bprm->file);
1425 fput(bprm->file);
1426 }
1427
1428out_kfree:
1429 kfree(bprm);
1430
1431out_ret:
1432 return retval;
1433}
1434
1435#define __COMPAT_NFDBITS (8 * sizeof(compat_ulong_t))
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437/*
1438 * Ooo, nasty. We need here to frob 32-bit unsigned longs to
1439 * 64-bit unsigned longs.
1440 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001441static
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442int compat_get_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1443 unsigned long *fdset)
1444{
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001445 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (ufdset) {
1447 unsigned long odd;
1448
1449 if (!access_ok(VERIFY_WRITE, ufdset, nr*sizeof(compat_ulong_t)))
1450 return -EFAULT;
1451
1452 odd = nr & 1UL;
1453 nr &= ~1UL;
1454 while (nr) {
1455 unsigned long h, l;
Heiko Carstens7116e992006-12-06 20:36:36 -08001456 if (__get_user(l, ufdset) || __get_user(h, ufdset+1))
1457 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 ufdset += 2;
1459 *fdset++ = h << 32 | l;
1460 nr -= 2;
1461 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001462 if (odd && __get_user(*fdset, ufdset))
1463 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 } else {
1465 /* Tricky, must clear full unsigned long in the
1466 * kernel fdset at the end, this makes sure that
1467 * actually happens.
1468 */
1469 memset(fdset, 0, ((nr + 1) & ~1)*sizeof(compat_ulong_t));
1470 }
1471 return 0;
1472}
1473
Arjan van de Ven858119e2006-01-14 13:20:43 -08001474static
Heiko Carstens7116e992006-12-06 20:36:36 -08001475int compat_set_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1476 unsigned long *fdset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 unsigned long odd;
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001479 nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 if (!ufdset)
Heiko Carstens7116e992006-12-06 20:36:36 -08001482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 odd = nr & 1UL;
1485 nr &= ~1UL;
1486 while (nr) {
1487 unsigned long h, l;
1488 l = *fdset++;
1489 h = l >> 32;
Heiko Carstens7116e992006-12-06 20:36:36 -08001490 if (__put_user(l, ufdset) || __put_user(h, ufdset+1))
1491 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 ufdset += 2;
1493 nr -= 2;
1494 }
Heiko Carstens7116e992006-12-06 20:36:36 -08001495 if (odd && __put_user(*fdset, ufdset))
1496 return -EFAULT;
1497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500
1501/*
1502 * This is a virtual copy of sys_select from fs/select.c and probably
1503 * should be compared to it from time to time
1504 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506/*
1507 * We can actually return ERESTARTSYS instead of EINTR, but I'd
1508 * like to be certain this leads to no problems. So I return
1509 * EINTR just for safety.
1510 *
1511 * Update: ERESTARTSYS breaks at least the xview clock binary, so
1512 * I'm trying ERESTARTNOHAND which restart only when you want to.
1513 */
1514#define MAX_SELECT_SECONDS \
1515 ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1)
1516
David Woodhouse9f729492006-01-18 17:44:05 -08001517int compat_core_sys_select(int n, compat_ulong_t __user *inp,
1518 compat_ulong_t __user *outp, compat_ulong_t __user *exp, s64 *timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 fd_set_bits fds;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001521 void *bits;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001522 int size, max_fds, ret = -EINVAL;
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001523 struct fdtable *fdt;
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001524 long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (n < 0)
1527 goto out_nofds;
1528
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001529 /* max_fds can increase, so grab it once to avoid race */
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001530 rcu_read_lock();
Linus Torvaldsa4531ed2005-09-09 15:10:52 -07001531 fdt = files_fdtable(current->files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001532 max_fds = fdt->max_fds;
Linus Torvaldsac5b8b62005-09-09 15:42:34 -07001533 rcu_read_unlock();
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001534 if (n > max_fds)
1535 n = max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /*
1538 * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
1539 * since we used fdset we need to allocate memory in units of
1540 * long-words.
1541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 size = FDS_BYTES(n);
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001543 bits = stack_fds;
1544 if (size > sizeof(stack_fds) / 6) {
1545 bits = kmalloc(6 * size, GFP_KERNEL);
1546 ret = -ENOMEM;
1547 if (!bits)
1548 goto out_nofds;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 fds.in = (unsigned long *) bits;
1551 fds.out = (unsigned long *) (bits + size);
1552 fds.ex = (unsigned long *) (bits + 2*size);
1553 fds.res_in = (unsigned long *) (bits + 3*size);
1554 fds.res_out = (unsigned long *) (bits + 4*size);
1555 fds.res_ex = (unsigned long *) (bits + 5*size);
1556
1557 if ((ret = compat_get_fd_set(n, inp, fds.in)) ||
1558 (ret = compat_get_fd_set(n, outp, fds.out)) ||
1559 (ret = compat_get_fd_set(n, exp, fds.ex)))
1560 goto out;
1561 zero_fd_set(n, fds.res_in);
1562 zero_fd_set(n, fds.res_out);
1563 zero_fd_set(n, fds.res_ex);
1564
David Woodhouse9f729492006-01-18 17:44:05 -08001565 ret = do_select(n, &fds, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 if (ret < 0)
1568 goto out;
1569 if (!ret) {
1570 ret = -ERESTARTNOHAND;
1571 if (signal_pending(current))
1572 goto out;
1573 ret = 0;
1574 }
1575
Heiko Carstens7116e992006-12-06 20:36:36 -08001576 if (compat_set_fd_set(n, inp, fds.res_in) ||
1577 compat_set_fd_set(n, outp, fds.res_out) ||
1578 compat_set_fd_set(n, exp, fds.res_ex))
1579 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580out:
Badari Pulavarty6087b2d2007-05-23 13:57:45 -07001581 if (bits != stack_fds)
1582 kfree(bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583out_nofds:
1584 return ret;
1585}
1586
David Woodhouse9f729492006-01-18 17:44:05 -08001587asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
1588 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1589 struct compat_timeval __user *tvp)
1590{
1591 s64 timeout = -1;
1592 struct compat_timeval tv;
1593 int ret;
1594
1595 if (tvp) {
1596 if (copy_from_user(&tv, tvp, sizeof(tv)))
1597 return -EFAULT;
1598
1599 if (tv.tv_sec < 0 || tv.tv_usec < 0)
1600 return -EINVAL;
1601
1602 /* Cast to u64 to make GCC stop complaining */
1603 if ((u64)tv.tv_sec >= (u64)MAX_INT64_SECONDS)
1604 timeout = -1; /* infinite */
1605 else {
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001606 timeout = DIV_ROUND_UP(tv.tv_usec, 1000000/HZ);
David Woodhouse9f729492006-01-18 17:44:05 -08001607 timeout += tv.tv_sec * HZ;
1608 }
1609 }
1610
1611 ret = compat_core_sys_select(n, inp, outp, exp, &timeout);
1612
1613 if (tvp) {
Andrew Morton643a6542006-02-11 17:55:52 -08001614 struct compat_timeval rtv;
1615
David Woodhouse9f729492006-01-18 17:44:05 -08001616 if (current->personality & STICKY_TIMEOUTS)
1617 goto sticky;
Andrew Morton643a6542006-02-11 17:55:52 -08001618 rtv.tv_usec = jiffies_to_usecs(do_div((*(u64*)&timeout), HZ));
1619 rtv.tv_sec = timeout;
Andrew Morton74910e62006-02-17 13:52:58 -08001620 if (compat_timeval_compare(&rtv, &tv) >= 0)
Andrew Morton643a6542006-02-11 17:55:52 -08001621 rtv = tv;
1622 if (copy_to_user(tvp, &rtv, sizeof(rtv))) {
David Woodhouse9f729492006-01-18 17:44:05 -08001623sticky:
1624 /*
1625 * If an application puts its timeval in read-only
1626 * memory, we don't want the Linux-specific update to
1627 * the timeval to cause a fault after the select has
1628 * completed successfully. However, because we're not
1629 * updating the timeval, we can't restart the system
1630 * call.
1631 */
1632 if (ret == -ERESTARTNOHAND)
1633 ret = -EINTR;
1634 }
1635 }
1636
1637 return ret;
1638}
1639
1640#ifdef TIF_RESTORE_SIGMASK
1641asmlinkage long compat_sys_pselect7(int n, compat_ulong_t __user *inp,
1642 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1643 struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask,
1644 compat_size_t sigsetsize)
1645{
1646 compat_sigset_t ss32;
1647 sigset_t ksigmask, sigsaved;
Andrew Mortoncb82a6c2006-02-01 03:04:49 -08001648 s64 timeout = MAX_SCHEDULE_TIMEOUT;
David Woodhouse9f729492006-01-18 17:44:05 -08001649 struct compat_timespec ts;
1650 int ret;
1651
1652 if (tsp) {
1653 if (copy_from_user(&ts, tsp, sizeof(ts)))
1654 return -EFAULT;
1655
1656 if (ts.tv_sec < 0 || ts.tv_nsec < 0)
1657 return -EINVAL;
1658 }
1659
1660 if (sigmask) {
1661 if (sigsetsize != sizeof(compat_sigset_t))
1662 return -EINVAL;
1663 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1664 return -EFAULT;
1665 sigset_from_compat(&ksigmask, &ss32);
1666
1667 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1668 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1669 }
1670
1671 do {
1672 if (tsp) {
1673 if ((unsigned long)ts.tv_sec < MAX_SELECT_SECONDS) {
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001674 timeout = DIV_ROUND_UP(ts.tv_nsec, 1000000000/HZ);
David Woodhouse9f729492006-01-18 17:44:05 -08001675 timeout += ts.tv_sec * (unsigned long)HZ;
1676 ts.tv_sec = 0;
1677 ts.tv_nsec = 0;
1678 } else {
1679 ts.tv_sec -= MAX_SELECT_SECONDS;
1680 timeout = MAX_SELECT_SECONDS * HZ;
1681 }
1682 }
1683
1684 ret = compat_core_sys_select(n, inp, outp, exp, &timeout);
1685
1686 } while (!ret && !timeout && tsp && (ts.tv_sec || ts.tv_nsec));
1687
Heiko Carstens87c2b7c2006-11-02 22:06:58 -08001688 if (tsp) {
Andrew Morton643a6542006-02-11 17:55:52 -08001689 struct compat_timespec rts;
1690
Heiko Carstens87c2b7c2006-11-02 22:06:58 -08001691 if (current->personality & STICKY_TIMEOUTS)
1692 goto sticky;
1693
Andrew Morton643a6542006-02-11 17:55:52 -08001694 rts.tv_sec = timeout / HZ;
1695 rts.tv_nsec = (timeout % HZ) * (NSEC_PER_SEC/HZ);
1696 if (rts.tv_nsec >= NSEC_PER_SEC) {
1697 rts.tv_sec++;
1698 rts.tv_nsec -= NSEC_PER_SEC;
David Woodhouse9f729492006-01-18 17:44:05 -08001699 }
Andrew Morton74910e62006-02-17 13:52:58 -08001700 if (compat_timespec_compare(&rts, &ts) >= 0)
Andrew Morton643a6542006-02-11 17:55:52 -08001701 rts = ts;
Heiko Carstens87c2b7c2006-11-02 22:06:58 -08001702 if (copy_to_user(tsp, &rts, sizeof(rts))) {
1703sticky:
1704 /*
1705 * If an application puts its timeval in read-only
1706 * memory, we don't want the Linux-specific update to
1707 * the timeval to cause a fault after the select has
1708 * completed successfully. However, because we're not
1709 * updating the timeval, we can't restart the system
1710 * call.
1711 */
1712 if (ret == -ERESTARTNOHAND)
1713 ret = -EINTR;
1714 }
David Woodhouse9f729492006-01-18 17:44:05 -08001715 }
1716
1717 if (ret == -ERESTARTNOHAND) {
1718 /*
1719 * Don't restore the signal mask yet. Let do_signal() deliver
1720 * the signal on the way back to userspace, before the signal
1721 * mask is restored.
1722 */
1723 if (sigmask) {
1724 memcpy(&current->saved_sigmask, &sigsaved,
1725 sizeof(sigsaved));
1726 set_thread_flag(TIF_RESTORE_SIGMASK);
1727 }
1728 } else if (sigmask)
1729 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1730
1731 return ret;
1732}
1733
1734asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
1735 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1736 struct compat_timespec __user *tsp, void __user *sig)
1737{
1738 compat_size_t sigsetsize = 0;
1739 compat_uptr_t up = 0;
1740
1741 if (sig) {
1742 if (!access_ok(VERIFY_READ, sig,
1743 sizeof(compat_uptr_t)+sizeof(compat_size_t)) ||
1744 __get_user(up, (compat_uptr_t __user *)sig) ||
1745 __get_user(sigsetsize,
1746 (compat_size_t __user *)(sig+sizeof(up))))
1747 return -EFAULT;
1748 }
1749 return compat_sys_pselect7(n, inp, outp, exp, tsp, compat_ptr(up),
1750 sigsetsize);
1751}
1752
1753asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
1754 unsigned int nfds, struct compat_timespec __user *tsp,
1755 const compat_sigset_t __user *sigmask, compat_size_t sigsetsize)
1756{
1757 compat_sigset_t ss32;
1758 sigset_t ksigmask, sigsaved;
1759 struct compat_timespec ts;
1760 s64 timeout = -1;
1761 int ret;
1762
1763 if (tsp) {
1764 if (copy_from_user(&ts, tsp, sizeof(ts)))
1765 return -EFAULT;
1766
1767 /* We assume that ts.tv_sec is always lower than
1768 the number of seconds that can be expressed in
1769 an s64. Otherwise the compiler bitches at us */
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07001770 timeout = DIV_ROUND_UP(ts.tv_nsec, 1000000000/HZ);
David Woodhouse9f729492006-01-18 17:44:05 -08001771 timeout += ts.tv_sec * HZ;
1772 }
1773
1774 if (sigmask) {
Alexey Dobriyan3835a9b2006-05-15 09:44:27 -07001775 if (sigsetsize != sizeof(compat_sigset_t))
David Woodhouse9f729492006-01-18 17:44:05 -08001776 return -EINVAL;
1777 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1778 return -EFAULT;
1779 sigset_from_compat(&ksigmask, &ss32);
1780
1781 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1782 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1783 }
1784
1785 ret = do_sys_poll(ufds, nfds, &timeout);
1786
1787 /* We can restart this syscall, usually */
1788 if (ret == -EINTR) {
1789 /*
1790 * Don't restore the signal mask yet. Let do_signal() deliver
1791 * the signal on the way back to userspace, before the signal
1792 * mask is restored.
1793 */
1794 if (sigmask) {
1795 memcpy(&current->saved_sigmask, &sigsaved,
1796 sizeof(sigsaved));
1797 set_thread_flag(TIF_RESTORE_SIGMASK);
1798 }
1799 ret = -ERESTARTNOHAND;
1800 } else if (sigmask)
1801 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1802
1803 if (tsp && timeout >= 0) {
Andrew Morton643a6542006-02-11 17:55:52 -08001804 struct compat_timespec rts;
1805
David Woodhouse9f729492006-01-18 17:44:05 -08001806 if (current->personality & STICKY_TIMEOUTS)
1807 goto sticky;
1808 /* Yes, we know it's actually an s64, but it's also positive. */
Andrew Morton643a6542006-02-11 17:55:52 -08001809 rts.tv_nsec = jiffies_to_usecs(do_div((*(u64*)&timeout), HZ)) *
1810 1000;
1811 rts.tv_sec = timeout;
Andrew Morton74910e62006-02-17 13:52:58 -08001812 if (compat_timespec_compare(&rts, &ts) >= 0)
Andrew Morton643a6542006-02-11 17:55:52 -08001813 rts = ts;
1814 if (copy_to_user(tsp, &rts, sizeof(rts))) {
David Woodhouse9f729492006-01-18 17:44:05 -08001815sticky:
1816 /*
1817 * If an application puts its timeval in read-only
1818 * memory, we don't want the Linux-specific update to
1819 * the timeval to cause a fault after the select has
1820 * completed successfully. However, because we're not
1821 * updating the timeval, we can't restart the system
1822 * call.
1823 */
1824 if (ret == -ERESTARTNOHAND && timeout >= 0)
1825 ret = -EINTR;
1826 }
1827 }
1828
1829 return ret;
1830}
1831#endif /* TIF_RESTORE_SIGMASK */
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833#if defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE)
1834/* Stuff for NFS server syscalls... */
1835struct compat_nfsctl_svc {
1836 u16 svc32_port;
1837 s32 svc32_nthreads;
1838};
1839
1840struct compat_nfsctl_client {
1841 s8 cl32_ident[NFSCLNT_IDMAX+1];
1842 s32 cl32_naddr;
1843 struct in_addr cl32_addrlist[NFSCLNT_ADDRMAX];
1844 s32 cl32_fhkeytype;
1845 s32 cl32_fhkeylen;
1846 u8 cl32_fhkey[NFSCLNT_KEYMAX];
1847};
1848
1849struct compat_nfsctl_export {
1850 char ex32_client[NFSCLNT_IDMAX+1];
1851 char ex32_path[NFS_MAXPATHLEN+1];
1852 compat_dev_t ex32_dev;
1853 compat_ino_t ex32_ino;
1854 compat_int_t ex32_flags;
Stephen Rothwell202e5972005-09-06 15:16:40 -07001855 __compat_uid_t ex32_anon_uid;
1856 __compat_gid_t ex32_anon_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857};
1858
1859struct compat_nfsctl_fdparm {
1860 struct sockaddr gd32_addr;
1861 s8 gd32_path[NFS_MAXPATHLEN+1];
1862 compat_int_t gd32_version;
1863};
1864
1865struct compat_nfsctl_fsparm {
1866 struct sockaddr gd32_addr;
1867 s8 gd32_path[NFS_MAXPATHLEN+1];
1868 compat_int_t gd32_maxlen;
1869};
1870
1871struct compat_nfsctl_arg {
1872 compat_int_t ca32_version; /* safeguard */
1873 union {
1874 struct compat_nfsctl_svc u32_svc;
1875 struct compat_nfsctl_client u32_client;
1876 struct compat_nfsctl_export u32_export;
1877 struct compat_nfsctl_fdparm u32_getfd;
1878 struct compat_nfsctl_fsparm u32_getfs;
1879 } u;
1880#define ca32_svc u.u32_svc
1881#define ca32_client u.u32_client
1882#define ca32_export u.u32_export
1883#define ca32_getfd u.u32_getfd
1884#define ca32_getfs u.u32_getfs
1885};
1886
1887union compat_nfsctl_res {
1888 __u8 cr32_getfh[NFS_FHSIZE];
1889 struct knfsd_fh cr32_getfs;
1890};
1891
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001892static int compat_nfs_svc_trans(struct nfsctl_arg *karg,
1893 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001895 if (!access_ok(VERIFY_READ, &arg->ca32_svc, sizeof(arg->ca32_svc)) ||
1896 get_user(karg->ca_version, &arg->ca32_version) ||
1897 __get_user(karg->ca_svc.svc_port, &arg->ca32_svc.svc32_port) ||
1898 __get_user(karg->ca_svc.svc_nthreads,
1899 &arg->ca32_svc.svc32_nthreads))
1900 return -EFAULT;
1901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
1903
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001904static int compat_nfs_clnt_trans(struct nfsctl_arg *karg,
1905 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001907 if (!access_ok(VERIFY_READ, &arg->ca32_client,
1908 sizeof(arg->ca32_client)) ||
1909 get_user(karg->ca_version, &arg->ca32_version) ||
1910 __copy_from_user(&karg->ca_client.cl_ident[0],
1911 &arg->ca32_client.cl32_ident[0],
1912 NFSCLNT_IDMAX) ||
1913 __get_user(karg->ca_client.cl_naddr,
1914 &arg->ca32_client.cl32_naddr) ||
1915 __copy_from_user(&karg->ca_client.cl_addrlist[0],
1916 &arg->ca32_client.cl32_addrlist[0],
1917 (sizeof(struct in_addr) * NFSCLNT_ADDRMAX)) ||
1918 __get_user(karg->ca_client.cl_fhkeytype,
1919 &arg->ca32_client.cl32_fhkeytype) ||
1920 __get_user(karg->ca_client.cl_fhkeylen,
1921 &arg->ca32_client.cl32_fhkeylen) ||
1922 __copy_from_user(&karg->ca_client.cl_fhkey[0],
1923 &arg->ca32_client.cl32_fhkey[0],
1924 NFSCLNT_KEYMAX))
1925 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001930static int compat_nfs_exp_trans(struct nfsctl_arg *karg,
1931 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001933 if (!access_ok(VERIFY_READ, &arg->ca32_export,
1934 sizeof(arg->ca32_export)) ||
1935 get_user(karg->ca_version, &arg->ca32_version) ||
1936 __copy_from_user(&karg->ca_export.ex_client[0],
1937 &arg->ca32_export.ex32_client[0],
1938 NFSCLNT_IDMAX) ||
1939 __copy_from_user(&karg->ca_export.ex_path[0],
1940 &arg->ca32_export.ex32_path[0],
1941 NFS_MAXPATHLEN) ||
1942 __get_user(karg->ca_export.ex_dev,
1943 &arg->ca32_export.ex32_dev) ||
1944 __get_user(karg->ca_export.ex_ino,
1945 &arg->ca32_export.ex32_ino) ||
1946 __get_user(karg->ca_export.ex_flags,
1947 &arg->ca32_export.ex32_flags) ||
1948 __get_user(karg->ca_export.ex_anon_uid,
1949 &arg->ca32_export.ex32_anon_uid) ||
1950 __get_user(karg->ca_export.ex_anon_gid,
1951 &arg->ca32_export.ex32_anon_gid))
1952 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 SET_UID(karg->ca_export.ex_anon_uid, karg->ca_export.ex_anon_uid);
1954 SET_GID(karg->ca_export.ex_anon_gid, karg->ca_export.ex_anon_gid);
1955
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001956 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001959static int compat_nfs_getfd_trans(struct nfsctl_arg *karg,
1960 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001962 if (!access_ok(VERIFY_READ, &arg->ca32_getfd,
1963 sizeof(arg->ca32_getfd)) ||
1964 get_user(karg->ca_version, &arg->ca32_version) ||
1965 __copy_from_user(&karg->ca_getfd.gd_addr,
1966 &arg->ca32_getfd.gd32_addr,
1967 (sizeof(struct sockaddr))) ||
1968 __copy_from_user(&karg->ca_getfd.gd_path,
1969 &arg->ca32_getfd.gd32_path,
1970 (NFS_MAXPATHLEN+1)) ||
1971 __get_user(karg->ca_getfd.gd_version,
1972 &arg->ca32_getfd.gd32_version))
1973 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001978static int compat_nfs_getfs_trans(struct nfsctl_arg *karg,
1979 struct compat_nfsctl_arg __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001981 if (!access_ok(VERIFY_READ,&arg->ca32_getfs,sizeof(arg->ca32_getfs)) ||
1982 get_user(karg->ca_version, &arg->ca32_version) ||
1983 __copy_from_user(&karg->ca_getfs.gd_addr,
1984 &arg->ca32_getfs.gd32_addr,
1985 (sizeof(struct sockaddr))) ||
1986 __copy_from_user(&karg->ca_getfs.gd_path,
1987 &arg->ca32_getfs.gd32_path,
1988 (NFS_MAXPATHLEN+1)) ||
1989 __get_user(karg->ca_getfs.gd_maxlen,
1990 &arg->ca32_getfs.gd32_maxlen))
1991 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001993 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
1995
1996/* This really doesn't need translations, we are only passing
1997 * back a union which contains opaque nfs file handle data.
1998 */
Lin Feng Shend64b1c82006-05-20 14:59:49 -07001999static int compat_nfs_getfh_res_trans(union nfsctl_res *kres,
2000 union compat_nfsctl_res __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
2002 int err;
2003
2004 err = copy_to_user(res, kres, sizeof(*res));
2005
2006 return (err) ? -EFAULT : 0;
2007}
2008
Lin Feng Shend64b1c82006-05-20 14:59:49 -07002009asmlinkage long compat_sys_nfsservctl(int cmd,
2010 struct compat_nfsctl_arg __user *arg,
2011 union compat_nfsctl_res __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
2013 struct nfsctl_arg *karg;
2014 union nfsctl_res *kres;
2015 mm_segment_t oldfs;
2016 int err;
2017
2018 karg = kmalloc(sizeof(*karg), GFP_USER);
2019 kres = kmalloc(sizeof(*kres), GFP_USER);
2020 if(!karg || !kres) {
2021 err = -ENOMEM;
2022 goto done;
2023 }
2024
2025 switch(cmd) {
2026 case NFSCTL_SVC:
2027 err = compat_nfs_svc_trans(karg, arg);
2028 break;
2029
2030 case NFSCTL_ADDCLIENT:
2031 err = compat_nfs_clnt_trans(karg, arg);
2032 break;
2033
2034 case NFSCTL_DELCLIENT:
2035 err = compat_nfs_clnt_trans(karg, arg);
2036 break;
2037
2038 case NFSCTL_EXPORT:
2039 case NFSCTL_UNEXPORT:
2040 err = compat_nfs_exp_trans(karg, arg);
2041 break;
2042
2043 case NFSCTL_GETFD:
2044 err = compat_nfs_getfd_trans(karg, arg);
2045 break;
2046
2047 case NFSCTL_GETFS:
2048 err = compat_nfs_getfs_trans(karg, arg);
2049 break;
2050
2051 default:
2052 err = -EINVAL;
Peter Staubach57070d02006-03-25 03:08:04 -08002053 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055
Peter Staubach57070d02006-03-25 03:08:04 -08002056 if (err)
2057 goto done;
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 oldfs = get_fs();
2060 set_fs(KERNEL_DS);
2061 /* The __user pointer casts are valid because of the set_fs() */
2062 err = sys_nfsservctl(cmd, (void __user *) karg, (void __user *) kres);
2063 set_fs(oldfs);
2064
2065 if (err)
2066 goto done;
2067
2068 if((cmd == NFSCTL_GETFD) ||
2069 (cmd == NFSCTL_GETFS))
2070 err = compat_nfs_getfh_res_trans(kres, res);
2071
2072done:
2073 kfree(karg);
2074 kfree(kres);
2075 return err;
2076}
2077#else /* !NFSD */
2078long asmlinkage compat_sys_nfsservctl(int cmd, void *notused, void *notused2)
2079{
2080 return sys_ni_syscall();
2081}
2082#endif
Davide Libenzif6dfb4f2007-03-07 20:41:21 -08002083
2084#ifdef CONFIG_EPOLL
2085
2086#ifdef CONFIG_HAS_COMPAT_EPOLL_EVENT
2087asmlinkage long compat_sys_epoll_ctl(int epfd, int op, int fd,
2088 struct compat_epoll_event __user *event)
2089{
2090 long err = 0;
2091 struct compat_epoll_event user;
2092 struct epoll_event __user *kernel = NULL;
2093
2094 if (event) {
2095 if (copy_from_user(&user, event, sizeof(user)))
2096 return -EFAULT;
2097 kernel = compat_alloc_user_space(sizeof(struct epoll_event));
2098 err |= __put_user(user.events, &kernel->events);
2099 err |= __put_user(user.data, &kernel->data);
2100 }
2101
2102 return err ? err : sys_epoll_ctl(epfd, op, fd, kernel);
2103}
2104
2105
2106asmlinkage long compat_sys_epoll_wait(int epfd,
2107 struct compat_epoll_event __user *events,
2108 int maxevents, int timeout)
2109{
2110 long i, ret, err = 0;
2111 struct epoll_event __user *kbuf;
2112 struct epoll_event ev;
2113
2114 if ((maxevents <= 0) ||
2115 (maxevents > (INT_MAX / sizeof(struct epoll_event))))
2116 return -EINVAL;
2117 kbuf = compat_alloc_user_space(sizeof(struct epoll_event) * maxevents);
2118 ret = sys_epoll_wait(epfd, kbuf, maxevents, timeout);
2119 for (i = 0; i < ret; i++) {
2120 err |= __get_user(ev.events, &kbuf[i].events);
2121 err |= __get_user(ev.data, &kbuf[i].data);
2122 err |= __put_user(ev.events, &events->events);
2123 err |= __put_user_unaligned(ev.data, &events->data);
2124 events++;
2125 }
2126
2127 return err ? -EFAULT: ret;
2128}
2129#endif /* CONFIG_HAS_COMPAT_EPOLL_EVENT */
2130
2131#ifdef TIF_RESTORE_SIGMASK
2132asmlinkage long compat_sys_epoll_pwait(int epfd,
2133 struct compat_epoll_event __user *events,
2134 int maxevents, int timeout,
2135 const compat_sigset_t __user *sigmask,
2136 compat_size_t sigsetsize)
2137{
2138 long err;
2139 compat_sigset_t csigmask;
2140 sigset_t ksigmask, sigsaved;
2141
2142 /*
2143 * If the caller wants a certain signal mask to be set during the wait,
2144 * we apply it here.
2145 */
2146 if (sigmask) {
2147 if (sigsetsize != sizeof(compat_sigset_t))
2148 return -EINVAL;
2149 if (copy_from_user(&csigmask, sigmask, sizeof(csigmask)))
2150 return -EFAULT;
2151 sigset_from_compat(&ksigmask, &csigmask);
2152 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2153 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
2154 }
2155
2156#ifdef CONFIG_HAS_COMPAT_EPOLL_EVENT
2157 err = compat_sys_epoll_wait(epfd, events, maxevents, timeout);
2158#else
2159 err = sys_epoll_wait(epfd, events, maxevents, timeout);
2160#endif
2161
2162 /*
2163 * If we changed the signal mask, we need to restore the original one.
2164 * In case we've got a signal while waiting, we do not restore the
2165 * signal mask yet, and we allow do_signal() to deliver the signal on
2166 * the way back to userspace, before the signal mask is restored.
2167 */
2168 if (sigmask) {
2169 if (err == -EINTR) {
2170 memcpy(&current->saved_sigmask, &sigsaved,
2171 sizeof(sigsaved));
2172 set_thread_flag(TIF_RESTORE_SIGMASK);
2173 } else
2174 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2175 }
2176
2177 return err;
2178}
2179#endif /* TIF_RESTORE_SIGMASK */
2180
2181#endif /* CONFIG_EPOLL */
Davide Libenzi6d18c922007-05-10 22:23:15 -07002182
2183#ifdef CONFIG_SIGNALFD
2184
2185asmlinkage long compat_sys_signalfd(int ufd,
2186 const compat_sigset_t __user *sigmask,
2187 compat_size_t sigsetsize)
2188{
2189 compat_sigset_t ss32;
2190 sigset_t tmp;
2191 sigset_t __user *ksigmask;
2192
2193 if (sigsetsize != sizeof(compat_sigset_t))
2194 return -EINVAL;
2195 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
2196 return -EFAULT;
2197 sigset_from_compat(&tmp, &ss32);
2198 ksigmask = compat_alloc_user_space(sizeof(sigset_t));
2199 if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t)))
2200 return -EFAULT;
2201
2202 return sys_signalfd(ufd, ksigmask, sizeof(sigset_t));
2203}
2204
2205#endif /* CONFIG_SIGNALFD */
2206
Davide Libenzi83f5d122007-05-10 22:23:18 -07002207#ifdef CONFIG_TIMERFD
2208
2209asmlinkage long compat_sys_timerfd(int ufd, int clockid, int flags,
2210 const struct compat_itimerspec __user *utmr)
2211{
Davide Libenzi83f5d122007-05-10 22:23:18 -07002212 struct itimerspec t;
2213 struct itimerspec __user *ut;
2214
Davide Libenzi83f5d122007-05-10 22:23:18 -07002215 if (get_compat_itimerspec(&t, utmr))
Heiko Carstens8317f142007-05-16 22:11:08 -07002216 return -EFAULT;
Davide Libenzi83f5d122007-05-10 22:23:18 -07002217 ut = compat_alloc_user_space(sizeof(*ut));
Heiko Carstens8317f142007-05-16 22:11:08 -07002218 if (copy_to_user(ut, &t, sizeof(t)))
2219 return -EFAULT;
Davide Libenzi83f5d122007-05-10 22:23:18 -07002220
Heiko Carstens8317f142007-05-16 22:11:08 -07002221 return sys_timerfd(ufd, clockid, flags, ut);
Davide Libenzi83f5d122007-05-10 22:23:18 -07002222}
2223
2224#endif /* CONFIG_TIMERFD */