blob: 53746be42903b12ff468ae2a3f39b7f090504c2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 Red Black Trees
3 (C) 1999 Andrea Arcangeli <andrea@suse.de>
4 (C) 2002 David Woodhouse <dwmw2@infradead.org>
Michel Lespinasse46b61352012-10-08 16:31:11 -07005 (C) 2012 Michel Lespinasse <walken@google.com>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
21 linux/lib/rbtree.c
22*/
23
Michel Lespinasse9c079ad2012-10-08 16:31:33 -070024#include <linux/rbtree_augmented.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Michel Lespinasse5bc91882012-10-08 16:30:47 -070027/*
28 * red-black trees properties: http://en.wikipedia.org/wiki/Rbtree
29 *
30 * 1) A node is either red or black
31 * 2) The root is black
32 * 3) All leaves (NULL) are black
33 * 4) Both children of every red node are black
34 * 5) Every simple path from root to leaves contains the same number
35 * of black nodes.
36 *
37 * 4 and 5 give the O(log n) guarantee, since 4 implies you cannot have two
38 * consecutive red nodes in a path and every red node is therefore followed by
39 * a black. So if B is the number of black nodes on every simple path (as per
40 * 5), then the longest possible path due to 4 is 2B.
41 *
42 * We shall indicate color with case, where black nodes are uppercase and red
Michel Lespinasse6280d232012-10-08 16:30:57 -070043 * nodes will be lowercase. Unknown color nodes shall be drawn as red within
44 * parentheses and have some accompanying text comment.
Michel Lespinasse5bc91882012-10-08 16:30:47 -070045 */
46
Peter Zijlstrad72da4a2015-05-27 11:09:36 +093047/*
48 * Notes on lockless lookups:
49 *
50 * All stores to the tree structure (rb_left and rb_right) must be done using
51 * WRITE_ONCE(). And we must not inadvertently cause (temporary) loops in the
52 * tree structure as seen in program order.
53 *
54 * These two requirements will allow lockless iteration of the tree -- not
55 * correct iteration mind you, tree rotations are not atomic so a lookup might
56 * miss entire subtrees.
57 *
58 * But they do guarantee that any such traversal will only see valid elements
59 * and that it will indeed complete -- does not get stuck in a loop.
60 *
61 * It also guarantees that if the lookup returns an element it is the 'correct'
62 * one. But not returning an element does _NOT_ mean it's not present.
63 *
64 * NOTE:
65 *
66 * Stores to __rb_parent_color are not important for simple lookups so those
67 * are left undone as of now. Nor did I check for loops involving parent
68 * pointers.
69 */
70
Michel Lespinasse46b61352012-10-08 16:31:11 -070071static inline void rb_set_black(struct rb_node *rb)
72{
73 rb->__rb_parent_color |= RB_BLACK;
74}
75
Michel Lespinasse5bc91882012-10-08 16:30:47 -070076static inline struct rb_node *rb_red_parent(struct rb_node *red)
77{
78 return (struct rb_node *)red->__rb_parent_color;
79}
80
Michel Lespinasse5bc91882012-10-08 16:30:47 -070081/*
82 * Helper function for rotations:
83 * - old's parent and color get assigned to new
84 * - old gets assigned new as a parent and 'color' as a color.
85 */
86static inline void
87__rb_rotate_set_parents(struct rb_node *old, struct rb_node *new,
88 struct rb_root *root, int color)
89{
90 struct rb_node *parent = rb_parent(old);
91 new->__rb_parent_color = old->__rb_parent_color;
92 rb_set_parent_color(old, new, color);
Michel Lespinasse7abc7042012-10-08 16:31:07 -070093 __rb_change_child(old, new, parent, root);
Michel Lespinasse5bc91882012-10-08 16:30:47 -070094}
95
Michel Lespinasse14b94af2012-10-08 16:31:17 -070096static __always_inline void
97__rb_insert(struct rb_node *node, struct rb_root *root,
Davidlohr Buesoc89a7682022-01-24 17:33:03 +010098 bool newleft, struct rb_node **leftmost,
Michel Lespinasse14b94af2012-10-08 16:31:17 -070099 void (*augment_rotate)(struct rb_node *old, struct rb_node *new))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700101 struct rb_node *parent = rb_red_parent(node), *gparent, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100103 if (newleft)
104 *leftmost = node;
105
Michel Lespinasse6d584522012-10-08 16:30:44 -0700106 while (true) {
107 /*
108 * Loop invariant: node is red
109 *
110 * If there is a black parent, we are done.
111 * Otherwise, take some corrective action as we don't
112 * want a red root or two consecutive red nodes.
113 */
Michel Lespinasse6d584522012-10-08 16:30:44 -0700114 if (!parent) {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700115 rb_set_parent_color(node, NULL, RB_BLACK);
Michel Lespinasse6d584522012-10-08 16:30:44 -0700116 break;
117 } else if (rb_is_black(parent))
118 break;
119
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700120 gparent = rb_red_parent(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Michel Lespinasse59633ab2012-10-08 16:31:02 -0700122 tmp = gparent->rb_right;
123 if (parent != tmp) { /* parent == gparent->rb_left */
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700124 if (tmp && rb_is_red(tmp)) {
125 /*
126 * Case 1 - color flips
127 *
128 * G g
129 * / \ / \
130 * p u --> P U
131 * / /
Wei Yang1b9c53e2014-08-08 14:22:14 -0700132 * n n
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700133 *
134 * However, since g's parent might be red, and
135 * 4) does not allow this, we need to recurse
136 * at g.
137 */
138 rb_set_parent_color(tmp, gparent, RB_BLACK);
139 rb_set_parent_color(parent, gparent, RB_BLACK);
140 node = gparent;
141 parent = rb_parent(node);
142 rb_set_parent_color(node, parent, RB_RED);
143 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145
Michel Lespinasse59633ab2012-10-08 16:31:02 -0700146 tmp = parent->rb_right;
147 if (node == tmp) {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700148 /*
149 * Case 2 - left rotate at parent
150 *
151 * G G
152 * / \ / \
153 * p U --> n U
154 * \ /
155 * n p
156 *
157 * This still leaves us in violation of 4), the
158 * continuation into Case 3 will fix that.
159 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930160 tmp = node->rb_left;
161 WRITE_ONCE(parent->rb_right, tmp);
162 WRITE_ONCE(node->rb_left, parent);
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700163 if (tmp)
164 rb_set_parent_color(tmp, parent,
165 RB_BLACK);
166 rb_set_parent_color(parent, node, RB_RED);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700167 augment_rotate(parent, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 parent = node;
Michel Lespinasse59633ab2012-10-08 16:31:02 -0700169 tmp = node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700172 /*
173 * Case 3 - right rotate at gparent
174 *
175 * G P
176 * / \ / \
177 * p U --> n g
178 * / \
179 * n U
180 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930181 WRITE_ONCE(gparent->rb_left, tmp); /* == parent->rb_right */
182 WRITE_ONCE(parent->rb_right, gparent);
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700183 if (tmp)
184 rb_set_parent_color(tmp, gparent, RB_BLACK);
185 __rb_rotate_set_parents(gparent, parent, root, RB_RED);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700186 augment_rotate(gparent, parent);
Michel Lespinasse1f052862012-10-08 16:30:42 -0700187 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 } else {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700189 tmp = gparent->rb_left;
190 if (tmp && rb_is_red(tmp)) {
191 /* Case 1 - color flips */
192 rb_set_parent_color(tmp, gparent, RB_BLACK);
193 rb_set_parent_color(parent, gparent, RB_BLACK);
194 node = gparent;
195 parent = rb_parent(node);
196 rb_set_parent_color(node, parent, RB_RED);
197 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199
Michel Lespinasse59633ab2012-10-08 16:31:02 -0700200 tmp = parent->rb_left;
201 if (node == tmp) {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700202 /* Case 2 - right rotate at parent */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930203 tmp = node->rb_right;
204 WRITE_ONCE(parent->rb_left, tmp);
205 WRITE_ONCE(node->rb_right, parent);
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700206 if (tmp)
207 rb_set_parent_color(tmp, parent,
208 RB_BLACK);
209 rb_set_parent_color(parent, node, RB_RED);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700210 augment_rotate(parent, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 parent = node;
Michel Lespinasse59633ab2012-10-08 16:31:02 -0700212 tmp = node->rb_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700215 /* Case 3 - left rotate at gparent */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930216 WRITE_ONCE(gparent->rb_right, tmp); /* == parent->rb_left */
217 WRITE_ONCE(parent->rb_left, gparent);
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700218 if (tmp)
219 rb_set_parent_color(tmp, gparent, RB_BLACK);
220 __rb_rotate_set_parents(gparent, parent, root, RB_RED);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700221 augment_rotate(gparent, parent);
Michel Lespinasse1f052862012-10-08 16:30:42 -0700222 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800227/*
228 * Inline version for rb_erase() use - we want to be able to inline
229 * and eliminate the dummy_rotate callback there
230 */
231static __always_inline void
232____rb_erase_color(struct rb_node *parent, struct rb_root *root,
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700233 void (*augment_rotate)(struct rb_node *old, struct rb_node *new))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Michel Lespinasse46b61352012-10-08 16:31:11 -0700235 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Michel Lespinassed6ff1272012-10-08 16:30:50 -0700237 while (true) {
238 /*
Michel Lespinasse46b61352012-10-08 16:31:11 -0700239 * Loop invariants:
240 * - node is black (or NULL on first iteration)
241 * - node is not the root (parent is not NULL)
242 * - All leaf paths going through parent and node have a
243 * black node count that is 1 lower than other leaf paths.
Michel Lespinassed6ff1272012-10-08 16:30:50 -0700244 */
Michel Lespinasse59633ab2012-10-08 16:31:02 -0700245 sibling = parent->rb_right;
246 if (node != sibling) { /* node == parent->rb_left */
Michel Lespinasse6280d232012-10-08 16:30:57 -0700247 if (rb_is_red(sibling)) {
248 /*
249 * Case 1 - left rotate at parent
250 *
251 * P S
252 * / \ / \
253 * N s --> p Sr
254 * / \ / \
255 * Sl Sr N Sl
256 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930257 tmp1 = sibling->rb_left;
258 WRITE_ONCE(parent->rb_right, tmp1);
259 WRITE_ONCE(sibling->rb_left, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700260 rb_set_parent_color(tmp1, parent, RB_BLACK);
261 __rb_rotate_set_parents(parent, sibling, root,
262 RB_RED);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700263 augment_rotate(parent, sibling);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700264 sibling = tmp1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700266 tmp1 = sibling->rb_right;
267 if (!tmp1 || rb_is_black(tmp1)) {
268 tmp2 = sibling->rb_left;
269 if (!tmp2 || rb_is_black(tmp2)) {
270 /*
271 * Case 2 - sibling color flip
272 * (p could be either color here)
273 *
274 * (p) (p)
275 * / \ / \
276 * N S --> N s
277 * / \ / \
278 * Sl Sr Sl Sr
279 *
Michel Lespinasse46b61352012-10-08 16:31:11 -0700280 * This leaves us violating 5) which
281 * can be fixed by flipping p to black
282 * if it was red, or by recursing at p.
283 * p is red when coming from Case 1.
Michel Lespinasse6280d232012-10-08 16:30:57 -0700284 */
285 rb_set_parent_color(sibling, parent,
286 RB_RED);
Michel Lespinasse46b61352012-10-08 16:31:11 -0700287 if (rb_is_red(parent))
288 rb_set_black(parent);
289 else {
290 node = parent;
291 parent = rb_parent(node);
292 if (parent)
293 continue;
294 }
295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700297 /*
298 * Case 3 - right rotate at sibling
299 * (p could be either color here)
300 *
301 * (p) (p)
302 * / \ / \
303 * N S --> N Sl
304 * / \ \
305 * sl Sr s
306 * \
307 * Sr
308 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930309 tmp1 = tmp2->rb_right;
310 WRITE_ONCE(sibling->rb_left, tmp1);
311 WRITE_ONCE(tmp2->rb_right, sibling);
312 WRITE_ONCE(parent->rb_right, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700313 if (tmp1)
314 rb_set_parent_color(tmp1, sibling,
315 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700316 augment_rotate(sibling, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700317 tmp1 = sibling;
318 sibling = tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700320 /*
321 * Case 4 - left rotate at parent + color flips
322 * (p and sl could be either color here.
323 * After rotation, p becomes black, s acquires
324 * p's color, and sl keeps its color)
325 *
326 * (p) (s)
327 * / \ / \
328 * N S --> P Sr
329 * / \ / \
330 * (sl) sr N (sl)
331 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930332 tmp2 = sibling->rb_left;
333 WRITE_ONCE(parent->rb_right, tmp2);
334 WRITE_ONCE(sibling->rb_left, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700335 rb_set_parent_color(tmp1, sibling, RB_BLACK);
336 if (tmp2)
337 rb_set_parent(tmp2, parent);
338 __rb_rotate_set_parents(parent, sibling, root,
339 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700340 augment_rotate(parent, sibling);
Michel Lespinassee125d142012-10-08 16:30:54 -0700341 break;
Michel Lespinassed6ff1272012-10-08 16:30:50 -0700342 } else {
Michel Lespinasse6280d232012-10-08 16:30:57 -0700343 sibling = parent->rb_left;
344 if (rb_is_red(sibling)) {
345 /* Case 1 - right rotate at parent */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930346 tmp1 = sibling->rb_right;
347 WRITE_ONCE(parent->rb_left, tmp1);
348 WRITE_ONCE(sibling->rb_right, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700349 rb_set_parent_color(tmp1, parent, RB_BLACK);
350 __rb_rotate_set_parents(parent, sibling, root,
351 RB_RED);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700352 augment_rotate(parent, sibling);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700353 sibling = tmp1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700355 tmp1 = sibling->rb_left;
356 if (!tmp1 || rb_is_black(tmp1)) {
357 tmp2 = sibling->rb_right;
358 if (!tmp2 || rb_is_black(tmp2)) {
359 /* Case 2 - sibling color flip */
360 rb_set_parent_color(sibling, parent,
361 RB_RED);
Michel Lespinasse46b61352012-10-08 16:31:11 -0700362 if (rb_is_red(parent))
363 rb_set_black(parent);
364 else {
365 node = parent;
366 parent = rb_parent(node);
367 if (parent)
368 continue;
369 }
370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700372 /* Case 3 - right rotate at sibling */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930373 tmp1 = tmp2->rb_left;
374 WRITE_ONCE(sibling->rb_right, tmp1);
375 WRITE_ONCE(tmp2->rb_left, sibling);
376 WRITE_ONCE(parent->rb_left, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700377 if (tmp1)
378 rb_set_parent_color(tmp1, sibling,
379 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700380 augment_rotate(sibling, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700381 tmp1 = sibling;
382 sibling = tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700384 /* Case 4 - left rotate at parent + color flips */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930385 tmp2 = sibling->rb_right;
386 WRITE_ONCE(parent->rb_left, tmp2);
387 WRITE_ONCE(sibling->rb_right, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700388 rb_set_parent_color(tmp1, sibling, RB_BLACK);
389 if (tmp2)
390 rb_set_parent(tmp2, parent);
391 __rb_rotate_set_parents(parent, sibling, root,
392 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700393 augment_rotate(parent, sibling);
Michel Lespinassee125d142012-10-08 16:30:54 -0700394 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800398
399/* Non-inline version for rb_erase_augmented() use */
400void __rb_erase_color(struct rb_node *parent, struct rb_root *root,
401 void (*augment_rotate)(struct rb_node *old, struct rb_node *new))
402{
403 ____rb_erase_color(parent, root, augment_rotate);
404}
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700405EXPORT_SYMBOL(__rb_erase_color);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700406
407/*
408 * Non-augmented rbtree manipulation functions.
409 *
410 * We use dummy augmented callbacks here, and have the compiler optimize them
411 * out of the rb_insert_color() and rb_erase() function definitions.
412 */
413
414static inline void dummy_propagate(struct rb_node *node, struct rb_node *stop) {}
415static inline void dummy_copy(struct rb_node *old, struct rb_node *new) {}
416static inline void dummy_rotate(struct rb_node *old, struct rb_node *new) {}
417
418static const struct rb_augment_callbacks dummy_callbacks = {
419 dummy_propagate, dummy_copy, dummy_rotate
420};
421
422void rb_insert_color(struct rb_node *node, struct rb_root *root)
423{
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100424 __rb_insert(node, root, false, NULL, dummy_rotate);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700425}
426EXPORT_SYMBOL(rb_insert_color);
427
428void rb_erase(struct rb_node *node, struct rb_root *root)
429{
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800430 struct rb_node *rebalance;
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100431 rebalance = __rb_erase_augmented(node, root,
432 NULL, &dummy_callbacks);
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800433 if (rebalance)
434 ____rb_erase_color(rebalance, root, dummy_rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436EXPORT_SYMBOL(rb_erase);
437
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100438void rb_insert_color_cached(struct rb_node *node,
439 struct rb_root_cached *root, bool leftmost)
440{
441 __rb_insert(node, &root->rb_root, leftmost,
442 &root->rb_leftmost, dummy_rotate);
443}
444EXPORT_SYMBOL(rb_insert_color_cached);
445
446void rb_erase_cached(struct rb_node *node, struct rb_root_cached *root)
447{
448 struct rb_node *rebalance;
449 rebalance = __rb_erase_augmented(node, &root->rb_root,
450 &root->rb_leftmost, &dummy_callbacks);
451 if (rebalance)
452 ____rb_erase_color(rebalance, &root->rb_root, dummy_rotate);
453}
454EXPORT_SYMBOL(rb_erase_cached);
455
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700456/*
457 * Augmented rbtree manipulation functions.
458 *
459 * This instantiates the same __always_inline functions as in the non-augmented
460 * case, but this time with user-defined callbacks.
461 */
462
463void __rb_insert_augmented(struct rb_node *node, struct rb_root *root,
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100464 bool newleft, struct rb_node **leftmost,
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700465 void (*augment_rotate)(struct rb_node *old, struct rb_node *new))
466{
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100467 __rb_insert(node, root, newleft, leftmost, augment_rotate);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700468}
469EXPORT_SYMBOL(__rb_insert_augmented);
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*
472 * This function returns the first node (in sort order) of the tree.
473 */
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000474struct rb_node *rb_first(const struct rb_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 struct rb_node *n;
477
478 n = root->rb_node;
479 if (!n)
480 return NULL;
481 while (n->rb_left)
482 n = n->rb_left;
483 return n;
484}
485EXPORT_SYMBOL(rb_first);
486
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000487struct rb_node *rb_last(const struct rb_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct rb_node *n;
490
491 n = root->rb_node;
492 if (!n)
493 return NULL;
494 while (n->rb_right)
495 n = n->rb_right;
496 return n;
497}
498EXPORT_SYMBOL(rb_last);
499
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000500struct rb_node *rb_next(const struct rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
David Woodhouse55a98102006-04-21 13:35:51 +0100502 struct rb_node *parent;
503
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700504 if (RB_EMPTY_NODE(node))
Jens Axboe10fd48f2006-07-11 21:15:52 +0200505 return NULL;
506
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700507 /*
508 * If we have a right-hand child, go down and then left as far
509 * as we can.
510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (node->rb_right) {
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100512 node = node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 while (node->rb_left)
514 node=node->rb_left;
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000515 return (struct rb_node *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700518 /*
519 * No right-hand children. Everything down and left is smaller than us,
520 * so any 'next' node must be in the general direction of our parent.
521 * Go up the tree; any time the ancestor is a right-hand child of its
522 * parent, keep going up. First time it's a left-hand child of its
523 * parent, said parent is our 'next' node.
524 */
David Woodhouse55a98102006-04-21 13:35:51 +0100525 while ((parent = rb_parent(node)) && node == parent->rb_right)
526 node = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
David Woodhouse55a98102006-04-21 13:35:51 +0100528 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530EXPORT_SYMBOL(rb_next);
531
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000532struct rb_node *rb_prev(const struct rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
David Woodhouse55a98102006-04-21 13:35:51 +0100534 struct rb_node *parent;
535
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700536 if (RB_EMPTY_NODE(node))
Jens Axboe10fd48f2006-07-11 21:15:52 +0200537 return NULL;
538
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700539 /*
540 * If we have a left-hand child, go down and then right as far
541 * as we can.
542 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (node->rb_left) {
Davidlohr Buesoc89a7682022-01-24 17:33:03 +0100544 node = node->rb_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 while (node->rb_right)
546 node=node->rb_right;
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000547 return (struct rb_node *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700550 /*
551 * No left-hand children. Go up till we find an ancestor which
552 * is a right-hand child of its parent.
553 */
David Woodhouse55a98102006-04-21 13:35:51 +0100554 while ((parent = rb_parent(node)) && node == parent->rb_left)
555 node = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
David Woodhouse55a98102006-04-21 13:35:51 +0100557 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559EXPORT_SYMBOL(rb_prev);
560
561void rb_replace_node(struct rb_node *victim, struct rb_node *new,
562 struct rb_root *root)
563{
David Woodhouse55a98102006-04-21 13:35:51 +0100564 struct rb_node *parent = rb_parent(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
David Howellsc1adf202016-07-01 07:53:51 +0100566 /* Copy the pointers/colour from the victim to the replacement */
567 *new = *victim;
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* Set the surrounding nodes to point to the replacement */
David Howellsc1adf202016-07-01 07:53:51 +0100570 if (victim->rb_left)
571 rb_set_parent(victim->rb_left, new);
572 if (victim->rb_right)
573 rb_set_parent(victim->rb_right, new);
Michel Lespinasse7abc7042012-10-08 16:31:07 -0700574 __rb_change_child(victim, new, parent, root);
David Howellsc1adf202016-07-01 07:53:51 +0100575}
576EXPORT_SYMBOL(rb_replace_node);
577
578void rb_replace_node_rcu(struct rb_node *victim, struct rb_node *new,
579 struct rb_root *root)
580{
581 struct rb_node *parent = rb_parent(victim);
582
583 /* Copy the pointers/colour from the victim to the replacement */
584 *new = *victim;
585
586 /* Set the surrounding nodes to point to the replacement */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (victim->rb_left)
David Woodhouse55a98102006-04-21 13:35:51 +0100588 rb_set_parent(victim->rb_left, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (victim->rb_right)
David Woodhouse55a98102006-04-21 13:35:51 +0100590 rb_set_parent(victim->rb_right, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
David Howellsc1adf202016-07-01 07:53:51 +0100592 /* Set the parent's pointer to the new node last after an RCU barrier
593 * so that the pointers onwards are seen to be set correctly when doing
594 * an RCU walk over the tree.
595 */
596 __rb_change_child_rcu(victim, new, parent, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
David Howellsc1adf202016-07-01 07:53:51 +0100598EXPORT_SYMBOL(rb_replace_node_rcu);
Cody P Schafer9dee5c52013-09-11 14:25:10 -0700599
600static struct rb_node *rb_left_deepest_node(const struct rb_node *node)
601{
602 for (;;) {
603 if (node->rb_left)
604 node = node->rb_left;
605 else if (node->rb_right)
606 node = node->rb_right;
607 else
608 return (struct rb_node *)node;
609 }
610}
611
612struct rb_node *rb_next_postorder(const struct rb_node *node)
613{
614 const struct rb_node *parent;
615 if (!node)
616 return NULL;
617 parent = rb_parent(node);
618
619 /* If we're sitting on node, we've already seen our children */
620 if (parent && node == parent->rb_left && parent->rb_right) {
621 /* If we are the parent's left node, go to the parent's right
622 * node then all the way down to the left */
623 return rb_left_deepest_node(parent->rb_right);
624 } else
625 /* Otherwise we are the parent's right node, and the parent
626 * should be next */
627 return (struct rb_node *)parent;
628}
629EXPORT_SYMBOL(rb_next_postorder);
630
631struct rb_node *rb_first_postorder(const struct rb_root *root)
632{
633 if (!root->rb_node)
634 return NULL;
635
636 return rb_left_deepest_node(root->rb_node);
637}
638EXPORT_SYMBOL(rb_first_postorder);