1 /* $FreeBSD: src/sys/opencrypto/criov.c,v 1.5 2006/06/04 22:15:13 pjd Exp $ */
2 /* $OpenBSD: criov.c,v 1.9 2002/01/29 15:48:29 jason Exp $ */
5 * Copyright (c) 1999 Theo de Raadt
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/param.h>
32 #include <sys/systm.h>
35 #include <sys/errno.h>
36 #include <sys/malloc.h>
37 #include <sys/kernel.h>
41 #include <opencrypto/cryptodev.h>
44 * This macro is only for avoiding code duplication, as we need to skip
45 * given number of bytes in the same way in three functions below.
47 #define CUIO_SKIP() do { \
48 KASSERT(off >= 0, ("%s: off %d < 0", __func__, off)); \
49 KASSERT(len >= 0, ("%s: len %d < 0", __func__, len)); \
51 KASSERT(iol >= 0, ("%s: empty in skip", __func__)); \
52 if (off < iov->iov_len) \
54 off -= iov->iov_len; \
61 cuio_copydata(struct uio
* uio
, int off
, int len
, caddr_t cp
)
63 struct iovec
*iov
= uio
->uio_iov
;
64 int iol
= uio
->uio_iovcnt
;
69 KASSERT(iol
>= 0, ("%s: empty", __func__
));
70 count
= min(iov
->iov_len
- off
, len
);
71 bcopy(((caddr_t
)iov
->iov_base
) + off
, cp
, count
);
81 cuio_copyback(struct uio
* uio
, int off
, int len
, caddr_t cp
)
83 struct iovec
*iov
= uio
->uio_iov
;
84 int iol
= uio
->uio_iovcnt
;
89 KASSERT(iol
>= 0, ("%s: empty", __func__
));
90 count
= min(iov
->iov_len
- off
, len
);
91 bcopy(cp
, ((caddr_t
)iov
->iov_base
) + off
, count
);
101 * Return a pointer to iov/offset of location in iovec list.
104 cuio_getptr(struct uio
*uio
, int loc
, int *off
)
106 struct iovec
*iov
= uio
->uio_iov
;
107 int iol
= uio
->uio_iovcnt
;
110 /* Normal end of search */
111 if (loc
< iov
->iov_len
) {
119 /* Point at the end of valid data */
133 * Apply function f to the data in an iovec list starting "off" bytes from
134 * the beginning, continuing for "len" bytes.
137 cuio_apply(struct uio
*uio
, int off
, int len
, int (*f
)(void *, void *, u_int
),
140 struct iovec
*iov
= uio
->uio_iov
;
141 int iol
= uio
->uio_iovcnt
;
147 KASSERT(iol
>= 0, ("%s: empty", __func__
));
148 count
= min(iov
->iov_len
- off
, len
);
149 rval
= (*f
)(arg
, ((caddr_t
)iov
->iov_base
) + off
, count
);
161 crypto_copyback(int flags
, caddr_t buf
, int off
, int size
, caddr_t in
)
164 if ((flags
& CRYPTO_F_IMBUF
) != 0)
165 m_copyback((struct mbuf
*)buf
, off
, size
, in
);
166 else if ((flags
& CRYPTO_F_IOV
) != 0)
167 cuio_copyback((struct uio
*)buf
, off
, size
, in
);
169 bcopy(in
, buf
+ off
, size
);
173 crypto_copydata(int flags
, caddr_t buf
, int off
, int size
, caddr_t out
)
176 if ((flags
& CRYPTO_F_IMBUF
) != 0)
177 m_copydata((struct mbuf
*)buf
, off
, size
, out
);
178 else if ((flags
& CRYPTO_F_IOV
) != 0)
179 cuio_copydata((struct uio
*)buf
, off
, size
, out
);
181 bcopy(buf
+ off
, out
, size
);
185 crypto_apply(int flags
, caddr_t buf
, int off
, int len
,
186 int (*f
)(void *, void *, u_int
), void *arg
)
190 if ((flags
& CRYPTO_F_IMBUF
) != 0)
191 error
= m_apply((struct mbuf
*)buf
, off
, len
, f
, arg
);
192 else if ((flags
& CRYPTO_F_IOV
) != 0)
193 error
= cuio_apply((struct uio
*)buf
, off
, len
, f
, arg
);
195 error
= (*f
)(arg
, buf
+ off
, len
);