binder_alloc.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2017 Google, Inc.
  4. */
  5. #ifndef _LINUX_BINDER_ALLOC_H
  6. #define _LINUX_BINDER_ALLOC_H
  7. #include <linux/rbtree.h>
  8. #include <linux/list.h>
  9. #include <linux/mm.h>
  10. #include <linux/rtmutex.h>
  11. #include <linux/vmalloc.h>
  12. #include <linux/slab.h>
  13. #include <linux/list_lru.h>
  14. #include <uapi/linux/android/binder.h>
  15. extern struct list_lru binder_alloc_lru;
  16. struct binder_transaction;
  17. /**
  18. * struct binder_buffer - buffer used for binder transactions
  19. * @entry: entry alloc->buffers
  20. * @rb_node: node for allocated_buffers/free_buffers rb trees
  21. * @free: %true if buffer is free
  22. * @clear_on_free: %true if buffer must be zeroed after use
  23. * @allow_user_free: %true if user is allowed to free buffer
  24. * @async_transaction: %true if buffer is in use for an async txn
  25. * @oneway_spam_suspect: %true if total async allocate size just exceed
  26. * spamming detect threshold
  27. * @debug_id: unique ID for debugging
  28. * @transaction: pointer to associated struct binder_transaction
  29. * @target_node: struct binder_node associated with this buffer
  30. * @data_size: size of @transaction data
  31. * @offsets_size: size of array of offsets
  32. * @extra_buffers_size: size of space for other objects (like sg lists)
  33. * @user_data: user pointer to base of buffer space
  34. * @pid: pid to attribute the buffer to (caller)
  35. *
  36. * Bookkeeping structure for binder transaction buffers
  37. */
  38. struct binder_buffer {
  39. struct list_head entry; /* free and allocated entries by address */
  40. struct rb_node rb_node; /* free entry by size or allocated entry */
  41. /* by address */
  42. unsigned free:1;
  43. unsigned clear_on_free:1;
  44. unsigned allow_user_free:1;
  45. unsigned async_transaction:1;
  46. unsigned oneway_spam_suspect:1;
  47. unsigned debug_id:27;
  48. struct binder_transaction *transaction;
  49. struct binder_node *target_node;
  50. size_t data_size;
  51. size_t offsets_size;
  52. size_t extra_buffers_size;
  53. void __user *user_data;
  54. int pid;
  55. };
  56. /**
  57. * struct binder_lru_page - page object used for binder shrinker
  58. * @page_ptr: pointer to physical page in mmap'd space
  59. * @lru: entry in binder_alloc_lru
  60. * @alloc: binder_alloc for a proc
  61. */
  62. struct binder_lru_page {
  63. struct list_head lru;
  64. struct page *page_ptr;
  65. struct binder_alloc *alloc;
  66. };
  67. /**
  68. * struct binder_alloc - per-binder proc state for binder allocator
  69. * @mutex: protects binder_alloc fields
  70. * @vma: vm_area_struct passed to mmap_handler
  71. * (invariant after mmap)
  72. * @mm: copy of task->mm (invariant after open)
  73. * @buffer: base of per-proc address space mapped via mmap
  74. * @buffers: list of all buffers for this proc
  75. * @free_buffers: rb tree of buffers available for allocation
  76. * sorted by size
  77. * @allocated_buffers: rb tree of allocated buffers sorted by address
  78. * @free_async_space: VA space available for async buffers. This is
  79. * initialized at mmap time to 1/2 the full VA space
  80. * @pages: array of binder_lru_page
  81. * @buffer_size: size of address space specified via mmap
  82. * @pid: pid for associated binder_proc (invariant after init)
  83. * @pages_high: high watermark of offset in @pages
  84. * @oneway_spam_detected: %true if oneway spam detection fired, clear that
  85. * flag once the async buffer has returned to a healthy state
  86. *
  87. * Bookkeeping structure for per-proc address space management for binder
  88. * buffers. It is normally initialized during binder_init() and binder_mmap()
  89. * calls. The address space is used for both user-visible buffers and for
  90. * struct binder_buffer objects used to track the user buffers
  91. */
  92. struct binder_alloc {
  93. struct mutex mutex;
  94. struct vm_area_struct *vma;
  95. struct mm_struct *mm;
  96. void __user *buffer;
  97. struct list_head buffers;
  98. struct rb_root free_buffers;
  99. struct rb_root allocated_buffers;
  100. size_t free_async_space;
  101. struct binder_lru_page *pages;
  102. size_t buffer_size;
  103. int pid;
  104. size_t pages_high;
  105. bool oneway_spam_detected;
  106. };
  107. #ifdef CONFIG_ANDROID_BINDER_IPC_SELFTEST
  108. void binder_selftest_alloc(struct binder_alloc *alloc);
  109. #else
  110. static inline void binder_selftest_alloc(struct binder_alloc *alloc) {}
  111. #endif
  112. enum lru_status binder_alloc_free_page(struct list_head *item,
  113. struct list_lru_one *lru,
  114. spinlock_t *lock, void *cb_arg);
  115. extern struct binder_buffer *binder_alloc_new_buf(struct binder_alloc *alloc,
  116. size_t data_size,
  117. size_t offsets_size,
  118. size_t extra_buffers_size,
  119. int is_async,
  120. int pid);
  121. extern void binder_alloc_init(struct binder_alloc *alloc);
  122. extern int binder_alloc_shrinker_init(void);
  123. extern void binder_alloc_shrinker_exit(void);
  124. extern void binder_alloc_vma_close(struct binder_alloc *alloc);
  125. extern struct binder_buffer *
  126. binder_alloc_prepare_to_free(struct binder_alloc *alloc,
  127. uintptr_t user_ptr);
  128. extern void binder_alloc_free_buf(struct binder_alloc *alloc,
  129. struct binder_buffer *buffer);
  130. extern int binder_alloc_mmap_handler(struct binder_alloc *alloc,
  131. struct vm_area_struct *vma);
  132. extern void binder_alloc_deferred_release(struct binder_alloc *alloc);
  133. extern int binder_alloc_get_allocated_count(struct binder_alloc *alloc);
  134. extern void binder_alloc_print_allocated(struct seq_file *m,
  135. struct binder_alloc *alloc);
  136. void binder_alloc_print_pages(struct seq_file *m,
  137. struct binder_alloc *alloc);
  138. /**
  139. * binder_alloc_get_free_async_space() - get free space available for async
  140. * @alloc: binder_alloc for this proc
  141. *
  142. * Return: the bytes remaining in the address-space for async transactions
  143. */
  144. static inline size_t
  145. binder_alloc_get_free_async_space(struct binder_alloc *alloc)
  146. {
  147. size_t free_async_space;
  148. mutex_lock(&alloc->mutex);
  149. free_async_space = alloc->free_async_space;
  150. mutex_unlock(&alloc->mutex);
  151. return free_async_space;
  152. }
  153. unsigned long
  154. binder_alloc_copy_user_to_buffer(struct binder_alloc *alloc,
  155. struct binder_buffer *buffer,
  156. binder_size_t buffer_offset,
  157. const void __user *from,
  158. size_t bytes);
  159. int binder_alloc_copy_to_buffer(struct binder_alloc *alloc,
  160. struct binder_buffer *buffer,
  161. binder_size_t buffer_offset,
  162. void *src,
  163. size_t bytes);
  164. int binder_alloc_copy_from_buffer(struct binder_alloc *alloc,
  165. void *dest,
  166. struct binder_buffer *buffer,
  167. binder_size_t buffer_offset,
  168. size_t bytes);
  169. #endif /* _LINUX_BINDER_ALLOC_H */