root/sys/opencrypto/criov.c
/*      $OpenBSD: criov.c,v 1.9 2002/01/29 15:48:29 jason Exp $ */

/*-
 * Copyright (c) 1999 Theo de Raadt
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in the
 *   documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *   derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/mbuf.h>
#include <sys/uio.h>
#include <sys/limits.h>
#include <sys/lock.h>
#include <sys/sdt.h>

#include <machine/vmparam.h>

#include <vm/vm.h>
#include <vm/vm_page.h>
#include <vm/pmap.h>

#include <opencrypto/cryptodev.h>

SDT_PROVIDER_DECLARE(opencrypto);

/*
 * These macros are only for avoiding code duplication, as we need to skip
 * given number of bytes in the same way in several functions below.
 */
#define CUIO_SKIP()     do {                                            \
        KASSERT(off >= 0, ("%s: off %d < 0", __func__, off));           \
        KASSERT(len >= 0, ("%s: len %d < 0", __func__, len));           \
        while (off > 0) {                                               \
                KASSERT(iol >= 0, ("%s: empty in skip", __func__));     \
                if (off < iov->iov_len)                                 \
                        break;                                          \
                off -= iov->iov_len;                                    \
                iol--;                                                  \
                iov++;                                                  \
        }                                                               \
} while (0)

#define CVM_PAGE_SKIP() do {                                    \
        KASSERT(off >= 0, ("%s: off %d < 0", __func__, off));           \
        KASSERT(len >= 0, ("%s: len %d < 0", __func__, len));           \
        while (off > 0) {                                               \
                if (off < PAGE_SIZE)                                    \
                        break;                                          \
                processed += PAGE_SIZE - off;                           \
                off -= PAGE_SIZE - off;                                 \
                pages++;                                                \
        }                                                               \
} while (0)

static void
cuio_copydata(struct uio* uio, int off, int len, caddr_t cp)
{
        struct iovec *iov = uio->uio_iov;
        int iol __diagused = uio->uio_iovcnt;
        unsigned count;

        CUIO_SKIP();
        while (len > 0) {
                KASSERT(iol >= 0, ("%s: empty", __func__));
                count = min(iov->iov_len - off, len);
                bcopy(((caddr_t)iov->iov_base) + off, cp, count);
                len -= count;
                cp += count;
                off = 0;
                iol--;
                iov++;
        }
}

static void
cuio_copyback(struct uio* uio, int off, int len, c_caddr_t cp)
{
        struct iovec *iov = uio->uio_iov;
        int iol __diagused = uio->uio_iovcnt;
        unsigned count;

        CUIO_SKIP();
        while (len > 0) {
                KASSERT(iol >= 0, ("%s: empty", __func__));
                count = min(iov->iov_len - off, len);
                bcopy(cp, ((caddr_t)iov->iov_base) + off, count);
                len -= count;
                cp += count;
                off = 0;
                iol--;
                iov++;
        }
}

/*
 * Return the index and offset of location in iovec list.
 */
static int
cuio_getptr(struct uio *uio, int loc, int *off)
{
        int ind, len;

        ind = 0;
        while (loc >= 0 && ind < uio->uio_iovcnt) {
                len = uio->uio_iov[ind].iov_len;
                if (len > loc) {
                        *off = loc;
                        return (ind);
                }
                loc -= len;
                ind++;
        }

        if (ind > 0 && loc == 0) {
                ind--;
                *off = uio->uio_iov[ind].iov_len;
                return (ind);
        }

        return (-1);
}

#if CRYPTO_MAY_HAVE_VMPAGE
/*
 * Apply function f to the data in a vm_page_t list starting "off" bytes from
 * the beginning, continuing for "len" bytes.
 */
static int
cvm_page_apply(vm_page_t *pages, int off, int len,
    int (*f)(void *, const void *, u_int), void *arg)
{
        int processed __unused;
        unsigned count;
        int rval;

        processed = 0;
        CVM_PAGE_SKIP();
        while (len > 0) {
                char *kaddr = (char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(*pages));
                count = min(PAGE_SIZE - off, len);
                rval = (*f)(arg, kaddr + off, count);
                if (rval)
                        return (rval);
                len -= count;
                processed += count;
                off = 0;
                pages++;
        }
        return (0);
}

static inline void *
cvm_page_contiguous_segment(vm_page_t *pages, size_t skip, int len)
{
        if ((skip + len - 1) / PAGE_SIZE > skip / PAGE_SIZE)
                return (NULL);

        pages += (skip / PAGE_SIZE);
        skip -= rounddown(skip, PAGE_SIZE);
        return (((char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(*pages))) + skip);
}

/*
 * Copy len bytes of data from the vm_page_t array, skipping the first off
 * bytes, into the pointer cp.  Return the number of bytes skipped and copied.
 * Does not verify the length of the array.
 */
static int
cvm_page_copyback(vm_page_t *pages, int off, int len, c_caddr_t cp)
{
        int processed = 0;
        unsigned count;

        CVM_PAGE_SKIP();
        while (len > 0) {
                count = min(PAGE_SIZE - off, len);
                bcopy(cp, (char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(*pages)) + off,
                    count);
                len -= count;
                cp += count;
                processed += count;
                off = 0;
                pages++;
        }
        return (processed);
}

/*
 * Copy len bytes of data from the pointer cp into the vm_page_t array,
 * skipping the first off bytes, Return the number of bytes skipped and copied.
 * Does not verify the length of the array.
 */
static int
cvm_page_copydata(vm_page_t *pages, int off, int len, caddr_t cp)
{
        int processed = 0;
        unsigned count;

        CVM_PAGE_SKIP();
        while (len > 0) {
                count = min(PAGE_SIZE - off, len);
                bcopy(((char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(*pages)) + off), cp,
                    count);
                len -= count;
                cp += count;
                processed += count;
                off = 0;
                pages++;
        }
        return processed;
}
#endif /* CRYPTO_MAY_HAVE_VMPAGE */

/*
 * Given a starting page in an m_epg, determine the length of the
 * current physically contiguous segment.
 */
static __inline size_t
m_epg_pages_extent(struct mbuf *m, int idx, u_int pglen)
{
        size_t len;
        u_int i;

        len = pglen;
        for (i = idx + 1; i < m->m_epg_npgs; i++) {
                if (m->m_epg_pa[i - 1] + PAGE_SIZE != m->m_epg_pa[i])
                        break;
                len += m_epg_pagelen(m, i, 0);
        }
        return (len);
}

static void *
m_epg_segment(struct mbuf *m, size_t offset, size_t *len)
{
        u_int i, pglen, pgoff;

        offset += mtod(m, vm_offset_t);
        if (offset < m->m_epg_hdrlen) {
                *len = m->m_epg_hdrlen - offset;
                return (m->m_epg_hdr + offset);
        }
        offset -= m->m_epg_hdrlen;
        pgoff = m->m_epg_1st_off;
        for (i = 0; i < m->m_epg_npgs; i++) {
                pglen = m_epg_pagelen(m, i, pgoff);
                if (offset < pglen) {
                        *len = m_epg_pages_extent(m, i, pglen) - offset;
                        return ((void *)PHYS_TO_DMAP(m->m_epg_pa[i] + pgoff +
                            offset));
                }
                offset -= pglen;
                pgoff = 0;
        }
        KASSERT(offset <= m->m_epg_trllen, ("%s: offset beyond trailer",
            __func__));
        *len = m->m_epg_trllen - offset;
        return (m->m_epg_trail + offset);
}

static __inline void *
m_epg_contiguous_subsegment(struct mbuf *m, size_t skip, size_t len)
{
        void *base;
        size_t seglen;

        base = m_epg_segment(m, skip, &seglen);
        if (len > seglen)
                return (NULL);
        return (base);
}

void
crypto_cursor_init(struct crypto_buffer_cursor *cc,
    const struct crypto_buffer *cb)
{
        memset(cc, 0, sizeof(*cc));
        cc->cc_type = cb->cb_type;
        switch (cc->cc_type) {
        case CRYPTO_BUF_CONTIG:
                cc->cc_buf = cb->cb_buf;
                cc->cc_buf_len = cb->cb_buf_len;
                break;
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                cc->cc_mbuf = cb->cb_mbuf;
                break;
        case CRYPTO_BUF_VMPAGE:
                cc->cc_vmpage = cb->cb_vm_page;
                cc->cc_buf_len = cb->cb_vm_page_len;
                cc->cc_offset = cb->cb_vm_page_offset;
                break;
        case CRYPTO_BUF_UIO:
                cc->cc_iov = cb->cb_uio->uio_iov;
                cc->cc_buf_len = cb->cb_uio->uio_resid;
                break;
        default:
#ifdef INVARIANTS
                panic("%s: invalid buffer type %d", __func__, cb->cb_type);
#endif
                break;
        }
}

SDT_PROBE_DEFINE2(opencrypto, criov, cursor_advance, vmpage, "struct crypto_buffer_cursor*", "size_t");

void
crypto_cursor_advance(struct crypto_buffer_cursor *cc, size_t amount)
{
        size_t remain;

        switch (cc->cc_type) {
        case CRYPTO_BUF_CONTIG:
                MPASS(cc->cc_buf_len >= amount);
                cc->cc_buf += amount;
                cc->cc_buf_len -= amount;
                break;
        case CRYPTO_BUF_MBUF:
                for (;;) {
                        remain = cc->cc_mbuf->m_len - cc->cc_offset;
                        if (amount < remain) {
                                cc->cc_offset += amount;
                                break;
                        }
                        amount -= remain;
                        cc->cc_mbuf = cc->cc_mbuf->m_next;
                        cc->cc_offset = 0;
                        if (amount == 0)
                                break;
                }
                break;
        case CRYPTO_BUF_SINGLE_MBUF:
                MPASS(cc->cc_mbuf->m_len >= cc->cc_offset + amount);
                cc->cc_offset += amount;
                break;
        case CRYPTO_BUF_VMPAGE:
                for (;;) {
                        SDT_PROBE2(opencrypto, criov, cursor_advance, vmpage,
                            cc, amount);
                        remain = MIN(PAGE_SIZE - cc->cc_offset, cc->cc_buf_len);
                        if (amount < remain) {
                                cc->cc_buf_len -= amount;
                                cc->cc_offset += amount;
                                break;
                        }
                        cc->cc_buf_len -= remain;
                        amount -= remain;
                        cc->cc_vmpage++;
                        cc->cc_offset = 0;
                        if (amount == 0 || cc->cc_buf_len == 0)
                                break;
                }
                break;
        case CRYPTO_BUF_UIO:
                for (;;) {
                        remain = cc->cc_iov->iov_len - cc->cc_offset;
                        if (amount < remain) {
                                cc->cc_offset += amount;
                                break;
                        }
                        cc->cc_buf_len -= remain;
                        amount -= remain;
                        cc->cc_iov++;
                        cc->cc_offset = 0;
                        if (amount == 0)
                                break;
                }
                break;
        default:
#ifdef INVARIANTS
                panic("%s: invalid buffer type %d", __func__, cc->cc_type);
#endif
                break;
        }
}

void *
crypto_cursor_segment(struct crypto_buffer_cursor *cc, size_t *len)
{
        switch (cc->cc_type) {
        case CRYPTO_BUF_CONTIG:
        case CRYPTO_BUF_UIO:
        case CRYPTO_BUF_VMPAGE:
                if (cc->cc_buf_len == 0) {
                        *len = 0;
                        return (NULL);
                }
                break;
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                if (cc->cc_mbuf == NULL) {
                        *len = 0;
                        return (NULL);
                }
                break;
        default:
#ifdef INVARIANTS
                panic("%s: invalid buffer type %d", __func__, cc->cc_type);
#endif
                *len = 0;
                return (NULL);
        }

        switch (cc->cc_type) {
        case CRYPTO_BUF_CONTIG:
                *len = cc->cc_buf_len;
                return (cc->cc_buf);
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                if (cc->cc_mbuf->m_flags & M_EXTPG)
                        return (m_epg_segment(cc->cc_mbuf, cc->cc_offset, len));
                *len = cc->cc_mbuf->m_len - cc->cc_offset;
                return (mtod(cc->cc_mbuf, char *) + cc->cc_offset);
        case CRYPTO_BUF_VMPAGE:
                *len = PAGE_SIZE - cc->cc_offset;
                return ((char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(
                    *cc->cc_vmpage)) + cc->cc_offset);
        case CRYPTO_BUF_UIO:
                *len = cc->cc_iov->iov_len - cc->cc_offset;
                return ((char *)cc->cc_iov->iov_base + cc->cc_offset);
        default:
                __assert_unreachable();
        }
}

void
crypto_cursor_copyback(struct crypto_buffer_cursor *cc, int size,
    const void *vsrc)
{
        size_t remain, todo;
        const char *src;
        char *dst;

        src = vsrc;
        switch (cc->cc_type) {
        case CRYPTO_BUF_CONTIG:
                MPASS(cc->cc_buf_len >= size);
                memcpy(cc->cc_buf, src, size);
                cc->cc_buf += size;
                cc->cc_buf_len -= size;
                break;
        case CRYPTO_BUF_MBUF:
                for (;;) {
                        /*
                         * This uses m_copyback() for individual
                         * mbufs so that cc_mbuf and cc_offset are
                         * updated.
                         */
                        remain = cc->cc_mbuf->m_len - cc->cc_offset;
                        todo = MIN(remain, size);
                        m_copyback(cc->cc_mbuf, cc->cc_offset, todo, src);
                        src += todo;
                        if (todo < remain) {
                                cc->cc_offset += todo;
                                break;
                        }
                        size -= todo;   
                        cc->cc_mbuf = cc->cc_mbuf->m_next;
                        cc->cc_offset = 0;
                        if (size == 0)
                                break;
                }
                break;
        case CRYPTO_BUF_SINGLE_MBUF:
                MPASS(cc->cc_mbuf->m_len >= cc->cc_offset + size);
                m_copyback(cc->cc_mbuf, cc->cc_offset, size, src);
                cc->cc_offset += size;
                break;
        case CRYPTO_BUF_VMPAGE:
                for (;;) {
                        dst = (char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(
                            *cc->cc_vmpage)) + cc->cc_offset;
                        remain = MIN(PAGE_SIZE - cc->cc_offset, cc->cc_buf_len);
                        todo = MIN(remain, size);
                        memcpy(dst, src, todo);
                        src += todo;
                        cc->cc_buf_len -= todo;
                        if (todo < remain) {
                                cc->cc_offset += todo;
                                break;
                        }
                        size -= todo;
                        cc->cc_vmpage++;
                        cc->cc_offset = 0;
                        if (size == 0)
                                break;
                }
                break;
        case CRYPTO_BUF_UIO:
                for (;;) {
                        dst = (char *)cc->cc_iov->iov_base + cc->cc_offset;
                        remain = cc->cc_iov->iov_len - cc->cc_offset;
                        todo = MIN(remain, size);
                        memcpy(dst, src, todo);
                        src += todo;
                        cc->cc_buf_len -= todo;
                        if (todo < remain) {
                                cc->cc_offset += todo;
                                break;
                        }
                        size -= todo;   
                        cc->cc_iov++;
                        cc->cc_offset = 0;
                        if (size == 0)
                                break;
                }
                break;
        default:
#ifdef INVARIANTS
                panic("%s: invalid buffer type %d", __func__, cc->cc_type);
#endif
                break;
        }
}

void
crypto_cursor_copydata(struct crypto_buffer_cursor *cc, int size, void *vdst)
{
        size_t remain, todo;
        const char *src;
        char *dst;

        dst = vdst;
        switch (cc->cc_type) {
        case CRYPTO_BUF_CONTIG:
                MPASS(cc->cc_buf_len >= size);
                memcpy(dst, cc->cc_buf, size);
                cc->cc_buf += size;
                cc->cc_buf_len -= size;
                break;
        case CRYPTO_BUF_MBUF:
                for (;;) {
                        /*
                         * This uses m_copydata() for individual
                         * mbufs so that cc_mbuf and cc_offset are
                         * updated.
                         */
                        remain = cc->cc_mbuf->m_len - cc->cc_offset;
                        todo = MIN(remain, size);
                        m_copydata(cc->cc_mbuf, cc->cc_offset, todo, dst);
                        dst += todo;
                        if (todo < remain) {
                                cc->cc_offset += todo;
                                break;
                        }
                        size -= todo;
                        cc->cc_mbuf = cc->cc_mbuf->m_next;
                        cc->cc_offset = 0;
                        if (size == 0)
                                break;
                }
                break;
        case CRYPTO_BUF_SINGLE_MBUF:
                MPASS(cc->cc_mbuf->m_len >= cc->cc_offset + size);
                m_copydata(cc->cc_mbuf, cc->cc_offset, size, dst);
                cc->cc_offset += size;
                break;
        case CRYPTO_BUF_VMPAGE:
                for (;;) {
                        src = (char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(
                            *cc->cc_vmpage)) + cc->cc_offset;
                        remain = MIN(PAGE_SIZE - cc->cc_offset, cc->cc_buf_len);
                        todo = MIN(remain, size);
                        memcpy(dst, src, todo);
                        dst += todo;
                        cc->cc_buf_len -= todo;
                        if (todo < remain) {
                                cc->cc_offset += todo;
                                break;
                        }
                        size -= todo;
                        cc->cc_vmpage++;
                        cc->cc_offset = 0;
                        if (size == 0)
                                break;
                }
                break;
        case CRYPTO_BUF_UIO:
                for (;;) {
                        src = (const char *)cc->cc_iov->iov_base +
                            cc->cc_offset;
                        remain = cc->cc_iov->iov_len - cc->cc_offset;
                        todo = MIN(remain, size);
                        memcpy(dst, src, todo);
                        dst += todo;
                        cc->cc_buf_len -= todo;
                        if (todo < remain) {
                                cc->cc_offset += todo;
                                break;
                        }
                        size -= todo;
                        cc->cc_iov++;
                        cc->cc_offset = 0;
                        if (size == 0)
                                break;
                }
                break;
        default:
#ifdef INVARIANTS
                panic("%s: invalid buffer type %d", __func__, cc->cc_type);
#endif
                break;
        }
}

/*
 * To avoid advancing 'cursor', make a local copy that gets advanced
 * instead.
 */
void
crypto_cursor_copydata_noadv(struct crypto_buffer_cursor *cc, int size,
    void *vdst)
{
        struct crypto_buffer_cursor copy;

        copy = *cc;
        crypto_cursor_copydata(&copy, size, vdst);
}

/*
 * Apply function f to the data in an iovec list starting "off" bytes from
 * the beginning, continuing for "len" bytes.
 */
static int
cuio_apply(struct uio *uio, int off, int len,
    int (*f)(void *, const void *, u_int), void *arg)
{
        struct iovec *iov = uio->uio_iov;
        int iol __diagused = uio->uio_iovcnt;
        unsigned count;
        int rval;

        CUIO_SKIP();
        while (len > 0) {
                KASSERT(iol >= 0, ("%s: empty", __func__));
                count = min(iov->iov_len - off, len);
                rval = (*f)(arg, ((caddr_t)iov->iov_base) + off, count);
                if (rval)
                        return (rval);
                len -= count;
                off = 0;
                iol--;
                iov++;
        }
        return (0);
}

void
crypto_copyback(struct cryptop *crp, int off, int size, const void *src)
{
        struct crypto_buffer *cb;

        if (crp->crp_obuf.cb_type != CRYPTO_BUF_NONE)
                cb = &crp->crp_obuf;
        else
                cb = &crp->crp_buf;
        switch (cb->cb_type) {
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                m_copyback(cb->cb_mbuf, off, size, src);
                break;
#if CRYPTO_MAY_HAVE_VMPAGE
        case CRYPTO_BUF_VMPAGE:
                MPASS(size <= cb->cb_vm_page_len);
                MPASS(size + off <=
                    cb->cb_vm_page_len + cb->cb_vm_page_offset);
                cvm_page_copyback(cb->cb_vm_page,
                    off + cb->cb_vm_page_offset, size, src);
                break;
#endif /* CRYPTO_MAY_HAVE_VMPAGE */
        case CRYPTO_BUF_UIO:
                cuio_copyback(cb->cb_uio, off, size, src);
                break;
        case CRYPTO_BUF_CONTIG:
                MPASS(off + size <= cb->cb_buf_len);
                bcopy(src, cb->cb_buf + off, size);
                break;
        default:
#ifdef INVARIANTS
                panic("invalid crp buf type %d", cb->cb_type);
#endif
                break;
        }
}

void
crypto_copydata(struct cryptop *crp, int off, int size, void *dst)
{

        switch (crp->crp_buf.cb_type) {
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                m_copydata(crp->crp_buf.cb_mbuf, off, size, dst);
                break;
#if CRYPTO_MAY_HAVE_VMPAGE
        case CRYPTO_BUF_VMPAGE:
                MPASS(size <= crp->crp_buf.cb_vm_page_len);
                MPASS(size + off <= crp->crp_buf.cb_vm_page_len +
                    crp->crp_buf.cb_vm_page_offset);
                cvm_page_copydata(crp->crp_buf.cb_vm_page,
                    off + crp->crp_buf.cb_vm_page_offset, size, dst);
                break;
#endif /* CRYPTO_MAY_HAVE_VMPAGE */
        case CRYPTO_BUF_UIO:
                cuio_copydata(crp->crp_buf.cb_uio, off, size, dst);
                break;
        case CRYPTO_BUF_CONTIG:
                MPASS(off + size <= crp->crp_buf.cb_buf_len);
                bcopy(crp->crp_buf.cb_buf + off, dst, size);
                break;
        default:
#ifdef INVARIANTS
                panic("invalid crp buf type %d", crp->crp_buf.cb_type);
#endif
                break;
        }
}

int
crypto_apply_buf(struct crypto_buffer *cb, int off, int len,
    int (*f)(void *, const void *, u_int), void *arg)
{
        int error;

        switch (cb->cb_type) {
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                error = m_apply(cb->cb_mbuf, off, len,
                    (int (*)(void *, void *, u_int))f, arg);
                break;
        case CRYPTO_BUF_UIO:
                error = cuio_apply(cb->cb_uio, off, len, f, arg);
                break;
#if CRYPTO_MAY_HAVE_VMPAGE
        case CRYPTO_BUF_VMPAGE:
                error = cvm_page_apply(cb->cb_vm_page,
                    off + cb->cb_vm_page_offset, len, f, arg);
                break;
#endif /* CRYPTO_MAY_HAVE_VMPAGE */
        case CRYPTO_BUF_CONTIG:
                MPASS(off + len <= cb->cb_buf_len);
                error = (*f)(arg, cb->cb_buf + off, len);
                break;
        default:
#ifdef INVARIANTS
                panic("invalid crypto buf type %d", cb->cb_type);
#endif
                error = 0;
                break;
        }
        return (error);
}

int
crypto_apply(struct cryptop *crp, int off, int len,
    int (*f)(void *, const void *, u_int), void *arg)
{
        return (crypto_apply_buf(&crp->crp_buf, off, len, f, arg));
}

static inline void *
m_contiguous_subsegment(struct mbuf *m, size_t skip, size_t len)
{
        int rel_off;

        MPASS(skip <= INT_MAX);

        m = m_getptr(m, (int)skip, &rel_off);
        if (m == NULL)
                return (NULL);

        MPASS(rel_off >= 0);
        skip = rel_off;
        if (skip + len > m->m_len)
                return (NULL);

        if (m->m_flags & M_EXTPG)
                return (m_epg_contiguous_subsegment(m, skip, len));
        return (mtod(m, char*) + skip);
}

static inline void *
cuio_contiguous_segment(struct uio *uio, size_t skip, size_t len)
{
        int rel_off, idx;

        MPASS(skip <= INT_MAX);
        idx = cuio_getptr(uio, (int)skip, &rel_off);
        if (idx < 0)
                return (NULL);

        MPASS(rel_off >= 0);
        skip = rel_off;
        if (skip + len > uio->uio_iov[idx].iov_len)
                return (NULL);
        return ((char *)uio->uio_iov[idx].iov_base + skip);
}

void *
crypto_buffer_contiguous_subsegment(struct crypto_buffer *cb, size_t skip,
    size_t len)
{

        switch (cb->cb_type) {
        case CRYPTO_BUF_MBUF:
        case CRYPTO_BUF_SINGLE_MBUF:
                return (m_contiguous_subsegment(cb->cb_mbuf, skip, len));
        case CRYPTO_BUF_UIO:
                return (cuio_contiguous_segment(cb->cb_uio, skip, len));
#if CRYPTO_MAY_HAVE_VMPAGE
        case CRYPTO_BUF_VMPAGE:
                MPASS(skip + len <= cb->cb_vm_page_len);
                return (cvm_page_contiguous_segment(cb->cb_vm_page,
                    skip + cb->cb_vm_page_offset, len));
#endif /* CRYPTO_MAY_HAVE_VMPAGE */
        case CRYPTO_BUF_CONTIG:
                MPASS(skip + len <= cb->cb_buf_len);
                return (cb->cb_buf + skip);
        default:
#ifdef INVARIANTS
                panic("invalid crp buf type %d", cb->cb_type);
#endif
                return (NULL);
        }
}

void *
crypto_contiguous_subsegment(struct cryptop *crp, size_t skip, size_t len)
{
        return (crypto_buffer_contiguous_subsegment(&crp->crp_buf, skip, len));
}