NVMe: Only release requested regions
[linux-2.6-block.git] / include / linux / uio.h
CommitLineData
1da177e4
LT
1/*
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 */
607ca46e
DH
9#ifndef __LINUX_UIO_H
10#define __LINUX_UIO_H
1da177e4 11
92236878 12#include <linux/kernel.h>
607ca46e 13#include <uapi/linux/uio.h>
1da177e4 14
92236878 15struct page;
812ed032
JS
16
17struct kvec {
18 void *iov_base; /* and that should *never* hold a userland pointer */
19 size_t iov_len;
20};
21
62a8067a
AV
22enum {
23 ITER_IOVEC = 0,
24 ITER_KVEC = 2,
25 ITER_BVEC = 4,
26};
27
92236878 28struct iov_iter {
71d8e532 29 int type;
92236878
KO
30 size_t iov_offset;
31 size_t count;
62a8067a
AV
32 union {
33 const struct iovec *iov;
a280455f 34 const struct kvec *kvec;
62a8067a
AV
35 const struct bio_vec *bvec;
36 };
37 unsigned long nr_segs;
92236878
KO
38};
39
1da177e4
LT
40/*
41 * Total number of bytes covered by an iovec.
42 *
43 * NOTE that it is not safe to use this function until all the iovec's
44 * segment lengths have been validated. Because the individual lengths can
45 * overflow a size_t when added together.
46 */
47static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
48{
49 unsigned long seg;
50 size_t ret = 0;
51
52 for (seg = 0; seg < nr_segs; seg++)
53 ret += iov[seg].iov_len;
54 return ret;
55}
56
92236878
KO
57static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
58{
59 return (struct iovec) {
60 .iov_base = iter->iov->iov_base + iter->iov_offset,
61 .iov_len = min(iter->count,
62 iter->iov->iov_len - iter->iov_offset),
63 };
64}
65
66#define iov_for_each(iov, iter, start) \
62a8067a 67 if (!((start).type & ITER_BVEC)) \
92236878
KO
68 for (iter = (start); \
69 (iter).count && \
70 ((iov = iov_iter_iovec(&(iter))), 1); \
71 iov_iter_advance(&(iter), (iov).iov_len))
72
1da177e4 73unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to);
d2f83e90 74
92236878
KO
75size_t iov_iter_copy_from_user_atomic(struct page *page,
76 struct iov_iter *i, unsigned long offset, size_t bytes);
92236878
KO
77void iov_iter_advance(struct iov_iter *i, size_t bytes);
78int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
171a0203 79int iov_iter_fault_in_multipages_readable(struct iov_iter *i, size_t bytes);
92236878 80size_t iov_iter_single_seg_count(const struct iov_iter *i);
6e58e79d
AV
81size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
82 struct iov_iter *i);
f0d1bec9
AV
83size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
84 struct iov_iter *i);
36f7a8a4 85size_t copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
c35e0248 86size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
aa583096 87size_t copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
c35e0248 88size_t iov_iter_zero(size_t bytes, struct iov_iter *);
886a3911 89unsigned long iov_iter_alignment(const struct iov_iter *i);
357f435d 90unsigned long iov_iter_gap_alignment(const struct iov_iter *i);
71d8e532
AV
91void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov,
92 unsigned long nr_segs, size_t count);
05afcb77
AV
93void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec,
94 unsigned long nr_segs, size_t count);
95void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec,
abb78f87 96 unsigned long nr_segs, size_t count);
7b2c99d1 97ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages,
2c80929c 98 size_t maxsize, unsigned maxpages, size_t *start);
91f79c43
AV
99ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages,
100 size_t maxsize, size_t *start);
f67da30c 101int iov_iter_npages(const struct iov_iter *i, int maxpages);
92236878 102
4b8164b9
AV
103const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags);
104
92236878
KO
105static inline size_t iov_iter_count(struct iov_iter *i)
106{
107 return i->count;
108}
109
777eda2c
AV
110static inline bool iter_is_iovec(struct iov_iter *i)
111{
112 return !(i->type & (ITER_BVEC | ITER_KVEC));
113}
114
bd8e0ff9
OS
115/*
116 * Get one of READ or WRITE out of iter->type without any other flags OR'd in
117 * with it.
118 *
119 * The ?: is just for type safety.
120 */
121#define iov_iter_rw(i) ((0 ? (struct iov_iter *)0 : (i))->type & RW_MASK)
122
0b86dbf6
AV
123/*
124 * Cap the iov_iter by given limit; note that the second argument is
125 * *not* the new size - it's upper limit for such. Passing it a value
126 * greater than the amount of data in iov_iter is fine - it'll just do
127 * nothing in that case.
128 */
129static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
0c949334 130{
0b86dbf6
AV
131 /*
132 * count doesn't have to fit in size_t - comparison extends both
133 * operands to u64 here and any value that would be truncated by
134 * conversion in assignement is by definition greater than all
135 * values of size_t, including old i->count.
136 */
0c949334
AV
137 if (i->count > count)
138 i->count = count;
139}
140
b42b15fd
AV
141/*
142 * reexpand a previously truncated iterator; count must be no more than how much
143 * we had shrunk it.
144 */
145static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
146{
147 i->count = count;
148}
36f7a8a4 149size_t csum_and_copy_to_iter(const void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
a604ec7e 150size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
b42b15fd 151
bc917be8
AV
152int import_iovec(int type, const struct iovec __user * uvector,
153 unsigned nr_segs, unsigned fast_segs,
154 struct iovec **iov, struct iov_iter *i);
155
156#ifdef CONFIG_COMPAT
157struct compat_iovec;
158int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
159 unsigned nr_segs, unsigned fast_segs,
160 struct iovec **iov, struct iov_iter *i);
161#endif
162
163int import_single_range(int type, void __user *buf, size_t len,
164 struct iovec *iov, struct iov_iter *i);
165
812ed032 166#endif