binder_alloc.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * Copyright (C) 2017 Google, Inc.
  3. *
  4. * This software is licensed under the terms of the GNU General Public
  5. * License version 2, as published by the Free Software Foundation, and
  6. * may be copied, distributed, and modified under those terms.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. */
  14. #ifndef _LINUX_BINDER_ALLOC_H
  15. #define _LINUX_BINDER_ALLOC_H
  16. #include <linux/rbtree.h>
  17. #include <linux/list.h>
  18. #include <linux/mm.h>
  19. #include <linux/rtmutex.h>
  20. #include <linux/vmalloc.h>
  21. #include <linux/slab.h>
  22. struct binder_transaction;
  23. /**
  24. * struct binder_buffer - buffer used for binder transactions
  25. * @entry: entry alloc->buffers
  26. * @rb_node: node for allocated_buffers/free_buffers rb trees
  27. * @free: true if buffer is free
  28. * @allow_user_free: describe the second member of struct blah,
  29. * @async_transaction: describe the second member of struct blah,
  30. * @debug_id: describe the second member of struct blah,
  31. * @transaction: describe the second member of struct blah,
  32. * @target_node: describe the second member of struct blah,
  33. * @data_size: describe the second member of struct blah,
  34. * @offsets_size: describe the second member of struct blah,
  35. * @extra_buffers_size: describe the second member of struct blah,
  36. * @data:i describe the second member of struct blah,
  37. *
  38. * Bookkeeping structure for binder transaction buffers
  39. */
  40. struct binder_buffer {
  41. struct list_head entry; /* free and allocated entries by address */
  42. struct rb_node rb_node; /* free entry by size or allocated entry */
  43. /* by address */
  44. unsigned free:1;
  45. unsigned allow_user_free:1;
  46. unsigned async_transaction:1;
  47. unsigned free_in_progress:1;
  48. unsigned debug_id:28;
  49. struct binder_transaction *transaction;
  50. struct binder_node *target_node;
  51. size_t data_size;
  52. size_t offsets_size;
  53. size_t extra_buffers_size;
  54. uint8_t data[0];
  55. };
  56. /**
  57. * struct binder_alloc - per-binder proc state for binder allocator
  58. * @vma: vm_area_struct passed to mmap_handler
  59. * (invarient after mmap)
  60. * @tsk: tid for task that called init for this proc
  61. * (invariant after init)
  62. * @vma_vm_mm: copy of vma->vm_mm (invarient after mmap)
  63. * @buffer: base of per-proc address space mapped via mmap
  64. * @user_buffer_offset: offset between user and kernel VAs for buffer
  65. * @buffers: list of all buffers for this proc
  66. * @free_buffers: rb tree of buffers available for allocation
  67. * sorted by size
  68. * @allocated_buffers: rb tree of allocated buffers sorted by address
  69. * @free_async_space: VA space available for async buffers. This is
  70. * initialized at mmap time to 1/2 the full VA space
  71. * @pages: array of physical page addresses for each
  72. * page of mmap'd space
  73. * @buffer_size: size of address space specified via mmap
  74. * @pid: pid for associated binder_proc (invariant after init)
  75. *
  76. * Bookkeeping structure for per-proc address space management for binder
  77. * buffers. It is normally initialized during binder_init() and binder_mmap()
  78. * calls. The address space is used for both user-visible buffers and for
  79. * struct binder_buffer objects used to track the user buffers
  80. */
  81. struct binder_alloc {
  82. struct mutex mutex;
  83. struct task_struct *tsk;
  84. struct vm_area_struct *vma;
  85. struct mm_struct *vma_vm_mm;
  86. void *buffer;
  87. ptrdiff_t user_buffer_offset;
  88. struct list_head buffers;
  89. struct rb_root free_buffers;
  90. struct rb_root allocated_buffers;
  91. size_t free_async_space;
  92. struct page **pages;
  93. size_t buffer_size;
  94. uint32_t buffer_free;
  95. int pid;
  96. };
  97. extern struct binder_buffer *binder_alloc_new_buf(struct binder_alloc *alloc,
  98. size_t data_size,
  99. size_t offsets_size,
  100. size_t extra_buffers_size,
  101. int is_async);
  102. extern void binder_alloc_init(struct binder_alloc *alloc);
  103. extern void binder_alloc_vma_close(struct binder_alloc *alloc);
  104. extern struct binder_buffer *
  105. binder_alloc_prepare_to_free(struct binder_alloc *alloc,
  106. uintptr_t user_ptr);
  107. extern void binder_alloc_free_buf(struct binder_alloc *alloc,
  108. struct binder_buffer *buffer);
  109. extern int binder_alloc_mmap_handler(struct binder_alloc *alloc,
  110. struct vm_area_struct *vma);
  111. extern void binder_alloc_deferred_release(struct binder_alloc *alloc);
  112. extern int binder_alloc_get_allocated_count(struct binder_alloc *alloc);
  113. extern void binder_alloc_print_allocated(struct seq_file *m,
  114. struct binder_alloc *alloc);
  115. /**
  116. * binder_alloc_get_free_async_space() - get free space available for async
  117. * @alloc: binder_alloc for this proc
  118. *
  119. * Return: the bytes remaining in the address-space for async transactions
  120. */
  121. static inline size_t
  122. binder_alloc_get_free_async_space(struct binder_alloc *alloc)
  123. {
  124. size_t free_async_space;
  125. mutex_lock(&alloc->mutex);
  126. free_async_space = alloc->free_async_space;
  127. mutex_unlock(&alloc->mutex);
  128. return free_async_space;
  129. }
  130. /**
  131. * binder_alloc_get_user_buffer_offset() - get offset between kernel/user addrs
  132. * @alloc: binder_alloc for this proc
  133. *
  134. * Return: the offset between kernel and user-space addresses to use for
  135. * virtual address conversion
  136. */
  137. static inline ptrdiff_t
  138. binder_alloc_get_user_buffer_offset(struct binder_alloc *alloc)
  139. {
  140. /*
  141. * user_buffer_offset is constant if vma is set and
  142. * undefined if vma is not set. It is possible to
  143. * get here with !alloc->vma if the target process
  144. * is dying while a transaction is being initiated.
  145. * Returning the old value is ok in this case and
  146. * the transaction will fail.
  147. */
  148. return alloc->user_buffer_offset;
  149. }
  150. #endif /* _LINUX_BINDER_ALLOC_H */