blob: af3444a5bfdd1a0e45493d9603596fd38c042a24 [file] [log] [blame]
Sage Weilf24e9982009-10-06 11:31:10 -07001#ifndef _FS_CEPH_OSDMAP_H
2#define _FS_CEPH_OSDMAP_H
3
4#include <linux/rbtree.h>
David Howellsa1ce3922012-10-02 18:01:25 +01005#include <linux/ceph/types.h>
Alex Elderef4859d2013-04-01 18:58:26 -05006#include <linux/ceph/decode.h>
David Howellsa1ce3922012-10-02 18:01:25 +01007#include <linux/ceph/ceph_fs.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07008#include <linux/crush/crush.h>
Sage Weilf24e9982009-10-06 11:31:10 -07009
10/*
11 * The osd map describes the current membership of the osd cluster and
12 * specifies the mapping of objects to placement groups and placement
13 * groups to (sets of) osds. That is, it completely specifies the
14 * (desired) distribution of all data objects in the system at some
15 * point in time.
16 *
17 * Each map version is identified by an epoch, which increases monotonically.
18 *
19 * The map can be updated either via an incremental map (diff) describing
20 * the change between two successive epochs, or as a fully encoded map.
21 */
Sage Weil5b191d92013-02-23 10:38:16 -080022struct ceph_pg {
23 uint64_t pool;
24 uint32_t seed;
25};
26
Ilya Dryomovdc98ff72017-06-15 16:30:53 +020027#define CEPH_SPG_NOSHARD -1
28
29struct ceph_spg {
30 struct ceph_pg pgid;
31 s8 shard;
32};
33
Ilya Dryomovf984cb72016-04-28 16:07:23 +020034int ceph_pg_compare(const struct ceph_pg *lhs, const struct ceph_pg *rhs);
Ilya Dryomova02a9462017-06-19 12:18:05 +020035int ceph_spg_compare(const struct ceph_spg *lhs, const struct ceph_spg *rhs);
Ilya Dryomovf984cb72016-04-28 16:07:23 +020036
Ilya Dryomov04812ac2016-04-28 16:07:23 +020037#define CEPH_POOL_FLAG_HASHPSPOOL (1ULL << 0) /* hash pg seed and pool id
38 together */
Ilya Dryomov63244fa2016-04-28 16:07:23 +020039#define CEPH_POOL_FLAG_FULL (1ULL << 1) /* pool is full */
Sage Weil83ca14f2013-02-26 10:39:09 -080040
Sage Weilf24e9982009-10-06 11:31:10 -070041struct ceph_pg_pool_info {
Sage Weil4fc51be2010-02-16 15:55:03 -080042 struct rb_node node;
Sage Weil4f6a7e52013-02-23 10:41:09 -080043 s64 id;
Ilya Dryomov04812ac2016-04-28 16:07:23 +020044 u8 type; /* CEPH_POOL_TYPE_* */
Sage Weil4f6a7e52013-02-23 10:41:09 -080045 u8 size;
Ilya Dryomov04812ac2016-04-28 16:07:23 +020046 u8 min_size;
Sage Weil4f6a7e52013-02-23 10:41:09 -080047 u8 crush_ruleset;
48 u8 object_hash;
Ilya Dryomov04812ac2016-04-28 16:07:23 +020049 u32 last_force_request_resend;
Sage Weil4f6a7e52013-02-23 10:41:09 -080050 u32 pg_num, pgp_num;
51 int pg_num_mask, pgp_num_mask;
Ilya Dryomov17a13e402014-01-27 17:40:19 +020052 s64 read_tier;
53 s64 write_tier; /* wins for read+write ops */
Ilya Dryomov04812ac2016-04-28 16:07:23 +020054 u64 flags; /* CEPH_POOL_FLAG_* */
Sage Weil2844a762010-04-09 15:46:42 -070055 char *name;
Ilya Dryomov42c1b122016-04-28 16:07:25 +020056
57 bool was_full; /* for handle_one_map() */
Sage Weilf24e9982009-10-06 11:31:10 -070058};
59
Ilya Dryomov2abebdb2014-03-24 17:12:47 +020060static inline bool ceph_can_shift_osds(struct ceph_pg_pool_info *pool)
61{
62 switch (pool->type) {
63 case CEPH_POOL_TYPE_REP:
64 return true;
65 case CEPH_POOL_TYPE_EC:
66 return false;
67 default:
Arnd Bergmannd24cdcd2017-01-16 12:06:09 +010068 BUG();
Ilya Dryomov2abebdb2014-03-24 17:12:47 +020069 }
70}
71
Sage Weil4f6a7e52013-02-23 10:41:09 -080072struct ceph_object_locator {
Ilya Dryomov221165252014-01-27 17:40:18 +020073 s64 pool;
Yan, Zheng30c156d2016-02-14 11:24:31 +080074 struct ceph_string *pool_ns;
Sage Weil4f6a7e52013-02-23 10:41:09 -080075};
76
Ilya Dryomov63244fa2016-04-28 16:07:23 +020077static inline void ceph_oloc_init(struct ceph_object_locator *oloc)
78{
79 oloc->pool = -1;
Yan, Zheng30c156d2016-02-14 11:24:31 +080080 oloc->pool_ns = NULL;
Ilya Dryomov63244fa2016-04-28 16:07:23 +020081}
82
83static inline bool ceph_oloc_empty(const struct ceph_object_locator *oloc)
84{
85 return oloc->pool == -1;
86}
87
Yan, Zheng30c156d2016-02-14 11:24:31 +080088void ceph_oloc_copy(struct ceph_object_locator *dest,
89 const struct ceph_object_locator *src);
90void ceph_oloc_destroy(struct ceph_object_locator *oloc);
Ilya Dryomov63244fa2016-04-28 16:07:23 +020091
Ilya Dryomov4295f222014-01-27 17:40:18 +020092/*
Ilya Dryomovd30291b2016-04-29 19:54:20 +020093 * 51-char inline_name is long enough for all cephfs and all but one
94 * rbd requests: <imgname> in "<imgname>.rbd"/"rbd_id.<imgname>" can be
95 * arbitrarily long (~PAGE_SIZE). It's done once during rbd map; all
96 * other rbd requests fit into inline_name.
97 *
98 * Makes ceph_object_id 64 bytes on 64-bit.
99 */
100#define CEPH_OID_INLINE_LEN 52
101
102/*
103 * Both inline and external buffers have space for a NUL-terminator,
104 * which is carried around. It's not required though - RADOS object
105 * names don't have to be NUL-terminated and may contain NULs.
106 */
Ilya Dryomov4295f222014-01-27 17:40:18 +0200107struct ceph_object_id {
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200108 char *name;
109 char inline_name[CEPH_OID_INLINE_LEN];
Ilya Dryomov4295f222014-01-27 17:40:18 +0200110 int name_len;
111};
112
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200113static inline void ceph_oid_init(struct ceph_object_id *oid)
114{
115 oid->name = oid->inline_name;
116 oid->name_len = 0;
117}
118
Ilya Dryomov281dbe52016-07-26 15:22:35 +0200119#define CEPH_OID_INIT_ONSTACK(oid) \
120 ({ ceph_oid_init(&oid); oid; })
121#define CEPH_DEFINE_OID_ONSTACK(oid) \
122 struct ceph_object_id oid = CEPH_OID_INIT_ONSTACK(oid)
123
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200124static inline bool ceph_oid_empty(const struct ceph_object_id *oid)
125{
126 return oid->name == oid->inline_name && !oid->name_len;
127}
128
129void ceph_oid_copy(struct ceph_object_id *dest,
130 const struct ceph_object_id *src);
131__printf(2, 3)
132void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...);
133__printf(3, 4)
134int ceph_oid_aprintf(struct ceph_object_id *oid, gfp_t gfp,
135 const char *fmt, ...);
136void ceph_oid_destroy(struct ceph_object_id *oid);
137
Sage Weilf24e9982009-10-06 11:31:10 -0700138struct ceph_pg_mapping {
139 struct rb_node node;
Sage Weil5b191d92013-02-23 10:38:16 -0800140 struct ceph_pg pgid;
Ilya Dryomov35a935d2014-03-21 19:05:29 +0200141
142 union {
143 struct {
144 int len;
145 int osds[];
Ilya Dryomov6f428df2017-06-21 17:27:18 +0200146 } pg_temp, pg_upmap;
Ilya Dryomov9686f942014-03-21 19:05:29 +0200147 struct {
148 int osd;
149 } primary_temp;
Ilya Dryomov6f428df2017-06-21 17:27:18 +0200150 struct {
151 int len;
152 int from_to[][2];
153 } pg_upmap_items;
Ilya Dryomov35a935d2014-03-21 19:05:29 +0200154 };
Sage Weilf24e9982009-10-06 11:31:10 -0700155};
156
157struct ceph_osdmap {
158 struct ceph_fsid fsid;
159 u32 epoch;
Sage Weilf24e9982009-10-06 11:31:10 -0700160 struct ceph_timespec created, modified;
161
162 u32 flags; /* CEPH_OSDMAP_* */
163
164 u32 max_osd; /* size of osd_state, _offload, _addr arrays */
Ilya Dryomov0bb05da2017-06-22 19:44:06 +0200165 u32 *osd_state; /* CEPH_OSD_* */
Sage Weilf24e9982009-10-06 11:31:10 -0700166 u32 *osd_weight; /* 0 = failed, 0x10000 = 100% normal */
167 struct ceph_entity_addr *osd_addr;
168
169 struct rb_root pg_temp;
Ilya Dryomov9686f942014-03-21 19:05:29 +0200170 struct rb_root primary_temp;
171
Ilya Dryomov6f428df2017-06-21 17:27:18 +0200172 /* remap (post-CRUSH, pre-up) */
173 struct rb_root pg_upmap; /* PG := raw set */
174 struct rb_root pg_upmap_items; /* from -> to within raw set */
175
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +0200176 u32 *osd_primary_affinity;
177
Sage Weil4fc51be2010-02-16 15:55:03 -0800178 struct rb_root pg_pools;
179 u32 pool_max;
Sage Weilf24e9982009-10-06 11:31:10 -0700180
181 /* the CRUSH map specifies the mapping of placement groups to
182 * the list of osds that store+replicate them. */
183 struct crush_map *crush;
Ilya Dryomov9d521472014-01-31 17:54:26 +0200184
Ilya Dryomov743efcf2017-01-31 15:55:06 +0100185 struct mutex crush_workspace_mutex;
Ilya Dryomov66a0e2d2017-01-31 15:55:06 +0100186 void *crush_workspace;
Sage Weilf24e9982009-10-06 11:31:10 -0700187};
188
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400189static inline bool ceph_osd_exists(struct ceph_osdmap *map, int osd)
Ilya Dryomov246138f2014-03-24 17:12:46 +0200190{
191 return osd >= 0 && osd < map->max_osd &&
192 (map->osd_state[osd] & CEPH_OSD_EXISTS);
193}
194
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400195static inline bool ceph_osd_is_up(struct ceph_osdmap *map, int osd)
Sage Weilf24e9982009-10-06 11:31:10 -0700196{
Ilya Dryomov246138f2014-03-24 17:12:46 +0200197 return ceph_osd_exists(map, osd) &&
198 (map->osd_state[osd] & CEPH_OSD_UP);
199}
200
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400201static inline bool ceph_osd_is_down(struct ceph_osdmap *map, int osd)
Ilya Dryomov246138f2014-03-24 17:12:46 +0200202{
203 return !ceph_osd_is_up(map, osd);
Sage Weilf24e9982009-10-06 11:31:10 -0700204}
205
Ilya Dryomov0bb05da2017-06-22 19:44:06 +0200206char *ceph_osdmap_state_str(char *str, int len, u32 state);
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +0200207extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd);
Sage Weilf24e9982009-10-06 11:31:10 -0700208
209static inline struct ceph_entity_addr *ceph_osd_addr(struct ceph_osdmap *map,
210 int osd)
211{
212 if (osd >= map->max_osd)
213 return NULL;
214 return &map->osd_addr[osd];
215}
216
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200217#define CEPH_PGID_ENCODING_LEN (1 + 8 + 4 + 4)
218
Alex Elderef4859d2013-04-01 18:58:26 -0500219static inline int ceph_decode_pgid(void **p, void *end, struct ceph_pg *pgid)
220{
221 __u8 version;
222
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200223 if (!ceph_has_room(p, end, CEPH_PGID_ENCODING_LEN)) {
Joe Perches3ef650d2015-03-23 13:35:03 -0700224 pr_warn("incomplete pg encoding\n");
Alex Elderef4859d2013-04-01 18:58:26 -0500225 return -EINVAL;
226 }
227 version = ceph_decode_8(p);
228 if (version > 1) {
Joe Perches3ef650d2015-03-23 13:35:03 -0700229 pr_warn("do not understand pg encoding %d > 1\n",
Alex Elderef4859d2013-04-01 18:58:26 -0500230 (int)version);
231 return -EINVAL;
232 }
233
234 pgid->pool = ceph_decode_64(p);
235 pgid->seed = ceph_decode_32(p);
236 *p += 4; /* skip deprecated preferred value */
237
238 return 0;
239}
240
Ilya Dryomove5253a72016-04-28 16:07:25 +0200241struct ceph_osdmap *ceph_osdmap_alloc(void);
Ilya Dryomova2505d62014-03-13 16:36:13 +0200242extern struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end);
Ilya Dryomov0c0a8de2016-04-28 16:07:21 +0200243struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end,
244 struct ceph_osdmap *map);
Sage Weilf24e9982009-10-06 11:31:10 -0700245extern void ceph_osdmap_destroy(struct ceph_osdmap *map);
246
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +0200247struct ceph_osds {
248 int osds[CEPH_PG_MAX_SIZE];
249 int size;
250 int primary; /* id, NOT index */
251};
252
253static inline void ceph_osds_init(struct ceph_osds *set)
254{
255 set->size = 0;
256 set->primary = -1;
257}
258
259void ceph_osds_copy(struct ceph_osds *dest, const struct ceph_osds *src);
260
Ilya Dryomov7de030d2017-06-15 16:30:54 +0200261bool ceph_pg_is_split(const struct ceph_pg *pgid, u32 old_pg_num,
262 u32 new_pg_num);
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200263bool ceph_is_new_interval(const struct ceph_osds *old_acting,
264 const struct ceph_osds *new_acting,
265 const struct ceph_osds *old_up,
266 const struct ceph_osds *new_up,
267 int old_size,
268 int new_size,
269 int old_min_size,
270 int new_min_size,
271 u32 old_pg_num,
272 u32 new_pg_num,
273 bool old_sort_bitwise,
274 bool new_sort_bitwise,
Ilya Dryomovae78dd82017-07-27 17:59:14 +0200275 bool old_recovery_deletes,
276 bool new_recovery_deletes,
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200277 const struct ceph_pg *pgid);
278bool ceph_osds_changed(const struct ceph_osds *old_acting,
279 const struct ceph_osds *new_acting,
280 bool any_change);
281
Sage Weilf24e9982009-10-06 11:31:10 -0700282/* calculate mapping of a file extent to an object */
Sage Weild63b77f2012-09-24 20:59:48 -0700283extern int ceph_calc_file_object_mapping(struct ceph_file_layout *layout,
Alex Eldere8afad62012-11-14 09:38:19 -0600284 u64 off, u64 len,
Sage Weild63b77f2012-09-24 20:59:48 -0700285 u64 *bno, u64 *oxoff, u64 *oxlen);
Sage Weilf24e9982009-10-06 11:31:10 -0700286
Ilya Dryomovdf281522017-06-15 16:30:56 +0200287int __ceph_object_locator_to_pg(struct ceph_pg_pool_info *pi,
288 const struct ceph_object_id *oid,
289 const struct ceph_object_locator *oloc,
290 struct ceph_pg *raw_pgid);
Ilya Dryomovd9591f52016-04-28 16:07:22 +0200291int ceph_object_locator_to_pg(struct ceph_osdmap *osdmap,
Ilya Dryomovdf281522017-06-15 16:30:56 +0200292 const struct ceph_object_id *oid,
293 const struct ceph_object_locator *oloc,
Ilya Dryomovd9591f52016-04-28 16:07:22 +0200294 struct ceph_pg *raw_pgid);
Ilya Dryomov7c13cb62014-01-27 17:40:19 +0200295
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +0200296void ceph_pg_to_up_acting_osds(struct ceph_osdmap *osdmap,
Ilya Dryomovdf281522017-06-15 16:30:56 +0200297 struct ceph_pg_pool_info *pi,
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +0200298 const struct ceph_pg *raw_pgid,
299 struct ceph_osds *up,
300 struct ceph_osds *acting);
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200301bool ceph_pg_to_primary_shard(struct ceph_osdmap *osdmap,
Ilya Dryomovdf281522017-06-15 16:30:56 +0200302 struct ceph_pg_pool_info *pi,
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200303 const struct ceph_pg *raw_pgid,
304 struct ceph_spg *spgid);
Ilya Dryomovf81f1632016-04-28 16:07:23 +0200305int ceph_pg_to_acting_primary(struct ceph_osdmap *osdmap,
306 const struct ceph_pg *raw_pgid);
Sage Weilf24e9982009-10-06 11:31:10 -0700307
Ilya Dryomovce7f6a22014-01-27 17:40:19 +0200308extern struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map,
309 u64 id);
310
Alex Elder72afc712012-10-30 19:40:33 -0500311extern const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id);
Yehuda Sadeh7669a2c2010-05-17 12:31:35 -0700312extern int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name);
313
Sage Weilf24e9982009-10-06 11:31:10 -0700314#endif