| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  linux/fs/compat.c | 
 | 3 |  * | 
 | 4 |  *  Kernel compatibililty routines for e.g. 32 bit syscall support | 
 | 5 |  *  on 64 bit kernels. | 
 | 6 |  * | 
 | 7 |  *  Copyright (C) 2002       Stephen Rothwell, IBM Corporation | 
 | 8 |  *  Copyright (C) 1997-2000  Jakub Jelinek  (jakub@redhat.com) | 
 | 9 |  *  Copyright (C) 1998       Eddie C. Dost  (ecd@skynet.be) | 
 | 10 |  *  Copyright (C) 2001,2002  Andi Kleen, SuSE Labs  | 
| Pavel Machek | a253129 | 2010-07-18 14:27:13 +0200 | [diff] [blame] | 11 |  *  Copyright (C) 2003       Pavel Machek (pavel@ucw.cz) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Kevin Winchester | 85c9fe8 | 2010-08-09 17:20:22 -0700 | [diff] [blame] | 18 | #include <linux/stddef.h> | 
| Milind Arun Choudhary | 022a169 | 2007-05-08 00:29:02 -0700 | [diff] [blame] | 19 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/linkage.h> | 
 | 21 | #include <linux/compat.h> | 
 | 22 | #include <linux/errno.h> | 
 | 23 | #include <linux/time.h> | 
 | 24 | #include <linux/fs.h> | 
 | 25 | #include <linux/fcntl.h> | 
 | 26 | #include <linux/namei.h> | 
 | 27 | #include <linux/file.h> | 
| Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 28 | #include <linux/fdtable.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/vfs.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/ioctl.h> | 
 | 31 | #include <linux/init.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/smb.h> | 
 | 33 | #include <linux/smb_mount.h> | 
 | 34 | #include <linux/ncp_mount.h> | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 35 | #include <linux/nfs4_mount.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/syscalls.h> | 
 | 37 | #include <linux/ctype.h> | 
 | 38 | #include <linux/module.h> | 
 | 39 | #include <linux/dirent.h> | 
| Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 40 | #include <linux/fsnotify.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/highuid.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/nfsd/syscall.h> | 
 | 43 | #include <linux/personality.h> | 
 | 44 | #include <linux/rwsem.h> | 
| Jay Lan | 8f0ab51 | 2006-09-30 23:28:59 -0700 | [diff] [blame] | 45 | #include <linux/tsacct_kern.h> | 
| Christoph Hellwig | 6272e26 | 2007-05-08 00:29:21 -0700 | [diff] [blame] | 46 | #include <linux/security.h> | 
| Al Viro | a1f8e7f | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 47 | #include <linux/highmem.h> | 
| Davide Libenzi | 6d18c92 | 2007-05-10 22:23:15 -0700 | [diff] [blame] | 48 | #include <linux/signal.h> | 
| Al Viro | bd01f84 | 2006-10-19 17:23:57 -0400 | [diff] [blame] | 49 | #include <linux/poll.h> | 
| David S. Miller | 4a805e8 | 2005-09-14 21:40:00 -0700 | [diff] [blame] | 50 | #include <linux/mm.h> | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 51 | #include <linux/eventpoll.h> | 
| Al Viro | 498052b | 2009-03-30 07:20:30 -0400 | [diff] [blame] | 52 | #include <linux/fs_struct.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 53 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <asm/uaccess.h> | 
 | 56 | #include <asm/mmu_context.h> | 
 | 57 | #include <asm/ioctls.h> | 
| David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 58 | #include "internal.h" | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 59 |  | 
| Andi Kleen | bebfa10 | 2006-06-26 13:56:52 +0200 | [diff] [blame] | 60 | int compat_log = 1; | 
 | 61 |  | 
 | 62 | int 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 Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 74 | #include "read_write.h" | 
 | 75 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | /* | 
 | 77 |  * Not all architectures have sys_utime, so implement this in terms | 
 | 78 |  * of sys_utimes. | 
 | 79 |  */ | 
 | 80 | asmlinkage long compat_sys_utime(char __user *filename, struct compat_utimbuf __user *t) | 
 | 81 | { | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 82 | 	struct timespec tv[2]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 |  | 
 | 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 Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 88 | 		tv[0].tv_nsec = 0; | 
 | 89 | 		tv[1].tv_nsec = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | 	} | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 91 | 	return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0); | 
 | 92 | } | 
 | 93 |  | 
 | 94 | asmlinkage 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 Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 103 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } | 
 | 108 |  | 
| Stephen Rothwell | 9ad11ab | 2006-02-02 16:11:51 +1100 | [diff] [blame] | 109 | asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename, struct compat_timeval __user *t) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 111 | 	struct timespec tv[2]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 |  | 
| Stephen Rothwell | 9ad11ab | 2006-02-02 16:11:51 +1100 | [diff] [blame] | 113 | 	if (t) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | 		if (get_user(tv[0].tv_sec, &t[0].tv_sec) || | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 115 | 		    get_user(tv[0].tv_nsec, &t[0].tv_usec) || | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | 		    get_user(tv[1].tv_sec, &t[1].tv_sec) || | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 117 | 		    get_user(tv[1].tv_nsec, &t[1].tv_usec)) | 
| Stephen Rothwell | 9ad11ab | 2006-02-02 16:11:51 +1100 | [diff] [blame] | 118 | 			return -EFAULT; | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 119 | 		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 Rothwell | 9ad11ab | 2006-02-02 16:11:51 +1100 | [diff] [blame] | 124 | 	} | 
| Ulrich Drepper | 1c710c8 | 2007-05-08 00:33:25 -0700 | [diff] [blame] | 125 | 	return do_utimes(dfd, filename, t ? tv : NULL, 0); | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 126 | } | 
 | 127 |  | 
 | 128 | asmlinkage long compat_sys_utimes(char __user *filename, struct compat_timeval __user *t) | 
 | 129 | { | 
 | 130 | 	return compat_sys_futimesat(AT_FDCWD, filename, t); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } | 
 | 132 |  | 
| Christoph Hellwig | f7a5000 | 2008-10-15 22:02:05 -0700 | [diff] [blame] | 133 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | asmlinkage long compat_sys_newstat(char __user * filename, | 
 | 173 | 		struct compat_stat __user *statbuf) | 
 | 174 | { | 
 | 175 | 	struct kstat stat; | 
| Christoph Hellwig | 2eae7a1 | 2009-04-08 16:34:03 -0400 | [diff] [blame] | 176 | 	int error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 |  | 
| Christoph Hellwig | 2eae7a1 | 2009-04-08 16:34:03 -0400 | [diff] [blame] | 178 | 	error = vfs_stat(filename, &stat); | 
 | 179 | 	if (error) | 
 | 180 | 		return error; | 
 | 181 | 	return cp_compat_stat(&stat, statbuf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } | 
 | 183 |  | 
 | 184 | asmlinkage long compat_sys_newlstat(char __user * filename, | 
 | 185 | 		struct compat_stat __user *statbuf) | 
 | 186 | { | 
 | 187 | 	struct kstat stat; | 
| Christoph Hellwig | 2eae7a1 | 2009-04-08 16:34:03 -0400 | [diff] [blame] | 188 | 	int error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 |  | 
| Christoph Hellwig | 2eae7a1 | 2009-04-08 16:34:03 -0400 | [diff] [blame] | 190 | 	error = vfs_lstat(filename, &stat); | 
 | 191 | 	if (error) | 
 | 192 | 		return error; | 
 | 193 | 	return cp_compat_stat(&stat, statbuf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } | 
 | 195 |  | 
| Kyle McMartin | 82d821d | 2006-03-24 03:18:20 -0800 | [diff] [blame] | 196 | #ifndef __ARCH_WANT_STAT64 | 
| Stephen Rothwell | 9ad11ab | 2006-02-02 16:11:51 +1100 | [diff] [blame] | 197 | asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user *filename, | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 198 | 		struct compat_stat __user *statbuf, int flag) | 
 | 199 | { | 
 | 200 | 	struct kstat stat; | 
| Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 201 | 	int error; | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 202 |  | 
| Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 203 | 	error = vfs_fstatat(dfd, filename, &stat, flag); | 
 | 204 | 	if (error) | 
 | 205 | 		return error; | 
 | 206 | 	return cp_compat_stat(&stat, statbuf); | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 207 | } | 
| Kyle McMartin | 82d821d | 2006-03-24 03:18:20 -0800 | [diff] [blame] | 208 | #endif | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 209 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | asmlinkage 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 |  | 
 | 221 | static int put_compat_statfs(struct compat_statfs __user *ubuf, struct kstatfs *kbuf) | 
 | 222 | { | 
 | 223 | 	 | 
 | 224 | 	if (sizeof ubuf->f_blocks == 4) { | 
| Jon Tollefson | f4a67cc | 2008-07-23 21:27:55 -0700 | [diff] [blame] | 225 | 		if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail | | 
 | 226 | 		     kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | 			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 Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 262 | asmlinkage long compat_sys_statfs(const char __user *pathname, struct compat_statfs __user *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { | 
| Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 264 | 	struct path path; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | 	int error; | 
 | 266 |  | 
| Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 267 | 	error = user_path(pathname, &path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | 	if (!error) { | 
 | 269 | 		struct kstatfs tmp; | 
| Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 270 | 		error = vfs_statfs(&path, &tmp); | 
| David Gibson | 86e07ce | 2005-11-21 21:32:23 -0800 | [diff] [blame] | 271 | 		if (!error) | 
 | 272 | 			error = put_compat_statfs(buf, &tmp); | 
| Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 273 | 		path_put(&path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | 	} | 
 | 275 | 	return error; | 
 | 276 | } | 
 | 277 |  | 
 | 278 | asmlinkage 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; | 
| Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 288 | 	error = vfs_statfs(&file->f_path, &tmp); | 
| David Gibson | 86e07ce | 2005-11-21 21:32:23 -0800 | [diff] [blame] | 289 | 	if (!error) | 
 | 290 | 		error = put_compat_statfs(buf, &tmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | 	fput(file); | 
 | 292 | out: | 
 | 293 | 	return error; | 
 | 294 | } | 
 | 295 |  | 
 | 296 | static int put_compat_statfs64(struct compat_statfs64 __user *ubuf, struct kstatfs *kbuf) | 
 | 297 | { | 
 | 298 | 	if (sizeof ubuf->f_blocks == 4) { | 
| Jon Tollefson | f4a67cc | 2008-07-23 21:27:55 -0700 | [diff] [blame] | 299 | 		if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail | | 
 | 300 | 		     kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | 			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 Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 327 | asmlinkage long compat_sys_statfs64(const char __user *pathname, compat_size_t sz, struct compat_statfs64 __user *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { | 
| Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 329 | 	struct path path; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | 	int error; | 
 | 331 |  | 
 | 332 | 	if (sz != sizeof(*buf)) | 
 | 333 | 		return -EINVAL; | 
 | 334 |  | 
| Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 335 | 	error = user_path(pathname, &path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | 	if (!error) { | 
 | 337 | 		struct kstatfs tmp; | 
| Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 338 | 		error = vfs_statfs(&path, &tmp); | 
| David Gibson | 86e07ce | 2005-11-21 21:32:23 -0800 | [diff] [blame] | 339 | 		if (!error) | 
 | 340 | 			error = put_compat_statfs64(buf, &tmp); | 
| Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 341 | 		path_put(&path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | 	} | 
 | 343 | 	return error; | 
 | 344 | } | 
 | 345 |  | 
 | 346 | asmlinkage 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; | 
| Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 359 | 	error = vfs_statfs(&file->f_path, &tmp); | 
| David Gibson | 86e07ce | 2005-11-21 21:32:23 -0800 | [diff] [blame] | 360 | 	if (!error) | 
 | 361 | 		error = put_compat_statfs64(buf, &tmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | 	fput(file); | 
 | 363 | out: | 
 | 364 | 	return error; | 
 | 365 | } | 
 | 366 |  | 
| Christoph Hellwig | 2b1c6bd | 2008-11-28 10:09:09 +0100 | [diff] [blame] | 367 | /* | 
 | 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 |  */ | 
 | 372 | asmlinkage 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; | 
| Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 382 | 	err = statfs_by_dentry(sb->s_root, &sbuf); | 
| Christoph Hellwig | 2b1c6bd | 2008-11-28 10:09:09 +0100 | [diff] [blame] | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | static 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 |  | 
 | 407 | static 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 | 
 | 420 | static 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 | 
 | 434 | static 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 |  | 
 | 447 | asmlinkage 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 Karthikesan | ff677f8 | 2009-04-01 14:40:51 +0530 | [diff] [blame] | 466 | 			/* GETLK was successful and we need to return the data... | 
| NeilBrown | 2520f14 | 2006-01-08 01:02:40 -0800 | [diff] [blame] | 467 | 			 * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | 				ret = -EOVERFLOW; | 
| NeilBrown | 2520f14 | 2006-01-08 01:02:40 -0800 | [diff] [blame] | 479 | 			if (f.l_len > COMPAT_OFF_T_MAX) | 
 | 480 | 				f.l_len = COMPAT_OFF_T_MAX; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | 			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) { | 
| NeilBrown | 2520f14 | 2006-01-08 01:02:40 -0800 | [diff] [blame] | 499 | 			/* need to return lock information - see above for commentary */ | 
 | 500 | 			if (f.l_start > COMPAT_LOFF_T_MAX) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | 				ret = -EOVERFLOW; | 
| NeilBrown | 2520f14 | 2006-01-08 01:02:40 -0800 | [diff] [blame] | 502 | 			if (f.l_len > COMPAT_LOFF_T_MAX) | 
 | 503 | 				f.l_len = COMPAT_LOFF_T_MAX; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | 			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 |  | 
 | 516 | asmlinkage 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 |  | 
 | 524 | asmlinkage long | 
 | 525 | compat_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 |  | 
 | 544 | asmlinkage long | 
 | 545 | compat_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); | 
 | 568 | out: | 
 | 569 | 	return ret; | 
 | 570 | } | 
 | 571 |  | 
| Jeff Moyer | b837336 | 2010-05-26 14:44:25 -0700 | [diff] [blame] | 572 | /* A write operation does a read from user space and vice versa */ | 
 | 573 | #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ) | 
 | 574 |  | 
 | 575 | ssize_t compat_rw_copy_check_uvector(int type, | 
 | 576 | 		const struct compat_iovec __user *uvector, unsigned long nr_segs, | 
 | 577 | 		unsigned long fast_segs, struct iovec *fast_pointer, | 
 | 578 | 		struct iovec **ret_pointer) | 
 | 579 | { | 
 | 580 | 	compat_ssize_t tot_len; | 
 | 581 | 	struct iovec *iov = *ret_pointer = fast_pointer; | 
 | 582 | 	ssize_t ret = 0; | 
 | 583 | 	int seg; | 
 | 584 |  | 
 | 585 | 	/* | 
 | 586 | 	 * SuS says "The readv() function *may* fail if the iovcnt argument | 
 | 587 | 	 * was less than or equal to 0, or greater than {IOV_MAX}.  Linux has | 
 | 588 | 	 * traditionally returned zero for zero segments, so... | 
 | 589 | 	 */ | 
 | 590 | 	if (nr_segs == 0) | 
 | 591 | 		goto out; | 
 | 592 |  | 
 | 593 | 	ret = -EINVAL; | 
 | 594 | 	if (nr_segs > UIO_MAXIOV || nr_segs < 0) | 
 | 595 | 		goto out; | 
 | 596 | 	if (nr_segs > fast_segs) { | 
 | 597 | 		ret = -ENOMEM; | 
 | 598 | 		iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL); | 
 | 599 | 		if (iov == NULL) { | 
 | 600 | 			*ret_pointer = fast_pointer; | 
 | 601 | 			goto out; | 
 | 602 | 		} | 
 | 603 | 	} | 
 | 604 | 	*ret_pointer = iov; | 
 | 605 |  | 
 | 606 | 	/* | 
 | 607 | 	 * Single unix specification: | 
 | 608 | 	 * We should -EINVAL if an element length is not >= 0 and fitting an | 
 | 609 | 	 * ssize_t.  The total length is fitting an ssize_t | 
 | 610 | 	 * | 
 | 611 | 	 * Be careful here because iov_len is a size_t not an ssize_t | 
 | 612 | 	 */ | 
 | 613 | 	tot_len = 0; | 
 | 614 | 	ret = -EINVAL; | 
 | 615 | 	for (seg = 0; seg < nr_segs; seg++) { | 
 | 616 | 		compat_ssize_t tmp = tot_len; | 
 | 617 | 		compat_uptr_t buf; | 
 | 618 | 		compat_ssize_t len; | 
 | 619 |  | 
 | 620 | 		if (__get_user(len, &uvector->iov_len) || | 
 | 621 | 		   __get_user(buf, &uvector->iov_base)) { | 
 | 622 | 			ret = -EFAULT; | 
 | 623 | 			goto out; | 
 | 624 | 		} | 
 | 625 | 		if (len < 0)	/* size_t not fitting in compat_ssize_t .. */ | 
 | 626 | 			goto out; | 
 | 627 | 		tot_len += len; | 
 | 628 | 		if (tot_len < tmp) /* maths overflow on the compat_ssize_t */ | 
 | 629 | 			goto out; | 
| Heiko Carstens | 7cbe177 | 2010-06-04 14:14:47 -0700 | [diff] [blame] | 630 | 		if (!access_ok(vrfy_dir(type), compat_ptr(buf), len)) { | 
| Jeff Moyer | b837336 | 2010-05-26 14:44:25 -0700 | [diff] [blame] | 631 | 			ret = -EFAULT; | 
 | 632 | 			goto out; | 
 | 633 | 		} | 
 | 634 | 		iov->iov_base = compat_ptr(buf); | 
 | 635 | 		iov->iov_len = (compat_size_t) len; | 
 | 636 | 		uvector++; | 
 | 637 | 		iov++; | 
 | 638 | 	} | 
 | 639 | 	ret = tot_len; | 
 | 640 |  | 
 | 641 | out: | 
 | 642 | 	return ret; | 
 | 643 | } | 
 | 644 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | static inline long | 
 | 646 | copy_iocb(long nr, u32 __user *ptr32, struct iocb __user * __user *ptr64) | 
 | 647 | { | 
 | 648 | 	compat_uptr_t uptr; | 
 | 649 | 	int i; | 
 | 650 |  | 
 | 651 | 	for (i = 0; i < nr; ++i) { | 
 | 652 | 		if (get_user(uptr, ptr32 + i)) | 
 | 653 | 			return -EFAULT; | 
 | 654 | 		if (put_user(compat_ptr(uptr), ptr64 + i)) | 
 | 655 | 			return -EFAULT; | 
 | 656 | 	} | 
 | 657 | 	return 0; | 
 | 658 | } | 
 | 659 |  | 
 | 660 | #define MAX_AIO_SUBMITS 	(PAGE_SIZE/sizeof(struct iocb *)) | 
 | 661 |  | 
 | 662 | asmlinkage long | 
 | 663 | compat_sys_io_submit(aio_context_t ctx_id, int nr, u32 __user *iocb) | 
 | 664 | { | 
 | 665 | 	struct iocb __user * __user *iocb64;  | 
 | 666 | 	long ret; | 
 | 667 |  | 
 | 668 | 	if (unlikely(nr < 0)) | 
 | 669 | 		return -EINVAL; | 
 | 670 |  | 
 | 671 | 	if (nr > MAX_AIO_SUBMITS) | 
 | 672 | 		nr = MAX_AIO_SUBMITS; | 
 | 673 | 	 | 
 | 674 | 	iocb64 = compat_alloc_user_space(nr * sizeof(*iocb64)); | 
 | 675 | 	ret = copy_iocb(nr, iocb, iocb64); | 
 | 676 | 	if (!ret) | 
| Jeff Moyer | 9d85cba | 2010-05-26 14:44:26 -0700 | [diff] [blame] | 677 | 		ret = do_io_submit(ctx_id, nr, iocb64, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | 	return ret; | 
 | 679 | } | 
 | 680 |  | 
 | 681 | struct compat_ncp_mount_data { | 
 | 682 | 	compat_int_t version; | 
 | 683 | 	compat_uint_t ncp_fd; | 
| Stephen Rothwell | 202e597 | 2005-09-06 15:16:40 -0700 | [diff] [blame] | 684 | 	__compat_uid_t mounted_uid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | 	compat_pid_t wdog_pid; | 
 | 686 | 	unsigned char mounted_vol[NCP_VOLNAME_LEN + 1]; | 
 | 687 | 	compat_uint_t time_out; | 
 | 688 | 	compat_uint_t retry_count; | 
 | 689 | 	compat_uint_t flags; | 
| Stephen Rothwell | 202e597 | 2005-09-06 15:16:40 -0700 | [diff] [blame] | 690 | 	__compat_uid_t uid; | 
 | 691 | 	__compat_gid_t gid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | 	compat_mode_t file_mode; | 
 | 693 | 	compat_mode_t dir_mode; | 
 | 694 | }; | 
 | 695 |  | 
 | 696 | struct compat_ncp_mount_data_v4 { | 
 | 697 | 	compat_int_t version; | 
 | 698 | 	compat_ulong_t flags; | 
 | 699 | 	compat_ulong_t mounted_uid; | 
 | 700 | 	compat_long_t wdog_pid; | 
 | 701 | 	compat_uint_t ncp_fd; | 
 | 702 | 	compat_uint_t time_out; | 
 | 703 | 	compat_uint_t retry_count; | 
 | 704 | 	compat_ulong_t uid; | 
 | 705 | 	compat_ulong_t gid; | 
 | 706 | 	compat_ulong_t file_mode; | 
 | 707 | 	compat_ulong_t dir_mode; | 
 | 708 | }; | 
 | 709 |  | 
 | 710 | static void *do_ncp_super_data_conv(void *raw_data) | 
 | 711 | { | 
 | 712 | 	int version = *(unsigned int *)raw_data; | 
 | 713 |  | 
 | 714 | 	if (version == 3) { | 
 | 715 | 		struct compat_ncp_mount_data *c_n = raw_data; | 
 | 716 | 		struct ncp_mount_data *n = raw_data; | 
 | 717 |  | 
 | 718 | 		n->dir_mode = c_n->dir_mode; | 
 | 719 | 		n->file_mode = c_n->file_mode; | 
 | 720 | 		n->gid = c_n->gid; | 
 | 721 | 		n->uid = c_n->uid; | 
 | 722 | 		memmove (n->mounted_vol, c_n->mounted_vol, (sizeof (c_n->mounted_vol) + 3 * sizeof (unsigned int))); | 
 | 723 | 		n->wdog_pid = c_n->wdog_pid; | 
 | 724 | 		n->mounted_uid = c_n->mounted_uid; | 
 | 725 | 	} else if (version == 4) { | 
 | 726 | 		struct compat_ncp_mount_data_v4 *c_n = raw_data; | 
 | 727 | 		struct ncp_mount_data_v4 *n = raw_data; | 
 | 728 |  | 
 | 729 | 		n->dir_mode = c_n->dir_mode; | 
 | 730 | 		n->file_mode = c_n->file_mode; | 
 | 731 | 		n->gid = c_n->gid; | 
 | 732 | 		n->uid = c_n->uid; | 
 | 733 | 		n->retry_count = c_n->retry_count; | 
 | 734 | 		n->time_out = c_n->time_out; | 
 | 735 | 		n->ncp_fd = c_n->ncp_fd; | 
 | 736 | 		n->wdog_pid = c_n->wdog_pid; | 
 | 737 | 		n->mounted_uid = c_n->mounted_uid; | 
 | 738 | 		n->flags = c_n->flags; | 
 | 739 | 	} else if (version != 5) { | 
 | 740 | 		return NULL; | 
 | 741 | 	} | 
 | 742 |  | 
 | 743 | 	return raw_data; | 
 | 744 | } | 
 | 745 |  | 
 | 746 | struct compat_smb_mount_data { | 
 | 747 | 	compat_int_t version; | 
| Stephen Rothwell | 202e597 | 2005-09-06 15:16:40 -0700 | [diff] [blame] | 748 | 	__compat_uid_t mounted_uid; | 
 | 749 | 	__compat_uid_t uid; | 
 | 750 | 	__compat_gid_t gid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | 	compat_mode_t file_mode; | 
 | 752 | 	compat_mode_t dir_mode; | 
 | 753 | }; | 
 | 754 |  | 
 | 755 | static void *do_smb_super_data_conv(void *raw_data) | 
 | 756 | { | 
 | 757 | 	struct smb_mount_data *s = raw_data; | 
 | 758 | 	struct compat_smb_mount_data *c_s = raw_data; | 
 | 759 |  | 
 | 760 | 	if (c_s->version != SMB_MOUNT_OLDVERSION) | 
 | 761 | 		goto out; | 
 | 762 | 	s->dir_mode = c_s->dir_mode; | 
 | 763 | 	s->file_mode = c_s->file_mode; | 
 | 764 | 	s->gid = c_s->gid; | 
 | 765 | 	s->uid = c_s->uid; | 
 | 766 | 	s->mounted_uid = c_s->mounted_uid; | 
 | 767 |  out: | 
 | 768 | 	return raw_data; | 
 | 769 | } | 
 | 770 |  | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 771 | struct compat_nfs_string { | 
 | 772 | 	compat_uint_t len; | 
| David Howells | 5fc3e62 | 2005-04-27 15:39:03 -0700 | [diff] [blame] | 773 | 	compat_uptr_t data; | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 774 | }; | 
 | 775 |  | 
 | 776 | static inline void compat_nfs_string(struct nfs_string *dst, | 
 | 777 | 				     struct compat_nfs_string *src) | 
 | 778 | { | 
 | 779 | 	dst->data = compat_ptr(src->data); | 
 | 780 | 	dst->len = src->len; | 
 | 781 | } | 
 | 782 |  | 
 | 783 | struct compat_nfs4_mount_data_v1 { | 
 | 784 | 	compat_int_t version; | 
 | 785 | 	compat_int_t flags; | 
 | 786 | 	compat_int_t rsize; | 
 | 787 | 	compat_int_t wsize; | 
 | 788 | 	compat_int_t timeo; | 
 | 789 | 	compat_int_t retrans; | 
 | 790 | 	compat_int_t acregmin; | 
 | 791 | 	compat_int_t acregmax; | 
 | 792 | 	compat_int_t acdirmin; | 
 | 793 | 	compat_int_t acdirmax; | 
 | 794 | 	struct compat_nfs_string client_addr; | 
 | 795 | 	struct compat_nfs_string mnt_path; | 
 | 796 | 	struct compat_nfs_string hostname; | 
 | 797 | 	compat_uint_t host_addrlen; | 
| David Howells | 5fc3e62 | 2005-04-27 15:39:03 -0700 | [diff] [blame] | 798 | 	compat_uptr_t host_addr; | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 799 | 	compat_int_t proto; | 
 | 800 | 	compat_int_t auth_flavourlen; | 
| David Howells | 5fc3e62 | 2005-04-27 15:39:03 -0700 | [diff] [blame] | 801 | 	compat_uptr_t auth_flavours; | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 802 | }; | 
 | 803 |  | 
 | 804 | static int do_nfs4_super_data_conv(void *raw_data) | 
 | 805 | { | 
 | 806 | 	int version = *(compat_uint_t *) raw_data; | 
 | 807 |  | 
 | 808 | 	if (version == 1) { | 
 | 809 | 		struct compat_nfs4_mount_data_v1 *raw = raw_data; | 
 | 810 | 		struct nfs4_mount_data *real = raw_data; | 
 | 811 |  | 
 | 812 | 		/* copy the fields backwards */ | 
 | 813 | 		real->auth_flavours = compat_ptr(raw->auth_flavours); | 
 | 814 | 		real->auth_flavourlen = raw->auth_flavourlen; | 
 | 815 | 		real->proto = raw->proto; | 
 | 816 | 		real->host_addr = compat_ptr(raw->host_addr); | 
 | 817 | 		real->host_addrlen = raw->host_addrlen; | 
 | 818 | 		compat_nfs_string(&real->hostname, &raw->hostname); | 
 | 819 | 		compat_nfs_string(&real->mnt_path, &raw->mnt_path); | 
 | 820 | 		compat_nfs_string(&real->client_addr, &raw->client_addr); | 
 | 821 | 		real->acdirmax = raw->acdirmax; | 
 | 822 | 		real->acdirmin = raw->acdirmin; | 
 | 823 | 		real->acregmax = raw->acregmax; | 
 | 824 | 		real->acregmin = raw->acregmin; | 
 | 825 | 		real->retrans = raw->retrans; | 
 | 826 | 		real->timeo = raw->timeo; | 
 | 827 | 		real->wsize = raw->wsize; | 
 | 828 | 		real->rsize = raw->rsize; | 
 | 829 | 		real->flags = raw->flags; | 
 | 830 | 		real->version = raw->version; | 
 | 831 | 	} | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 832 |  | 
 | 833 | 	return 0; | 
 | 834 | } | 
 | 835 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | #define SMBFS_NAME      "smbfs" | 
 | 837 | #define NCPFS_NAME      "ncpfs" | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 838 | #define NFS4_NAME	"nfs4" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 |  | 
 | 840 | asmlinkage long compat_sys_mount(char __user * dev_name, char __user * dir_name, | 
 | 841 | 				 char __user * type, unsigned long flags, | 
 | 842 | 				 void __user * data) | 
 | 843 | { | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 844 | 	char *kernel_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | 	unsigned long data_page; | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 846 | 	char *kernel_dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | 	char *dir_page; | 
 | 848 | 	int retval; | 
 | 849 |  | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 850 | 	retval = copy_mount_string(type, &kernel_type); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | 	if (retval < 0) | 
 | 852 | 		goto out; | 
 | 853 |  | 
 | 854 | 	dir_page = getname(dir_name); | 
 | 855 | 	retval = PTR_ERR(dir_page); | 
 | 856 | 	if (IS_ERR(dir_page)) | 
 | 857 | 		goto out1; | 
 | 858 |  | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 859 | 	retval = copy_mount_string(dev_name, &kernel_dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | 	if (retval < 0) | 
 | 861 | 		goto out2; | 
 | 862 |  | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 863 | 	retval = copy_mount_options(data, &data_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | 	if (retval < 0) | 
 | 865 | 		goto out3; | 
 | 866 |  | 
 | 867 | 	retval = -EINVAL; | 
 | 868 |  | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 869 | 	if (kernel_type && data_page) { | 
 | 870 | 		if (!strcmp(kernel_type, SMBFS_NAME)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | 			do_smb_super_data_conv((void *)data_page); | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 872 | 		} else if (!strcmp(kernel_type, NCPFS_NAME)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | 			do_ncp_super_data_conv((void *)data_page); | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 874 | 		} else if (!strcmp(kernel_type, NFS4_NAME)) { | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 875 | 			if (do_nfs4_super_data_conv((void *) data_page)) | 
 | 876 | 				goto out4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | 		} | 
 | 878 | 	} | 
 | 879 |  | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 880 | 	retval = do_mount(kernel_dev, dir_page, kernel_type, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | 			flags, (void*)data_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 |  | 
| David Howells | 9a9947b | 2005-04-18 10:54:51 -0700 | [diff] [blame] | 883 |  out4: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | 	free_page(data_page); | 
 | 885 |  out3: | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 886 | 	kfree(kernel_dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 |  out2: | 
 | 888 | 	putname(dir_page); | 
 | 889 |  out1: | 
| Vegard Nossum | eca6f53 | 2009-09-18 13:05:45 -0700 | [diff] [blame] | 890 | 	kfree(kernel_type); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 |  out: | 
 | 892 | 	return retval; | 
 | 893 | } | 
 | 894 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | struct compat_old_linux_dirent { | 
 | 896 | 	compat_ulong_t	d_ino; | 
 | 897 | 	compat_ulong_t	d_offset; | 
 | 898 | 	unsigned short	d_namlen; | 
 | 899 | 	char		d_name[1]; | 
 | 900 | }; | 
 | 901 |  | 
 | 902 | struct compat_readdir_callback { | 
 | 903 | 	struct compat_old_linux_dirent __user *dirent; | 
 | 904 | 	int result; | 
 | 905 | }; | 
 | 906 |  | 
 | 907 | static int compat_fillonedir(void *__buf, const char *name, int namlen, | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 908 | 			loff_t offset, u64 ino, unsigned int d_type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | { | 
 | 910 | 	struct compat_readdir_callback *buf = __buf; | 
 | 911 | 	struct compat_old_linux_dirent __user *dirent; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 912 | 	compat_ulong_t d_ino; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 |  | 
 | 914 | 	if (buf->result) | 
 | 915 | 		return -EINVAL; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 916 | 	d_ino = ino; | 
| Al Viro | 8f3f655 | 2008-08-12 00:28:24 -0400 | [diff] [blame] | 917 | 	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) { | 
 | 918 | 		buf->result = -EOVERFLOW; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 919 | 		return -EOVERFLOW; | 
| Al Viro | 8f3f655 | 2008-08-12 00:28:24 -0400 | [diff] [blame] | 920 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | 	buf->result++; | 
 | 922 | 	dirent = buf->dirent; | 
 | 923 | 	if (!access_ok(VERIFY_WRITE, dirent, | 
 | 924 | 			(unsigned long)(dirent->d_name + namlen + 1) - | 
 | 925 | 				(unsigned long)dirent)) | 
 | 926 | 		goto efault; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 927 | 	if (	__put_user(d_ino, &dirent->d_ino) || | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | 		__put_user(offset, &dirent->d_offset) || | 
 | 929 | 		__put_user(namlen, &dirent->d_namlen) || | 
 | 930 | 		__copy_to_user(dirent->d_name, name, namlen) || | 
 | 931 | 		__put_user(0, dirent->d_name + namlen)) | 
 | 932 | 		goto efault; | 
 | 933 | 	return 0; | 
 | 934 | efault: | 
 | 935 | 	buf->result = -EFAULT; | 
 | 936 | 	return -EFAULT; | 
 | 937 | } | 
 | 938 |  | 
 | 939 | asmlinkage long compat_sys_old_readdir(unsigned int fd, | 
 | 940 | 	struct compat_old_linux_dirent __user *dirent, unsigned int count) | 
 | 941 | { | 
 | 942 | 	int error; | 
 | 943 | 	struct file *file; | 
 | 944 | 	struct compat_readdir_callback buf; | 
 | 945 |  | 
 | 946 | 	error = -EBADF; | 
 | 947 | 	file = fget(fd); | 
 | 948 | 	if (!file) | 
 | 949 | 		goto out; | 
 | 950 |  | 
 | 951 | 	buf.result = 0; | 
 | 952 | 	buf.dirent = dirent; | 
 | 953 |  | 
 | 954 | 	error = vfs_readdir(file, compat_fillonedir, &buf); | 
| Al Viro | 53c9c5c | 2008-08-24 07:29:52 -0400 | [diff] [blame] | 955 | 	if (buf.result) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | 		error = buf.result; | 
 | 957 |  | 
 | 958 | 	fput(file); | 
 | 959 | out: | 
 | 960 | 	return error; | 
 | 961 | } | 
 | 962 |  | 
 | 963 | struct compat_linux_dirent { | 
 | 964 | 	compat_ulong_t	d_ino; | 
 | 965 | 	compat_ulong_t	d_off; | 
 | 966 | 	unsigned short	d_reclen; | 
 | 967 | 	char		d_name[1]; | 
 | 968 | }; | 
 | 969 |  | 
 | 970 | struct compat_getdents_callback { | 
 | 971 | 	struct compat_linux_dirent __user *current_dir; | 
 | 972 | 	struct compat_linux_dirent __user *previous; | 
 | 973 | 	int count; | 
 | 974 | 	int error; | 
 | 975 | }; | 
 | 976 |  | 
 | 977 | static int compat_filldir(void *__buf, const char *name, int namlen, | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 978 | 		loff_t offset, u64 ino, unsigned int d_type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | { | 
 | 980 | 	struct compat_linux_dirent __user * dirent; | 
 | 981 | 	struct compat_getdents_callback *buf = __buf; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 982 | 	compat_ulong_t d_ino; | 
| Kevin Winchester | 85c9fe8 | 2010-08-09 17:20:22 -0700 | [diff] [blame] | 983 | 	int reclen = ALIGN(offsetof(struct compat_linux_dirent, d_name) + | 
 | 984 | 		namlen + 2, sizeof(compat_long_t)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 |  | 
 | 986 | 	buf->error = -EINVAL;	/* only used if we fail.. */ | 
 | 987 | 	if (reclen > buf->count) | 
 | 988 | 		return -EINVAL; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 989 | 	d_ino = ino; | 
| Al Viro | 8f3f655 | 2008-08-12 00:28:24 -0400 | [diff] [blame] | 990 | 	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) { | 
 | 991 | 		buf->error = -EOVERFLOW; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 992 | 		return -EOVERFLOW; | 
| Al Viro | 8f3f655 | 2008-08-12 00:28:24 -0400 | [diff] [blame] | 993 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | 	dirent = buf->previous; | 
 | 995 | 	if (dirent) { | 
 | 996 | 		if (__put_user(offset, &dirent->d_off)) | 
 | 997 | 			goto efault; | 
 | 998 | 	} | 
 | 999 | 	dirent = buf->current_dir; | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 1000 | 	if (__put_user(d_ino, &dirent->d_ino)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | 		goto efault; | 
 | 1002 | 	if (__put_user(reclen, &dirent->d_reclen)) | 
 | 1003 | 		goto efault; | 
 | 1004 | 	if (copy_to_user(dirent->d_name, name, namlen)) | 
 | 1005 | 		goto efault; | 
 | 1006 | 	if (__put_user(0, dirent->d_name + namlen)) | 
 | 1007 | 		goto efault; | 
 | 1008 | 	if (__put_user(d_type, (char  __user *) dirent + reclen - 1)) | 
 | 1009 | 		goto efault; | 
 | 1010 | 	buf->previous = dirent; | 
 | 1011 | 	dirent = (void __user *)dirent + reclen; | 
 | 1012 | 	buf->current_dir = dirent; | 
 | 1013 | 	buf->count -= reclen; | 
 | 1014 | 	return 0; | 
 | 1015 | efault: | 
 | 1016 | 	buf->error = -EFAULT; | 
 | 1017 | 	return -EFAULT; | 
 | 1018 | } | 
 | 1019 |  | 
 | 1020 | asmlinkage long compat_sys_getdents(unsigned int fd, | 
 | 1021 | 		struct compat_linux_dirent __user *dirent, unsigned int count) | 
 | 1022 | { | 
 | 1023 | 	struct file * file; | 
 | 1024 | 	struct compat_linux_dirent __user * lastdirent; | 
 | 1025 | 	struct compat_getdents_callback buf; | 
 | 1026 | 	int error; | 
 | 1027 |  | 
 | 1028 | 	error = -EFAULT; | 
 | 1029 | 	if (!access_ok(VERIFY_WRITE, dirent, count)) | 
 | 1030 | 		goto out; | 
 | 1031 |  | 
 | 1032 | 	error = -EBADF; | 
 | 1033 | 	file = fget(fd); | 
 | 1034 | 	if (!file) | 
 | 1035 | 		goto out; | 
 | 1036 |  | 
 | 1037 | 	buf.current_dir = dirent; | 
 | 1038 | 	buf.previous = NULL; | 
 | 1039 | 	buf.count = count; | 
 | 1040 | 	buf.error = 0; | 
 | 1041 |  | 
 | 1042 | 	error = vfs_readdir(file, compat_filldir, &buf); | 
| Al Viro | 53c9c5c | 2008-08-24 07:29:52 -0400 | [diff] [blame] | 1043 | 	if (error >= 0) | 
 | 1044 | 		error = buf.error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | 	lastdirent = buf.previous; | 
 | 1046 | 	if (lastdirent) { | 
 | 1047 | 		if (put_user(file->f_pos, &lastdirent->d_off)) | 
 | 1048 | 			error = -EFAULT; | 
 | 1049 | 		else | 
 | 1050 | 			error = count - buf.count; | 
 | 1051 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | 	fput(file); | 
 | 1053 | out: | 
 | 1054 | 	return error; | 
 | 1055 | } | 
 | 1056 |  | 
 | 1057 | #ifndef __ARCH_OMIT_COMPAT_SYS_GETDENTS64 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 |  | 
 | 1059 | struct compat_getdents_callback64 { | 
 | 1060 | 	struct linux_dirent64 __user *current_dir; | 
 | 1061 | 	struct linux_dirent64 __user *previous; | 
 | 1062 | 	int count; | 
 | 1063 | 	int error; | 
 | 1064 | }; | 
 | 1065 |  | 
 | 1066 | static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t offset, | 
| David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 1067 | 		     u64 ino, unsigned int d_type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | { | 
 | 1069 | 	struct linux_dirent64 __user *dirent; | 
 | 1070 | 	struct compat_getdents_callback64 *buf = __buf; | 
| Kevin Winchester | 85c9fe8 | 2010-08-09 17:20:22 -0700 | [diff] [blame] | 1071 | 	int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1, | 
 | 1072 | 		sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | 	u64 off; | 
 | 1074 |  | 
 | 1075 | 	buf->error = -EINVAL;	/* only used if we fail.. */ | 
 | 1076 | 	if (reclen > buf->count) | 
 | 1077 | 		return -EINVAL; | 
 | 1078 | 	dirent = buf->previous; | 
 | 1079 |  | 
 | 1080 | 	if (dirent) { | 
 | 1081 | 		if (__put_user_unaligned(offset, &dirent->d_off)) | 
 | 1082 | 			goto efault; | 
 | 1083 | 	} | 
 | 1084 | 	dirent = buf->current_dir; | 
 | 1085 | 	if (__put_user_unaligned(ino, &dirent->d_ino)) | 
 | 1086 | 		goto efault; | 
 | 1087 | 	off = 0; | 
 | 1088 | 	if (__put_user_unaligned(off, &dirent->d_off)) | 
 | 1089 | 		goto efault; | 
 | 1090 | 	if (__put_user(reclen, &dirent->d_reclen)) | 
 | 1091 | 		goto efault; | 
 | 1092 | 	if (__put_user(d_type, &dirent->d_type)) | 
 | 1093 | 		goto efault; | 
 | 1094 | 	if (copy_to_user(dirent->d_name, name, namlen)) | 
 | 1095 | 		goto efault; | 
 | 1096 | 	if (__put_user(0, dirent->d_name + namlen)) | 
 | 1097 | 		goto efault; | 
 | 1098 | 	buf->previous = dirent; | 
 | 1099 | 	dirent = (void __user *)dirent + reclen; | 
 | 1100 | 	buf->current_dir = dirent; | 
 | 1101 | 	buf->count -= reclen; | 
 | 1102 | 	return 0; | 
 | 1103 | efault: | 
 | 1104 | 	buf->error = -EFAULT; | 
 | 1105 | 	return -EFAULT; | 
 | 1106 | } | 
 | 1107 |  | 
 | 1108 | asmlinkage long compat_sys_getdents64(unsigned int fd, | 
 | 1109 | 		struct linux_dirent64 __user * dirent, unsigned int count) | 
 | 1110 | { | 
 | 1111 | 	struct file * file; | 
 | 1112 | 	struct linux_dirent64 __user * lastdirent; | 
 | 1113 | 	struct compat_getdents_callback64 buf; | 
 | 1114 | 	int error; | 
 | 1115 |  | 
 | 1116 | 	error = -EFAULT; | 
 | 1117 | 	if (!access_ok(VERIFY_WRITE, dirent, count)) | 
 | 1118 | 		goto out; | 
 | 1119 |  | 
 | 1120 | 	error = -EBADF; | 
 | 1121 | 	file = fget(fd); | 
 | 1122 | 	if (!file) | 
 | 1123 | 		goto out; | 
 | 1124 |  | 
 | 1125 | 	buf.current_dir = dirent; | 
 | 1126 | 	buf.previous = NULL; | 
 | 1127 | 	buf.count = count; | 
 | 1128 | 	buf.error = 0; | 
 | 1129 |  | 
 | 1130 | 	error = vfs_readdir(file, compat_filldir64, &buf); | 
| Al Viro | 53c9c5c | 2008-08-24 07:29:52 -0400 | [diff] [blame] | 1131 | 	if (error >= 0) | 
 | 1132 | 		error = buf.error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | 	lastdirent = buf.previous; | 
 | 1134 | 	if (lastdirent) { | 
 | 1135 | 		typeof(lastdirent->d_off) d_off = file->f_pos; | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1136 | 		if (__put_user_unaligned(d_off, &lastdirent->d_off)) | 
| Al Viro | 53c9c5c | 2008-08-24 07:29:52 -0400 | [diff] [blame] | 1137 | 			error = -EFAULT; | 
 | 1138 | 		else | 
 | 1139 | 			error = count - buf.count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | 	fput(file); | 
 | 1142 | out: | 
 | 1143 | 	return error; | 
 | 1144 | } | 
 | 1145 | #endif /* ! __ARCH_OMIT_COMPAT_SYS_GETDENTS64 */ | 
 | 1146 |  | 
 | 1147 | static ssize_t compat_do_readv_writev(int type, struct file *file, | 
 | 1148 | 			       const struct compat_iovec __user *uvector, | 
 | 1149 | 			       unsigned long nr_segs, loff_t *pos) | 
 | 1150 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | 	compat_ssize_t tot_len; | 
 | 1152 | 	struct iovec iovstack[UIO_FASTIOV]; | 
| Jeff Moyer | b837336 | 2010-05-26 14:44:25 -0700 | [diff] [blame] | 1153 | 	struct iovec *iov; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | 	ssize_t ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | 	io_fn_t fn; | 
 | 1156 | 	iov_fn_t fnv; | 
 | 1157 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | 	ret = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | 	if (!file->f_op) | 
 | 1160 | 		goto out; | 
| Jeff Moyer | b837336 | 2010-05-26 14:44:25 -0700 | [diff] [blame] | 1161 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | 	ret = -EFAULT; | 
 | 1163 | 	if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector))) | 
 | 1164 | 		goto out; | 
 | 1165 |  | 
| Jeff Moyer | b837336 | 2010-05-26 14:44:25 -0700 | [diff] [blame] | 1166 | 	tot_len = compat_rw_copy_check_uvector(type, uvector, nr_segs, | 
 | 1167 | 					       UIO_FASTIOV, iovstack, &iov); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | 	if (tot_len == 0) { | 
 | 1169 | 		ret = 0; | 
 | 1170 | 		goto out; | 
 | 1171 | 	} | 
 | 1172 |  | 
 | 1173 | 	ret = rw_verify_area(type, file, pos, tot_len); | 
| Linus Torvalds | e28cc71 | 2006-01-04 16:20:40 -0800 | [diff] [blame] | 1174 | 	if (ret < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | 		goto out; | 
 | 1176 |  | 
 | 1177 | 	fnv = NULL; | 
 | 1178 | 	if (type == READ) { | 
 | 1179 | 		fn = file->f_op->read; | 
| Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 1180 | 		fnv = file->f_op->aio_read; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | 	} else { | 
 | 1182 | 		fn = (io_fn_t)file->f_op->write; | 
| Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 1183 | 		fnv = file->f_op->aio_write; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | 	} | 
 | 1185 |  | 
| Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 1186 | 	if (fnv) | 
 | 1187 | 		ret = do_sync_readv_writev(file, iov, nr_segs, tot_len, | 
 | 1188 | 						pos, fnv); | 
 | 1189 | 	else | 
 | 1190 | 		ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | out: | 
 | 1193 | 	if (iov != iovstack) | 
 | 1194 | 		kfree(iov); | 
| Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 1195 | 	if ((ret + (type == READ)) > 0) { | 
| Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 1196 | 		if (type == READ) | 
| Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 1197 | 			fsnotify_access(file); | 
| Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 1198 | 		else | 
| Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 1199 | 			fsnotify_modify(file); | 
| Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 1200 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | 	return ret; | 
 | 1202 | } | 
 | 1203 |  | 
| Gerd Hoffmann | dac1213 | 2009-04-02 16:59:20 -0700 | [diff] [blame] | 1204 | static size_t compat_readv(struct file *file, | 
 | 1205 | 			   const struct compat_iovec __user *vec, | 
 | 1206 | 			   unsigned long vlen, loff_t *pos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | 	ssize_t ret = -EBADF; | 
 | 1209 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | 	if (!(file->f_mode & FMODE_READ)) | 
 | 1211 | 		goto out; | 
 | 1212 |  | 
 | 1213 | 	ret = -EINVAL; | 
| Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 1214 | 	if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | 		goto out; | 
 | 1216 |  | 
| Gerd Hoffmann | dac1213 | 2009-04-02 16:59:20 -0700 | [diff] [blame] | 1217 | 	ret = compat_do_readv_writev(READ, file, vec, vlen, pos); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 |  | 
 | 1219 | out: | 
| Gerd Hoffmann | ca8a5bd | 2009-01-06 14:41:09 -0800 | [diff] [blame] | 1220 | 	if (ret > 0) | 
 | 1221 | 		add_rchar(current, ret); | 
 | 1222 | 	inc_syscr(current); | 
| Gerd Hoffmann | dac1213 | 2009-04-02 16:59:20 -0700 | [diff] [blame] | 1223 | 	return ret; | 
 | 1224 | } | 
 | 1225 |  | 
 | 1226 | asmlinkage ssize_t | 
 | 1227 | compat_sys_readv(unsigned long fd, const struct compat_iovec __user *vec, | 
 | 1228 | 		 unsigned long vlen) | 
 | 1229 | { | 
 | 1230 | 	struct file *file; | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1231 | 	int fput_needed; | 
| Gerd Hoffmann | dac1213 | 2009-04-02 16:59:20 -0700 | [diff] [blame] | 1232 | 	ssize_t ret; | 
 | 1233 |  | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1234 | 	file = fget_light(fd, &fput_needed); | 
| Gerd Hoffmann | dac1213 | 2009-04-02 16:59:20 -0700 | [diff] [blame] | 1235 | 	if (!file) | 
 | 1236 | 		return -EBADF; | 
 | 1237 | 	ret = compat_readv(file, vec, vlen, &file->f_pos); | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1238 | 	fput_light(file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | 	return ret; | 
 | 1240 | } | 
 | 1241 |  | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1242 | asmlinkage ssize_t | 
 | 1243 | compat_sys_preadv(unsigned long fd, const struct compat_iovec __user *vec, | 
| Linus Torvalds | 601cc11 | 2009-04-03 08:03:22 -0700 | [diff] [blame] | 1244 | 		  unsigned long vlen, u32 pos_low, u32 pos_high) | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1245 | { | 
 | 1246 | 	loff_t pos = ((loff_t)pos_high << 32) | pos_low; | 
 | 1247 | 	struct file *file; | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1248 | 	int fput_needed; | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1249 | 	ssize_t ret; | 
 | 1250 |  | 
 | 1251 | 	if (pos < 0) | 
 | 1252 | 		return -EINVAL; | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1253 | 	file = fget_light(fd, &fput_needed); | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1254 | 	if (!file) | 
 | 1255 | 		return -EBADF; | 
 | 1256 | 	ret = compat_readv(file, vec, vlen, &pos); | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1257 | 	fput_light(file, fput_needed); | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1258 | 	return ret; | 
 | 1259 | } | 
 | 1260 |  | 
| Gerd Hoffmann | 6949a63 | 2009-04-02 16:59:21 -0700 | [diff] [blame] | 1261 | static size_t compat_writev(struct file *file, | 
 | 1262 | 			    const struct compat_iovec __user *vec, | 
 | 1263 | 			    unsigned long vlen, loff_t *pos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | 	ssize_t ret = -EBADF; | 
 | 1266 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | 	if (!(file->f_mode & FMODE_WRITE)) | 
 | 1268 | 		goto out; | 
 | 1269 |  | 
 | 1270 | 	ret = -EINVAL; | 
| Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 1271 | 	if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | 		goto out; | 
 | 1273 |  | 
| Gerd Hoffmann | 6949a63 | 2009-04-02 16:59:21 -0700 | [diff] [blame] | 1274 | 	ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 |  | 
 | 1276 | out: | 
| Gerd Hoffmann | ca8a5bd | 2009-01-06 14:41:09 -0800 | [diff] [blame] | 1277 | 	if (ret > 0) | 
 | 1278 | 		add_wchar(current, ret); | 
 | 1279 | 	inc_syscw(current); | 
| Gerd Hoffmann | 6949a63 | 2009-04-02 16:59:21 -0700 | [diff] [blame] | 1280 | 	return ret; | 
 | 1281 | } | 
 | 1282 |  | 
 | 1283 | asmlinkage ssize_t | 
 | 1284 | compat_sys_writev(unsigned long fd, const struct compat_iovec __user *vec, | 
 | 1285 | 		  unsigned long vlen) | 
 | 1286 | { | 
 | 1287 | 	struct file *file; | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1288 | 	int fput_needed; | 
| Gerd Hoffmann | 6949a63 | 2009-04-02 16:59:21 -0700 | [diff] [blame] | 1289 | 	ssize_t ret; | 
 | 1290 |  | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1291 | 	file = fget_light(fd, &fput_needed); | 
| Gerd Hoffmann | 6949a63 | 2009-04-02 16:59:21 -0700 | [diff] [blame] | 1292 | 	if (!file) | 
 | 1293 | 		return -EBADF; | 
 | 1294 | 	ret = compat_writev(file, vec, vlen, &file->f_pos); | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1295 | 	fput_light(file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | 	return ret; | 
 | 1297 | } | 
 | 1298 |  | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1299 | asmlinkage ssize_t | 
 | 1300 | compat_sys_pwritev(unsigned long fd, const struct compat_iovec __user *vec, | 
| Linus Torvalds | 601cc11 | 2009-04-03 08:03:22 -0700 | [diff] [blame] | 1301 | 		   unsigned long vlen, u32 pos_low, u32 pos_high) | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1302 | { | 
 | 1303 | 	loff_t pos = ((loff_t)pos_high << 32) | pos_low; | 
 | 1304 | 	struct file *file; | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1305 | 	int fput_needed; | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1306 | 	ssize_t ret; | 
 | 1307 |  | 
 | 1308 | 	if (pos < 0) | 
 | 1309 | 		return -EINVAL; | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1310 | 	file = fget_light(fd, &fput_needed); | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1311 | 	if (!file) | 
 | 1312 | 		return -EBADF; | 
 | 1313 | 	ret = compat_writev(file, vec, vlen, &pos); | 
| Gerd Hoffmann | 10c7db2 | 2009-04-02 16:59:25 -0700 | [diff] [blame] | 1314 | 	fput_light(file, fput_needed); | 
| Gerd Hoffmann | f3554f4 | 2009-04-02 16:59:23 -0700 | [diff] [blame] | 1315 | 	return ret; | 
 | 1316 | } | 
 | 1317 |  | 
| Andi Kleen | d261020 | 2006-05-01 12:15:48 -0700 | [diff] [blame] | 1318 | asmlinkage long | 
 | 1319 | compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32, | 
 | 1320 | 		    unsigned int nr_segs, unsigned int flags) | 
 | 1321 | { | 
 | 1322 | 	unsigned i; | 
| Al Viro | 90cbad6 | 2006-10-10 22:44:17 +0100 | [diff] [blame] | 1323 | 	struct iovec __user *iov; | 
| Jens Axboe | 98232d5 | 2006-05-04 09:13:49 +0200 | [diff] [blame] | 1324 | 	if (nr_segs > UIO_MAXIOV) | 
| Andi Kleen | d261020 | 2006-05-01 12:15:48 -0700 | [diff] [blame] | 1325 | 		return -EINVAL; | 
 | 1326 | 	iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec)); | 
 | 1327 | 	for (i = 0; i < nr_segs; i++) { | 
 | 1328 | 		struct compat_iovec v; | 
 | 1329 | 		if (get_user(v.iov_base, &iov32[i].iov_base) || | 
 | 1330 | 		    get_user(v.iov_len, &iov32[i].iov_len) || | 
 | 1331 | 		    put_user(compat_ptr(v.iov_base), &iov[i].iov_base) || | 
 | 1332 | 		    put_user(v.iov_len, &iov[i].iov_len)) | 
 | 1333 | 			return -EFAULT; | 
 | 1334 | 	} | 
 | 1335 | 	return sys_vmsplice(fd, iov, nr_segs, flags); | 
 | 1336 | } | 
 | 1337 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | /* | 
| Miklos Szeredi | e922efc | 2005-09-06 15:18:25 -0700 | [diff] [blame] | 1339 |  * Exactly like fs/open.c:sys_open(), except that it doesn't set the | 
 | 1340 |  * O_LARGEFILE flag. | 
 | 1341 |  */ | 
 | 1342 | asmlinkage long | 
 | 1343 | compat_sys_open(const char __user *filename, int flags, int mode) | 
 | 1344 | { | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1345 | 	return do_sys_open(AT_FDCWD, filename, flags, mode); | 
 | 1346 | } | 
 | 1347 |  | 
 | 1348 | /* | 
 | 1349 |  * Exactly like fs/open.c:sys_openat(), except that it doesn't set the | 
 | 1350 |  * O_LARGEFILE flag. | 
 | 1351 |  */ | 
 | 1352 | asmlinkage long | 
| Stephen Rothwell | 9ad11ab | 2006-02-02 16:11:51 +1100 | [diff] [blame] | 1353 | compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, int mode) | 
| Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1354 | { | 
 | 1355 | 	return do_sys_open(dfd, filename, flags, mode); | 
| Miklos Szeredi | e922efc | 2005-09-06 15:18:25 -0700 | [diff] [blame] | 1356 | } | 
 | 1357 |  | 
 | 1358 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 |  * compat_count() counts the number of arguments/envelopes. It is basically | 
 | 1360 |  * a copy of count() from fs/exec.c, except that it works with 32 bit argv | 
 | 1361 |  * and envp pointers. | 
 | 1362 |  */ | 
 | 1363 | static int compat_count(compat_uptr_t __user *argv, int max) | 
 | 1364 | { | 
 | 1365 | 	int i = 0; | 
 | 1366 |  | 
 | 1367 | 	if (argv != NULL) { | 
 | 1368 | 		for (;;) { | 
 | 1369 | 			compat_uptr_t p; | 
 | 1370 |  | 
 | 1371 | 			if (get_user(p, argv)) | 
 | 1372 | 				return -EFAULT; | 
 | 1373 | 			if (!p) | 
 | 1374 | 				break; | 
 | 1375 | 			argv++; | 
| Jason Baron | 362e666 | 2008-10-15 22:01:52 -0700 | [diff] [blame] | 1376 | 			if (i++ >= max) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | 				return -E2BIG; | 
 | 1378 | 		} | 
 | 1379 | 	} | 
 | 1380 | 	return i; | 
 | 1381 | } | 
 | 1382 |  | 
 | 1383 | /* | 
 | 1384 |  * compat_copy_strings() is basically a copy of copy_strings() from fs/exec.c | 
 | 1385 |  * except that it works with 32 bit argv and envp pointers. | 
 | 1386 |  */ | 
 | 1387 | static int compat_copy_strings(int argc, compat_uptr_t __user *argv, | 
 | 1388 | 				struct linux_binprm *bprm) | 
 | 1389 | { | 
 | 1390 | 	struct page *kmapped_page = NULL; | 
 | 1391 | 	char *kaddr = NULL; | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1392 | 	unsigned long kpos = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | 	int ret; | 
 | 1394 |  | 
 | 1395 | 	while (argc-- > 0) { | 
 | 1396 | 		compat_uptr_t str; | 
 | 1397 | 		int len; | 
 | 1398 | 		unsigned long pos; | 
 | 1399 |  | 
 | 1400 | 		if (get_user(str, argv+argc) || | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1401 | 		    !(len = strnlen_user(compat_ptr(str), MAX_ARG_STRLEN))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | 			ret = -EFAULT; | 
 | 1403 | 			goto out; | 
 | 1404 | 		} | 
 | 1405 |  | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1406 | 		if (len > MAX_ARG_STRLEN) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | 			ret = -E2BIG; | 
 | 1408 | 			goto out; | 
 | 1409 | 		} | 
 | 1410 |  | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1411 | 		/* We're going to work our way backwords. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | 		pos = bprm->p; | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1413 | 		str += len; | 
 | 1414 | 		bprm->p -= len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 |  | 
 | 1416 | 		while (len > 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | 			int offset, bytes_to_copy; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 |  | 
 | 1419 | 			offset = pos % PAGE_SIZE; | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1420 | 			if (offset == 0) | 
 | 1421 | 				offset = PAGE_SIZE; | 
 | 1422 |  | 
 | 1423 | 			bytes_to_copy = offset; | 
 | 1424 | 			if (bytes_to_copy > len) | 
 | 1425 | 				bytes_to_copy = len; | 
 | 1426 |  | 
 | 1427 | 			offset -= bytes_to_copy; | 
 | 1428 | 			pos -= bytes_to_copy; | 
 | 1429 | 			str -= bytes_to_copy; | 
 | 1430 | 			len -= bytes_to_copy; | 
 | 1431 |  | 
 | 1432 | 			if (!kmapped_page || kpos != (pos & PAGE_MASK)) { | 
 | 1433 | 				struct page *page; | 
 | 1434 |  | 
 | 1435 | #ifdef CONFIG_STACK_GROWSUP | 
 | 1436 | 				ret = expand_stack_downwards(bprm->vma, pos); | 
 | 1437 | 				if (ret < 0) { | 
 | 1438 | 					/* We've exceed the stack rlimit. */ | 
 | 1439 | 					ret = -E2BIG; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | 					goto out; | 
 | 1441 | 				} | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1442 | #endif | 
 | 1443 | 				ret = get_user_pages(current, bprm->mm, pos, | 
 | 1444 | 						     1, 1, 1, &page, NULL); | 
 | 1445 | 				if (ret <= 0) { | 
 | 1446 | 					/* We've exceed the stack rlimit. */ | 
 | 1447 | 					ret = -E2BIG; | 
 | 1448 | 					goto out; | 
 | 1449 | 				} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 |  | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1451 | 				if (kmapped_page) { | 
 | 1452 | 					flush_kernel_dcache_page(kmapped_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | 					kunmap(kmapped_page); | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1454 | 					put_page(kmapped_page); | 
 | 1455 | 				} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | 				kmapped_page = page; | 
 | 1457 | 				kaddr = kmap(kmapped_page); | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1458 | 				kpos = pos & PAGE_MASK; | 
 | 1459 | 				flush_cache_page(bprm->vma, kpos, | 
 | 1460 | 						 page_to_pfn(kmapped_page)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | 			} | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1462 | 			if (copy_from_user(kaddr+offset, compat_ptr(str), | 
 | 1463 | 						bytes_to_copy)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | 				ret = -EFAULT; | 
 | 1465 | 				goto out; | 
 | 1466 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | 		} | 
 | 1468 | 	} | 
 | 1469 | 	ret = 0; | 
 | 1470 | out: | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1471 | 	if (kmapped_page) { | 
 | 1472 | 		flush_kernel_dcache_page(kmapped_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | 		kunmap(kmapped_page); | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1474 | 		put_page(kmapped_page); | 
 | 1475 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | 	return ret; | 
 | 1477 | } | 
 | 1478 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | /* | 
 | 1480 |  * compat_do_execve() is mostly a copy of do_execve(), with the exception | 
 | 1481 |  * that it processes 32 bit argv and envp pointers. | 
 | 1482 |  */ | 
 | 1483 | int compat_do_execve(char * filename, | 
 | 1484 | 	compat_uptr_t __user *argv, | 
 | 1485 | 	compat_uptr_t __user *envp, | 
 | 1486 | 	struct pt_regs * regs) | 
 | 1487 | { | 
 | 1488 | 	struct linux_binprm *bprm; | 
 | 1489 | 	struct file *file; | 
| Hugh Dickins | 53e9309 | 2009-03-28 23:16:03 +0000 | [diff] [blame] | 1490 | 	struct files_struct *displaced; | 
| Oleg Nesterov | 8c652f9 | 2009-04-24 01:01:56 +0200 | [diff] [blame] | 1491 | 	bool clear_in_exec; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | 	int retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 |  | 
| Hugh Dickins | 53e9309 | 2009-03-28 23:16:03 +0000 | [diff] [blame] | 1494 | 	retval = unshare_files(&displaced); | 
 | 1495 | 	if (retval) | 
 | 1496 | 		goto out_ret; | 
 | 1497 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | 	retval = -ENOMEM; | 
| Oliver Neukum | 11b0b5a | 2006-03-25 03:08:13 -0800 | [diff] [blame] | 1499 | 	bprm = kzalloc(sizeof(*bprm), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | 	if (!bprm) | 
| Hugh Dickins | 53e9309 | 2009-03-28 23:16:03 +0000 | [diff] [blame] | 1501 | 		goto out_files; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 |  | 
| Oleg Nesterov | a2a8474 | 2009-09-05 11:17:13 -0700 | [diff] [blame] | 1503 | 	retval = prepare_bprm_creds(bprm); | 
 | 1504 | 	if (retval) | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1505 | 		goto out_free; | 
| Al Viro | 498052b | 2009-03-30 07:20:30 -0400 | [diff] [blame] | 1506 |  | 
 | 1507 | 	retval = check_unsafe_exec(bprm); | 
| Oleg Nesterov | 8c652f9 | 2009-04-24 01:01:56 +0200 | [diff] [blame] | 1508 | 	if (retval < 0) | 
| Oleg Nesterov | a2a8474 | 2009-09-05 11:17:13 -0700 | [diff] [blame] | 1509 | 		goto out_free; | 
| Oleg Nesterov | 8c652f9 | 2009-04-24 01:01:56 +0200 | [diff] [blame] | 1510 | 	clear_in_exec = retval; | 
| Oleg Nesterov | a2a8474 | 2009-09-05 11:17:13 -0700 | [diff] [blame] | 1511 | 	current->in_execve = 1; | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1512 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | 	file = open_exec(filename); | 
 | 1514 | 	retval = PTR_ERR(file); | 
 | 1515 | 	if (IS_ERR(file)) | 
| Al Viro | 498052b | 2009-03-30 07:20:30 -0400 | [diff] [blame] | 1516 | 		goto out_unmark; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 |  | 
 | 1518 | 	sched_exec(); | 
 | 1519 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | 	bprm->file = file; | 
 | 1521 | 	bprm->filename = filename; | 
 | 1522 | 	bprm->interp = filename; | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1523 |  | 
 | 1524 | 	retval = bprm_mm_init(bprm); | 
 | 1525 | 	if (retval) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | 		goto out_file; | 
 | 1527 |  | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1528 | 	bprm->argc = compat_count(argv, MAX_ARG_STRINGS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | 	if ((retval = bprm->argc) < 0) | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1530 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 |  | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1532 | 	bprm->envc = compat_count(envp, MAX_ARG_STRINGS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | 	if ((retval = bprm->envc) < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | 		goto out; | 
 | 1535 |  | 
 | 1536 | 	retval = prepare_binprm(bprm); | 
 | 1537 | 	if (retval < 0) | 
 | 1538 | 		goto out; | 
 | 1539 |  | 
 | 1540 | 	retval = copy_strings_kernel(1, &bprm->filename, bprm); | 
 | 1541 | 	if (retval < 0) | 
 | 1542 | 		goto out; | 
 | 1543 |  | 
 | 1544 | 	bprm->exec = bprm->p; | 
 | 1545 | 	retval = compat_copy_strings(bprm->envc, envp, bprm); | 
 | 1546 | 	if (retval < 0) | 
 | 1547 | 		goto out; | 
 | 1548 |  | 
 | 1549 | 	retval = compat_copy_strings(bprm->argc, argv, bprm); | 
 | 1550 | 	if (retval < 0) | 
 | 1551 | 		goto out; | 
 | 1552 |  | 
 | 1553 | 	retval = search_binary_handler(bprm, regs); | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1554 | 	if (retval < 0) | 
 | 1555 | 		goto out; | 
 | 1556 |  | 
 | 1557 | 	/* execve succeeded */ | 
| Al Viro | 498052b | 2009-03-30 07:20:30 -0400 | [diff] [blame] | 1558 | 	current->fs->in_exec = 0; | 
| Kentaro Takeda | f9ce1f1 | 2009-02-05 17:18:11 +0900 | [diff] [blame] | 1559 | 	current->in_execve = 0; | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1560 | 	acct_update_integrals(current); | 
 | 1561 | 	free_bprm(bprm); | 
| Hugh Dickins | 53e9309 | 2009-03-28 23:16:03 +0000 | [diff] [blame] | 1562 | 	if (displaced) | 
 | 1563 | 		put_files_struct(displaced); | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1564 | 	return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 |  | 
 | 1566 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | 	if (bprm->mm) | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 1568 | 		mmput(bprm->mm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 |  | 
 | 1570 | out_file: | 
 | 1571 | 	if (bprm->file) { | 
 | 1572 | 		allow_write_access(bprm->file); | 
 | 1573 | 		fput(bprm->file); | 
 | 1574 | 	} | 
 | 1575 |  | 
| Al Viro | 498052b | 2009-03-30 07:20:30 -0400 | [diff] [blame] | 1576 | out_unmark: | 
| Oleg Nesterov | 8c652f9 | 2009-04-24 01:01:56 +0200 | [diff] [blame] | 1577 | 	if (clear_in_exec) | 
 | 1578 | 		current->fs->in_exec = 0; | 
| Kentaro Takeda | f9ce1f1 | 2009-02-05 17:18:11 +0900 | [diff] [blame] | 1579 | 	current->in_execve = 0; | 
| David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1580 |  | 
 | 1581 | out_free: | 
| Al Viro | 08a6fac | 2008-05-10 16:38:25 -0400 | [diff] [blame] | 1582 | 	free_bprm(bprm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 |  | 
| Hugh Dickins | 53e9309 | 2009-03-28 23:16:03 +0000 | [diff] [blame] | 1584 | out_files: | 
 | 1585 | 	if (displaced) | 
 | 1586 | 		reset_files_struct(displaced); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | out_ret: | 
 | 1588 | 	return retval; | 
 | 1589 | } | 
 | 1590 |  | 
 | 1591 | #define __COMPAT_NFDBITS       (8 * sizeof(compat_ulong_t)) | 
 | 1592 |  | 
| Thomas Gleixner | b773ad4 | 2008-08-31 08:16:57 -0700 | [diff] [blame] | 1593 | static int poll_select_copy_remaining(struct timespec *end_time, void __user *p, | 
 | 1594 | 				      int timeval, int ret) | 
 | 1595 | { | 
 | 1596 | 	struct timespec ts; | 
 | 1597 |  | 
 | 1598 | 	if (!p) | 
 | 1599 | 		return ret; | 
 | 1600 |  | 
 | 1601 | 	if (current->personality & STICKY_TIMEOUTS) | 
 | 1602 | 		goto sticky; | 
 | 1603 |  | 
 | 1604 | 	/* No update for zero timeout */ | 
 | 1605 | 	if (!end_time->tv_sec && !end_time->tv_nsec) | 
 | 1606 | 		return ret; | 
 | 1607 |  | 
 | 1608 | 	ktime_get_ts(&ts); | 
 | 1609 | 	ts = timespec_sub(*end_time, ts); | 
 | 1610 | 	if (ts.tv_sec < 0) | 
 | 1611 | 		ts.tv_sec = ts.tv_nsec = 0; | 
 | 1612 |  | 
 | 1613 | 	if (timeval) { | 
 | 1614 | 		struct compat_timeval rtv; | 
 | 1615 |  | 
 | 1616 | 		rtv.tv_sec = ts.tv_sec; | 
 | 1617 | 		rtv.tv_usec = ts.tv_nsec / NSEC_PER_USEC; | 
 | 1618 |  | 
 | 1619 | 		if (!copy_to_user(p, &rtv, sizeof(rtv))) | 
 | 1620 | 			return ret; | 
 | 1621 | 	} else { | 
 | 1622 | 		struct compat_timespec rts; | 
 | 1623 |  | 
 | 1624 | 		rts.tv_sec = ts.tv_sec; | 
 | 1625 | 		rts.tv_nsec = ts.tv_nsec; | 
 | 1626 |  | 
 | 1627 | 		if (!copy_to_user(p, &rts, sizeof(rts))) | 
 | 1628 | 			return ret; | 
 | 1629 | 	} | 
 | 1630 | 	/* | 
 | 1631 | 	 * If an application puts its timeval in read-only memory, we | 
 | 1632 | 	 * don't want the Linux-specific update to the timeval to | 
 | 1633 | 	 * cause a fault after the select has completed | 
 | 1634 | 	 * successfully. However, because we're not updating the | 
 | 1635 | 	 * timeval, we can't restart the system call. | 
 | 1636 | 	 */ | 
 | 1637 |  | 
 | 1638 | sticky: | 
 | 1639 | 	if (ret == -ERESTARTNOHAND) | 
 | 1640 | 		ret = -EINTR; | 
 | 1641 | 	return ret; | 
 | 1642 | } | 
 | 1643 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | /* | 
 | 1645 |  * Ooo, nasty.  We need here to frob 32-bit unsigned longs to | 
 | 1646 |  * 64-bit unsigned longs. | 
 | 1647 |  */ | 
| Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 1648 | static | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | int compat_get_fd_set(unsigned long nr, compat_ulong_t __user *ufdset, | 
 | 1650 | 			unsigned long *fdset) | 
 | 1651 | { | 
| Milind Arun Choudhary | 022a169 | 2007-05-08 00:29:02 -0700 | [diff] [blame] | 1652 | 	nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | 	if (ufdset) { | 
 | 1654 | 		unsigned long odd; | 
 | 1655 |  | 
 | 1656 | 		if (!access_ok(VERIFY_WRITE, ufdset, nr*sizeof(compat_ulong_t))) | 
 | 1657 | 			return -EFAULT; | 
 | 1658 |  | 
 | 1659 | 		odd = nr & 1UL; | 
 | 1660 | 		nr &= ~1UL; | 
 | 1661 | 		while (nr) { | 
 | 1662 | 			unsigned long h, l; | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1663 | 			if (__get_user(l, ufdset) || __get_user(h, ufdset+1)) | 
 | 1664 | 				return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | 			ufdset += 2; | 
 | 1666 | 			*fdset++ = h << 32 | l; | 
 | 1667 | 			nr -= 2; | 
 | 1668 | 		} | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1669 | 		if (odd && __get_user(*fdset, ufdset)) | 
 | 1670 | 			return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | 	} else { | 
 | 1672 | 		/* Tricky, must clear full unsigned long in the | 
 | 1673 | 		 * kernel fdset at the end, this makes sure that | 
 | 1674 | 		 * actually happens. | 
 | 1675 | 		 */ | 
 | 1676 | 		memset(fdset, 0, ((nr + 1) & ~1)*sizeof(compat_ulong_t)); | 
 | 1677 | 	} | 
 | 1678 | 	return 0; | 
 | 1679 | } | 
 | 1680 |  | 
| Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 1681 | static | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1682 | int compat_set_fd_set(unsigned long nr, compat_ulong_t __user *ufdset, | 
 | 1683 | 		      unsigned long *fdset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | { | 
 | 1685 | 	unsigned long odd; | 
| Milind Arun Choudhary | 022a169 | 2007-05-08 00:29:02 -0700 | [diff] [blame] | 1686 | 	nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 |  | 
 | 1688 | 	if (!ufdset) | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1689 | 		return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 |  | 
 | 1691 | 	odd = nr & 1UL; | 
 | 1692 | 	nr &= ~1UL; | 
 | 1693 | 	while (nr) { | 
 | 1694 | 		unsigned long h, l; | 
 | 1695 | 		l = *fdset++; | 
 | 1696 | 		h = l >> 32; | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1697 | 		if (__put_user(l, ufdset) || __put_user(h, ufdset+1)) | 
 | 1698 | 			return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | 		ufdset += 2; | 
 | 1700 | 		nr -= 2; | 
 | 1701 | 	} | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1702 | 	if (odd && __put_user(*fdset, ufdset)) | 
 | 1703 | 		return -EFAULT; | 
 | 1704 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | } | 
 | 1706 |  | 
 | 1707 |  | 
 | 1708 | /* | 
 | 1709 |  * This is a virtual copy of sys_select from fs/select.c and probably | 
 | 1710 |  * should be compared to it from time to time | 
 | 1711 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 |  | 
 | 1713 | /* | 
 | 1714 |  * We can actually return ERESTARTSYS instead of EINTR, but I'd | 
 | 1715 |  * like to be certain this leads to no problems. So I return | 
 | 1716 |  * EINTR just for safety. | 
 | 1717 |  * | 
 | 1718 |  * Update: ERESTARTSYS breaks at least the xview clock binary, so | 
 | 1719 |  * I'm trying ERESTARTNOHAND which restart only when you want to. | 
 | 1720 |  */ | 
 | 1721 | #define MAX_SELECT_SECONDS \ | 
 | 1722 | 	((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1) | 
 | 1723 |  | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1724 | int compat_core_sys_select(int n, compat_ulong_t __user *inp, | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1725 | 	compat_ulong_t __user *outp, compat_ulong_t __user *exp, | 
 | 1726 | 	struct timespec *end_time) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | { | 
 | 1728 | 	fd_set_bits fds; | 
| Badari Pulavarty | 6087b2d | 2007-05-23 13:57:45 -0700 | [diff] [blame] | 1729 | 	void *bits; | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 1730 | 	int size, max_fds, ret = -EINVAL; | 
| Linus Torvalds | a4531ed | 2005-09-09 15:10:52 -0700 | [diff] [blame] | 1731 | 	struct fdtable *fdt; | 
| Badari Pulavarty | 6087b2d | 2007-05-23 13:57:45 -0700 | [diff] [blame] | 1732 | 	long stack_fds[SELECT_STACK_ALLOC/sizeof(long)]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | 	if (n < 0) | 
 | 1735 | 		goto out_nofds; | 
 | 1736 |  | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 1737 | 	/* max_fds can increase, so grab it once to avoid race */ | 
| Linus Torvalds | ac5b8b6 | 2005-09-09 15:42:34 -0700 | [diff] [blame] | 1738 | 	rcu_read_lock(); | 
| Linus Torvalds | a4531ed | 2005-09-09 15:10:52 -0700 | [diff] [blame] | 1739 | 	fdt = files_fdtable(current->files); | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 1740 | 	max_fds = fdt->max_fds; | 
| Linus Torvalds | ac5b8b6 | 2005-09-09 15:42:34 -0700 | [diff] [blame] | 1741 | 	rcu_read_unlock(); | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 1742 | 	if (n > max_fds) | 
 | 1743 | 		n = max_fds; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 |  | 
 | 1745 | 	/* | 
 | 1746 | 	 * We need 6 bitmaps (in/out/ex for both incoming and outgoing), | 
 | 1747 | 	 * since we used fdset we need to allocate memory in units of | 
 | 1748 | 	 * long-words. | 
 | 1749 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | 	size = FDS_BYTES(n); | 
| Badari Pulavarty | 6087b2d | 2007-05-23 13:57:45 -0700 | [diff] [blame] | 1751 | 	bits = stack_fds; | 
 | 1752 | 	if (size > sizeof(stack_fds) / 6) { | 
 | 1753 | 		bits = kmalloc(6 * size, GFP_KERNEL); | 
 | 1754 | 		ret = -ENOMEM; | 
 | 1755 | 		if (!bits) | 
 | 1756 | 			goto out_nofds; | 
 | 1757 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | 	fds.in      = (unsigned long *)  bits; | 
 | 1759 | 	fds.out     = (unsigned long *) (bits +   size); | 
 | 1760 | 	fds.ex      = (unsigned long *) (bits + 2*size); | 
 | 1761 | 	fds.res_in  = (unsigned long *) (bits + 3*size); | 
 | 1762 | 	fds.res_out = (unsigned long *) (bits + 4*size); | 
 | 1763 | 	fds.res_ex  = (unsigned long *) (bits + 5*size); | 
 | 1764 |  | 
 | 1765 | 	if ((ret = compat_get_fd_set(n, inp, fds.in)) || | 
 | 1766 | 	    (ret = compat_get_fd_set(n, outp, fds.out)) || | 
 | 1767 | 	    (ret = compat_get_fd_set(n, exp, fds.ex))) | 
 | 1768 | 		goto out; | 
 | 1769 | 	zero_fd_set(n, fds.res_in); | 
 | 1770 | 	zero_fd_set(n, fds.res_out); | 
 | 1771 | 	zero_fd_set(n, fds.res_ex); | 
 | 1772 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1773 | 	ret = do_select(n, &fds, end_time); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 |  | 
 | 1775 | 	if (ret < 0) | 
 | 1776 | 		goto out; | 
 | 1777 | 	if (!ret) { | 
 | 1778 | 		ret = -ERESTARTNOHAND; | 
 | 1779 | 		if (signal_pending(current)) | 
 | 1780 | 			goto out; | 
 | 1781 | 		ret = 0; | 
 | 1782 | 	} | 
 | 1783 |  | 
| Heiko Carstens | 7116e99 | 2006-12-06 20:36:36 -0800 | [diff] [blame] | 1784 | 	if (compat_set_fd_set(n, inp, fds.res_in) || | 
 | 1785 | 	    compat_set_fd_set(n, outp, fds.res_out) || | 
 | 1786 | 	    compat_set_fd_set(n, exp, fds.res_ex)) | 
 | 1787 | 		ret = -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | out: | 
| Badari Pulavarty | 6087b2d | 2007-05-23 13:57:45 -0700 | [diff] [blame] | 1789 | 	if (bits != stack_fds) | 
 | 1790 | 		kfree(bits); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | out_nofds: | 
 | 1792 | 	return ret; | 
 | 1793 | } | 
 | 1794 |  | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1795 | asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp, | 
 | 1796 | 	compat_ulong_t __user *outp, compat_ulong_t __user *exp, | 
 | 1797 | 	struct compat_timeval __user *tvp) | 
 | 1798 | { | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1799 | 	struct timespec end_time, *to = NULL; | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1800 | 	struct compat_timeval tv; | 
 | 1801 | 	int ret; | 
 | 1802 |  | 
 | 1803 | 	if (tvp) { | 
 | 1804 | 		if (copy_from_user(&tv, tvp, sizeof(tv))) | 
 | 1805 | 			return -EFAULT; | 
 | 1806 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1807 | 		to = &end_time; | 
| Arjan van de Ven | 4d36a9e | 2008-10-25 12:41:41 -0700 | [diff] [blame] | 1808 | 		if (poll_select_set_timeout(to, | 
 | 1809 | 				tv.tv_sec + (tv.tv_usec / USEC_PER_SEC), | 
 | 1810 | 				(tv.tv_usec % USEC_PER_SEC) * NSEC_PER_USEC)) | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1811 | 			return -EINVAL; | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1812 | 	} | 
 | 1813 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1814 | 	ret = compat_core_sys_select(n, inp, outp, exp, to); | 
 | 1815 | 	ret = poll_select_copy_remaining(&end_time, tvp, 1, ret); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1816 |  | 
 | 1817 | 	return ret; | 
 | 1818 | } | 
 | 1819 |  | 
| Christoph Hellwig | 5d0e528 | 2010-03-10 15:21:13 -0800 | [diff] [blame] | 1820 | struct compat_sel_arg_struct { | 
 | 1821 | 	compat_ulong_t n; | 
 | 1822 | 	compat_uptr_t inp; | 
 | 1823 | 	compat_uptr_t outp; | 
 | 1824 | 	compat_uptr_t exp; | 
 | 1825 | 	compat_uptr_t tvp; | 
 | 1826 | }; | 
 | 1827 |  | 
 | 1828 | asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg) | 
 | 1829 | { | 
 | 1830 | 	struct compat_sel_arg_struct a; | 
 | 1831 |  | 
 | 1832 | 	if (copy_from_user(&a, arg, sizeof(a))) | 
 | 1833 | 		return -EFAULT; | 
 | 1834 | 	return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp), | 
 | 1835 | 				 compat_ptr(a.exp), compat_ptr(a.tvp)); | 
 | 1836 | } | 
 | 1837 |  | 
| Roland McGrath | f3de272 | 2008-04-30 00:53:09 -0700 | [diff] [blame] | 1838 | #ifdef HAVE_SET_RESTORE_SIGMASK | 
| Heiko Carstens | c9da9f2 | 2009-01-14 14:13:57 +0100 | [diff] [blame] | 1839 | static long do_compat_pselect(int n, compat_ulong_t __user *inp, | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1840 | 	compat_ulong_t __user *outp, compat_ulong_t __user *exp, | 
 | 1841 | 	struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask, | 
 | 1842 | 	compat_size_t sigsetsize) | 
 | 1843 | { | 
 | 1844 | 	compat_sigset_t ss32; | 
 | 1845 | 	sigset_t ksigmask, sigsaved; | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1846 | 	struct compat_timespec ts; | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1847 | 	struct timespec end_time, *to = NULL; | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1848 | 	int ret; | 
 | 1849 |  | 
 | 1850 | 	if (tsp) { | 
 | 1851 | 		if (copy_from_user(&ts, tsp, sizeof(ts))) | 
 | 1852 | 			return -EFAULT; | 
 | 1853 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1854 | 		to = &end_time; | 
 | 1855 | 		if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec)) | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1856 | 			return -EINVAL; | 
 | 1857 | 	} | 
 | 1858 |  | 
 | 1859 | 	if (sigmask) { | 
 | 1860 | 		if (sigsetsize != sizeof(compat_sigset_t)) | 
 | 1861 | 			return -EINVAL; | 
 | 1862 | 		if (copy_from_user(&ss32, sigmask, sizeof(ss32))) | 
 | 1863 | 			return -EFAULT; | 
 | 1864 | 		sigset_from_compat(&ksigmask, &ss32); | 
 | 1865 |  | 
 | 1866 | 		sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP)); | 
 | 1867 | 		sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved); | 
 | 1868 | 	} | 
 | 1869 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1870 | 	ret = compat_core_sys_select(n, inp, outp, exp, to); | 
 | 1871 | 	ret = poll_select_copy_remaining(&end_time, tsp, 0, ret); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1872 |  | 
 | 1873 | 	if (ret == -ERESTARTNOHAND) { | 
 | 1874 | 		/* | 
 | 1875 | 		 * Don't restore the signal mask yet. Let do_signal() deliver | 
 | 1876 | 		 * the signal on the way back to userspace, before the signal | 
 | 1877 | 		 * mask is restored. | 
 | 1878 | 		 */ | 
 | 1879 | 		if (sigmask) { | 
 | 1880 | 			memcpy(¤t->saved_sigmask, &sigsaved, | 
 | 1881 | 					sizeof(sigsaved)); | 
| Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 1882 | 			set_restore_sigmask(); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1883 | 		} | 
 | 1884 | 	} else if (sigmask) | 
 | 1885 | 		sigprocmask(SIG_SETMASK, &sigsaved, NULL); | 
 | 1886 |  | 
 | 1887 | 	return ret; | 
 | 1888 | } | 
 | 1889 |  | 
 | 1890 | asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp, | 
 | 1891 | 	compat_ulong_t __user *outp, compat_ulong_t __user *exp, | 
 | 1892 | 	struct compat_timespec __user *tsp, void __user *sig) | 
 | 1893 | { | 
 | 1894 | 	compat_size_t sigsetsize = 0; | 
 | 1895 | 	compat_uptr_t up = 0; | 
 | 1896 |  | 
 | 1897 | 	if (sig) { | 
 | 1898 | 		if (!access_ok(VERIFY_READ, sig, | 
 | 1899 | 				sizeof(compat_uptr_t)+sizeof(compat_size_t)) || | 
 | 1900 | 		    	__get_user(up, (compat_uptr_t __user *)sig) || | 
 | 1901 | 		    	__get_user(sigsetsize, | 
 | 1902 | 				(compat_size_t __user *)(sig+sizeof(up)))) | 
 | 1903 | 			return -EFAULT; | 
 | 1904 | 	} | 
| Heiko Carstens | c9da9f2 | 2009-01-14 14:13:57 +0100 | [diff] [blame] | 1905 | 	return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up), | 
 | 1906 | 				 sigsetsize); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1907 | } | 
 | 1908 |  | 
 | 1909 | asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds, | 
 | 1910 | 	unsigned int nfds, struct compat_timespec __user *tsp, | 
 | 1911 | 	const compat_sigset_t __user *sigmask, compat_size_t sigsetsize) | 
 | 1912 | { | 
 | 1913 | 	compat_sigset_t ss32; | 
 | 1914 | 	sigset_t ksigmask, sigsaved; | 
 | 1915 | 	struct compat_timespec ts; | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1916 | 	struct timespec end_time, *to = NULL; | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1917 | 	int ret; | 
 | 1918 |  | 
 | 1919 | 	if (tsp) { | 
 | 1920 | 		if (copy_from_user(&ts, tsp, sizeof(ts))) | 
 | 1921 | 			return -EFAULT; | 
 | 1922 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1923 | 		to = &end_time; | 
 | 1924 | 		if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec)) | 
 | 1925 | 			return -EINVAL; | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1926 | 	} | 
 | 1927 |  | 
 | 1928 | 	if (sigmask) { | 
| Alexey Dobriyan | 3835a9b | 2006-05-15 09:44:27 -0700 | [diff] [blame] | 1929 | 		if (sigsetsize != sizeof(compat_sigset_t)) | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1930 | 			return -EINVAL; | 
 | 1931 | 		if (copy_from_user(&ss32, sigmask, sizeof(ss32))) | 
 | 1932 | 			return -EFAULT; | 
 | 1933 | 		sigset_from_compat(&ksigmask, &ss32); | 
 | 1934 |  | 
 | 1935 | 		sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP)); | 
 | 1936 | 		sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved); | 
 | 1937 | 	} | 
 | 1938 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1939 | 	ret = do_sys_poll(ufds, nfds, to); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1940 |  | 
 | 1941 | 	/* We can restart this syscall, usually */ | 
 | 1942 | 	if (ret == -EINTR) { | 
 | 1943 | 		/* | 
 | 1944 | 		 * Don't restore the signal mask yet. Let do_signal() deliver | 
 | 1945 | 		 * the signal on the way back to userspace, before the signal | 
 | 1946 | 		 * mask is restored. | 
 | 1947 | 		 */ | 
 | 1948 | 		if (sigmask) { | 
 | 1949 | 			memcpy(¤t->saved_sigmask, &sigsaved, | 
 | 1950 | 				sizeof(sigsaved)); | 
| Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 1951 | 			set_restore_sigmask(); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1952 | 		} | 
 | 1953 | 		ret = -ERESTARTNOHAND; | 
 | 1954 | 	} else if (sigmask) | 
 | 1955 | 		sigprocmask(SIG_SETMASK, &sigsaved, NULL); | 
 | 1956 |  | 
| Arjan van de Ven | 8ff3e8e | 2008-08-31 08:26:40 -0700 | [diff] [blame] | 1957 | 	ret = poll_select_copy_remaining(&end_time, tsp, 0, ret); | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1958 |  | 
 | 1959 | 	return ret; | 
 | 1960 | } | 
| Roland McGrath | f3de272 | 2008-04-30 00:53:09 -0700 | [diff] [blame] | 1961 | #endif /* HAVE_SET_RESTORE_SIGMASK */ | 
| David Woodhouse | 9f72949 | 2006-01-18 17:44:05 -0800 | [diff] [blame] | 1962 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | #if defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE) | 
 | 1964 | /* Stuff for NFS server syscalls... */ | 
 | 1965 | struct compat_nfsctl_svc { | 
 | 1966 | 	u16			svc32_port; | 
 | 1967 | 	s32			svc32_nthreads; | 
 | 1968 | }; | 
 | 1969 |  | 
 | 1970 | struct compat_nfsctl_client { | 
 | 1971 | 	s8			cl32_ident[NFSCLNT_IDMAX+1]; | 
 | 1972 | 	s32			cl32_naddr; | 
 | 1973 | 	struct in_addr		cl32_addrlist[NFSCLNT_ADDRMAX]; | 
 | 1974 | 	s32			cl32_fhkeytype; | 
 | 1975 | 	s32			cl32_fhkeylen; | 
 | 1976 | 	u8			cl32_fhkey[NFSCLNT_KEYMAX]; | 
 | 1977 | }; | 
 | 1978 |  | 
 | 1979 | struct compat_nfsctl_export { | 
 | 1980 | 	char		ex32_client[NFSCLNT_IDMAX+1]; | 
 | 1981 | 	char		ex32_path[NFS_MAXPATHLEN+1]; | 
 | 1982 | 	compat_dev_t	ex32_dev; | 
 | 1983 | 	compat_ino_t	ex32_ino; | 
 | 1984 | 	compat_int_t	ex32_flags; | 
| Stephen Rothwell | 202e597 | 2005-09-06 15:16:40 -0700 | [diff] [blame] | 1985 | 	__compat_uid_t	ex32_anon_uid; | 
 | 1986 | 	__compat_gid_t	ex32_anon_gid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | }; | 
 | 1988 |  | 
 | 1989 | struct compat_nfsctl_fdparm { | 
 | 1990 | 	struct sockaddr		gd32_addr; | 
 | 1991 | 	s8			gd32_path[NFS_MAXPATHLEN+1]; | 
 | 1992 | 	compat_int_t		gd32_version; | 
 | 1993 | }; | 
 | 1994 |  | 
 | 1995 | struct compat_nfsctl_fsparm { | 
 | 1996 | 	struct sockaddr		gd32_addr; | 
 | 1997 | 	s8			gd32_path[NFS_MAXPATHLEN+1]; | 
 | 1998 | 	compat_int_t		gd32_maxlen; | 
 | 1999 | }; | 
 | 2000 |  | 
 | 2001 | struct compat_nfsctl_arg { | 
 | 2002 | 	compat_int_t		ca32_version;	/* safeguard */ | 
 | 2003 | 	union { | 
 | 2004 | 		struct compat_nfsctl_svc	u32_svc; | 
 | 2005 | 		struct compat_nfsctl_client	u32_client; | 
 | 2006 | 		struct compat_nfsctl_export	u32_export; | 
 | 2007 | 		struct compat_nfsctl_fdparm	u32_getfd; | 
 | 2008 | 		struct compat_nfsctl_fsparm	u32_getfs; | 
 | 2009 | 	} u; | 
 | 2010 | #define ca32_svc	u.u32_svc | 
 | 2011 | #define ca32_client	u.u32_client | 
 | 2012 | #define ca32_export	u.u32_export | 
 | 2013 | #define ca32_getfd	u.u32_getfd | 
 | 2014 | #define ca32_getfs	u.u32_getfs | 
 | 2015 | }; | 
 | 2016 |  | 
 | 2017 | union compat_nfsctl_res { | 
 | 2018 | 	__u8			cr32_getfh[NFS_FHSIZE]; | 
 | 2019 | 	struct knfsd_fh		cr32_getfs; | 
 | 2020 | }; | 
 | 2021 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2022 | static int compat_nfs_svc_trans(struct nfsctl_arg *karg, | 
 | 2023 | 				struct compat_nfsctl_arg __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | { | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2025 | 	if (!access_ok(VERIFY_READ, &arg->ca32_svc, sizeof(arg->ca32_svc)) || | 
 | 2026 | 		get_user(karg->ca_version, &arg->ca32_version) || | 
 | 2027 | 		__get_user(karg->ca_svc.svc_port, &arg->ca32_svc.svc32_port) || | 
 | 2028 | 		__get_user(karg->ca_svc.svc_nthreads, | 
 | 2029 | 				&arg->ca32_svc.svc32_nthreads)) | 
 | 2030 | 		return -EFAULT; | 
 | 2031 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | } | 
 | 2033 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2034 | static int compat_nfs_clnt_trans(struct nfsctl_arg *karg, | 
 | 2035 | 				struct compat_nfsctl_arg __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | { | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2037 | 	if (!access_ok(VERIFY_READ, &arg->ca32_client, | 
 | 2038 | 			sizeof(arg->ca32_client)) || | 
 | 2039 | 		get_user(karg->ca_version, &arg->ca32_version) || | 
 | 2040 | 		__copy_from_user(&karg->ca_client.cl_ident[0], | 
 | 2041 | 				&arg->ca32_client.cl32_ident[0], | 
 | 2042 | 				NFSCLNT_IDMAX) || | 
 | 2043 | 		__get_user(karg->ca_client.cl_naddr, | 
 | 2044 | 				&arg->ca32_client.cl32_naddr) || | 
 | 2045 | 		__copy_from_user(&karg->ca_client.cl_addrlist[0], | 
 | 2046 | 				&arg->ca32_client.cl32_addrlist[0], | 
 | 2047 | 				(sizeof(struct in_addr) * NFSCLNT_ADDRMAX)) || | 
 | 2048 | 		__get_user(karg->ca_client.cl_fhkeytype, | 
 | 2049 | 				&arg->ca32_client.cl32_fhkeytype) || | 
 | 2050 | 		__get_user(karg->ca_client.cl_fhkeylen, | 
 | 2051 | 				&arg->ca32_client.cl32_fhkeylen) || | 
 | 2052 | 		__copy_from_user(&karg->ca_client.cl_fhkey[0], | 
 | 2053 | 				&arg->ca32_client.cl32_fhkey[0], | 
 | 2054 | 				NFSCLNT_KEYMAX)) | 
 | 2055 | 		return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2057 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | } | 
 | 2059 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2060 | static int compat_nfs_exp_trans(struct nfsctl_arg *karg, | 
 | 2061 | 				struct compat_nfsctl_arg __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | { | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2063 | 	if (!access_ok(VERIFY_READ, &arg->ca32_export, | 
 | 2064 | 				sizeof(arg->ca32_export)) || | 
 | 2065 | 		get_user(karg->ca_version, &arg->ca32_version) || | 
 | 2066 | 		__copy_from_user(&karg->ca_export.ex_client[0], | 
 | 2067 | 				&arg->ca32_export.ex32_client[0], | 
 | 2068 | 				NFSCLNT_IDMAX) || | 
 | 2069 | 		__copy_from_user(&karg->ca_export.ex_path[0], | 
 | 2070 | 				&arg->ca32_export.ex32_path[0], | 
 | 2071 | 				NFS_MAXPATHLEN) || | 
 | 2072 | 		__get_user(karg->ca_export.ex_dev, | 
 | 2073 | 				&arg->ca32_export.ex32_dev) || | 
 | 2074 | 		__get_user(karg->ca_export.ex_ino, | 
 | 2075 | 				&arg->ca32_export.ex32_ino) || | 
 | 2076 | 		__get_user(karg->ca_export.ex_flags, | 
 | 2077 | 				&arg->ca32_export.ex32_flags) || | 
 | 2078 | 		__get_user(karg->ca_export.ex_anon_uid, | 
 | 2079 | 				&arg->ca32_export.ex32_anon_uid) || | 
 | 2080 | 		__get_user(karg->ca_export.ex_anon_gid, | 
 | 2081 | 				&arg->ca32_export.ex32_anon_gid)) | 
 | 2082 | 		return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | 	SET_UID(karg->ca_export.ex_anon_uid, karg->ca_export.ex_anon_uid); | 
 | 2084 | 	SET_GID(karg->ca_export.ex_anon_gid, karg->ca_export.ex_anon_gid); | 
 | 2085 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2086 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | } | 
 | 2088 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2089 | static int compat_nfs_getfd_trans(struct nfsctl_arg *karg, | 
 | 2090 | 				struct compat_nfsctl_arg __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | { | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2092 | 	if (!access_ok(VERIFY_READ, &arg->ca32_getfd, | 
 | 2093 | 			sizeof(arg->ca32_getfd)) || | 
 | 2094 | 		get_user(karg->ca_version, &arg->ca32_version) || | 
 | 2095 | 		__copy_from_user(&karg->ca_getfd.gd_addr, | 
 | 2096 | 				&arg->ca32_getfd.gd32_addr, | 
 | 2097 | 				(sizeof(struct sockaddr))) || | 
 | 2098 | 		__copy_from_user(&karg->ca_getfd.gd_path, | 
 | 2099 | 				&arg->ca32_getfd.gd32_path, | 
 | 2100 | 				(NFS_MAXPATHLEN+1)) || | 
 | 2101 | 		__get_user(karg->ca_getfd.gd_version, | 
 | 2102 | 				&arg->ca32_getfd.gd32_version)) | 
 | 2103 | 		return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2105 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | } | 
 | 2107 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2108 | static int compat_nfs_getfs_trans(struct nfsctl_arg *karg, | 
 | 2109 | 				struct compat_nfsctl_arg __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | { | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2111 | 	if (!access_ok(VERIFY_READ,&arg->ca32_getfs,sizeof(arg->ca32_getfs)) || | 
 | 2112 | 		get_user(karg->ca_version, &arg->ca32_version) || | 
 | 2113 | 		__copy_from_user(&karg->ca_getfs.gd_addr, | 
 | 2114 | 				&arg->ca32_getfs.gd32_addr, | 
 | 2115 | 				(sizeof(struct sockaddr))) || | 
 | 2116 | 		__copy_from_user(&karg->ca_getfs.gd_path, | 
 | 2117 | 				&arg->ca32_getfs.gd32_path, | 
 | 2118 | 				(NFS_MAXPATHLEN+1)) || | 
 | 2119 | 		__get_user(karg->ca_getfs.gd_maxlen, | 
 | 2120 | 				&arg->ca32_getfs.gd32_maxlen)) | 
 | 2121 | 		return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2123 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | } | 
 | 2125 |  | 
 | 2126 | /* This really doesn't need translations, we are only passing | 
 | 2127 |  * back a union which contains opaque nfs file handle data. | 
 | 2128 |  */ | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2129 | static int compat_nfs_getfh_res_trans(union nfsctl_res *kres, | 
 | 2130 | 				union compat_nfsctl_res __user *res) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | { | 
 | 2132 | 	int err; | 
 | 2133 |  | 
 | 2134 | 	err = copy_to_user(res, kres, sizeof(*res)); | 
 | 2135 |  | 
 | 2136 | 	return (err) ? -EFAULT : 0; | 
 | 2137 | } | 
 | 2138 |  | 
| Lin Feng Shen | d64b1c8 | 2006-05-20 14:59:49 -0700 | [diff] [blame] | 2139 | asmlinkage long compat_sys_nfsservctl(int cmd, | 
 | 2140 | 				struct compat_nfsctl_arg __user *arg, | 
 | 2141 | 				union compat_nfsctl_res __user *res) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | { | 
 | 2143 | 	struct nfsctl_arg *karg; | 
 | 2144 | 	union nfsctl_res *kres; | 
 | 2145 | 	mm_segment_t oldfs; | 
 | 2146 | 	int err; | 
 | 2147 |  | 
 | 2148 | 	karg = kmalloc(sizeof(*karg), GFP_USER); | 
 | 2149 | 	kres = kmalloc(sizeof(*kres), GFP_USER); | 
 | 2150 | 	if(!karg || !kres) { | 
 | 2151 | 		err = -ENOMEM; | 
 | 2152 | 		goto done; | 
 | 2153 | 	} | 
 | 2154 |  | 
 | 2155 | 	switch(cmd) { | 
 | 2156 | 	case NFSCTL_SVC: | 
 | 2157 | 		err = compat_nfs_svc_trans(karg, arg); | 
 | 2158 | 		break; | 
 | 2159 |  | 
 | 2160 | 	case NFSCTL_ADDCLIENT: | 
 | 2161 | 		err = compat_nfs_clnt_trans(karg, arg); | 
 | 2162 | 		break; | 
 | 2163 |  | 
 | 2164 | 	case NFSCTL_DELCLIENT: | 
 | 2165 | 		err = compat_nfs_clnt_trans(karg, arg); | 
 | 2166 | 		break; | 
 | 2167 |  | 
 | 2168 | 	case NFSCTL_EXPORT: | 
 | 2169 | 	case NFSCTL_UNEXPORT: | 
 | 2170 | 		err = compat_nfs_exp_trans(karg, arg); | 
 | 2171 | 		break; | 
 | 2172 |  | 
 | 2173 | 	case NFSCTL_GETFD: | 
 | 2174 | 		err = compat_nfs_getfd_trans(karg, arg); | 
 | 2175 | 		break; | 
 | 2176 |  | 
 | 2177 | 	case NFSCTL_GETFS: | 
 | 2178 | 		err = compat_nfs_getfs_trans(karg, arg); | 
 | 2179 | 		break; | 
 | 2180 |  | 
 | 2181 | 	default: | 
 | 2182 | 		err = -EINVAL; | 
| Peter Staubach | 57070d0 | 2006-03-25 03:08:04 -0800 | [diff] [blame] | 2183 | 		break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | 	} | 
 | 2185 |  | 
| Peter Staubach | 57070d0 | 2006-03-25 03:08:04 -0800 | [diff] [blame] | 2186 | 	if (err) | 
 | 2187 | 		goto done; | 
 | 2188 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | 	oldfs = get_fs(); | 
 | 2190 | 	set_fs(KERNEL_DS); | 
 | 2191 | 	/* The __user pointer casts are valid because of the set_fs() */ | 
 | 2192 | 	err = sys_nfsservctl(cmd, (void __user *) karg, (void __user *) kres); | 
 | 2193 | 	set_fs(oldfs); | 
 | 2194 |  | 
 | 2195 | 	if (err) | 
 | 2196 | 		goto done; | 
 | 2197 |  | 
 | 2198 | 	if((cmd == NFSCTL_GETFD) || | 
 | 2199 | 	   (cmd == NFSCTL_GETFS)) | 
 | 2200 | 		err = compat_nfs_getfh_res_trans(kres, res); | 
 | 2201 |  | 
 | 2202 | done: | 
 | 2203 | 	kfree(karg); | 
 | 2204 | 	kfree(kres); | 
 | 2205 | 	return err; | 
 | 2206 | } | 
 | 2207 | #else /* !NFSD */ | 
 | 2208 | long asmlinkage compat_sys_nfsservctl(int cmd, void *notused, void *notused2) | 
 | 2209 | { | 
 | 2210 | 	return sys_ni_syscall(); | 
 | 2211 | } | 
 | 2212 | #endif | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 2213 |  | 
 | 2214 | #ifdef CONFIG_EPOLL | 
 | 2215 |  | 
| Roland McGrath | f3de272 | 2008-04-30 00:53:09 -0700 | [diff] [blame] | 2216 | #ifdef HAVE_SET_RESTORE_SIGMASK | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 2217 | asmlinkage long compat_sys_epoll_pwait(int epfd, | 
 | 2218 | 			struct compat_epoll_event __user *events, | 
 | 2219 | 			int maxevents, int timeout, | 
 | 2220 | 			const compat_sigset_t __user *sigmask, | 
 | 2221 | 			compat_size_t sigsetsize) | 
 | 2222 | { | 
 | 2223 | 	long err; | 
 | 2224 | 	compat_sigset_t csigmask; | 
 | 2225 | 	sigset_t ksigmask, sigsaved; | 
 | 2226 |  | 
 | 2227 | 	/* | 
 | 2228 | 	 * If the caller wants a certain signal mask to be set during the wait, | 
 | 2229 | 	 * we apply it here. | 
 | 2230 | 	 */ | 
 | 2231 | 	if (sigmask) { | 
 | 2232 | 		if (sigsetsize != sizeof(compat_sigset_t)) | 
 | 2233 | 			return -EINVAL; | 
 | 2234 | 		if (copy_from_user(&csigmask, sigmask, sizeof(csigmask))) | 
 | 2235 | 			return -EFAULT; | 
 | 2236 | 		sigset_from_compat(&ksigmask, &csigmask); | 
 | 2237 | 		sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP)); | 
 | 2238 | 		sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved); | 
 | 2239 | 	} | 
 | 2240 |  | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 2241 | 	err = sys_epoll_wait(epfd, events, maxevents, timeout); | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 2242 |  | 
 | 2243 | 	/* | 
 | 2244 | 	 * If we changed the signal mask, we need to restore the original one. | 
 | 2245 | 	 * In case we've got a signal while waiting, we do not restore the | 
 | 2246 | 	 * signal mask yet, and we allow do_signal() to deliver the signal on | 
 | 2247 | 	 * the way back to userspace, before the signal mask is restored. | 
 | 2248 | 	 */ | 
 | 2249 | 	if (sigmask) { | 
 | 2250 | 		if (err == -EINTR) { | 
 | 2251 | 			memcpy(¤t->saved_sigmask, &sigsaved, | 
 | 2252 | 			       sizeof(sigsaved)); | 
| Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 2253 | 			set_restore_sigmask(); | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 2254 | 		} else | 
 | 2255 | 			sigprocmask(SIG_SETMASK, &sigsaved, NULL); | 
 | 2256 | 	} | 
 | 2257 |  | 
 | 2258 | 	return err; | 
 | 2259 | } | 
| Roland McGrath | f3de272 | 2008-04-30 00:53:09 -0700 | [diff] [blame] | 2260 | #endif /* HAVE_SET_RESTORE_SIGMASK */ | 
| Davide Libenzi | f6dfb4f | 2007-03-07 20:41:21 -0800 | [diff] [blame] | 2261 |  | 
 | 2262 | #endif /* CONFIG_EPOLL */ | 
| Davide Libenzi | 6d18c92 | 2007-05-10 22:23:15 -0700 | [diff] [blame] | 2263 |  | 
 | 2264 | #ifdef CONFIG_SIGNALFD | 
 | 2265 |  | 
| Ulrich Drepper | 9deb27b | 2008-07-23 21:29:24 -0700 | [diff] [blame] | 2266 | asmlinkage long compat_sys_signalfd4(int ufd, | 
 | 2267 | 				     const compat_sigset_t __user *sigmask, | 
 | 2268 | 				     compat_size_t sigsetsize, int flags) | 
| Davide Libenzi | 6d18c92 | 2007-05-10 22:23:15 -0700 | [diff] [blame] | 2269 | { | 
 | 2270 | 	compat_sigset_t ss32; | 
 | 2271 | 	sigset_t tmp; | 
 | 2272 | 	sigset_t __user *ksigmask; | 
 | 2273 |  | 
 | 2274 | 	if (sigsetsize != sizeof(compat_sigset_t)) | 
 | 2275 | 		return -EINVAL; | 
 | 2276 | 	if (copy_from_user(&ss32, sigmask, sizeof(ss32))) | 
 | 2277 | 		return -EFAULT; | 
 | 2278 | 	sigset_from_compat(&tmp, &ss32); | 
 | 2279 | 	ksigmask = compat_alloc_user_space(sizeof(sigset_t)); | 
 | 2280 | 	if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t))) | 
 | 2281 | 		return -EFAULT; | 
 | 2282 |  | 
| Ulrich Drepper | 9deb27b | 2008-07-23 21:29:24 -0700 | [diff] [blame] | 2283 | 	return sys_signalfd4(ufd, ksigmask, sizeof(sigset_t), flags); | 
| Davide Libenzi | 6d18c92 | 2007-05-10 22:23:15 -0700 | [diff] [blame] | 2284 | } | 
 | 2285 |  | 
| Ulrich Drepper | 9deb27b | 2008-07-23 21:29:24 -0700 | [diff] [blame] | 2286 | asmlinkage long compat_sys_signalfd(int ufd, | 
 | 2287 | 				    const compat_sigset_t __user *sigmask, | 
 | 2288 | 				    compat_size_t sigsetsize) | 
 | 2289 | { | 
 | 2290 | 	return compat_sys_signalfd4(ufd, sigmask, sigsetsize, 0); | 
 | 2291 | } | 
| Davide Libenzi | 6d18c92 | 2007-05-10 22:23:15 -0700 | [diff] [blame] | 2292 | #endif /* CONFIG_SIGNALFD */ | 
 | 2293 |  | 
| Davide Libenzi | 83f5d12 | 2007-05-10 22:23:18 -0700 | [diff] [blame] | 2294 | #ifdef CONFIG_TIMERFD | 
 | 2295 |  | 
| Davide Libenzi | 4d672e7 | 2008-02-04 22:27:26 -0800 | [diff] [blame] | 2296 | asmlinkage long compat_sys_timerfd_settime(int ufd, int flags, | 
 | 2297 | 				   const struct compat_itimerspec __user *utmr, | 
 | 2298 | 				   struct compat_itimerspec __user *otmr) | 
| Davide Libenzi | 83f5d12 | 2007-05-10 22:23:18 -0700 | [diff] [blame] | 2299 | { | 
| Davide Libenzi | 4d672e7 | 2008-02-04 22:27:26 -0800 | [diff] [blame] | 2300 | 	int error; | 
| Davide Libenzi | 83f5d12 | 2007-05-10 22:23:18 -0700 | [diff] [blame] | 2301 | 	struct itimerspec t; | 
 | 2302 | 	struct itimerspec __user *ut; | 
 | 2303 |  | 
| Davide Libenzi | 83f5d12 | 2007-05-10 22:23:18 -0700 | [diff] [blame] | 2304 | 	if (get_compat_itimerspec(&t, utmr)) | 
| Heiko Carstens | 8317f14 | 2007-05-16 22:11:08 -0700 | [diff] [blame] | 2305 | 		return -EFAULT; | 
| Davide Libenzi | 4d672e7 | 2008-02-04 22:27:26 -0800 | [diff] [blame] | 2306 | 	ut = compat_alloc_user_space(2 * sizeof(struct itimerspec)); | 
 | 2307 | 	if (copy_to_user(&ut[0], &t, sizeof(t))) | 
| Heiko Carstens | 8317f14 | 2007-05-16 22:11:08 -0700 | [diff] [blame] | 2308 | 		return -EFAULT; | 
| Davide Libenzi | 4d672e7 | 2008-02-04 22:27:26 -0800 | [diff] [blame] | 2309 | 	error = sys_timerfd_settime(ufd, flags, &ut[0], &ut[1]); | 
 | 2310 | 	if (!error && otmr) | 
 | 2311 | 		error = (copy_from_user(&t, &ut[1], sizeof(struct itimerspec)) || | 
 | 2312 | 			 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0; | 
| Davide Libenzi | 83f5d12 | 2007-05-10 22:23:18 -0700 | [diff] [blame] | 2313 |  | 
| Davide Libenzi | 4d672e7 | 2008-02-04 22:27:26 -0800 | [diff] [blame] | 2314 | 	return error; | 
 | 2315 | } | 
 | 2316 |  | 
 | 2317 | asmlinkage long compat_sys_timerfd_gettime(int ufd, | 
 | 2318 | 				   struct compat_itimerspec __user *otmr) | 
 | 2319 | { | 
 | 2320 | 	int error; | 
 | 2321 | 	struct itimerspec t; | 
 | 2322 | 	struct itimerspec __user *ut; | 
 | 2323 |  | 
 | 2324 | 	ut = compat_alloc_user_space(sizeof(struct itimerspec)); | 
 | 2325 | 	error = sys_timerfd_gettime(ufd, ut); | 
 | 2326 | 	if (!error) | 
 | 2327 | 		error = (copy_from_user(&t, ut, sizeof(struct itimerspec)) || | 
 | 2328 | 			 put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0; | 
 | 2329 |  | 
 | 2330 | 	return error; | 
| Davide Libenzi | 83f5d12 | 2007-05-10 22:23:18 -0700 | [diff] [blame] | 2331 | } | 
 | 2332 |  | 
 | 2333 | #endif /* CONFIG_TIMERFD */ |