1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2011 STRATO AG
4 * written by Arne Jansen <sensille@gmx.net>
7 #include <linux/slab.h>
12 * ulist is a generic data structure to hold a collection of unique u64
13 * values. The only operations it supports is adding to the list and
15 * It is possible to store an auxiliary value along with the key.
17 * A sample usage for ulists is the enumeration of directed graphs without
18 * visiting a node twice. The pseudo-code could look like this:
20 * ulist = ulist_alloc();
21 * ulist_add(ulist, root);
22 * ULIST_ITER_INIT(&uiter);
24 * while ((elem = ulist_next(ulist, &uiter)) {
25 * for (all child nodes n in elem)
26 * ulist_add(ulist, n);
27 * do something useful with the node;
31 * This assumes the graph nodes are addressable by u64. This stems from the
32 * usage for tree enumeration in btrfs, where the logical addresses are
35 * It is also useful for tree enumeration which could be done elegantly
36 * recursively, but is not possible due to kernel stack limitations. The
37 * loop would be similar to the above.
41 * Freshly initialize a ulist.
43 * @ulist: the ulist to initialize
45 * Note: don't use this function to init an already used ulist, use
46 * ulist_reinit instead.
48 void ulist_init(struct ulist
*ulist
)
50 INIT_LIST_HEAD(&ulist
->nodes
);
51 ulist
->root
= RB_ROOT
;
53 ulist
->prealloc
= NULL
;
57 * Free up additionally allocated memory for the ulist.
59 * @ulist: the ulist from which to free the additional memory
61 * This is useful in cases where the base 'struct ulist' has been statically
64 void ulist_release(struct ulist
*ulist
)
66 struct ulist_node
*node
;
67 struct ulist_node
*next
;
69 list_for_each_entry_safe(node
, next
, &ulist
->nodes
, list
) {
72 kfree(ulist
->prealloc
);
73 ulist
->prealloc
= NULL
;
74 ulist
->root
= RB_ROOT
;
75 INIT_LIST_HEAD(&ulist
->nodes
);
79 * Prepare a ulist for reuse.
81 * @ulist: ulist to be reused
83 * Free up all additional memory allocated for the list elements and reinit
86 void ulist_reinit(struct ulist
*ulist
)
93 * Dynamically allocate a ulist.
95 * @gfp_mask: allocation flags to for base allocation
97 * The allocated ulist will be returned in an initialized state.
99 struct ulist
*ulist_alloc(gfp_t gfp_mask
)
101 struct ulist
*ulist
= kmalloc(sizeof(*ulist
), gfp_mask
);
111 void ulist_prealloc(struct ulist
*ulist
, gfp_t gfp_mask
)
113 if (!ulist
->prealloc
)
114 ulist
->prealloc
= kzalloc(sizeof(*ulist
->prealloc
), gfp_mask
);
118 * Free dynamically allocated ulist.
120 * @ulist: ulist to free
122 * It is not necessary to call ulist_release before.
124 void ulist_free(struct ulist
*ulist
)
128 ulist_release(ulist
);
132 static struct ulist_node
*ulist_rbtree_search(struct ulist
*ulist
, u64 val
)
134 struct rb_node
*n
= ulist
->root
.rb_node
;
135 struct ulist_node
*u
= NULL
;
138 u
= rb_entry(n
, struct ulist_node
, rb_node
);
141 else if (u
->val
> val
)
149 static void ulist_rbtree_erase(struct ulist
*ulist
, struct ulist_node
*node
)
151 rb_erase(&node
->rb_node
, &ulist
->root
);
152 list_del(&node
->list
);
154 BUG_ON(ulist
->nnodes
== 0);
158 static int ulist_rbtree_insert(struct ulist
*ulist
, struct ulist_node
*ins
)
160 struct rb_node
**p
= &ulist
->root
.rb_node
;
161 struct rb_node
*parent
= NULL
;
162 struct ulist_node
*cur
= NULL
;
166 cur
= rb_entry(parent
, struct ulist_node
, rb_node
);
168 if (cur
->val
< ins
->val
)
170 else if (cur
->val
> ins
->val
)
175 rb_link_node(&ins
->rb_node
, parent
, p
);
176 rb_insert_color(&ins
->rb_node
, &ulist
->root
);
181 * Add an element to the ulist.
183 * @ulist: ulist to add the element to
184 * @val: value to add to ulist
185 * @aux: auxiliary value to store along with val
186 * @gfp_mask: flags to use for allocation
188 * Note: locking must be provided by the caller. In case of rwlocks write
191 * Add an element to a ulist. The @val will only be added if it doesn't
192 * already exist. If it is added, the auxiliary value @aux is stored along with
193 * it. In case @val already exists in the ulist, @aux is ignored, even if
194 * it differs from the already stored value.
196 * ulist_add returns 0 if @val already exists in ulist and 1 if @val has been
198 * In case of allocation failure -ENOMEM is returned and the ulist stays
201 int ulist_add(struct ulist
*ulist
, u64 val
, u64 aux
, gfp_t gfp_mask
)
203 return ulist_add_merge(ulist
, val
, aux
, NULL
, gfp_mask
);
206 int ulist_add_merge(struct ulist
*ulist
, u64 val
, u64 aux
,
207 u64
*old_aux
, gfp_t gfp_mask
)
210 struct ulist_node
*node
;
212 node
= ulist_rbtree_search(ulist
, val
);
215 *old_aux
= node
->aux
;
219 if (ulist
->prealloc
) {
220 node
= ulist
->prealloc
;
221 ulist
->prealloc
= NULL
;
223 node
= kmalloc(sizeof(*node
), gfp_mask
);
231 ret
= ulist_rbtree_insert(ulist
, node
);
233 list_add_tail(&node
->list
, &ulist
->nodes
);
240 * Delete one node from ulist.
242 * @ulist: ulist to remove node from
243 * @val: value to delete
244 * @aux: aux to delete
246 * The deletion will only be done when *BOTH* val and aux matches.
247 * Return 0 for successful delete.
248 * Return > 0 for not found.
250 int ulist_del(struct ulist
*ulist
, u64 val
, u64 aux
)
252 struct ulist_node
*node
;
254 node
= ulist_rbtree_search(ulist
, val
);
259 if (node
->aux
!= aux
)
262 /* Found and delete */
263 ulist_rbtree_erase(ulist
, node
);
270 * @ulist: ulist to iterate
271 * @uiter: iterator variable, initialized with ULIST_ITER_INIT(&iterator)
273 * Note: locking must be provided by the caller. In case of rwlocks only read
276 * This function is used to iterate an ulist.
277 * It returns the next element from the ulist or %NULL when the
278 * end is reached. No guarantee is made with respect to the order in which
279 * the elements are returned. They might neither be returned in order of
280 * addition nor in ascending order.
281 * It is allowed to call ulist_add during an enumeration. Newly added items
282 * are guaranteed to show up in the running enumeration.
284 struct ulist_node
*ulist_next(const struct ulist
*ulist
, struct ulist_iterator
*uiter
)
286 struct ulist_node
*node
;
288 if (list_empty(&ulist
->nodes
))
290 if (uiter
->cur_list
&& uiter
->cur_list
->next
== &ulist
->nodes
)
292 if (uiter
->cur_list
) {
293 uiter
->cur_list
= uiter
->cur_list
->next
;
295 uiter
->cur_list
= ulist
->nodes
.next
;
297 node
= list_entry(uiter
->cur_list
, struct ulist_node
, list
);