blob: d102d9d2ffaa640f4406dc59a576fa79e7e396b1 [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 Buesocd9e61e2017-09-08 16:14:36 -070098 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 Buesocd9e61e2017-09-08 16:14:36 -0700103 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 * / \ / \
Jie Chence093a02016-12-12 16:46:17 -0800303 * N S --> N sl
Michel Lespinasse6280d232012-10-08 16:30:57 -0700304 * / \ \
Jie Chence093a02016-12-12 16:46:17 -0800305 * sl Sr S
Michel Lespinasse6280d232012-10-08 16:30:57 -0700306 * \
307 * Sr
Jie Chence093a02016-12-12 16:46:17 -0800308 *
309 * Note: p might be red, and then both
310 * p and sl are red after rotation(which
311 * breaks property 4). This is fixed in
312 * Case 4 (in __rb_rotate_set_parents()
313 * which set sl the color of p
314 * and set p RB_BLACK)
315 *
316 * (p) (sl)
317 * / \ / \
318 * N sl --> P S
319 * \ / \
320 * S N Sr
321 * \
322 * Sr
Michel Lespinasse6280d232012-10-08 16:30:57 -0700323 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930324 tmp1 = tmp2->rb_right;
325 WRITE_ONCE(sibling->rb_left, tmp1);
326 WRITE_ONCE(tmp2->rb_right, sibling);
327 WRITE_ONCE(parent->rb_right, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700328 if (tmp1)
329 rb_set_parent_color(tmp1, sibling,
330 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700331 augment_rotate(sibling, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700332 tmp1 = sibling;
333 sibling = tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700335 /*
336 * Case 4 - left rotate at parent + color flips
337 * (p and sl could be either color here.
338 * After rotation, p becomes black, s acquires
339 * p's color, and sl keeps its color)
340 *
341 * (p) (s)
342 * / \ / \
343 * N S --> P Sr
344 * / \ / \
345 * (sl) sr N (sl)
346 */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930347 tmp2 = sibling->rb_left;
348 WRITE_ONCE(parent->rb_right, tmp2);
349 WRITE_ONCE(sibling->rb_left, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700350 rb_set_parent_color(tmp1, sibling, RB_BLACK);
351 if (tmp2)
352 rb_set_parent(tmp2, parent);
353 __rb_rotate_set_parents(parent, sibling, root,
354 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700355 augment_rotate(parent, sibling);
Michel Lespinassee125d142012-10-08 16:30:54 -0700356 break;
Michel Lespinassed6ff1272012-10-08 16:30:50 -0700357 } else {
Michel Lespinasse6280d232012-10-08 16:30:57 -0700358 sibling = parent->rb_left;
359 if (rb_is_red(sibling)) {
360 /* Case 1 - right rotate at parent */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930361 tmp1 = sibling->rb_right;
362 WRITE_ONCE(parent->rb_left, tmp1);
363 WRITE_ONCE(sibling->rb_right, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700364 rb_set_parent_color(tmp1, parent, RB_BLACK);
365 __rb_rotate_set_parents(parent, sibling, root,
366 RB_RED);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700367 augment_rotate(parent, sibling);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700368 sibling = tmp1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Michel Lespinasse6280d232012-10-08 16:30:57 -0700370 tmp1 = sibling->rb_left;
371 if (!tmp1 || rb_is_black(tmp1)) {
372 tmp2 = sibling->rb_right;
373 if (!tmp2 || rb_is_black(tmp2)) {
374 /* Case 2 - sibling color flip */
375 rb_set_parent_color(sibling, parent,
376 RB_RED);
Michel Lespinasse46b61352012-10-08 16:31:11 -0700377 if (rb_is_red(parent))
378 rb_set_black(parent);
379 else {
380 node = parent;
381 parent = rb_parent(node);
382 if (parent)
383 continue;
384 }
385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
Jie Chence093a02016-12-12 16:46:17 -0800387 /* Case 3 - left rotate at sibling */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930388 tmp1 = tmp2->rb_left;
389 WRITE_ONCE(sibling->rb_right, tmp1);
390 WRITE_ONCE(tmp2->rb_left, sibling);
391 WRITE_ONCE(parent->rb_left, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700392 if (tmp1)
393 rb_set_parent_color(tmp1, sibling,
394 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700395 augment_rotate(sibling, tmp2);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700396 tmp1 = sibling;
397 sibling = tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Jie Chence093a02016-12-12 16:46:17 -0800399 /* Case 4 - right rotate at parent + color flips */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930400 tmp2 = sibling->rb_right;
401 WRITE_ONCE(parent->rb_left, tmp2);
402 WRITE_ONCE(sibling->rb_right, parent);
Michel Lespinasse6280d232012-10-08 16:30:57 -0700403 rb_set_parent_color(tmp1, sibling, RB_BLACK);
404 if (tmp2)
405 rb_set_parent(tmp2, parent);
406 __rb_rotate_set_parents(parent, sibling, root,
407 RB_BLACK);
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700408 augment_rotate(parent, sibling);
Michel Lespinassee125d142012-10-08 16:30:54 -0700409 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800413
414/* Non-inline version for rb_erase_augmented() use */
415void __rb_erase_color(struct rb_node *parent, struct rb_root *root,
416 void (*augment_rotate)(struct rb_node *old, struct rb_node *new))
417{
418 ____rb_erase_color(parent, root, augment_rotate);
419}
Michel Lespinasse9c079ad2012-10-08 16:31:33 -0700420EXPORT_SYMBOL(__rb_erase_color);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700421
422/*
423 * Non-augmented rbtree manipulation functions.
424 *
425 * We use dummy augmented callbacks here, and have the compiler optimize them
426 * out of the rb_insert_color() and rb_erase() function definitions.
427 */
428
429static inline void dummy_propagate(struct rb_node *node, struct rb_node *stop) {}
430static inline void dummy_copy(struct rb_node *old, struct rb_node *new) {}
431static inline void dummy_rotate(struct rb_node *old, struct rb_node *new) {}
432
433static const struct rb_augment_callbacks dummy_callbacks = {
Kees Cookf231aeb2017-02-24 15:01:04 -0800434 .propagate = dummy_propagate,
435 .copy = dummy_copy,
436 .rotate = dummy_rotate
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700437};
438
439void rb_insert_color(struct rb_node *node, struct rb_root *root)
440{
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700441 __rb_insert(node, root, false, NULL, dummy_rotate);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700442}
443EXPORT_SYMBOL(rb_insert_color);
444
445void rb_erase(struct rb_node *node, struct rb_root *root)
446{
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800447 struct rb_node *rebalance;
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700448 rebalance = __rb_erase_augmented(node, root,
449 NULL, &dummy_callbacks);
Michel Lespinasse3cb7a562013-01-11 14:32:20 -0800450 if (rebalance)
451 ____rb_erase_color(rebalance, root, dummy_rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453EXPORT_SYMBOL(rb_erase);
454
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700455void rb_insert_color_cached(struct rb_node *node,
456 struct rb_root_cached *root, bool leftmost)
457{
458 __rb_insert(node, &root->rb_root, leftmost,
459 &root->rb_leftmost, dummy_rotate);
460}
461EXPORT_SYMBOL(rb_insert_color_cached);
462
463void rb_erase_cached(struct rb_node *node, struct rb_root_cached *root)
464{
465 struct rb_node *rebalance;
466 rebalance = __rb_erase_augmented(node, &root->rb_root,
467 &root->rb_leftmost, &dummy_callbacks);
468 if (rebalance)
469 ____rb_erase_color(rebalance, &root->rb_root, dummy_rotate);
470}
471EXPORT_SYMBOL(rb_erase_cached);
472
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700473/*
474 * Augmented rbtree manipulation functions.
475 *
476 * This instantiates the same __always_inline functions as in the non-augmented
477 * case, but this time with user-defined callbacks.
478 */
479
480void __rb_insert_augmented(struct rb_node *node, struct rb_root *root,
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700481 bool newleft, struct rb_node **leftmost,
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700482 void (*augment_rotate)(struct rb_node *old, struct rb_node *new))
483{
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700484 __rb_insert(node, root, newleft, leftmost, augment_rotate);
Michel Lespinasse14b94af2012-10-08 16:31:17 -0700485}
486EXPORT_SYMBOL(__rb_insert_augmented);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*
489 * This function returns the first node (in sort order) of the tree.
490 */
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000491struct rb_node *rb_first(const struct rb_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct rb_node *n;
494
495 n = root->rb_node;
496 if (!n)
497 return NULL;
498 while (n->rb_left)
499 n = n->rb_left;
500 return n;
501}
502EXPORT_SYMBOL(rb_first);
503
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000504struct rb_node *rb_last(const struct rb_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct rb_node *n;
507
508 n = root->rb_node;
509 if (!n)
510 return NULL;
511 while (n->rb_right)
512 n = n->rb_right;
513 return n;
514}
515EXPORT_SYMBOL(rb_last);
516
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000517struct rb_node *rb_next(const struct rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
David Woodhouse55a98102006-04-21 13:35:51 +0100519 struct rb_node *parent;
520
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700521 if (RB_EMPTY_NODE(node))
Jens Axboe10fd48f2006-07-11 21:15:52 +0200522 return NULL;
523
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700524 /*
525 * If we have a right-hand child, go down and then left as far
526 * as we can.
527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (node->rb_right) {
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700529 node = node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 while (node->rb_left)
531 node=node->rb_left;
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000532 return (struct rb_node *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700535 /*
536 * No right-hand children. Everything down and left is smaller than us,
537 * so any 'next' node must be in the general direction of our parent.
538 * Go up the tree; any time the ancestor is a right-hand child of its
539 * parent, keep going up. First time it's a left-hand child of its
540 * parent, said parent is our 'next' node.
541 */
David Woodhouse55a98102006-04-21 13:35:51 +0100542 while ((parent = rb_parent(node)) && node == parent->rb_right)
543 node = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
David Woodhouse55a98102006-04-21 13:35:51 +0100545 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547EXPORT_SYMBOL(rb_next);
548
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000549struct rb_node *rb_prev(const struct rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
David Woodhouse55a98102006-04-21 13:35:51 +0100551 struct rb_node *parent;
552
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700553 if (RB_EMPTY_NODE(node))
Jens Axboe10fd48f2006-07-11 21:15:52 +0200554 return NULL;
555
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700556 /*
557 * If we have a left-hand child, go down and then right as far
558 * as we can.
559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (node->rb_left) {
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -0700561 node = node->rb_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 while (node->rb_right)
563 node=node->rb_right;
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000564 return (struct rb_node *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566
Michel Lespinasse7ce6ff92012-10-08 16:31:01 -0700567 /*
568 * No left-hand children. Go up till we find an ancestor which
569 * is a right-hand child of its parent.
570 */
David Woodhouse55a98102006-04-21 13:35:51 +0100571 while ((parent = rb_parent(node)) && node == parent->rb_left)
572 node = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
David Woodhouse55a98102006-04-21 13:35:51 +0100574 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576EXPORT_SYMBOL(rb_prev);
577
578void rb_replace_node(struct rb_node *victim, struct rb_node *new,
579 struct rb_root *root)
580{
David Woodhouse55a98102006-04-21 13:35:51 +0100581 struct rb_node *parent = rb_parent(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
David Howellsc1adf202016-07-01 07:53:51 +0100583 /* Copy the pointers/colour from the victim to the replacement */
584 *new = *victim;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /* Set the surrounding nodes to point to the replacement */
David Howellsc1adf202016-07-01 07:53:51 +0100587 if (victim->rb_left)
588 rb_set_parent(victim->rb_left, new);
589 if (victim->rb_right)
590 rb_set_parent(victim->rb_right, new);
Michel Lespinasse7abc7042012-10-08 16:31:07 -0700591 __rb_change_child(victim, new, parent, root);
David Howellsc1adf202016-07-01 07:53:51 +0100592}
593EXPORT_SYMBOL(rb_replace_node);
594
595void rb_replace_node_rcu(struct rb_node *victim, struct rb_node *new,
596 struct rb_root *root)
597{
598 struct rb_node *parent = rb_parent(victim);
599
600 /* Copy the pointers/colour from the victim to the replacement */
601 *new = *victim;
602
603 /* Set the surrounding nodes to point to the replacement */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (victim->rb_left)
David Woodhouse55a98102006-04-21 13:35:51 +0100605 rb_set_parent(victim->rb_left, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (victim->rb_right)
David Woodhouse55a98102006-04-21 13:35:51 +0100607 rb_set_parent(victim->rb_right, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
David Howellsc1adf202016-07-01 07:53:51 +0100609 /* Set the parent's pointer to the new node last after an RCU barrier
610 * so that the pointers onwards are seen to be set correctly when doing
611 * an RCU walk over the tree.
612 */
613 __rb_change_child_rcu(victim, new, parent, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
David Howellsc1adf202016-07-01 07:53:51 +0100615EXPORT_SYMBOL(rb_replace_node_rcu);
Cody P Schafer9dee5c52013-09-11 14:25:10 -0700616
617static struct rb_node *rb_left_deepest_node(const struct rb_node *node)
618{
619 for (;;) {
620 if (node->rb_left)
621 node = node->rb_left;
622 else if (node->rb_right)
623 node = node->rb_right;
624 else
625 return (struct rb_node *)node;
626 }
627}
628
629struct rb_node *rb_next_postorder(const struct rb_node *node)
630{
631 const struct rb_node *parent;
632 if (!node)
633 return NULL;
634 parent = rb_parent(node);
635
636 /* If we're sitting on node, we've already seen our children */
637 if (parent && node == parent->rb_left && parent->rb_right) {
638 /* If we are the parent's left node, go to the parent's right
639 * node then all the way down to the left */
640 return rb_left_deepest_node(parent->rb_right);
641 } else
642 /* Otherwise we are the parent's right node, and the parent
643 * should be next */
644 return (struct rb_node *)parent;
645}
646EXPORT_SYMBOL(rb_next_postorder);
647
648struct rb_node *rb_first_postorder(const struct rb_root *root)
649{
650 if (!root->rb_node)
651 return NULL;
652
653 return rb_left_deepest_node(root->rb_node);
654}
655EXPORT_SYMBOL(rb_first_postorder);