slist.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. /*
  2. * Copyright (c) 2017 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. * Singly-linked list.
  22. */
  23. #ifndef KERN_SLIST_H
  24. #define KERN_SLIST_H
  25. #include <stdbool.h>
  26. #include <stddef.h>
  27. #include <kern/macros.h>
  28. #include <kern/rcu.h>
  29. #include <kern/slist_types.h>
  30. struct slist;
  31. struct slist_node;
  32. // Static list initializer.
  33. #define SLIST_INITIALIZER(list) { NULL, NULL }
  34. // Initialize a list.
  35. static inline void
  36. slist_init (struct slist *list)
  37. {
  38. list->first = list->last = NULL;
  39. }
  40. // Return the first node of a list.
  41. static inline struct slist_node*
  42. slist_first (const struct slist *list)
  43. {
  44. return (list->first);
  45. }
  46. // Return the last node of a list.
  47. static inline struct slist_node*
  48. slist_last (const struct slist *list)
  49. {
  50. return (list->last);
  51. }
  52. // Return the node next to the given node.
  53. static inline struct slist_node*
  54. slist_next (const struct slist_node *node)
  55. {
  56. return (node->next);
  57. }
  58. // Return true if node is invalid and denotes one of the ends of the list.
  59. static inline bool
  60. slist_end (const struct slist_node *node)
  61. {
  62. return (node == NULL);
  63. }
  64. /*
  65. * Return true if list is empty.
  66. */
  67. static inline bool
  68. slist_empty (const struct slist *list)
  69. {
  70. return (list->first == NULL);
  71. }
  72. // Return true if list contains exactly one node.
  73. static inline bool
  74. slist_singular (const struct slist *list)
  75. {
  76. return (!slist_empty (list) && list->first == list->last);
  77. }
  78. /*
  79. * Append the nodes of list2 at the end of list1.
  80. *
  81. * After completion, list2 is stale.
  82. */
  83. static inline void
  84. slist_concat (struct slist *list1, const struct slist *list2)
  85. {
  86. if (slist_empty (list2))
  87. return;
  88. else if (slist_empty (list1))
  89. list1->first = list2->first;
  90. else
  91. list1->last->next = list2->first;
  92. list1->last = list2->last;
  93. }
  94. /*
  95. * Set the new head of a list.
  96. *
  97. * This function is an optimized version of :
  98. * list_init(&new_list);
  99. * list_concat(&new_list, &old_list);
  100. */
  101. static inline void
  102. slist_set_head (struct slist *new_head, const struct slist *old_head)
  103. {
  104. *new_head = *old_head;
  105. }
  106. // Insert a node at the head of a list.
  107. static inline void
  108. slist_insert_head (struct slist *list, struct slist_node *node)
  109. {
  110. if (slist_empty (list))
  111. list->last = node;
  112. node->next = list->first;
  113. list->first = node;
  114. }
  115. // Insert a node at the tail of a list.
  116. static inline void
  117. slist_insert_tail (struct slist *list, struct slist_node *node)
  118. {
  119. node->next = NULL;
  120. if (slist_empty (list))
  121. list->first = node;
  122. else
  123. list->last->next = node;
  124. list->last = node;
  125. }
  126. /*
  127. * Insert a node after another node.
  128. *
  129. * The prev node must be valid.
  130. */
  131. static inline void
  132. slist_insert_after (struct slist *list, struct slist_node *node,
  133. struct slist_node *prev)
  134. {
  135. node->next = prev->next;
  136. prev->next = node;
  137. if (list->last == prev)
  138. list->last = node;
  139. }
  140. /*
  141. * Remove a node from a list.
  142. *
  143. * The prev argument must point to the node immediately preceding the target
  144. * node. It may safely denote the end of the given list (NULL), in which case
  145. * the first node is removed.
  146. */
  147. static inline void
  148. slist_remove (struct slist *list, struct slist_node *prev)
  149. {
  150. struct slist_node *node;
  151. if (slist_end (prev))
  152. {
  153. node = list->first;
  154. list->first = node->next;
  155. if (list->last == node)
  156. list->last = NULL;
  157. }
  158. else
  159. {
  160. node = prev->next;
  161. prev->next = node->next;
  162. if (list->last == node)
  163. list->last = prev;
  164. }
  165. }
  166. /*
  167. * Macro that evaluates to the address of the structure containing the
  168. * given node based on the given type and member.
  169. */
  170. #define slist_entry(node, type, member) structof(node, type, member)
  171. // Get the first entry of a list.
  172. #define slist_first_entry(list, type, member) \
  173. MACRO_BEGIN \
  174. struct slist_node *first_ = (list)->first; \
  175. slist_end (first_) ? NULL : slist_entry (first_, type, member); \
  176. MACRO_END
  177. // Get the last entry of a list.
  178. #define slist_last_entry(list, type, member) \
  179. MACRO_BEGIN \
  180. struct slist_node *last_ = (list)->last; \
  181. slist_end (last_) ? NULL : slist_entry(last_, type, member); \
  182. MACRO_END
  183. // Get the entry next to the given entry.
  184. #define slist_next_entry(entry, member) \
  185. MACRO_BEGIN \
  186. struct slist_node *next_ = (entry)->member.next; \
  187. slist_end (next_) ? \
  188. NULL : slist_entry(next_, typeof(*entry), member); \
  189. MACRO_END
  190. /*
  191. * Forge a loop to process all nodes of a list.
  192. *
  193. * The node must not be altered during the loop.
  194. */
  195. #define slist_for_each(list, node) \
  196. for (_Auto node = slist_first (list); \
  197. !slist_end (node); \
  198. node = slist_next (node))
  199. // Forge a loop to process all nodes of a list.
  200. #define slist_for_each_safe(list, node, tmp) \
  201. for (node = slist_first (list), \
  202. tmp = slist_end (node) ? NULL : slist_next (node); \
  203. !slist_end (node); \
  204. node = tmp, \
  205. tmp = slist_end (node) ? NULL : slist_next (node))
  206. /*
  207. * Forge a loop to process all entries of a list.
  208. *
  209. * The entry node must not be altered during the loop.
  210. */
  211. #define slist_for_each_entry(list, entry, member) \
  212. for (entry = slist_first_entry (list, typeof (*entry), member); \
  213. entry != NULL; \
  214. entry = slist_next_entry (entry, member))
  215. // Forge a loop to process all entries of a list.
  216. #define slist_for_each_entry_safe(list, entry, tmp, member) \
  217. for (entry = slist_first_entry(list, typeof(*entry), member), \
  218. tmp = entry ? slist_next_entry (entry, member) : NULL; \
  219. entry != NULL; \
  220. entry = tmp, \
  221. tmp = entry ? slist_next_entry (entry, member) : NULL)
  222. /*
  223. * Lockless variants
  224. *
  225. * The slist_end() function may be used from read-side critical sections.
  226. */
  227. /*
  228. * Return the first node of a list.
  229. */
  230. static inline struct slist_node*
  231. slist_rcu_first (const struct slist *list)
  232. {
  233. return (rcu_load (&list->first));
  234. }
  235. /*
  236. * Return the node next to the given node.
  237. */
  238. static inline struct slist_node*
  239. slist_rcu_next (const struct slist_node *node)
  240. {
  241. return (rcu_load (&node->next));
  242. }
  243. /*
  244. * Insert a node at the head of a list.
  245. */
  246. static inline void
  247. slist_rcu_insert_head (struct slist *list, struct slist_node *node)
  248. {
  249. if (slist_empty (list))
  250. list->last = node;
  251. node->next = list->first;
  252. rcu_store (&list->first, node);
  253. }
  254. // Insert a node at the tail of a list.
  255. static inline void
  256. slist_rcu_insert_tail (struct slist *list, struct slist_node *node)
  257. {
  258. node->next = NULL;
  259. rcu_store (slist_empty (list) ? &list->first : &list->last->next, node);
  260. list->last = node;
  261. }
  262. /*
  263. * Insert a node after another node.
  264. *
  265. * The prev node must be valid.
  266. */
  267. static inline void
  268. slist_rcu_insert_after (struct slist *list, struct slist_node *node,
  269. struct slist_node *prev)
  270. {
  271. node->next = prev->next;
  272. rcu_store (&prev->next, node);
  273. if (list->last == prev)
  274. list->last = node;
  275. }
  276. /*
  277. * Remove a node from a list.
  278. *
  279. * The prev argument must point to the node immediately preceding the target
  280. * node. It may safely denote the end of the given list, in which case the
  281. * first node is removed.
  282. */
  283. static inline void
  284. slist_rcu_remove (struct slist *list, struct slist_node *prev)
  285. {
  286. if (slist_end (prev))
  287. {
  288. _Auto node = list->first;
  289. rcu_store (&list->first, node->next);
  290. if (list->last == node)
  291. list->last = NULL;
  292. }
  293. else
  294. {
  295. _Auto node = prev->next;
  296. rcu_store (&prev->next, node->next);
  297. if (list->last == node)
  298. list->last = prev;
  299. }
  300. }
  301. /*
  302. * Macro that evaluates to the address of the structure containing the
  303. * given node based on the given type and member.
  304. */
  305. #define slist_rcu_entry(node, type, member) \
  306. structof(rcu_load (&(node)), type, member)
  307. // Get the first entry of a list.
  308. #define slist_rcu_first_entry(list, type, member) \
  309. MACRO_BEGIN \
  310. struct slist_node *first_ = slist_rcu_first (list); \
  311. slist_end (first_) ? NULL : slist_entry (first_, type, member); \
  312. MACRO_END
  313. // Get the entry next to the given entry.
  314. #define slist_rcu_next_entry(entry, member) \
  315. MACRO_BEGIN \
  316. struct slist_node *next_ = slist_rcu_next (&entry->member); \
  317. slist_end (next_) ? \
  318. NULL : slist_entry (next_, typeof (*entry), member); \
  319. MACRO_END
  320. // Forge a loop to process all nodes of a list.
  321. #define slist_rcu_for_each(list, node) \
  322. for (_Auto node = slist_rcu_first (list); \
  323. !slist_end (node); \
  324. node = slist_rcu_next (node))
  325. // Forge a loop to process all entries of a list.
  326. #define slist_rcu_for_each_entry(list, entry, member) \
  327. for (entry = slist_rcu_first_entry (list, typeof (*entry), member); \
  328. entry != NULL; \
  329. entry = slist_rcu_next_entry (entry, member))
  330. #endif