Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | Red Black Trees |
| 3 | (C) 1999 Andrea Arcangeli <andrea@suse.de> |
| 4 | (C) 2002 David Woodhouse <dwmw2@infradead.org> |
Michel Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 5 | (C) 2012 Michel Lespinasse <walken@google.com> |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | 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 Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 24 | #include <linux/rbtree_augmented.h> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 25 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 27 | /* |
| 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 Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 43 | * nodes will be lowercase. Unknown color nodes shall be drawn as red within |
| 44 | * parentheses and have some accompanying text comment. |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 45 | */ |
| 46 | |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 47 | /* |
| 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 Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 71 | static inline void rb_set_black(struct rb_node *rb) |
| 72 | { |
| 73 | rb->__rb_parent_color |= RB_BLACK; |
| 74 | } |
| 75 | |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 76 | static inline struct rb_node *rb_red_parent(struct rb_node *red) |
| 77 | { |
| 78 | return (struct rb_node *)red->__rb_parent_color; |
| 79 | } |
| 80 | |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 81 | /* |
| 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 | */ |
| 86 | static 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 Lespinasse | 7abc704 | 2012-10-08 16:31:07 -0700 | [diff] [blame] | 93 | __rb_change_child(old, new, parent, root); |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 96 | static __always_inline void |
| 97 | __rb_insert(struct rb_node *node, struct rb_root *root, |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 98 | bool newleft, struct rb_node **leftmost, |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 99 | void (*augment_rotate)(struct rb_node *old, struct rb_node *new)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 101 | struct rb_node *parent = rb_red_parent(node), *gparent, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 103 | if (newleft) |
| 104 | *leftmost = node; |
| 105 | |
Michel Lespinasse | 6d58452 | 2012-10-08 16:30:44 -0700 | [diff] [blame] | 106 | 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 Lespinasse | 6d58452 | 2012-10-08 16:30:44 -0700 | [diff] [blame] | 114 | if (!parent) { |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 115 | rb_set_parent_color(node, NULL, RB_BLACK); |
Michel Lespinasse | 6d58452 | 2012-10-08 16:30:44 -0700 | [diff] [blame] | 116 | break; |
| 117 | } else if (rb_is_black(parent)) |
| 118 | break; |
| 119 | |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 120 | gparent = rb_red_parent(parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Michel Lespinasse | 59633ab | 2012-10-08 16:31:02 -0700 | [diff] [blame] | 122 | tmp = gparent->rb_right; |
| 123 | if (parent != tmp) { /* parent == gparent->rb_left */ |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 124 | if (tmp && rb_is_red(tmp)) { |
| 125 | /* |
| 126 | * Case 1 - color flips |
| 127 | * |
| 128 | * G g |
| 129 | * / \ / \ |
| 130 | * p u --> P U |
| 131 | * / / |
Wei Yang | 1b9c53e | 2014-08-08 14:22:14 -0700 | [diff] [blame] | 132 | * n n |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 133 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Michel Lespinasse | 59633ab | 2012-10-08 16:31:02 -0700 | [diff] [blame] | 146 | tmp = parent->rb_right; |
| 147 | if (node == tmp) { |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 148 | /* |
| 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 Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 160 | tmp = node->rb_left; |
| 161 | WRITE_ONCE(parent->rb_right, tmp); |
| 162 | WRITE_ONCE(node->rb_left, parent); |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 163 | if (tmp) |
| 164 | rb_set_parent_color(tmp, parent, |
| 165 | RB_BLACK); |
| 166 | rb_set_parent_color(parent, node, RB_RED); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 167 | augment_rotate(parent, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | parent = node; |
Michel Lespinasse | 59633ab | 2012-10-08 16:31:02 -0700 | [diff] [blame] | 169 | tmp = node->rb_right; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 172 | /* |
| 173 | * Case 3 - right rotate at gparent |
| 174 | * |
| 175 | * G P |
| 176 | * / \ / \ |
| 177 | * p U --> n g |
| 178 | * / \ |
| 179 | * n U |
| 180 | */ |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 181 | WRITE_ONCE(gparent->rb_left, tmp); /* == parent->rb_right */ |
| 182 | WRITE_ONCE(parent->rb_right, gparent); |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 183 | if (tmp) |
| 184 | rb_set_parent_color(tmp, gparent, RB_BLACK); |
| 185 | __rb_rotate_set_parents(gparent, parent, root, RB_RED); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 186 | augment_rotate(gparent, parent); |
Michel Lespinasse | 1f05286 | 2012-10-08 16:30:42 -0700 | [diff] [blame] | 187 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } else { |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 189 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Michel Lespinasse | 59633ab | 2012-10-08 16:31:02 -0700 | [diff] [blame] | 200 | tmp = parent->rb_left; |
| 201 | if (node == tmp) { |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 202 | /* Case 2 - right rotate at parent */ |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 203 | tmp = node->rb_right; |
| 204 | WRITE_ONCE(parent->rb_left, tmp); |
| 205 | WRITE_ONCE(node->rb_right, parent); |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 206 | if (tmp) |
| 207 | rb_set_parent_color(tmp, parent, |
| 208 | RB_BLACK); |
| 209 | rb_set_parent_color(parent, node, RB_RED); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 210 | augment_rotate(parent, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | parent = node; |
Michel Lespinasse | 59633ab | 2012-10-08 16:31:02 -0700 | [diff] [blame] | 212 | tmp = node->rb_left; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 215 | /* Case 3 - left rotate at gparent */ |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 216 | WRITE_ONCE(gparent->rb_right, tmp); /* == parent->rb_left */ |
| 217 | WRITE_ONCE(parent->rb_left, gparent); |
Michel Lespinasse | 5bc9188 | 2012-10-08 16:30:47 -0700 | [diff] [blame] | 218 | if (tmp) |
| 219 | rb_set_parent_color(tmp, gparent, RB_BLACK); |
| 220 | __rb_rotate_set_parents(gparent, parent, root, RB_RED); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 221 | augment_rotate(gparent, parent); |
Michel Lespinasse | 1f05286 | 2012-10-08 16:30:42 -0700 | [diff] [blame] | 222 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Michel Lespinasse | 3cb7a56 | 2013-01-11 14:32:20 -0800 | [diff] [blame] | 227 | /* |
| 228 | * Inline version for rb_erase() use - we want to be able to inline |
| 229 | * and eliminate the dummy_rotate callback there |
| 230 | */ |
| 231 | static __always_inline void |
| 232 | ____rb_erase_color(struct rb_node *parent, struct rb_root *root, |
Michel Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 233 | void (*augment_rotate)(struct rb_node *old, struct rb_node *new)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
Michel Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 235 | struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Michel Lespinasse | d6ff127 | 2012-10-08 16:30:50 -0700 | [diff] [blame] | 237 | while (true) { |
| 238 | /* |
Michel Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 239 | * 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 Lespinasse | d6ff127 | 2012-10-08 16:30:50 -0700 | [diff] [blame] | 244 | */ |
Michel Lespinasse | 59633ab | 2012-10-08 16:31:02 -0700 | [diff] [blame] | 245 | sibling = parent->rb_right; |
| 246 | if (node != sibling) { /* node == parent->rb_left */ |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 247 | 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 Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 257 | tmp1 = sibling->rb_left; |
| 258 | WRITE_ONCE(parent->rb_right, tmp1); |
| 259 | WRITE_ONCE(sibling->rb_left, parent); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 260 | rb_set_parent_color(tmp1, parent, RB_BLACK); |
| 261 | __rb_rotate_set_parents(parent, sibling, root, |
| 262 | RB_RED); |
Michel Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 263 | augment_rotate(parent, sibling); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 264 | sibling = tmp1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 266 | 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 Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 280 | * 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 Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 284 | */ |
| 285 | rb_set_parent_color(sibling, parent, |
| 286 | RB_RED); |
Michel Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 287 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 297 | /* |
| 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 Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 309 | 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 Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 313 | if (tmp1) |
| 314 | rb_set_parent_color(tmp1, sibling, |
| 315 | RB_BLACK); |
Michel Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 316 | augment_rotate(sibling, tmp2); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 317 | tmp1 = sibling; |
| 318 | sibling = tmp2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 320 | /* |
| 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 Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 332 | tmp2 = sibling->rb_left; |
| 333 | WRITE_ONCE(parent->rb_right, tmp2); |
| 334 | WRITE_ONCE(sibling->rb_left, parent); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 335 | 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 Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 340 | augment_rotate(parent, sibling); |
Michel Lespinasse | e125d14 | 2012-10-08 16:30:54 -0700 | [diff] [blame] | 341 | break; |
Michel Lespinasse | d6ff127 | 2012-10-08 16:30:50 -0700 | [diff] [blame] | 342 | } else { |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 343 | sibling = parent->rb_left; |
| 344 | if (rb_is_red(sibling)) { |
| 345 | /* Case 1 - right rotate at parent */ |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 346 | tmp1 = sibling->rb_right; |
| 347 | WRITE_ONCE(parent->rb_left, tmp1); |
| 348 | WRITE_ONCE(sibling->rb_right, parent); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 349 | rb_set_parent_color(tmp1, parent, RB_BLACK); |
| 350 | __rb_rotate_set_parents(parent, sibling, root, |
| 351 | RB_RED); |
Michel Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 352 | augment_rotate(parent, sibling); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 353 | sibling = tmp1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 355 | 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 Lespinasse | 46b6135 | 2012-10-08 16:31:11 -0700 | [diff] [blame] | 362 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 372 | /* Case 3 - right rotate at sibling */ |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 373 | 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 Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 377 | if (tmp1) |
| 378 | rb_set_parent_color(tmp1, sibling, |
| 379 | RB_BLACK); |
Michel Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 380 | augment_rotate(sibling, tmp2); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 381 | tmp1 = sibling; |
| 382 | sibling = tmp2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 384 | /* Case 4 - left rotate at parent + color flips */ |
Peter Zijlstra | d72da4a | 2015-05-27 11:09:36 +0930 | [diff] [blame] | 385 | tmp2 = sibling->rb_right; |
| 386 | WRITE_ONCE(parent->rb_left, tmp2); |
| 387 | WRITE_ONCE(sibling->rb_right, parent); |
Michel Lespinasse | 6280d23 | 2012-10-08 16:30:57 -0700 | [diff] [blame] | 388 | 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 Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 393 | augment_rotate(parent, sibling); |
Michel Lespinasse | e125d14 | 2012-10-08 16:30:54 -0700 | [diff] [blame] | 394 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
Michel Lespinasse | 3cb7a56 | 2013-01-11 14:32:20 -0800 | [diff] [blame] | 398 | |
| 399 | /* Non-inline version for rb_erase_augmented() use */ |
| 400 | void __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 Lespinasse | 9c079ad | 2012-10-08 16:31:33 -0700 | [diff] [blame] | 405 | EXPORT_SYMBOL(__rb_erase_color); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 406 | |
| 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 | |
| 414 | static inline void dummy_propagate(struct rb_node *node, struct rb_node *stop) {} |
| 415 | static inline void dummy_copy(struct rb_node *old, struct rb_node *new) {} |
| 416 | static inline void dummy_rotate(struct rb_node *old, struct rb_node *new) {} |
| 417 | |
| 418 | static const struct rb_augment_callbacks dummy_callbacks = { |
| 419 | dummy_propagate, dummy_copy, dummy_rotate |
| 420 | }; |
| 421 | |
| 422 | void rb_insert_color(struct rb_node *node, struct rb_root *root) |
| 423 | { |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 424 | __rb_insert(node, root, false, NULL, dummy_rotate); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 425 | } |
| 426 | EXPORT_SYMBOL(rb_insert_color); |
| 427 | |
| 428 | void rb_erase(struct rb_node *node, struct rb_root *root) |
| 429 | { |
Michel Lespinasse | 3cb7a56 | 2013-01-11 14:32:20 -0800 | [diff] [blame] | 430 | struct rb_node *rebalance; |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 431 | rebalance = __rb_erase_augmented(node, root, |
| 432 | NULL, &dummy_callbacks); |
Michel Lespinasse | 3cb7a56 | 2013-01-11 14:32:20 -0800 | [diff] [blame] | 433 | if (rebalance) |
| 434 | ____rb_erase_color(rebalance, root, dummy_rotate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
| 436 | EXPORT_SYMBOL(rb_erase); |
| 437 | |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 438 | void 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 | } |
| 444 | EXPORT_SYMBOL(rb_insert_color_cached); |
| 445 | |
| 446 | void 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 | } |
| 454 | EXPORT_SYMBOL(rb_erase_cached); |
| 455 | |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 456 | /* |
| 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 | |
| 463 | void __rb_insert_augmented(struct rb_node *node, struct rb_root *root, |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 464 | bool newleft, struct rb_node **leftmost, |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 465 | void (*augment_rotate)(struct rb_node *old, struct rb_node *new)) |
| 466 | { |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 467 | __rb_insert(node, root, newleft, leftmost, augment_rotate); |
Michel Lespinasse | 14b94af | 2012-10-08 16:31:17 -0700 | [diff] [blame] | 468 | } |
| 469 | EXPORT_SYMBOL(__rb_insert_augmented); |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | /* |
| 472 | * This function returns the first node (in sort order) of the tree. |
| 473 | */ |
Artem Bityutskiy | f4b477c | 2009-01-10 11:12:09 +0000 | [diff] [blame] | 474 | struct rb_node *rb_first(const struct rb_root *root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | { |
| 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 | } |
| 485 | EXPORT_SYMBOL(rb_first); |
| 486 | |
Artem Bityutskiy | f4b477c | 2009-01-10 11:12:09 +0000 | [diff] [blame] | 487 | struct rb_node *rb_last(const struct rb_root *root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | { |
| 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 | } |
| 498 | EXPORT_SYMBOL(rb_last); |
| 499 | |
Artem Bityutskiy | f4b477c | 2009-01-10 11:12:09 +0000 | [diff] [blame] | 500 | struct rb_node *rb_next(const struct rb_node *node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | { |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 502 | struct rb_node *parent; |
| 503 | |
Michel Lespinasse | 4c199a9 | 2012-10-08 16:30:32 -0700 | [diff] [blame] | 504 | if (RB_EMPTY_NODE(node)) |
Jens Axboe | 10fd48f | 2006-07-11 21:15:52 +0200 | [diff] [blame] | 505 | return NULL; |
| 506 | |
Michel Lespinasse | 7ce6ff9 | 2012-10-08 16:31:01 -0700 | [diff] [blame] | 507 | /* |
| 508 | * If we have a right-hand child, go down and then left as far |
| 509 | * as we can. |
| 510 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | if (node->rb_right) { |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 512 | node = node->rb_right; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | while (node->rb_left) |
| 514 | node=node->rb_left; |
Artem Bityutskiy | f4b477c | 2009-01-10 11:12:09 +0000 | [diff] [blame] | 515 | return (struct rb_node *)node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
| 517 | |
Michel Lespinasse | 7ce6ff9 | 2012-10-08 16:31:01 -0700 | [diff] [blame] | 518 | /* |
| 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 Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 525 | while ((parent = rb_parent(node)) && node == parent->rb_right) |
| 526 | node = parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 528 | return parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | } |
| 530 | EXPORT_SYMBOL(rb_next); |
| 531 | |
Artem Bityutskiy | f4b477c | 2009-01-10 11:12:09 +0000 | [diff] [blame] | 532 | struct rb_node *rb_prev(const struct rb_node *node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 534 | struct rb_node *parent; |
| 535 | |
Michel Lespinasse | 4c199a9 | 2012-10-08 16:30:32 -0700 | [diff] [blame] | 536 | if (RB_EMPTY_NODE(node)) |
Jens Axboe | 10fd48f | 2006-07-11 21:15:52 +0200 | [diff] [blame] | 537 | return NULL; |
| 538 | |
Michel Lespinasse | 7ce6ff9 | 2012-10-08 16:31:01 -0700 | [diff] [blame] | 539 | /* |
| 540 | * If we have a left-hand child, go down and then right as far |
| 541 | * as we can. |
| 542 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | if (node->rb_left) { |
Davidlohr Bueso | c89a768 | 2022-01-24 17:33:03 +0100 | [diff] [blame] | 544 | node = node->rb_left; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | while (node->rb_right) |
| 546 | node=node->rb_right; |
Artem Bityutskiy | f4b477c | 2009-01-10 11:12:09 +0000 | [diff] [blame] | 547 | return (struct rb_node *)node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
| 549 | |
Michel Lespinasse | 7ce6ff9 | 2012-10-08 16:31:01 -0700 | [diff] [blame] | 550 | /* |
| 551 | * No left-hand children. Go up till we find an ancestor which |
| 552 | * is a right-hand child of its parent. |
| 553 | */ |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 554 | while ((parent = rb_parent(node)) && node == parent->rb_left) |
| 555 | node = parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 557 | return parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } |
| 559 | EXPORT_SYMBOL(rb_prev); |
| 560 | |
| 561 | void rb_replace_node(struct rb_node *victim, struct rb_node *new, |
| 562 | struct rb_root *root) |
| 563 | { |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 564 | struct rb_node *parent = rb_parent(victim); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
David Howells | c1adf20 | 2016-07-01 07:53:51 +0100 | [diff] [blame] | 566 | /* Copy the pointers/colour from the victim to the replacement */ |
| 567 | *new = *victim; |
| 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* Set the surrounding nodes to point to the replacement */ |
David Howells | c1adf20 | 2016-07-01 07:53:51 +0100 | [diff] [blame] | 570 | 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 Lespinasse | 7abc704 | 2012-10-08 16:31:07 -0700 | [diff] [blame] | 574 | __rb_change_child(victim, new, parent, root); |
David Howells | c1adf20 | 2016-07-01 07:53:51 +0100 | [diff] [blame] | 575 | } |
| 576 | EXPORT_SYMBOL(rb_replace_node); |
| 577 | |
| 578 | void 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | if (victim->rb_left) |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 588 | rb_set_parent(victim->rb_left, new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | if (victim->rb_right) |
David Woodhouse | 55a9810 | 2006-04-21 13:35:51 +0100 | [diff] [blame] | 590 | rb_set_parent(victim->rb_right, new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
David Howells | c1adf20 | 2016-07-01 07:53:51 +0100 | [diff] [blame] | 592 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
David Howells | c1adf20 | 2016-07-01 07:53:51 +0100 | [diff] [blame] | 598 | EXPORT_SYMBOL(rb_replace_node_rcu); |
Cody P Schafer | 9dee5c5 | 2013-09-11 14:25:10 -0700 | [diff] [blame] | 599 | |
| 600 | static 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 | |
| 612 | struct 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 | } |
| 629 | EXPORT_SYMBOL(rb_next_postorder); |
| 630 | |
| 631 | struct 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 | } |
| 638 | EXPORT_SYMBOL(rb_first_postorder); |