]> git.ozlabs.org Git - ccan/blob - ccan/list/list.h
container_of: don't put member_ptr in container_off.
[ccan] / ccan / list / list.h
1 /* Licensed under LGPLv2.1+ - see LICENSE file for details */
2 #ifndef CCAN_LIST_H
3 #define CCAN_LIST_H
4 #include <stdbool.h>
5 #include <assert.h>
6 #include <ccan/container_of/container_of.h>
7 #include <ccan/check_type/check_type.h>
8
9 /**
10  * struct list_node - an entry in a doubly-linked list
11  * @next: next entry (self if empty)
12  * @prev: previous entry (self if empty)
13  *
14  * This is used as an entry in a linked list.
15  * Example:
16  *      struct child {
17  *              const char *name;
18  *              // Linked list of all us children.
19  *              struct list_node list;
20  *      };
21  */
22 struct list_node
23 {
24         struct list_node *next, *prev;
25 };
26
27 /**
28  * struct list_head - the head of a doubly-linked list
29  * @h: the list_head (containing next and prev pointers)
30  *
31  * This is used as the head of a linked list.
32  * Example:
33  *      struct parent {
34  *              const char *name;
35  *              struct list_head children;
36  *              unsigned int num_children;
37  *      };
38  */
39 struct list_head
40 {
41         struct list_node n;
42 };
43
44 /**
45  * list_check - check head of a list for consistency
46  * @h: the list_head
47  * @abortstr: the location to print on aborting, or NULL.
48  *
49  * Because list_nodes have redundant information, consistency checking between
50  * the back and forward links can be done.  This is useful as a debugging check.
51  * If @abortstr is non-NULL, that will be printed in a diagnostic if the list
52  * is inconsistent, and the function will abort.
53  *
54  * Returns the list head if the list is consistent, NULL if not (it
55  * can never return NULL if @abortstr is set).
56  *
57  * See also: list_check_node()
58  *
59  * Example:
60  *      static void dump_parent(struct parent *p)
61  *      {
62  *              struct child *c;
63  *
64  *              printf("%s (%u children):\n", p->name, p->num_children);
65  *              list_check(&p->children, "bad child list");
66  *              list_for_each(&p->children, c, list)
67  *                      printf(" -> %s\n", c->name);
68  *      }
69  */
70 struct list_head *list_check(const struct list_head *h, const char *abortstr);
71
72 /**
73  * list_check_node - check node of a list for consistency
74  * @n: the list_node
75  * @abortstr: the location to print on aborting, or NULL.
76  *
77  * Check consistency of the list node is in (it must be in one).
78  *
79  * See also: list_check()
80  *
81  * Example:
82  *      static void dump_child(const struct child *c)
83  *      {
84  *              list_check_node(&c->list, "bad child list");
85  *              printf("%s\n", c->name);
86  *      }
87  */
88 struct list_node *list_check_node(const struct list_node *n,
89                                   const char *abortstr);
90
91 #ifdef CCAN_LIST_DEBUG
92 #define list_debug(h) list_check((h), __func__)
93 #define list_debug_node(n) list_check_node((n), __func__)
94 #else
95 #define list_debug(h) (h)
96 #define list_debug_node(n) (n)
97 #endif
98
99 /**
100  * LIST_HEAD_INIT - initializer for an empty list_head
101  * @name: the name of the list.
102  *
103  * Explicit initializer for an empty list.
104  *
105  * See also:
106  *      LIST_HEAD, list_head_init()
107  *
108  * Example:
109  *      static struct list_head my_list = LIST_HEAD_INIT(my_list);
110  */
111 #define LIST_HEAD_INIT(name) { { &name.n, &name.n } }
112
113 /**
114  * LIST_HEAD - define and initialize an empty list_head
115  * @name: the name of the list.
116  *
117  * The LIST_HEAD macro defines a list_head and initializes it to an empty
118  * list.  It can be prepended by "static" to define a static list_head.
119  *
120  * See also:
121  *      LIST_HEAD_INIT, list_head_init()
122  *
123  * Example:
124  *      static LIST_HEAD(my_global_list);
125  */
126 #define LIST_HEAD(name) \
127         struct list_head name = LIST_HEAD_INIT(name)
128
129 /**
130  * list_head_init - initialize a list_head
131  * @h: the list_head to set to the empty list
132  *
133  * Example:
134  *      ...
135  *      struct parent *parent = malloc(sizeof(*parent));
136  *
137  *      list_head_init(&parent->children);
138  *      parent->num_children = 0;
139  */
140 static inline void list_head_init(struct list_head *h)
141 {
142         h->n.next = h->n.prev = &h->n;
143 }
144
145 /**
146  * list_add - add an entry at the start of a linked list.
147  * @h: the list_head to add the node to
148  * @n: the list_node to add to the list.
149  *
150  * The list_node does not need to be initialized; it will be overwritten.
151  * Example:
152  *      struct child *child = malloc(sizeof(*child));
153  *
154  *      child->name = "marvin";
155  *      list_add(&parent->children, &child->list);
156  *      parent->num_children++;
157  */
158 static inline void list_add(struct list_head *h, struct list_node *n)
159 {
160         n->next = h->n.next;
161         n->prev = &h->n;
162         h->n.next->prev = n;
163         h->n.next = n;
164         (void)list_debug(h);
165 }
166
167 /**
168  * list_add_tail - add an entry at the end of a linked list.
169  * @h: the list_head to add the node to
170  * @n: the list_node to add to the list.
171  *
172  * The list_node does not need to be initialized; it will be overwritten.
173  * Example:
174  *      list_add_tail(&parent->children, &child->list);
175  *      parent->num_children++;
176  */
177 static inline void list_add_tail(struct list_head *h, struct list_node *n)
178 {
179         n->next = &h->n;
180         n->prev = h->n.prev;
181         h->n.prev->next = n;
182         h->n.prev = n;
183         (void)list_debug(h);
184 }
185
186 /**
187  * list_empty - is a list empty?
188  * @h: the list_head
189  *
190  * If the list is empty, returns true.
191  *
192  * Example:
193  *      assert(list_empty(&parent->children) == (parent->num_children == 0));
194  */
195 static inline bool list_empty(const struct list_head *h)
196 {
197         (void)list_debug(h);
198         return h->n.next == &h->n;
199 }
200
201 /**
202  * list_del - delete an entry from an (unknown) linked list.
203  * @n: the list_node to delete from the list.
204  *
205  * Note that this leaves @n in an undefined state; it can be added to
206  * another list, but not deleted again.
207  *
208  * See also:
209  *      list_del_from()
210  *
211  * Example:
212  *      list_del(&child->list);
213  *      parent->num_children--;
214  */
215 static inline void list_del(struct list_node *n)
216 {
217         (void)list_debug_node(n);
218         n->next->prev = n->prev;
219         n->prev->next = n->next;
220 #ifdef CCAN_LIST_DEBUG
221         /* Catch use-after-del. */
222         n->next = n->prev = NULL;
223 #endif
224 }
225
226 /**
227  * list_del_from - delete an entry from a known linked list.
228  * @h: the list_head the node is in.
229  * @n: the list_node to delete from the list.
230  *
231  * This explicitly indicates which list a node is expected to be in,
232  * which is better documentation and can catch more bugs.
233  *
234  * See also: list_del()
235  *
236  * Example:
237  *      list_del_from(&parent->children, &child->list);
238  *      parent->num_children--;
239  */
240 static inline void list_del_from(struct list_head *h, struct list_node *n)
241 {
242 #ifdef CCAN_LIST_DEBUG
243         {
244                 /* Thorough check: make sure it was in list! */
245                 struct list_node *i;
246                 for (i = h->n.next; i != n; i = i->next)
247                         assert(i != &h->n);
248         }
249 #endif /* CCAN_LIST_DEBUG */
250
251         /* Quick test that catches a surprising number of bugs. */
252         assert(!list_empty(h));
253         list_del(n);
254 }
255
256 /**
257  * list_entry - convert a list_node back into the structure containing it.
258  * @n: the list_node
259  * @type: the type of the entry
260  * @member: the list_node member of the type
261  *
262  * Example:
263  *      // First list entry is children.next; convert back to child.
264  *      child = list_entry(parent->children.n.next, struct child, list);
265  *
266  * See Also:
267  *      list_top(), list_for_each()
268  */
269 #define list_entry(n, type, member) container_of(n, type, member)
270
271 /**
272  * list_top - get the first entry in a list
273  * @h: the list_head
274  * @type: the type of the entry
275  * @member: the list_node member of the type
276  *
277  * If the list is empty, returns NULL.
278  *
279  * Example:
280  *      struct child *first;
281  *      first = list_top(&parent->children, struct child, list);
282  */
283 #define list_top(h, type, member)                                       \
284         ((type *)list_top_((h), list_off_(type, member)))
285
286 static inline const void *list_top_(const struct list_head *h, size_t off)
287 {
288         if (list_empty(h))
289                 return NULL;
290         return (const char *)h->n.next - off;
291 }
292
293 /**
294  * list_tail - get the last entry in a list
295  * @h: the list_head
296  * @type: the type of the entry
297  * @member: the list_node member of the type
298  *
299  * If the list is empty, returns NULL.
300  *
301  * Example:
302  *      struct child *last;
303  *      last = list_tail(&parent->children, struct child, list);
304  */
305 #define list_tail(h, type, member) \
306         ((type *)list_tail_((h), list_off_(type, member)))
307
308 static inline const void *list_tail_(const struct list_head *h, size_t off)
309 {
310         if (list_empty(h))
311                 return NULL;
312         return (const char *)h->n.prev - off;
313 }
314
315 /**
316  * list_for_each - iterate through a list.
317  * @h: the list_head (warning: evaluated multiple times!)
318  * @i: the structure containing the list_node
319  * @member: the list_node member of the structure
320  *
321  * This is a convenient wrapper to iterate @i over the entire list.  It's
322  * a for loop, so you can break and continue as normal.
323  *
324  * Example:
325  *      list_for_each(&parent->children, child, list)
326  *              printf("Name: %s\n", child->name);
327  */
328 #define list_for_each(h, i, member)                                     \
329         for (i = container_of_var(list_debug(h)->n.next, i, member);    \
330              &i->member != &(h)->n;                                     \
331              i = container_of_var(i->member.next, i, member))
332
333 /**
334  * list_for_each_rev - iterate through a list backwards.
335  * @h: the list_head
336  * @i: the structure containing the list_node
337  * @member: the list_node member of the structure
338  *
339  * This is a convenient wrapper to iterate @i over the entire list.  It's
340  * a for loop, so you can break and continue as normal.
341  *
342  * Example:
343  *      list_for_each_rev(&parent->children, child, list)
344  *              printf("Name: %s\n", child->name);
345  */
346 #define list_for_each_rev(h, i, member)                                 \
347         for (i = container_of_var(list_debug(h)->n.prev, i, member);    \
348              &i->member != &(h)->n;                                     \
349              i = container_of_var(i->member.prev, i, member))
350
351 /**
352  * list_for_each_safe - iterate through a list, maybe during deletion
353  * @h: the list_head
354  * @i: the structure containing the list_node
355  * @nxt: the structure containing the list_node
356  * @member: the list_node member of the structure
357  *
358  * This is a convenient wrapper to iterate @i over the entire list.  It's
359  * a for loop, so you can break and continue as normal.  The extra variable
360  * @nxt is used to hold the next element, so you can delete @i from the list.
361  *
362  * Example:
363  *      struct child *next;
364  *      list_for_each_safe(&parent->children, child, next, list) {
365  *              list_del(&child->list);
366  *              parent->num_children--;
367  *      }
368  */
369 #define list_for_each_safe(h, i, nxt, member)                           \
370         for (i = container_of_var(list_debug(h)->n.next, i, member),    \
371                 nxt = container_of_var(i->member.next, i, member);      \
372              &i->member != &(h)->n;                                     \
373              i = nxt, nxt = container_of_var(i->member.next, i, member))
374
375 /* Get the offset of the member, but make sure it's a list_node. */
376 #define list_off_(type, member)                                 \
377         (container_off(type, member) +                          \
378          check_type(((type *)0)->member, struct list_node))
379
380 #endif /* CCAN_LIST_H */