blob: 8a642cda641c85c82f823979709ab3157dc28d4b [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
Al Viro62a80672014-04-04 23:12:29 -040024enum {
25 ITER_IOVEC = 0,
26 ITER_KVEC = 2,
27 ITER_BVEC = 4,
Al Viro241699c2016-09-22 16:33:12 -040028 ITER_PIPE = 8,
Al Viro62a80672014-04-04 23:12:29 -040029};
30
Kent Overstreet92236872013-11-27 16:29:46 -080031struct iov_iter {
Al Viro71d8e532014-03-05 19:28:09 -050032 int type;
Kent Overstreet92236872013-11-27 16:29:46 -080033 size_t iov_offset;
34 size_t count;
Al Viro62a80672014-04-04 23:12:29 -040035 union {
36 const struct iovec *iov;
Al Viroa2804552014-11-27 14:48:42 -050037 const struct kvec *kvec;
Al Viro62a80672014-04-04 23:12:29 -040038 const struct bio_vec *bvec;
Al Viro241699c2016-09-22 16:33:12 -040039 struct pipe_inode_info *pipe;
Al Viro62a80672014-04-04 23:12:29 -040040 };
Al Viro241699c2016-09-22 16:33:12 -040041 union {
42 unsigned long nr_segs;
Al Viro27c0e372017-02-17 18:42:24 -050043 struct {
44 int idx;
45 int start_idx;
46 };
Al Viro241699c2016-09-22 16:33:12 -040047 };
Kent Overstreet92236872013-11-27 16:29:46 -080048};
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Total number of bytes covered by an iovec.
52 *
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.
56 */
57static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
58{
59 unsigned long seg;
60 size_t ret = 0;
61
62 for (seg = 0; seg < nr_segs; seg++)
63 ret += iov[seg].iov_len;
64 return ret;
65}
66
Kent Overstreet92236872013-11-27 16:29:46 -080067static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
68{
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),
73 };
74}
75
76#define iov_for_each(iov, iter, start) \
Al Viro241699c2016-09-22 16:33:12 -040077 if (!((start).type & (ITER_BVEC | ITER_PIPE))) \
Kent Overstreet92236872013-11-27 16:29:46 -080078 for (iter = (start); \
79 (iter).count && \
80 ((iov = iov_iter_iovec(&(iter))), 1); \
81 iov_iter_advance(&(iter), (iov).iov_len))
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to);
Rusty Russelld2f83e92013-05-17 09:05:21 +093084
Kent Overstreet92236872013-11-27 16:29:46 -080085size_t iov_iter_copy_from_user_atomic(struct page *page,
86 struct iov_iter *i, unsigned long offset, size_t bytes);
Kent Overstreet92236872013-11-27 16:29:46 -080087void iov_iter_advance(struct iov_iter *i, size_t bytes);
Al Viro27c0e372017-02-17 18:42:24 -050088void iov_iter_revert(struct iov_iter *i, size_t bytes);
Kent Overstreet92236872013-11-27 16:29:46 -080089int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
90size_t iov_iter_single_seg_count(const struct iov_iter *i);
Al Viro6e58e792014-02-03 17:07:03 -050091size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
92 struct iov_iter *i);
Al Virof0d1bec2014-04-03 15:05:18 -040093size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
94 struct iov_iter *i);
Al Viroaa28de22017-06-29 21:45:10 -040095
96size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
97size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
98bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i);
99size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
100bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i);
101
102static __always_inline __must_check
103size_t copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
104{
105 if (unlikely(!check_copy_size(addr, bytes, true)))
Al Viroc43aeb12017-07-10 07:40:49 -0400106 return 0;
Al Viroaa28de22017-06-29 21:45:10 -0400107 else
108 return _copy_to_iter(addr, bytes, i);
109}
110
111static __always_inline __must_check
112size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
113{
114 if (unlikely(!check_copy_size(addr, bytes, false)))
Al Viroc43aeb12017-07-10 07:40:49 -0400115 return 0;
Al Viroaa28de22017-06-29 21:45:10 -0400116 else
117 return _copy_from_iter(addr, bytes, i);
118}
119
120static __always_inline __must_check
121bool copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
122{
123 if (unlikely(!check_copy_size(addr, bytes, false)))
124 return false;
125 else
126 return _copy_from_iter_full(addr, bytes, i);
127}
128
129static __always_inline __must_check
130size_t copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
131{
132 if (unlikely(!check_copy_size(addr, bytes, false)))
Al Viroc43aeb12017-07-10 07:40:49 -0400133 return 0;
Al Viroaa28de22017-06-29 21:45:10 -0400134 else
135 return _copy_from_iter_nocache(addr, bytes, i);
136}
137
138static __always_inline __must_check
139bool copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
140{
141 if (unlikely(!check_copy_size(addr, bytes, false)))
142 return false;
143 else
144 return _copy_from_iter_full_nocache(addr, bytes, i);
145}
146
Dan Williams0aed55a2017-05-29 12:22:50 -0700147#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
148/*
149 * Note, users like pmem that depend on the stricter semantics of
150 * copy_from_iter_flushcache() than copy_from_iter_nocache() must check for
151 * IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) before assuming that the
152 * destination is flushed from the cache on return.
153 */
Linus Torvalds6a37e942017-07-07 20:39:20 -0700154size_t _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i);
Dan Williams0aed55a2017-05-29 12:22:50 -0700155#else
Linus Torvalds6a37e942017-07-07 20:39:20 -0700156#define _copy_from_iter_flushcache _copy_from_iter_nocache
Dan Williams0aed55a2017-05-29 12:22:50 -0700157#endif
Linus Torvalds6a37e942017-07-07 20:39:20 -0700158
159static __always_inline __must_check
160size_t copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i)
161{
162 if (unlikely(!check_copy_size(addr, bytes, false)))
Al Viroc43aeb12017-07-10 07:40:49 -0400163 return 0;
Linus Torvalds6a37e942017-07-07 20:39:20 -0700164 else
165 return _copy_from_iter_flushcache(addr, bytes, i);
166}
167
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400168size_t iov_iter_zero(size_t bytes, struct iov_iter *);
Al Viro886a3912014-03-05 13:50:45 -0500169unsigned long iov_iter_alignment(const struct iov_iter *i);
Al Viro357f4352016-04-08 19:05:19 -0400170unsigned long iov_iter_gap_alignment(const struct iov_iter *i);
Al Viro71d8e532014-03-05 19:28:09 -0500171void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov,
172 unsigned long nr_segs, size_t count);
Al Viro05afcb72015-01-23 01:08:07 -0500173void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec,
174 unsigned long nr_segs, size_t count);
175void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec,
Al Viroabb78f82014-11-24 14:46:11 -0500176 unsigned long nr_segs, size_t count);
Al Viro241699c2016-09-22 16:33:12 -0400177void iov_iter_pipe(struct iov_iter *i, int direction, struct pipe_inode_info *pipe,
178 size_t count);
Al Viro7b2c99d2014-03-15 04:05:57 -0400179ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages,
Miklos Szeredi2c809292014-09-24 17:09:11 +0200180 size_t maxsize, unsigned maxpages, size_t *start);
Al Viro91f79c42014-03-21 04:58:33 -0400181ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages,
182 size_t maxsize, size_t *start);
Al Virof67da302014-03-19 01:16:16 -0400183int iov_iter_npages(const struct iov_iter *i, int maxpages);
Kent Overstreet92236872013-11-27 16:29:46 -0800184
Al Viro4b8164b2015-01-31 20:08:47 -0500185const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags);
186
Al Virob57332b2016-10-10 13:57:37 -0400187static inline size_t iov_iter_count(const struct iov_iter *i)
Kent Overstreet92236872013-11-27 16:29:46 -0800188{
189 return i->count;
190}
191
Al Virob57332b2016-10-10 13:57:37 -0400192static inline bool iter_is_iovec(const struct iov_iter *i)
Al Viro777eda22014-12-17 04:46:46 -0500193{
Al Viro241699c2016-09-22 16:33:12 -0400194 return !(i->type & (ITER_BVEC | ITER_KVEC | ITER_PIPE));
Al Viro777eda22014-12-17 04:46:46 -0500195}
196
Al Viro0b86dbf2014-06-23 08:44:40 +0100197/*
Omar Sandovalbd8e0ff2015-03-17 14:04:02 -0700198 * Get one of READ or WRITE out of iter->type without any other flags OR'd in
199 * with it.
200 *
201 * The ?: is just for type safety.
202 */
Christoph Hellwigd3849952016-11-01 07:40:11 -0600203#define iov_iter_rw(i) ((0 ? (struct iov_iter *)0 : (i))->type & (READ | WRITE))
Omar Sandovalbd8e0ff2015-03-17 14:04:02 -0700204
205/*
Al Viro0b86dbf2014-06-23 08:44:40 +0100206 * Cap the iov_iter by given limit; note that the second argument is
207 * *not* the new size - it's upper limit for such. Passing it a value
208 * greater than the amount of data in iov_iter is fine - it'll just do
209 * nothing in that case.
210 */
211static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
Al Viro0c949332014-03-22 06:51:37 -0400212{
Al Viro0b86dbf2014-06-23 08:44:40 +0100213 /*
214 * count doesn't have to fit in size_t - comparison extends both
215 * operands to u64 here and any value that would be truncated by
216 * conversion in assignement is by definition greater than all
217 * values of size_t, including old i->count.
218 */
Al Viro0c949332014-03-22 06:51:37 -0400219 if (i->count > count)
220 i->count = count;
221}
222
Al Virob42b15f2014-04-04 12:15:19 -0400223/*
224 * reexpand a previously truncated iterator; count must be no more than how much
225 * we had shrunk it.
226 */
227static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
228{
229 i->count = count;
230}
Al Viro36f7a8a2015-12-06 16:49:22 -0500231size_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 -0500232size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Virocbbd26b2016-11-01 22:09:04 -0400233bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Virob42b15f2014-04-04 12:15:19 -0400234
Al Virobc917be2015-03-21 17:45:43 -0400235int import_iovec(int type, const struct iovec __user * uvector,
236 unsigned nr_segs, unsigned fast_segs,
237 struct iovec **iov, struct iov_iter *i);
238
239#ifdef CONFIG_COMPAT
240struct compat_iovec;
241int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
242 unsigned nr_segs, unsigned fast_segs,
243 struct iovec **iov, struct iov_iter *i);
244#endif
245
246int import_single_range(int type, void __user *buf, size_t len,
247 struct iovec *iov, struct iov_iter *i);
248
Jiri Slaby812ed032009-07-29 15:04:19 -0700249#endif