blob: 417df675c71b0a2e53a25b0f7e9195c6f3c7804e [file] [log] [blame]
Ilya Dryomovb459be72015-06-12 13:21:07 +03001/*
2 * Ceph - scalable distributed file system
3 *
4 * Copyright (C) 2015 Intel Corporation All Rights Reserved
5 *
6 * This is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2.1, as published by the Free Software
9 * Foundation. See file COPYING.
10 *
11 */
Sage Weil5ecc0a02009-10-06 11:31:11 -070012
13#ifdef __KERNEL__
14# include <linux/string.h>
15# include <linux/slab.h>
16# include <linux/bug.h>
17# include <linux/kernel.h>
Ilya Dryomovb459be72015-06-12 13:21:07 +030018# include <linux/crush/crush.h>
19# include <linux/crush/hash.h>
Tobias Klauserf6c0d1a2016-10-28 13:23:24 +020020# include <linux/crush/mapper.h>
Sage Weil5ecc0a02009-10-06 11:31:11 -070021#else
Ilya Dryomovb459be72015-06-12 13:21:07 +030022# include "crush_compat.h"
23# include "crush.h"
24# include "hash.h"
Tobias Klauserf6c0d1a2016-10-28 13:23:24 +020025# include "mapper.h"
Sage Weil5ecc0a02009-10-06 11:31:11 -070026#endif
Ilya Dryomov958a2762015-04-14 16:54:52 +030027#include "crush_ln_table.h"
Sage Weil5ecc0a02009-10-06 11:31:11 -070028
Ilya Dryomovb459be72015-06-12 13:21:07 +030029#define dprintk(args...) /* printf(args) */
30
Sage Weil5ecc0a02009-10-06 11:31:11 -070031/*
32 * Implement the core CRUSH mapping algorithm.
33 */
34
35/**
36 * crush_find_rule - find a crush_rule id for a given ruleset, type, and size.
37 * @map: the crush_map
38 * @ruleset: the storage ruleset id (user defined)
39 * @type: storage ruleset type (user defined)
40 * @size: output set size
41 */
Sage Weil8b12d472012-05-07 15:38:35 -070042int crush_find_rule(const struct crush_map *map, int ruleset, int type, int size)
Sage Weil5ecc0a02009-10-06 11:31:11 -070043{
Sage Weil8b12d472012-05-07 15:38:35 -070044 __u32 i;
Sage Weil5ecc0a02009-10-06 11:31:11 -070045
46 for (i = 0; i < map->max_rules; i++) {
47 if (map->rules[i] &&
48 map->rules[i]->mask.ruleset == ruleset &&
49 map->rules[i]->mask.type == type &&
50 map->rules[i]->mask.min_size <= size &&
51 map->rules[i]->mask.max_size >= size)
52 return i;
53 }
54 return -1;
55}
56
Sage Weil5ecc0a02009-10-06 11:31:11 -070057/*
58 * bucket choose methods
59 *
60 * For each bucket algorithm, we have a "choose" method that, given a
61 * crush input @x and replica position (usually, position in output set) @r,
62 * will produce an item in the bucket.
63 */
64
65/*
66 * Choose based on a random permutation of the bucket.
67 *
68 * We used to use some prime number arithmetic to do this, but it
69 * wasn't very random, and had some other bad behaviors. Instead, we
70 * calculate an actual random permutation of the bucket members.
71 * Since this is expensive, we optimize for the r=0 case, which
72 * captures the vast majority of calls.
73 */
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +010074static int bucket_perm_choose(const struct crush_bucket *bucket,
75 struct crush_work_bucket *work,
Sage Weil5ecc0a02009-10-06 11:31:11 -070076 int x, int r)
77{
Eric Dumazet95c96172012-04-15 05:58:06 +000078 unsigned int pr = r % bucket->size;
79 unsigned int i, s;
Sage Weil5ecc0a02009-10-06 11:31:11 -070080
81 /* start a new permutation if @x has changed */
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +010082 if (work->perm_x != (__u32)x || work->perm_n == 0) {
Sage Weil5ecc0a02009-10-06 11:31:11 -070083 dprintk("bucket %d new x=%d\n", bucket->id, x);
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +010084 work->perm_x = x;
Sage Weil5ecc0a02009-10-06 11:31:11 -070085
86 /* optimize common r=0 case */
87 if (pr == 0) {
Sage Weilfb690392009-11-07 20:18:22 -080088 s = crush_hash32_3(bucket->hash, x, bucket->id, 0) %
Sage Weil5ecc0a02009-10-06 11:31:11 -070089 bucket->size;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +010090 work->perm[0] = s;
91 work->perm_n = 0xffff; /* magic value, see below */
Sage Weil5ecc0a02009-10-06 11:31:11 -070092 goto out;
93 }
94
95 for (i = 0; i < bucket->size; i++)
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +010096 work->perm[i] = i;
97 work->perm_n = 0;
98 } else if (work->perm_n == 0xffff) {
Sage Weil5ecc0a02009-10-06 11:31:11 -070099 /* clean up after the r=0 case above */
100 for (i = 1; i < bucket->size; i++)
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100101 work->perm[i] = i;
102 work->perm[work->perm[0]] = 0;
103 work->perm_n = 1;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700104 }
105
106 /* calculate permutation up to pr */
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100107 for (i = 0; i < work->perm_n; i++)
Ilya Dryomov7ba04872017-02-16 15:38:05 +0100108 dprintk(" perm_choose have %d: %d\n", i, work->perm[i]);
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100109 while (work->perm_n <= pr) {
110 unsigned int p = work->perm_n;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700111 /* no point in swapping the final entry */
112 if (p < bucket->size - 1) {
Sage Weilfb690392009-11-07 20:18:22 -0800113 i = crush_hash32_3(bucket->hash, x, bucket->id, p) %
Sage Weil5ecc0a02009-10-06 11:31:11 -0700114 (bucket->size - p);
115 if (i) {
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100116 unsigned int t = work->perm[p + i];
117 work->perm[p + i] = work->perm[p];
118 work->perm[p] = t;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700119 }
120 dprintk(" perm_choose swap %d with %d\n", p, p+i);
121 }
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100122 work->perm_n++;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700123 }
124 for (i = 0; i < bucket->size; i++)
Ilya Dryomov7ba04872017-02-16 15:38:05 +0100125 dprintk(" perm_choose %d: %d\n", i, work->perm[i]);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700126
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100127 s = work->perm[pr];
Sage Weil5ecc0a02009-10-06 11:31:11 -0700128out:
129 dprintk(" perm_choose %d sz=%d x=%d r=%d (%d) s=%d\n", bucket->id,
130 bucket->size, x, r, pr, s);
131 return bucket->items[s];
132}
133
134/* uniform */
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100135static int bucket_uniform_choose(const struct crush_bucket_uniform *bucket,
136 struct crush_work_bucket *work, int x, int r)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700137{
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100138 return bucket_perm_choose(&bucket->h, work, x, r);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700139}
140
141/* list */
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100142static int bucket_list_choose(const struct crush_bucket_list *bucket,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700143 int x, int r)
144{
145 int i;
146
147 for (i = bucket->h.size-1; i >= 0; i--) {
Ilya Dryomovb459be72015-06-12 13:21:07 +0300148 __u64 w = crush_hash32_4(bucket->h.hash, x, bucket->h.items[i],
Sage Weilfb690392009-11-07 20:18:22 -0800149 r, bucket->h.id);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700150 w &= 0xffff;
151 dprintk("list_choose i=%d x=%d r=%d item %d weight %x "
152 "sw %x rand %llx",
153 i, x, r, bucket->h.items[i], bucket->item_weights[i],
154 bucket->sum_weights[i], w);
155 w *= bucket->sum_weights[i];
156 w = w >> 16;
157 /*dprintk(" scaled %llx\n", w);*/
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100158 if (w < bucket->item_weights[i]) {
Sage Weil5ecc0a02009-10-06 11:31:11 -0700159 return bucket->h.items[i];
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100160 }
Sage Weil5ecc0a02009-10-06 11:31:11 -0700161 }
162
Sage Weila1f48952012-05-07 15:35:24 -0700163 dprintk("bad list sums for bucket %d\n", bucket->h.id);
164 return bucket->h.items[0];
Sage Weil5ecc0a02009-10-06 11:31:11 -0700165}
166
167
168/* (binary) tree */
169static int height(int n)
170{
171 int h = 0;
172 while ((n & 1) == 0) {
173 h++;
174 n = n >> 1;
175 }
176 return h;
177}
178
179static int left(int x)
180{
181 int h = height(x);
182 return x - (1 << (h-1));
183}
184
185static int right(int x)
186{
187 int h = height(x);
188 return x + (1 << (h-1));
189}
190
191static int terminal(int x)
192{
193 return x & 1;
194}
195
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100196static int bucket_tree_choose(const struct crush_bucket_tree *bucket,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700197 int x, int r)
198{
Ilya Dryomov8f99c852013-12-24 21:19:24 +0200199 int n;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700200 __u32 w;
201 __u64 t;
202
203 /* start at root */
204 n = bucket->num_nodes >> 1;
205
206 while (!terminal(n)) {
Ilya Dryomov8f99c852013-12-24 21:19:24 +0200207 int l;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700208 /* pick point in [0, w) */
209 w = bucket->node_weights[n];
Sage Weilfb690392009-11-07 20:18:22 -0800210 t = (__u64)crush_hash32_4(bucket->h.hash, x, n, r,
211 bucket->h.id) * (__u64)w;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700212 t = t >> 32;
213
214 /* descend to the left or right? */
215 l = left(n);
216 if (t < bucket->node_weights[l])
217 n = l;
218 else
219 n = right(n);
220 }
221
222 return bucket->h.items[n >> 1];
223}
224
225
226/* straw */
227
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100228static int bucket_straw_choose(const struct crush_bucket_straw *bucket,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700229 int x, int r)
230{
Sage Weil8b12d472012-05-07 15:38:35 -0700231 __u32 i;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700232 int high = 0;
233 __u64 high_draw = 0;
234 __u64 draw;
235
236 for (i = 0; i < bucket->h.size; i++) {
Sage Weilfb690392009-11-07 20:18:22 -0800237 draw = crush_hash32_3(bucket->h.hash, x, bucket->h.items[i], r);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700238 draw &= 0xffff;
239 draw *= bucket->straws[i];
240 if (i == 0 || draw > high_draw) {
241 high = i;
242 high_draw = draw;
243 }
244 }
245 return bucket->h.items[high];
246}
247
Ilya Dryomovb459be72015-06-12 13:21:07 +0300248/* compute 2^44*log2(input+1) */
249static __u64 crush_ln(unsigned int xin)
Ilya Dryomov958a2762015-04-14 16:54:52 +0300250{
Ilya Dryomov64f77562016-09-27 12:35:55 +0200251 unsigned int x = xin;
Ilya Dryomovb459be72015-06-12 13:21:07 +0300252 int iexpon, index1, index2;
253 __u64 RH, LH, LL, xl64, result;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300254
Ilya Dryomovb459be72015-06-12 13:21:07 +0300255 x++;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300256
Ilya Dryomovb459be72015-06-12 13:21:07 +0300257 /* normalize input */
258 iexpon = 15;
Ilya Dryomov74a529382016-09-27 12:30:09 +0200259
260 /*
261 * figure out number of bits we need to shift and
262 * do it in one step instead of iteratively
263 */
264 if (!(x & 0x18000)) {
265 int bits = __builtin_clz(x & 0x1FFFF) - 16;
266 x <<= bits;
267 iexpon = 15 - bits;
Ilya Dryomovb459be72015-06-12 13:21:07 +0300268 }
Ilya Dryomov958a2762015-04-14 16:54:52 +0300269
Ilya Dryomovb459be72015-06-12 13:21:07 +0300270 index1 = (x >> 8) << 1;
271 /* RH ~ 2^56/index1 */
272 RH = __RH_LH_tbl[index1 - 256];
273 /* LH ~ 2^48 * log2(index1/256) */
274 LH = __RH_LH_tbl[index1 + 1 - 256];
Ilya Dryomov958a2762015-04-14 16:54:52 +0300275
Ilya Dryomovb459be72015-06-12 13:21:07 +0300276 /* RH*x ~ 2^48 * (2^15 + xf), xf<2^8 */
277 xl64 = (__s64)x * RH;
278 xl64 >>= 48;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300279
Ilya Dryomovb459be72015-06-12 13:21:07 +0300280 result = iexpon;
281 result <<= (12 + 32);
Ilya Dryomov958a2762015-04-14 16:54:52 +0300282
Ilya Dryomov64f77562016-09-27 12:35:55 +0200283 index2 = xl64 & 0xff;
Ilya Dryomovb459be72015-06-12 13:21:07 +0300284 /* LL ~ 2^48*log2(1.0+index2/2^15) */
285 LL = __LL_tbl[index2];
Ilya Dryomov958a2762015-04-14 16:54:52 +0300286
Ilya Dryomovb459be72015-06-12 13:21:07 +0300287 LH = LH + LL;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300288
Ilya Dryomovb459be72015-06-12 13:21:07 +0300289 LH >>= (48 - 12 - 32);
290 result += LH;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300291
Ilya Dryomovb459be72015-06-12 13:21:07 +0300292 return result;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300293}
294
295
296/*
297 * straw2
298 *
299 * for reference, see:
300 *
301 * http://en.wikipedia.org/wiki/Exponential_distribution#Distribution_of_the_minimum_of_exponential_random_variables
302 *
303 */
304
Ilya Dryomov069f3222017-06-22 19:44:05 +0200305static __u32 *get_choose_arg_weights(const struct crush_bucket_straw2 *bucket,
306 const struct crush_choose_arg *arg,
307 int position)
308{
Ilya Dryomovc7ed1a42017-07-24 15:49:52 +0200309 if (!arg || !arg->weight_set)
Ilya Dryomov069f3222017-06-22 19:44:05 +0200310 return bucket->item_weights;
311
312 if (position >= arg->weight_set_size)
313 position = arg->weight_set_size - 1;
314 return arg->weight_set[position].weights;
315}
316
317static __s32 *get_choose_arg_ids(const struct crush_bucket_straw2 *bucket,
318 const struct crush_choose_arg *arg)
319{
320 if (!arg || !arg->ids)
321 return bucket->h.items;
322
323 return arg->ids;
324}
325
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100326static int bucket_straw2_choose(const struct crush_bucket_straw2 *bucket,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200327 int x, int r,
328 const struct crush_choose_arg *arg,
329 int position)
Ilya Dryomov958a2762015-04-14 16:54:52 +0300330{
Ilya Dryomovb459be72015-06-12 13:21:07 +0300331 unsigned int i, high = 0;
332 unsigned int u;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300333 __s64 ln, draw, high_draw = 0;
Ilya Dryomov069f3222017-06-22 19:44:05 +0200334 __u32 *weights = get_choose_arg_weights(bucket, arg, position);
335 __s32 *ids = get_choose_arg_ids(bucket, arg);
Ilya Dryomov958a2762015-04-14 16:54:52 +0300336
337 for (i = 0; i < bucket->h.size; i++) {
Ilya Dryomov069f3222017-06-22 19:44:05 +0200338 dprintk("weight 0x%x item %d\n", weights[i], ids[i]);
339 if (weights[i]) {
340 u = crush_hash32_3(bucket->h.hash, x, ids[i], r);
Ilya Dryomov958a2762015-04-14 16:54:52 +0300341 u &= 0xffff;
342
343 /*
344 * for some reason slightly less than 0x10000 produces
345 * a slightly more accurate distribution... probably a
346 * rounding effect.
347 *
348 * the natural log lookup table maps [0,0xffff]
349 * (corresponding to real numbers [1/0x10000, 1] to
350 * [0, 0xffffffffffff] (corresponding to real numbers
351 * [-11.090355,0]).
352 */
353 ln = crush_ln(u) - 0x1000000000000ll;
354
355 /*
356 * divide by 16.16 fixed-point weight. note
357 * that the ln value is negative, so a larger
358 * weight means a larger (less negative) value
359 * for draw.
360 */
Ilya Dryomov069f3222017-06-22 19:44:05 +0200361 draw = div64_s64(ln, weights[i]);
Ilya Dryomov958a2762015-04-14 16:54:52 +0300362 } else {
363 draw = S64_MIN;
364 }
365
366 if (i == 0 || draw > high_draw) {
367 high = i;
368 high_draw = draw;
369 }
370 }
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100371
Ilya Dryomov958a2762015-04-14 16:54:52 +0300372 return bucket->h.items[high];
373}
374
375
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100376static int crush_bucket_choose(const struct crush_bucket *in,
377 struct crush_work_bucket *work,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200378 int x, int r,
379 const struct crush_choose_arg *arg,
380 int position)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700381{
Sage Weila1a31e72010-06-24 12:58:14 -0700382 dprintk(" crush_bucket_choose %d x=%d r=%d\n", in->id, x, r);
Sage Weila1f48952012-05-07 15:35:24 -0700383 BUG_ON(in->size == 0);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700384 switch (in->alg) {
385 case CRUSH_BUCKET_UNIFORM:
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100386 return bucket_uniform_choose(
387 (const struct crush_bucket_uniform *)in,
388 work, x, r);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700389 case CRUSH_BUCKET_LIST:
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100390 return bucket_list_choose((const struct crush_bucket_list *)in,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700391 x, r);
392 case CRUSH_BUCKET_TREE:
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100393 return bucket_tree_choose((const struct crush_bucket_tree *)in,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700394 x, r);
395 case CRUSH_BUCKET_STRAW:
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100396 return bucket_straw_choose(
397 (const struct crush_bucket_straw *)in,
398 x, r);
Ilya Dryomov958a2762015-04-14 16:54:52 +0300399 case CRUSH_BUCKET_STRAW2:
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100400 return bucket_straw2_choose(
401 (const struct crush_bucket_straw2 *)in,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200402 x, r, arg, position);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700403 default:
Sage Weila1f48952012-05-07 15:35:24 -0700404 dprintk("unknown bucket %d alg %d\n", in->id, in->alg);
Sage Weil50b885b2009-12-01 14:12:07 -0800405 return in->items[0];
Sage Weil5ecc0a02009-10-06 11:31:11 -0700406 }
407}
408
409/*
410 * true if device is marked "out" (failed, fully offloaded)
411 * of the cluster
412 */
Ilya Dryomovb3b33b02013-12-24 21:19:24 +0200413static int is_out(const struct crush_map *map,
414 const __u32 *weight, int weight_max,
415 int item, int x)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700416{
Ilya Dryomovb3b33b02013-12-24 21:19:24 +0200417 if (item >= weight_max)
418 return 1;
Sage Weil153a1092010-07-05 09:44:17 -0700419 if (weight[item] >= 0x10000)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700420 return 0;
421 if (weight[item] == 0)
422 return 1;
Sage Weilfb690392009-11-07 20:18:22 -0800423 if ((crush_hash32_2(CRUSH_HASH_RJENKINS1, x, item) & 0xffff)
424 < weight[item])
Sage Weil5ecc0a02009-10-06 11:31:11 -0700425 return 0;
426 return 1;
427}
428
429/**
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200430 * crush_choose_firstn - choose numrep distinct items of given type
Sage Weil5ecc0a02009-10-06 11:31:11 -0700431 * @map: the crush_map
432 * @bucket: the bucket we are choose an item from
433 * @x: crush input value
434 * @numrep: the number of items to choose
435 * @type: the type of item to choose
436 * @out: pointer to output vector
437 * @outpos: our position in that vector
Ilya Dryomov45002262015-04-14 16:04:23 +0300438 * @out_size: size of the out vector
Ilya Dryomov0e32d712013-12-24 21:19:27 +0200439 * @tries: number of attempts to make
440 * @recurse_tries: number of attempts to have recursive chooseleaf make
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200441 * @local_retries: localized retries
442 * @local_fallback_retries: localized fallback retries
Ilya Dryomov0e32d712013-12-24 21:19:27 +0200443 * @recurse_to_leaf: true if we want one device under each item of given type (chooseleaf instead of choose)
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100444 * @stable: stable mode starts rep=0 in the recursive call for all replicas
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200445 * @vary_r: pass r to recursive calls
Sage Weil5ecc0a02009-10-06 11:31:11 -0700446 * @out2: second output vector for leaf items (if @recurse_to_leaf)
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200447 * @parent_r: r value passed from the parent
Sage Weil5ecc0a02009-10-06 11:31:11 -0700448 */
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200449static int crush_choose_firstn(const struct crush_map *map,
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100450 struct crush_work *work,
451 const struct crush_bucket *bucket,
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200452 const __u32 *weight, int weight_max,
453 int x, int numrep, int type,
454 int *out, int outpos,
Ilya Dryomov45002262015-04-14 16:04:23 +0300455 int out_size,
Ilya Dryomov2d8be0b2013-12-24 21:19:27 +0200456 unsigned int tries,
457 unsigned int recurse_tries,
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200458 unsigned int local_retries,
459 unsigned int local_fallback_retries,
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200460 int recurse_to_leaf,
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200461 unsigned int vary_r,
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100462 unsigned int stable,
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200463 int *out2,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200464 int parent_r,
465 const struct crush_choose_arg *choose_args)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700466{
467 int rep;
Sage Weil8b12d472012-05-07 15:38:35 -0700468 unsigned int ftotal, flocal;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700469 int retry_descent, retry_bucket, skip_rep;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100470 const struct crush_bucket *in = bucket;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700471 int r;
472 int i;
Sage Weilb28813a2009-10-07 10:59:34 -0700473 int item = 0;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700474 int itemtype;
475 int collide, reject;
Ilya Dryomov45002262015-04-14 16:04:23 +0300476 int count = out_size;
Sage Weila1a31e72010-06-24 12:58:14 -0700477
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100478 dprintk("CHOOSE%s bucket %d x %d outpos %d numrep %d tries %d recurse_tries %d local_retries %d local_fallback_retries %d parent_r %d stable %d\n",
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200479 recurse_to_leaf ? "_LEAF" : "",
480 bucket->id, x, outpos, numrep,
481 tries, recurse_tries, local_retries, local_fallback_retries,
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100482 parent_r, stable);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700483
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100484 for (rep = stable ? 0 : outpos; rep < numrep && count > 0 ; rep++) {
Sage Weil5ecc0a02009-10-06 11:31:11 -0700485 /* keep trying until we get a non-out, non-colliding item */
486 ftotal = 0;
487 skip_rep = 0;
488 do {
489 retry_descent = 0;
490 in = bucket; /* initial bucket */
491
492 /* choose through intervening buckets */
493 flocal = 0;
494 do {
Sage Weilb28813a2009-10-07 10:59:34 -0700495 collide = 0;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700496 retry_bucket = 0;
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200497 r = rep + parent_r;
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200498 /* r' = r + f_total */
499 r += ftotal;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700500
501 /* bucket choose */
Sage Weilb28813a2009-10-07 10:59:34 -0700502 if (in->size == 0) {
503 reject = 1;
504 goto reject;
505 }
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200506 if (local_fallback_retries > 0 &&
Sage Weil546f04e2012-07-30 18:15:23 -0700507 flocal >= (in->size>>1) &&
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200508 flocal > local_fallback_retries)
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100509 item = bucket_perm_choose(
510 in, work->work[-1-in->id],
511 x, r);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700512 else
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100513 item = crush_bucket_choose(
514 in, work->work[-1-in->id],
Ilya Dryomov069f3222017-06-22 19:44:05 +0200515 x, r,
516 (choose_args ?
517 &choose_args[-1-in->id] : 0),
518 outpos);
Sage Weila1f48952012-05-07 15:35:24 -0700519 if (item >= map->max_devices) {
520 dprintk(" bad item %d\n", item);
521 skip_rep = 1;
522 break;
523 }
Sage Weil5ecc0a02009-10-06 11:31:11 -0700524
525 /* desired type? */
526 if (item < 0)
527 itemtype = map->buckets[-1-item]->type;
528 else
529 itemtype = 0;
530 dprintk(" item %d type %d\n", item, itemtype);
531
532 /* keep going? */
533 if (itemtype != type) {
Sage Weila1f48952012-05-07 15:35:24 -0700534 if (item >= 0 ||
535 (-1-item) >= map->max_buckets) {
536 dprintk(" bad item type %d\n", type);
537 skip_rep = 1;
538 break;
539 }
Sage Weil5ecc0a02009-10-06 11:31:11 -0700540 in = map->buckets[-1-item];
Sage Weil55bda7a2010-06-24 12:55:48 -0700541 retry_bucket = 1;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700542 continue;
543 }
544
545 /* collision? */
Sage Weil5ecc0a02009-10-06 11:31:11 -0700546 for (i = 0; i < outpos; i++) {
547 if (out[i] == item) {
548 collide = 1;
549 break;
550 }
551 }
552
Sage Weila1a31e72010-06-24 12:58:14 -0700553 reject = 0;
Sage Weil7d7c1f62013-01-15 18:49:09 -0800554 if (!collide && recurse_to_leaf) {
Sage Weila1a31e72010-06-24 12:58:14 -0700555 if (item < 0) {
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200556 int sub_r;
557 if (vary_r)
558 sub_r = r >> (vary_r-1);
559 else
560 sub_r = 0;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100561 if (crush_choose_firstn(
562 map,
563 work,
564 map->buckets[-1-item],
565 weight, weight_max,
566 x, stable ? 1 : outpos+1, 0,
567 out2, outpos, count,
568 recurse_tries, 0,
569 local_retries,
570 local_fallback_retries,
571 0,
572 vary_r,
573 stable,
574 NULL,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200575 sub_r,
576 choose_args) <= outpos)
Sage Weila1a31e72010-06-24 12:58:14 -0700577 /* didn't get leaf */
578 reject = 1;
579 } else {
580 /* we already have a leaf! */
581 out2[outpos] = item;
582 }
583 }
584
Ilya Dryomov98ba6af2017-02-16 15:21:15 +0100585 if (!reject && !collide) {
Sage Weil5ecc0a02009-10-06 11:31:11 -0700586 /* out? */
587 if (itemtype == 0)
588 reject = is_out(map, weight,
Ilya Dryomovb3b33b02013-12-24 21:19:24 +0200589 weight_max,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700590 item, x);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700591 }
592
Sage Weilb28813a2009-10-07 10:59:34 -0700593reject:
Sage Weil5ecc0a02009-10-06 11:31:11 -0700594 if (reject || collide) {
595 ftotal++;
596 flocal++;
597
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200598 if (collide && flocal <= local_retries)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700599 /* retry locally a few times */
600 retry_bucket = 1;
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200601 else if (local_fallback_retries > 0 &&
602 flocal <= in->size + local_fallback_retries)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700603 /* exhaustive bucket search */
604 retry_bucket = 1;
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200605 else if (ftotal < tries)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700606 /* then retry descent */
607 retry_descent = 1;
608 else
609 /* else give up */
610 skip_rep = 1;
611 dprintk(" reject %d collide %d "
Sage Weil8b12d472012-05-07 15:38:35 -0700612 "ftotal %u flocal %u\n",
Sage Weil5ecc0a02009-10-06 11:31:11 -0700613 reject, collide, ftotal,
614 flocal);
615 }
616 } while (retry_bucket);
617 } while (retry_descent);
618
619 if (skip_rep) {
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200620 dprintk("skip rep\n");
621 continue;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700622 }
623
Sage Weila1a31e72010-06-24 12:58:14 -0700624 dprintk("CHOOSE got %d\n", item);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700625 out[outpos] = item;
626 outpos++;
Ilya Dryomov45002262015-04-14 16:04:23 +0300627 count--;
Ilya Dryomovb459be72015-06-12 13:21:07 +0300628#ifndef __KERNEL__
629 if (map->choose_tries && ftotal <= map->choose_total_tries)
630 map->choose_tries[ftotal]++;
631#endif
Sage Weil5ecc0a02009-10-06 11:31:11 -0700632 }
633
Sage Weila1a31e72010-06-24 12:58:14 -0700634 dprintk("CHOOSE returns %d\n", outpos);
Sage Weil5ecc0a02009-10-06 11:31:11 -0700635 return outpos;
636}
637
638
639/**
Ilya Dryomov9fe07182013-12-24 21:19:25 +0200640 * crush_choose_indep: alternative breadth-first positionally stable mapping
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200641 *
642 */
643static void crush_choose_indep(const struct crush_map *map,
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100644 struct crush_work *work,
645 const struct crush_bucket *bucket,
Ilya Dryomovbe3226a2013-12-24 21:19:26 +0200646 const __u32 *weight, int weight_max,
Ilya Dryomovab4ce2b52013-12-24 21:19:25 +0200647 int x, int left, int numrep, int type,
Ilya Dryomovbe3226a2013-12-24 21:19:26 +0200648 int *out, int outpos,
Ilya Dryomov2d8be0b2013-12-24 21:19:27 +0200649 unsigned int tries,
650 unsigned int recurse_tries,
Ilya Dryomovbe3226a2013-12-24 21:19:26 +0200651 int recurse_to_leaf,
Ilya Dryomov41586082013-12-24 21:19:25 +0200652 int *out2,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200653 int parent_r,
654 const struct crush_choose_arg *choose_args)
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200655{
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100656 const struct crush_bucket *in = bucket;
Ilya Dryomovab4ce2b52013-12-24 21:19:25 +0200657 int endpos = outpos + left;
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200658 int rep;
659 unsigned int ftotal;
660 int r;
661 int i;
662 int item = 0;
663 int itemtype;
664 int collide;
665
666 dprintk("CHOOSE%s INDEP bucket %d x %d outpos %d numrep %d\n", recurse_to_leaf ? "_LEAF" : "",
667 bucket->id, x, outpos, numrep);
668
669 /* initially my result is undefined */
Ilya Dryomovab4ce2b52013-12-24 21:19:25 +0200670 for (rep = outpos; rep < endpos; rep++) {
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200671 out[rep] = CRUSH_ITEM_UNDEF;
672 if (out2)
673 out2[rep] = CRUSH_ITEM_UNDEF;
674 }
675
Ilya Dryomov2d8be0b2013-12-24 21:19:27 +0200676 for (ftotal = 0; left > 0 && ftotal < tries; ftotal++) {
Ilya Dryomovb459be72015-06-12 13:21:07 +0300677#ifdef DEBUG_INDEP
678 if (out2 && ftotal) {
679 dprintk("%u %d a: ", ftotal, left);
680 for (rep = outpos; rep < endpos; rep++) {
681 dprintk(" %d", out[rep]);
682 }
683 dprintk("\n");
684 dprintk("%u %d b: ", ftotal, left);
685 for (rep = outpos; rep < endpos; rep++) {
686 dprintk(" %d", out2[rep]);
687 }
688 dprintk("\n");
689 }
690#endif
Ilya Dryomovab4ce2b52013-12-24 21:19:25 +0200691 for (rep = outpos; rep < endpos; rep++) {
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200692 if (out[rep] != CRUSH_ITEM_UNDEF)
693 continue;
694
695 in = bucket; /* initial bucket */
696
697 /* choose through intervening buckets */
698 for (;;) {
Ilya Dryomov3102b0a2013-12-24 21:19:25 +0200699 /* note: we base the choice on the position
700 * even in the nested call. that means that
701 * if the first layer chooses the same bucket
702 * in a different position, we will tend to
703 * choose a different item in that bucket.
704 * this will involve more devices in data
705 * movement and tend to distribute the load.
706 */
Ilya Dryomov41586082013-12-24 21:19:25 +0200707 r = rep + parent_r;
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200708
709 /* be careful */
710 if (in->alg == CRUSH_BUCKET_UNIFORM &&
711 in->size % numrep == 0)
712 /* r'=r+(n+1)*f_total */
713 r += (numrep+1) * ftotal;
714 else
715 /* r' = r + n*f_total */
716 r += numrep * ftotal;
717
718 /* bucket choose */
719 if (in->size == 0) {
720 dprintk(" empty bucket\n");
721 break;
722 }
723
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100724 item = crush_bucket_choose(
725 in, work->work[-1-in->id],
Ilya Dryomov069f3222017-06-22 19:44:05 +0200726 x, r,
727 (choose_args ?
728 &choose_args[-1-in->id] : 0),
729 outpos);
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200730 if (item >= map->max_devices) {
731 dprintk(" bad item %d\n", item);
732 out[rep] = CRUSH_ITEM_NONE;
733 if (out2)
734 out2[rep] = CRUSH_ITEM_NONE;
735 left--;
736 break;
737 }
738
739 /* desired type? */
740 if (item < 0)
741 itemtype = map->buckets[-1-item]->type;
742 else
743 itemtype = 0;
744 dprintk(" item %d type %d\n", item, itemtype);
745
746 /* keep going? */
747 if (itemtype != type) {
748 if (item >= 0 ||
749 (-1-item) >= map->max_buckets) {
750 dprintk(" bad item type %d\n", type);
751 out[rep] = CRUSH_ITEM_NONE;
752 if (out2)
753 out2[rep] =
754 CRUSH_ITEM_NONE;
755 left--;
756 break;
757 }
758 in = map->buckets[-1-item];
759 continue;
760 }
761
762 /* collision? */
763 collide = 0;
Ilya Dryomovab4ce2b52013-12-24 21:19:25 +0200764 for (i = outpos; i < endpos; i++) {
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200765 if (out[i] == item) {
766 collide = 1;
767 break;
768 }
769 }
770 if (collide)
771 break;
772
773 if (recurse_to_leaf) {
774 if (item < 0) {
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100775 crush_choose_indep(
776 map,
777 work,
778 map->buckets[-1-item],
779 weight, weight_max,
780 x, 1, numrep, 0,
781 out2, rep,
782 recurse_tries, 0,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200783 0, NULL, r,
784 choose_args);
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200785 if (out2[rep] == CRUSH_ITEM_NONE) {
786 /* placed nothing; no leaf */
787 break;
788 }
789 } else {
790 /* we already have a leaf! */
791 out2[rep] = item;
792 }
793 }
794
795 /* out? */
796 if (itemtype == 0 &&
797 is_out(map, weight, weight_max, item, x))
798 break;
799
800 /* yay! */
801 out[rep] = item;
802 left--;
803 break;
804 }
805 }
806 }
Ilya Dryomovab4ce2b52013-12-24 21:19:25 +0200807 for (rep = outpos; rep < endpos; rep++) {
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200808 if (out[rep] == CRUSH_ITEM_UNDEF) {
809 out[rep] = CRUSH_ITEM_NONE;
810 }
811 if (out2 && out2[rep] == CRUSH_ITEM_UNDEF) {
812 out2[rep] = CRUSH_ITEM_NONE;
813 }
814 }
Ilya Dryomovb459be72015-06-12 13:21:07 +0300815#ifndef __KERNEL__
816 if (map->choose_tries && ftotal <= map->choose_total_tries)
817 map->choose_tries[ftotal]++;
818#endif
819#ifdef DEBUG_INDEP
820 if (out2) {
821 dprintk("%u %d a: ", ftotal, left);
822 for (rep = outpos; rep < endpos; rep++) {
823 dprintk(" %d", out[rep]);
824 }
825 dprintk("\n");
826 dprintk("%u %d b: ", ftotal, left);
827 for (rep = outpos; rep < endpos; rep++) {
828 dprintk(" %d", out2[rep]);
829 }
830 dprintk("\n");
831 }
832#endif
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200833}
834
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100835
836/*
837 * This takes a chunk of memory and sets it up to be a shiny new
838 * working area for a CRUSH placement computation. It must be called
839 * on any newly allocated memory before passing it in to
840 * crush_do_rule. It may be used repeatedly after that, so long as the
841 * map has not changed. If the map /has/ changed, you must make sure
842 * the working size is no smaller than what was allocated and re-run
843 * crush_init_workspace.
844 *
845 * If you do retain the working space between calls to crush, make it
846 * thread-local.
847 */
848void crush_init_workspace(const struct crush_map *map, void *v)
849{
850 struct crush_work *w = v;
851 __s32 b;
852
853 /*
854 * We work by moving through the available space and setting
855 * values and pointers as we go.
856 *
857 * It's a bit like Forth's use of the 'allot' word since we
858 * set the pointer first and then reserve the space for it to
859 * point to by incrementing the point.
860 */
Ilya Dryomovb88ed8d2017-06-22 19:44:05 +0200861 v += sizeof(struct crush_work);
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100862 w->work = v;
863 v += map->max_buckets * sizeof(struct crush_work_bucket *);
864 for (b = 0; b < map->max_buckets; ++b) {
865 if (!map->buckets[b])
866 continue;
867
868 w->work[b] = v;
869 switch (map->buckets[b]->alg) {
870 default:
871 v += sizeof(struct crush_work_bucket);
872 break;
873 }
874 w->work[b]->perm_x = 0;
875 w->work[b]->perm_n = 0;
876 w->work[b]->perm = v;
877 v += map->buckets[b]->size * sizeof(__u32);
878 }
879 BUG_ON(v - (void *)w != map->working_size);
880}
881
Ilya Dryomov9a3b4902013-12-24 21:19:25 +0200882/**
Sage Weil5ecc0a02009-10-06 11:31:11 -0700883 * crush_do_rule - calculate a mapping with the given input and rule
884 * @map: the crush_map
885 * @ruleno: the rule id
886 * @x: hash input
887 * @result: pointer to result vector
888 * @result_max: maximum result size
Ilya Dryomovb3b33b02013-12-24 21:19:24 +0200889 * @weight: weight vector (for map leaves)
890 * @weight_max: size of weight vector
Ilya Dryomov743efcf2017-01-31 15:55:06 +0100891 * @cwin: pointer to at least crush_work_size() bytes of memory
Ilya Dryomov069f3222017-06-22 19:44:05 +0200892 * @choose_args: weights and ids for each known bucket
Sage Weil5ecc0a02009-10-06 11:31:11 -0700893 */
Sage Weil8b12d472012-05-07 15:38:35 -0700894int crush_do_rule(const struct crush_map *map,
Sage Weil5ecc0a02009-10-06 11:31:11 -0700895 int ruleno, int x, int *result, int result_max,
Ilya Dryomove8ef19c2013-12-24 21:19:24 +0200896 const __u32 *weight, int weight_max,
Ilya Dryomov069f3222017-06-22 19:44:05 +0200897 void *cwin, const struct crush_choose_arg *choose_args)
Sage Weil5ecc0a02009-10-06 11:31:11 -0700898{
899 int result_len;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100900 struct crush_work *cw = cwin;
Ilya Dryomov743efcf2017-01-31 15:55:06 +0100901 int *a = cwin + map->working_size;
902 int *b = a + result_max;
903 int *c = b + result_max;
904 int *w = a;
905 int *o = b;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700906 int recurse_to_leaf;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700907 int wsize = 0;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700908 int osize;
909 int *tmp;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100910 const struct crush_rule *rule;
Sage Weil8b12d472012-05-07 15:38:35 -0700911 __u32 step;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700912 int i, j;
913 int numrep;
Ilya Dryomov45002262015-04-14 16:04:23 +0300914 int out_size;
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200915 /*
916 * the original choose_total_tries value was off by one (it
917 * counted "retries" and not "tries"). add one.
918 */
919 int choose_tries = map->choose_total_tries + 1;
Ilya Dryomovf18650a2013-12-24 21:19:26 +0200920 int choose_leaf_tries = 0;
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200921 /*
922 * the local tries values were counted as "retries", though,
923 * and need no adjustment
924 */
925 int choose_local_retries = map->choose_local_tries;
926 int choose_local_fallback_retries = map->choose_local_fallback_tries;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700927
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200928 int vary_r = map->chooseleaf_vary_r;
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100929 int stable = map->chooseleaf_stable;
Ilya Dryomove2b149c2014-03-19 16:58:37 +0200930
Sage Weila1f48952012-05-07 15:35:24 -0700931 if ((__u32)ruleno >= map->max_rules) {
932 dprintk(" bad ruleno %d\n", ruleno);
933 return 0;
934 }
Sage Weil5ecc0a02009-10-06 11:31:11 -0700935
936 rule = map->rules[ruleno];
937 result_len = 0;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700938
Sage Weil5ecc0a02009-10-06 11:31:11 -0700939 for (step = 0; step < rule->len; step++) {
Ilya Dryomov8f99c852013-12-24 21:19:24 +0200940 int firstn = 0;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100941 const struct crush_rule_step *curstep = &rule->steps[step];
Sage Weil06682162012-05-07 15:35:48 -0700942
Sage Weil06682162012-05-07 15:35:48 -0700943 switch (curstep->op) {
Sage Weil5ecc0a02009-10-06 11:31:11 -0700944 case CRUSH_RULE_TAKE:
Ilya Dryomov8f529792015-06-12 11:20:03 +0300945 if ((curstep->arg1 >= 0 &&
946 curstep->arg1 < map->max_devices) ||
Ilya Dryomov56a4f302016-01-31 14:36:05 +0100947 (-1-curstep->arg1 >= 0 &&
948 -1-curstep->arg1 < map->max_buckets &&
Ilya Dryomov8f529792015-06-12 11:20:03 +0300949 map->buckets[-1-curstep->arg1])) {
950 w[0] = curstep->arg1;
951 wsize = 1;
952 } else {
953 dprintk(" bad take value %d\n", curstep->arg1);
954 }
Sage Weil5ecc0a02009-10-06 11:31:11 -0700955 break;
956
Ilya Dryomovcc10df42013-12-24 21:19:26 +0200957 case CRUSH_RULE_SET_CHOOSE_TRIES:
958 if (curstep->arg1 > 0)
959 choose_tries = curstep->arg1;
960 break;
961
Ilya Dryomov917edad2013-12-24 21:19:26 +0200962 case CRUSH_RULE_SET_CHOOSELEAF_TRIES:
Ilya Dryomovbe3226a2013-12-24 21:19:26 +0200963 if (curstep->arg1 > 0)
964 choose_leaf_tries = curstep->arg1;
965 break;
966
Ilya Dryomovf046bf92013-12-24 21:19:27 +0200967 case CRUSH_RULE_SET_CHOOSE_LOCAL_TRIES:
Ilya Dryomov6ed10022014-03-19 16:58:37 +0200968 if (curstep->arg1 >= 0)
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200969 choose_local_retries = curstep->arg1;
Ilya Dryomovf046bf92013-12-24 21:19:27 +0200970 break;
971
972 case CRUSH_RULE_SET_CHOOSE_LOCAL_FALLBACK_TRIES:
Ilya Dryomov6ed10022014-03-19 16:58:37 +0200973 if (curstep->arg1 >= 0)
Ilya Dryomov48a163d2014-03-19 16:58:36 +0200974 choose_local_fallback_retries = curstep->arg1;
Ilya Dryomovf046bf92013-12-24 21:19:27 +0200975 break;
976
Ilya Dryomovd83ed852014-03-19 16:58:37 +0200977 case CRUSH_RULE_SET_CHOOSELEAF_VARY_R:
978 if (curstep->arg1 >= 0)
979 vary_r = curstep->arg1;
980 break;
981
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +0100982 case CRUSH_RULE_SET_CHOOSELEAF_STABLE:
983 if (curstep->arg1 >= 0)
984 stable = curstep->arg1;
985 break;
986
Ilya Dryomov917edad2013-12-24 21:19:26 +0200987 case CRUSH_RULE_CHOOSELEAF_FIRSTN:
Sage Weil5ecc0a02009-10-06 11:31:11 -0700988 case CRUSH_RULE_CHOOSE_FIRSTN:
989 firstn = 1;
Sage Weil06682162012-05-07 15:35:48 -0700990 /* fall through */
Ilya Dryomov917edad2013-12-24 21:19:26 +0200991 case CRUSH_RULE_CHOOSELEAF_INDEP:
Sage Weil5ecc0a02009-10-06 11:31:11 -0700992 case CRUSH_RULE_CHOOSE_INDEP:
Sage Weila1f48952012-05-07 15:35:24 -0700993 if (wsize == 0)
994 break;
Sage Weil5ecc0a02009-10-06 11:31:11 -0700995
996 recurse_to_leaf =
Sage Weil06682162012-05-07 15:35:48 -0700997 curstep->op ==
Ilya Dryomov917edad2013-12-24 21:19:26 +0200998 CRUSH_RULE_CHOOSELEAF_FIRSTN ||
Sage Weil06682162012-05-07 15:35:48 -0700999 curstep->op ==
Ilya Dryomov917edad2013-12-24 21:19:26 +02001000 CRUSH_RULE_CHOOSELEAF_INDEP;
Sage Weil5ecc0a02009-10-06 11:31:11 -07001001
1002 /* reset output */
1003 osize = 0;
1004
1005 for (i = 0; i < wsize; i++) {
Ilya Dryomovf224a692016-01-31 14:35:59 +01001006 int bno;
Sage Weil06682162012-05-07 15:35:48 -07001007 numrep = curstep->arg1;
Sage Weil5ecc0a02009-10-06 11:31:11 -07001008 if (numrep <= 0) {
1009 numrep += result_max;
1010 if (numrep <= 0)
1011 continue;
1012 }
1013 j = 0;
Ilya Dryomovf224a692016-01-31 14:35:59 +01001014 /* make sure bucket id is valid */
1015 bno = -1 - w[i];
1016 if (bno < 0 || bno >= map->max_buckets) {
1017 /* w[i] is probably CRUSH_ITEM_NONE */
1018 dprintk(" bad w[i] %d\n", w[i]);
1019 continue;
1020 }
Ilya Dryomov9a3b4902013-12-24 21:19:25 +02001021 if (firstn) {
Ilya Dryomovd390bb22013-12-24 21:19:26 +02001022 int recurse_tries;
1023 if (choose_leaf_tries)
1024 recurse_tries =
1025 choose_leaf_tries;
1026 else if (map->chooseleaf_descend_once)
1027 recurse_tries = 1;
1028 else
1029 recurse_tries = choose_tries;
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001030 osize += crush_choose_firstn(
1031 map,
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +01001032 cw,
Ilya Dryomovf224a692016-01-31 14:35:59 +01001033 map->buckets[bno],
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001034 weight, weight_max,
1035 x, numrep,
1036 curstep->arg2,
1037 o+osize, j,
Ilya Dryomov45002262015-04-14 16:04:23 +03001038 result_max-osize,
Ilya Dryomovf18650a2013-12-24 21:19:26 +02001039 choose_tries,
Ilya Dryomovd390bb22013-12-24 21:19:26 +02001040 recurse_tries,
Ilya Dryomov48a163d2014-03-19 16:58:36 +02001041 choose_local_retries,
1042 choose_local_fallback_retries,
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001043 recurse_to_leaf,
Ilya Dryomove2b149c2014-03-19 16:58:37 +02001044 vary_r,
Ilya Dryomovdc6ae6d2016-01-31 14:36:07 +01001045 stable,
Ilya Dryomove2b149c2014-03-19 16:58:37 +02001046 c+osize,
Ilya Dryomov069f3222017-06-22 19:44:05 +02001047 0,
1048 choose_args);
Ilya Dryomov9a3b4902013-12-24 21:19:25 +02001049 } else {
Ilya Dryomov45002262015-04-14 16:04:23 +03001050 out_size = ((numrep < (result_max-osize)) ?
Ilya Dryomovb459be72015-06-12 13:21:07 +03001051 numrep : (result_max-osize));
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001052 crush_choose_indep(
1053 map,
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +01001054 cw,
Ilya Dryomovf224a692016-01-31 14:35:59 +01001055 map->buckets[bno],
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001056 weight, weight_max,
Ilya Dryomov45002262015-04-14 16:04:23 +03001057 x, out_size, numrep,
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001058 curstep->arg2,
1059 o+osize, j,
Ilya Dryomovf18650a2013-12-24 21:19:26 +02001060 choose_tries,
Ilya Dryomovd390bb22013-12-24 21:19:26 +02001061 choose_leaf_tries ?
1062 choose_leaf_tries : 1,
Ilya Dryomov9fe07182013-12-24 21:19:25 +02001063 recurse_to_leaf,
Ilya Dryomov41586082013-12-24 21:19:25 +02001064 c+osize,
Ilya Dryomov069f3222017-06-22 19:44:05 +02001065 0,
1066 choose_args);
Ilya Dryomov45002262015-04-14 16:04:23 +03001067 osize += out_size;
Ilya Dryomov9a3b4902013-12-24 21:19:25 +02001068 }
Sage Weil5ecc0a02009-10-06 11:31:11 -07001069 }
1070
1071 if (recurse_to_leaf)
1072 /* copy final _leaf_ values to output set */
1073 memcpy(o, c, osize*sizeof(*o));
1074
Ilya Dryomov2a4ba742013-12-24 21:19:24 +02001075 /* swap o and w arrays */
Sage Weil5ecc0a02009-10-06 11:31:11 -07001076 tmp = o;
1077 o = w;
1078 w = tmp;
1079 wsize = osize;
1080 break;
1081
1082
1083 case CRUSH_RULE_EMIT:
1084 for (i = 0; i < wsize && result_len < result_max; i++) {
1085 result[result_len] = w[i];
1086 result_len++;
1087 }
1088 wsize = 0;
1089 break;
1090
1091 default:
Sage Weila1f48952012-05-07 15:35:24 -07001092 dprintk(" unknown op %d at step %d\n",
1093 curstep->op, step);
1094 break;
Sage Weil5ecc0a02009-10-06 11:31:11 -07001095 }
1096 }
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +01001097
Sage Weilf1932fc2011-12-07 09:10:26 -08001098 return result_len;
Sage Weil5ecc0a02009-10-06 11:31:11 -07001099}