blob: 55cd54a0e94100cc71b4ddeb03d8b35392a32b7a [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>
David Howells607ca462012-10-13 10:46:48 +010013#include <uapi/linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Kent Overstreet92236872013-11-27 16:29:46 -080015struct page;
Al Viro241699c2016-09-22 16:33:12 -040016struct pipe_inode_info;
Jiri Slaby812ed032009-07-29 15:04:19 -070017
18struct kvec {
19 void *iov_base; /* and that should *never* hold a userland pointer */
20 size_t iov_len;
21};
22
Al Viro62a80672014-04-04 23:12:29 -040023enum {
24 ITER_IOVEC = 0,
25 ITER_KVEC = 2,
26 ITER_BVEC = 4,
Al Viro241699c2016-09-22 16:33:12 -040027 ITER_PIPE = 8,
Al Viro62a80672014-04-04 23:12:29 -040028};
29
Kent Overstreet92236872013-11-27 16:29:46 -080030struct iov_iter {
Al Viro71d8e532014-03-05 19:28:09 -050031 int type;
Kent Overstreet92236872013-11-27 16:29:46 -080032 size_t iov_offset;
33 size_t count;
Al Viro62a80672014-04-04 23:12:29 -040034 union {
35 const struct iovec *iov;
Al Viroa2804552014-11-27 14:48:42 -050036 const struct kvec *kvec;
Al Viro62a80672014-04-04 23:12:29 -040037 const struct bio_vec *bvec;
Al Viro241699c2016-09-22 16:33:12 -040038 struct pipe_inode_info *pipe;
Al Viro62a80672014-04-04 23:12:29 -040039 };
Al Viro241699c2016-09-22 16:33:12 -040040 union {
41 unsigned long nr_segs;
Al Viro27c0e372017-02-17 18:42:24 -050042 struct {
43 int idx;
44 int start_idx;
45 };
Al Viro241699c2016-09-22 16:33:12 -040046 };
Kent Overstreet92236872013-11-27 16:29:46 -080047};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
50 * Total number of bytes covered by an iovec.
51 *
52 * NOTE that it is not safe to use this function until all the iovec's
53 * segment lengths have been validated. Because the individual lengths can
54 * overflow a size_t when added together.
55 */
56static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
57{
58 unsigned long seg;
59 size_t ret = 0;
60
61 for (seg = 0; seg < nr_segs; seg++)
62 ret += iov[seg].iov_len;
63 return ret;
64}
65
Kent Overstreet92236872013-11-27 16:29:46 -080066static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
67{
68 return (struct iovec) {
69 .iov_base = iter->iov->iov_base + iter->iov_offset,
70 .iov_len = min(iter->count,
71 iter->iov->iov_len - iter->iov_offset),
72 };
73}
74
75#define iov_for_each(iov, iter, start) \
Al Viro241699c2016-09-22 16:33:12 -040076 if (!((start).type & (ITER_BVEC | ITER_PIPE))) \
Kent Overstreet92236872013-11-27 16:29:46 -080077 for (iter = (start); \
78 (iter).count && \
79 ((iov = iov_iter_iovec(&(iter))), 1); \
80 iov_iter_advance(&(iter), (iov).iov_len))
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to);
Rusty Russelld2f83e92013-05-17 09:05:21 +093083
Kent Overstreet92236872013-11-27 16:29:46 -080084size_t iov_iter_copy_from_user_atomic(struct page *page,
85 struct iov_iter *i, unsigned long offset, size_t bytes);
Kent Overstreet92236872013-11-27 16:29:46 -080086void iov_iter_advance(struct iov_iter *i, size_t bytes);
Al Viro27c0e372017-02-17 18:42:24 -050087void iov_iter_revert(struct iov_iter *i, size_t bytes);
Kent Overstreet92236872013-11-27 16:29:46 -080088int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
89size_t iov_iter_single_seg_count(const struct iov_iter *i);
Al Viro6e58e792014-02-03 17:07:03 -050090size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
91 struct iov_iter *i);
Al Virof0d1bec2014-04-03 15:05:18 -040092size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
93 struct iov_iter *i);
Al Viro36f7a8a2015-12-06 16:49:22 -050094size_t copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -040095size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
Al Virocbbd26b2016-11-01 22:09:04 -040096bool copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i);
Al Viroaa583092014-11-27 20:27:08 -050097size_t copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
Dan Williams0aed55a2017-05-29 12:22:50 -070098#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
99/*
100 * Note, users like pmem that depend on the stricter semantics of
101 * copy_from_iter_flushcache() than copy_from_iter_nocache() must check for
102 * IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) before assuming that the
103 * destination is flushed from the cache on return.
104 */
105size_t copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i);
106#else
107static inline size_t copy_from_iter_flushcache(void *addr, size_t bytes,
108 struct iov_iter *i)
109{
110 return copy_from_iter_nocache(addr, bytes, i);
111}
112#endif
Al Virocbbd26b2016-11-01 22:09:04 -0400113bool copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400114size_t iov_iter_zero(size_t bytes, struct iov_iter *);
Al Viro886a3912014-03-05 13:50:45 -0500115unsigned long iov_iter_alignment(const struct iov_iter *i);
Al Viro357f4352016-04-08 19:05:19 -0400116unsigned long iov_iter_gap_alignment(const struct iov_iter *i);
Al Viro71d8e532014-03-05 19:28:09 -0500117void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov,
118 unsigned long nr_segs, size_t count);
Al Viro05afcb72015-01-23 01:08:07 -0500119void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec,
120 unsigned long nr_segs, size_t count);
121void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec,
Al Viroabb78f82014-11-24 14:46:11 -0500122 unsigned long nr_segs, size_t count);
Al Viro241699c2016-09-22 16:33:12 -0400123void iov_iter_pipe(struct iov_iter *i, int direction, struct pipe_inode_info *pipe,
124 size_t count);
Al Viro7b2c99d2014-03-15 04:05:57 -0400125ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages,
Miklos Szeredi2c809292014-09-24 17:09:11 +0200126 size_t maxsize, unsigned maxpages, size_t *start);
Al Viro91f79c42014-03-21 04:58:33 -0400127ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages,
128 size_t maxsize, size_t *start);
Al Virof67da302014-03-19 01:16:16 -0400129int iov_iter_npages(const struct iov_iter *i, int maxpages);
Kent Overstreet92236872013-11-27 16:29:46 -0800130
Al Viro4b8164b2015-01-31 20:08:47 -0500131const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags);
132
Al Virob57332b2016-10-10 13:57:37 -0400133static inline size_t iov_iter_count(const struct iov_iter *i)
Kent Overstreet92236872013-11-27 16:29:46 -0800134{
135 return i->count;
136}
137
Al Virob57332b2016-10-10 13:57:37 -0400138static inline bool iter_is_iovec(const struct iov_iter *i)
Al Viro777eda22014-12-17 04:46:46 -0500139{
Al Viro241699c2016-09-22 16:33:12 -0400140 return !(i->type & (ITER_BVEC | ITER_KVEC | ITER_PIPE));
Al Viro777eda22014-12-17 04:46:46 -0500141}
142
Al Viro0b86dbf2014-06-23 08:44:40 +0100143/*
Omar Sandovalbd8e0ff2015-03-17 14:04:02 -0700144 * Get one of READ or WRITE out of iter->type without any other flags OR'd in
145 * with it.
146 *
147 * The ?: is just for type safety.
148 */
Christoph Hellwigd3849952016-11-01 07:40:11 -0600149#define iov_iter_rw(i) ((0 ? (struct iov_iter *)0 : (i))->type & (READ | WRITE))
Omar Sandovalbd8e0ff2015-03-17 14:04:02 -0700150
151/*
Al Viro0b86dbf2014-06-23 08:44:40 +0100152 * Cap the iov_iter by given limit; note that the second argument is
153 * *not* the new size - it's upper limit for such. Passing it a value
154 * greater than the amount of data in iov_iter is fine - it'll just do
155 * nothing in that case.
156 */
157static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
Al Viro0c949332014-03-22 06:51:37 -0400158{
Al Viro0b86dbf2014-06-23 08:44:40 +0100159 /*
160 * count doesn't have to fit in size_t - comparison extends both
161 * operands to u64 here and any value that would be truncated by
162 * conversion in assignement is by definition greater than all
163 * values of size_t, including old i->count.
164 */
Al Viro0c949332014-03-22 06:51:37 -0400165 if (i->count > count)
166 i->count = count;
167}
168
Al Virob42b15f2014-04-04 12:15:19 -0400169/*
170 * reexpand a previously truncated iterator; count must be no more than how much
171 * we had shrunk it.
172 */
173static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
174{
175 i->count = count;
176}
Al Viro36f7a8a2015-12-06 16:49:22 -0500177size_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 -0500178size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Virocbbd26b2016-11-01 22:09:04 -0400179bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
Al Virob42b15f2014-04-04 12:15:19 -0400180
Al Virobc917be2015-03-21 17:45:43 -0400181int import_iovec(int type, const struct iovec __user * uvector,
182 unsigned nr_segs, unsigned fast_segs,
183 struct iovec **iov, struct iov_iter *i);
184
185#ifdef CONFIG_COMPAT
186struct compat_iovec;
187int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
188 unsigned nr_segs, unsigned fast_segs,
189 struct iovec **iov, struct iov_iter *i);
190#endif
191
192int import_single_range(int type, void __user *buf, size_t len,
193 struct iovec *iov, struct iov_iter *i);
194
Jiri Slaby812ed032009-07-29 15:04:19 -0700195#endif