libceph: primary_temp decode bits
[deliverable/linux.git] / net / ceph / osdmap.c
CommitLineData
f24e9980 1
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
5a0e3ad6 3
3d14c5d2 4#include <linux/module.h>
5a0e3ad6 5#include <linux/slab.h>
f24e9980
SW
6#include <asm/div64.h>
7
3d14c5d2
YS
8#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>
f24e9980
SW
13
14char *ceph_osdmap_state_str(char *str, int len, int state)
15{
f24e9980 16 if (!len)
1ec3911d 17 return str;
f24e9980 18
1ec3911d
CD
19 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
f24e9980 26 snprintf(str, len, "doesn't exist");
1ec3911d 27
f24e9980
SW
28 return str;
29}
30
31/* maps */
32
95c96174 33static int calc_bits_of(unsigned int t)
f24e9980
SW
34{
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{
4f6a7e5e
SW
48 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;
f24e9980
SW
50}
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);
c89136ea 60 b->item_weight = ceph_decode_32(p);
f24e9980
SW
61 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++) {
c89136ea
SW
79 b->item_weights[j] = ceph_decode_32(p);
80 b->sum_weights[j] = ceph_decode_32(p);
f24e9980
SW
81 }
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);
92 ceph_decode_32_safe(p, end, b->num_nodes, bad);
93 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++)
c89136ea 98 b->node_weights[j] = ceph_decode_32(p);
f24e9980
SW
99 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++) {
c89136ea
SW
117 b->item_weights[j] = ceph_decode_32(p);
118 b->straws[j] = ceph_decode_32(p);
f24e9980
SW
119 }
120 return 0;
121bad:
122 return -EINVAL;
123}
124
546f04ef
SW
125static int skip_name_map(void **p, void *end)
126{
127 int len;
128 ceph_decode_32_safe(p, end, len ,bad);
129 while (len--) {
130 int strlen;
131 *p += sizeof(u32);
132 ceph_decode_32_safe(p, end, strlen, bad);
133 *p += strlen;
134}
135 return 0;
136bad:
137 return -EINVAL;
138}
139
f24e9980
SW
140static struct crush_map *crush_decode(void *pbyval, void *end)
141{
142 struct crush_map *c;
143 int err = -EINVAL;
144 int i, j;
145 void **p = &pbyval;
146 void *start = pbyval;
147 u32 magic;
546f04ef 148 u32 num_name_maps;
f24e9980
SW
149
150 dout("crush_decode %p to %p len %d\n", *p, end, (int)(end - *p));
151
152 c = kzalloc(sizeof(*c), GFP_NOFS);
153 if (c == NULL)
154 return ERR_PTR(-ENOMEM);
155
546f04ef
SW
156 /* set tunables to default values */
157 c->choose_local_tries = 2;
158 c->choose_local_fallback_tries = 5;
159 c->choose_total_tries = 19;
1604f488 160 c->chooseleaf_descend_once = 0;
546f04ef 161
f24e9980 162 ceph_decode_need(p, end, 4*sizeof(u32), bad);
c89136ea 163 magic = ceph_decode_32(p);
f24e9980
SW
164 if (magic != CRUSH_MAGIC) {
165 pr_err("crush_decode magic %x != current %x\n",
95c96174 166 (unsigned int)magic, (unsigned int)CRUSH_MAGIC);
f24e9980
SW
167 goto bad;
168 }
c89136ea
SW
169 c->max_buckets = ceph_decode_32(p);
170 c->max_rules = ceph_decode_32(p);
171 c->max_devices = ceph_decode_32(p);
f24e9980 172
f24e9980
SW
173 c->buckets = kcalloc(c->max_buckets, sizeof(*c->buckets), GFP_NOFS);
174 if (c->buckets == NULL)
175 goto badmem;
176 c->rules = kcalloc(c->max_rules, sizeof(*c->rules), GFP_NOFS);
177 if (c->rules == NULL)
178 goto badmem;
179
180 /* buckets */
181 for (i = 0; i < c->max_buckets; i++) {
182 int size = 0;
183 u32 alg;
184 struct crush_bucket *b;
185
186 ceph_decode_32_safe(p, end, alg, bad);
187 if (alg == 0) {
188 c->buckets[i] = NULL;
189 continue;
190 }
191 dout("crush_decode bucket %d off %x %p to %p\n",
192 i, (int)(*p-start), *p, end);
193
194 switch (alg) {
195 case CRUSH_BUCKET_UNIFORM:
196 size = sizeof(struct crush_bucket_uniform);
197 break;
198 case CRUSH_BUCKET_LIST:
199 size = sizeof(struct crush_bucket_list);
200 break;
201 case CRUSH_BUCKET_TREE:
202 size = sizeof(struct crush_bucket_tree);
203 break;
204 case CRUSH_BUCKET_STRAW:
205 size = sizeof(struct crush_bucket_straw);
206 break;
207 default:
30dc6381 208 err = -EINVAL;
f24e9980
SW
209 goto bad;
210 }
211 BUG_ON(size == 0);
212 b = c->buckets[i] = kzalloc(size, GFP_NOFS);
213 if (b == NULL)
214 goto badmem;
215
216 ceph_decode_need(p, end, 4*sizeof(u32), bad);
c89136ea
SW
217 b->id = ceph_decode_32(p);
218 b->type = ceph_decode_16(p);
fb690390
SW
219 b->alg = ceph_decode_8(p);
220 b->hash = ceph_decode_8(p);
c89136ea
SW
221 b->weight = ceph_decode_32(p);
222 b->size = ceph_decode_32(p);
f24e9980
SW
223
224 dout("crush_decode bucket size %d off %x %p to %p\n",
225 b->size, (int)(*p-start), *p, end);
226
227 b->items = kcalloc(b->size, sizeof(__s32), GFP_NOFS);
228 if (b->items == NULL)
229 goto badmem;
230 b->perm = kcalloc(b->size, sizeof(u32), GFP_NOFS);
231 if (b->perm == NULL)
232 goto badmem;
233 b->perm_n = 0;
234
235 ceph_decode_need(p, end, b->size*sizeof(u32), bad);
236 for (j = 0; j < b->size; j++)
c89136ea 237 b->items[j] = ceph_decode_32(p);
f24e9980
SW
238
239 switch (b->alg) {
240 case CRUSH_BUCKET_UNIFORM:
241 err = crush_decode_uniform_bucket(p, end,
242 (struct crush_bucket_uniform *)b);
243 if (err < 0)
244 goto bad;
245 break;
246 case CRUSH_BUCKET_LIST:
247 err = crush_decode_list_bucket(p, end,
248 (struct crush_bucket_list *)b);
249 if (err < 0)
250 goto bad;
251 break;
252 case CRUSH_BUCKET_TREE:
253 err = crush_decode_tree_bucket(p, end,
254 (struct crush_bucket_tree *)b);
255 if (err < 0)
256 goto bad;
257 break;
258 case CRUSH_BUCKET_STRAW:
259 err = crush_decode_straw_bucket(p, end,
260 (struct crush_bucket_straw *)b);
261 if (err < 0)
262 goto bad;
263 break;
264 }
265 }
266
267 /* rules */
268 dout("rule vec is %p\n", c->rules);
269 for (i = 0; i < c->max_rules; i++) {
270 u32 yes;
271 struct crush_rule *r;
272
273 ceph_decode_32_safe(p, end, yes, bad);
274 if (!yes) {
275 dout("crush_decode NO rule %d off %x %p to %p\n",
276 i, (int)(*p-start), *p, end);
277 c->rules[i] = NULL;
278 continue;
279 }
280
281 dout("crush_decode rule %d off %x %p to %p\n",
282 i, (int)(*p-start), *p, end);
283
284 /* len */
285 ceph_decode_32_safe(p, end, yes, bad);
286#if BITS_PER_LONG == 32
30dc6381 287 err = -EINVAL;
64486697
XW
288 if (yes > (ULONG_MAX - sizeof(*r))
289 / sizeof(struct crush_rule_step))
f24e9980
SW
290 goto bad;
291#endif
292 r = c->rules[i] = kmalloc(sizeof(*r) +
293 yes*sizeof(struct crush_rule_step),
294 GFP_NOFS);
295 if (r == NULL)
296 goto badmem;
297 dout(" rule %d is at %p\n", i, r);
298 r->len = yes;
299 ceph_decode_copy_safe(p, end, &r->mask, 4, bad); /* 4 u8's */
300 ceph_decode_need(p, end, r->len*3*sizeof(u32), bad);
301 for (j = 0; j < r->len; j++) {
c89136ea
SW
302 r->steps[j].op = ceph_decode_32(p);
303 r->steps[j].arg1 = ceph_decode_32(p);
304 r->steps[j].arg2 = ceph_decode_32(p);
f24e9980
SW
305 }
306 }
307
308 /* ignore trailing name maps. */
546f04ef
SW
309 for (num_name_maps = 0; num_name_maps < 3; num_name_maps++) {
310 err = skip_name_map(p, end);
311 if (err < 0)
312 goto done;
313 }
314
315 /* tunables */
316 ceph_decode_need(p, end, 3*sizeof(u32), done);
317 c->choose_local_tries = ceph_decode_32(p);
318 c->choose_local_fallback_tries = ceph_decode_32(p);
319 c->choose_total_tries = ceph_decode_32(p);
320 dout("crush decode tunable choose_local_tries = %d",
321 c->choose_local_tries);
322 dout("crush decode tunable choose_local_fallback_tries = %d",
323 c->choose_local_fallback_tries);
324 dout("crush decode tunable choose_total_tries = %d",
325 c->choose_total_tries);
f24e9980 326
1604f488
JS
327 ceph_decode_need(p, end, sizeof(u32), done);
328 c->chooseleaf_descend_once = ceph_decode_32(p);
329 dout("crush decode tunable chooseleaf_descend_once = %d",
330 c->chooseleaf_descend_once);
331
546f04ef 332done:
f24e9980
SW
333 dout("crush_decode success\n");
334 return c;
335
336badmem:
337 err = -ENOMEM;
338bad:
339 dout("crush_decode fail %d\n", err);
340 crush_destroy(c);
341 return ERR_PTR(err);
342}
343
f24e9980 344/*
9794b146 345 * rbtree of pg_mapping for handling pg_temp (explicit mapping of pgid
9686f94c 346 * to a set of osds) and primary_temp (explicit primary setting)
f24e9980 347 */
5b191d99 348static int pgid_cmp(struct ceph_pg l, struct ceph_pg r)
51042122 349{
5b191d99
SW
350 if (l.pool < r.pool)
351 return -1;
352 if (l.pool > r.pool)
353 return 1;
354 if (l.seed < r.seed)
51042122 355 return -1;
5b191d99 356 if (l.seed > r.seed)
51042122
SW
357 return 1;
358 return 0;
359}
360
991abb6e
SW
361static int __insert_pg_mapping(struct ceph_pg_mapping *new,
362 struct rb_root *root)
f24e9980
SW
363{
364 struct rb_node **p = &root->rb_node;
365 struct rb_node *parent = NULL;
366 struct ceph_pg_mapping *pg = NULL;
51042122 367 int c;
f24e9980 368
8adc8b3d 369 dout("__insert_pg_mapping %llx %p\n", *(u64 *)&new->pgid, new);
f24e9980
SW
370 while (*p) {
371 parent = *p;
372 pg = rb_entry(parent, struct ceph_pg_mapping, node);
51042122
SW
373 c = pgid_cmp(new->pgid, pg->pgid);
374 if (c < 0)
f24e9980 375 p = &(*p)->rb_left;
51042122 376 else if (c > 0)
f24e9980
SW
377 p = &(*p)->rb_right;
378 else
991abb6e 379 return -EEXIST;
f24e9980
SW
380 }
381
382 rb_link_node(&new->node, parent, p);
383 rb_insert_color(&new->node, root);
991abb6e 384 return 0;
f24e9980
SW
385}
386
9794b146 387static struct ceph_pg_mapping *__lookup_pg_mapping(struct rb_root *root,
5b191d99 388 struct ceph_pg pgid)
9794b146
SW
389{
390 struct rb_node *n = root->rb_node;
391 struct ceph_pg_mapping *pg;
392 int c;
393
394 while (n) {
395 pg = rb_entry(n, struct ceph_pg_mapping, node);
396 c = pgid_cmp(pgid, pg->pgid);
8adc8b3d 397 if (c < 0) {
9794b146 398 n = n->rb_left;
8adc8b3d 399 } else if (c > 0) {
9794b146 400 n = n->rb_right;
8adc8b3d 401 } else {
5b191d99
SW
402 dout("__lookup_pg_mapping %lld.%x got %p\n",
403 pgid.pool, pgid.seed, pg);
9794b146 404 return pg;
8adc8b3d 405 }
9794b146
SW
406 }
407 return NULL;
408}
409
5b191d99 410static int __remove_pg_mapping(struct rb_root *root, struct ceph_pg pgid)
8adc8b3d
SW
411{
412 struct ceph_pg_mapping *pg = __lookup_pg_mapping(root, pgid);
413
414 if (pg) {
5b191d99
SW
415 dout("__remove_pg_mapping %lld.%x %p\n", pgid.pool, pgid.seed,
416 pg);
8adc8b3d
SW
417 rb_erase(&pg->node, root);
418 kfree(pg);
419 return 0;
420 }
5b191d99 421 dout("__remove_pg_mapping %lld.%x dne\n", pgid.pool, pgid.seed);
8adc8b3d
SW
422 return -ENOENT;
423}
424
4fc51be8
SW
425/*
426 * rbtree of pg pool info
427 */
428static int __insert_pg_pool(struct rb_root *root, struct ceph_pg_pool_info *new)
429{
430 struct rb_node **p = &root->rb_node;
431 struct rb_node *parent = NULL;
432 struct ceph_pg_pool_info *pi = NULL;
433
434 while (*p) {
435 parent = *p;
436 pi = rb_entry(parent, struct ceph_pg_pool_info, node);
437 if (new->id < pi->id)
438 p = &(*p)->rb_left;
439 else if (new->id > pi->id)
440 p = &(*p)->rb_right;
441 else
442 return -EEXIST;
443 }
444
445 rb_link_node(&new->node, parent, p);
446 rb_insert_color(&new->node, root);
447 return 0;
448}
449
4f6a7e5e 450static struct ceph_pg_pool_info *__lookup_pg_pool(struct rb_root *root, u64 id)
4fc51be8
SW
451{
452 struct ceph_pg_pool_info *pi;
453 struct rb_node *n = root->rb_node;
454
455 while (n) {
456 pi = rb_entry(n, struct ceph_pg_pool_info, node);
457 if (id < pi->id)
458 n = n->rb_left;
459 else if (id > pi->id)
460 n = n->rb_right;
461 else
462 return pi;
463 }
464 return NULL;
465}
466
ce7f6a27
ID
467struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map, u64 id)
468{
469 return __lookup_pg_pool(&map->pg_pools, id);
470}
471
72afc71f
AE
472const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id)
473{
474 struct ceph_pg_pool_info *pi;
475
476 if (id == CEPH_NOPOOL)
477 return NULL;
478
479 if (WARN_ON_ONCE(id > (u64) INT_MAX))
480 return NULL;
481
482 pi = __lookup_pg_pool(&map->pg_pools, (int) id);
483
484 return pi ? pi->name : NULL;
485}
486EXPORT_SYMBOL(ceph_pg_pool_name_by_id);
487
7669a2c9
YS
488int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name)
489{
490 struct rb_node *rbp;
491
492 for (rbp = rb_first(&map->pg_pools); rbp; rbp = rb_next(rbp)) {
493 struct ceph_pg_pool_info *pi =
494 rb_entry(rbp, struct ceph_pg_pool_info, node);
495 if (pi->name && strcmp(pi->name, name) == 0)
496 return pi->id;
497 }
498 return -ENOENT;
499}
3d14c5d2 500EXPORT_SYMBOL(ceph_pg_poolid_by_name);
7669a2c9 501
2844a76a
SW
502static void __remove_pg_pool(struct rb_root *root, struct ceph_pg_pool_info *pi)
503{
504 rb_erase(&pi->node, root);
505 kfree(pi->name);
506 kfree(pi);
507}
508
0f70c7ee 509static int decode_pool(void **p, void *end, struct ceph_pg_pool_info *pi)
efd7576b 510{
4f6a7e5e
SW
511 u8 ev, cv;
512 unsigned len, num;
513 void *pool_end;
514
515 ceph_decode_need(p, end, 2 + 4, bad);
516 ev = ceph_decode_8(p); /* encoding version */
517 cv = ceph_decode_8(p); /* compat version */
518 if (ev < 5) {
519 pr_warning("got v %d < 5 cv %d of ceph_pg_pool\n", ev, cv);
520 return -EINVAL;
521 }
17a13e40
ID
522 if (cv > 9) {
523 pr_warning("got v %d cv %d > 9 of ceph_pg_pool\n", ev, cv);
4f6a7e5e
SW
524 return -EINVAL;
525 }
526 len = ceph_decode_32(p);
527 ceph_decode_need(p, end, len, bad);
528 pool_end = *p + len;
73a7e693 529
4f6a7e5e
SW
530 pi->type = ceph_decode_8(p);
531 pi->size = ceph_decode_8(p);
532 pi->crush_ruleset = ceph_decode_8(p);
533 pi->object_hash = ceph_decode_8(p);
73a7e693 534
4f6a7e5e
SW
535 pi->pg_num = ceph_decode_32(p);
536 pi->pgp_num = ceph_decode_32(p);
537
538 *p += 4 + 4; /* skip lpg* */
539 *p += 4; /* skip last_change */
540 *p += 8 + 4; /* skip snap_seq, snap_epoch */
541
542 /* skip snaps */
543 num = ceph_decode_32(p);
544 while (num--) {
545 *p += 8; /* snapid key */
546 *p += 1 + 1; /* versions */
547 len = ceph_decode_32(p);
548 *p += len;
73a7e693
SW
549 }
550
17a13e40 551 /* skip removed_snaps */
4f6a7e5e
SW
552 num = ceph_decode_32(p);
553 *p += num * (8 + 8);
554
555 *p += 8; /* skip auid */
556 pi->flags = ceph_decode_64(p);
17a13e40
ID
557 *p += 4; /* skip crash_replay_interval */
558
559 if (ev >= 7)
560 *p += 1; /* skip min_size */
561
562 if (ev >= 8)
563 *p += 8 + 8; /* skip quota_max_* */
564
565 if (ev >= 9) {
566 /* skip tiers */
567 num = ceph_decode_32(p);
568 *p += num * 8;
569
570 *p += 8; /* skip tier_of */
571 *p += 1; /* skip cache_mode */
572
573 pi->read_tier = ceph_decode_64(p);
574 pi->write_tier = ceph_decode_64(p);
575 } else {
576 pi->read_tier = -1;
577 pi->write_tier = -1;
578 }
4f6a7e5e
SW
579
580 /* ignore the rest */
581
582 *p = pool_end;
583 calc_pg_masks(pi);
73a7e693
SW
584 return 0;
585
586bad:
587 return -EINVAL;
efd7576b
SW
588}
589
0f70c7ee 590static int decode_pool_names(void **p, void *end, struct ceph_osdmap *map)
2844a76a
SW
591{
592 struct ceph_pg_pool_info *pi;
4f6a7e5e
SW
593 u32 num, len;
594 u64 pool;
2844a76a
SW
595
596 ceph_decode_32_safe(p, end, num, bad);
597 dout(" %d pool names\n", num);
598 while (num--) {
4f6a7e5e 599 ceph_decode_64_safe(p, end, pool, bad);
2844a76a 600 ceph_decode_32_safe(p, end, len, bad);
4f6a7e5e 601 dout(" pool %llu len %d\n", pool, len);
ad3b904c 602 ceph_decode_need(p, end, len, bad);
2844a76a
SW
603 pi = __lookup_pg_pool(&map->pg_pools, pool);
604 if (pi) {
ad3b904c
XW
605 char *name = kstrndup(*p, len, GFP_NOFS);
606
607 if (!name)
608 return -ENOMEM;
2844a76a 609 kfree(pi->name);
ad3b904c
XW
610 pi->name = name;
611 dout(" name is %s\n", pi->name);
2844a76a
SW
612 }
613 *p += len;
614 }
615 return 0;
616
617bad:
618 return -EINVAL;
619}
620
621/*
622 * osd map
623 */
624void ceph_osdmap_destroy(struct ceph_osdmap *map)
625{
626 dout("osdmap_destroy %p\n", map);
627 if (map->crush)
628 crush_destroy(map->crush);
629 while (!RB_EMPTY_ROOT(&map->pg_temp)) {
630 struct ceph_pg_mapping *pg =
631 rb_entry(rb_first(&map->pg_temp),
632 struct ceph_pg_mapping, node);
633 rb_erase(&pg->node, &map->pg_temp);
634 kfree(pg);
635 }
9686f94c
ID
636 while (!RB_EMPTY_ROOT(&map->primary_temp)) {
637 struct ceph_pg_mapping *pg =
638 rb_entry(rb_first(&map->primary_temp),
639 struct ceph_pg_mapping, node);
640 rb_erase(&pg->node, &map->primary_temp);
641 kfree(pg);
642 }
2844a76a
SW
643 while (!RB_EMPTY_ROOT(&map->pg_pools)) {
644 struct ceph_pg_pool_info *pi =
645 rb_entry(rb_first(&map->pg_pools),
646 struct ceph_pg_pool_info, node);
647 __remove_pg_pool(&map->pg_pools, pi);
648 }
649 kfree(map->osd_state);
650 kfree(map->osd_weight);
651 kfree(map->osd_addr);
652 kfree(map);
653}
654
655/*
4d60351f
ID
656 * Adjust max_osd value, (re)allocate arrays.
657 *
658 * The new elements are properly initialized.
2844a76a
SW
659 */
660static int osdmap_set_max_osd(struct ceph_osdmap *map, int max)
661{
662 u8 *state;
2844a76a 663 u32 *weight;
4d60351f
ID
664 struct ceph_entity_addr *addr;
665 int i;
2844a76a 666
4d60351f
ID
667 state = krealloc(map->osd_state, max*sizeof(*state), GFP_NOFS);
668 weight = krealloc(map->osd_weight, max*sizeof(*weight), GFP_NOFS);
669 addr = krealloc(map->osd_addr, max*sizeof(*addr), GFP_NOFS);
670 if (!state || !weight || !addr) {
2844a76a 671 kfree(state);
2844a76a 672 kfree(weight);
4d60351f
ID
673 kfree(addr);
674
2844a76a
SW
675 return -ENOMEM;
676 }
677
4d60351f
ID
678 for (i = map->max_osd; i < max; i++) {
679 state[i] = 0;
680 weight[i] = CEPH_OSD_OUT;
681 memset(addr + i, 0, sizeof(*addr));
2844a76a
SW
682 }
683
684 map->osd_state = state;
685 map->osd_weight = weight;
686 map->osd_addr = addr;
4d60351f 687
2844a76a 688 map->max_osd = max;
4d60351f 689
2844a76a
SW
690 return 0;
691}
692
ec7af972
ID
693#define OSDMAP_WRAPPER_COMPAT_VER 7
694#define OSDMAP_CLIENT_DATA_COMPAT_VER 1
695
696/*
697 * Return 0 or error. On success, *v is set to 0 for old (v6) osdmaps,
698 * to struct_v of the client_data section for new (v7 and above)
699 * osdmaps.
700 */
701static int get_osdmap_client_data_v(void **p, void *end,
702 const char *prefix, u8 *v)
703{
704 u8 struct_v;
705
706 ceph_decode_8_safe(p, end, struct_v, e_inval);
707 if (struct_v >= 7) {
708 u8 struct_compat;
709
710 ceph_decode_8_safe(p, end, struct_compat, e_inval);
711 if (struct_compat > OSDMAP_WRAPPER_COMPAT_VER) {
712 pr_warning("got v %d cv %d > %d of %s ceph_osdmap\n",
713 struct_v, struct_compat,
714 OSDMAP_WRAPPER_COMPAT_VER, prefix);
715 return -EINVAL;
716 }
717 *p += 4; /* ignore wrapper struct_len */
718
719 ceph_decode_8_safe(p, end, struct_v, e_inval);
720 ceph_decode_8_safe(p, end, struct_compat, e_inval);
721 if (struct_compat > OSDMAP_CLIENT_DATA_COMPAT_VER) {
722 pr_warning("got v %d cv %d > %d of %s ceph_osdmap client data\n",
723 struct_v, struct_compat,
724 OSDMAP_CLIENT_DATA_COMPAT_VER, prefix);
725 return -EINVAL;
726 }
727 *p += 4; /* ignore client data struct_len */
728 } else {
729 u16 version;
730
731 *p -= 1;
732 ceph_decode_16_safe(p, end, version, e_inval);
733 if (version < 6) {
734 pr_warning("got v %d < 6 of %s ceph_osdmap\n", version,
735 prefix);
736 return -EINVAL;
737 }
738
739 /* old osdmap enconding */
740 struct_v = 0;
741 }
742
743 *v = struct_v;
744 return 0;
745
746e_inval:
747 return -EINVAL;
748}
749
433fbdd3
ID
750static int __decode_pools(void **p, void *end, struct ceph_osdmap *map,
751 bool incremental)
752{
753 u32 n;
754
755 ceph_decode_32_safe(p, end, n, e_inval);
756 while (n--) {
757 struct ceph_pg_pool_info *pi;
758 u64 pool;
759 int ret;
760
761 ceph_decode_64_safe(p, end, pool, e_inval);
762
763 pi = __lookup_pg_pool(&map->pg_pools, pool);
764 if (!incremental || !pi) {
765 pi = kzalloc(sizeof(*pi), GFP_NOFS);
766 if (!pi)
767 return -ENOMEM;
768
769 pi->id = pool;
770
771 ret = __insert_pg_pool(&map->pg_pools, pi);
772 if (ret) {
773 kfree(pi);
774 return ret;
775 }
776 }
777
778 ret = decode_pool(p, end, pi);
779 if (ret)
780 return ret;
781 }
782
783 return 0;
784
785e_inval:
786 return -EINVAL;
787}
788
789static int decode_pools(void **p, void *end, struct ceph_osdmap *map)
790{
791 return __decode_pools(p, end, map, false);
792}
793
794static int decode_new_pools(void **p, void *end, struct ceph_osdmap *map)
795{
796 return __decode_pools(p, end, map, true);
797}
798
10db634e
ID
799static int __decode_pg_temp(void **p, void *end, struct ceph_osdmap *map,
800 bool incremental)
801{
802 u32 n;
803
804 ceph_decode_32_safe(p, end, n, e_inval);
805 while (n--) {
806 struct ceph_pg pgid;
807 u32 len, i;
808 int ret;
809
810 ret = ceph_decode_pgid(p, end, &pgid);
811 if (ret)
812 return ret;
813
814 ceph_decode_32_safe(p, end, len, e_inval);
815
816 ret = __remove_pg_mapping(&map->pg_temp, pgid);
817 BUG_ON(!incremental && ret != -ENOENT);
818
819 if (!incremental || len > 0) {
820 struct ceph_pg_mapping *pg;
821
822 ceph_decode_need(p, end, len*sizeof(u32), e_inval);
823
824 if (len > (UINT_MAX - sizeof(*pg)) / sizeof(u32))
825 return -EINVAL;
826
827 pg = kzalloc(sizeof(*pg) + len*sizeof(u32), GFP_NOFS);
828 if (!pg)
829 return -ENOMEM;
830
831 pg->pgid = pgid;
35a935d7 832 pg->pg_temp.len = len;
10db634e 833 for (i = 0; i < len; i++)
35a935d7 834 pg->pg_temp.osds[i] = ceph_decode_32(p);
10db634e
ID
835
836 ret = __insert_pg_mapping(pg, &map->pg_temp);
837 if (ret) {
838 kfree(pg);
839 return ret;
840 }
841 }
842 }
843
844 return 0;
845
846e_inval:
847 return -EINVAL;
848}
849
850static int decode_pg_temp(void **p, void *end, struct ceph_osdmap *map)
851{
852 return __decode_pg_temp(p, end, map, false);
853}
854
855static int decode_new_pg_temp(void **p, void *end, struct ceph_osdmap *map)
856{
857 return __decode_pg_temp(p, end, map, true);
858}
859
d286de79
ID
860static int __decode_primary_temp(void **p, void *end, struct ceph_osdmap *map,
861 bool incremental)
862{
863 u32 n;
864
865 ceph_decode_32_safe(p, end, n, e_inval);
866 while (n--) {
867 struct ceph_pg pgid;
868 u32 osd;
869 int ret;
870
871 ret = ceph_decode_pgid(p, end, &pgid);
872 if (ret)
873 return ret;
874
875 ceph_decode_32_safe(p, end, osd, e_inval);
876
877 ret = __remove_pg_mapping(&map->primary_temp, pgid);
878 BUG_ON(!incremental && ret != -ENOENT);
879
880 if (!incremental || osd != (u32)-1) {
881 struct ceph_pg_mapping *pg;
882
883 pg = kzalloc(sizeof(*pg), GFP_NOFS);
884 if (!pg)
885 return -ENOMEM;
886
887 pg->pgid = pgid;
888 pg->primary_temp.osd = osd;
889
890 ret = __insert_pg_mapping(pg, &map->primary_temp);
891 if (ret) {
892 kfree(pg);
893 return ret;
894 }
895 }
896 }
897
898 return 0;
899
900e_inval:
901 return -EINVAL;
902}
903
904static int decode_primary_temp(void **p, void *end, struct ceph_osdmap *map)
905{
906 return __decode_primary_temp(p, end, map, false);
907}
908
909static int decode_new_primary_temp(void **p, void *end,
910 struct ceph_osdmap *map)
911{
912 return __decode_primary_temp(p, end, map, true);
913}
914
f24e9980
SW
915/*
916 * decode a full map.
917 */
a2505d63 918static int osdmap_decode(void **p, void *end, struct ceph_osdmap *map)
f24e9980 919{
ec7af972 920 u8 struct_v;
38a8d560 921 u32 epoch = 0;
f24e9980 922 void *start = *p;
3977058c
ID
923 u32 max;
924 u32 len, i;
597b52f6 925 int err;
f24e9980 926
a2505d63 927 dout("%s %p to %p len %d\n", __func__, *p, end, (int)(end - *p));
f24e9980 928
ec7af972
ID
929 err = get_osdmap_client_data_v(p, end, "full", &struct_v);
930 if (err)
931 goto bad;
f24e9980 932
53bbaba9
ID
933 /* fsid, epoch, created, modified */
934 ceph_decode_need(p, end, sizeof(map->fsid) + sizeof(u32) +
935 sizeof(map->created) + sizeof(map->modified), e_inval);
f24e9980 936 ceph_decode_copy(p, &map->fsid, sizeof(map->fsid));
38a8d560 937 epoch = map->epoch = ceph_decode_32(p);
f24e9980
SW
938 ceph_decode_copy(p, &map->created, sizeof(map->created));
939 ceph_decode_copy(p, &map->modified, sizeof(map->modified));
940
433fbdd3
ID
941 /* pools */
942 err = decode_pools(p, end, map);
943 if (err)
944 goto bad;
2844a76a 945
0f70c7ee
ID
946 /* pool_name */
947 err = decode_pool_names(p, end, map);
597b52f6 948 if (err)
4f6a7e5e 949 goto bad;
2844a76a 950
597b52f6 951 ceph_decode_32_safe(p, end, map->pool_max, e_inval);
f24e9980 952
597b52f6 953 ceph_decode_32_safe(p, end, map->flags, e_inval);
f24e9980 954
3977058c
ID
955 /* max_osd */
956 ceph_decode_32_safe(p, end, max, e_inval);
f24e9980
SW
957
958 /* (re)alloc osd arrays */
959 err = osdmap_set_max_osd(map, max);
597b52f6 960 if (err)
f24e9980 961 goto bad;
f24e9980 962
2d88b2e0 963 /* osd_state, osd_weight, osd_addrs->client_addr */
f24e9980
SW
964 ceph_decode_need(p, end, 3*sizeof(u32) +
965 map->max_osd*(1 + sizeof(*map->osd_weight) +
597b52f6
ID
966 sizeof(*map->osd_addr)), e_inval);
967
2d88b2e0
ID
968 if (ceph_decode_32(p) != map->max_osd)
969 goto e_inval;
970
f24e9980
SW
971 ceph_decode_copy(p, map->osd_state, map->max_osd);
972
2d88b2e0
ID
973 if (ceph_decode_32(p) != map->max_osd)
974 goto e_inval;
975
f24e9980 976 for (i = 0; i < map->max_osd; i++)
c89136ea 977 map->osd_weight[i] = ceph_decode_32(p);
f24e9980 978
2d88b2e0
ID
979 if (ceph_decode_32(p) != map->max_osd)
980 goto e_inval;
981
f24e9980 982 ceph_decode_copy(p, map->osd_addr, map->max_osd*sizeof(*map->osd_addr));
63f2d211
SW
983 for (i = 0; i < map->max_osd; i++)
984 ceph_decode_addr(&map->osd_addr[i]);
f24e9980
SW
985
986 /* pg_temp */
10db634e
ID
987 err = decode_pg_temp(p, end, map);
988 if (err)
989 goto bad;
f24e9980 990
d286de79
ID
991 /* primary_temp */
992 if (struct_v >= 1) {
993 err = decode_primary_temp(p, end, map);
994 if (err)
995 goto bad;
996 }
997
f24e9980 998 /* crush */
597b52f6 999 ceph_decode_32_safe(p, end, len, e_inval);
9902e682 1000 map->crush = crush_decode(*p, min(*p + len, end));
f24e9980
SW
1001 if (IS_ERR(map->crush)) {
1002 err = PTR_ERR(map->crush);
1003 map->crush = NULL;
1004 goto bad;
1005 }
9902e682 1006 *p += len;
f24e9980 1007
38a8d560 1008 /* ignore the rest */
f24e9980
SW
1009 *p = end;
1010
38a8d560 1011 dout("full osdmap epoch %d max_osd %d\n", map->epoch, map->max_osd);
a2505d63 1012 return 0;
f24e9980 1013
597b52f6
ID
1014e_inval:
1015 err = -EINVAL;
f24e9980 1016bad:
38a8d560
ID
1017 pr_err("corrupt full osdmap (%d) epoch %d off %d (%p of %p-%p)\n",
1018 err, epoch, (int)(*p - start), *p, start, end);
1019 print_hex_dump(KERN_DEBUG, "osdmap: ",
1020 DUMP_PREFIX_OFFSET, 16, 1,
1021 start, end - start, true);
a2505d63
ID
1022 return err;
1023}
1024
1025/*
1026 * Allocate and decode a full map.
1027 */
1028struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end)
1029{
1030 struct ceph_osdmap *map;
1031 int ret;
1032
1033 map = kzalloc(sizeof(*map), GFP_NOFS);
1034 if (!map)
1035 return ERR_PTR(-ENOMEM);
1036
1037 map->pg_temp = RB_ROOT;
9686f94c 1038 map->primary_temp = RB_ROOT;
a2505d63
ID
1039 mutex_init(&map->crush_scratch_mutex);
1040
1041 ret = osdmap_decode(p, end, map);
1042 if (ret) {
1043 ceph_osdmap_destroy(map);
1044 return ERR_PTR(ret);
1045 }
1046
1047 return map;
f24e9980
SW
1048}
1049
1050/*
1051 * decode and apply an incremental map update.
1052 */
1053struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end,
1054 struct ceph_osdmap *map,
1055 struct ceph_messenger *msgr)
1056{
f24e9980
SW
1057 struct crush_map *newcrush = NULL;
1058 struct ceph_fsid fsid;
1059 u32 epoch = 0;
1060 struct ceph_timespec modified;
4f6a7e5e
SW
1061 s32 len;
1062 u64 pool;
1063 __s64 new_pool_max;
1064 __s32 new_flags, max;
f24e9980 1065 void *start = *p;
86f1742b 1066 int err;
ec7af972 1067 u8 struct_v;
f24e9980 1068
38a8d560
ID
1069 dout("%s %p to %p len %d\n", __func__, *p, end, (int)(end - *p));
1070
ec7af972
ID
1071 err = get_osdmap_client_data_v(p, end, "inc", &struct_v);
1072 if (err)
1073 goto bad;
f24e9980 1074
53bbaba9
ID
1075 /* fsid, epoch, modified, new_pool_max, new_flags */
1076 ceph_decode_need(p, end, sizeof(fsid) + sizeof(u32) + sizeof(modified) +
1077 sizeof(u64) + sizeof(u32), e_inval);
f24e9980 1078 ceph_decode_copy(p, &fsid, sizeof(fsid));
c89136ea 1079 epoch = ceph_decode_32(p);
f24e9980
SW
1080 BUG_ON(epoch != map->epoch+1);
1081 ceph_decode_copy(p, &modified, sizeof(modified));
4f6a7e5e 1082 new_pool_max = ceph_decode_64(p);
c89136ea 1083 new_flags = ceph_decode_32(p);
f24e9980
SW
1084
1085 /* full map? */
86f1742b 1086 ceph_decode_32_safe(p, end, len, e_inval);
f24e9980
SW
1087 if (len > 0) {
1088 dout("apply_incremental full map len %d, %p to %p\n",
1089 len, *p, end);
a2505d63 1090 return ceph_osdmap_decode(p, min(*p+len, end));
f24e9980
SW
1091 }
1092
1093 /* new crush? */
86f1742b 1094 ceph_decode_32_safe(p, end, len, e_inval);
f24e9980 1095 if (len > 0) {
f24e9980 1096 newcrush = crush_decode(*p, min(*p+len, end));
86f1742b
ID
1097 if (IS_ERR(newcrush)) {
1098 err = PTR_ERR(newcrush);
1099 newcrush = NULL;
1100 goto bad;
1101 }
cebc5be6 1102 *p += len;
f24e9980
SW
1103 }
1104
1105 /* new flags? */
1106 if (new_flags >= 0)
1107 map->flags = new_flags;
4fc51be8
SW
1108 if (new_pool_max >= 0)
1109 map->pool_max = new_pool_max;
f24e9980 1110
f24e9980 1111 /* new max? */
53bbaba9 1112 ceph_decode_32_safe(p, end, max, e_inval);
f24e9980
SW
1113 if (max >= 0) {
1114 err = osdmap_set_max_osd(map, max);
86f1742b 1115 if (err)
f24e9980
SW
1116 goto bad;
1117 }
1118
1119 map->epoch++;
31456665 1120 map->modified = modified;
f24e9980
SW
1121 if (newcrush) {
1122 if (map->crush)
1123 crush_destroy(map->crush);
1124 map->crush = newcrush;
1125 newcrush = NULL;
1126 }
1127
433fbdd3
ID
1128 /* new_pools */
1129 err = decode_new_pools(p, end, map);
1130 if (err)
1131 goto bad;
9464d008 1132
0f70c7ee
ID
1133 /* new_pool_names */
1134 err = decode_pool_names(p, end, map);
9464d008
ID
1135 if (err)
1136 goto bad;
f24e9980 1137
4fc51be8 1138 /* old_pool */
86f1742b 1139 ceph_decode_32_safe(p, end, len, e_inval);
4fc51be8
SW
1140 while (len--) {
1141 struct ceph_pg_pool_info *pi;
1142
86f1742b 1143 ceph_decode_64_safe(p, end, pool, e_inval);
4fc51be8 1144 pi = __lookup_pg_pool(&map->pg_pools, pool);
2844a76a
SW
1145 if (pi)
1146 __remove_pg_pool(&map->pg_pools, pi);
4fc51be8 1147 }
f24e9980
SW
1148
1149 /* new_up */
86f1742b 1150 ceph_decode_32_safe(p, end, len, e_inval);
f24e9980
SW
1151 while (len--) {
1152 u32 osd;
1153 struct ceph_entity_addr addr;
86f1742b
ID
1154 ceph_decode_32_safe(p, end, osd, e_inval);
1155 ceph_decode_copy_safe(p, end, &addr, sizeof(addr), e_inval);
63f2d211 1156 ceph_decode_addr(&addr);
f24e9980
SW
1157 pr_info("osd%d up\n", osd);
1158 BUG_ON(osd >= map->max_osd);
1159 map->osd_state[osd] |= CEPH_OSD_UP;
1160 map->osd_addr[osd] = addr;
1161 }
1162
7662d8ff 1163 /* new_state */
86f1742b 1164 ceph_decode_32_safe(p, end, len, e_inval);
f24e9980
SW
1165 while (len--) {
1166 u32 osd;
7662d8ff 1167 u8 xorstate;
86f1742b 1168 ceph_decode_32_safe(p, end, osd, e_inval);
7662d8ff 1169 xorstate = **(u8 **)p;
f24e9980 1170 (*p)++; /* clean flag */
7662d8ff
SW
1171 if (xorstate == 0)
1172 xorstate = CEPH_OSD_UP;
1173 if (xorstate & CEPH_OSD_UP)
1174 pr_info("osd%d down\n", osd);
f24e9980 1175 if (osd < map->max_osd)
7662d8ff 1176 map->osd_state[osd] ^= xorstate;
f24e9980
SW
1177 }
1178
1179 /* new_weight */
86f1742b 1180 ceph_decode_32_safe(p, end, len, e_inval);
f24e9980
SW
1181 while (len--) {
1182 u32 osd, off;
86f1742b 1183 ceph_decode_need(p, end, sizeof(u32)*2, e_inval);
c89136ea
SW
1184 osd = ceph_decode_32(p);
1185 off = ceph_decode_32(p);
f24e9980
SW
1186 pr_info("osd%d weight 0x%x %s\n", osd, off,
1187 off == CEPH_OSD_IN ? "(in)" :
1188 (off == CEPH_OSD_OUT ? "(out)" : ""));
1189 if (osd < map->max_osd)
1190 map->osd_weight[osd] = off;
1191 }
1192
1193 /* new_pg_temp */
10db634e
ID
1194 err = decode_new_pg_temp(p, end, map);
1195 if (err)
1196 goto bad;
f24e9980 1197
d286de79
ID
1198 /* new_primary_temp */
1199 if (struct_v >= 1) {
1200 err = decode_new_primary_temp(p, end, map);
1201 if (err)
1202 goto bad;
1203 }
1204
f24e9980
SW
1205 /* ignore the rest */
1206 *p = end;
38a8d560
ID
1207
1208 dout("inc osdmap epoch %d max_osd %d\n", map->epoch, map->max_osd);
f24e9980
SW
1209 return map;
1210
86f1742b
ID
1211e_inval:
1212 err = -EINVAL;
f24e9980 1213bad:
38a8d560
ID
1214 pr_err("corrupt inc osdmap (%d) epoch %d off %d (%p of %p-%p)\n",
1215 err, epoch, (int)(*p - start), *p, start, end);
9ec7cab1
SW
1216 print_hex_dump(KERN_DEBUG, "osdmap: ",
1217 DUMP_PREFIX_OFFSET, 16, 1,
1218 start, end - start, true);
f24e9980
SW
1219 if (newcrush)
1220 crush_destroy(newcrush);
1221 return ERR_PTR(err);
1222}
1223
1224
1225
1226
1227/*
1228 * calculate file layout from given offset, length.
1229 * fill in correct oid, logical length, and object extent
1230 * offset, length.
1231 *
1232 * for now, we write only a single su, until we can
1233 * pass a stride back to the caller.
1234 */
d63b77f4 1235int ceph_calc_file_object_mapping(struct ceph_file_layout *layout,
e8afad65 1236 u64 off, u64 len,
645a1025 1237 u64 *ono,
f24e9980
SW
1238 u64 *oxoff, u64 *oxlen)
1239{
1240 u32 osize = le32_to_cpu(layout->fl_object_size);
1241 u32 su = le32_to_cpu(layout->fl_stripe_unit);
1242 u32 sc = le32_to_cpu(layout->fl_stripe_count);
1243 u32 bl, stripeno, stripepos, objsetno;
1244 u32 su_per_object;
ff1d1f71 1245 u64 t, su_offset;
f24e9980 1246
e8afad65 1247 dout("mapping %llu~%llu osize %u fl_su %u\n", off, len,
f24e9980 1248 osize, su);
d63b77f4
SW
1249 if (su == 0 || sc == 0)
1250 goto invalid;
35e054a6 1251 su_per_object = osize / su;
d63b77f4
SW
1252 if (su_per_object == 0)
1253 goto invalid;
f24e9980
SW
1254 dout("osize %u / su %u = su_per_object %u\n", osize, su,
1255 su_per_object);
1256
d63b77f4
SW
1257 if ((su & ~PAGE_MASK) != 0)
1258 goto invalid;
1259
f24e9980
SW
1260 /* bl = *off / su; */
1261 t = off;
1262 do_div(t, su);
1263 bl = t;
1264 dout("off %llu / su %u = bl %u\n", off, su, bl);
1265
1266 stripeno = bl / sc;
1267 stripepos = bl % sc;
1268 objsetno = stripeno / su_per_object;
1269
645a1025 1270 *ono = objsetno * sc + stripepos;
95c96174 1271 dout("objset %u * sc %u = ono %u\n", objsetno, sc, (unsigned int)*ono);
645a1025
SW
1272
1273 /* *oxoff = *off % layout->fl_stripe_unit; # offset in su */
f24e9980 1274 t = off;
ff1d1f71
NW
1275 su_offset = do_div(t, su);
1276 *oxoff = su_offset + (stripeno % su_per_object) * su;
1277
1278 /*
1279 * Calculate the length of the extent being written to the selected
e8afad65 1280 * object. This is the minimum of the full length requested (len) or
ff1d1f71
NW
1281 * the remainder of the current stripe being written to.
1282 */
e8afad65 1283 *oxlen = min_t(u64, len, su - su_offset);
f24e9980
SW
1284
1285 dout(" obj extent %llu~%llu\n", *oxoff, *oxlen);
d63b77f4
SW
1286 return 0;
1287
1288invalid:
1289 dout(" invalid layout\n");
1290 *ono = 0;
1291 *oxoff = 0;
1292 *oxlen = 0;
1293 return -EINVAL;
f24e9980 1294}
3d14c5d2 1295EXPORT_SYMBOL(ceph_calc_file_object_mapping);
f24e9980
SW
1296
1297/*
7c13cb64
ID
1298 * Calculate mapping of a (oloc, oid) pair to a PG. Should only be
1299 * called with target's (oloc, oid), since tiering isn't taken into
1300 * account.
f24e9980 1301 */
7c13cb64
ID
1302int ceph_oloc_oid_to_pg(struct ceph_osdmap *osdmap,
1303 struct ceph_object_locator *oloc,
1304 struct ceph_object_id *oid,
1305 struct ceph_pg *pg_out)
f24e9980 1306{
7c13cb64 1307 struct ceph_pg_pool_info *pi;
f24e9980 1308
7c13cb64
ID
1309 pi = __lookup_pg_pool(&osdmap->pg_pools, oloc->pool);
1310 if (!pi)
4fc51be8 1311 return -EIO;
f24e9980 1312
7c13cb64
ID
1313 pg_out->pool = oloc->pool;
1314 pg_out->seed = ceph_str_hash(pi->object_hash, oid->name,
1315 oid->name_len);
1316
1317 dout("%s '%.*s' pgid %llu.%x\n", __func__, oid->name_len, oid->name,
1318 pg_out->pool, pg_out->seed);
f24e9980
SW
1319 return 0;
1320}
7c13cb64 1321EXPORT_SYMBOL(ceph_oloc_oid_to_pg);
f24e9980 1322
9d521470
ID
1323static int do_crush(struct ceph_osdmap *map, int ruleno, int x,
1324 int *result, int result_max,
1325 const __u32 *weight, int weight_max)
e8ef19c4 1326{
9d521470
ID
1327 int r;
1328
1329 BUG_ON(result_max > CEPH_PG_MAX_SIZE);
1330
1331 mutex_lock(&map->crush_scratch_mutex);
1332 r = crush_do_rule(map->crush, ruleno, x, result, result_max,
1333 weight, weight_max, map->crush_scratch_ary);
1334 mutex_unlock(&map->crush_scratch_mutex);
e8ef19c4 1335
9d521470 1336 return r;
e8ef19c4
ID
1337}
1338
f24e9980
SW
1339/*
1340 * Calculate raw osd vector for the given pgid. Return pointer to osd
1341 * array, or NULL on failure.
1342 */
5b191d99 1343static int *calc_pg_raw(struct ceph_osdmap *osdmap, struct ceph_pg pgid,
f24e9980
SW
1344 int *osds, int *num)
1345{
f24e9980
SW
1346 struct ceph_pg_mapping *pg;
1347 struct ceph_pg_pool_info *pool;
1348 int ruleno;
83ca14fd
SW
1349 int r;
1350 u32 pps;
f24e9980 1351
83ca14fd 1352 pool = __lookup_pg_pool(&osdmap->pg_pools, pgid.pool);
782e182e
SW
1353 if (!pool)
1354 return NULL;
1355
f24e9980 1356 /* pg_temp? */
83ca14fd 1357 pgid.seed = ceph_stable_mod(pgid.seed, pool->pg_num,
9542cf0b 1358 pool->pg_num_mask);
9794b146
SW
1359 pg = __lookup_pg_mapping(&osdmap->pg_temp, pgid);
1360 if (pg) {
35a935d7
ID
1361 *num = pg->pg_temp.len;
1362 return pg->pg_temp.osds;
f24e9980
SW
1363 }
1364
1365 /* crush */
4f6a7e5e
SW
1366 ruleno = crush_find_rule(osdmap->crush, pool->crush_ruleset,
1367 pool->type, pool->size);
f24e9980 1368 if (ruleno < 0) {
83ca14fd
SW
1369 pr_err("no crush rule pool %lld ruleset %d type %d size %d\n",
1370 pgid.pool, pool->crush_ruleset, pool->type,
4f6a7e5e 1371 pool->size);
f24e9980
SW
1372 return NULL;
1373 }
1374
83ca14fd
SW
1375 if (pool->flags & CEPH_POOL_FLAG_HASHPSPOOL) {
1376 /* hash pool id and seed sothat pool PGs do not overlap */
1377 pps = crush_hash32_2(CRUSH_HASH_RJENKINS1,
1378 ceph_stable_mod(pgid.seed, pool->pgp_num,
1379 pool->pgp_num_mask),
1380 pgid.pool);
1381 } else {
1382 /*
1383 * legacy ehavior: add ps and pool together. this is
1384 * not a great approach because the PGs from each pool
1385 * will overlap on top of each other: 0.5 == 1.4 ==
1386 * 2.3 == ...
1387 */
1388 pps = ceph_stable_mod(pgid.seed, pool->pgp_num,
1389 pool->pgp_num_mask) +
1390 (unsigned)pgid.pool;
1391 }
9d521470
ID
1392 r = do_crush(osdmap, ruleno, pps, osds, min_t(int, pool->size, *num),
1393 osdmap->osd_weight, osdmap->max_osd);
8b393269 1394 if (r < 0) {
83ca14fd
SW
1395 pr_err("error %d from crush rule: pool %lld ruleset %d type %d"
1396 " size %d\n", r, pgid.pool, pool->crush_ruleset,
4f6a7e5e 1397 pool->type, pool->size);
8b393269
SW
1398 return NULL;
1399 }
1400 *num = r;
f24e9980
SW
1401 return osds;
1402}
1403
d85b7056
SW
1404/*
1405 * Return acting set for given pgid.
1406 */
5b191d99 1407int ceph_calc_pg_acting(struct ceph_osdmap *osdmap, struct ceph_pg pgid,
d85b7056
SW
1408 int *acting)
1409{
1410 int rawosds[CEPH_PG_MAX_SIZE], *osds;
1411 int i, o, num = CEPH_PG_MAX_SIZE;
1412
1413 osds = calc_pg_raw(osdmap, pgid, rawosds, &num);
1414 if (!osds)
1415 return -1;
1416
1417 /* primary is first up osd */
1418 o = 0;
1419 for (i = 0; i < num; i++)
1420 if (ceph_osd_is_up(osdmap, osds[i]))
1421 acting[o++] = osds[i];
1422 return o;
1423}
1424
f24e9980
SW
1425/*
1426 * Return primary osd for given pgid, or -1 if none.
1427 */
5b191d99 1428int ceph_calc_pg_primary(struct ceph_osdmap *osdmap, struct ceph_pg pgid)
f24e9980 1429{
d85b7056
SW
1430 int rawosds[CEPH_PG_MAX_SIZE], *osds;
1431 int i, num = CEPH_PG_MAX_SIZE;
f24e9980
SW
1432
1433 osds = calc_pg_raw(osdmap, pgid, rawosds, &num);
1434 if (!osds)
1435 return -1;
1436
1437 /* primary is first up osd */
1438 for (i = 0; i < num; i++)
d85b7056 1439 if (ceph_osd_is_up(osdmap, osds[i]))
f24e9980 1440 return osds[i];
f24e9980
SW
1441 return -1;
1442}
3d14c5d2 1443EXPORT_SYMBOL(ceph_calc_pg_primary);
This page took 0.445019 seconds and 5 git commands to generate.