2 * Berkeley style UIO structures - Alan Cox 1994.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/thread_info.h>
14 #include <uapi/linux/uio.h>
17 struct pipe_inode_info;
20 void *iov_base; /* and that should *never* hold a userland pointer */
36 const struct iovec *iov;
37 const struct kvec *kvec;
38 const struct bio_vec *bvec;
39 struct pipe_inode_info *pipe;
42 unsigned long nr_segs;
51 * Total number of bytes covered by an iovec.
53 * NOTE that it is not safe to use this function until all the iovec's
54 * segment lengths have been validated. Because the individual lengths can
55 * overflow a size_t when added together.
57 static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
62 for (seg = 0; seg < nr_segs; seg++)
63 ret += iov[seg].iov_len;
67 static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
69 return (struct iovec) {
70 .iov_base = iter->iov->iov_base + iter->iov_offset,
71 .iov_len = min(iter->count,
72 iter->iov->iov_len - iter->iov_offset),
76 #define iov_for_each(iov, iter, start) \
77 if (!((start).type & (ITER_BVEC | ITER_PIPE))) \
78 for (iter = (start); \
80 ((iov = iov_iter_iovec(&(iter))), 1); \
81 iov_iter_advance(&(iter), (iov).iov_len))
83 size_t iov_iter_copy_from_user_atomic(struct page *page,
84 struct iov_iter *i, unsigned long offset, size_t bytes);
85 void iov_iter_advance(struct iov_iter *i, size_t bytes);
86 void iov_iter_revert(struct iov_iter *i, size_t bytes);
87 int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
88 size_t iov_iter_single_seg_count(const struct iov_iter *i);
89 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
91 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
94 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
95 size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
96 bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i);
97 size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
98 bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i);
100 static __always_inline __must_check
101 size_t copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
103 if (unlikely(!check_copy_size(addr, bytes, true)))
106 return _copy_to_iter(addr, bytes, i);
109 static __always_inline __must_check
110 size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
112 if (unlikely(!check_copy_size(addr, bytes, false)))
115 return _copy_from_iter(addr, bytes, i);
118 static __always_inline __must_check
119 bool copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
121 if (unlikely(!check_copy_size(addr, bytes, false)))
124 return _copy_from_iter_full(addr, bytes, i);
127 static __always_inline __must_check
128 size_t copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
130 if (unlikely(!check_copy_size(addr, bytes, false)))
133 return _copy_from_iter_nocache(addr, bytes, i);
136 static __always_inline __must_check
137 bool copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
139 if (unlikely(!check_copy_size(addr, bytes, false)))
142 return _copy_from_iter_full_nocache(addr, bytes, i);
145 #ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
147 * Note, users like pmem that depend on the stricter semantics of
148 * copy_from_iter_flushcache() than copy_from_iter_nocache() must check for
149 * IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) before assuming that the
150 * destination is flushed from the cache on return.
152 size_t _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i);
154 #define _copy_from_iter_flushcache _copy_from_iter_nocache
157 #ifdef CONFIG_ARCH_HAS_UACCESS_MCSAFE
158 size_t _copy_to_iter_mcsafe(const void *addr, size_t bytes, struct iov_iter *i);
160 #define _copy_to_iter_mcsafe _copy_to_iter
163 static __always_inline __must_check
164 size_t copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i)
166 if (unlikely(!check_copy_size(addr, bytes, false)))
169 return _copy_from_iter_flushcache(addr, bytes, i);
172 static __always_inline __must_check
173 size_t copy_to_iter_mcsafe(void *addr, size_t bytes, struct iov_iter *i)
175 if (unlikely(!check_copy_size(addr, bytes, false)))
178 return _copy_to_iter_mcsafe(addr, bytes, i);
181 size_t iov_iter_zero(size_t bytes, struct iov_iter *);
182 unsigned long iov_iter_alignment(const struct iov_iter *i);
183 unsigned long iov_iter_gap_alignment(const struct iov_iter *i);
184 void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov,
185 unsigned long nr_segs, size_t count);
186 void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec,
187 unsigned long nr_segs, size_t count);
188 void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec,
189 unsigned long nr_segs, size_t count);
190 void iov_iter_pipe(struct iov_iter *i, int direction, struct pipe_inode_info *pipe,
192 ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages,
193 size_t maxsize, unsigned maxpages, size_t *start);
194 ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages,
195 size_t maxsize, size_t *start);
196 int iov_iter_npages(const struct iov_iter *i, int maxpages);
198 const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags);
200 static inline size_t iov_iter_count(const struct iov_iter *i)
205 static inline bool iter_is_iovec(const struct iov_iter *i)
207 return !(i->type & (ITER_BVEC | ITER_KVEC | ITER_PIPE));
211 * Get one of READ or WRITE out of iter->type without any other flags OR'd in
214 * The ?: is just for type safety.
216 #define iov_iter_rw(i) ((0 ? (struct iov_iter *)0 : (i))->type & (READ | WRITE))
219 * Cap the iov_iter by given limit; note that the second argument is
220 * *not* the new size - it's upper limit for such. Passing it a value
221 * greater than the amount of data in iov_iter is fine - it'll just do
222 * nothing in that case.
224 static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
227 * count doesn't have to fit in size_t - comparison extends both
228 * operands to u64 here and any value that would be truncated by
229 * conversion in assignement is by definition greater than all
230 * values of size_t, including old i->count.
232 if (i->count > count)
237 * reexpand a previously truncated iterator; count must be no more than how much
240 static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
244 size_t csum_and_copy_to_iter(const void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
245 size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
246 bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
248 int import_iovec(int type, const struct iovec __user * uvector,
249 unsigned nr_segs, unsigned fast_segs,
250 struct iovec **iov, struct iov_iter *i);
254 int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
255 unsigned nr_segs, unsigned fast_segs,
256 struct iovec **iov, struct iov_iter *i);
259 int import_single_range(int type, void __user *buf, size_t len,
260 struct iovec *iov, struct iov_iter *i);
262 int iov_iter_for_each_range(struct iov_iter *i, size_t bytes,
263 int (*f)(struct kvec *vec, void *context),