p The .Fa uio argument is a pointer to a .Fa struct uio as defined by .Aq Pa sys/uio.h : d -literal struct uio { struct iovec *uio_iov; /* pointer to array of iovecs */ int uio_iovcnt; /* number of iovecs in array */ off_t uio_offset; /* offset into file this uio corresponds to */ size_t uio_resid; /* residual i/o count */ enum uio_rw uio_rw; struct vmspace *uio_vmspace; }; .Ed
p A .Fa struct uio typically describes data in motion. Several of the fields described below reflect that expectation.
p l -tag -width uio_xxxxxx t uio_iov Pointer to array of .Fa struct iovecs : d -literal struct iovec { void *iov_base; /* Base address. */ size_t iov_len; /* Length. */ }; .Ed t uio_iovcnt The number of iovecs in the array. t uio_offset An offset into the corresponding object. t uio_resid The amount of space described by the structure; notionally, the amount of data remaining to be transferred. t uio_rw A flag indicating whether data should be read into the space (UIO_READ) or written from the space (UIO_WRITE). t uio_vmspace A pointer to the address space which is being transferred to or from. .El
p The value of .Fa uio-\*[Gt]uio_rw controls whether .Nm copies data from .Fa buf to .Fa uio or vice versa.
p The lesser of .Fa n or .Fa uio-\*[Gt]uio_resid bytes are copied.
p .Nm changes fields of the structure pointed to by .Fa uio , such that .Fa uio-\*[Gt]uio_resid is decremented by the amount of data moved, .Fa uio-\*[Gt]uio_offset is incremented by the same amount, and the array of iovecs is adjusted to point that much farther into the region described. This allows multiple calls to .Nm to easily be used to fill or drain the region of data. .Sh RETURN VALUES .Nm returns 0 on success or EFAULT if a bad address is encountered. .Sh SEE ALSO .Xr copy 9 , .Xr fetch 9 , .Xr store 9