rdxtree.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /*
  2. * Copyright (c) 2011-2018 Richard Braun.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Upstream site with license notes :
  18. * http://git.sceen.net/rbraun/librbraun.git/
  19. *
  20. *
  21. * Radix tree.
  22. *
  23. * In addition to the standard insertion operation, this implementation can
  24. * allocate keys for the caller at insertion time. It also allows lookups to
  25. * occur concurrently with updates using RCU.
  26. */
  27. #ifndef KERN_RDXTREE_H
  28. #define KERN_RDXTREE_H
  29. #include <assert.h>
  30. #include <stdbool.h>
  31. #include <stddef.h>
  32. #include <stdint.h>
  33. #include <kern/init.h>
  34. #include <kern/rcu.h>
  35. typedef uint64_t rdxtree_key_t;
  36. // Radix tree initialization flags.
  37. #define RDXTREE_KEY_ALLOC 0x1 // Enable key allocation.
  38. // Static tree initializer.
  39. #define RDXTREE_INITIALIZER { 0, NULL }
  40. // Radix tree.
  41. struct rdxtree
  42. {
  43. uint16_t height;
  44. uint16_t flags;
  45. void *root;
  46. };
  47. /*
  48. * Radix tree iterator.
  49. *
  50. * The node member refers to the node containing the current pointer, if any.
  51. * The key member refers to the current pointer, and is valid if and only if
  52. * rdxtree_walk() has been called at least once on the iterator.
  53. */
  54. struct rdxtree_iter
  55. {
  56. void *node;
  57. rdxtree_key_t key;
  58. };
  59. // Initialize an iterator.
  60. static inline void
  61. rdxtree_iter_init (struct rdxtree_iter *iter)
  62. {
  63. iter->node = NULL;
  64. iter->key = (rdxtree_key_t)-1;
  65. }
  66. int rdxtree_insert_common (struct rdxtree *tree, rdxtree_key_t key,
  67. void *ptr, void ***slotp);
  68. int rdxtree_insert_alloc_common (struct rdxtree *tree, void *ptr,
  69. rdxtree_key_t *keyp, void ***slotp);
  70. void* rdxtree_lookup_common (const struct rdxtree *tree, rdxtree_key_t key,
  71. bool get_slot);
  72. void* rdxtree_walk (struct rdxtree *tree, struct rdxtree_iter *iter);
  73. // Initialize a tree.
  74. static inline void
  75. rdxtree_init (struct rdxtree *tree, unsigned short flags)
  76. {
  77. assert ((flags & ~RDXTREE_KEY_ALLOC) == 0);
  78. tree->height = 0;
  79. tree->flags = flags;
  80. tree->root = NULL;
  81. }
  82. /*
  83. * Insert a pointer in a tree.
  84. *
  85. * The ptr parameter must not be NULL.
  86. */
  87. static inline int
  88. rdxtree_insert (struct rdxtree *tree, rdxtree_key_t key, void *ptr)
  89. {
  90. return (rdxtree_insert_common (tree, key, ptr, NULL));
  91. }
  92. /*
  93. * Insert a pointer in a tree and obtain its slot.
  94. *
  95. * The ptr and slotp parameters must not be NULL. If successful, the slot of
  96. * the newly inserted pointer is stored at the address pointed to by the slotp
  97. * parameter.
  98. */
  99. static inline int
  100. rdxtree_insert_slot (struct rdxtree *tree, rdxtree_key_t key,
  101. void *ptr, void ***slotp)
  102. {
  103. return (rdxtree_insert_common (tree, key, ptr, slotp));
  104. }
  105. /*
  106. * Insert a pointer in a tree, for which a new key is allocated.
  107. *
  108. * The ptr and keyp parameters must not be NULL. The newly allocated key is
  109. * stored at the address pointed to by the keyp parameter.
  110. */
  111. static inline int
  112. rdxtree_insert_alloc (struct rdxtree *tree, void *ptr, rdxtree_key_t *keyp)
  113. {
  114. return (rdxtree_insert_alloc_common (tree, ptr, keyp, NULL));
  115. }
  116. /*
  117. * Insert a pointer in a tree, for which a new key is allocated, and obtain
  118. * its slot.
  119. *
  120. * The ptr, keyp and slotp parameters must not be NULL. The newly allocated
  121. * key is stored at the address pointed to by the keyp parameter while the
  122. * slot of the inserted pointer is stored at the address pointed to by the
  123. * slotp parameter.
  124. */
  125. static inline int
  126. rdxtree_insert_alloc_slot (struct rdxtree *tree, void *ptr,
  127. rdxtree_key_t *keyp, void ***slotp)
  128. {
  129. return (rdxtree_insert_alloc_common (tree, ptr, keyp, slotp));
  130. }
  131. /*
  132. * Remove a pointer from a tree.
  133. *
  134. * The matching pointer is returned if successful, NULL otherwise.
  135. */
  136. void* rdxtree_remove (struct rdxtree *tree, rdxtree_key_t key);
  137. /*
  138. * Look up a pointer in a tree.
  139. *
  140. * The matching pointer is returned if successful, NULL otherwise.
  141. */
  142. static inline void*
  143. rdxtree_lookup (const struct rdxtree *tree, rdxtree_key_t key)
  144. {
  145. return (rdxtree_lookup_common (tree, key, false));
  146. }
  147. /*
  148. * Look up a slot in a tree.
  149. *
  150. * A slot is a pointer to a stored pointer in a tree. It can be used as
  151. * a placeholder for fast replacements to avoid multiple lookups on the same
  152. * key.
  153. *
  154. * A slot for the matching pointer is returned if successful, NULL otherwise.
  155. *
  156. * See rdxtree_replace_slot().
  157. */
  158. static inline void**
  159. rdxtree_lookup_slot (const struct rdxtree *tree, rdxtree_key_t key)
  160. {
  161. return (rdxtree_lookup_common (tree, key, true));
  162. }
  163. static inline void*
  164. rdxtree_load_slot (void **slot)
  165. {
  166. return (rcu_load (slot));
  167. }
  168. /*
  169. * Replace a pointer in a tree.
  170. *
  171. * The ptr parameter must not be NULL. The previous pointer is returned.
  172. *
  173. * See rdxtree_lookup_slot().
  174. */
  175. void* rdxtree_replace_slot (void **slot, void *ptr);
  176. /*
  177. * Forge a loop to process all pointers of a tree.
  178. *
  179. * It is not safe to modify a tree from such a loop.
  180. */
  181. #define rdxtree_for_each(tree, iter, ptr) \
  182. for (rdxtree_iter_init (iter), ptr = rdxtree_walk (tree, iter); \
  183. ptr; ptr = rdxtree_walk (tree, iter))
  184. // Return the key of the current pointer from an iterator.
  185. static inline rdxtree_key_t
  186. rdxtree_iter_key (const struct rdxtree_iter *iter)
  187. {
  188. return (iter->key);
  189. }
  190. /*
  191. * Remove all pointers from a tree.
  192. *
  193. * The common way to destroy a tree and its pointers is to loop over all
  194. * the pointers using rdxtree_for_each(), freeing them, then call this
  195. * function.
  196. */
  197. void rdxtree_remove_all (struct rdxtree *tree);
  198. /*
  199. * This init operation provides :
  200. * - module fully initialized
  201. */
  202. INIT_OP_DECLARE (rdxtree_setup);
  203. #endif