]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/ceph/osdmap.c
ceph: correct comment to match striping calculation
[net-next-2.6.git] / fs / ceph / osdmap.c
CommitLineData
f24e9980
SW
1
2#include <asm/div64.h>
3
4#include "super.h"
5#include "osdmap.h"
6#include "crush/hash.h"
7#include "crush/mapper.h"
8#include "decode.h"
9#include "ceph_debug.h"
10
11char *ceph_osdmap_state_str(char *str, int len, int state)
12{
13 int flag = 0;
14
15 if (!len)
16 goto done;
17
18 *str = '\0';
19 if (state) {
20 if (state & CEPH_OSD_EXISTS) {
21 snprintf(str, len, "exists");
22 flag = 1;
23 }
24 if (state & CEPH_OSD_UP) {
25 snprintf(str, len, "%s%s%s", str, (flag ? ", " : ""),
26 "up");
27 flag = 1;
28 }
29 } else {
30 snprintf(str, len, "doesn't exist");
31 }
32done:
33 return str;
34}
35
36/* maps */
37
38static int calc_bits_of(unsigned t)
39{
40 int b = 0;
41 while (t) {
42 t = t >> 1;
43 b++;
44 }
45 return b;
46}
47
48/*
49 * the foo_mask is the smallest value 2^n-1 that is >= foo.
50 */
51static void calc_pg_masks(struct ceph_pg_pool_info *pi)
52{
53 pi->pg_num_mask = (1 << calc_bits_of(le32_to_cpu(pi->v.pg_num)-1)) - 1;
54 pi->pgp_num_mask =
55 (1 << calc_bits_of(le32_to_cpu(pi->v.pgp_num)-1)) - 1;
56 pi->lpg_num_mask =
57 (1 << calc_bits_of(le32_to_cpu(pi->v.lpg_num)-1)) - 1;
58 pi->lpgp_num_mask =
59 (1 << calc_bits_of(le32_to_cpu(pi->v.lpgp_num)-1)) - 1;
60}
61
62/*
63 * decode crush map
64 */
65static int crush_decode_uniform_bucket(void **p, void *end,
66 struct crush_bucket_uniform *b)
67{
68 dout("crush_decode_uniform_bucket %p to %p\n", *p, end);
69 ceph_decode_need(p, end, (1+b->h.size) * sizeof(u32), bad);
c89136ea 70 b->item_weight = ceph_decode_32(p);
f24e9980
SW
71 return 0;
72bad:
73 return -EINVAL;
74}
75
76static int crush_decode_list_bucket(void **p, void *end,
77 struct crush_bucket_list *b)
78{
79 int j;
80 dout("crush_decode_list_bucket %p to %p\n", *p, end);
81 b->item_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
82 if (b->item_weights == NULL)
83 return -ENOMEM;
84 b->sum_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
85 if (b->sum_weights == NULL)
86 return -ENOMEM;
87 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad);
88 for (j = 0; j < b->h.size; j++) {
c89136ea
SW
89 b->item_weights[j] = ceph_decode_32(p);
90 b->sum_weights[j] = ceph_decode_32(p);
f24e9980
SW
91 }
92 return 0;
93bad:
94 return -EINVAL;
95}
96
97static int crush_decode_tree_bucket(void **p, void *end,
98 struct crush_bucket_tree *b)
99{
100 int j;
101 dout("crush_decode_tree_bucket %p to %p\n", *p, end);
102 ceph_decode_32_safe(p, end, b->num_nodes, bad);
103 b->node_weights = kcalloc(b->num_nodes, sizeof(u32), GFP_NOFS);
104 if (b->node_weights == NULL)
105 return -ENOMEM;
106 ceph_decode_need(p, end, b->num_nodes * sizeof(u32), bad);
107 for (j = 0; j < b->num_nodes; j++)
c89136ea 108 b->node_weights[j] = ceph_decode_32(p);
f24e9980
SW
109 return 0;
110bad:
111 return -EINVAL;
112}
113
114static int crush_decode_straw_bucket(void **p, void *end,
115 struct crush_bucket_straw *b)
116{
117 int j;
118 dout("crush_decode_straw_bucket %p to %p\n", *p, end);
119 b->item_weights = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
120 if (b->item_weights == NULL)
121 return -ENOMEM;
122 b->straws = kcalloc(b->h.size, sizeof(u32), GFP_NOFS);
123 if (b->straws == NULL)
124 return -ENOMEM;
125 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad);
126 for (j = 0; j < b->h.size; j++) {
c89136ea
SW
127 b->item_weights[j] = ceph_decode_32(p);
128 b->straws[j] = ceph_decode_32(p);
f24e9980
SW
129 }
130 return 0;
131bad:
132 return -EINVAL;
133}
134
135static struct crush_map *crush_decode(void *pbyval, void *end)
136{
137 struct crush_map *c;
138 int err = -EINVAL;
139 int i, j;
140 void **p = &pbyval;
141 void *start = pbyval;
142 u32 magic;
143
144 dout("crush_decode %p to %p len %d\n", *p, end, (int)(end - *p));
145
146 c = kzalloc(sizeof(*c), GFP_NOFS);
147 if (c == NULL)
148 return ERR_PTR(-ENOMEM);
149
150 ceph_decode_need(p, end, 4*sizeof(u32), bad);
c89136ea 151 magic = ceph_decode_32(p);
f24e9980
SW
152 if (magic != CRUSH_MAGIC) {
153 pr_err("crush_decode magic %x != current %x\n",
154 (unsigned)magic, (unsigned)CRUSH_MAGIC);
155 goto bad;
156 }
c89136ea
SW
157 c->max_buckets = ceph_decode_32(p);
158 c->max_rules = ceph_decode_32(p);
159 c->max_devices = ceph_decode_32(p);
f24e9980
SW
160
161 c->device_parents = kcalloc(c->max_devices, sizeof(u32), GFP_NOFS);
162 if (c->device_parents == NULL)
163 goto badmem;
164 c->bucket_parents = kcalloc(c->max_buckets, sizeof(u32), GFP_NOFS);
165 if (c->bucket_parents == NULL)
166 goto badmem;
167
168 c->buckets = kcalloc(c->max_buckets, sizeof(*c->buckets), GFP_NOFS);
169 if (c->buckets == NULL)
170 goto badmem;
171 c->rules = kcalloc(c->max_rules, sizeof(*c->rules), GFP_NOFS);
172 if (c->rules == NULL)
173 goto badmem;
174
175 /* buckets */
176 for (i = 0; i < c->max_buckets; i++) {
177 int size = 0;
178 u32 alg;
179 struct crush_bucket *b;
180
181 ceph_decode_32_safe(p, end, alg, bad);
182 if (alg == 0) {
183 c->buckets[i] = NULL;
184 continue;
185 }
186 dout("crush_decode bucket %d off %x %p to %p\n",
187 i, (int)(*p-start), *p, end);
188
189 switch (alg) {
190 case CRUSH_BUCKET_UNIFORM:
191 size = sizeof(struct crush_bucket_uniform);
192 break;
193 case CRUSH_BUCKET_LIST:
194 size = sizeof(struct crush_bucket_list);
195 break;
196 case CRUSH_BUCKET_TREE:
197 size = sizeof(struct crush_bucket_tree);
198 break;
199 case CRUSH_BUCKET_STRAW:
200 size = sizeof(struct crush_bucket_straw);
201 break;
202 default:
203 goto bad;
204 }
205 BUG_ON(size == 0);
206 b = c->buckets[i] = kzalloc(size, GFP_NOFS);
207 if (b == NULL)
208 goto badmem;
209
210 ceph_decode_need(p, end, 4*sizeof(u32), bad);
c89136ea
SW
211 b->id = ceph_decode_32(p);
212 b->type = ceph_decode_16(p);
213 b->alg = ceph_decode_16(p);
214 b->weight = ceph_decode_32(p);
215 b->size = ceph_decode_32(p);
f24e9980
SW
216
217 dout("crush_decode bucket size %d off %x %p to %p\n",
218 b->size, (int)(*p-start), *p, end);
219
220 b->items = kcalloc(b->size, sizeof(__s32), GFP_NOFS);
221 if (b->items == NULL)
222 goto badmem;
223 b->perm = kcalloc(b->size, sizeof(u32), GFP_NOFS);
224 if (b->perm == NULL)
225 goto badmem;
226 b->perm_n = 0;
227
228 ceph_decode_need(p, end, b->size*sizeof(u32), bad);
229 for (j = 0; j < b->size; j++)
c89136ea 230 b->items[j] = ceph_decode_32(p);
f24e9980
SW
231
232 switch (b->alg) {
233 case CRUSH_BUCKET_UNIFORM:
234 err = crush_decode_uniform_bucket(p, end,
235 (struct crush_bucket_uniform *)b);
236 if (err < 0)
237 goto bad;
238 break;
239 case CRUSH_BUCKET_LIST:
240 err = crush_decode_list_bucket(p, end,
241 (struct crush_bucket_list *)b);
242 if (err < 0)
243 goto bad;
244 break;
245 case CRUSH_BUCKET_TREE:
246 err = crush_decode_tree_bucket(p, end,
247 (struct crush_bucket_tree *)b);
248 if (err < 0)
249 goto bad;
250 break;
251 case CRUSH_BUCKET_STRAW:
252 err = crush_decode_straw_bucket(p, end,
253 (struct crush_bucket_straw *)b);
254 if (err < 0)
255 goto bad;
256 break;
257 }
258 }
259
260 /* rules */
261 dout("rule vec is %p\n", c->rules);
262 for (i = 0; i < c->max_rules; i++) {
263 u32 yes;
264 struct crush_rule *r;
265
266 ceph_decode_32_safe(p, end, yes, bad);
267 if (!yes) {
268 dout("crush_decode NO rule %d off %x %p to %p\n",
269 i, (int)(*p-start), *p, end);
270 c->rules[i] = NULL;
271 continue;
272 }
273
274 dout("crush_decode rule %d off %x %p to %p\n",
275 i, (int)(*p-start), *p, end);
276
277 /* len */
278 ceph_decode_32_safe(p, end, yes, bad);
279#if BITS_PER_LONG == 32
280 if (yes > ULONG_MAX / sizeof(struct crush_rule_step))
281 goto bad;
282#endif
283 r = c->rules[i] = kmalloc(sizeof(*r) +
284 yes*sizeof(struct crush_rule_step),
285 GFP_NOFS);
286 if (r == NULL)
287 goto badmem;
288 dout(" rule %d is at %p\n", i, r);
289 r->len = yes;
290 ceph_decode_copy_safe(p, end, &r->mask, 4, bad); /* 4 u8's */
291 ceph_decode_need(p, end, r->len*3*sizeof(u32), bad);
292 for (j = 0; j < r->len; j++) {
c89136ea
SW
293 r->steps[j].op = ceph_decode_32(p);
294 r->steps[j].arg1 = ceph_decode_32(p);
295 r->steps[j].arg2 = ceph_decode_32(p);
f24e9980
SW
296 }
297 }
298
299 /* ignore trailing name maps. */
300
301 dout("crush_decode success\n");
302 return c;
303
304badmem:
305 err = -ENOMEM;
306bad:
307 dout("crush_decode fail %d\n", err);
308 crush_destroy(c);
309 return ERR_PTR(err);
310}
311
312
313/*
314 * osd map
315 */
316void ceph_osdmap_destroy(struct ceph_osdmap *map)
317{
318 dout("osdmap_destroy %p\n", map);
319 if (map->crush)
320 crush_destroy(map->crush);
321 while (!RB_EMPTY_ROOT(&map->pg_temp))
322 rb_erase(rb_first(&map->pg_temp), &map->pg_temp);
323 kfree(map->osd_state);
324 kfree(map->osd_weight);
325 kfree(map->pg_pool);
326 kfree(map->osd_addr);
327 kfree(map);
328}
329
330/*
331 * adjust max osd value. reallocate arrays.
332 */
333static int osdmap_set_max_osd(struct ceph_osdmap *map, int max)
334{
335 u8 *state;
336 struct ceph_entity_addr *addr;
337 u32 *weight;
338
339 state = kcalloc(max, sizeof(*state), GFP_NOFS);
340 addr = kcalloc(max, sizeof(*addr), GFP_NOFS);
341 weight = kcalloc(max, sizeof(*weight), GFP_NOFS);
342 if (state == NULL || addr == NULL || weight == NULL) {
343 kfree(state);
344 kfree(addr);
345 kfree(weight);
346 return -ENOMEM;
347 }
348
349 /* copy old? */
350 if (map->osd_state) {
351 memcpy(state, map->osd_state, map->max_osd*sizeof(*state));
352 memcpy(addr, map->osd_addr, map->max_osd*sizeof(*addr));
353 memcpy(weight, map->osd_weight, map->max_osd*sizeof(*weight));
354 kfree(map->osd_state);
355 kfree(map->osd_addr);
356 kfree(map->osd_weight);
357 }
358
359 map->osd_state = state;
360 map->osd_weight = weight;
361 map->osd_addr = addr;
362 map->max_osd = max;
363 return 0;
364}
365
366/*
367 * Insert a new pg_temp mapping
368 */
991abb6e
SW
369static int __insert_pg_mapping(struct ceph_pg_mapping *new,
370 struct rb_root *root)
f24e9980
SW
371{
372 struct rb_node **p = &root->rb_node;
373 struct rb_node *parent = NULL;
374 struct ceph_pg_mapping *pg = NULL;
375
376 while (*p) {
377 parent = *p;
378 pg = rb_entry(parent, struct ceph_pg_mapping, node);
379 if (new->pgid < pg->pgid)
380 p = &(*p)->rb_left;
381 else if (new->pgid > pg->pgid)
382 p = &(*p)->rb_right;
383 else
991abb6e 384 return -EEXIST;
f24e9980
SW
385 }
386
387 rb_link_node(&new->node, parent, p);
388 rb_insert_color(&new->node, root);
991abb6e 389 return 0;
f24e9980
SW
390}
391
392/*
393 * decode a full map.
394 */
395struct ceph_osdmap *osdmap_decode(void **p, void *end)
396{
397 struct ceph_osdmap *map;
398 u16 version;
399 u32 len, max, i;
400 int err = -EINVAL;
401 void *start = *p;
402
403 dout("osdmap_decode %p to %p len %d\n", *p, end, (int)(end - *p));
404
405 map = kzalloc(sizeof(*map), GFP_NOFS);
406 if (map == NULL)
407 return ERR_PTR(-ENOMEM);
408 map->pg_temp = RB_ROOT;
409
410 ceph_decode_16_safe(p, end, version, bad);
411
412 ceph_decode_need(p, end, 2*sizeof(u64)+6*sizeof(u32), bad);
413 ceph_decode_copy(p, &map->fsid, sizeof(map->fsid));
c89136ea 414 map->epoch = ceph_decode_32(p);
f24e9980
SW
415 ceph_decode_copy(p, &map->created, sizeof(map->created));
416 ceph_decode_copy(p, &map->modified, sizeof(map->modified));
417
c89136ea 418 map->num_pools = ceph_decode_32(p);
f24e9980
SW
419 map->pg_pool = kcalloc(map->num_pools, sizeof(*map->pg_pool),
420 GFP_NOFS);
421 if (!map->pg_pool) {
422 err = -ENOMEM;
423 goto bad;
424 }
425 ceph_decode_32_safe(p, end, max, bad);
426 while (max--) {
427 ceph_decode_need(p, end, 4+sizeof(map->pg_pool->v), bad);
c89136ea 428 i = ceph_decode_32(p);
f24e9980
SW
429 if (i >= map->num_pools)
430 goto bad;
431 ceph_decode_copy(p, &map->pg_pool[i].v,
432 sizeof(map->pg_pool->v));
433 calc_pg_masks(&map->pg_pool[i]);
434 p += le32_to_cpu(map->pg_pool[i].v.num_snaps) * sizeof(u64);
435 p += le32_to_cpu(map->pg_pool[i].v.num_removed_snap_intervals)
436 * sizeof(u64) * 2;
437 }
438
439 ceph_decode_32_safe(p, end, map->flags, bad);
440
c89136ea 441 max = ceph_decode_32(p);
f24e9980
SW
442
443 /* (re)alloc osd arrays */
444 err = osdmap_set_max_osd(map, max);
445 if (err < 0)
446 goto bad;
447 dout("osdmap_decode max_osd = %d\n", map->max_osd);
448
449 /* osds */
450 err = -EINVAL;
451 ceph_decode_need(p, end, 3*sizeof(u32) +
452 map->max_osd*(1 + sizeof(*map->osd_weight) +
453 sizeof(*map->osd_addr)), bad);
454 *p += 4; /* skip length field (should match max) */
455 ceph_decode_copy(p, map->osd_state, map->max_osd);
456
457 *p += 4; /* skip length field (should match max) */
458 for (i = 0; i < map->max_osd; i++)
c89136ea 459 map->osd_weight[i] = ceph_decode_32(p);
f24e9980
SW
460
461 *p += 4; /* skip length field (should match max) */
462 ceph_decode_copy(p, map->osd_addr, map->max_osd*sizeof(*map->osd_addr));
463
464 /* pg_temp */
465 ceph_decode_32_safe(p, end, len, bad);
466 for (i = 0; i < len; i++) {
467 int n, j;
468 u64 pgid;
469 struct ceph_pg_mapping *pg;
470
471 ceph_decode_need(p, end, sizeof(u32) + sizeof(u64), bad);
c89136ea
SW
472 pgid = ceph_decode_64(p);
473 n = ceph_decode_32(p);
f24e9980
SW
474 ceph_decode_need(p, end, n * sizeof(u32), bad);
475 pg = kmalloc(sizeof(*pg) + n*sizeof(u32), GFP_NOFS);
476 if (!pg) {
477 err = -ENOMEM;
478 goto bad;
479 }
480 pg->pgid = pgid;
481 pg->len = n;
482 for (j = 0; j < n; j++)
c89136ea 483 pg->osds[j] = ceph_decode_32(p);
f24e9980 484
991abb6e
SW
485 err = __insert_pg_mapping(pg, &map->pg_temp);
486 if (err)
487 goto bad;
f24e9980
SW
488 dout(" added pg_temp %llx len %d\n", pgid, len);
489 }
490
491 /* crush */
492 ceph_decode_32_safe(p, end, len, bad);
493 dout("osdmap_decode crush len %d from off 0x%x\n", len,
494 (int)(*p - start));
495 ceph_decode_need(p, end, len, bad);
496 map->crush = crush_decode(*p, end);
497 *p += len;
498 if (IS_ERR(map->crush)) {
499 err = PTR_ERR(map->crush);
500 map->crush = NULL;
501 goto bad;
502 }
503
504 /* ignore the rest of the map */
505 *p = end;
506
507 dout("osdmap_decode done %p %p\n", *p, end);
508 return map;
509
510bad:
511 dout("osdmap_decode fail\n");
512 ceph_osdmap_destroy(map);
513 return ERR_PTR(err);
514}
515
516/*
517 * decode and apply an incremental map update.
518 */
519struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end,
520 struct ceph_osdmap *map,
521 struct ceph_messenger *msgr)
522{
523 struct ceph_osdmap *newmap = map;
524 struct crush_map *newcrush = NULL;
525 struct ceph_fsid fsid;
526 u32 epoch = 0;
527 struct ceph_timespec modified;
528 u32 len, pool;
529 __s32 new_flags, max;
530 void *start = *p;
531 int err = -EINVAL;
532 u16 version;
533 struct rb_node *rbp;
534
535 ceph_decode_16_safe(p, end, version, bad);
536
537 ceph_decode_need(p, end, sizeof(fsid)+sizeof(modified)+2*sizeof(u32),
538 bad);
539 ceph_decode_copy(p, &fsid, sizeof(fsid));
c89136ea 540 epoch = ceph_decode_32(p);
f24e9980
SW
541 BUG_ON(epoch != map->epoch+1);
542 ceph_decode_copy(p, &modified, sizeof(modified));
c89136ea 543 new_flags = ceph_decode_32(p);
f24e9980
SW
544
545 /* full map? */
546 ceph_decode_32_safe(p, end, len, bad);
547 if (len > 0) {
548 dout("apply_incremental full map len %d, %p to %p\n",
549 len, *p, end);
550 newmap = osdmap_decode(p, min(*p+len, end));
551 return newmap; /* error or not */
552 }
553
554 /* new crush? */
555 ceph_decode_32_safe(p, end, len, bad);
556 if (len > 0) {
557 dout("apply_incremental new crush map len %d, %p to %p\n",
558 len, *p, end);
559 newcrush = crush_decode(*p, min(*p+len, end));
560 if (IS_ERR(newcrush))
561 return ERR_PTR(PTR_ERR(newcrush));
562 }
563
564 /* new flags? */
565 if (new_flags >= 0)
566 map->flags = new_flags;
567
568 ceph_decode_need(p, end, 5*sizeof(u32), bad);
569
570 /* new max? */
c89136ea 571 max = ceph_decode_32(p);
f24e9980
SW
572 if (max >= 0) {
573 err = osdmap_set_max_osd(map, max);
574 if (err < 0)
575 goto bad;
576 }
577
578 map->epoch++;
579 map->modified = map->modified;
580 if (newcrush) {
581 if (map->crush)
582 crush_destroy(map->crush);
583 map->crush = newcrush;
584 newcrush = NULL;
585 }
586
587 /* new_pool */
588 ceph_decode_32_safe(p, end, len, bad);
589 while (len--) {
590 ceph_decode_32_safe(p, end, pool, bad);
591 if (pool >= map->num_pools) {
592 void *pg_pool = kcalloc(pool + 1,
593 sizeof(*map->pg_pool),
594 GFP_NOFS);
595 if (!pg_pool) {
596 err = -ENOMEM;
597 goto bad;
598 }
599 memcpy(pg_pool, map->pg_pool,
600 map->num_pools * sizeof(*map->pg_pool));
601 kfree(map->pg_pool);
602 map->pg_pool = pg_pool;
603 map->num_pools = pool+1;
604 }
605 ceph_decode_copy(p, &map->pg_pool[pool].v,
606 sizeof(map->pg_pool->v));
607 calc_pg_masks(&map->pg_pool[pool]);
608 }
609
610 /* old_pool (ignore) */
611 ceph_decode_32_safe(p, end, len, bad);
612 *p += len * sizeof(u32);
613
614 /* new_up */
615 err = -EINVAL;
616 ceph_decode_32_safe(p, end, len, bad);
617 while (len--) {
618 u32 osd;
619 struct ceph_entity_addr addr;
620 ceph_decode_32_safe(p, end, osd, bad);
621 ceph_decode_copy_safe(p, end, &addr, sizeof(addr), bad);
622 pr_info("osd%d up\n", osd);
623 BUG_ON(osd >= map->max_osd);
624 map->osd_state[osd] |= CEPH_OSD_UP;
625 map->osd_addr[osd] = addr;
626 }
627
628 /* new_down */
629 ceph_decode_32_safe(p, end, len, bad);
630 while (len--) {
631 u32 osd;
632 ceph_decode_32_safe(p, end, osd, bad);
633 (*p)++; /* clean flag */
634 pr_info("ceph osd%d down\n", osd);
635 if (osd < map->max_osd)
636 map->osd_state[osd] &= ~CEPH_OSD_UP;
637 }
638
639 /* new_weight */
640 ceph_decode_32_safe(p, end, len, bad);
641 while (len--) {
642 u32 osd, off;
643 ceph_decode_need(p, end, sizeof(u32)*2, bad);
c89136ea
SW
644 osd = ceph_decode_32(p);
645 off = ceph_decode_32(p);
f24e9980
SW
646 pr_info("osd%d weight 0x%x %s\n", osd, off,
647 off == CEPH_OSD_IN ? "(in)" :
648 (off == CEPH_OSD_OUT ? "(out)" : ""));
649 if (osd < map->max_osd)
650 map->osd_weight[osd] = off;
651 }
652
653 /* new_pg_temp */
654 rbp = rb_first(&map->pg_temp);
655 ceph_decode_32_safe(p, end, len, bad);
656 while (len--) {
657 struct ceph_pg_mapping *pg;
658 int j;
659 u64 pgid;
660 u32 pglen;
661 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad);
c89136ea
SW
662 pgid = ceph_decode_64(p);
663 pglen = ceph_decode_32(p);
f24e9980
SW
664
665 /* remove any? */
666 while (rbp && rb_entry(rbp, struct ceph_pg_mapping,
667 node)->pgid <= pgid) {
668 struct rb_node *cur = rbp;
669 rbp = rb_next(rbp);
670 dout(" removed pg_temp %llx\n",
671 rb_entry(cur, struct ceph_pg_mapping, node)->pgid);
672 rb_erase(cur, &map->pg_temp);
673 }
674
675 if (pglen) {
676 /* insert */
677 ceph_decode_need(p, end, pglen*sizeof(u32), bad);
678 pg = kmalloc(sizeof(*pg) + sizeof(u32)*pglen, GFP_NOFS);
679 if (!pg) {
680 err = -ENOMEM;
681 goto bad;
682 }
683 pg->pgid = pgid;
684 pg->len = pglen;
685 for (j = 0; j < len; j++)
c89136ea 686 pg->osds[j] = ceph_decode_32(p);
991abb6e
SW
687 err = __insert_pg_mapping(pg, &map->pg_temp);
688 if (err)
689 goto bad;
f24e9980
SW
690 dout(" added pg_temp %llx len %d\n", pgid, pglen);
691 }
692 }
693 while (rbp) {
694 struct rb_node *cur = rbp;
695 rbp = rb_next(rbp);
696 dout(" removed pg_temp %llx\n",
697 rb_entry(cur, struct ceph_pg_mapping, node)->pgid);
698 rb_erase(cur, &map->pg_temp);
699 }
700
701 /* ignore the rest */
702 *p = end;
703 return map;
704
705bad:
706 pr_err("corrupt inc osdmap epoch %d off %d (%p of %p-%p)\n",
707 epoch, (int)(*p - start), *p, start, end);
708 if (newcrush)
709 crush_destroy(newcrush);
710 return ERR_PTR(err);
711}
712
713
714
715
716/*
717 * calculate file layout from given offset, length.
718 * fill in correct oid, logical length, and object extent
719 * offset, length.
720 *
721 * for now, we write only a single su, until we can
722 * pass a stride back to the caller.
723 */
724void ceph_calc_file_object_mapping(struct ceph_file_layout *layout,
725 u64 off, u64 *plen,
726 u64 *bno,
727 u64 *oxoff, u64 *oxlen)
728{
729 u32 osize = le32_to_cpu(layout->fl_object_size);
730 u32 su = le32_to_cpu(layout->fl_stripe_unit);
731 u32 sc = le32_to_cpu(layout->fl_stripe_count);
732 u32 bl, stripeno, stripepos, objsetno;
733 u32 su_per_object;
734 u64 t;
735
736 dout("mapping %llu~%llu osize %u fl_su %u\n", off, *plen,
737 osize, su);
35e054a6 738 su_per_object = osize / su;
f24e9980
SW
739 dout("osize %u / su %u = su_per_object %u\n", osize, su,
740 su_per_object);
741
742 BUG_ON((su & ~PAGE_MASK) != 0);
743 /* bl = *off / su; */
744 t = off;
745 do_div(t, su);
746 bl = t;
747 dout("off %llu / su %u = bl %u\n", off, su, bl);
748
749 stripeno = bl / sc;
750 stripepos = bl % sc;
751 objsetno = stripeno / su_per_object;
752
753 *bno = objsetno * sc + stripepos;
754 dout("objset %u * sc %u = bno %u\n", objsetno, sc, (unsigned)*bno);
5600f5eb 755 /* *oxoff = *off % layout->fl_stripe_unit; */
f24e9980
SW
756 t = off;
757 *oxoff = do_div(t, su);
758 *oxlen = min_t(u64, *plen, su - *oxoff);
759 *plen = *oxlen;
760
761 dout(" obj extent %llu~%llu\n", *oxoff, *oxlen);
762}
763
764/*
765 * calculate an object layout (i.e. pgid) from an oid,
766 * file_layout, and osdmap
767 */
768int ceph_calc_object_layout(struct ceph_object_layout *ol,
769 const char *oid,
770 struct ceph_file_layout *fl,
771 struct ceph_osdmap *osdmap)
772{
773 unsigned num, num_mask;
774 union ceph_pg pgid;
775 s32 preferred = (s32)le32_to_cpu(fl->fl_pg_preferred);
776 int poolid = le32_to_cpu(fl->fl_pg_pool);
777 struct ceph_pg_pool_info *pool;
778
779 if (poolid >= osdmap->num_pools)
780 return -EIO;
781 pool = &osdmap->pg_pool[poolid];
782
783 if (preferred >= 0) {
784 num = le32_to_cpu(pool->v.lpg_num);
785 num_mask = pool->lpg_num_mask;
786 } else {
787 num = le32_to_cpu(pool->v.pg_num);
788 num_mask = pool->pg_num_mask;
789 }
790
791 pgid.pg64 = 0; /* start with it zeroed out */
792 pgid.pg.ps = ceph_full_name_hash(oid, strlen(oid));
793 pgid.pg.preferred = preferred;
ee7fdfaf
SW
794 if (preferred >= 0)
795 pgid.pg.ps += preferred;
f24e9980
SW
796 pgid.pg.pool = le32_to_cpu(fl->fl_pg_pool);
797 if (preferred >= 0)
798 dout("calc_object_layout '%s' pgid %d.%xp%d (%llx)\n", oid,
799 pgid.pg.pool, pgid.pg.ps, (int)preferred, pgid.pg64);
800 else
801 dout("calc_object_layout '%s' pgid %d.%x (%llx)\n", oid,
802 pgid.pg.pool, pgid.pg.ps, pgid.pg64);
803
804 ol->ol_pgid = cpu_to_le64(pgid.pg64);
805 ol->ol_stripe_unit = fl->fl_object_stripe_unit;
806
807 return 0;
808}
809
810/*
811 * Calculate raw osd vector for the given pgid. Return pointer to osd
812 * array, or NULL on failure.
813 */
814static int *calc_pg_raw(struct ceph_osdmap *osdmap, union ceph_pg pgid,
815 int *osds, int *num)
816{
817 struct rb_node *n = osdmap->pg_temp.rb_node;
818 struct ceph_pg_mapping *pg;
819 struct ceph_pg_pool_info *pool;
820 int ruleno;
821 unsigned pps; /* placement ps */
822
823 /* pg_temp? */
824 while (n) {
825 pg = rb_entry(n, struct ceph_pg_mapping, node);
826 if (pgid.pg64 < pg->pgid)
827 n = n->rb_left;
828 else if (pgid.pg64 > pg->pgid)
829 n = n->rb_right;
830 else {
831 *num = pg->len;
832 return pg->osds;
833 }
834 }
835
836 /* crush */
837 if (pgid.pg.pool >= osdmap->num_pools)
838 return NULL;
839 pool = &osdmap->pg_pool[pgid.pg.pool];
840 ruleno = crush_find_rule(osdmap->crush, pool->v.crush_ruleset,
841 pool->v.type, pool->v.size);
842 if (ruleno < 0) {
843 pr_err("no crush rule pool %d type %d size %d\n",
844 pgid.pg.pool, pool->v.type, pool->v.size);
845 return NULL;
846 }
847
848 if (pgid.pg.preferred >= 0)
849 pps = ceph_stable_mod(pgid.pg.ps,
850 le32_to_cpu(pool->v.lpgp_num),
851 pool->lpgp_num_mask);
852 else
853 pps = ceph_stable_mod(pgid.pg.ps,
854 le32_to_cpu(pool->v.pgp_num),
855 pool->pgp_num_mask);
856 pps += pgid.pg.pool;
857 *num = crush_do_rule(osdmap->crush, ruleno, pps, osds,
858 min_t(int, pool->v.size, *num),
859 pgid.pg.preferred, osdmap->osd_weight);
860 return osds;
861}
862
863/*
864 * Return primary osd for given pgid, or -1 if none.
865 */
866int ceph_calc_pg_primary(struct ceph_osdmap *osdmap, union ceph_pg pgid)
867{
868 int rawosds[10], *osds;
869 int i, num = ARRAY_SIZE(rawosds);
870
871 osds = calc_pg_raw(osdmap, pgid, rawosds, &num);
872 if (!osds)
873 return -1;
874
875 /* primary is first up osd */
876 for (i = 0; i < num; i++)
877 if (ceph_osd_is_up(osdmap, osds[i])) {
878 return osds[i];
879 break;
880 }
881 return -1;
882}