#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/lock.h>
#include <sys/resourcevar.h>
#include <sys/sysctl.h>
#include <sys/uio.h>
#include <sys/vnode.h>
#include <sys/thread2.h>
#include <machine/limits.h>
#include <cpu/lwbuf.h>
#include <vm/vm.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
SYSCTL_INT(_kern, KERN_IOV_MAX, iov_max, CTLFLAG_RD, NULL, UIO_MAXIOV,
"Maximum number of elements in an I/O vector; sysconf(_SC_IOV_MAX)");
int
copyin_nofault(const void *udaddr, void *kaddr, size_t len)
{
thread_t td = curthread;
int error;
atomic_set_int(&td->td_flags, TDF_NOFAULT);
error = copyin(udaddr, kaddr, len);
atomic_clear_int(&td->td_flags, TDF_NOFAULT);
return error;
}
int
copyout_nofault(const void *kaddr, void *udaddr, size_t len)
{
thread_t td = curthread;
int error;
atomic_set_int(&td->td_flags, TDF_NOFAULT);
error = copyout(kaddr, udaddr, len);
atomic_clear_int(&td->td_flags, TDF_NOFAULT);
return error;
}
int
uiomove(caddr_t cp, size_t n, struct uio *uio)
{
thread_t td = curthread;
struct iovec *iov;
size_t cnt;
size_t tot;
int error = 0;
int save = 0;
KASSERT(uio->uio_rw == UIO_READ || uio->uio_rw == UIO_WRITE,
("uiomove: mode"));
KASSERT(uio->uio_segflg != UIO_USERSPACE || uio->uio_td == td,
("uiomove proc"));
crit_enter();
save = td->td_flags & TDF_DEADLKTREAT;
td->td_flags |= TDF_DEADLKTREAT;
crit_exit();
tot = 0;
while (n > 0 && uio->uio_resid) {
iov = uio->uio_iov;
cnt = iov->iov_len;
if (cnt == 0) {
uio->uio_iov++;
uio->uio_iovcnt--;
continue;
}
if (cnt > n)
cnt = n;
tot += cnt;
switch (uio->uio_segflg) {
case UIO_USERSPACE:
if (tot > 1024*1024)
lwkt_user_yield();
if (uio->uio_rw == UIO_READ)
error = copyout(cp, iov->iov_base, cnt);
else
error = copyin(iov->iov_base, cp, cnt);
break;
case UIO_SYSSPACE:
if (uio->uio_rw == UIO_READ)
bcopy(cp, iov->iov_base, cnt);
else
bcopy(iov->iov_base, cp, cnt);
break;
case UIO_NOCOPY:
break;
}
if (error)
break;
iov->iov_base = (char *)iov->iov_base + cnt;
iov->iov_len -= cnt;
uio->uio_resid -= cnt;
uio->uio_offset += cnt;
cp += cnt;
n -= cnt;
}
crit_enter();
td->td_flags = (td->td_flags & ~TDF_DEADLKTREAT) | save;
crit_exit();
return (error);
}
int
uiomovebp(struct buf *bp, caddr_t cp, size_t n, struct uio *uio)
{
int count;
vm_page_t m;
if (bp->b_vp && bp->b_vp->v_type == VREG &&
(bp->b_flags & B_CACHE) &&
(count = bp->b_xio.xio_npages) != 0 &&
(m = bp->b_xio.xio_pages[count-1])->valid != VM_PAGE_BITS_ALL) {
vm_page_zero_invalid(m, TRUE);
}
return (uiomove(cp, n, uio));
}
int
uiomove_nofault(caddr_t cp, size_t n, struct uio *uio)
{
thread_t td = curthread;
int error;
atomic_set_int(&td->td_flags, TDF_NOFAULT);
error = uiomove(cp, n, uio);
atomic_clear_int(&td->td_flags, TDF_NOFAULT);
return error;
}
int
uiomovez(size_t n, struct uio *uio)
{
struct iovec *iov;
size_t cnt;
int error = 0;
KASSERT(uio->uio_rw == UIO_READ, ("uiomovez: mode"));
KASSERT(uio->uio_segflg != UIO_USERSPACE || uio->uio_td == curthread,
("uiomove proc"));
while (n > 0 && uio->uio_resid) {
iov = uio->uio_iov;
cnt = iov->iov_len;
if (cnt == 0) {
uio->uio_iov++;
uio->uio_iovcnt--;
continue;
}
if (cnt > n)
cnt = n;
switch (uio->uio_segflg) {
case UIO_USERSPACE:
error = copyout(ZeroPage, iov->iov_base, cnt);
break;
case UIO_SYSSPACE:
bzero(iov->iov_base, cnt);
break;
case UIO_NOCOPY:
break;
}
if (error)
break;
iov->iov_base = (char *)iov->iov_base + cnt;
iov->iov_len -= cnt;
uio->uio_resid -= cnt;
uio->uio_offset += cnt;
n -= cnt;
}
return (error);
}
int
uiomove_frombuf(void *buf, size_t buflen, struct uio *uio)
{
size_t offset;
offset = (size_t)uio->uio_offset;
if ((off_t)offset != uio->uio_offset)
return (EINVAL);
if (buflen == 0 || offset >= buflen)
return (0);
return (uiomove((char *)buf + offset, buflen - offset, uio));
}
int
ureadc(int c, struct uio *uio)
{
struct iovec *iov;
char *iov_base;
again:
if (uio->uio_iovcnt == 0 || uio->uio_resid == 0)
panic("ureadc");
iov = uio->uio_iov;
if (iov->iov_len == 0) {
uio->uio_iovcnt--;
uio->uio_iov++;
goto again;
}
switch (uio->uio_segflg) {
case UIO_USERSPACE:
if (subyte(iov->iov_base, c) < 0)
return (EFAULT);
break;
case UIO_SYSSPACE:
iov_base = iov->iov_base;
*iov_base = c;
iov->iov_base = iov_base;
break;
case UIO_NOCOPY:
break;
}
iov->iov_base = (char *)iov->iov_base + 1;
iov->iov_len--;
uio->uio_resid--;
uio->uio_offset++;
return (0);
}
void *
hashinit(int elements, struct malloc_type *type, u_long *hashmask)
{
long hashsize;
LIST_HEAD(generic, generic) *hashtbl;
int i;
if (elements <= 0)
panic("hashinit: bad elements");
for (hashsize = 2; hashsize < elements; hashsize <<= 1)
continue;
hashtbl = kmalloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);
for (i = 0; i < hashsize; i++)
LIST_INIT(&hashtbl[i]);
*hashmask = hashsize - 1;
return (hashtbl);
}
void
hashdestroy(void *vhashtbl, struct malloc_type *type, u_long hashmask)
{
LIST_HEAD(generic, generic) *hashtbl, *hp;
hashtbl = vhashtbl;
for (hp = hashtbl; hp <= &hashtbl[hashmask]; hp++)
KASSERT(LIST_EMPTY(hp), ("%s: hash not empty", __func__));
kfree(hashtbl, type);
}
void *
hashinit_ext(int elements, size_t size, struct malloc_type *type,
u_long *hashmask)
{
long hashsize;
void *hashtbl;
if (elements <= 0)
panic("hashinit: bad elements");
for (hashsize = 2; hashsize < elements; hashsize <<= 1)
continue;
hashtbl = kmalloc((size_t)hashsize * size, type, M_WAITOK | M_ZERO);
*hashmask = hashsize - 1;
return (hashtbl);
}
static int primes[] = { 1, 13, 31, 61, 127, 251, 509, 761, 1021, 1531, 2039,
2557, 3067, 3583, 4093, 4603, 5119, 5623, 6143, 6653,
7159, 7673, 8191, 12281, 16381, 24571, 32749 };
#define NPRIMES NELEM(primes)
void *
phashinit(int elements, struct malloc_type *type, u_long *nentries)
{
long hashsize;
LIST_HEAD(generic, generic) *hashtbl;
int i;
if (elements <= 0)
panic("phashinit: bad elements");
for (i = 1, hashsize = primes[1]; hashsize <= elements;) {
i++;
if (i == NPRIMES)
break;
hashsize = primes[i];
}
hashsize = primes[i - 1];
hashtbl = kmalloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);
for (i = 0; i < hashsize; i++)
LIST_INIT(&hashtbl[i]);
*nentries = hashsize;
return (hashtbl);
}
void *
phashinit_ext(int elements, size_t size, struct malloc_type *type,
u_long *nentries)
{
long hashsize;
void *hashtbl;
int i;
if (elements <= 0)
panic("phashinit: bad elements");
for (i = 1, hashsize = primes[1]; hashsize <= elements;) {
i++;
if (i == NPRIMES)
break;
hashsize = primes[i];
}
hashsize = primes[i - 1];
hashtbl = kmalloc((size_t)hashsize * size, type, M_WAITOK | M_ZERO);
*nentries = hashsize;
return (hashtbl);
}
int
iovec_copyin(const struct iovec *uiov, struct iovec **kiov, struct iovec *siov,
int iov_cnt, size_t *iov_len)
{
struct iovec *iovp;
int error, i;
size_t len;
if ((u_int)iov_cnt > UIO_MAXIOV)
return EMSGSIZE;
if (iov_cnt > UIO_SMALLIOV) {
*kiov = kmalloc(sizeof(struct iovec) * iov_cnt, M_IOV,
M_WAITOK);
} else {
*kiov = siov;
}
error = copyin(uiov, *kiov, iov_cnt * sizeof(struct iovec));
if (error == 0) {
*iov_len = 0;
for (i = 0, iovp = *kiov; i < iov_cnt; i++, iovp++) {
len = *iov_len + iovp->iov_len;
if (len < *iov_len)
error = EINVAL;
*iov_len = len;
}
}
if (error == 0 && (ssize_t)*iov_len < 0)
error = EINVAL;
if (error)
iovec_free(kiov, siov);
return (error);
}
int
uiomove_fromphys(vm_page_t *ma, vm_offset_t offset, size_t n, struct uio *uio)
{
struct lwbuf lwb_cache;
struct lwbuf *lwb;
struct thread *td = curthread;
struct iovec *iov;
void *cp;
vm_offset_t page_offset;
vm_page_t m;
size_t cnt;
int error = 0;
int save = 0;
KASSERT(uio->uio_rw == UIO_READ || uio->uio_rw == UIO_WRITE,
("uiomove_fromphys: mode"));
KASSERT(uio->uio_segflg != UIO_USERSPACE || uio->uio_td == curthread,
("uiomove_fromphys proc"));
crit_enter();
save = td->td_flags & TDF_DEADLKTREAT;
td->td_flags |= TDF_DEADLKTREAT;
crit_exit();
while (n > 0 && uio->uio_resid) {
iov = uio->uio_iov;
cnt = iov->iov_len;
if (cnt == 0) {
uio->uio_iov++;
uio->uio_iovcnt--;
continue;
}
if (cnt > n)
cnt = n;
page_offset = offset & PAGE_MASK;
cnt = min(cnt, PAGE_SIZE - page_offset);
m = ma[offset >> PAGE_SHIFT];
lwb = lwbuf_alloc(m, &lwb_cache);
cp = (char *)lwbuf_kva(lwb) + page_offset;
switch (uio->uio_segflg) {
case UIO_USERSPACE:
if (uio->uio_rw == UIO_READ)
error = copyout(cp, iov->iov_base, cnt);
else
error = copyin(iov->iov_base, cp, cnt);
if (error) {
lwbuf_free(lwb);
goto out;
}
break;
case UIO_SYSSPACE:
if (uio->uio_rw == UIO_READ)
bcopy(cp, iov->iov_base, cnt);
else
bcopy(iov->iov_base, cp, cnt);
break;
case UIO_NOCOPY:
break;
}
lwbuf_free(lwb);
iov->iov_base = (char *)iov->iov_base + cnt;
iov->iov_len -= cnt;
uio->uio_resid -= cnt;
uio->uio_offset += cnt;
offset += cnt;
n -= cnt;
}
out:
if (save == 0) {
crit_enter();
td->td_flags &= ~TDF_DEADLKTREAT;
crit_exit();
}
return (error);
}