blob: 642a7a36a5c89051af3e0dcfc67499d317f05ce3 [file] [log] [blame]
willy tarreau80862a32006-04-12 19:15:57 +02001/*
Willy Tarreau3dd717c2014-12-23 13:58:43 +01002 * include/common/mini-clist.h
3 * Circular list manipulation macros and structures.
willy tarreau80862a32006-04-12 19:15:57 +02004 *
Willy Tarreau3dd717c2014-12-23 13:58:43 +01005 * Copyright (C) 2002-2014 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
willy tarreau80862a32006-04-12 19:15:57 +020020 */
21
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#ifndef _COMMON_MINI_CLIST_H
23#define _COMMON_MINI_CLIST_H
willy tarreau80862a32006-04-12 19:15:57 +020024
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
26
willy tarreau80862a32006-04-12 19:15:57 +020027/* these are circular or bidirectionnal lists only. Each list pointer points to
28 * another list pointer in a structure, and not the structure itself. The
29 * pointer to the next element MUST be the first one so that the list is easily
30 * cast as a single linked list or pointer.
31 */
32struct list {
33 struct list *n; /* next */
34 struct list *p; /* prev */
35};
36
Olivier Houchard859dc802019-08-08 15:47:21 +020037/* This is similar to struct list, but we want to be sure the compiler will
38 * yell at you if you use macroes for one when you're using the other. You have
39 * to expicitely cast if that's really what you want to do.
40 */
41struct mt_list {
42 struct mt_list *next;
43 struct mt_list *prev;
44};
45
46
Willy Tarreaubc04ce72008-12-07 20:00:15 +010047/* a back-ref is a pointer to a target list entry. It is used to detect when an
48 * element being deleted is currently being tracked by another user. The best
49 * example is a user dumping the session table. The table does not fit in the
50 * output buffer so we have to set a mark on a session and go on later. But if
51 * that marked session gets deleted, we don't want the user's pointer to go in
52 * the wild. So we can simply link this user's request to the list of this
53 * session's users, and put a pointer to the list element in ref, that will be
54 * used as the mark for next iteration.
55 */
56struct bref {
57 struct list users;
58 struct list *ref; /* pointer to the target's list entry */
59};
60
Willy Tarreaudeb9ed82010-01-03 21:03:22 +010061/* a word list is a generic list with a pointer to a string in each element. */
62struct wordlist {
63 struct list list;
64 char *s;
65};
66
Willy Tarreauf4f04122010-01-28 18:10:50 +010067/* this is the same as above with an additional pointer to a condition. */
68struct cond_wordlist {
69 struct list list;
70 void *cond;
71 char *s;
72};
73
Willy Tarreaubd578bb2007-10-28 11:41:06 +010074/* First undefine some macros which happen to also be defined on OpenBSD,
75 * in sys/queue.h, used by sys/event.h
76 */
77#undef LIST_HEAD
78#undef LIST_INIT
79#undef LIST_NEXT
80
Willy Tarreaudc13c112013-06-21 23:16:39 +020081/* ILH = Initialized List Head : used to prevent gcc from moving an empty
82 * list to BSS. Some older version tend to trim all the array and cause
83 * corruption.
84 */
85#define ILH { .n = (struct list *)1, .p = (struct list *)2 }
86
Willy Tarreaubaaee002006-06-26 02:48:02 +020087#define LIST_HEAD(a) ((void *)(&(a)))
88
willy tarreau80862a32006-04-12 19:15:57 +020089#define LIST_INIT(l) ((l)->n = (l)->p = (l))
90
Willy Tarreau2b1dccd2007-05-07 00:18:32 +020091#define LIST_HEAD_INIT(l) { &l, &l }
92
willy tarreau80862a32006-04-12 19:15:57 +020093/* adds an element at the beginning of a list ; returns the element */
94#define LIST_ADD(lh, el) ({ (el)->n = (lh)->n; (el)->n->p = (lh)->n = (el); (el)->p = (lh); (el); })
95
96/* adds an element at the end of a list ; returns the element */
97#define LIST_ADDQ(lh, el) ({ (el)->p = (lh)->p; (el)->p->n = (lh)->p = (el); (el)->n = (lh); (el); })
98
Willy Tarreau9bead8c2019-08-16 11:27:50 +020099/* adds the contents of a list <old> at the beginning of another list <new>. The old list head remains untouched. */
100#define LIST_SPLICE(new, old) do { \
101 if (!LIST_ISEMPTY(old)) { \
102 (old)->p->n = (new)->n; (old)->n->p = (new); \
103 (new)->n->p = (old)->p; (new)->n = (old)->n; \
104 } \
105 } while (0)
106
willy tarreau80862a32006-04-12 19:15:57 +0200107/* removes an element from a list and returns it */
108#define LIST_DEL(el) ({ typeof(el) __ret = (el); (el)->n->p = (el)->p; (el)->p->n = (el)->n; (__ret); })
109
Willy Tarreauc5bd3112019-03-06 19:32:11 +0100110/* removes an element from a list, initializes it and returns it.
111 * This is faster than LIST_DEL+LIST_INIT as we avoid reloading the pointers.
112 */
113#define LIST_DEL_INIT(el) ({ \
114 typeof(el) __ret = (el); \
115 typeof(__ret->n) __n = __ret->n; \
116 typeof(__ret->p) __p = __ret->p; \
117 __n->p = __p; __p->n = __n; \
118 __ret->n = __ret->p = __ret; \
119 __ret; \
120})
121
willy tarreau80862a32006-04-12 19:15:57 +0200122/* returns a pointer of type <pt> to a structure containing a list head called
123 * <el> at address <lh>. Note that <lh> can be the result of a function or macro
124 * since it's used only once.
125 * Example: LIST_ELEM(cur_node->args.next, struct node *, args)
126 */
127#define LIST_ELEM(lh, pt, el) ((pt)(((void *)(lh)) - ((void *)&((pt)NULL)->el)))
128
129/* checks if the list head <lh> is empty or not */
130#define LIST_ISEMPTY(lh) ((lh)->n == (lh))
131
Willy Tarreau42ccb5a2019-05-13 17:48:46 +0200132/* checks if the list element <el> was added to a list or not. This only
133 * works when detached elements are reinitialized (using LIST_DEL_INIT)
134 */
135#define LIST_ADDED(el) ((el)->n != (el))
136
willy tarreau80862a32006-04-12 19:15:57 +0200137/* returns a pointer of type <pt> to a structure following the element
138 * which contains list head <lh>, which is known as element <el> in
139 * struct pt.
140 * Example: LIST_NEXT(args, struct node *, list)
141 */
142#define LIST_NEXT(lh, pt, el) (LIST_ELEM((lh)->n, pt, el))
143
144
Joseph Herlant41abef72018-11-25 10:57:13 -0800145/* returns a pointer of type <pt> to a structure preceding the element
willy tarreau80862a32006-04-12 19:15:57 +0200146 * which contains list head <lh>, which is known as element <el> in
147 * struct pt.
148 */
Thierry FOURNIER1db96672015-11-03 19:17:37 +0100149#undef LIST_PREV
willy tarreau80862a32006-04-12 19:15:57 +0200150#define LIST_PREV(lh, pt, el) (LIST_ELEM((lh)->p, pt, el))
151
152/*
Willy Tarreaub9c62b92007-05-02 20:46:49 +0200153 * Simpler FOREACH_ITEM macro inspired from Linux sources.
154 * Iterates <item> through a list of items of type "typeof(*item)" which are
155 * linked via a "struct list" member named <member>. A pointer to the head of
156 * the list is passed in <list_head>. No temporary variable is needed. Note
157 * that <item> must not be modified during the loop.
158 * Example: list_for_each_entry(cur_acl, known_acl, list) { ... };
159 */
160#define list_for_each_entry(item, list_head, member) \
161 for (item = LIST_ELEM((list_head)->n, typeof(item), member); \
162 &item->member != (list_head); \
163 item = LIST_ELEM(item->member.n, typeof(item), member))
164
165/*
William Lallemand83215a42017-09-24 11:26:02 +0200166 * Same as list_for_each_entry but starting from current point
167 * Iterates <item> through the list starting from <item>
168 * It's basically the same macro but without initializing item to the head of
169 * the list.
170 */
171#define list_for_each_entry_from(item, list_head, member) \
172 for ( ; &item->member != (list_head); \
173 item = LIST_ELEM(item->member.n, typeof(item), member))
174
175/*
Willy Tarreaub9c62b92007-05-02 20:46:49 +0200176 * Simpler FOREACH_ITEM_SAFE macro inspired from Linux sources.
177 * Iterates <item> through a list of items of type "typeof(*item)" which are
178 * linked via a "struct list" member named <member>. A pointer to the head of
179 * the list is passed in <list_head>. A temporary variable <back> of same type
180 * as <item> is needed so that <item> may safely be deleted if needed.
181 * Example: list_for_each_entry_safe(cur_acl, tmp, known_acl, list) { ... };
182 */
183#define list_for_each_entry_safe(item, back, list_head, member) \
184 for (item = LIST_ELEM((list_head)->n, typeof(item), member), \
185 back = LIST_ELEM(item->member.n, typeof(item), member); \
186 &item->member != (list_head); \
187 item = back, back = LIST_ELEM(back->member.n, typeof(back), member))
188
189
William Lallemand83215a42017-09-24 11:26:02 +0200190/*
191 * Same as list_for_each_entry_safe but starting from current point
192 * Iterates <item> through the list starting from <item>
193 * It's basically the same macro but without initializing item to the head of
194 * the list.
195 */
196#define list_for_each_entry_safe_from(item, back, list_head, member) \
197 for (back = LIST_ELEM(item->member.n, typeof(item), member); \
198 &item->member != (list_head); \
199 item = back, back = LIST_ELEM(back->member.n, typeof(back), member))
200
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100201#include <common/hathreads.h>
Olivier Houchard859dc802019-08-08 15:47:21 +0200202#define MT_LIST_BUSY ((struct mt_list *)1)
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100203
204/*
205 * Locked version of list manipulation macros.
206 * It is OK to use those concurrently from multiple threads, as long as the
207 * list is only used with the locked variants. The only "unlocked" macro you
208 * can use with a locked list is LIST_INIT.
209 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200210#define MT_LIST_ADD(lh, el) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100211 do { \
212 while (1) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200213 struct mt_list *n; \
214 struct mt_list *p; \
215 n = _HA_ATOMIC_XCHG(&(lh)->next, MT_LIST_BUSY); \
216 if (n == MT_LIST_BUSY) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100217 continue; \
Olivier Houchard859dc802019-08-08 15:47:21 +0200218 p = _HA_ATOMIC_XCHG(&n->prev, MT_LIST_BUSY); \
219 if (p == MT_LIST_BUSY) { \
220 (lh)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100221 __ha_barrier_store(); \
222 continue; \
223 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200224 (el)->next = n; \
225 (el)->prev = p; \
Willy Tarreau690d2ad2019-02-28 11:14:22 +0100226 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200227 n->prev = (el); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100228 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200229 p->next = (el); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100230 __ha_barrier_store(); \
231 break; \
232 } \
233 } while (0)
234
Olivier Houchard859dc802019-08-08 15:47:21 +0200235#define MT_LIST_ADDQ(lh, el) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100236 do { \
237 while (1) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200238 struct mt_list *n; \
239 struct mt_list *p; \
240 p = _HA_ATOMIC_XCHG(&(lh)->prev, MT_LIST_BUSY); \
241 if (p == MT_LIST_BUSY) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100242 continue; \
Olivier Houchard859dc802019-08-08 15:47:21 +0200243 n = _HA_ATOMIC_XCHG(&p->next, MT_LIST_BUSY); \
244 if (n == MT_LIST_BUSY) { \
245 (lh)->prev = p; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100246 __ha_barrier_store(); \
247 continue; \
248 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200249 (el)->next = n; \
250 (el)->prev = p; \
Willy Tarreau690d2ad2019-02-28 11:14:22 +0100251 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200252 p->next = (el); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100253 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200254 n->prev = (el); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100255 __ha_barrier_store(); \
256 break; \
257 } \
258 } while (0)
259
Olivier Houchard859dc802019-08-08 15:47:21 +0200260#define MT_LIST_DEL(el) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100261 do { \
262 while (1) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200263 struct mt_list *n, *n2; \
264 struct mt_list *p, *p2 = NULL; \
265 n = _HA_ATOMIC_XCHG(&(el)->next, MT_LIST_BUSY); \
266 if (n == MT_LIST_BUSY) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100267 continue; \
Olivier Houchard859dc802019-08-08 15:47:21 +0200268 p = _HA_ATOMIC_XCHG(&(el)->prev, MT_LIST_BUSY); \
269 if (p == MT_LIST_BUSY) { \
270 (el)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100271 __ha_barrier_store(); \
272 continue; \
273 } \
274 if (p != (el)) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200275 p2 = _HA_ATOMIC_XCHG(&p->next, MT_LIST_BUSY);\
276 if (p2 == MT_LIST_BUSY) { \
277 (el)->prev = p; \
278 (el)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100279 __ha_barrier_store(); \
280 continue; \
281 } \
282 } \
283 if (n != (el)) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200284 n2 = _HA_ATOMIC_XCHG(&n->prev, MT_LIST_BUSY);\
285 if (n2 == MT_LIST_BUSY) { \
Olivier Houcharddb644892019-02-26 18:46:07 +0100286 if (p2 != NULL) \
Olivier Houchard859dc802019-08-08 15:47:21 +0200287 p->next = p2; \
288 (el)->prev = p; \
289 (el)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100290 __ha_barrier_store(); \
291 continue; \
292 } \
293 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200294 n->prev = p; \
295 p->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100296 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200297 (el)->prev = (el); \
298 (el)->next = (el); \
Willy Tarreau4c747e82019-02-28 15:05:53 +0100299 __ha_barrier_store(); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100300 break; \
301 } \
302 } while (0)
303
304
305/* Remove the first element from the list, and return it */
Olivier Houchard859dc802019-08-08 15:47:21 +0200306#define MT_LIST_POP(lh, pt, el) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100307 ({ \
308 void *_ret; \
309 while (1) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200310 struct mt_list *n, *n2; \
311 struct mt_list *p, *p2; \
312 n = _HA_ATOMIC_XCHG(&(lh)->next, MT_LIST_BUSY); \
313 if (n == MT_LIST_BUSY) \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100314 continue; \
315 if (n == (lh)) { \
Olivier Houchard859dc802019-08-08 15:47:21 +0200316 (lh)->next = lh; \
Willy Tarreau690d2ad2019-02-28 11:14:22 +0100317 __ha_barrier_store(); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100318 _ret = NULL; \
319 break; \
320 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200321 p = _HA_ATOMIC_XCHG(&n->prev, MT_LIST_BUSY); \
322 if (p == MT_LIST_BUSY) { \
323 (lh)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100324 __ha_barrier_store(); \
325 continue; \
326 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200327 n2 = _HA_ATOMIC_XCHG(&n->next, MT_LIST_BUSY); \
328 if (n2 == MT_LIST_BUSY) { \
329 n->prev = p; \
Willy Tarreau690d2ad2019-02-28 11:14:22 +0100330 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200331 (lh)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100332 __ha_barrier_store(); \
333 continue; \
334 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200335 p2 = _HA_ATOMIC_XCHG(&n2->prev, MT_LIST_BUSY); \
336 if (p2 == MT_LIST_BUSY) { \
337 n->next = n2; \
338 n->prev = p; \
Willy Tarreau690d2ad2019-02-28 11:14:22 +0100339 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200340 (lh)->next = n; \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100341 __ha_barrier_store(); \
342 continue; \
343 } \
Olivier Houchard859dc802019-08-08 15:47:21 +0200344 (lh)->next = n2; \
345 (n2)->prev = (lh); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100346 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200347 (n)->prev = (n); \
348 (n)->next = (n); \
Willy Tarreau4c747e82019-02-28 15:05:53 +0100349 __ha_barrier_store(); \
Olivier Houchard859dc802019-08-08 15:47:21 +0200350 _ret = MT_LIST_ELEM(n, pt, el); \
Olivier Houcharda8434ec2019-01-18 17:26:26 +0100351 break; \
352 } \
353 (_ret); \
354 })
William Lallemand83215a42017-09-24 11:26:02 +0200355
Olivier Houchard859dc802019-08-08 15:47:21 +0200356#define MT_LIST_HEAD(a) ((void *)(&(a)))
357
358#define MT_LIST_INIT(l) ((l)->next = (l)->prev = (l))
359
360#define MT_LIST_HEAD_INIT(l) { &l, &l }
361/* returns a pointer of type <pt> to a structure containing a list head called
362 * <el> at address <lh>. Note that <lh> can be the result of a function or macro
363 * since it's used only once.
364 * Example: MT_LIST_ELEM(cur_node->args.next, struct node *, args)
365 */
366#define MT_LIST_ELEM(lh, pt, el) ((pt)(((void *)(lh)) - ((void *)&((pt)NULL)->el)))
367
368/* checks if the list head <lh> is empty or not */
369#define MT_LIST_ISEMPTY(lh) ((lh)->next == (lh))
370
371/* returns a pointer of type <pt> to a structure following the element
372 * which contains list head <lh>, which is known as element <el> in
373 * struct pt.
374 * Example: MT_LIST_NEXT(args, struct node *, list)
375 */
376#define MT_LIST_NEXT(lh, pt, el) (MT_LIST_ELEM((lh)->next, pt, el))
377
378
379/* returns a pointer of type <pt> to a structure preceding the element
380 * which contains list head <lh>, which is known as element <el> in
381 * struct pt.
382 */
383#undef MT_LIST_PREV
384#define MT_LIST_PREV(lh, pt, el) (MT_LIST_ELEM((lh)->prev, pt, el))
385
386/* checks if the list element <el> was added to a list or not. This only
387 * works when detached elements are reinitialized (using LIST_DEL_INIT)
388 */
389#define MT_LIST_ADDED(el) ((el)->next != (el))
390
Olivier Houchard5e9b92c2019-08-12 14:10:12 +0200391/* Lock an element in the list, to be sure it won't be removed.
392 * It needs to be synchronized somehow to be sure it's not removed
393 * from the list in the meanwhile.
394 * This returns a struct mt_list, that will be needed at unlock time.
395 */
396#define MT_LIST_LOCK_ELT(el) \
397 ({ \
398 struct mt_list ret; \
399 while (1) { \
400 struct mt_list *n, *n2; \
401 struct mt_list *p, *p2 = NULL; \
402 n = _HA_ATOMIC_XCHG(&(el)->next, MT_LIST_BUSY); \
403 if (n == MT_LIST_BUSY) \
404 continue; \
405 p = _HA_ATOMIC_XCHG(&(el)->prev, MT_LIST_BUSY); \
406 if (p == MT_LIST_BUSY) { \
407 (el)->next = n; \
408 __ha_barrier_store(); \
409 continue; \
410 } \
411 if (p != (el)) { \
412 p2 = _HA_ATOMIC_XCHG(&p->next, MT_LIST_BUSY);\
413 if (p2 == MT_LIST_BUSY) { \
414 (el)->prev = p; \
415 (el)->next = n; \
416 __ha_barrier_store(); \
417 continue; \
418 } \
419 } \
420 if (n != (el)) { \
421 n2 = _HA_ATOMIC_XCHG(&n->prev, MT_LIST_BUSY);\
422 if (n2 == MT_LIST_BUSY) { \
423 if (p2 != NULL) \
424 p->next = p2; \
425 (el)->prev = p; \
426 (el)->next = n; \
427 __ha_barrier_store(); \
428 continue; \
429 } \
430 } \
431 ret.next = n; \
432 ret.prev = p; \
433 break; \
434 } \
435 ret; \
436 })
437
438/* Unlock an element previously locked by MT_LIST_LOCK_ELT. "np" is the
439 * struct mt_list returned by MT_LIST_LOCK_ELT().
440 */
441#define MT_LIST_UNLOCK_ELT(el, np) \
442 do { \
443 struct mt_list *n = (np).next, *p = (np).prev; \
444 (el)->next = n; \
445 (el)->prev = p; \
446 if (n != (el)) \
447 n->prev = (el); \
448 if (p != (el)) \
449 p->next = (el); \
450 } while (0)
451
452/* Internal macroes for the foreach macroes */
453#define _MT_LIST_UNLOCK_NEXT(el, np) \
454 do { \
455 struct mt_list *n = (np); \
456 (el)->next = n; \
457 if (n != (el)) \
458 n->prev = (el); \
459 } while (0)
460
461/* Internal macroes for the foreach macroes */
462#define _MT_LIST_UNLOCK_PREV(el, np) \
463 do { \
464 struct mt_list *p = (np); \
465 (el)->prev = p; \
466 if (p != (el)) \
467 p->next = (el); \
468 } while (0)
469
470#define _MT_LIST_LOCK_NEXT(el) \
471 ({ \
472 struct mt_list *n = NULL; \
473 while (1) { \
474 struct mt_list *n2; \
475 n = _HA_ATOMIC_XCHG(&((el)->next), MT_LIST_BUSY); \
476 if (n == MT_LIST_BUSY) \
477 continue; \
478 if (n != (el)) { \
479 n2 = _HA_ATOMIC_XCHG(&n->prev, MT_LIST_BUSY);\
480 if (n2 == MT_LIST_BUSY) { \
481 (el)->next = n; \
482 __ha_barrier_store(); \
483 continue; \
484 } \
485 } \
486 break; \
487 } \
488 n; \
489 })
490
491#define _MT_LIST_LOCK_PREV(el) \
492 ({ \
493 struct mt_list *p = NULL; \
494 while (1) { \
495 struct mt_list *p2; \
496 p = _HA_ATOMIC_XCHG(&((el)->prev), MT_LIST_BUSY); \
497 if (p == MT_LIST_BUSY) \
498 continue; \
499 if (p != (el)) { \
500 p2 = _HA_ATOMIC_XCHG(&p->next, MT_LIST_BUSY);\
501 if (p2 == MT_LIST_BUSY) { \
502 (el)->prev = p; \
503 __ha_barrier_store(); \
504 continue; \
505 } \
506 } \
507 break; \
508 } \
509 p; \
510 })
511
512#define _MT_LIST_RELINK_DELETED(elt2) \
513 do { \
514 struct mt_list *n = elt2.next, *p = elt2.prev; \
515 n->prev = p; \
516 p->next = n; \
517 } while (0);
518
519/* Equivalent of MT_LIST_DEL(), to be used when parsing the list with mt_list_entry_for_each_safe().
520 * It should be the element currently parsed (tmpelt1)
521 */
522#define MT_LIST_DEL_SAFE(el) \
523 do { \
524 (el)->prev = (el); \
525 (el)->next = (el); \
526 (el) = NULL; \
527 } while (0)
528
529/* Simpler FOREACH_ITEM_SAFE macro inspired from Linux sources.
530 * Iterates <item> through a list of items of type "typeof(*item)" which are
531 * linked via a "struct list" member named <member>. A pointer to the head of
532 * the list is passed in <list_head>. A temporary variable <back> of same type
533 * as <item> is needed so that <item> may safely be deleted if needed.
534 * tmpelt1 is a temporary struct mt_list *, and tmpelt2 is a temporary
535 * struct mt_list, used internally, both are needed for MT_LIST_DEL_SAFE.
536 * Example: list_for_each_entry_safe(cur_acl, tmp, known_acl, list, elt1, elt2)
537 * { ... };
538 * If you want to remove the current element, please use MT_LIST_DEL_SAFE.
539 */
540#define mt_list_for_each_entry_safe(item, list_head, member, tmpelt, tmpelt2) \
541 for ((tmpelt) = NULL; (tmpelt) != MT_LIST_BUSY; ({ \
542 if (tmpelt) { \
543 if (tmpelt2.prev) \
544 MT_LIST_UNLOCK_ELT(tmpelt, tmpelt2); \
545 else \
546 _MT_LIST_UNLOCK_NEXT(tmpelt, tmpelt2.next); \
547 } else \
548 _MT_LIST_RELINK_DELETED(tmpelt2); \
549 (tmpelt) = MT_LIST_BUSY; \
550 })) \
551 for ((tmpelt) = (list_head), (tmpelt2).prev = NULL, (tmpelt2).next = _MT_LIST_LOCK_NEXT(list_head); ({ \
552 (item) = MT_LIST_ELEM((tmpelt2.next), typeof(item), member); \
553 if (&item->member != (list_head)) { \
554 if (tmpelt2.prev != &item->member) \
555 tmpelt2.next = _MT_LIST_LOCK_NEXT(&item->member); \
556 else \
557 tmpelt2.next = tmpelt; \
558 if (tmpelt != NULL) { \
559 if (tmpelt2.prev) \
560 _MT_LIST_UNLOCK_PREV(tmpelt, tmpelt2.prev); \
561 tmpelt2.prev = tmpelt; \
562 } \
563 (tmpelt) = &item->member; \
564 } \
565 }), \
566 &item->member != (list_head);)
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200567#endif /* _COMMON_MINI_CLIST_H */