Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 1 | |
| 2 | #ifdef __KERNEL__ |
| 3 | # include <linux/string.h> |
| 4 | # include <linux/slab.h> |
| 5 | # include <linux/bug.h> |
| 6 | # include <linux/kernel.h> |
| 7 | # ifndef dprintk |
| 8 | # define dprintk(args...) |
| 9 | # endif |
| 10 | #else |
| 11 | # include <string.h> |
| 12 | # include <stdio.h> |
| 13 | # include <stdlib.h> |
| 14 | # include <assert.h> |
| 15 | # define BUG_ON(x) assert(!(x)) |
| 16 | # define dprintk(args...) /* printf(args) */ |
| 17 | # define kmalloc(x, f) malloc(x) |
| 18 | # define kfree(x) free(x) |
| 19 | #endif |
| 20 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 21 | #include <linux/crush/crush.h> |
| 22 | #include <linux/crush/hash.h> |
hartleys | feb50ac | 2012-04-24 14:38:37 +0000 | [diff] [blame] | 23 | #include <linux/crush/mapper.h> |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Implement the core CRUSH mapping algorithm. |
| 27 | */ |
| 28 | |
| 29 | /** |
| 30 | * crush_find_rule - find a crush_rule id for a given ruleset, type, and size. |
| 31 | * @map: the crush_map |
| 32 | * @ruleset: the storage ruleset id (user defined) |
| 33 | * @type: storage ruleset type (user defined) |
| 34 | * @size: output set size |
| 35 | */ |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 36 | int crush_find_rule(const struct crush_map *map, int ruleset, int type, int size) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 37 | { |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 38 | __u32 i; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 39 | |
| 40 | for (i = 0; i < map->max_rules; i++) { |
| 41 | if (map->rules[i] && |
| 42 | map->rules[i]->mask.ruleset == ruleset && |
| 43 | map->rules[i]->mask.type == type && |
| 44 | map->rules[i]->mask.min_size <= size && |
| 45 | map->rules[i]->mask.max_size >= size) |
| 46 | return i; |
| 47 | } |
| 48 | return -1; |
| 49 | } |
| 50 | |
| 51 | |
| 52 | /* |
| 53 | * bucket choose methods |
| 54 | * |
| 55 | * For each bucket algorithm, we have a "choose" method that, given a |
| 56 | * crush input @x and replica position (usually, position in output set) @r, |
| 57 | * will produce an item in the bucket. |
| 58 | */ |
| 59 | |
| 60 | /* |
| 61 | * Choose based on a random permutation of the bucket. |
| 62 | * |
| 63 | * We used to use some prime number arithmetic to do this, but it |
| 64 | * wasn't very random, and had some other bad behaviors. Instead, we |
| 65 | * calculate an actual random permutation of the bucket members. |
| 66 | * Since this is expensive, we optimize for the r=0 case, which |
| 67 | * captures the vast majority of calls. |
| 68 | */ |
| 69 | static int bucket_perm_choose(struct crush_bucket *bucket, |
| 70 | int x, int r) |
| 71 | { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 72 | unsigned int pr = r % bucket->size; |
| 73 | unsigned int i, s; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 74 | |
| 75 | /* start a new permutation if @x has changed */ |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 76 | if (bucket->perm_x != (__u32)x || bucket->perm_n == 0) { |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 77 | dprintk("bucket %d new x=%d\n", bucket->id, x); |
| 78 | bucket->perm_x = x; |
| 79 | |
| 80 | /* optimize common r=0 case */ |
| 81 | if (pr == 0) { |
Sage Weil | fb69039 | 2009-11-07 20:18:22 -0800 | [diff] [blame] | 82 | s = crush_hash32_3(bucket->hash, x, bucket->id, 0) % |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 83 | bucket->size; |
| 84 | bucket->perm[0] = s; |
| 85 | bucket->perm_n = 0xffff; /* magic value, see below */ |
| 86 | goto out; |
| 87 | } |
| 88 | |
| 89 | for (i = 0; i < bucket->size; i++) |
| 90 | bucket->perm[i] = i; |
| 91 | bucket->perm_n = 0; |
| 92 | } else if (bucket->perm_n == 0xffff) { |
| 93 | /* clean up after the r=0 case above */ |
| 94 | for (i = 1; i < bucket->size; i++) |
| 95 | bucket->perm[i] = i; |
| 96 | bucket->perm[bucket->perm[0]] = 0; |
| 97 | bucket->perm_n = 1; |
| 98 | } |
| 99 | |
| 100 | /* calculate permutation up to pr */ |
| 101 | for (i = 0; i < bucket->perm_n; i++) |
| 102 | dprintk(" perm_choose have %d: %d\n", i, bucket->perm[i]); |
| 103 | while (bucket->perm_n <= pr) { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 104 | unsigned int p = bucket->perm_n; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 105 | /* no point in swapping the final entry */ |
| 106 | if (p < bucket->size - 1) { |
Sage Weil | fb69039 | 2009-11-07 20:18:22 -0800 | [diff] [blame] | 107 | i = crush_hash32_3(bucket->hash, x, bucket->id, p) % |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 108 | (bucket->size - p); |
| 109 | if (i) { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 110 | unsigned int t = bucket->perm[p + i]; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 111 | bucket->perm[p + i] = bucket->perm[p]; |
| 112 | bucket->perm[p] = t; |
| 113 | } |
| 114 | dprintk(" perm_choose swap %d with %d\n", p, p+i); |
| 115 | } |
| 116 | bucket->perm_n++; |
| 117 | } |
| 118 | for (i = 0; i < bucket->size; i++) |
| 119 | dprintk(" perm_choose %d: %d\n", i, bucket->perm[i]); |
| 120 | |
| 121 | s = bucket->perm[pr]; |
| 122 | out: |
| 123 | dprintk(" perm_choose %d sz=%d x=%d r=%d (%d) s=%d\n", bucket->id, |
| 124 | bucket->size, x, r, pr, s); |
| 125 | return bucket->items[s]; |
| 126 | } |
| 127 | |
| 128 | /* uniform */ |
| 129 | static int bucket_uniform_choose(struct crush_bucket_uniform *bucket, |
| 130 | int x, int r) |
| 131 | { |
| 132 | return bucket_perm_choose(&bucket->h, x, r); |
| 133 | } |
| 134 | |
| 135 | /* list */ |
| 136 | static int bucket_list_choose(struct crush_bucket_list *bucket, |
| 137 | int x, int r) |
| 138 | { |
| 139 | int i; |
| 140 | |
| 141 | for (i = bucket->h.size-1; i >= 0; i--) { |
Sage Weil | fb69039 | 2009-11-07 20:18:22 -0800 | [diff] [blame] | 142 | __u64 w = crush_hash32_4(bucket->h.hash,x, bucket->h.items[i], |
| 143 | r, bucket->h.id); |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 144 | w &= 0xffff; |
| 145 | dprintk("list_choose i=%d x=%d r=%d item %d weight %x " |
| 146 | "sw %x rand %llx", |
| 147 | i, x, r, bucket->h.items[i], bucket->item_weights[i], |
| 148 | bucket->sum_weights[i], w); |
| 149 | w *= bucket->sum_weights[i]; |
| 150 | w = w >> 16; |
| 151 | /*dprintk(" scaled %llx\n", w);*/ |
| 152 | if (w < bucket->item_weights[i]) |
| 153 | return bucket->h.items[i]; |
| 154 | } |
| 155 | |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 156 | dprintk("bad list sums for bucket %d\n", bucket->h.id); |
| 157 | return bucket->h.items[0]; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | |
| 161 | /* (binary) tree */ |
| 162 | static int height(int n) |
| 163 | { |
| 164 | int h = 0; |
| 165 | while ((n & 1) == 0) { |
| 166 | h++; |
| 167 | n = n >> 1; |
| 168 | } |
| 169 | return h; |
| 170 | } |
| 171 | |
| 172 | static int left(int x) |
| 173 | { |
| 174 | int h = height(x); |
| 175 | return x - (1 << (h-1)); |
| 176 | } |
| 177 | |
| 178 | static int right(int x) |
| 179 | { |
| 180 | int h = height(x); |
| 181 | return x + (1 << (h-1)); |
| 182 | } |
| 183 | |
| 184 | static int terminal(int x) |
| 185 | { |
| 186 | return x & 1; |
| 187 | } |
| 188 | |
| 189 | static int bucket_tree_choose(struct crush_bucket_tree *bucket, |
| 190 | int x, int r) |
| 191 | { |
Ilya Dryomov | 8f99c85 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 192 | int n; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 193 | __u32 w; |
| 194 | __u64 t; |
| 195 | |
| 196 | /* start at root */ |
| 197 | n = bucket->num_nodes >> 1; |
| 198 | |
| 199 | while (!terminal(n)) { |
Ilya Dryomov | 8f99c85 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 200 | int l; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 201 | /* pick point in [0, w) */ |
| 202 | w = bucket->node_weights[n]; |
Sage Weil | fb69039 | 2009-11-07 20:18:22 -0800 | [diff] [blame] | 203 | t = (__u64)crush_hash32_4(bucket->h.hash, x, n, r, |
| 204 | bucket->h.id) * (__u64)w; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 205 | t = t >> 32; |
| 206 | |
| 207 | /* descend to the left or right? */ |
| 208 | l = left(n); |
| 209 | if (t < bucket->node_weights[l]) |
| 210 | n = l; |
| 211 | else |
| 212 | n = right(n); |
| 213 | } |
| 214 | |
| 215 | return bucket->h.items[n >> 1]; |
| 216 | } |
| 217 | |
| 218 | |
| 219 | /* straw */ |
| 220 | |
| 221 | static int bucket_straw_choose(struct crush_bucket_straw *bucket, |
| 222 | int x, int r) |
| 223 | { |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 224 | __u32 i; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 225 | int high = 0; |
| 226 | __u64 high_draw = 0; |
| 227 | __u64 draw; |
| 228 | |
| 229 | for (i = 0; i < bucket->h.size; i++) { |
Sage Weil | fb69039 | 2009-11-07 20:18:22 -0800 | [diff] [blame] | 230 | draw = crush_hash32_3(bucket->h.hash, x, bucket->h.items[i], r); |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 231 | draw &= 0xffff; |
| 232 | draw *= bucket->straws[i]; |
| 233 | if (i == 0 || draw > high_draw) { |
| 234 | high = i; |
| 235 | high_draw = draw; |
| 236 | } |
| 237 | } |
| 238 | return bucket->h.items[high]; |
| 239 | } |
| 240 | |
| 241 | static int crush_bucket_choose(struct crush_bucket *in, int x, int r) |
| 242 | { |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 243 | dprintk(" crush_bucket_choose %d x=%d r=%d\n", in->id, x, r); |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 244 | BUG_ON(in->size == 0); |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 245 | switch (in->alg) { |
| 246 | case CRUSH_BUCKET_UNIFORM: |
| 247 | return bucket_uniform_choose((struct crush_bucket_uniform *)in, |
| 248 | x, r); |
| 249 | case CRUSH_BUCKET_LIST: |
| 250 | return bucket_list_choose((struct crush_bucket_list *)in, |
| 251 | x, r); |
| 252 | case CRUSH_BUCKET_TREE: |
| 253 | return bucket_tree_choose((struct crush_bucket_tree *)in, |
| 254 | x, r); |
| 255 | case CRUSH_BUCKET_STRAW: |
| 256 | return bucket_straw_choose((struct crush_bucket_straw *)in, |
| 257 | x, r); |
| 258 | default: |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 259 | dprintk("unknown bucket %d alg %d\n", in->id, in->alg); |
Sage Weil | 50b885b | 2009-12-01 14:12:07 -0800 | [diff] [blame] | 260 | return in->items[0]; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 261 | } |
| 262 | } |
| 263 | |
| 264 | /* |
| 265 | * true if device is marked "out" (failed, fully offloaded) |
| 266 | * of the cluster |
| 267 | */ |
Ilya Dryomov | b3b33b0 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 268 | static int is_out(const struct crush_map *map, |
| 269 | const __u32 *weight, int weight_max, |
| 270 | int item, int x) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 271 | { |
Ilya Dryomov | b3b33b0 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 272 | if (item >= weight_max) |
| 273 | return 1; |
Sage Weil | 153a109 | 2010-07-05 09:44:17 -0700 | [diff] [blame] | 274 | if (weight[item] >= 0x10000) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 275 | return 0; |
| 276 | if (weight[item] == 0) |
| 277 | return 1; |
Sage Weil | fb69039 | 2009-11-07 20:18:22 -0800 | [diff] [blame] | 278 | if ((crush_hash32_2(CRUSH_HASH_RJENKINS1, x, item) & 0xffff) |
| 279 | < weight[item]) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 280 | return 0; |
| 281 | return 1; |
| 282 | } |
| 283 | |
| 284 | /** |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 285 | * crush_choose_firstn - choose numrep distinct items of given type |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 286 | * @map: the crush_map |
| 287 | * @bucket: the bucket we are choose an item from |
| 288 | * @x: crush input value |
| 289 | * @numrep: the number of items to choose |
| 290 | * @type: the type of item to choose |
| 291 | * @out: pointer to output vector |
| 292 | * @outpos: our position in that vector |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 293 | * @recurse_to_leaf: true if we want one device under each item of given type |
Jim Schutt | 1604f48 | 2012-11-30 09:15:25 -0700 | [diff] [blame] | 294 | * @descend_once: true if we should only try one descent before giving up |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 295 | * @out2: second output vector for leaf items (if @recurse_to_leaf) |
| 296 | */ |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 297 | static int crush_choose_firstn(const struct crush_map *map, |
| 298 | struct crush_bucket *bucket, |
| 299 | const __u32 *weight, int weight_max, |
| 300 | int x, int numrep, int type, |
| 301 | int *out, int outpos, |
| 302 | int recurse_to_leaf, |
| 303 | int descend_once, int *out2) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 304 | { |
| 305 | int rep; |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 306 | unsigned int ftotal, flocal; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 307 | int retry_descent, retry_bucket, skip_rep; |
| 308 | struct crush_bucket *in = bucket; |
| 309 | int r; |
| 310 | int i; |
Sage Weil | b28813a | 2009-10-07 10:59:34 -0700 | [diff] [blame] | 311 | int item = 0; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 312 | int itemtype; |
| 313 | int collide, reject; |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 314 | |
| 315 | dprintk("CHOOSE%s bucket %d x %d outpos %d numrep %d\n", recurse_to_leaf ? "_LEAF" : "", |
| 316 | bucket->id, x, outpos, numrep); |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 317 | |
| 318 | for (rep = outpos; rep < numrep; rep++) { |
| 319 | /* keep trying until we get a non-out, non-colliding item */ |
| 320 | ftotal = 0; |
| 321 | skip_rep = 0; |
| 322 | do { |
| 323 | retry_descent = 0; |
| 324 | in = bucket; /* initial bucket */ |
| 325 | |
| 326 | /* choose through intervening buckets */ |
| 327 | flocal = 0; |
| 328 | do { |
Sage Weil | b28813a | 2009-10-07 10:59:34 -0700 | [diff] [blame] | 329 | collide = 0; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 330 | retry_bucket = 0; |
| 331 | r = rep; |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 332 | /* r' = r + f_total */ |
| 333 | r += ftotal; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 334 | |
| 335 | /* bucket choose */ |
Sage Weil | b28813a | 2009-10-07 10:59:34 -0700 | [diff] [blame] | 336 | if (in->size == 0) { |
| 337 | reject = 1; |
| 338 | goto reject; |
| 339 | } |
Sage Weil | 546f04e | 2012-07-30 18:15:23 -0700 | [diff] [blame] | 340 | if (map->choose_local_fallback_tries > 0 && |
| 341 | flocal >= (in->size>>1) && |
| 342 | flocal > map->choose_local_fallback_tries) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 343 | item = bucket_perm_choose(in, x, r); |
| 344 | else |
| 345 | item = crush_bucket_choose(in, x, r); |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 346 | if (item >= map->max_devices) { |
| 347 | dprintk(" bad item %d\n", item); |
| 348 | skip_rep = 1; |
| 349 | break; |
| 350 | } |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 351 | |
| 352 | /* desired type? */ |
| 353 | if (item < 0) |
| 354 | itemtype = map->buckets[-1-item]->type; |
| 355 | else |
| 356 | itemtype = 0; |
| 357 | dprintk(" item %d type %d\n", item, itemtype); |
| 358 | |
| 359 | /* keep going? */ |
| 360 | if (itemtype != type) { |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 361 | if (item >= 0 || |
| 362 | (-1-item) >= map->max_buckets) { |
| 363 | dprintk(" bad item type %d\n", type); |
| 364 | skip_rep = 1; |
| 365 | break; |
| 366 | } |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 367 | in = map->buckets[-1-item]; |
Sage Weil | 55bda7a | 2010-06-24 12:55:48 -0700 | [diff] [blame] | 368 | retry_bucket = 1; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 369 | continue; |
| 370 | } |
| 371 | |
| 372 | /* collision? */ |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 373 | for (i = 0; i < outpos; i++) { |
| 374 | if (out[i] == item) { |
| 375 | collide = 1; |
| 376 | break; |
| 377 | } |
| 378 | } |
| 379 | |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 380 | reject = 0; |
Sage Weil | 7d7c1f6 | 2013-01-15 18:49:09 -0800 | [diff] [blame] | 381 | if (!collide && recurse_to_leaf) { |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 382 | if (item < 0) { |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 383 | if (crush_choose_firstn(map, |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 384 | map->buckets[-1-item], |
Ilya Dryomov | b3b33b0 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 385 | weight, weight_max, |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 386 | x, outpos+1, 0, |
| 387 | out2, outpos, |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 388 | 0, |
Jim Schutt | 1604f48 | 2012-11-30 09:15:25 -0700 | [diff] [blame] | 389 | map->chooseleaf_descend_once, |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 390 | NULL) <= outpos) |
| 391 | /* didn't get leaf */ |
| 392 | reject = 1; |
| 393 | } else { |
| 394 | /* we already have a leaf! */ |
| 395 | out2[outpos] = item; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | if (!reject) { |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 400 | /* out? */ |
| 401 | if (itemtype == 0) |
| 402 | reject = is_out(map, weight, |
Ilya Dryomov | b3b33b0 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 403 | weight_max, |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 404 | item, x); |
| 405 | else |
| 406 | reject = 0; |
| 407 | } |
| 408 | |
Sage Weil | b28813a | 2009-10-07 10:59:34 -0700 | [diff] [blame] | 409 | reject: |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 410 | if (reject || collide) { |
| 411 | ftotal++; |
| 412 | flocal++; |
| 413 | |
Jim Schutt | 1604f48 | 2012-11-30 09:15:25 -0700 | [diff] [blame] | 414 | if (reject && descend_once) |
| 415 | /* let outer call try again */ |
| 416 | skip_rep = 1; |
| 417 | else if (collide && flocal <= map->choose_local_tries) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 418 | /* retry locally a few times */ |
| 419 | retry_bucket = 1; |
Sage Weil | 546f04e | 2012-07-30 18:15:23 -0700 | [diff] [blame] | 420 | else if (map->choose_local_fallback_tries > 0 && |
| 421 | flocal <= in->size + map->choose_local_fallback_tries) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 422 | /* exhaustive bucket search */ |
| 423 | retry_bucket = 1; |
Sage Weil | 546f04e | 2012-07-30 18:15:23 -0700 | [diff] [blame] | 424 | else if (ftotal <= map->choose_total_tries) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 425 | /* then retry descent */ |
| 426 | retry_descent = 1; |
| 427 | else |
| 428 | /* else give up */ |
| 429 | skip_rep = 1; |
| 430 | dprintk(" reject %d collide %d " |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 431 | "ftotal %u flocal %u\n", |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 432 | reject, collide, ftotal, |
| 433 | flocal); |
| 434 | } |
| 435 | } while (retry_bucket); |
| 436 | } while (retry_descent); |
| 437 | |
| 438 | if (skip_rep) { |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 439 | dprintk("skip rep\n"); |
| 440 | continue; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 441 | } |
| 442 | |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 443 | dprintk("CHOOSE got %d\n", item); |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 444 | out[outpos] = item; |
| 445 | outpos++; |
| 446 | } |
| 447 | |
Sage Weil | a1a31e7 | 2010-06-24 12:58:14 -0700 | [diff] [blame] | 448 | dprintk("CHOOSE returns %d\n", outpos); |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 449 | return outpos; |
| 450 | } |
| 451 | |
| 452 | |
| 453 | /** |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 454 | * crush_choose_indep: alternative breadth-first positionally stable mapping |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 455 | * |
| 456 | */ |
| 457 | static void crush_choose_indep(const struct crush_map *map, |
| 458 | struct crush_bucket *bucket, |
| 459 | const __u32 *weight, int weight_max, |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 460 | int x, int left, int numrep, int type, |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 461 | int *out, int outpos, |
| 462 | int recurse_to_leaf, |
Ilya Dryomov | 4158608 | 2013-12-24 21:19:25 +0200 | [diff] [blame^] | 463 | int *out2, |
| 464 | int parent_r) |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 465 | { |
| 466 | struct crush_bucket *in = bucket; |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 467 | int endpos = outpos + left; |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 468 | int rep; |
| 469 | unsigned int ftotal; |
| 470 | int r; |
| 471 | int i; |
| 472 | int item = 0; |
| 473 | int itemtype; |
| 474 | int collide; |
| 475 | |
| 476 | dprintk("CHOOSE%s INDEP bucket %d x %d outpos %d numrep %d\n", recurse_to_leaf ? "_LEAF" : "", |
| 477 | bucket->id, x, outpos, numrep); |
| 478 | |
| 479 | /* initially my result is undefined */ |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 480 | for (rep = outpos; rep < endpos; rep++) { |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 481 | out[rep] = CRUSH_ITEM_UNDEF; |
| 482 | if (out2) |
| 483 | out2[rep] = CRUSH_ITEM_UNDEF; |
| 484 | } |
| 485 | |
| 486 | for (ftotal = 0; left > 0 && ftotal < map->choose_total_tries; ftotal++) { |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 487 | for (rep = outpos; rep < endpos; rep++) { |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 488 | if (out[rep] != CRUSH_ITEM_UNDEF) |
| 489 | continue; |
| 490 | |
| 491 | in = bucket; /* initial bucket */ |
| 492 | |
| 493 | /* choose through intervening buckets */ |
| 494 | for (;;) { |
Ilya Dryomov | 3102b0a | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 495 | /* note: we base the choice on the position |
| 496 | * even in the nested call. that means that |
| 497 | * if the first layer chooses the same bucket |
| 498 | * in a different position, we will tend to |
| 499 | * choose a different item in that bucket. |
| 500 | * this will involve more devices in data |
| 501 | * movement and tend to distribute the load. |
| 502 | */ |
Ilya Dryomov | 4158608 | 2013-12-24 21:19:25 +0200 | [diff] [blame^] | 503 | r = rep + parent_r; |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 504 | |
| 505 | /* be careful */ |
| 506 | if (in->alg == CRUSH_BUCKET_UNIFORM && |
| 507 | in->size % numrep == 0) |
| 508 | /* r'=r+(n+1)*f_total */ |
| 509 | r += (numrep+1) * ftotal; |
| 510 | else |
| 511 | /* r' = r + n*f_total */ |
| 512 | r += numrep * ftotal; |
| 513 | |
| 514 | /* bucket choose */ |
| 515 | if (in->size == 0) { |
| 516 | dprintk(" empty bucket\n"); |
| 517 | break; |
| 518 | } |
| 519 | |
| 520 | item = crush_bucket_choose(in, x, r); |
| 521 | if (item >= map->max_devices) { |
| 522 | dprintk(" bad item %d\n", item); |
| 523 | out[rep] = CRUSH_ITEM_NONE; |
| 524 | if (out2) |
| 525 | out2[rep] = CRUSH_ITEM_NONE; |
| 526 | left--; |
| 527 | break; |
| 528 | } |
| 529 | |
| 530 | /* desired type? */ |
| 531 | if (item < 0) |
| 532 | itemtype = map->buckets[-1-item]->type; |
| 533 | else |
| 534 | itemtype = 0; |
| 535 | dprintk(" item %d type %d\n", item, itemtype); |
| 536 | |
| 537 | /* keep going? */ |
| 538 | if (itemtype != type) { |
| 539 | if (item >= 0 || |
| 540 | (-1-item) >= map->max_buckets) { |
| 541 | dprintk(" bad item type %d\n", type); |
| 542 | out[rep] = CRUSH_ITEM_NONE; |
| 543 | if (out2) |
| 544 | out2[rep] = |
| 545 | CRUSH_ITEM_NONE; |
| 546 | left--; |
| 547 | break; |
| 548 | } |
| 549 | in = map->buckets[-1-item]; |
| 550 | continue; |
| 551 | } |
| 552 | |
| 553 | /* collision? */ |
| 554 | collide = 0; |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 555 | for (i = outpos; i < endpos; i++) { |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 556 | if (out[i] == item) { |
| 557 | collide = 1; |
| 558 | break; |
| 559 | } |
| 560 | } |
| 561 | if (collide) |
| 562 | break; |
| 563 | |
| 564 | if (recurse_to_leaf) { |
| 565 | if (item < 0) { |
| 566 | crush_choose_indep(map, |
| 567 | map->buckets[-1-item], |
| 568 | weight, weight_max, |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 569 | x, 1, numrep, 0, |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 570 | out2, rep, |
Ilya Dryomov | 4158608 | 2013-12-24 21:19:25 +0200 | [diff] [blame^] | 571 | 0, NULL, r); |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 572 | if (out2[rep] == CRUSH_ITEM_NONE) { |
| 573 | /* placed nothing; no leaf */ |
| 574 | break; |
| 575 | } |
| 576 | } else { |
| 577 | /* we already have a leaf! */ |
| 578 | out2[rep] = item; |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | /* out? */ |
| 583 | if (itemtype == 0 && |
| 584 | is_out(map, weight, weight_max, item, x)) |
| 585 | break; |
| 586 | |
| 587 | /* yay! */ |
| 588 | out[rep] = item; |
| 589 | left--; |
| 590 | break; |
| 591 | } |
| 592 | } |
| 593 | } |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 594 | for (rep = outpos; rep < endpos; rep++) { |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 595 | if (out[rep] == CRUSH_ITEM_UNDEF) { |
| 596 | out[rep] = CRUSH_ITEM_NONE; |
| 597 | } |
| 598 | if (out2 && out2[rep] == CRUSH_ITEM_UNDEF) { |
| 599 | out2[rep] = CRUSH_ITEM_NONE; |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | /** |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 605 | * crush_do_rule - calculate a mapping with the given input and rule |
| 606 | * @map: the crush_map |
| 607 | * @ruleno: the rule id |
| 608 | * @x: hash input |
| 609 | * @result: pointer to result vector |
| 610 | * @result_max: maximum result size |
Ilya Dryomov | b3b33b0 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 611 | * @weight: weight vector (for map leaves) |
| 612 | * @weight_max: size of weight vector |
Ilya Dryomov | e8ef19c | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 613 | * @scratch: scratch vector for private use; must be >= 3 * result_max |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 614 | */ |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 615 | int crush_do_rule(const struct crush_map *map, |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 616 | int ruleno, int x, int *result, int result_max, |
Ilya Dryomov | e8ef19c | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 617 | const __u32 *weight, int weight_max, |
| 618 | int *scratch) |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 619 | { |
| 620 | int result_len; |
Ilya Dryomov | e8ef19c | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 621 | int *a = scratch; |
| 622 | int *b = scratch + result_max; |
| 623 | int *c = scratch + result_max*2; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 624 | int recurse_to_leaf; |
| 625 | int *w; |
| 626 | int wsize = 0; |
| 627 | int *o; |
| 628 | int osize; |
| 629 | int *tmp; |
| 630 | struct crush_rule *rule; |
Sage Weil | 8b12d47 | 2012-05-07 15:38:35 -0700 | [diff] [blame] | 631 | __u32 step; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 632 | int i, j; |
| 633 | int numrep; |
Jim Schutt | 1604f48 | 2012-11-30 09:15:25 -0700 | [diff] [blame] | 634 | const int descend_once = 0; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 635 | |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 636 | if ((__u32)ruleno >= map->max_rules) { |
| 637 | dprintk(" bad ruleno %d\n", ruleno); |
| 638 | return 0; |
| 639 | } |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 640 | |
| 641 | rule = map->rules[ruleno]; |
| 642 | result_len = 0; |
| 643 | w = a; |
| 644 | o = b; |
| 645 | |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 646 | for (step = 0; step < rule->len; step++) { |
Ilya Dryomov | 8f99c85 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 647 | int firstn = 0; |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 648 | struct crush_rule_step *curstep = &rule->steps[step]; |
| 649 | |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 650 | switch (curstep->op) { |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 651 | case CRUSH_RULE_TAKE: |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 652 | w[0] = curstep->arg1; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 653 | wsize = 1; |
| 654 | break; |
| 655 | |
| 656 | case CRUSH_RULE_CHOOSE_LEAF_FIRSTN: |
| 657 | case CRUSH_RULE_CHOOSE_FIRSTN: |
| 658 | firstn = 1; |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 659 | /* fall through */ |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 660 | case CRUSH_RULE_CHOOSE_LEAF_INDEP: |
| 661 | case CRUSH_RULE_CHOOSE_INDEP: |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 662 | if (wsize == 0) |
| 663 | break; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 664 | |
| 665 | recurse_to_leaf = |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 666 | curstep->op == |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 667 | CRUSH_RULE_CHOOSE_LEAF_FIRSTN || |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 668 | curstep->op == |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 669 | CRUSH_RULE_CHOOSE_LEAF_INDEP; |
| 670 | |
| 671 | /* reset output */ |
| 672 | osize = 0; |
| 673 | |
| 674 | for (i = 0; i < wsize; i++) { |
| 675 | /* |
| 676 | * see CRUSH_N, CRUSH_N_MINUS macros. |
| 677 | * basically, numrep <= 0 means relative to |
| 678 | * the provided result_max |
| 679 | */ |
Sage Weil | 0668216 | 2012-05-07 15:35:48 -0700 | [diff] [blame] | 680 | numrep = curstep->arg1; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 681 | if (numrep <= 0) { |
| 682 | numrep += result_max; |
| 683 | if (numrep <= 0) |
| 684 | continue; |
| 685 | } |
| 686 | j = 0; |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 687 | if (firstn) { |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 688 | osize += crush_choose_firstn( |
| 689 | map, |
| 690 | map->buckets[-1-w[i]], |
| 691 | weight, weight_max, |
| 692 | x, numrep, |
| 693 | curstep->arg2, |
| 694 | o+osize, j, |
| 695 | recurse_to_leaf, |
| 696 | descend_once, c+osize); |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 697 | } else { |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 698 | crush_choose_indep( |
| 699 | map, |
| 700 | map->buckets[-1-w[i]], |
| 701 | weight, weight_max, |
Ilya Dryomov | ab4ce2b5 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 702 | x, numrep, numrep, |
Ilya Dryomov | 9fe0718 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 703 | curstep->arg2, |
| 704 | o+osize, j, |
| 705 | recurse_to_leaf, |
Ilya Dryomov | 4158608 | 2013-12-24 21:19:25 +0200 | [diff] [blame^] | 706 | c+osize, |
| 707 | 0); |
Ilya Dryomov | 9a3b490 | 2013-12-24 21:19:25 +0200 | [diff] [blame] | 708 | osize += numrep; |
| 709 | } |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | if (recurse_to_leaf) |
| 713 | /* copy final _leaf_ values to output set */ |
| 714 | memcpy(o, c, osize*sizeof(*o)); |
| 715 | |
Ilya Dryomov | 2a4ba74 | 2013-12-24 21:19:24 +0200 | [diff] [blame] | 716 | /* swap o and w arrays */ |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 717 | tmp = o; |
| 718 | o = w; |
| 719 | w = tmp; |
| 720 | wsize = osize; |
| 721 | break; |
| 722 | |
| 723 | |
| 724 | case CRUSH_RULE_EMIT: |
| 725 | for (i = 0; i < wsize && result_len < result_max; i++) { |
| 726 | result[result_len] = w[i]; |
| 727 | result_len++; |
| 728 | } |
| 729 | wsize = 0; |
| 730 | break; |
| 731 | |
| 732 | default: |
Sage Weil | a1f4895 | 2012-05-07 15:35:24 -0700 | [diff] [blame] | 733 | dprintk(" unknown op %d at step %d\n", |
| 734 | curstep->op, step); |
| 735 | break; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 736 | } |
| 737 | } |
Sage Weil | f1932fc | 2011-12-07 09:10:26 -0800 | [diff] [blame] | 738 | return result_len; |
Sage Weil | 5ecc0a0 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | |