blob: 55ce99ddb912f9bd603e5031a328eba96e37fc78 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Berkeley style UIO structures - Alan Cox 1994.
3 *
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.
8 */
David Howells607ca462012-10-13 10:46:48 +01009#ifndef __LINUX_UIO_H
10#define __LINUX_UIO_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Kent Overstreet92236872013-11-27 16:29:46 -080012#include <linux/kernel.h>
Al Viroaa28de22017-06-29 21:45:10 -040013#include <linux/thread_info.h>
David Howells607ca462012-10-13 10:46:48 +010014#include <uapi/linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Kent Overstreet92236872013-11-27 16:29:46 -080016struct page;
Al Viro241699c2016-09-22 16:33:12 -040017struct pipe_inode_info;
Jiri Slaby812ed032009-07-29 15:04:19 -070018
19struct kvec {
20 void *iov_base; /* and that should *never* hold a userland pointer */
21 size_t iov_len;
22};
23
David Howells00e23702018-10-22 13:07:28 +010024enum iter_type {
Al Viro62a80672014-04-04 23:12:29 -040025 ITER_IOVEC = 0,
26 ITER_KVEC = 2,
27 ITER_BVEC = 4,
Al Viro241699c2016-09-22 16:33:12 -040028 ITER_PIPE = 8,
David Howells9ea9ce02018-10-20 00:57:56 +010029 ITER_DISCARD = 16,
Al Viro62a80672014-04-04 23:12:29 -040030};
31
Kent Overstreet92236872013-11-27 16:29:46 -080032struct iov_iter {
David Howellsaa563d72018-10-20 00:57:56 +010033 unsigned int type;
Kent Overstreet92236872013-11-27 16:29:46 -080034 size_t iov_offset;
35 size_t count;
Al Viro62a80672014-04-04 23:12:29 -040036 union {
37 const struct iovec *iov;
Al Viroa2804552014-11-27 14:48:42 -050038 const struct kvec *kvec;
Al Viro62a80672014-04-04 23:12:29 -040039 const struct bio_vec *bvec;
Al Viro241699c2016-09-22 16:33:12 -040040 struct pipe_inode_info *pipe;
Al Viro62a80672014-04-04 23:12:29 -040041 };
Al Viro241699c2016-09-22 16:33:12 -040042 union {
43 unsigned long nr_segs;
Al Viro27c0e372017-02-17 18:42:24 -050044 struct {
45 int idx;
46 int start_idx;
47 };
Al Viro241699c2016-09-22 16:33:12 -040048 };
Kent Overstreet92236872013-11-27 16:29:46 -080049};
50
David Howells00e23702018-10-22 13:07:28 +010051static inline enum iter_type iov_iter_type(const struct iov_iter *i)
52{
53 return i->type & ~(READ | WRITE);
54}
55
56static inline bool iter_is_iovec(const struct iov_iter *i)
57{
58 return iov_iter_type(i) == ITER_IOVEC;
59}
60
61static inline bool iov_iter_is_kvec(const struct iov_iter *i)
62{
63 return iov_iter_type(i) == ITER_KVEC;
64}
65
66static inline bool iov_iter_is_bvec(const struct iov_iter *i)
67{
68 return iov_iter_type(i) == ITER_BVEC;
69}
70
71static inline bool iov_iter_is_pipe(const struct iov_iter *i)
72{
73 return iov_iter_type(i) == ITER_PIPE;
74}
75
David Howells9ea9ce02018-10-20 00:57:56 +010076static inline bool iov_iter_is_discard(const struct iov_iter *i)
77{
78 return iov_iter_type(i) == ITER_DISCARD;
79}
80
David Howells00e23702018-10-22 13:07:28 +010081static inline unsigned char iov_iter_rw(const struct iov_iter *i)
82{
83 return i->type & (READ | WRITE);
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * Total number of bytes covered by an iovec.
88 *
89 * NOTE that it is not safe to use this function until all the iovec's
90 * segment lengths have been validated. Because the individual lengths can
91 * overflow a size_t when added together.
92 */
93static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
94{
95 unsigned long seg;
96 size_t ret = 0;
97
98 for (seg = 0; seg < nr_segs; seg++)
99 ret += iov[seg].iov_len;
100 return ret;
101}
102
Kent Overstreet92236872013-11-27 16:29:46 -0800103static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
104{
105 return (struct iovec) {
106 .iov_base = iter->iov->iov_base + iter->iov_offset,
107 .iov_len = min(iter->count,
108 iter->iov->iov_len - iter->iov_offset),
109 };
110}
111
112#define iov_for_each(iov, iter, start) \
David Howells00e23702018-10-22 13:07:28 +0100113 if (iov_iter_type(start) == ITER_IOVEC || \
114 iov_iter_type(start) == ITER_KVEC) \
Kent Overstreet92236872013-11-27 16:29:46 -0800115 for (iter = (start); \
116 (iter).count && \
117 ((iov = iov_iter_iovec(&(iter))), 1); \
118 iov_iter_advance(&(iter), (iov).iov_len))
119
Kent Overstreet92236872013-11-27 16:29:46 -0800120size_t iov_iter_copy_from_user_atomic(struct page *page,
121 struct iov_iter *i, unsigned long offset, size_t bytes);
Kent Overstreet92236872013-11-27 16:29:46 -0800122void iov_iter_advance(struct iov_iter *i, size_t bytes);
Al Viro27c0e372017-02-17 18:42:24 -0500123void iov_iter_revert(struct iov_iter *i, size_t bytes);
Kent Overstreet92236872013-11-27 16:29:46 -0800124int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
125size_t iov_iter_single_seg_count(const struct iov_iter *i);
Al Viro6e58e792014-02-03 17:07:03 -0500126size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
127 struct iov_iter *i);
Al Virof0d1bec2014-04-03 15:05:18 -0400128size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
129 struct iov_iter *i);
Al Viroaa28de22017-06-29 21:45:10 -0400130
131size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
132size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
133bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i);
134size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
135bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i);
136
137static __always_inline __must_check
138size_t copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
139{
140 if (unlikely(!check_copy_size(addr, bytes, true)))
Al Viroc43aeb12017-07-10 07:40:49 -0400141 return 0;
Al Viroaa28de22017-06-29 21:45:10 -0400142 else
143 return _copy_to_iter(addr, bytes, i);
144}
145
146static __always_inline __must_check
147size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
148{
149 if (unlikely(!check_copy_size(addr, bytes, false)))
Al Viroc43aeb12017-07-10 07:40:49 -0400150 return 0;
Al Viroaa28de22017-06-29 21:45:10 -0400151 else
152 return _copy_from_iter(addr, bytes, i);
153}
154
155static __always_inline __must_check
156bool copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
157{
158 if (unlikely(!check_copy_size(addr, bytes, false)))
159 return false;
160 else
161 return _copy_from_iter_full(addr, bytes, i);
162}
163
164static __always_inline __must_check
165size_t copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
166{
167 if (unlikely(!check_copy_size(addr, bytes, false)))
Al Viroc43aeb12017-07-10 07:40:49 -0400168 return 0;
Al Viroaa28de22017-06-29 21:45:10 -0400169 else
170 return _copy_from_iter_nocache(addr, bytes, i);
171}
172
173static __always_inline __must_check
174bool copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
175{
176 if (unlikely(!check_copy_size(addr, bytes, false)))
177 return false;
178 else
179 return _copy_from_iter_full_nocache(addr, bytes, i);
180}
181
Dan Williams0aed55a2017-05-29 12:22:50 -0700182#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
183/*
184 * Note, users like pmem that depend on the stricter semantics of
185 * copy_from_iter_flushcache() than copy_from_iter_nocache() must check for
186 * IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) before assuming that the
187 * destination is flushed from the cache on return.
188 */
Linus Torvalds6a37e942017-07-07 20:39:20 -0700189size_t _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i);
Dan Williams0aed55a2017-05-29 12:22:50 -0700190#else
Linus Torvalds6a37e942017-07-07 20:39:20 -0700191#define _copy_from_iter_flushcache _copy_from_iter_nocache
Dan Williams0aed55a2017-05-29 12:22:50 -0700192#endif
Linus Torvalds6a37e942017-07-07 20:39:20 -0700193
Dan Williams87803562018-05-03 17:06:31 -0700194#ifdef CONFIG_ARCH_HAS_UACCESS_MCSAFE
Dan Williams522239b2018-05-22 23:17:03 -0700195size_t _copy_to_iter_mcsafe(const void *addr, size_t bytes, struct iov_iter *i);
Dan Williams87803562018-05-03 17:06:31 -0700196#else
197#define _copy_to_iter_mcsafe _copy_to_iter
198#endif
199
Linus Torvalds6a37e942017-07-07 20:39:20 -0700200static __always_inline __must_check
201size_t copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i)
202{
203 if (unlikely(!check_copy_size(addr, bytes, false)))
Al Viroc43aeb12017-07-10 07:40:49 -0400204 return 0;
Linus Torvalds6a37e942017-07-07 20:39:20 -0700205 else
206 return _copy_from_iter_flushcache(addr, bytes, i);
207}
208
Dan Williams87803562018-05-03 17:06:31 -0700209static __always_inline __must_check
210size_t copy_to_iter_mcsafe(void *addr, size_t bytes, struct iov_iter *i)
211{
Dave Jiangdfb06cb2018-09-05 13:31:40 -0700212 if (unlikely(!check_copy_size(addr, bytes, true)))
Dan Williams87803562018-05-03 17:06:31 -0700213 return 0;
214 else
215 return _copy_to_iter_mcsafe(addr, bytes, i);
216}
217
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400218size_t iov_iter_zero(size_t bytes, struct iov_iter *);
Al Viro886a3912014-03-05 13:50:45 -0500219unsigned long iov_iter_alignment(const struct iov_iter *i);
Al Viro357f4352016-04-08 19:05:19 -0400220unsigned long iov_iter_gap_alignment(const struct iov_iter *i);
David Howellsaa563d72018-10-20 00:57:56 +0100221void iov_iter_init(struct iov_iter *i, unsigned int direction, const struct iovec *iov,
Al Viro71d8e532014-03-05 19:28:09 -0500222 unsigned long nr_segs, size_t count);
David Howellsaa563d72018-10-20 00:57:56 +0100223void iov_iter_kvec(struct iov_iter *i, unsigned int direction, const struct kvec *kvec,
Al Viro05afcb72015-01-23 01:08:07 -0500224 unsigned long nr_segs, size_t count);
David Howellsaa563d72018-10-20 00:57:56 +0100225void iov_iter_bvec(struct iov_iter *i, unsigned int direction, const struct bio_vec *bvec,
Al Viroabb78f82014-11-24 14:46:11 -0500226 unsigned long nr_segs, size_t count);
David Howellsaa563d72018-10-20 00:57:56 +0100227void iov_iter_pipe(struct iov_iter *i, unsigned int direction, struct pipe_inode_info *pipe,
Al Viro241699c2016-09-22 16:33:12 -0400228 size_t count);
David Howells9ea9ce02018-10-20 00:57:56 +0100229void iov_iter_discard(struct iov_iter *i, unsigned int direction, size_t count);
Al Viro7b2c99d2014-03-15 04:05:57 -0400230ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages,
Miklos Szeredi2c809292014-09-24 17:09:11 +0200231 size_t maxsize, unsigned maxpages, size_t *start);
Al Viro91f79c42014-03-21 04:58:33 -0400232ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages,
233 size_t maxsize, size_t *start);
Al Virof67da302014-03-19 01:16:16 -0400234int iov_iter_npages(const struct iov_iter *i, int maxpages);
Kent Overstreet92236872013-11-27 16:29:46 -0800235
Al Viro4b8164b2015-01-31 20:08:47 -0500236const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags);
237
Al Virob57332b2016-10-10 13:57:37 -0400238static inline size_t iov_iter_count(const struct iov_iter *i)
Kent Overstreet92236872013-11-27 16:29:46 -0800239{
240 return i->count;
241}
242
Omar Sandovalbd8e0ff2015-03-17 14:04:02 -0700243/*
Al Viro0b86dbf2014-06-23 08:44:40 +0100244 * Cap the iov_iter by given limit; note that the second argument is
245 * *not* the new size - it's upper limit for such. Passing it a value
246 * greater than the amount of data in iov_iter is fine - it'll just do
247 * nothing in that case.
248 */
249static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
Al Viro0c949332014-03-22 06:51:37 -0400250{
Al Viro0b86dbf2014-06-23 08:44:40 +0100251 /*
252 * count doesn't have to fit in size_t - comparison extends both
253 * operands to u64 here and any value that would be truncated by
254 * conversion in assignement is by definition greater than all
255 * values of size_t, including old i->count.
256 */
Al Viro0c949332014-03-22 06:51:37 -0400257 if (i->count > count)
258 i->count = count;
259}
260
Al Virob42b15f2014-04-04 12:15:19 -0400261/*
262 * reexpand a previously truncated iterator; count must be no more than how much
263 * we had shrunk it.
264 */
265static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
266{
267 i->count = count;
268}
Al Viro36f7a8a2015-12-06 16:49:22 -0500269size_t csum_and_copy_to_iter(const void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Viroa604ec72014-11-24 01:08:00 -0500270size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Virocbbd26b2016-11-01 22:09:04 -0400271bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Virob42b15f2014-04-04 12:15:19 -0400272
Al Virobc917be2015-03-21 17:45:43 -0400273int import_iovec(int type, const struct iovec __user * uvector,
274 unsigned nr_segs, unsigned fast_segs,
275 struct iovec **iov, struct iov_iter *i);
276
277#ifdef CONFIG_COMPAT
278struct compat_iovec;
279int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
280 unsigned nr_segs, unsigned fast_segs,
281 struct iovec **iov, struct iov_iter *i);
282#endif
283
284int import_single_range(int type, void __user *buf, size_t len,
285 struct iovec *iov, struct iov_iter *i);
286
Al Viro09cf6982017-02-18 01:44:03 -0500287int iov_iter_for_each_range(struct iov_iter *i, size_t bytes,
288 int (*f)(struct kvec *vec, void *context),
289 void *context);
290
Jiri Slaby812ed032009-07-29 15:04:19 -0700291#endif