blob: 2823bb3cff55cd5a1e08a8034b43a94883758a9a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Sage Weilf24e9982009-10-06 11:31:10 -07002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/ceph/ceph_debug.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07005#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Sage Weilf24e9982009-10-06 11:31:10 -07007
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07008#include <linux/ceph/libceph.h>
9#include <linux/ceph/osdmap.h>
10#include <linux/ceph/decode.h>
11#include <linux/crush/hash.h>
12#include <linux/crush/mapper.h>
Sage Weilf24e9982009-10-06 11:31:10 -070013
Ilya Dryomov0bb05da2017-06-22 19:44:06 +020014char *ceph_osdmap_state_str(char *str, int len, u32 state)
Sage Weilf24e9982009-10-06 11:31:10 -070015{
Sage Weilf24e9982009-10-06 11:31:10 -070016 if (!len)
Cong Ding1ec39112013-01-25 17:48:59 -060017 return str;
Sage Weilf24e9982009-10-06 11:31:10 -070018
Cong Ding1ec39112013-01-25 17:48:59 -060019 if ((state & CEPH_OSD_EXISTS) && (state & CEPH_OSD_UP))
20 snprintf(str, len, "exists, up");
21 else if (state & CEPH_OSD_EXISTS)
22 snprintf(str, len, "exists");
23 else if (state & CEPH_OSD_UP)
24 snprintf(str, len, "up");
25 else
Sage Weilf24e9982009-10-06 11:31:10 -070026 snprintf(str, len, "doesn't exist");
Cong Ding1ec39112013-01-25 17:48:59 -060027
Sage Weilf24e9982009-10-06 11:31:10 -070028 return str;
29}
30
31/* maps */
32
Eric Dumazet95c96172012-04-15 05:58:06 +000033static int calc_bits_of(unsigned int t)
Sage Weilf24e9982009-10-06 11:31:10 -070034{
35 int b = 0;
36 while (t) {
37 t = t >> 1;
38 b++;
39 }
40 return b;
41}
42
43/*
44 * the foo_mask is the smallest value 2^n-1 that is >= foo.
45 */
46static void calc_pg_masks(struct ceph_pg_pool_info *pi)
47{
Sage Weil4f6a7e52013-02-23 10:41:09 -080048 pi->pg_num_mask = (1 << calc_bits_of(pi->pg_num-1)) - 1;
49 pi->pgp_num_mask = (1 << calc_bits_of(pi->pgp_num-1)) - 1;
Sage Weilf24e9982009-10-06 11:31:10 -070050}
51
52/*
53 * decode crush map
54 */
55static int crush_decode_uniform_bucket(void **p, void *end,
56 struct crush_bucket_uniform *b)
57{
58 dout("crush_decode_uniform_bucket %p to %p\n", *p, end);
59 ceph_decode_need(p, end, (1+b->h.size) * sizeof(u32), bad);
Sage Weilc89136e2009-10-14 09:59:09 -070060 b->item_weight = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -070061 return 0;
62bad:
63 return -EINVAL;
64}
65
66static int crush_decode_list_bucket(void **p, void *end,
67 struct crush_bucket_list *b)
68{
69 int j;
70 dout("crush_decode_list_bucket %p to %p\n", *p, end);
71 b->item_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
72 if (b->item_weights == NULL)
73 return -ENOMEM;
74 b->sum_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
75 if (b->sum_weights == NULL)
76 return -ENOMEM;
77 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad);
78 for (j = 0; j < b->h.size; j++) {
Sage Weilc89136e2009-10-14 09:59:09 -070079 b->item_weights[j] = ceph_decode_32(p);
80 b->sum_weights[j] = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -070081 }
82 return 0;
83bad:
84 return -EINVAL;
85}
86
87static int crush_decode_tree_bucket(void **p, void *end,
88 struct crush_bucket_tree *b)
89{
90 int j;
91 dout("crush_decode_tree_bucket %p to %p\n", *p, end);
Ilya Dryomov82cd0032015-06-29 19:30:23 +030092 ceph_decode_8_safe(p, end, b->num_nodes, bad);
Sage Weilf24e9982009-10-06 11:31:10 -070093 b->node_weights = kcalloc(b->num_nodes, sizeof(u32), GFP_NOFS);
94 if (b->node_weights == NULL)
95 return -ENOMEM;
96 ceph_decode_need(p, end, b->num_nodes * sizeof(u32), bad);
97 for (j = 0; j < b->num_nodes; j++)
Sage Weilc89136e2009-10-14 09:59:09 -070098 b->node_weights[j] = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -070099 return 0;
100bad:
101 return -EINVAL;
102}
103
104static int crush_decode_straw_bucket(void **p, void *end,
105 struct crush_bucket_straw *b)
106{
107 int j;
108 dout("crush_decode_straw_bucket %p to %p\n", *p, end);
109 b->item_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
110 if (b->item_weights == NULL)
111 return -ENOMEM;
112 b->straws = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
113 if (b->straws == NULL)
114 return -ENOMEM;
115 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad);
116 for (j = 0; j < b->h.size; j++) {
Sage Weilc89136e2009-10-14 09:59:09 -0700117 b->item_weights[j] = ceph_decode_32(p);
118 b->straws[j] = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -0700119 }
120 return 0;
121bad:
122 return -EINVAL;
123}
124
Ilya Dryomov958a2762015-04-14 16:54:52 +0300125static int crush_decode_straw2_bucket(void **p, void *end,
126 struct crush_bucket_straw2 *b)
127{
128 int j;
129 dout("crush_decode_straw2_bucket %p to %p\n", *p, end);
130 b->item_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
131 if (b->item_weights == NULL)
132 return -ENOMEM;
133 ceph_decode_need(p, end, b->h.size * sizeof(u32), bad);
134 for (j = 0; j < b->h.size; j++)
135 b->item_weights[j] = ceph_decode_32(p);
136 return 0;
137bad:
138 return -EINVAL;
139}
140
Ilya Dryomov86403a92020-05-19 17:09:52 +0200141struct crush_name_node {
142 struct rb_node cn_node;
143 int cn_id;
144 char cn_name[];
145};
146
147static struct crush_name_node *alloc_crush_name(size_t name_len)
148{
149 struct crush_name_node *cn;
150
151 cn = kmalloc(sizeof(*cn) + name_len + 1, GFP_NOIO);
152 if (!cn)
153 return NULL;
154
155 RB_CLEAR_NODE(&cn->cn_node);
156 return cn;
157}
158
159static void free_crush_name(struct crush_name_node *cn)
160{
161 WARN_ON(!RB_EMPTY_NODE(&cn->cn_node));
162
163 kfree(cn);
164}
165
166DEFINE_RB_FUNCS(crush_name, struct crush_name_node, cn_id, cn_node)
167
168static int decode_crush_names(void **p, void *end, struct rb_root *root)
169{
170 u32 n;
171
172 ceph_decode_32_safe(p, end, n, e_inval);
173 while (n--) {
174 struct crush_name_node *cn;
175 int id;
176 u32 name_len;
177
178 ceph_decode_32_safe(p, end, id, e_inval);
179 ceph_decode_32_safe(p, end, name_len, e_inval);
180 ceph_decode_need(p, end, name_len, e_inval);
181
182 cn = alloc_crush_name(name_len);
183 if (!cn)
184 return -ENOMEM;
185
186 cn->cn_id = id;
187 memcpy(cn->cn_name, *p, name_len);
188 cn->cn_name[name_len] = '\0';
189 *p += name_len;
190
191 if (!__insert_crush_name(root, cn)) {
192 free_crush_name(cn);
193 return -EEXIST;
194 }
195 }
196
197 return 0;
198
199e_inval:
200 return -EINVAL;
201}
202
203void clear_crush_names(struct rb_root *root)
204{
205 while (!RB_EMPTY_ROOT(root)) {
206 struct crush_name_node *cn =
207 rb_entry(rb_first(root), struct crush_name_node, cn_node);
208
209 erase_crush_name(root, cn);
210 free_crush_name(cn);
211 }
212}
213
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +0200214static struct crush_choose_arg_map *alloc_choose_arg_map(void)
215{
216 struct crush_choose_arg_map *arg_map;
217
218 arg_map = kzalloc(sizeof(*arg_map), GFP_NOIO);
219 if (!arg_map)
220 return NULL;
221
222 RB_CLEAR_NODE(&arg_map->node);
223 return arg_map;
224}
225
226static void free_choose_arg_map(struct crush_choose_arg_map *arg_map)
227{
228 if (arg_map) {
229 int i, j;
230
231 WARN_ON(!RB_EMPTY_NODE(&arg_map->node));
232
233 for (i = 0; i < arg_map->size; i++) {
234 struct crush_choose_arg *arg = &arg_map->args[i];
235
236 for (j = 0; j < arg->weight_set_size; j++)
237 kfree(arg->weight_set[j].weights);
238 kfree(arg->weight_set);
239 kfree(arg->ids);
240 }
241 kfree(arg_map->args);
242 kfree(arg_map);
243 }
244}
245
246DEFINE_RB_FUNCS(choose_arg_map, struct crush_choose_arg_map, choose_args_index,
247 node);
248
249void clear_choose_args(struct crush_map *c)
250{
251 while (!RB_EMPTY_ROOT(&c->choose_args)) {
252 struct crush_choose_arg_map *arg_map =
253 rb_entry(rb_first(&c->choose_args),
254 struct crush_choose_arg_map, node);
255
256 erase_choose_arg_map(&c->choose_args, arg_map);
257 free_choose_arg_map(arg_map);
258 }
259}
260
261static u32 *decode_array_32_alloc(void **p, void *end, u32 *plen)
262{
263 u32 *a = NULL;
264 u32 len;
265 int ret;
266
267 ceph_decode_32_safe(p, end, len, e_inval);
268 if (len) {
269 u32 i;
270
271 a = kmalloc_array(len, sizeof(u32), GFP_NOIO);
272 if (!a) {
273 ret = -ENOMEM;
274 goto fail;
275 }
276
277 ceph_decode_need(p, end, len * sizeof(u32), e_inval);
278 for (i = 0; i < len; i++)
279 a[i] = ceph_decode_32(p);
280 }
281
282 *plen = len;
283 return a;
284
285e_inval:
286 ret = -EINVAL;
287fail:
288 kfree(a);
289 return ERR_PTR(ret);
290}
291
292/*
293 * Assumes @arg is zero-initialized.
294 */
295static int decode_choose_arg(void **p, void *end, struct crush_choose_arg *arg)
296{
297 int ret;
298
299 ceph_decode_32_safe(p, end, arg->weight_set_size, e_inval);
300 if (arg->weight_set_size) {
301 u32 i;
302
303 arg->weight_set = kmalloc_array(arg->weight_set_size,
304 sizeof(*arg->weight_set),
305 GFP_NOIO);
306 if (!arg->weight_set)
307 return -ENOMEM;
308
309 for (i = 0; i < arg->weight_set_size; i++) {
310 struct crush_weight_set *w = &arg->weight_set[i];
311
312 w->weights = decode_array_32_alloc(p, end, &w->size);
313 if (IS_ERR(w->weights)) {
314 ret = PTR_ERR(w->weights);
315 w->weights = NULL;
316 return ret;
317 }
318 }
319 }
320
321 arg->ids = decode_array_32_alloc(p, end, &arg->ids_size);
322 if (IS_ERR(arg->ids)) {
323 ret = PTR_ERR(arg->ids);
324 arg->ids = NULL;
325 return ret;
326 }
327
328 return 0;
329
330e_inval:
331 return -EINVAL;
332}
333
334static int decode_choose_args(void **p, void *end, struct crush_map *c)
335{
336 struct crush_choose_arg_map *arg_map = NULL;
337 u32 num_choose_arg_maps, num_buckets;
338 int ret;
339
340 ceph_decode_32_safe(p, end, num_choose_arg_maps, e_inval);
341 while (num_choose_arg_maps--) {
342 arg_map = alloc_choose_arg_map();
343 if (!arg_map) {
344 ret = -ENOMEM;
345 goto fail;
346 }
347
348 ceph_decode_64_safe(p, end, arg_map->choose_args_index,
349 e_inval);
350 arg_map->size = c->max_buckets;
351 arg_map->args = kcalloc(arg_map->size, sizeof(*arg_map->args),
352 GFP_NOIO);
353 if (!arg_map->args) {
354 ret = -ENOMEM;
355 goto fail;
356 }
357
358 ceph_decode_32_safe(p, end, num_buckets, e_inval);
359 while (num_buckets--) {
360 struct crush_choose_arg *arg;
361 u32 bucket_index;
362
363 ceph_decode_32_safe(p, end, bucket_index, e_inval);
364 if (bucket_index >= arg_map->size)
365 goto e_inval;
366
367 arg = &arg_map->args[bucket_index];
368 ret = decode_choose_arg(p, end, arg);
369 if (ret)
370 goto fail;
Ilya Dryomovc7ed1a42017-07-24 15:49:52 +0200371
372 if (arg->ids_size &&
373 arg->ids_size != c->buckets[bucket_index]->size)
374 goto e_inval;
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +0200375 }
376
377 insert_choose_arg_map(&c->choose_args, arg_map);
378 }
379
380 return 0;
381
382e_inval:
383 ret = -EINVAL;
384fail:
385 free_choose_arg_map(arg_map);
386 return ret;
387}
388
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100389static void crush_finalize(struct crush_map *c)
390{
391 __s32 b;
392
393 /* Space for the array of pointers to per-bucket workspace */
394 c->working_size = sizeof(struct crush_work) +
395 c->max_buckets * sizeof(struct crush_work_bucket *);
396
397 for (b = 0; b < c->max_buckets; b++) {
398 if (!c->buckets[b])
399 continue;
400
401 switch (c->buckets[b]->alg) {
402 default:
403 /*
404 * The base case, permutation variables and
405 * the pointer to the permutation array.
406 */
407 c->working_size += sizeof(struct crush_work_bucket);
408 break;
409 }
410 /* Every bucket has a permutation array. */
411 c->working_size += c->buckets[b]->size * sizeof(__u32);
412 }
413}
414
Sage Weilf24e9982009-10-06 11:31:10 -0700415static struct crush_map *crush_decode(void *pbyval, void *end)
416{
417 struct crush_map *c;
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200418 int err;
Sage Weilf24e9982009-10-06 11:31:10 -0700419 int i, j;
420 void **p = &pbyval;
421 void *start = pbyval;
422 u32 magic;
423
424 dout("crush_decode %p to %p len %d\n", *p, end, (int)(end - *p));
425
426 c = kzalloc(sizeof(*c), GFP_NOFS);
427 if (c == NULL)
428 return ERR_PTR(-ENOMEM);
429
Ilya Dryomov86403a92020-05-19 17:09:52 +0200430 c->type_names = RB_ROOT;
431 c->names = RB_ROOT;
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +0200432 c->choose_args = RB_ROOT;
433
Sage Weil546f04e2012-07-30 18:15:23 -0700434 /* set tunables to default values */
435 c->choose_local_tries = 2;
436 c->choose_local_fallback_tries = 5;
437 c->choose_total_tries = 19;
Jim Schutt1604f482012-11-30 09:15:25 -0700438 c->chooseleaf_descend_once = 0;
Sage Weil546f04e2012-07-30 18:15:23 -0700439
Sage Weilf24e9982009-10-06 11:31:10 -0700440 ceph_decode_need(p, end, 4*sizeof(u32), bad);
Sage Weilc89136e2009-10-14 09:59:09 -0700441 magic = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -0700442 if (magic != CRUSH_MAGIC) {
443 pr_err("crush_decode magic %x != current %x\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000444 (unsigned int)magic, (unsigned int)CRUSH_MAGIC);
Sage Weilf24e9982009-10-06 11:31:10 -0700445 goto bad;
446 }
Sage Weilc89136e2009-10-14 09:59:09 -0700447 c->max_buckets = ceph_decode_32(p);
448 c->max_rules = ceph_decode_32(p);
449 c->max_devices = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -0700450
Sage Weilf24e9982009-10-06 11:31:10 -0700451 c->buckets = kcalloc(c->max_buckets, sizeof(*c->buckets), GFP_NOFS);
452 if (c->buckets == NULL)
453 goto badmem;
454 c->rules = kcalloc(c->max_rules, sizeof(*c->rules), GFP_NOFS);
455 if (c->rules == NULL)
456 goto badmem;
457
458 /* buckets */
459 for (i = 0; i < c->max_buckets; i++) {
460 int size = 0;
461 u32 alg;
462 struct crush_bucket *b;
463
464 ceph_decode_32_safe(p, end, alg, bad);
465 if (alg == 0) {
466 c->buckets[i] = NULL;
467 continue;
468 }
469 dout("crush_decode bucket %d off %x %p to %p\n",
470 i, (int)(*p-start), *p, end);
471
472 switch (alg) {
473 case CRUSH_BUCKET_UNIFORM:
474 size = sizeof(struct crush_bucket_uniform);
475 break;
476 case CRUSH_BUCKET_LIST:
477 size = sizeof(struct crush_bucket_list);
478 break;
479 case CRUSH_BUCKET_TREE:
480 size = sizeof(struct crush_bucket_tree);
481 break;
482 case CRUSH_BUCKET_STRAW:
483 size = sizeof(struct crush_bucket_straw);
484 break;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300485 case CRUSH_BUCKET_STRAW2:
486 size = sizeof(struct crush_bucket_straw2);
487 break;
Sage Weilf24e9982009-10-06 11:31:10 -0700488 default:
489 goto bad;
490 }
491 BUG_ON(size == 0);
492 b = c->buckets[i] = kzalloc(size, GFP_NOFS);
493 if (b == NULL)
494 goto badmem;
495
496 ceph_decode_need(p, end, 4*sizeof(u32), bad);
Sage Weilc89136e2009-10-14 09:59:09 -0700497 b->id = ceph_decode_32(p);
498 b->type = ceph_decode_16(p);
Sage Weilfb690392009-11-07 20:18:22 -0800499 b->alg = ceph_decode_8(p);
500 b->hash = ceph_decode_8(p);
Sage Weilc89136e2009-10-14 09:59:09 -0700501 b->weight = ceph_decode_32(p);
502 b->size = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -0700503
504 dout("crush_decode bucket size %d off %x %p to %p\n",
505 b->size, (int)(*p-start), *p, end);
506
507 b->items = kcalloc(b->size, sizeof(__s32), GFP_NOFS);
508 if (b->items == NULL)
509 goto badmem;
Sage Weilf24e9982009-10-06 11:31:10 -0700510
511 ceph_decode_need(p, end, b->size*sizeof(u32), bad);
512 for (j = 0; j < b->size; j++)
Sage Weilc89136e2009-10-14 09:59:09 -0700513 b->items[j] = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -0700514
515 switch (b->alg) {
516 case CRUSH_BUCKET_UNIFORM:
517 err = crush_decode_uniform_bucket(p, end,
518 (struct crush_bucket_uniform *)b);
519 if (err < 0)
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200520 goto fail;
Sage Weilf24e9982009-10-06 11:31:10 -0700521 break;
522 case CRUSH_BUCKET_LIST:
523 err = crush_decode_list_bucket(p, end,
524 (struct crush_bucket_list *)b);
525 if (err < 0)
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200526 goto fail;
Sage Weilf24e9982009-10-06 11:31:10 -0700527 break;
528 case CRUSH_BUCKET_TREE:
529 err = crush_decode_tree_bucket(p, end,
530 (struct crush_bucket_tree *)b);
531 if (err < 0)
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200532 goto fail;
Sage Weilf24e9982009-10-06 11:31:10 -0700533 break;
534 case CRUSH_BUCKET_STRAW:
535 err = crush_decode_straw_bucket(p, end,
536 (struct crush_bucket_straw *)b);
537 if (err < 0)
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200538 goto fail;
Sage Weilf24e9982009-10-06 11:31:10 -0700539 break;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300540 case CRUSH_BUCKET_STRAW2:
541 err = crush_decode_straw2_bucket(p, end,
542 (struct crush_bucket_straw2 *)b);
543 if (err < 0)
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200544 goto fail;
Ilya Dryomov958a2762015-04-14 16:54:52 +0300545 break;
Sage Weilf24e9982009-10-06 11:31:10 -0700546 }
547 }
548
549 /* rules */
550 dout("rule vec is %p\n", c->rules);
551 for (i = 0; i < c->max_rules; i++) {
552 u32 yes;
553 struct crush_rule *r;
554
555 ceph_decode_32_safe(p, end, yes, bad);
556 if (!yes) {
557 dout("crush_decode NO rule %d off %x %p to %p\n",
558 i, (int)(*p-start), *p, end);
559 c->rules[i] = NULL;
560 continue;
561 }
562
563 dout("crush_decode rule %d off %x %p to %p\n",
564 i, (int)(*p-start), *p, end);
565
566 /* len */
567 ceph_decode_32_safe(p, end, yes, bad);
568#if BITS_PER_LONG == 32
Xi Wang64486692012-02-16 11:55:48 -0500569 if (yes > (ULONG_MAX - sizeof(*r))
570 / sizeof(struct crush_rule_step))
Sage Weilf24e9982009-10-06 11:31:10 -0700571 goto bad;
572#endif
Gustavo A. R. Silva6b41d4d2019-01-15 13:41:53 -0600573 r = kmalloc(struct_size(r, steps, yes), GFP_NOFS);
574 c->rules[i] = r;
Sage Weilf24e9982009-10-06 11:31:10 -0700575 if (r == NULL)
576 goto badmem;
577 dout(" rule %d is at %p\n", i, r);
578 r->len = yes;
579 ceph_decode_copy_safe(p, end, &r->mask, 4, bad); /* 4 u8's */
580 ceph_decode_need(p, end, r->len*3*sizeof(u32), bad);
581 for (j = 0; j < r->len; j++) {
Sage Weilc89136e2009-10-14 09:59:09 -0700582 r->steps[j].op = ceph_decode_32(p);
583 r->steps[j].arg1 = ceph_decode_32(p);
584 r->steps[j].arg2 = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -0700585 }
586 }
587
Ilya Dryomov86403a92020-05-19 17:09:52 +0200588 err = decode_crush_names(p, end, &c->type_names);
589 if (err)
590 goto fail;
591
592 err = decode_crush_names(p, end, &c->names);
593 if (err)
594 goto fail;
595
Ilya Dryomov278b1d702017-06-21 17:27:17 +0200596 ceph_decode_skip_map(p, end, 32, string, bad); /* rule_name_map */
Sage Weilf24e9982009-10-06 11:31:10 -0700597
Sage Weil546f04e2012-07-30 18:15:23 -0700598 /* tunables */
599 ceph_decode_need(p, end, 3*sizeof(u32), done);
600 c->choose_local_tries = ceph_decode_32(p);
601 c->choose_local_fallback_tries = ceph_decode_32(p);
602 c->choose_total_tries = ceph_decode_32(p);
Ilya Dryomovb9b519b2016-02-01 16:57:16 +0100603 dout("crush decode tunable choose_local_tries = %d\n",
Sage Weil546f04e2012-07-30 18:15:23 -0700604 c->choose_local_tries);
Ilya Dryomovb9b519b2016-02-01 16:57:16 +0100605 dout("crush decode tunable choose_local_fallback_tries = %d\n",
Sage Weil546f04e2012-07-30 18:15:23 -0700606 c->choose_local_fallback_tries);
Ilya Dryomovb9b519b2016-02-01 16:57:16 +0100607 dout("crush decode tunable choose_total_tries = %d\n",
Sage Weil546f04e2012-07-30 18:15:23 -0700608 c->choose_total_tries);
609
Jim Schutt1604f482012-11-30 09:15:25 -0700610 ceph_decode_need(p, end, sizeof(u32), done);
611 c->chooseleaf_descend_once = ceph_decode_32(p);
Ilya Dryomovb9b519b2016-02-01 16:57:16 +0100612 dout("crush decode tunable chooseleaf_descend_once = %d\n",
Jim Schutt1604f482012-11-30 09:15:25 -0700613 c->chooseleaf_descend_once);
614
Ilya Dryomovf1406622014-05-09 18:27:34 +0400615 ceph_decode_need(p, end, sizeof(u8), done);
616 c->chooseleaf_vary_r = ceph_decode_8(p);
Ilya Dryomovb9b519b2016-02-01 16:57:16 +0100617 dout("crush decode tunable chooseleaf_vary_r = %d\n",
Ilya Dryomovf1406622014-05-09 18:27:34 +0400618 c->chooseleaf_vary_r);
619
Ilya Dryomovb9b519b2016-02-01 16:57:16 +0100620 /* skip straw_calc_version, allowed_bucket_algs */
621 ceph_decode_need(p, end, sizeof(u8) + sizeof(u32), done);
622 *p += sizeof(u8) + sizeof(u32);
623
624 ceph_decode_need(p, end, sizeof(u8), done);
625 c->chooseleaf_stable = ceph_decode_8(p);
626 dout("crush decode tunable chooseleaf_stable = %d\n",
627 c->chooseleaf_stable);
628
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +0200629 if (*p != end) {
630 /* class_map */
631 ceph_decode_skip_map(p, end, 32, 32, bad);
632 /* class_name */
633 ceph_decode_skip_map(p, end, 32, string, bad);
634 /* class_bucket */
635 ceph_decode_skip_map_of_map(p, end, 32, 32, 32, bad);
636 }
637
638 if (*p != end) {
639 err = decode_choose_args(p, end, c);
640 if (err)
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200641 goto fail;
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +0200642 }
643
Sage Weil546f04e2012-07-30 18:15:23 -0700644done:
Ilya Dryomov9afd30d2017-02-28 18:53:53 +0100645 crush_finalize(c);
Sage Weilf24e9982009-10-06 11:31:10 -0700646 dout("crush_decode success\n");
647 return c;
648
649badmem:
650 err = -ENOMEM;
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200651fail:
Sage Weilf24e9982009-10-06 11:31:10 -0700652 dout("crush_decode fail %d\n", err);
653 crush_destroy(c);
654 return ERR_PTR(err);
Ilya Dryomovc2acfd92017-07-13 15:57:26 +0200655
656bad:
657 err = -EINVAL;
658 goto fail;
Sage Weilf24e9982009-10-06 11:31:10 -0700659}
660
Ilya Dryomovf984cb72016-04-28 16:07:23 +0200661int ceph_pg_compare(const struct ceph_pg *lhs, const struct ceph_pg *rhs)
662{
663 if (lhs->pool < rhs->pool)
664 return -1;
665 if (lhs->pool > rhs->pool)
666 return 1;
667 if (lhs->seed < rhs->seed)
668 return -1;
669 if (lhs->seed > rhs->seed)
670 return 1;
671
672 return 0;
673}
674
Ilya Dryomova02a9462017-06-19 12:18:05 +0200675int ceph_spg_compare(const struct ceph_spg *lhs, const struct ceph_spg *rhs)
676{
677 int ret;
678
679 ret = ceph_pg_compare(&lhs->pgid, &rhs->pgid);
680 if (ret)
681 return ret;
682
683 if (lhs->shard < rhs->shard)
684 return -1;
685 if (lhs->shard > rhs->shard)
686 return 1;
687
688 return 0;
689}
690
Ilya Dryomova303bb02017-06-21 17:27:17 +0200691static struct ceph_pg_mapping *alloc_pg_mapping(size_t payload_len)
692{
693 struct ceph_pg_mapping *pg;
694
695 pg = kmalloc(sizeof(*pg) + payload_len, GFP_NOIO);
696 if (!pg)
697 return NULL;
698
699 RB_CLEAR_NODE(&pg->node);
700 return pg;
701}
702
703static void free_pg_mapping(struct ceph_pg_mapping *pg)
704{
705 WARN_ON(!RB_EMPTY_NODE(&pg->node));
706
707 kfree(pg);
708}
709
Sage Weilf24e9982009-10-06 11:31:10 -0700710/*
Sage Weil9794b142010-02-16 15:53:32 -0800711 * rbtree of pg_mapping for handling pg_temp (explicit mapping of pgid
Ilya Dryomov9686f942014-03-21 19:05:29 +0200712 * to a set of osds) and primary_temp (explicit primary setting)
Sage Weilf24e9982009-10-06 11:31:10 -0700713 */
Ilya Dryomovab751442017-06-21 17:27:17 +0200714DEFINE_RB_FUNCS2(pg_mapping, struct ceph_pg_mapping, pgid, ceph_pg_compare,
715 RB_BYPTR, const struct ceph_pg *, node)
Sage Weil8adc8b32011-09-28 10:11:04 -0700716
Sage Weilf24e9982009-10-06 11:31:10 -0700717/*
Sage Weil4fc51be2010-02-16 15:55:03 -0800718 * rbtree of pg pool info
719 */
Ilya Dryomov8a4b8632020-05-19 16:46:47 +0200720DEFINE_RB_FUNCS(pg_pool, struct ceph_pg_pool_info, id, node)
Sage Weil4fc51be2010-02-16 15:55:03 -0800721
Ilya Dryomovce7f6a22014-01-27 17:40:19 +0200722struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map, u64 id)
723{
Ilya Dryomov8a4b8632020-05-19 16:46:47 +0200724 return lookup_pg_pool(&map->pg_pools, id);
Ilya Dryomovce7f6a22014-01-27 17:40:19 +0200725}
726
Alex Elder72afc712012-10-30 19:40:33 -0500727const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id)
728{
729 struct ceph_pg_pool_info *pi;
730
731 if (id == CEPH_NOPOOL)
732 return NULL;
733
734 if (WARN_ON_ONCE(id > (u64) INT_MAX))
735 return NULL;
736
Ilya Dryomov8a4b8632020-05-19 16:46:47 +0200737 pi = lookup_pg_pool(&map->pg_pools, id);
Alex Elder72afc712012-10-30 19:40:33 -0500738 return pi ? pi->name : NULL;
739}
740EXPORT_SYMBOL(ceph_pg_pool_name_by_id);
741
Yehuda Sadeh7669a2c2010-05-17 12:31:35 -0700742int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name)
743{
744 struct rb_node *rbp;
745
746 for (rbp = rb_first(&map->pg_pools); rbp; rbp = rb_next(rbp)) {
747 struct ceph_pg_pool_info *pi =
748 rb_entry(rbp, struct ceph_pg_pool_info, node);
749 if (pi->name && strcmp(pi->name, name) == 0)
750 return pi->id;
751 }
752 return -ENOENT;
753}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700754EXPORT_SYMBOL(ceph_pg_poolid_by_name);
Yehuda Sadeh7669a2c2010-05-17 12:31:35 -0700755
Ilya Dryomov76142092020-03-09 12:03:14 +0100756u64 ceph_pg_pool_flags(struct ceph_osdmap *map, u64 id)
757{
758 struct ceph_pg_pool_info *pi;
759
Ilya Dryomov8a4b8632020-05-19 16:46:47 +0200760 pi = lookup_pg_pool(&map->pg_pools, id);
Ilya Dryomov76142092020-03-09 12:03:14 +0100761 return pi ? pi->flags : 0;
762}
763EXPORT_SYMBOL(ceph_pg_pool_flags);
764
Sage Weil2844a762010-04-09 15:46:42 -0700765static void __remove_pg_pool(struct rb_root *root, struct ceph_pg_pool_info *pi)
766{
Ilya Dryomov8a4b8632020-05-19 16:46:47 +0200767 erase_pg_pool(root, pi);
Sage Weil2844a762010-04-09 15:46:42 -0700768 kfree(pi->name);
769 kfree(pi);
770}
771
Ilya Dryomov0f70c7e2014-03-21 19:05:27 +0200772static int decode_pool(void **p, void *end, struct ceph_pg_pool_info *pi)
Sage Weilefd75762010-03-17 10:05:28 -0700773{
Sage Weil4f6a7e52013-02-23 10:41:09 -0800774 u8 ev, cv;
775 unsigned len, num;
776 void *pool_end;
Sage Weil73a7e692010-08-02 11:00:55 -0700777
Sage Weil4f6a7e52013-02-23 10:41:09 -0800778 ceph_decode_need(p, end, 2 + 4, bad);
779 ev = ceph_decode_8(p); /* encoding version */
780 cv = ceph_decode_8(p); /* compat version */
781 if (ev < 5) {
Joe Perchesb9a67892014-09-09 21:17:29 -0700782 pr_warn("got v %d < 5 cv %d of ceph_pg_pool\n", ev, cv);
Sage Weil4f6a7e52013-02-23 10:41:09 -0800783 return -EINVAL;
784 }
Ilya Dryomov17a13e402014-01-27 17:40:19 +0200785 if (cv > 9) {
Joe Perchesb9a67892014-09-09 21:17:29 -0700786 pr_warn("got v %d cv %d > 9 of ceph_pg_pool\n", ev, cv);
Sage Weil4f6a7e52013-02-23 10:41:09 -0800787 return -EINVAL;
788 }
789 len = ceph_decode_32(p);
790 ceph_decode_need(p, end, len, bad);
791 pool_end = *p + len;
Sage Weil73a7e692010-08-02 11:00:55 -0700792
Sage Weil4f6a7e52013-02-23 10:41:09 -0800793 pi->type = ceph_decode_8(p);
794 pi->size = ceph_decode_8(p);
795 pi->crush_ruleset = ceph_decode_8(p);
796 pi->object_hash = ceph_decode_8(p);
797
798 pi->pg_num = ceph_decode_32(p);
799 pi->pgp_num = ceph_decode_32(p);
800
801 *p += 4 + 4; /* skip lpg* */
802 *p += 4; /* skip last_change */
803 *p += 8 + 4; /* skip snap_seq, snap_epoch */
804
805 /* skip snaps */
806 num = ceph_decode_32(p);
807 while (num--) {
808 *p += 8; /* snapid key */
809 *p += 1 + 1; /* versions */
810 len = ceph_decode_32(p);
811 *p += len;
Sage Weil73a7e692010-08-02 11:00:55 -0700812 }
813
Ilya Dryomov17a13e402014-01-27 17:40:19 +0200814 /* skip removed_snaps */
Sage Weil4f6a7e52013-02-23 10:41:09 -0800815 num = ceph_decode_32(p);
816 *p += num * (8 + 8);
817
818 *p += 8; /* skip auid */
819 pi->flags = ceph_decode_64(p);
Ilya Dryomov17a13e402014-01-27 17:40:19 +0200820 *p += 4; /* skip crash_replay_interval */
821
822 if (ev >= 7)
Ilya Dryomov04812ac2016-04-28 16:07:23 +0200823 pi->min_size = ceph_decode_8(p);
824 else
825 pi->min_size = pi->size - pi->size / 2;
Ilya Dryomov17a13e402014-01-27 17:40:19 +0200826
827 if (ev >= 8)
828 *p += 8 + 8; /* skip quota_max_* */
829
830 if (ev >= 9) {
831 /* skip tiers */
832 num = ceph_decode_32(p);
833 *p += num * 8;
834
835 *p += 8; /* skip tier_of */
836 *p += 1; /* skip cache_mode */
837
838 pi->read_tier = ceph_decode_64(p);
839 pi->write_tier = ceph_decode_64(p);
840 } else {
841 pi->read_tier = -1;
842 pi->write_tier = -1;
843 }
Sage Weil4f6a7e52013-02-23 10:41:09 -0800844
Ilya Dryomov04812ac2016-04-28 16:07:23 +0200845 if (ev >= 10) {
846 /* skip properties */
847 num = ceph_decode_32(p);
848 while (num--) {
849 len = ceph_decode_32(p);
850 *p += len; /* key */
851 len = ceph_decode_32(p);
852 *p += len; /* val */
853 }
854 }
855
856 if (ev >= 11) {
857 /* skip hit_set_params */
858 *p += 1 + 1; /* versions */
859 len = ceph_decode_32(p);
860 *p += len;
861
862 *p += 4; /* skip hit_set_period */
863 *p += 4; /* skip hit_set_count */
864 }
865
866 if (ev >= 12)
867 *p += 4; /* skip stripe_width */
868
869 if (ev >= 13) {
870 *p += 8; /* skip target_max_bytes */
871 *p += 8; /* skip target_max_objects */
872 *p += 4; /* skip cache_target_dirty_ratio_micro */
873 *p += 4; /* skip cache_target_full_ratio_micro */
874 *p += 4; /* skip cache_min_flush_age */
875 *p += 4; /* skip cache_min_evict_age */
876 }
877
878 if (ev >= 14) {
879 /* skip erasure_code_profile */
880 len = ceph_decode_32(p);
881 *p += len;
882 }
883
Ilya Dryomov8e48cf02017-06-05 14:45:00 +0200884 /*
885 * last_force_op_resend_preluminous, will be overridden if the
886 * map was encoded with RESEND_ON_SPLIT
887 */
Ilya Dryomov04812ac2016-04-28 16:07:23 +0200888 if (ev >= 15)
889 pi->last_force_request_resend = ceph_decode_32(p);
890 else
891 pi->last_force_request_resend = 0;
892
Ilya Dryomov8e48cf02017-06-05 14:45:00 +0200893 if (ev >= 16)
894 *p += 4; /* skip min_read_recency_for_promote */
895
896 if (ev >= 17)
897 *p += 8; /* skip expected_num_objects */
898
899 if (ev >= 19)
900 *p += 4; /* skip cache_target_dirty_high_ratio_micro */
901
902 if (ev >= 20)
903 *p += 4; /* skip min_write_recency_for_promote */
904
905 if (ev >= 21)
906 *p += 1; /* skip use_gmt_hitset */
907
908 if (ev >= 22)
909 *p += 1; /* skip fast_read */
910
911 if (ev >= 23) {
912 *p += 4; /* skip hit_set_grade_decay_rate */
913 *p += 4; /* skip hit_set_search_last_n */
914 }
915
916 if (ev >= 24) {
917 /* skip opts */
918 *p += 1 + 1; /* versions */
919 len = ceph_decode_32(p);
920 *p += len;
921 }
922
923 if (ev >= 25)
924 pi->last_force_request_resend = ceph_decode_32(p);
925
Sage Weil4f6a7e52013-02-23 10:41:09 -0800926 /* ignore the rest */
927
928 *p = pool_end;
929 calc_pg_masks(pi);
Sage Weil73a7e692010-08-02 11:00:55 -0700930 return 0;
931
932bad:
933 return -EINVAL;
Sage Weilefd75762010-03-17 10:05:28 -0700934}
935
Ilya Dryomov0f70c7e2014-03-21 19:05:27 +0200936static int decode_pool_names(void **p, void *end, struct ceph_osdmap *map)
Sage Weil2844a762010-04-09 15:46:42 -0700937{
938 struct ceph_pg_pool_info *pi;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800939 u32 num, len;
940 u64 pool;
Sage Weil2844a762010-04-09 15:46:42 -0700941
942 ceph_decode_32_safe(p, end, num, bad);
943 dout(" %d pool names\n", num);
944 while (num--) {
Sage Weil4f6a7e52013-02-23 10:41:09 -0800945 ceph_decode_64_safe(p, end, pool, bad);
Sage Weil2844a762010-04-09 15:46:42 -0700946 ceph_decode_32_safe(p, end, len, bad);
Sage Weil4f6a7e52013-02-23 10:41:09 -0800947 dout(" pool %llu len %d\n", pool, len);
Xi Wangad3b9042012-06-06 19:35:55 -0500948 ceph_decode_need(p, end, len, bad);
Ilya Dryomov8a4b8632020-05-19 16:46:47 +0200949 pi = lookup_pg_pool(&map->pg_pools, pool);
Sage Weil2844a762010-04-09 15:46:42 -0700950 if (pi) {
Xi Wangad3b9042012-06-06 19:35:55 -0500951 char *name = kstrndup(*p, len, GFP_NOFS);
952
953 if (!name)
954 return -ENOMEM;
Sage Weil2844a762010-04-09 15:46:42 -0700955 kfree(pi->name);
Xi Wangad3b9042012-06-06 19:35:55 -0500956 pi->name = name;
957 dout(" name is %s\n", pi->name);
Sage Weil2844a762010-04-09 15:46:42 -0700958 }
959 *p += len;
960 }
961 return 0;
962
963bad:
964 return -EINVAL;
965}
966
967/*
Ilya Dryomov3986f9a2020-08-17 13:45:04 +0200968 * CRUSH workspaces
969 *
970 * workspace_manager framework borrowed from fs/btrfs/compression.c.
971 * Two simplifications: there is only one type of workspace and there
972 * is always at least one workspace.
973 */
974static struct crush_work *alloc_workspace(const struct crush_map *c)
975{
976 struct crush_work *work;
977 size_t work_size;
978
979 WARN_ON(!c->working_size);
980 work_size = crush_work_size(c, CEPH_PG_MAX_SIZE);
981 dout("%s work_size %zu bytes\n", __func__, work_size);
982
Michal Hockoa421ef32022-01-14 14:07:07 -0800983 work = kvmalloc(work_size, GFP_NOIO);
Ilya Dryomov3986f9a2020-08-17 13:45:04 +0200984 if (!work)
985 return NULL;
986
987 INIT_LIST_HEAD(&work->item);
988 crush_init_workspace(c, work);
989 return work;
990}
991
992static void free_workspace(struct crush_work *work)
993{
994 WARN_ON(!list_empty(&work->item));
995 kvfree(work);
996}
997
998static void init_workspace_manager(struct workspace_manager *wsm)
999{
1000 INIT_LIST_HEAD(&wsm->idle_ws);
1001 spin_lock_init(&wsm->ws_lock);
1002 atomic_set(&wsm->total_ws, 0);
1003 wsm->free_ws = 0;
1004 init_waitqueue_head(&wsm->ws_wait);
1005}
1006
1007static void add_initial_workspace(struct workspace_manager *wsm,
1008 struct crush_work *work)
1009{
1010 WARN_ON(!list_empty(&wsm->idle_ws));
1011
1012 list_add(&work->item, &wsm->idle_ws);
1013 atomic_set(&wsm->total_ws, 1);
1014 wsm->free_ws = 1;
1015}
1016
1017static void cleanup_workspace_manager(struct workspace_manager *wsm)
1018{
1019 struct crush_work *work;
1020
1021 while (!list_empty(&wsm->idle_ws)) {
1022 work = list_first_entry(&wsm->idle_ws, struct crush_work,
1023 item);
1024 list_del_init(&work->item);
1025 free_workspace(work);
1026 }
1027 atomic_set(&wsm->total_ws, 0);
1028 wsm->free_ws = 0;
1029}
1030
1031/*
1032 * Finds an available workspace or allocates a new one. If it's not
1033 * possible to allocate a new one, waits until there is one.
1034 */
1035static struct crush_work *get_workspace(struct workspace_manager *wsm,
1036 const struct crush_map *c)
1037{
1038 struct crush_work *work;
1039 int cpus = num_online_cpus();
1040
1041again:
1042 spin_lock(&wsm->ws_lock);
1043 if (!list_empty(&wsm->idle_ws)) {
1044 work = list_first_entry(&wsm->idle_ws, struct crush_work,
1045 item);
1046 list_del_init(&work->item);
1047 wsm->free_ws--;
1048 spin_unlock(&wsm->ws_lock);
1049 return work;
1050
1051 }
1052 if (atomic_read(&wsm->total_ws) > cpus) {
1053 DEFINE_WAIT(wait);
1054
1055 spin_unlock(&wsm->ws_lock);
1056 prepare_to_wait(&wsm->ws_wait, &wait, TASK_UNINTERRUPTIBLE);
1057 if (atomic_read(&wsm->total_ws) > cpus && !wsm->free_ws)
1058 schedule();
1059 finish_wait(&wsm->ws_wait, &wait);
1060 goto again;
1061 }
1062 atomic_inc(&wsm->total_ws);
1063 spin_unlock(&wsm->ws_lock);
1064
1065 work = alloc_workspace(c);
1066 if (!work) {
1067 atomic_dec(&wsm->total_ws);
1068 wake_up(&wsm->ws_wait);
1069
1070 /*
1071 * Do not return the error but go back to waiting. We
Lu Wei3f9143f2021-03-25 14:38:21 +08001072 * have the initial workspace and the CRUSH computation
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001073 * time is bounded so we will get it eventually.
1074 */
1075 WARN_ON(atomic_read(&wsm->total_ws) < 1);
1076 goto again;
1077 }
1078 return work;
1079}
1080
1081/*
1082 * Puts a workspace back on the list or frees it if we have enough
1083 * idle ones sitting around.
1084 */
1085static void put_workspace(struct workspace_manager *wsm,
1086 struct crush_work *work)
1087{
1088 spin_lock(&wsm->ws_lock);
1089 if (wsm->free_ws <= num_online_cpus()) {
1090 list_add(&work->item, &wsm->idle_ws);
1091 wsm->free_ws++;
1092 spin_unlock(&wsm->ws_lock);
1093 goto wake;
1094 }
1095 spin_unlock(&wsm->ws_lock);
1096
1097 free_workspace(work);
1098 atomic_dec(&wsm->total_ws);
1099wake:
1100 if (wq_has_sleeper(&wsm->ws_wait))
1101 wake_up(&wsm->ws_wait);
1102}
1103
1104/*
Sage Weil2844a762010-04-09 15:46:42 -07001105 * osd map
1106 */
Ilya Dryomove5253a72016-04-28 16:07:25 +02001107struct ceph_osdmap *ceph_osdmap_alloc(void)
1108{
1109 struct ceph_osdmap *map;
1110
1111 map = kzalloc(sizeof(*map), GFP_NOIO);
1112 if (!map)
1113 return NULL;
1114
1115 map->pg_pools = RB_ROOT;
1116 map->pool_max = -1;
1117 map->pg_temp = RB_ROOT;
1118 map->primary_temp = RB_ROOT;
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001119 map->pg_upmap = RB_ROOT;
1120 map->pg_upmap_items = RB_ROOT;
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001121
1122 init_workspace_manager(&map->crush_wsm);
Ilya Dryomove5253a72016-04-28 16:07:25 +02001123
1124 return map;
1125}
1126
Sage Weil2844a762010-04-09 15:46:42 -07001127void ceph_osdmap_destroy(struct ceph_osdmap *map)
1128{
1129 dout("osdmap_destroy %p\n", map);
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001130
Sage Weil2844a762010-04-09 15:46:42 -07001131 if (map->crush)
1132 crush_destroy(map->crush);
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001133 cleanup_workspace_manager(&map->crush_wsm);
1134
Sage Weil2844a762010-04-09 15:46:42 -07001135 while (!RB_EMPTY_ROOT(&map->pg_temp)) {
1136 struct ceph_pg_mapping *pg =
1137 rb_entry(rb_first(&map->pg_temp),
1138 struct ceph_pg_mapping, node);
Ilya Dryomovab751442017-06-21 17:27:17 +02001139 erase_pg_mapping(&map->pg_temp, pg);
1140 free_pg_mapping(pg);
Sage Weil2844a762010-04-09 15:46:42 -07001141 }
Ilya Dryomov9686f942014-03-21 19:05:29 +02001142 while (!RB_EMPTY_ROOT(&map->primary_temp)) {
1143 struct ceph_pg_mapping *pg =
1144 rb_entry(rb_first(&map->primary_temp),
1145 struct ceph_pg_mapping, node);
Ilya Dryomovab751442017-06-21 17:27:17 +02001146 erase_pg_mapping(&map->primary_temp, pg);
1147 free_pg_mapping(pg);
Ilya Dryomov9686f942014-03-21 19:05:29 +02001148 }
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001149 while (!RB_EMPTY_ROOT(&map->pg_upmap)) {
1150 struct ceph_pg_mapping *pg =
1151 rb_entry(rb_first(&map->pg_upmap),
1152 struct ceph_pg_mapping, node);
1153 rb_erase(&pg->node, &map->pg_upmap);
1154 kfree(pg);
1155 }
1156 while (!RB_EMPTY_ROOT(&map->pg_upmap_items)) {
1157 struct ceph_pg_mapping *pg =
1158 rb_entry(rb_first(&map->pg_upmap_items),
1159 struct ceph_pg_mapping, node);
1160 rb_erase(&pg->node, &map->pg_upmap_items);
1161 kfree(pg);
1162 }
Sage Weil2844a762010-04-09 15:46:42 -07001163 while (!RB_EMPTY_ROOT(&map->pg_pools)) {
1164 struct ceph_pg_pool_info *pi =
1165 rb_entry(rb_first(&map->pg_pools),
1166 struct ceph_pg_pool_info, node);
1167 __remove_pg_pool(&map->pg_pools, pi);
1168 }
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001169 kvfree(map->osd_state);
1170 kvfree(map->osd_weight);
1171 kvfree(map->osd_addr);
1172 kvfree(map->osd_primary_affinity);
Sage Weil2844a762010-04-09 15:46:42 -07001173 kfree(map);
1174}
1175
1176/*
Ilya Dryomov4d603512014-03-21 19:05:28 +02001177 * Adjust max_osd value, (re)allocate arrays.
1178 *
1179 * The new elements are properly initialized.
Sage Weil2844a762010-04-09 15:46:42 -07001180 */
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001181static int osdmap_set_max_osd(struct ceph_osdmap *map, u32 max)
Sage Weil2844a762010-04-09 15:46:42 -07001182{
Ilya Dryomov0bb05da2017-06-22 19:44:06 +02001183 u32 *state;
Sage Weil2844a762010-04-09 15:46:42 -07001184 u32 *weight;
Ilya Dryomov4d603512014-03-21 19:05:28 +02001185 struct ceph_entity_addr *addr;
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001186 u32 to_copy;
Ilya Dryomov4d603512014-03-21 19:05:28 +02001187 int i;
Sage Weil2844a762010-04-09 15:46:42 -07001188
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001189 dout("%s old %u new %u\n", __func__, map->max_osd, max);
1190 if (max == map->max_osd)
1191 return 0;
1192
Michal Hockoa421ef32022-01-14 14:07:07 -08001193 state = kvmalloc(array_size(max, sizeof(*state)), GFP_NOFS);
1194 weight = kvmalloc(array_size(max, sizeof(*weight)), GFP_NOFS);
1195 addr = kvmalloc(array_size(max, sizeof(*addr)), GFP_NOFS);
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001196 if (!state || !weight || !addr) {
1197 kvfree(state);
1198 kvfree(weight);
1199 kvfree(addr);
Sage Weil2844a762010-04-09 15:46:42 -07001200 return -ENOMEM;
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001201 }
1202
1203 to_copy = min(map->max_osd, max);
1204 if (map->osd_state) {
1205 memcpy(state, map->osd_state, to_copy * sizeof(*state));
1206 memcpy(weight, map->osd_weight, to_copy * sizeof(*weight));
1207 memcpy(addr, map->osd_addr, to_copy * sizeof(*addr));
1208 kvfree(map->osd_state);
1209 kvfree(map->osd_weight);
1210 kvfree(map->osd_addr);
1211 }
1212
Li RongQing589506f2014-09-07 18:10:51 +08001213 map->osd_state = state;
Li RongQing589506f2014-09-07 18:10:51 +08001214 map->osd_weight = weight;
Li RongQing589506f2014-09-07 18:10:51 +08001215 map->osd_addr = addr;
Ilya Dryomov4d603512014-03-21 19:05:28 +02001216 for (i = map->max_osd; i < max; i++) {
Li RongQing589506f2014-09-07 18:10:51 +08001217 map->osd_state[i] = 0;
1218 map->osd_weight[i] = CEPH_OSD_OUT;
1219 memset(map->osd_addr + i, 0, sizeof(*map->osd_addr));
Sage Weil2844a762010-04-09 15:46:42 -07001220 }
1221
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +02001222 if (map->osd_primary_affinity) {
1223 u32 *affinity;
1224
Michal Hockoa421ef32022-01-14 14:07:07 -08001225 affinity = kvmalloc(array_size(max, sizeof(*affinity)),
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001226 GFP_NOFS);
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +02001227 if (!affinity)
1228 return -ENOMEM;
1229
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001230 memcpy(affinity, map->osd_primary_affinity,
1231 to_copy * sizeof(*affinity));
1232 kvfree(map->osd_primary_affinity);
1233
1234 map->osd_primary_affinity = affinity;
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +02001235 for (i = map->max_osd; i < max; i++)
Li RongQing589506f2014-09-07 18:10:51 +08001236 map->osd_primary_affinity[i] =
1237 CEPH_OSD_DEFAULT_PRIMARY_AFFINITY;
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +02001238 }
1239
Sage Weil2844a762010-04-09 15:46:42 -07001240 map->max_osd = max;
Ilya Dryomov4d603512014-03-21 19:05:28 +02001241
Sage Weil2844a762010-04-09 15:46:42 -07001242 return 0;
1243}
1244
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001245static int osdmap_set_crush(struct ceph_osdmap *map, struct crush_map *crush)
1246{
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001247 struct crush_work *work;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +01001248
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001249 if (IS_ERR(crush))
1250 return PTR_ERR(crush);
1251
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001252 work = alloc_workspace(crush);
1253 if (!work) {
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +01001254 crush_destroy(crush);
1255 return -ENOMEM;
1256 }
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +01001257
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001258 if (map->crush)
1259 crush_destroy(map->crush);
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001260 cleanup_workspace_manager(&map->crush_wsm);
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001261 map->crush = crush;
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02001262 add_initial_workspace(&map->crush_wsm, work);
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001263 return 0;
1264}
1265
Ilya Dryomovec7af972014-03-21 19:05:29 +02001266#define OSDMAP_WRAPPER_COMPAT_VER 7
1267#define OSDMAP_CLIENT_DATA_COMPAT_VER 1
1268
1269/*
1270 * Return 0 or error. On success, *v is set to 0 for old (v6) osdmaps,
1271 * to struct_v of the client_data section for new (v7 and above)
1272 * osdmaps.
1273 */
1274static int get_osdmap_client_data_v(void **p, void *end,
1275 const char *prefix, u8 *v)
1276{
1277 u8 struct_v;
1278
1279 ceph_decode_8_safe(p, end, struct_v, e_inval);
1280 if (struct_v >= 7) {
1281 u8 struct_compat;
1282
1283 ceph_decode_8_safe(p, end, struct_compat, e_inval);
1284 if (struct_compat > OSDMAP_WRAPPER_COMPAT_VER) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001285 pr_warn("got v %d cv %d > %d of %s ceph_osdmap\n",
1286 struct_v, struct_compat,
1287 OSDMAP_WRAPPER_COMPAT_VER, prefix);
Ilya Dryomovec7af972014-03-21 19:05:29 +02001288 return -EINVAL;
1289 }
1290 *p += 4; /* ignore wrapper struct_len */
1291
1292 ceph_decode_8_safe(p, end, struct_v, e_inval);
1293 ceph_decode_8_safe(p, end, struct_compat, e_inval);
1294 if (struct_compat > OSDMAP_CLIENT_DATA_COMPAT_VER) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001295 pr_warn("got v %d cv %d > %d of %s ceph_osdmap client data\n",
1296 struct_v, struct_compat,
1297 OSDMAP_CLIENT_DATA_COMPAT_VER, prefix);
Ilya Dryomovec7af972014-03-21 19:05:29 +02001298 return -EINVAL;
1299 }
1300 *p += 4; /* ignore client data struct_len */
1301 } else {
1302 u16 version;
1303
1304 *p -= 1;
1305 ceph_decode_16_safe(p, end, version, e_inval);
1306 if (version < 6) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001307 pr_warn("got v %d < 6 of %s ceph_osdmap\n",
1308 version, prefix);
Ilya Dryomovec7af972014-03-21 19:05:29 +02001309 return -EINVAL;
1310 }
1311
Zheng Yongjundd0d91b2021-06-02 14:56:35 +08001312 /* old osdmap encoding */
Ilya Dryomovec7af972014-03-21 19:05:29 +02001313 struct_v = 0;
1314 }
1315
1316 *v = struct_v;
1317 return 0;
1318
1319e_inval:
1320 return -EINVAL;
1321}
1322
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02001323static int __decode_pools(void **p, void *end, struct ceph_osdmap *map,
1324 bool incremental)
1325{
1326 u32 n;
1327
1328 ceph_decode_32_safe(p, end, n, e_inval);
1329 while (n--) {
1330 struct ceph_pg_pool_info *pi;
1331 u64 pool;
1332 int ret;
1333
1334 ceph_decode_64_safe(p, end, pool, e_inval);
1335
Ilya Dryomov8a4b8632020-05-19 16:46:47 +02001336 pi = lookup_pg_pool(&map->pg_pools, pool);
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02001337 if (!incremental || !pi) {
1338 pi = kzalloc(sizeof(*pi), GFP_NOFS);
1339 if (!pi)
1340 return -ENOMEM;
1341
Ilya Dryomov8a4b8632020-05-19 16:46:47 +02001342 RB_CLEAR_NODE(&pi->node);
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02001343 pi->id = pool;
1344
Ilya Dryomov8a4b8632020-05-19 16:46:47 +02001345 if (!__insert_pg_pool(&map->pg_pools, pi)) {
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02001346 kfree(pi);
Ilya Dryomov8a4b8632020-05-19 16:46:47 +02001347 return -EEXIST;
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02001348 }
1349 }
1350
1351 ret = decode_pool(p, end, pi);
1352 if (ret)
1353 return ret;
1354 }
1355
1356 return 0;
1357
1358e_inval:
1359 return -EINVAL;
1360}
1361
1362static int decode_pools(void **p, void *end, struct ceph_osdmap *map)
1363{
1364 return __decode_pools(p, end, map, false);
1365}
1366
1367static int decode_new_pools(void **p, void *end, struct ceph_osdmap *map)
1368{
1369 return __decode_pools(p, end, map, true);
1370}
1371
Ilya Dryomova303bb02017-06-21 17:27:17 +02001372typedef struct ceph_pg_mapping *(*decode_mapping_fn_t)(void **, void *, bool);
1373
1374static int decode_pg_mapping(void **p, void *end, struct rb_root *mapping_root,
1375 decode_mapping_fn_t fn, bool incremental)
Ilya Dryomov10db6342014-03-21 19:05:28 +02001376{
1377 u32 n;
1378
Ilya Dryomova303bb02017-06-21 17:27:17 +02001379 WARN_ON(!incremental && !fn);
1380
Ilya Dryomov10db6342014-03-21 19:05:28 +02001381 ceph_decode_32_safe(p, end, n, e_inval);
1382 while (n--) {
Ilya Dryomova303bb02017-06-21 17:27:17 +02001383 struct ceph_pg_mapping *pg;
Ilya Dryomov10db6342014-03-21 19:05:28 +02001384 struct ceph_pg pgid;
Ilya Dryomov10db6342014-03-21 19:05:28 +02001385 int ret;
1386
1387 ret = ceph_decode_pgid(p, end, &pgid);
1388 if (ret)
1389 return ret;
1390
Ilya Dryomovab751442017-06-21 17:27:17 +02001391 pg = lookup_pg_mapping(mapping_root, &pgid);
1392 if (pg) {
1393 WARN_ON(!incremental);
1394 erase_pg_mapping(mapping_root, pg);
1395 free_pg_mapping(pg);
1396 }
Ilya Dryomov10db6342014-03-21 19:05:28 +02001397
Ilya Dryomova303bb02017-06-21 17:27:17 +02001398 if (fn) {
1399 pg = fn(p, end, incremental);
1400 if (IS_ERR(pg))
1401 return PTR_ERR(pg);
Ilya Dryomov10db6342014-03-21 19:05:28 +02001402
Ilya Dryomova303bb02017-06-21 17:27:17 +02001403 if (pg) {
1404 pg->pgid = pgid; /* struct */
Ilya Dryomovab751442017-06-21 17:27:17 +02001405 insert_pg_mapping(mapping_root, pg);
Ilya Dryomov10db6342014-03-21 19:05:28 +02001406 }
1407 }
1408 }
1409
1410 return 0;
1411
1412e_inval:
1413 return -EINVAL;
1414}
1415
Ilya Dryomova303bb02017-06-21 17:27:17 +02001416static struct ceph_pg_mapping *__decode_pg_temp(void **p, void *end,
1417 bool incremental)
1418{
1419 struct ceph_pg_mapping *pg;
1420 u32 len, i;
1421
1422 ceph_decode_32_safe(p, end, len, e_inval);
1423 if (len == 0 && incremental)
1424 return NULL; /* new_pg_temp: [] to remove */
1425 if (len > (SIZE_MAX - sizeof(*pg)) / sizeof(u32))
1426 return ERR_PTR(-EINVAL);
1427
1428 ceph_decode_need(p, end, len * sizeof(u32), e_inval);
1429 pg = alloc_pg_mapping(len * sizeof(u32));
1430 if (!pg)
1431 return ERR_PTR(-ENOMEM);
1432
1433 pg->pg_temp.len = len;
1434 for (i = 0; i < len; i++)
1435 pg->pg_temp.osds[i] = ceph_decode_32(p);
1436
1437 return pg;
1438
1439e_inval:
1440 return ERR_PTR(-EINVAL);
1441}
1442
Ilya Dryomov10db6342014-03-21 19:05:28 +02001443static int decode_pg_temp(void **p, void *end, struct ceph_osdmap *map)
1444{
Ilya Dryomova303bb02017-06-21 17:27:17 +02001445 return decode_pg_mapping(p, end, &map->pg_temp, __decode_pg_temp,
1446 false);
Ilya Dryomov10db6342014-03-21 19:05:28 +02001447}
1448
1449static int decode_new_pg_temp(void **p, void *end, struct ceph_osdmap *map)
1450{
Ilya Dryomova303bb02017-06-21 17:27:17 +02001451 return decode_pg_mapping(p, end, &map->pg_temp, __decode_pg_temp,
1452 true);
Ilya Dryomov10db6342014-03-21 19:05:28 +02001453}
1454
Ilya Dryomova303bb02017-06-21 17:27:17 +02001455static struct ceph_pg_mapping *__decode_primary_temp(void **p, void *end,
1456 bool incremental)
Ilya Dryomovd286de72014-03-21 19:05:30 +02001457{
Ilya Dryomova303bb02017-06-21 17:27:17 +02001458 struct ceph_pg_mapping *pg;
1459 u32 osd;
Ilya Dryomovd286de72014-03-21 19:05:30 +02001460
Ilya Dryomova303bb02017-06-21 17:27:17 +02001461 ceph_decode_32_safe(p, end, osd, e_inval);
1462 if (osd == (u32)-1 && incremental)
1463 return NULL; /* new_primary_temp: -1 to remove */
Ilya Dryomovd286de72014-03-21 19:05:30 +02001464
Ilya Dryomova303bb02017-06-21 17:27:17 +02001465 pg = alloc_pg_mapping(0);
1466 if (!pg)
1467 return ERR_PTR(-ENOMEM);
Ilya Dryomovd286de72014-03-21 19:05:30 +02001468
Ilya Dryomova303bb02017-06-21 17:27:17 +02001469 pg->primary_temp.osd = osd;
1470 return pg;
Ilya Dryomovd286de72014-03-21 19:05:30 +02001471
1472e_inval:
Ilya Dryomova303bb02017-06-21 17:27:17 +02001473 return ERR_PTR(-EINVAL);
Ilya Dryomovd286de72014-03-21 19:05:30 +02001474}
1475
1476static int decode_primary_temp(void **p, void *end, struct ceph_osdmap *map)
1477{
Ilya Dryomova303bb02017-06-21 17:27:17 +02001478 return decode_pg_mapping(p, end, &map->primary_temp,
1479 __decode_primary_temp, false);
Ilya Dryomovd286de72014-03-21 19:05:30 +02001480}
1481
1482static int decode_new_primary_temp(void **p, void *end,
1483 struct ceph_osdmap *map)
1484{
Ilya Dryomova303bb02017-06-21 17:27:17 +02001485 return decode_pg_mapping(p, end, &map->primary_temp,
1486 __decode_primary_temp, true);
Ilya Dryomovd286de72014-03-21 19:05:30 +02001487}
1488
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +02001489u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd)
1490{
1491 BUG_ON(osd >= map->max_osd);
1492
1493 if (!map->osd_primary_affinity)
1494 return CEPH_OSD_DEFAULT_PRIMARY_AFFINITY;
1495
1496 return map->osd_primary_affinity[osd];
1497}
1498
1499static int set_primary_affinity(struct ceph_osdmap *map, int osd, u32 aff)
1500{
1501 BUG_ON(osd >= map->max_osd);
1502
1503 if (!map->osd_primary_affinity) {
1504 int i;
1505
Michal Hockoa421ef32022-01-14 14:07:07 -08001506 map->osd_primary_affinity = kvmalloc(
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001507 array_size(map->max_osd, sizeof(*map->osd_primary_affinity)),
1508 GFP_NOFS);
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +02001509 if (!map->osd_primary_affinity)
1510 return -ENOMEM;
1511
1512 for (i = 0; i < map->max_osd; i++)
1513 map->osd_primary_affinity[i] =
1514 CEPH_OSD_DEFAULT_PRIMARY_AFFINITY;
1515 }
1516
1517 map->osd_primary_affinity[osd] = aff;
1518
1519 return 0;
1520}
1521
Ilya Dryomov63a69932014-03-21 19:05:30 +02001522static int decode_primary_affinity(void **p, void *end,
1523 struct ceph_osdmap *map)
1524{
1525 u32 len, i;
1526
1527 ceph_decode_32_safe(p, end, len, e_inval);
1528 if (len == 0) {
Ilya Dryomovcf73d882019-09-04 15:40:03 +02001529 kvfree(map->osd_primary_affinity);
Ilya Dryomov63a69932014-03-21 19:05:30 +02001530 map->osd_primary_affinity = NULL;
1531 return 0;
1532 }
1533 if (len != map->max_osd)
1534 goto e_inval;
1535
1536 ceph_decode_need(p, end, map->max_osd*sizeof(u32), e_inval);
1537
1538 for (i = 0; i < map->max_osd; i++) {
1539 int ret;
1540
1541 ret = set_primary_affinity(map, i, ceph_decode_32(p));
1542 if (ret)
1543 return ret;
1544 }
1545
1546 return 0;
1547
1548e_inval:
1549 return -EINVAL;
1550}
1551
1552static int decode_new_primary_affinity(void **p, void *end,
1553 struct ceph_osdmap *map)
1554{
1555 u32 n;
1556
1557 ceph_decode_32_safe(p, end, n, e_inval);
1558 while (n--) {
1559 u32 osd, aff;
1560 int ret;
1561
1562 ceph_decode_32_safe(p, end, osd, e_inval);
1563 ceph_decode_32_safe(p, end, aff, e_inval);
1564
1565 ret = set_primary_affinity(map, osd, aff);
1566 if (ret)
1567 return ret;
Ilya Dryomovf31da0f2014-04-02 20:34:04 +04001568
1569 pr_info("osd%d primary-affinity 0x%x\n", osd, aff);
Ilya Dryomov63a69932014-03-21 19:05:30 +02001570 }
1571
1572 return 0;
1573
1574e_inval:
1575 return -EINVAL;
1576}
1577
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001578static struct ceph_pg_mapping *__decode_pg_upmap(void **p, void *end,
1579 bool __unused)
1580{
1581 return __decode_pg_temp(p, end, false);
1582}
1583
1584static int decode_pg_upmap(void **p, void *end, struct ceph_osdmap *map)
1585{
1586 return decode_pg_mapping(p, end, &map->pg_upmap, __decode_pg_upmap,
1587 false);
1588}
1589
1590static int decode_new_pg_upmap(void **p, void *end, struct ceph_osdmap *map)
1591{
1592 return decode_pg_mapping(p, end, &map->pg_upmap, __decode_pg_upmap,
1593 true);
1594}
1595
1596static int decode_old_pg_upmap(void **p, void *end, struct ceph_osdmap *map)
1597{
1598 return decode_pg_mapping(p, end, &map->pg_upmap, NULL, true);
1599}
1600
1601static struct ceph_pg_mapping *__decode_pg_upmap_items(void **p, void *end,
1602 bool __unused)
1603{
1604 struct ceph_pg_mapping *pg;
1605 u32 len, i;
1606
1607 ceph_decode_32_safe(p, end, len, e_inval);
1608 if (len > (SIZE_MAX - sizeof(*pg)) / (2 * sizeof(u32)))
1609 return ERR_PTR(-EINVAL);
1610
1611 ceph_decode_need(p, end, 2 * len * sizeof(u32), e_inval);
Ilya Dryomovf5cc6892017-07-07 16:14:45 +02001612 pg = alloc_pg_mapping(2 * len * sizeof(u32));
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001613 if (!pg)
1614 return ERR_PTR(-ENOMEM);
1615
1616 pg->pg_upmap_items.len = len;
1617 for (i = 0; i < len; i++) {
1618 pg->pg_upmap_items.from_to[i][0] = ceph_decode_32(p);
1619 pg->pg_upmap_items.from_to[i][1] = ceph_decode_32(p);
1620 }
1621
1622 return pg;
1623
1624e_inval:
1625 return ERR_PTR(-EINVAL);
1626}
1627
1628static int decode_pg_upmap_items(void **p, void *end, struct ceph_osdmap *map)
1629{
1630 return decode_pg_mapping(p, end, &map->pg_upmap_items,
1631 __decode_pg_upmap_items, false);
1632}
1633
1634static int decode_new_pg_upmap_items(void **p, void *end,
1635 struct ceph_osdmap *map)
1636{
1637 return decode_pg_mapping(p, end, &map->pg_upmap_items,
1638 __decode_pg_upmap_items, true);
1639}
1640
1641static int decode_old_pg_upmap_items(void **p, void *end,
1642 struct ceph_osdmap *map)
1643{
1644 return decode_pg_mapping(p, end, &map->pg_upmap_items, NULL, true);
1645}
1646
Sage Weil4fc51be2010-02-16 15:55:03 -08001647/*
Sage Weilf24e9982009-10-06 11:31:10 -07001648 * decode a full map.
1649 */
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001650static int osdmap_decode(void **p, void *end, bool msgr2,
1651 struct ceph_osdmap *map)
Sage Weilf24e9982009-10-06 11:31:10 -07001652{
Ilya Dryomovec7af972014-03-21 19:05:29 +02001653 u8 struct_v;
Ilya Dryomov38a8d562014-03-13 16:36:13 +02001654 u32 epoch = 0;
Sage Weilf24e9982009-10-06 11:31:10 -07001655 void *start = *p;
Ilya Dryomov39770582014-03-13 16:36:14 +02001656 u32 max;
1657 u32 len, i;
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001658 int err;
Sage Weilf24e9982009-10-06 11:31:10 -07001659
Ilya Dryomova2505d62014-03-13 16:36:13 +02001660 dout("%s %p to %p len %d\n", __func__, *p, end, (int)(end - *p));
Sage Weilf24e9982009-10-06 11:31:10 -07001661
Ilya Dryomovec7af972014-03-21 19:05:29 +02001662 err = get_osdmap_client_data_v(p, end, "full", &struct_v);
1663 if (err)
1664 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07001665
Ilya Dryomov53bbaba2014-03-13 16:36:16 +02001666 /* fsid, epoch, created, modified */
1667 ceph_decode_need(p, end, sizeof(map->fsid) + sizeof(u32) +
1668 sizeof(map->created) + sizeof(map->modified), e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001669 ceph_decode_copy(p, &map->fsid, sizeof(map->fsid));
Ilya Dryomov38a8d562014-03-13 16:36:13 +02001670 epoch = map->epoch = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -07001671 ceph_decode_copy(p, &map->created, sizeof(map->created));
1672 ceph_decode_copy(p, &map->modified, sizeof(map->modified));
1673
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02001674 /* pools */
1675 err = decode_pools(p, end, map);
1676 if (err)
1677 goto bad;
Sage Weil2844a762010-04-09 15:46:42 -07001678
Ilya Dryomov0f70c7e2014-03-21 19:05:27 +02001679 /* pool_name */
1680 err = decode_pool_names(p, end, map);
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001681 if (err)
Sage Weil4f6a7e52013-02-23 10:41:09 -08001682 goto bad;
Sage Weil2844a762010-04-09 15:46:42 -07001683
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001684 ceph_decode_32_safe(p, end, map->pool_max, e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001685
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001686 ceph_decode_32_safe(p, end, map->flags, e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001687
Ilya Dryomov39770582014-03-13 16:36:14 +02001688 /* max_osd */
1689 ceph_decode_32_safe(p, end, max, e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001690
1691 /* (re)alloc osd arrays */
1692 err = osdmap_set_max_osd(map, max);
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001693 if (err)
Sage Weilf24e9982009-10-06 11:31:10 -07001694 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07001695
Ilya Dryomov2d88b2e2014-03-13 16:36:14 +02001696 /* osd_state, osd_weight, osd_addrs->client_addr */
Sage Weilf24e9982009-10-06 11:31:10 -07001697 ceph_decode_need(p, end, 3*sizeof(u32) +
Jeff Laytondcbc9192019-06-03 15:08:13 -04001698 map->max_osd*(struct_v >= 5 ? sizeof(u32) :
1699 sizeof(u8)) +
1700 sizeof(*map->osd_weight), e_inval);
Ilya Dryomov2d88b2e2014-03-13 16:36:14 +02001701 if (ceph_decode_32(p) != map->max_osd)
1702 goto e_inval;
1703
Ilya Dryomov0bb05da2017-06-22 19:44:06 +02001704 if (struct_v >= 5) {
1705 for (i = 0; i < map->max_osd; i++)
1706 map->osd_state[i] = ceph_decode_32(p);
1707 } else {
1708 for (i = 0; i < map->max_osd; i++)
1709 map->osd_state[i] = ceph_decode_8(p);
1710 }
Sage Weilf24e9982009-10-06 11:31:10 -07001711
Ilya Dryomov2d88b2e2014-03-13 16:36:14 +02001712 if (ceph_decode_32(p) != map->max_osd)
1713 goto e_inval;
1714
Sage Weilf24e9982009-10-06 11:31:10 -07001715 for (i = 0; i < map->max_osd; i++)
Sage Weilc89136e2009-10-14 09:59:09 -07001716 map->osd_weight[i] = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -07001717
Ilya Dryomov2d88b2e2014-03-13 16:36:14 +02001718 if (ceph_decode_32(p) != map->max_osd)
1719 goto e_inval;
1720
Jeff Laytondcbc9192019-06-03 15:08:13 -04001721 for (i = 0; i < map->max_osd; i++) {
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001722 struct ceph_entity_addr *addr = &map->osd_addr[i];
1723
1724 if (struct_v >= 8)
1725 err = ceph_decode_entity_addrvec(p, end, msgr2, addr);
1726 else
1727 err = ceph_decode_entity_addr(p, end, addr);
Jeff Laytondcbc9192019-06-03 15:08:13 -04001728 if (err)
1729 goto bad;
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001730
1731 dout("%s osd%d addr %s\n", __func__, i, ceph_pr_addr(addr));
Jeff Laytondcbc9192019-06-03 15:08:13 -04001732 }
Sage Weilf24e9982009-10-06 11:31:10 -07001733
1734 /* pg_temp */
Ilya Dryomov10db6342014-03-21 19:05:28 +02001735 err = decode_pg_temp(p, end, map);
1736 if (err)
1737 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07001738
Ilya Dryomovd286de72014-03-21 19:05:30 +02001739 /* primary_temp */
1740 if (struct_v >= 1) {
1741 err = decode_primary_temp(p, end, map);
1742 if (err)
1743 goto bad;
1744 }
1745
Ilya Dryomov63a69932014-03-21 19:05:30 +02001746 /* primary_affinity */
1747 if (struct_v >= 2) {
1748 err = decode_primary_affinity(p, end, map);
1749 if (err)
1750 goto bad;
1751 } else {
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001752 WARN_ON(map->osd_primary_affinity);
Ilya Dryomov63a69932014-03-21 19:05:30 +02001753 }
1754
Sage Weilf24e9982009-10-06 11:31:10 -07001755 /* crush */
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001756 ceph_decode_32_safe(p, end, len, e_inval);
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001757 err = osdmap_set_crush(map, crush_decode(*p, min(*p + len, end)));
1758 if (err)
Sage Weilf24e9982009-10-06 11:31:10 -07001759 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07001760
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001761 *p += len;
1762 if (struct_v >= 3) {
1763 /* erasure_code_profiles */
1764 ceph_decode_skip_map_of_map(p, end, string, string, string,
Dan Carpenter00c8ebb32017-07-13 10:45:17 +03001765 e_inval);
Ilya Dryomov6f428df2017-06-21 17:27:18 +02001766 }
1767
1768 if (struct_v >= 4) {
1769 err = decode_pg_upmap(p, end, map);
1770 if (err)
1771 goto bad;
1772
1773 err = decode_pg_upmap_items(p, end, map);
1774 if (err)
1775 goto bad;
1776 } else {
1777 WARN_ON(!RB_EMPTY_ROOT(&map->pg_upmap));
1778 WARN_ON(!RB_EMPTY_ROOT(&map->pg_upmap_items));
1779 }
1780
Ilya Dryomov38a8d562014-03-13 16:36:13 +02001781 /* ignore the rest */
Sage Weilf24e9982009-10-06 11:31:10 -07001782 *p = end;
1783
Ilya Dryomov38a8d562014-03-13 16:36:13 +02001784 dout("full osdmap epoch %d max_osd %d\n", map->epoch, map->max_osd);
Ilya Dryomova2505d62014-03-13 16:36:13 +02001785 return 0;
Sage Weilf24e9982009-10-06 11:31:10 -07001786
Ilya Dryomov597b52f2014-03-13 16:36:14 +02001787e_inval:
1788 err = -EINVAL;
Sage Weilf24e9982009-10-06 11:31:10 -07001789bad:
Ilya Dryomov38a8d562014-03-13 16:36:13 +02001790 pr_err("corrupt full osdmap (%d) epoch %d off %d (%p of %p-%p)\n",
1791 err, epoch, (int)(*p - start), *p, start, end);
1792 print_hex_dump(KERN_DEBUG, "osdmap: ",
1793 DUMP_PREFIX_OFFSET, 16, 1,
1794 start, end - start, true);
Ilya Dryomova2505d62014-03-13 16:36:13 +02001795 return err;
1796}
1797
1798/*
1799 * Allocate and decode a full map.
1800 */
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001801struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end, bool msgr2)
Ilya Dryomova2505d62014-03-13 16:36:13 +02001802{
1803 struct ceph_osdmap *map;
1804 int ret;
1805
Ilya Dryomove5253a72016-04-28 16:07:25 +02001806 map = ceph_osdmap_alloc();
Ilya Dryomova2505d62014-03-13 16:36:13 +02001807 if (!map)
1808 return ERR_PTR(-ENOMEM);
1809
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001810 ret = osdmap_decode(p, end, msgr2, map);
Ilya Dryomova2505d62014-03-13 16:36:13 +02001811 if (ret) {
1812 ceph_osdmap_destroy(map);
1813 return ERR_PTR(ret);
1814 }
1815
1816 return map;
Sage Weilf24e9982009-10-06 11:31:10 -07001817}
1818
1819/*
Ilya Dryomov930c5322016-07-19 03:50:28 +02001820 * Encoding order is (new_up_client, new_state, new_weight). Need to
1821 * apply in the (new_weight, new_state, new_up_client) order, because
1822 * an incremental map may look like e.g.
1823 *
1824 * new_up_client: { osd=6, addr=... } # set osd_state and addr
1825 * new_state: { osd=6, xorstate=EXISTS } # clear osd_state
1826 */
Ilya Dryomov0bb05da2017-06-22 19:44:06 +02001827static int decode_new_up_state_weight(void **p, void *end, u8 struct_v,
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001828 bool msgr2, struct ceph_osdmap *map)
Ilya Dryomov930c5322016-07-19 03:50:28 +02001829{
1830 void *new_up_client;
1831 void *new_state;
1832 void *new_weight_end;
1833 u32 len;
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001834 int ret;
Jeff Layton8cb5f2b2019-06-04 15:10:44 -04001835 int i;
Ilya Dryomov930c5322016-07-19 03:50:28 +02001836
1837 new_up_client = *p;
1838 ceph_decode_32_safe(p, end, len, e_inval);
Jeff Layton8cb5f2b2019-06-04 15:10:44 -04001839 for (i = 0; i < len; ++i) {
1840 struct ceph_entity_addr addr;
1841
1842 ceph_decode_skip_32(p, end, e_inval);
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001843 if (struct_v >= 7)
1844 ret = ceph_decode_entity_addrvec(p, end, msgr2, &addr);
1845 else
1846 ret = ceph_decode_entity_addr(p, end, &addr);
1847 if (ret)
1848 return ret;
Jeff Layton8cb5f2b2019-06-04 15:10:44 -04001849 }
Ilya Dryomov930c5322016-07-19 03:50:28 +02001850
1851 new_state = *p;
1852 ceph_decode_32_safe(p, end, len, e_inval);
Ilya Dryomov0bb05da2017-06-22 19:44:06 +02001853 len *= sizeof(u32) + (struct_v >= 5 ? sizeof(u32) : sizeof(u8));
Ilya Dryomov930c5322016-07-19 03:50:28 +02001854 ceph_decode_need(p, end, len, e_inval);
1855 *p += len;
1856
1857 /* new_weight */
1858 ceph_decode_32_safe(p, end, len, e_inval);
1859 while (len--) {
1860 s32 osd;
1861 u32 w;
1862
1863 ceph_decode_need(p, end, 2*sizeof(u32), e_inval);
1864 osd = ceph_decode_32(p);
1865 w = ceph_decode_32(p);
1866 BUG_ON(osd >= map->max_osd);
1867 pr_info("osd%d weight 0x%x %s\n", osd, w,
1868 w == CEPH_OSD_IN ? "(in)" :
1869 (w == CEPH_OSD_OUT ? "(out)" : ""));
1870 map->osd_weight[osd] = w;
1871
1872 /*
1873 * If we are marking in, set the EXISTS, and clear the
1874 * AUTOOUT and NEW bits.
1875 */
1876 if (w) {
1877 map->osd_state[osd] |= CEPH_OSD_EXISTS;
1878 map->osd_state[osd] &= ~(CEPH_OSD_AUTOOUT |
1879 CEPH_OSD_NEW);
1880 }
1881 }
1882 new_weight_end = *p;
1883
1884 /* new_state (up/down) */
1885 *p = new_state;
1886 len = ceph_decode_32(p);
1887 while (len--) {
1888 s32 osd;
Ilya Dryomov0bb05da2017-06-22 19:44:06 +02001889 u32 xorstate;
Ilya Dryomov930c5322016-07-19 03:50:28 +02001890
1891 osd = ceph_decode_32(p);
Ilya Dryomov0bb05da2017-06-22 19:44:06 +02001892 if (struct_v >= 5)
1893 xorstate = ceph_decode_32(p);
1894 else
1895 xorstate = ceph_decode_8(p);
Ilya Dryomov930c5322016-07-19 03:50:28 +02001896 if (xorstate == 0)
1897 xorstate = CEPH_OSD_UP;
1898 BUG_ON(osd >= map->max_osd);
1899 if ((map->osd_state[osd] & CEPH_OSD_UP) &&
1900 (xorstate & CEPH_OSD_UP))
1901 pr_info("osd%d down\n", osd);
1902 if ((map->osd_state[osd] & CEPH_OSD_EXISTS) &&
1903 (xorstate & CEPH_OSD_EXISTS)) {
1904 pr_info("osd%d does not exist\n", osd);
Ilya Dryomov930c5322016-07-19 03:50:28 +02001905 ret = set_primary_affinity(map, osd,
1906 CEPH_OSD_DEFAULT_PRIMARY_AFFINITY);
1907 if (ret)
1908 return ret;
1909 memset(map->osd_addr + osd, 0, sizeof(*map->osd_addr));
1910 map->osd_state[osd] = 0;
1911 } else {
1912 map->osd_state[osd] ^= xorstate;
1913 }
1914 }
1915
1916 /* new_up_client */
1917 *p = new_up_client;
1918 len = ceph_decode_32(p);
1919 while (len--) {
1920 s32 osd;
1921 struct ceph_entity_addr addr;
1922
1923 osd = ceph_decode_32(p);
Ilya Dryomov930c5322016-07-19 03:50:28 +02001924 BUG_ON(osd >= map->max_osd);
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001925 if (struct_v >= 7)
1926 ret = ceph_decode_entity_addrvec(p, end, msgr2, &addr);
1927 else
1928 ret = ceph_decode_entity_addr(p, end, &addr);
1929 if (ret)
1930 return ret;
1931
1932 dout("%s osd%d addr %s\n", __func__, osd, ceph_pr_addr(&addr));
1933
Ilya Dryomov930c5322016-07-19 03:50:28 +02001934 pr_info("osd%d up\n", osd);
1935 map->osd_state[osd] |= CEPH_OSD_EXISTS | CEPH_OSD_UP;
1936 map->osd_addr[osd] = addr;
1937 }
1938
1939 *p = new_weight_end;
1940 return 0;
1941
1942e_inval:
1943 return -EINVAL;
1944}
1945
1946/*
Sage Weilf24e9982009-10-06 11:31:10 -07001947 * decode and apply an incremental map update.
1948 */
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001949struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end, bool msgr2,
Ilya Dryomov0c0a8de2016-04-28 16:07:21 +02001950 struct ceph_osdmap *map)
Sage Weilf24e9982009-10-06 11:31:10 -07001951{
Sage Weilf24e9982009-10-06 11:31:10 -07001952 struct ceph_fsid fsid;
1953 u32 epoch = 0;
1954 struct ceph_timespec modified;
Sage Weil4f6a7e52013-02-23 10:41:09 -08001955 s32 len;
1956 u64 pool;
1957 __s64 new_pool_max;
1958 __s32 new_flags, max;
Sage Weilf24e9982009-10-06 11:31:10 -07001959 void *start = *p;
Ilya Dryomov86f17422014-03-13 16:36:15 +02001960 int err;
Ilya Dryomovec7af972014-03-21 19:05:29 +02001961 u8 struct_v;
Sage Weilf24e9982009-10-06 11:31:10 -07001962
Ilya Dryomov38a8d562014-03-13 16:36:13 +02001963 dout("%s %p to %p len %d\n", __func__, *p, end, (int)(end - *p));
1964
Ilya Dryomovec7af972014-03-21 19:05:29 +02001965 err = get_osdmap_client_data_v(p, end, "inc", &struct_v);
1966 if (err)
1967 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07001968
Ilya Dryomov53bbaba2014-03-13 16:36:16 +02001969 /* fsid, epoch, modified, new_pool_max, new_flags */
1970 ceph_decode_need(p, end, sizeof(fsid) + sizeof(u32) + sizeof(modified) +
1971 sizeof(u64) + sizeof(u32), e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001972 ceph_decode_copy(p, &fsid, sizeof(fsid));
Sage Weilc89136e2009-10-14 09:59:09 -07001973 epoch = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -07001974 BUG_ON(epoch != map->epoch+1);
1975 ceph_decode_copy(p, &modified, sizeof(modified));
Sage Weil4f6a7e52013-02-23 10:41:09 -08001976 new_pool_max = ceph_decode_64(p);
Sage Weilc89136e2009-10-14 09:59:09 -07001977 new_flags = ceph_decode_32(p);
Sage Weilf24e9982009-10-06 11:31:10 -07001978
1979 /* full map? */
Ilya Dryomov86f17422014-03-13 16:36:15 +02001980 ceph_decode_32_safe(p, end, len, e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001981 if (len > 0) {
1982 dout("apply_incremental full map len %d, %p to %p\n",
1983 len, *p, end);
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01001984 return ceph_osdmap_decode(p, min(*p+len, end), msgr2);
Sage Weilf24e9982009-10-06 11:31:10 -07001985 }
1986
1987 /* new crush? */
Ilya Dryomov86f17422014-03-13 16:36:15 +02001988 ceph_decode_32_safe(p, end, len, e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07001989 if (len > 0) {
Ilya Dryomov1b6a78b2017-01-31 15:55:06 +01001990 err = osdmap_set_crush(map,
1991 crush_decode(*p, min(*p + len, end)));
1992 if (err)
Ilya Dryomov86f17422014-03-13 16:36:15 +02001993 goto bad;
Sage Weilcebc5be2010-06-17 10:22:48 -07001994 *p += len;
Sage Weilf24e9982009-10-06 11:31:10 -07001995 }
1996
1997 /* new flags? */
1998 if (new_flags >= 0)
1999 map->flags = new_flags;
Sage Weil4fc51be2010-02-16 15:55:03 -08002000 if (new_pool_max >= 0)
2001 map->pool_max = new_pool_max;
Sage Weilf24e9982009-10-06 11:31:10 -07002002
Sage Weilf24e9982009-10-06 11:31:10 -07002003 /* new max? */
Ilya Dryomov53bbaba2014-03-13 16:36:16 +02002004 ceph_decode_32_safe(p, end, max, e_inval);
Sage Weilf24e9982009-10-06 11:31:10 -07002005 if (max >= 0) {
2006 err = osdmap_set_max_osd(map, max);
Ilya Dryomov86f17422014-03-13 16:36:15 +02002007 if (err)
Sage Weilf24e9982009-10-06 11:31:10 -07002008 goto bad;
2009 }
2010
2011 map->epoch++;
Sage Weil31456662011-05-12 15:18:43 -07002012 map->modified = modified;
Sage Weilf24e9982009-10-06 11:31:10 -07002013
Ilya Dryomov433fbdd2014-03-21 19:05:27 +02002014 /* new_pools */
2015 err = decode_new_pools(p, end, map);
2016 if (err)
2017 goto bad;
Ilya Dryomov9464d002014-03-13 16:36:16 +02002018
Ilya Dryomov0f70c7e2014-03-21 19:05:27 +02002019 /* new_pool_names */
2020 err = decode_pool_names(p, end, map);
Ilya Dryomov9464d002014-03-13 16:36:16 +02002021 if (err)
2022 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07002023
Sage Weil4fc51be2010-02-16 15:55:03 -08002024 /* old_pool */
Ilya Dryomov86f17422014-03-13 16:36:15 +02002025 ceph_decode_32_safe(p, end, len, e_inval);
Sage Weil4fc51be2010-02-16 15:55:03 -08002026 while (len--) {
2027 struct ceph_pg_pool_info *pi;
2028
Ilya Dryomov86f17422014-03-13 16:36:15 +02002029 ceph_decode_64_safe(p, end, pool, e_inval);
Ilya Dryomov8a4b8632020-05-19 16:46:47 +02002030 pi = lookup_pg_pool(&map->pg_pools, pool);
Sage Weil2844a762010-04-09 15:46:42 -07002031 if (pi)
2032 __remove_pg_pool(&map->pg_pools, pi);
Sage Weil4fc51be2010-02-16 15:55:03 -08002033 }
Sage Weilf24e9982009-10-06 11:31:10 -07002034
Ilya Dryomov930c5322016-07-19 03:50:28 +02002035 /* new_up_client, new_state, new_weight */
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +01002036 err = decode_new_up_state_weight(p, end, struct_v, msgr2, map);
Ilya Dryomov930c5322016-07-19 03:50:28 +02002037 if (err)
2038 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07002039
2040 /* new_pg_temp */
Ilya Dryomov10db6342014-03-21 19:05:28 +02002041 err = decode_new_pg_temp(p, end, map);
2042 if (err)
2043 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07002044
Ilya Dryomovd286de72014-03-21 19:05:30 +02002045 /* new_primary_temp */
2046 if (struct_v >= 1) {
2047 err = decode_new_primary_temp(p, end, map);
2048 if (err)
2049 goto bad;
2050 }
2051
Ilya Dryomov63a69932014-03-21 19:05:30 +02002052 /* new_primary_affinity */
2053 if (struct_v >= 2) {
2054 err = decode_new_primary_affinity(p, end, map);
2055 if (err)
2056 goto bad;
2057 }
2058
Ilya Dryomov6f428df2017-06-21 17:27:18 +02002059 if (struct_v >= 3) {
2060 /* new_erasure_code_profiles */
2061 ceph_decode_skip_map_of_map(p, end, string, string, string,
Dan Carpenter00c8ebb32017-07-13 10:45:17 +03002062 e_inval);
Ilya Dryomov6f428df2017-06-21 17:27:18 +02002063 /* old_erasure_code_profiles */
Dan Carpenter00c8ebb32017-07-13 10:45:17 +03002064 ceph_decode_skip_set(p, end, string, e_inval);
Ilya Dryomov6f428df2017-06-21 17:27:18 +02002065 }
2066
2067 if (struct_v >= 4) {
2068 err = decode_new_pg_upmap(p, end, map);
2069 if (err)
2070 goto bad;
2071
2072 err = decode_old_pg_upmap(p, end, map);
2073 if (err)
2074 goto bad;
2075
2076 err = decode_new_pg_upmap_items(p, end, map);
2077 if (err)
2078 goto bad;
2079
2080 err = decode_old_pg_upmap_items(p, end, map);
2081 if (err)
2082 goto bad;
2083 }
2084
Sage Weilf24e9982009-10-06 11:31:10 -07002085 /* ignore the rest */
2086 *p = end;
Ilya Dryomov38a8d562014-03-13 16:36:13 +02002087
2088 dout("inc osdmap epoch %d max_osd %d\n", map->epoch, map->max_osd);
Sage Weilf24e9982009-10-06 11:31:10 -07002089 return map;
2090
Ilya Dryomov86f17422014-03-13 16:36:15 +02002091e_inval:
2092 err = -EINVAL;
Sage Weilf24e9982009-10-06 11:31:10 -07002093bad:
Ilya Dryomov38a8d562014-03-13 16:36:13 +02002094 pr_err("corrupt inc osdmap (%d) epoch %d off %d (%p of %p-%p)\n",
2095 err, epoch, (int)(*p - start), *p, start, end);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002096 print_hex_dump(KERN_DEBUG, "osdmap: ",
2097 DUMP_PREFIX_OFFSET, 16, 1,
2098 start, end - start, true);
Sage Weilf24e9982009-10-06 11:31:10 -07002099 return ERR_PTR(err);
2100}
2101
Yan, Zheng30c156d2016-02-14 11:24:31 +08002102void ceph_oloc_copy(struct ceph_object_locator *dest,
2103 const struct ceph_object_locator *src)
2104{
Ilya Dryomovca35ffe2017-06-05 14:44:59 +02002105 ceph_oloc_destroy(dest);
Yan, Zheng30c156d2016-02-14 11:24:31 +08002106
2107 dest->pool = src->pool;
2108 if (src->pool_ns)
2109 dest->pool_ns = ceph_get_string(src->pool_ns);
Ilya Dryomovca35ffe2017-06-05 14:44:59 +02002110 else
2111 dest->pool_ns = NULL;
Yan, Zheng30c156d2016-02-14 11:24:31 +08002112}
2113EXPORT_SYMBOL(ceph_oloc_copy);
2114
2115void ceph_oloc_destroy(struct ceph_object_locator *oloc)
2116{
2117 ceph_put_string(oloc->pool_ns);
2118}
2119EXPORT_SYMBOL(ceph_oloc_destroy);
2120
Ilya Dryomovd30291b2016-04-29 19:54:20 +02002121void ceph_oid_copy(struct ceph_object_id *dest,
2122 const struct ceph_object_id *src)
2123{
Ilya Dryomovca35ffe2017-06-05 14:44:59 +02002124 ceph_oid_destroy(dest);
Sage Weilf24e9982009-10-06 11:31:10 -07002125
Ilya Dryomovd30291b2016-04-29 19:54:20 +02002126 if (src->name != src->inline_name) {
2127 /* very rare, see ceph_object_id definition */
2128 dest->name = kmalloc(src->name_len + 1,
2129 GFP_NOIO | __GFP_NOFAIL);
Ilya Dryomovca35ffe2017-06-05 14:44:59 +02002130 } else {
2131 dest->name = dest->inline_name;
Ilya Dryomovd30291b2016-04-29 19:54:20 +02002132 }
Ilya Dryomovd30291b2016-04-29 19:54:20 +02002133 memcpy(dest->name, src->name, src->name_len + 1);
2134 dest->name_len = src->name_len;
2135}
2136EXPORT_SYMBOL(ceph_oid_copy);
2137
2138static __printf(2, 0)
2139int oid_printf_vargs(struct ceph_object_id *oid, const char *fmt, va_list ap)
2140{
2141 int len;
2142
2143 WARN_ON(!ceph_oid_empty(oid));
2144
2145 len = vsnprintf(oid->inline_name, sizeof(oid->inline_name), fmt, ap);
2146 if (len >= sizeof(oid->inline_name))
2147 return len;
2148
2149 oid->name_len = len;
2150 return 0;
2151}
2152
2153/*
2154 * If oid doesn't fit into inline buffer, BUG.
2155 */
2156void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...)
2157{
2158 va_list ap;
2159
2160 va_start(ap, fmt);
2161 BUG_ON(oid_printf_vargs(oid, fmt, ap));
2162 va_end(ap);
2163}
2164EXPORT_SYMBOL(ceph_oid_printf);
2165
2166static __printf(3, 0)
2167int oid_aprintf_vargs(struct ceph_object_id *oid, gfp_t gfp,
2168 const char *fmt, va_list ap)
2169{
2170 va_list aq;
2171 int len;
2172
2173 va_copy(aq, ap);
2174 len = oid_printf_vargs(oid, fmt, aq);
2175 va_end(aq);
2176
2177 if (len) {
2178 char *external_name;
2179
2180 external_name = kmalloc(len + 1, gfp);
2181 if (!external_name)
2182 return -ENOMEM;
2183
2184 oid->name = external_name;
2185 WARN_ON(vsnprintf(oid->name, len + 1, fmt, ap) != len);
2186 oid->name_len = len;
2187 }
2188
2189 return 0;
2190}
2191
2192/*
2193 * If oid doesn't fit into inline buffer, allocate.
2194 */
2195int ceph_oid_aprintf(struct ceph_object_id *oid, gfp_t gfp,
2196 const char *fmt, ...)
2197{
2198 va_list ap;
2199 int ret;
2200
2201 va_start(ap, fmt);
2202 ret = oid_aprintf_vargs(oid, gfp, fmt, ap);
2203 va_end(ap);
2204
2205 return ret;
2206}
2207EXPORT_SYMBOL(ceph_oid_aprintf);
2208
2209void ceph_oid_destroy(struct ceph_object_id *oid)
2210{
2211 if (oid->name != oid->inline_name)
2212 kfree(oid->name);
2213}
2214EXPORT_SYMBOL(ceph_oid_destroy);
Sage Weilf24e9982009-10-06 11:31:10 -07002215
Ilya Dryomov63244fa2016-04-28 16:07:23 +02002216/*
2217 * osds only
2218 */
2219static bool __osds_equal(const struct ceph_osds *lhs,
2220 const struct ceph_osds *rhs)
2221{
2222 if (lhs->size == rhs->size &&
2223 !memcmp(lhs->osds, rhs->osds, rhs->size * sizeof(rhs->osds[0])))
2224 return true;
2225
2226 return false;
2227}
2228
2229/*
2230 * osds + primary
2231 */
2232static bool osds_equal(const struct ceph_osds *lhs,
2233 const struct ceph_osds *rhs)
2234{
2235 if (__osds_equal(lhs, rhs) &&
2236 lhs->primary == rhs->primary)
2237 return true;
2238
2239 return false;
2240}
2241
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002242static bool osds_valid(const struct ceph_osds *set)
2243{
2244 /* non-empty set */
2245 if (set->size > 0 && set->primary >= 0)
2246 return true;
2247
2248 /* empty can_shift_osds set */
2249 if (!set->size && set->primary == -1)
2250 return true;
2251
2252 /* empty !can_shift_osds set - all NONE */
2253 if (set->size > 0 && set->primary == -1) {
2254 int i;
2255
2256 for (i = 0; i < set->size; i++) {
2257 if (set->osds[i] != CRUSH_ITEM_NONE)
2258 break;
2259 }
2260 if (i == set->size)
2261 return true;
2262 }
2263
2264 return false;
2265}
2266
2267void ceph_osds_copy(struct ceph_osds *dest, const struct ceph_osds *src)
2268{
2269 memcpy(dest->osds, src->osds, src->size * sizeof(src->osds[0]));
2270 dest->size = src->size;
2271 dest->primary = src->primary;
2272}
2273
Ilya Dryomov7de030d2017-06-15 16:30:54 +02002274bool ceph_pg_is_split(const struct ceph_pg *pgid, u32 old_pg_num,
2275 u32 new_pg_num)
Ilya Dryomov63244fa2016-04-28 16:07:23 +02002276{
2277 int old_bits = calc_bits_of(old_pg_num);
2278 int old_mask = (1 << old_bits) - 1;
2279 int n;
2280
2281 WARN_ON(pgid->seed >= old_pg_num);
2282 if (new_pg_num <= old_pg_num)
2283 return false;
2284
2285 for (n = 1; ; n++) {
2286 int next_bit = n << (old_bits - 1);
2287 u32 s = next_bit | pgid->seed;
2288
2289 if (s < old_pg_num || s == pgid->seed)
2290 continue;
2291 if (s >= new_pg_num)
2292 break;
2293
2294 s = ceph_stable_mod(s, old_pg_num, old_mask);
2295 if (s == pgid->seed)
2296 return true;
2297 }
2298
2299 return false;
2300}
2301
2302bool ceph_is_new_interval(const struct ceph_osds *old_acting,
2303 const struct ceph_osds *new_acting,
2304 const struct ceph_osds *old_up,
2305 const struct ceph_osds *new_up,
2306 int old_size,
2307 int new_size,
2308 int old_min_size,
2309 int new_min_size,
2310 u32 old_pg_num,
2311 u32 new_pg_num,
2312 bool old_sort_bitwise,
2313 bool new_sort_bitwise,
Ilya Dryomovae78dd82017-07-27 17:59:14 +02002314 bool old_recovery_deletes,
2315 bool new_recovery_deletes,
Ilya Dryomov63244fa2016-04-28 16:07:23 +02002316 const struct ceph_pg *pgid)
2317{
2318 return !osds_equal(old_acting, new_acting) ||
2319 !osds_equal(old_up, new_up) ||
2320 old_size != new_size ||
2321 old_min_size != new_min_size ||
Ilya Dryomov7de030d2017-06-15 16:30:54 +02002322 ceph_pg_is_split(pgid, old_pg_num, new_pg_num) ||
Ilya Dryomovae78dd82017-07-27 17:59:14 +02002323 old_sort_bitwise != new_sort_bitwise ||
2324 old_recovery_deletes != new_recovery_deletes;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02002325}
2326
2327static int calc_pg_rank(int osd, const struct ceph_osds *acting)
2328{
2329 int i;
2330
2331 for (i = 0; i < acting->size; i++) {
2332 if (acting->osds[i] == osd)
2333 return i;
2334 }
2335
2336 return -1;
2337}
2338
2339static bool primary_changed(const struct ceph_osds *old_acting,
2340 const struct ceph_osds *new_acting)
2341{
2342 if (!old_acting->size && !new_acting->size)
2343 return false; /* both still empty */
2344
2345 if (!old_acting->size ^ !new_acting->size)
2346 return true; /* was empty, now not, or vice versa */
2347
2348 if (old_acting->primary != new_acting->primary)
2349 return true; /* primary changed */
2350
2351 if (calc_pg_rank(old_acting->primary, old_acting) !=
2352 calc_pg_rank(new_acting->primary, new_acting))
2353 return true;
2354
2355 return false; /* same primary (tho replicas may have changed) */
2356}
2357
2358bool ceph_osds_changed(const struct ceph_osds *old_acting,
2359 const struct ceph_osds *new_acting,
2360 bool any_change)
2361{
2362 if (primary_changed(old_acting, new_acting))
2363 return true;
2364
2365 if (any_change && !__osds_equal(old_acting, new_acting))
2366 return true;
2367
2368 return false;
2369}
2370
Sage Weilf24e9982009-10-06 11:31:10 -07002371/*
Ilya Dryomovd9591f52016-04-28 16:07:22 +02002372 * Map an object into a PG.
2373 *
2374 * Should only be called with target_oid and target_oloc (as opposed to
2375 * base_oid and base_oloc), since tiering isn't taken into account.
Sage Weilf24e9982009-10-06 11:31:10 -07002376 */
Ilya Dryomova86f0092018-05-23 14:46:53 +02002377void __ceph_object_locator_to_pg(struct ceph_pg_pool_info *pi,
2378 const struct ceph_object_id *oid,
2379 const struct ceph_object_locator *oloc,
2380 struct ceph_pg *raw_pgid)
Sage Weilf24e9982009-10-06 11:31:10 -07002381{
Ilya Dryomovdf281522017-06-15 16:30:56 +02002382 WARN_ON(pi->id != oloc->pool);
Sage Weilf24e9982009-10-06 11:31:10 -07002383
Yan, Zheng30c156d2016-02-14 11:24:31 +08002384 if (!oloc->pool_ns) {
2385 raw_pgid->pool = oloc->pool;
2386 raw_pgid->seed = ceph_str_hash(pi->object_hash, oid->name,
2387 oid->name_len);
2388 dout("%s %s -> raw_pgid %llu.%x\n", __func__, oid->name,
2389 raw_pgid->pool, raw_pgid->seed);
2390 } else {
2391 char stack_buf[256];
2392 char *buf = stack_buf;
2393 int nsl = oloc->pool_ns->len;
2394 size_t total = nsl + 1 + oid->name_len;
Ilya Dryomov7c13cb62014-01-27 17:40:19 +02002395
Ilya Dryomova86f0092018-05-23 14:46:53 +02002396 if (total > sizeof(stack_buf))
2397 buf = kmalloc(total, GFP_NOIO | __GFP_NOFAIL);
Yan, Zheng30c156d2016-02-14 11:24:31 +08002398 memcpy(buf, oloc->pool_ns->str, nsl);
2399 buf[nsl] = '\037';
2400 memcpy(buf + nsl + 1, oid->name, oid->name_len);
2401 raw_pgid->pool = oloc->pool;
2402 raw_pgid->seed = ceph_str_hash(pi->object_hash, buf, total);
2403 if (buf != stack_buf)
2404 kfree(buf);
2405 dout("%s %s ns %.*s -> raw_pgid %llu.%x\n", __func__,
2406 oid->name, nsl, oloc->pool_ns->str,
2407 raw_pgid->pool, raw_pgid->seed);
2408 }
Sage Weilf24e9982009-10-06 11:31:10 -07002409}
Ilya Dryomovdf281522017-06-15 16:30:56 +02002410
2411int ceph_object_locator_to_pg(struct ceph_osdmap *osdmap,
2412 const struct ceph_object_id *oid,
2413 const struct ceph_object_locator *oloc,
2414 struct ceph_pg *raw_pgid)
2415{
2416 struct ceph_pg_pool_info *pi;
2417
2418 pi = ceph_pg_pool_by_id(osdmap, oloc->pool);
2419 if (!pi)
2420 return -ENOENT;
2421
Ilya Dryomova86f0092018-05-23 14:46:53 +02002422 __ceph_object_locator_to_pg(pi, oid, oloc, raw_pgid);
2423 return 0;
Ilya Dryomovdf281522017-06-15 16:30:56 +02002424}
Ilya Dryomovd9591f52016-04-28 16:07:22 +02002425EXPORT_SYMBOL(ceph_object_locator_to_pg);
Sage Weilf24e9982009-10-06 11:31:10 -07002426
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002427/*
2428 * Map a raw PG (full precision ps) into an actual PG.
2429 */
2430static void raw_pg_to_pg(struct ceph_pg_pool_info *pi,
2431 const struct ceph_pg *raw_pgid,
2432 struct ceph_pg *pgid)
2433{
2434 pgid->pool = raw_pgid->pool;
2435 pgid->seed = ceph_stable_mod(raw_pgid->seed, pi->pg_num,
2436 pi->pg_num_mask);
2437}
2438
2439/*
2440 * Map a raw PG (full precision ps) into a placement ps (placement
2441 * seed). Include pool id in that value so that different pools don't
2442 * use the same seeds.
2443 */
2444static u32 raw_pg_to_pps(struct ceph_pg_pool_info *pi,
2445 const struct ceph_pg *raw_pgid)
2446{
2447 if (pi->flags & CEPH_POOL_FLAG_HASHPSPOOL) {
2448 /* hash pool id and seed so that pool PGs do not overlap */
2449 return crush_hash32_2(CRUSH_HASH_RJENKINS1,
2450 ceph_stable_mod(raw_pgid->seed,
2451 pi->pgp_num,
2452 pi->pgp_num_mask),
2453 raw_pgid->pool);
2454 } else {
2455 /*
2456 * legacy behavior: add ps and pool together. this is
2457 * not a great approach because the PGs from each pool
2458 * will overlap on top of each other: 0.5 == 1.4 ==
2459 * 2.3 == ...
2460 */
2461 return ceph_stable_mod(raw_pgid->seed, pi->pgp_num,
2462 pi->pgp_num_mask) +
2463 (unsigned)raw_pgid->pool;
2464 }
2465}
2466
Ilya Dryomove17e8962017-07-24 16:43:49 +02002467/*
2468 * Magic value used for a "default" fallback choose_args, used if the
2469 * crush_choose_arg_map passed to do_crush() does not exist. If this
2470 * also doesn't exist, fall back to canonical weights.
2471 */
2472#define CEPH_DEFAULT_CHOOSE_ARGS -1
2473
Ilya Dryomov9d521472014-01-31 17:54:26 +02002474static int do_crush(struct ceph_osdmap *map, int ruleno, int x,
2475 int *result, int result_max,
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +02002476 const __u32 *weight, int weight_max,
Ilya Dryomove17e8962017-07-24 16:43:49 +02002477 s64 choose_args_index)
Ilya Dryomove8ef19c2013-12-24 21:19:24 +02002478{
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +02002479 struct crush_choose_arg_map *arg_map;
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02002480 struct crush_work *work;
Ilya Dryomov9d521472014-01-31 17:54:26 +02002481 int r;
Ilya Dryomove8ef19c2013-12-24 21:19:24 +02002482
Ilya Dryomov9d521472014-01-31 17:54:26 +02002483 BUG_ON(result_max > CEPH_PG_MAX_SIZE);
2484
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +02002485 arg_map = lookup_choose_arg_map(&map->crush->choose_args,
2486 choose_args_index);
Ilya Dryomove17e8962017-07-24 16:43:49 +02002487 if (!arg_map)
2488 arg_map = lookup_choose_arg_map(&map->crush->choose_args,
2489 CEPH_DEFAULT_CHOOSE_ARGS);
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +02002490
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02002491 work = get_workspace(&map->crush_wsm, map->crush);
Ilya Dryomov9d521472014-01-31 17:54:26 +02002492 r = crush_do_rule(map->crush, ruleno, x, result, result_max,
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02002493 weight, weight_max, work,
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +02002494 arg_map ? arg_map->args : NULL);
Ilya Dryomov3986f9a2020-08-17 13:45:04 +02002495 put_workspace(&map->crush_wsm, work);
Ilya Dryomov9d521472014-01-31 17:54:26 +02002496 return r;
Ilya Dryomove8ef19c2013-12-24 21:19:24 +02002497}
2498
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002499static void remove_nonexistent_osds(struct ceph_osdmap *osdmap,
2500 struct ceph_pg_pool_info *pi,
2501 struct ceph_osds *set)
2502{
2503 int i;
2504
2505 if (ceph_can_shift_osds(pi)) {
2506 int removed = 0;
2507
2508 /* shift left */
2509 for (i = 0; i < set->size; i++) {
2510 if (!ceph_osd_exists(osdmap, set->osds[i])) {
2511 removed++;
2512 continue;
2513 }
2514 if (removed)
2515 set->osds[i - removed] = set->osds[i];
2516 }
2517 set->size -= removed;
2518 } else {
2519 /* set dne devices to NONE */
2520 for (i = 0; i < set->size; i++) {
2521 if (!ceph_osd_exists(osdmap, set->osds[i]))
2522 set->osds[i] = CRUSH_ITEM_NONE;
2523 }
2524 }
2525}
2526
Sage Weilf24e9982009-10-06 11:31:10 -07002527/*
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002528 * Calculate raw set (CRUSH output) for given PG and filter out
2529 * nonexistent OSDs. ->primary is undefined for a raw set.
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002530 *
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002531 * Placement seed (CRUSH input) is returned through @ppps.
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002532 */
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002533static void pg_to_raw_osds(struct ceph_osdmap *osdmap,
2534 struct ceph_pg_pool_info *pi,
2535 const struct ceph_pg *raw_pgid,
2536 struct ceph_osds *raw,
2537 u32 *ppps)
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002538{
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002539 u32 pps = raw_pg_to_pps(pi, raw_pgid);
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002540 int ruleno;
2541 int len;
2542
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002543 ceph_osds_init(raw);
2544 if (ppps)
2545 *ppps = pps;
2546
2547 ruleno = crush_find_rule(osdmap->crush, pi->crush_ruleset, pi->type,
2548 pi->size);
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002549 if (ruleno < 0) {
2550 pr_err("no crush rule: pool %lld ruleset %d type %d size %d\n",
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002551 pi->id, pi->crush_ruleset, pi->type, pi->size);
2552 return;
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002553 }
2554
Ilya Dryomovef9324bb2017-02-08 18:57:48 +01002555 if (pi->size > ARRAY_SIZE(raw->osds)) {
2556 pr_err_ratelimited("pool %lld ruleset %d type %d too wide: size %d > %zu\n",
2557 pi->id, pi->crush_ruleset, pi->type, pi->size,
2558 ARRAY_SIZE(raw->osds));
2559 return;
2560 }
2561
2562 len = do_crush(osdmap, ruleno, pps, raw->osds, pi->size,
Ilya Dryomov5cf9c4a2017-06-22 19:44:05 +02002563 osdmap->osd_weight, osdmap->max_osd, pi->id);
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002564 if (len < 0) {
2565 pr_err("error %d from crush rule %d: pool %lld ruleset %d type %d size %d\n",
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002566 len, ruleno, pi->id, pi->crush_ruleset, pi->type,
2567 pi->size);
2568 return;
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002569 }
2570
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002571 raw->size = len;
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002572 remove_nonexistent_osds(osdmap, pi, raw);
2573}
2574
2575/* apply pg_upmap[_items] mappings */
2576static void apply_upmap(struct ceph_osdmap *osdmap,
2577 const struct ceph_pg *pgid,
2578 struct ceph_osds *raw)
2579{
2580 struct ceph_pg_mapping *pg;
2581 int i, j;
2582
2583 pg = lookup_pg_mapping(&osdmap->pg_upmap, pgid);
2584 if (pg) {
2585 /* make sure targets aren't marked out */
2586 for (i = 0; i < pg->pg_upmap.len; i++) {
2587 int osd = pg->pg_upmap.osds[i];
2588
2589 if (osd != CRUSH_ITEM_NONE &&
2590 osd < osdmap->max_osd &&
2591 osdmap->osd_weight[osd] == 0) {
2592 /* reject/ignore explicit mapping */
2593 return;
2594 }
2595 }
2596 for (i = 0; i < pg->pg_upmap.len; i++)
2597 raw->osds[i] = pg->pg_upmap.osds[i];
2598 raw->size = pg->pg_upmap.len;
Ilya Dryomovf53b7662017-07-27 15:16:39 +02002599 /* check and apply pg_upmap_items, if any */
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002600 }
2601
2602 pg = lookup_pg_mapping(&osdmap->pg_upmap_items, pgid);
2603 if (pg) {
Ilya Dryomov29a0cfb2017-09-18 12:21:37 +02002604 /*
2605 * Note: this approach does not allow a bidirectional swap,
2606 * e.g., [[1,2],[2,1]] applied to [0,1,2] -> [0,2,1].
2607 */
2608 for (i = 0; i < pg->pg_upmap_items.len; i++) {
2609 int from = pg->pg_upmap_items.from_to[i][0];
2610 int to = pg->pg_upmap_items.from_to[i][1];
2611 int pos = -1;
2612 bool exists = false;
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002613
Ilya Dryomov29a0cfb2017-09-18 12:21:37 +02002614 /* make sure replacement doesn't already appear */
2615 for (j = 0; j < raw->size; j++) {
2616 int osd = raw->osds[j];
2617
2618 if (osd == to) {
2619 exists = true;
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002620 break;
2621 }
Ilya Dryomov29a0cfb2017-09-18 12:21:37 +02002622 /* ignore mapping if target is marked out */
2623 if (osd == from && pos < 0 &&
2624 !(to != CRUSH_ITEM_NONE &&
2625 to < osdmap->max_osd &&
2626 osdmap->osd_weight[to] == 0)) {
2627 pos = j;
2628 }
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002629 }
Ilya Dryomov29a0cfb2017-09-18 12:21:37 +02002630 if (!exists && pos >= 0)
2631 raw->osds[pos] = to;
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002632 }
2633 }
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002634}
2635
2636/*
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002637 * Given raw set, calculate up set and up primary. By definition of an
2638 * up set, the result won't contain nonexistent or down OSDs.
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002639 *
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002640 * This is done in-place - on return @set is the up set. If it's
2641 * empty, ->primary will remain undefined.
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002642 */
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002643static void raw_to_up_osds(struct ceph_osdmap *osdmap,
2644 struct ceph_pg_pool_info *pi,
2645 struct ceph_osds *set)
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002646{
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002647 int i;
2648
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002649 /* ->primary is undefined for a raw set */
2650 BUG_ON(set->primary != -1);
2651
2652 if (ceph_can_shift_osds(pi)) {
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002653 int removed = 0;
2654
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002655 /* shift left */
2656 for (i = 0; i < set->size; i++) {
2657 if (ceph_osd_is_down(osdmap, set->osds[i])) {
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002658 removed++;
2659 continue;
2660 }
2661 if (removed)
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002662 set->osds[i - removed] = set->osds[i];
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002663 }
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002664 set->size -= removed;
2665 if (set->size > 0)
2666 set->primary = set->osds[0];
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002667 } else {
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002668 /* set down/dne devices to NONE */
2669 for (i = set->size - 1; i >= 0; i--) {
2670 if (ceph_osd_is_down(osdmap, set->osds[i]))
2671 set->osds[i] = CRUSH_ITEM_NONE;
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002672 else
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002673 set->primary = set->osds[i];
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002674 }
2675 }
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002676}
2677
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002678static void apply_primary_affinity(struct ceph_osdmap *osdmap,
2679 struct ceph_pg_pool_info *pi,
2680 u32 pps,
2681 struct ceph_osds *up)
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002682{
2683 int i;
2684 int pos = -1;
2685
2686 /*
2687 * Do we have any non-default primary_affinity values for these
2688 * osds?
2689 */
2690 if (!osdmap->osd_primary_affinity)
2691 return;
2692
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002693 for (i = 0; i < up->size; i++) {
2694 int osd = up->osds[i];
Ilya Dryomov92b2e752014-04-10 18:09:41 +04002695
2696 if (osd != CRUSH_ITEM_NONE &&
2697 osdmap->osd_primary_affinity[osd] !=
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002698 CEPH_OSD_DEFAULT_PRIMARY_AFFINITY) {
2699 break;
2700 }
2701 }
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002702 if (i == up->size)
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002703 return;
2704
2705 /*
2706 * Pick the primary. Feed both the seed (for the pg) and the
2707 * osd into the hash/rng so that a proportional fraction of an
2708 * osd's pgs get rejected as primary.
2709 */
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002710 for (i = 0; i < up->size; i++) {
2711 int osd = up->osds[i];
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002712 u32 aff;
2713
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002714 if (osd == CRUSH_ITEM_NONE)
2715 continue;
2716
2717 aff = osdmap->osd_primary_affinity[osd];
2718 if (aff < CEPH_OSD_MAX_PRIMARY_AFFINITY &&
2719 (crush_hash32_2(CRUSH_HASH_RJENKINS1,
2720 pps, osd) >> 16) >= aff) {
2721 /*
2722 * We chose not to use this primary. Note it
2723 * anyway as a fallback in case we don't pick
2724 * anyone else, but keep looking.
2725 */
2726 if (pos < 0)
2727 pos = i;
2728 } else {
2729 pos = i;
2730 break;
2731 }
2732 }
2733 if (pos < 0)
2734 return;
2735
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002736 up->primary = up->osds[pos];
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002737
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002738 if (ceph_can_shift_osds(pi) && pos > 0) {
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002739 /* move the new primary to the front */
2740 for (i = pos; i > 0; i--)
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002741 up->osds[i] = up->osds[i - 1];
2742 up->osds[0] = up->primary;
Ilya Dryomov47ec1f32014-03-24 17:12:49 +02002743 }
2744}
2745
Ilya Dryomov2bd93d42014-03-24 17:12:47 +02002746/*
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002747 * Get pg_temp and primary_temp mappings for given PG.
Ilya Dryomov45966c32014-03-24 17:12:47 +02002748 *
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002749 * Note that a PG may have none, only pg_temp, only primary_temp or
2750 * both pg_temp and primary_temp mappings. This means @temp isn't
2751 * always a valid OSD set on return: in the "only primary_temp" case,
2752 * @temp will have its ->primary >= 0 but ->size == 0.
Ilya Dryomov45966c32014-03-24 17:12:47 +02002753 */
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002754static void get_temp_osds(struct ceph_osdmap *osdmap,
2755 struct ceph_pg_pool_info *pi,
Ilya Dryomov463bb8d2017-06-21 17:27:18 +02002756 const struct ceph_pg *pgid,
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002757 struct ceph_osds *temp)
Ilya Dryomov45966c32014-03-24 17:12:47 +02002758{
2759 struct ceph_pg_mapping *pg;
Ilya Dryomov45966c32014-03-24 17:12:47 +02002760 int i;
2761
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002762 ceph_osds_init(temp);
Ilya Dryomov45966c32014-03-24 17:12:47 +02002763
2764 /* pg_temp? */
Ilya Dryomov463bb8d2017-06-21 17:27:18 +02002765 pg = lookup_pg_mapping(&osdmap->pg_temp, pgid);
Ilya Dryomov45966c32014-03-24 17:12:47 +02002766 if (pg) {
Ilya Dryomov45966c32014-03-24 17:12:47 +02002767 for (i = 0; i < pg->pg_temp.len; i++) {
2768 if (ceph_osd_is_down(osdmap, pg->pg_temp.osds[i])) {
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002769 if (ceph_can_shift_osds(pi))
Ilya Dryomov45966c32014-03-24 17:12:47 +02002770 continue;
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002771
2772 temp->osds[temp->size++] = CRUSH_ITEM_NONE;
Ilya Dryomov45966c32014-03-24 17:12:47 +02002773 } else {
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002774 temp->osds[temp->size++] = pg->pg_temp.osds[i];
Ilya Dryomov45966c32014-03-24 17:12:47 +02002775 }
2776 }
2777
2778 /* apply pg_temp's primary */
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002779 for (i = 0; i < temp->size; i++) {
2780 if (temp->osds[i] != CRUSH_ITEM_NONE) {
2781 temp->primary = temp->osds[i];
Ilya Dryomov45966c32014-03-24 17:12:47 +02002782 break;
2783 }
2784 }
Ilya Dryomov45966c32014-03-24 17:12:47 +02002785 }
2786
Ilya Dryomov5e8d4d32014-03-24 17:12:48 +02002787 /* primary_temp? */
Ilya Dryomov463bb8d2017-06-21 17:27:18 +02002788 pg = lookup_pg_mapping(&osdmap->primary_temp, pgid);
Ilya Dryomov5e8d4d32014-03-24 17:12:48 +02002789 if (pg)
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002790 temp->primary = pg->primary_temp.osd;
Ilya Dryomov45966c32014-03-24 17:12:47 +02002791}
2792
2793/*
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002794 * Map a PG to its acting set as well as its up set.
Ilya Dryomovac972232014-03-24 17:12:48 +02002795 *
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002796 * Acting set is used for data mapping purposes, while up set can be
2797 * recorded for detecting interval changes and deciding whether to
2798 * resend a request.
Sage Weild85b7052010-05-10 10:24:48 -07002799 */
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002800void ceph_pg_to_up_acting_osds(struct ceph_osdmap *osdmap,
Ilya Dryomovdf281522017-06-15 16:30:56 +02002801 struct ceph_pg_pool_info *pi,
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002802 const struct ceph_pg *raw_pgid,
2803 struct ceph_osds *up,
2804 struct ceph_osds *acting)
Sage Weild85b7052010-05-10 10:24:48 -07002805{
Ilya Dryomov463bb8d2017-06-21 17:27:18 +02002806 struct ceph_pg pgid;
Ilya Dryomovac972232014-03-24 17:12:48 +02002807 u32 pps;
Sage Weild85b7052010-05-10 10:24:48 -07002808
Ilya Dryomovdf281522017-06-15 16:30:56 +02002809 WARN_ON(pi->id != raw_pgid->pool);
Ilya Dryomov463bb8d2017-06-21 17:27:18 +02002810 raw_pg_to_pg(pi, raw_pgid, &pgid);
Sage Weild85b7052010-05-10 10:24:48 -07002811
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002812 pg_to_raw_osds(osdmap, pi, raw_pgid, up, &pps);
Ilya Dryomov1c2e7b42017-06-21 17:27:18 +02002813 apply_upmap(osdmap, &pgid, up);
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002814 raw_to_up_osds(osdmap, pi, up);
2815 apply_primary_affinity(osdmap, pi, pps, up);
Ilya Dryomov463bb8d2017-06-21 17:27:18 +02002816 get_temp_osds(osdmap, pi, &pgid, acting);
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002817 if (!acting->size) {
2818 memcpy(acting->osds, up->osds, up->size * sizeof(up->osds[0]));
2819 acting->size = up->size;
2820 if (acting->primary == -1)
2821 acting->primary = up->primary;
Ilya Dryomovac972232014-03-24 17:12:48 +02002822 }
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002823 WARN_ON(!osds_valid(up) || !osds_valid(acting));
Sage Weild85b7052010-05-10 10:24:48 -07002824}
2825
Ilya Dryomovdc98ff72017-06-15 16:30:53 +02002826bool ceph_pg_to_primary_shard(struct ceph_osdmap *osdmap,
Ilya Dryomovdf281522017-06-15 16:30:56 +02002827 struct ceph_pg_pool_info *pi,
Ilya Dryomovdc98ff72017-06-15 16:30:53 +02002828 const struct ceph_pg *raw_pgid,
2829 struct ceph_spg *spgid)
2830{
Ilya Dryomovdc98ff72017-06-15 16:30:53 +02002831 struct ceph_pg pgid;
2832 struct ceph_osds up, acting;
2833 int i;
2834
Ilya Dryomovdf281522017-06-15 16:30:56 +02002835 WARN_ON(pi->id != raw_pgid->pool);
Ilya Dryomovdc98ff72017-06-15 16:30:53 +02002836 raw_pg_to_pg(pi, raw_pgid, &pgid);
2837
2838 if (ceph_can_shift_osds(pi)) {
2839 spgid->pgid = pgid; /* struct */
2840 spgid->shard = CEPH_SPG_NOSHARD;
2841 return true;
2842 }
2843
Ilya Dryomovdf281522017-06-15 16:30:56 +02002844 ceph_pg_to_up_acting_osds(osdmap, pi, &pgid, &up, &acting);
Ilya Dryomovdc98ff72017-06-15 16:30:53 +02002845 for (i = 0; i < acting.size; i++) {
2846 if (acting.osds[i] == acting.primary) {
2847 spgid->pgid = pgid; /* struct */
2848 spgid->shard = i;
2849 return true;
2850 }
2851 }
2852
2853 return false;
2854}
2855
Sage Weild85b7052010-05-10 10:24:48 -07002856/*
Ilya Dryomovf81f1632016-04-28 16:07:23 +02002857 * Return acting primary for given PG, or -1 if none.
Sage Weilf24e9982009-10-06 11:31:10 -07002858 */
Ilya Dryomovf81f1632016-04-28 16:07:23 +02002859int ceph_pg_to_acting_primary(struct ceph_osdmap *osdmap,
2860 const struct ceph_pg *raw_pgid)
Sage Weilf24e9982009-10-06 11:31:10 -07002861{
Ilya Dryomovdf281522017-06-15 16:30:56 +02002862 struct ceph_pg_pool_info *pi;
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002863 struct ceph_osds up, acting;
Sage Weilf24e9982009-10-06 11:31:10 -07002864
Ilya Dryomovdf281522017-06-15 16:30:56 +02002865 pi = ceph_pg_pool_by_id(osdmap, raw_pgid->pool);
2866 if (!pi)
2867 return -1;
2868
2869 ceph_pg_to_up_acting_osds(osdmap, pi, raw_pgid, &up, &acting);
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +02002870 return acting.primary;
Sage Weilf24e9982009-10-06 11:31:10 -07002871}
Ilya Dryomovf81f1632016-04-28 16:07:23 +02002872EXPORT_SYMBOL(ceph_pg_to_acting_primary);
Ilya Dryomov45e6aa92020-05-22 15:24:53 +02002873
2874static struct crush_loc_node *alloc_crush_loc(size_t type_name_len,
2875 size_t name_len)
2876{
2877 struct crush_loc_node *loc;
2878
2879 loc = kmalloc(sizeof(*loc) + type_name_len + name_len + 2, GFP_NOIO);
2880 if (!loc)
2881 return NULL;
2882
2883 RB_CLEAR_NODE(&loc->cl_node);
2884 return loc;
2885}
2886
2887static void free_crush_loc(struct crush_loc_node *loc)
2888{
2889 WARN_ON(!RB_EMPTY_NODE(&loc->cl_node));
2890
2891 kfree(loc);
2892}
2893
2894static int crush_loc_compare(const struct crush_loc *loc1,
2895 const struct crush_loc *loc2)
2896{
2897 return strcmp(loc1->cl_type_name, loc2->cl_type_name) ?:
2898 strcmp(loc1->cl_name, loc2->cl_name);
2899}
2900
2901DEFINE_RB_FUNCS2(crush_loc, struct crush_loc_node, cl_loc, crush_loc_compare,
2902 RB_BYPTR, const struct crush_loc *, cl_node)
2903
2904/*
2905 * Parses a set of <bucket type name>':'<bucket name> pairs separated
2906 * by '|', e.g. "rack:foo1|rack:foo2|datacenter:bar".
2907 *
2908 * Note that @crush_location is modified by strsep().
2909 */
2910int ceph_parse_crush_location(char *crush_location, struct rb_root *locs)
2911{
2912 struct crush_loc_node *loc;
2913 const char *type_name, *name, *colon;
2914 size_t type_name_len, name_len;
2915
2916 dout("%s '%s'\n", __func__, crush_location);
2917 while ((type_name = strsep(&crush_location, "|"))) {
2918 colon = strchr(type_name, ':');
2919 if (!colon)
2920 return -EINVAL;
2921
2922 type_name_len = colon - type_name;
2923 if (type_name_len == 0)
2924 return -EINVAL;
2925
2926 name = colon + 1;
2927 name_len = strlen(name);
2928 if (name_len == 0)
2929 return -EINVAL;
2930
2931 loc = alloc_crush_loc(type_name_len, name_len);
2932 if (!loc)
2933 return -ENOMEM;
2934
2935 loc->cl_loc.cl_type_name = loc->cl_data;
2936 memcpy(loc->cl_loc.cl_type_name, type_name, type_name_len);
2937 loc->cl_loc.cl_type_name[type_name_len] = '\0';
2938
2939 loc->cl_loc.cl_name = loc->cl_data + type_name_len + 1;
2940 memcpy(loc->cl_loc.cl_name, name, name_len);
2941 loc->cl_loc.cl_name[name_len] = '\0';
2942
2943 if (!__insert_crush_loc(locs, loc)) {
2944 free_crush_loc(loc);
2945 return -EEXIST;
2946 }
2947
2948 dout("%s type_name '%s' name '%s'\n", __func__,
2949 loc->cl_loc.cl_type_name, loc->cl_loc.cl_name);
2950 }
2951
2952 return 0;
2953}
2954
2955int ceph_compare_crush_locs(struct rb_root *locs1, struct rb_root *locs2)
2956{
2957 struct rb_node *n1 = rb_first(locs1);
2958 struct rb_node *n2 = rb_first(locs2);
2959 int ret;
2960
2961 for ( ; n1 && n2; n1 = rb_next(n1), n2 = rb_next(n2)) {
2962 struct crush_loc_node *loc1 =
2963 rb_entry(n1, struct crush_loc_node, cl_node);
2964 struct crush_loc_node *loc2 =
2965 rb_entry(n2, struct crush_loc_node, cl_node);
2966
2967 ret = crush_loc_compare(&loc1->cl_loc, &loc2->cl_loc);
2968 if (ret)
2969 return ret;
2970 }
2971
2972 if (!n1 && n2)
2973 return -1;
2974 if (n1 && !n2)
2975 return 1;
2976 return 0;
2977}
2978
2979void ceph_clear_crush_locs(struct rb_root *locs)
2980{
2981 while (!RB_EMPTY_ROOT(locs)) {
2982 struct crush_loc_node *loc =
2983 rb_entry(rb_first(locs), struct crush_loc_node, cl_node);
2984
2985 erase_crush_loc(locs, loc);
2986 free_crush_loc(loc);
2987 }
2988}
Ilya Dryomov117d96a2020-05-23 11:45:48 +02002989
2990/*
2991 * [a-zA-Z0-9-_.]+
2992 */
2993static bool is_valid_crush_name(const char *name)
2994{
2995 do {
2996 if (!('a' <= *name && *name <= 'z') &&
2997 !('A' <= *name && *name <= 'Z') &&
2998 !('0' <= *name && *name <= '9') &&
2999 *name != '-' && *name != '_' && *name != '.')
3000 return false;
3001 } while (*++name != '\0');
3002
3003 return true;
3004}
3005
3006/*
3007 * Gets the parent of an item. Returns its id (<0 because the
3008 * parent is always a bucket), type id (>0 for the same reason,
3009 * via @parent_type_id) and location (via @parent_loc). If no
3010 * parent, returns 0.
3011 *
3012 * Does a linear search, as there are no parent pointers of any
Zheng Yongjundd0d91b2021-06-02 14:56:35 +08003013 * kind. Note that the result is ambiguous for items that occur
Ilya Dryomov117d96a2020-05-23 11:45:48 +02003014 * multiple times in the map.
3015 */
3016static int get_immediate_parent(struct crush_map *c, int id,
3017 u16 *parent_type_id,
3018 struct crush_loc *parent_loc)
3019{
3020 struct crush_bucket *b;
3021 struct crush_name_node *type_cn, *cn;
3022 int i, j;
3023
3024 for (i = 0; i < c->max_buckets; i++) {
3025 b = c->buckets[i];
3026 if (!b)
3027 continue;
3028
3029 /* ignore per-class shadow hierarchy */
3030 cn = lookup_crush_name(&c->names, b->id);
3031 if (!cn || !is_valid_crush_name(cn->cn_name))
3032 continue;
3033
3034 for (j = 0; j < b->size; j++) {
3035 if (b->items[j] != id)
3036 continue;
3037
3038 *parent_type_id = b->type;
3039 type_cn = lookup_crush_name(&c->type_names, b->type);
3040 parent_loc->cl_type_name = type_cn->cn_name;
3041 parent_loc->cl_name = cn->cn_name;
3042 return b->id;
3043 }
3044 }
3045
3046 return 0; /* no parent */
3047}
3048
3049/*
3050 * Calculates the locality/distance from an item to a client
3051 * location expressed in terms of CRUSH hierarchy as a set of
3052 * (bucket type name, bucket name) pairs. Specifically, looks
3053 * for the lowest-valued bucket type for which the location of
3054 * @id matches one of the locations in @locs, so for standard
3055 * bucket types (host = 1, rack = 3, datacenter = 8, zone = 9)
3056 * a matching host is closer than a matching rack and a matching
3057 * data center is closer than a matching zone.
3058 *
3059 * Specifying multiple locations (a "multipath" location) such
3060 * as "rack=foo1 rack=foo2 datacenter=bar" is allowed -- @locs
3061 * is a multimap. The locality will be:
3062 *
3063 * - 3 for OSDs in racks foo1 and foo2
3064 * - 8 for OSDs in data center bar
3065 * - -1 for all other OSDs
3066 *
3067 * The lowest possible bucket type is 1, so the best locality
3068 * for an OSD is 1 (i.e. a matching host). Locality 0 would be
3069 * the OSD itself.
3070 */
3071int ceph_get_crush_locality(struct ceph_osdmap *osdmap, int id,
3072 struct rb_root *locs)
3073{
3074 struct crush_loc loc;
3075 u16 type_id;
3076
3077 /*
3078 * Instead of repeated get_immediate_parent() calls,
3079 * the location of @id could be obtained with a single
3080 * depth-first traversal.
3081 */
3082 for (;;) {
3083 id = get_immediate_parent(osdmap->crush, id, &type_id, &loc);
3084 if (id >= 0)
3085 return -1; /* not local */
3086
3087 if (lookup_crush_loc(locs, &loc))
3088 return type_id;
3089 }
3090}