uio.h 5.5 KB

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