diff options
| -rw-r--r-- | fs/compat.c | 15 | ||||
| -rw-r--r-- | mm/process_vm_access.c | 8 | ||||
| -rw-r--r-- | security/keys/compat.c | 4 | 
3 files changed, 9 insertions, 18 deletions
diff --git a/fs/compat.c b/fs/compat.c index fe40fde2911..d487985dd0e 100644 --- a/fs/compat.c +++ b/fs/compat.c @@ -558,6 +558,10 @@ ssize_t compat_rw_copy_check_uvector(int type,  	}  	*ret_pointer = iov; +	ret = -EFAULT; +	if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector))) +		goto out; +  	/*  	 * Single unix specification:  	 * We should -EINVAL if an element length is not >= 0 and fitting an @@ -1080,17 +1084,12 @@ static ssize_t compat_do_readv_writev(int type, struct file *file,  	if (!file->f_op)  		goto out; -	ret = -EFAULT; -	if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector))) -		goto out; - -	tot_len = compat_rw_copy_check_uvector(type, uvector, nr_segs, +	ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,  					       UIO_FASTIOV, iovstack, &iov); -	if (tot_len == 0) { -		ret = 0; +	if (ret <= 0)  		goto out; -	} +	tot_len = ret;  	ret = rw_verify_area(type, file, pos, tot_len);  	if (ret < 0)  		goto out; diff --git a/mm/process_vm_access.c b/mm/process_vm_access.c index 926b4664974..fd26d043350 100644 --- a/mm/process_vm_access.c +++ b/mm/process_vm_access.c @@ -429,12 +429,6 @@ compat_process_vm_rw(compat_pid_t pid,  	if (flags != 0)  		return -EINVAL; -	if (!access_ok(VERIFY_READ, lvec, liovcnt * sizeof(*lvec))) -		goto out; - -	if (!access_ok(VERIFY_READ, rvec, riovcnt * sizeof(*rvec))) -		goto out; -  	if (vm_write)  		rc = compat_rw_copy_check_uvector(WRITE, lvec, liovcnt,  						  UIO_FASTIOV, iovstack_l, @@ -459,8 +453,6 @@ free_iovecs:  		kfree(iov_r);  	if (iov_l != iovstack_l)  		kfree(iov_l); - -out:  	return rc;  } diff --git a/security/keys/compat.c b/security/keys/compat.c index 1c261763f47..d65fa7fa29b 100644 --- a/security/keys/compat.c +++ b/security/keys/compat.c @@ -40,12 +40,12 @@ static long compat_keyctl_instantiate_key_iov(  					   ARRAY_SIZE(iovstack),  					   iovstack, &iov);  	if (ret < 0) -		return ret; +		goto err;  	if (ret == 0)  		goto no_payload_free;  	ret = keyctl_instantiate_key_common(id, iov, ioc, ret, ringid); - +err:  	if (iov != iovstack)  		kfree(iov);  	return ret;  |