rdxtree.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. /*
  37. * Radix tree initialization flags.
  38. */
  39. #define RDXTREE_KEY_ALLOC 0x1 /* Enable key allocation */
  40. /*
  41. * Radix tree.
  42. */
  43. struct rdxtree;
  44. /*
  45. * Radix tree iterator.
  46. */
  47. struct rdxtree_iter;
  48. /*
  49. * Static tree initializer.
  50. */
  51. #define RDXTREE_INITIALIZER { 0, NULL }
  52. #include <kern/rdxtree_i.h>
  53. /*
  54. * Initialize a tree.
  55. */
  56. static inline void
  57. rdxtree_init(struct rdxtree *tree, unsigned short flags)
  58. {
  59. assert((flags & ~RDXTREE_KEY_ALLOC) == 0);
  60. tree->height = 0;
  61. tree->flags = flags;
  62. tree->root = NULL;
  63. }
  64. /*
  65. * Insert a pointer in a tree.
  66. *
  67. * The ptr parameter must not be NULL.
  68. */
  69. static inline int
  70. rdxtree_insert(struct rdxtree *tree, rdxtree_key_t key, void *ptr)
  71. {
  72. return rdxtree_insert_common(tree, key, ptr, NULL);
  73. }
  74. /*
  75. * Insert a pointer in a tree and obtain its slot.
  76. *
  77. * The ptr and slotp parameters must not be NULL. If successful, the slot of
  78. * the newly inserted pointer is stored at the address pointed to by the slotp
  79. * parameter.
  80. */
  81. static inline int
  82. rdxtree_insert_slot(struct rdxtree *tree, rdxtree_key_t key,
  83. void *ptr, void ***slotp)
  84. {
  85. return rdxtree_insert_common(tree, key, ptr, slotp);
  86. }
  87. /*
  88. * Insert a pointer in a tree, for which a new key is allocated.
  89. *
  90. * The ptr and keyp parameters must not be NULL. The newly allocated key is
  91. * stored at the address pointed to by the keyp parameter.
  92. */
  93. static inline int
  94. rdxtree_insert_alloc(struct rdxtree *tree, void *ptr, rdxtree_key_t *keyp)
  95. {
  96. return rdxtree_insert_alloc_common(tree, ptr, keyp, NULL);
  97. }
  98. /*
  99. * Insert a pointer in a tree, for which a new key is allocated, and obtain
  100. * its slot.
  101. *
  102. * The ptr, keyp and slotp parameters must not be NULL. The newly allocated
  103. * key is stored at the address pointed to by the keyp parameter while the
  104. * slot of the inserted pointer is stored at the address pointed to by the
  105. * slotp parameter.
  106. */
  107. static inline int
  108. rdxtree_insert_alloc_slot(struct rdxtree *tree, void *ptr,
  109. rdxtree_key_t *keyp, void ***slotp)
  110. {
  111. return rdxtree_insert_alloc_common(tree, ptr, keyp, slotp);
  112. }
  113. /*
  114. * Remove a pointer from a tree.
  115. *
  116. * The matching pointer is returned if successful, NULL otherwise.
  117. */
  118. void * rdxtree_remove(struct rdxtree *tree, rdxtree_key_t key);
  119. /*
  120. * Look up a pointer in a tree.
  121. *
  122. * The matching pointer is returned if successful, NULL otherwise.
  123. */
  124. static inline void *
  125. rdxtree_lookup(const struct rdxtree *tree, rdxtree_key_t key)
  126. {
  127. return rdxtree_lookup_common(tree, key, false);
  128. }
  129. /*
  130. * Look up a slot in a tree.
  131. *
  132. * A slot is a pointer to a stored pointer in a tree. It can be used as
  133. * a placeholder for fast replacements to avoid multiple lookups on the same
  134. * key.
  135. *
  136. * A slot for the matching pointer is returned if successful, NULL otherwise.
  137. *
  138. * See rdxtree_replace_slot().
  139. */
  140. static inline void **
  141. rdxtree_lookup_slot(const struct rdxtree *tree, rdxtree_key_t key)
  142. {
  143. return rdxtree_lookup_common(tree, key, true);
  144. }
  145. static inline void *
  146. rdxtree_load_slot(void **slot)
  147. {
  148. return rcu_load_ptr(*slot);
  149. }
  150. /*
  151. * Replace a pointer in a tree.
  152. *
  153. * The ptr parameter must not be NULL. The previous pointer is returned.
  154. *
  155. * See rdxtree_lookup_slot().
  156. */
  157. void * rdxtree_replace_slot(void **slot, void *ptr);
  158. /*
  159. * Forge a loop to process all pointers of a tree.
  160. *
  161. * It is not safe to modify a tree from such a loop.
  162. */
  163. #define rdxtree_for_each(tree, iter, ptr) \
  164. for (rdxtree_iter_init(iter), ptr = rdxtree_walk(tree, iter); \
  165. ptr != NULL; \
  166. ptr = rdxtree_walk(tree, iter))
  167. /*
  168. * Return the key of the current pointer from an iterator.
  169. */
  170. static inline rdxtree_key_t
  171. rdxtree_iter_key(const struct rdxtree_iter *iter)
  172. {
  173. return iter->key;
  174. }
  175. /*
  176. * Remove all pointers from a tree.
  177. *
  178. * The common way to destroy a tree and its pointers is to loop over all
  179. * the pointers using rdxtree_for_each(), freeing them, then call this
  180. * function.
  181. */
  182. void rdxtree_remove_all(struct rdxtree *tree);
  183. /*
  184. * This init operation provides :
  185. * - module fully initialized
  186. */
  187. INIT_OP_DECLARE(rdxtree_setup);
  188. #endif /* KERN_RDXTREE_H */