uio.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. int idx;
  38. };
  39. };
  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. */
  47. static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
  48. {
  49. unsigned long seg;
  50. size_t ret = 0;
  51. for (seg = 0; seg < nr_segs; seg++)
  52. ret += iov[seg].iov_len;
  53. return ret;
  54. }
  55. static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
  56. {
  57. return (struct iovec) {
  58. .iov_base = iter->iov->iov_base + iter->iov_offset,
  59. .iov_len = min(iter->count,
  60. iter->iov->iov_len - iter->iov_offset),
  61. };
  62. }
  63. #define iov_for_each(iov, iter, start) \
  64. if (!((start).type & (ITER_BVEC | ITER_PIPE))) \
  65. for (iter = (start); \
  66. (iter).count && \
  67. ((iov = iov_iter_iovec(&(iter))), 1); \
  68. iov_iter_advance(&(iter), (iov).iov_len))
  69. unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to);
  70. size_t iov_iter_copy_from_user_atomic(struct page *page,
  71. struct iov_iter *i, unsigned long offset, size_t bytes);
  72. void iov_iter_advance(struct iov_iter *i, size_t bytes);
  73. int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
  74. #define iov_iter_fault_in_multipages_readable iov_iter_fault_in_readable
  75. size_t iov_iter_single_seg_count(const struct iov_iter *i);
  76. size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
  77. struct iov_iter *i);
  78. size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
  79. struct iov_iter *i);
  80. size_t copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
  81. size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
  82. size_t copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
  83. size_t iov_iter_zero(size_t bytes, struct iov_iter *);
  84. unsigned long iov_iter_alignment(const struct iov_iter *i);
  85. unsigned long iov_iter_gap_alignment(const struct iov_iter *i);
  86. void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov,
  87. unsigned long nr_segs, size_t count);
  88. void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec,
  89. unsigned long nr_segs, size_t count);
  90. void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec,
  91. unsigned long nr_segs, size_t count);
  92. void iov_iter_pipe(struct iov_iter *i, int direction, struct pipe_inode_info *pipe,
  93. size_t count);
  94. ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages,
  95. size_t maxsize, unsigned maxpages, size_t *start);
  96. ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages,
  97. size_t maxsize, size_t *start);
  98. int iov_iter_npages(const struct iov_iter *i, int maxpages);
  99. const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags);
  100. static inline size_t iov_iter_count(struct iov_iter *i)
  101. {
  102. return i->count;
  103. }
  104. static inline bool iter_is_iovec(struct iov_iter *i)
  105. {
  106. return !(i->type & (ITER_BVEC | ITER_KVEC | ITER_PIPE));
  107. }
  108. /*
  109. * Get one of READ or WRITE out of iter->type without any other flags OR'd in
  110. * with it.
  111. *
  112. * The ?: is just for type safety.
  113. */
  114. #define iov_iter_rw(i) ((0 ? (struct iov_iter *)0 : (i))->type & RW_MASK)
  115. /*
  116. * Cap the iov_iter by given limit; note that the second argument is
  117. * *not* the new size - it's upper limit for such. Passing it a value
  118. * greater than the amount of data in iov_iter is fine - it'll just do
  119. * nothing in that case.
  120. */
  121. static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
  122. {
  123. /*
  124. * count doesn't have to fit in size_t - comparison extends both
  125. * operands to u64 here and any value that would be truncated by
  126. * conversion in assignement is by definition greater than all
  127. * values of size_t, including old i->count.
  128. */
  129. if (i->count > count)
  130. i->count = count;
  131. }
  132. /*
  133. * reexpand a previously truncated iterator; count must be no more than how much
  134. * we had shrunk it.
  135. */
  136. static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
  137. {
  138. i->count = count;
  139. }
  140. size_t csum_and_copy_to_iter(const void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
  141. size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
  142. int import_iovec(int type, const struct iovec __user * uvector,
  143. unsigned nr_segs, unsigned fast_segs,
  144. struct iovec **iov, struct iov_iter *i);
  145. #ifdef CONFIG_COMPAT
  146. struct compat_iovec;
  147. int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
  148. unsigned nr_segs, unsigned fast_segs,
  149. struct iovec **iov, struct iov_iter *i);
  150. #endif
  151. int import_single_range(int type, void __user *buf, size_t len,
  152. struct iovec *iov, struct iov_iter *i);
  153. #endif