2 * iovec manipulation routines.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
11 * Andrew Lunn : Errors in iovec copying.
12 * Pedro Roque : Added memcpy_fromiovecend and
13 * csum_..._fromiovecend.
14 * Andi Kleen : fixed error handling for 2.1
15 * Alexey Kuznetsov: 2.1 optimisations
16 * Andi Kleen : Fix csum*fromiovecend for IPv6.
19 #include <linux/errno.h>
20 #include <linux/module.h>
21 #include <linux/kernel.h>
23 #include <linux/slab.h>
24 #include <linux/net.h>
25 #include <linux/in6.h>
26 #include <asm/uaccess.h>
27 #include <asm/byteorder.h>
28 #include <net/checksum.h>
32 * Verify iovec. The caller must ensure that the iovec is big enough
33 * to hold the message iovec.
35 * Save time not doing access_ok. copy_*_user will make this work
39 int verify_iovec(struct msghdr
*m
, struct iovec
*iov
, struct sockaddr
*address
, int mode
)
44 if (mode
== VERIFY_READ
) {
45 err
= move_addr_to_kernel(m
->msg_name
, m
->msg_namelen
,
50 m
->msg_name
= address
;
55 size
= m
->msg_iovlen
* sizeof(struct iovec
);
56 if (copy_from_user(iov
, m
->msg_iov
, size
))
62 for (ct
= 0; ct
< m
->msg_iovlen
; ct
++) {
63 err
+= iov
[ct
].iov_len
;
65 * Goal is not to verify user data, but to prevent returning
66 * negative value, which is interpreted as errno.
67 * Overflow is still possible, but it is harmless.
77 * Copy kernel to iovec. Returns -EFAULT on error.
79 * Note: this modifies the original iovec.
82 int memcpy_toiovec(struct iovec
*iov
, unsigned char *kdata
, int len
)
86 int copy
= min_t(unsigned int, iov
->iov_len
, len
);
87 if (copy_to_user(iov
->iov_base
, kdata
, copy
))
92 iov
->iov_base
+= copy
;
101 * Copy kernel to iovec. Returns -EFAULT on error.
104 int memcpy_toiovecend(const struct iovec
*iov
, unsigned char *kdata
,
108 for (; len
> 0; ++iov
) {
109 /* Skip over the finished iovecs */
110 if (unlikely(offset
>= iov
->iov_len
)) {
111 offset
-= iov
->iov_len
;
114 copy
= min_t(unsigned int, iov
->iov_len
- offset
, len
);
115 if (copy_to_user(iov
->iov_base
+ offset
, kdata
, copy
))
126 * Copy iovec to kernel. Returns -EFAULT on error.
128 * Note: this modifies the original iovec.
131 int memcpy_fromiovec(unsigned char *kdata
, struct iovec
*iov
, int len
)
135 int copy
= min_t(unsigned int, len
, iov
->iov_len
);
136 if (copy_from_user(kdata
, iov
->iov_base
, copy
))
140 iov
->iov_base
+= copy
;
141 iov
->iov_len
-= copy
;
150 * Copy iovec from kernel. Returns -EFAULT on error.
153 int memcpy_fromiovecend(unsigned char *kdata
, const struct iovec
*iov
,
156 /* Skip over the finished iovecs */
157 while (offset
>= iov
->iov_len
) {
158 offset
-= iov
->iov_len
;
163 u8 __user
*base
= iov
->iov_base
+ offset
;
164 int copy
= min_t(unsigned int, len
, iov
->iov_len
- offset
);
167 if (copy_from_user(kdata
, base
, copy
))
178 * And now for the all-in-one: copy and checksum from a user iovec
179 * directly to a datagram
180 * Calls to csum_partial but the last must be in 32 bit chunks
182 * ip_build_xmit must ensure that when fragmenting only the last
183 * call to this function will be unaligned also.
185 int csum_partial_copy_fromiovecend(unsigned char *kdata
, struct iovec
*iov
,
186 int offset
, unsigned int len
, __wsum
*csump
)
188 __wsum csum
= *csump
;
189 int partial_cnt
= 0, err
= 0;
191 /* Skip over the finished iovecs */
192 while (offset
>= iov
->iov_len
) {
193 offset
-= iov
->iov_len
;
198 u8 __user
*base
= iov
->iov_base
+ offset
;
199 int copy
= min_t(unsigned int, len
, iov
->iov_len
- offset
);
203 /* There is a remnant from previous iov. */
205 int par_len
= 4 - partial_cnt
;
207 /* iov component is too short ... */
208 if (par_len
> copy
) {
209 if (copy_from_user(kdata
, base
, copy
))
218 *csump
= csum_partial(kdata
- partial_cnt
,
222 if (copy_from_user(kdata
, base
, par_len
))
224 csum
= csum_partial(kdata
- partial_cnt
, 4, csum
);
233 partial_cnt
= copy
% 4;
236 if (copy_from_user(kdata
+ copy
, base
+ copy
,
243 csum
= csum_and_copy_from_user(base
, kdata
, copy
,
248 len
-= copy
+ partial_cnt
;
249 kdata
+= copy
+ partial_cnt
;
261 EXPORT_SYMBOL(csum_partial_copy_fromiovecend
);
262 EXPORT_SYMBOL(memcpy_fromiovec
);
263 EXPORT_SYMBOL(memcpy_fromiovecend
);
264 EXPORT_SYMBOL(memcpy_toiovec
);
265 EXPORT_SYMBOL(memcpy_toiovecend
);