]> git.proxmox.com Git - mirror_zfs.git/commit - module/zfs/zfs_ioctl.c
Failure of userland copy should return EFAULT
authorRichard Yao <richard.yao@clusterhq.com>
Fri, 3 Jul 2015 16:20:17 +0000 (12:20 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 14 Jul 2015 17:20:35 +0000 (10:20 -0700)
commit0de7c552b69f2bb3e16f023007f049cb3c8e9afd
tree08beaa1d0901b761ce3ed2d1e5e44413f22a4d46
parentb39c22b73c0e8016381057c2240570f7af992def
Failure of userland copy should return EFAULT

Many key internal functions pass system return codes that are safe to
return to userland. In the case of ddi_copyin(9F), an error passes -1
and the documentation states very clearly that drivers should pass
EFAULT to userland when this happens.

http://illumos.org/man/9F/ddi_copyin

This does not happen in the ZFS source code. I believe it should be
changed to pass EFAULT. I caught this when writing man pages for the
libzfs_core API.

Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #3575
module/zfs/zfs_ioctl.c