blob: 9a9041784dcff383169a169c39203dd79f383438 [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 Dryomovf984cb72016-04-28 16:07:23 +020027int ceph_pg_compare(const struct ceph_pg *lhs, const struct ceph_pg *rhs);
28
Ilya Dryomov04812ac2016-04-28 16:07:23 +020029#define CEPH_POOL_FLAG_HASHPSPOOL (1ULL << 0) /* hash pg seed and pool id
30 together */
Ilya Dryomov63244fa2016-04-28 16:07:23 +020031#define CEPH_POOL_FLAG_FULL (1ULL << 1) /* pool is full */
Sage Weil83ca14f2013-02-26 10:39:09 -080032
Sage Weilf24e9982009-10-06 11:31:10 -070033struct ceph_pg_pool_info {
Sage Weil4fc51be2010-02-16 15:55:03 -080034 struct rb_node node;
Sage Weil4f6a7e52013-02-23 10:41:09 -080035 s64 id;
Ilya Dryomov04812ac2016-04-28 16:07:23 +020036 u8 type; /* CEPH_POOL_TYPE_* */
Sage Weil4f6a7e52013-02-23 10:41:09 -080037 u8 size;
Ilya Dryomov04812ac2016-04-28 16:07:23 +020038 u8 min_size;
Sage Weil4f6a7e52013-02-23 10:41:09 -080039 u8 crush_ruleset;
40 u8 object_hash;
Ilya Dryomov04812ac2016-04-28 16:07:23 +020041 u32 last_force_request_resend;
Sage Weil4f6a7e52013-02-23 10:41:09 -080042 u32 pg_num, pgp_num;
43 int pg_num_mask, pgp_num_mask;
Ilya Dryomov17a13e42014-01-27 17:40:19 +020044 s64 read_tier;
45 s64 write_tier; /* wins for read+write ops */
Ilya Dryomov04812ac2016-04-28 16:07:23 +020046 u64 flags; /* CEPH_POOL_FLAG_* */
Sage Weil2844a762010-04-09 15:46:42 -070047 char *name;
Ilya Dryomov42c1b122016-04-28 16:07:25 +020048
49 bool was_full; /* for handle_one_map() */
Sage Weilf24e9982009-10-06 11:31:10 -070050};
51
Ilya Dryomov2abebdb2014-03-24 17:12:47 +020052static inline bool ceph_can_shift_osds(struct ceph_pg_pool_info *pool)
53{
54 switch (pool->type) {
55 case CEPH_POOL_TYPE_REP:
56 return true;
57 case CEPH_POOL_TYPE_EC:
58 return false;
59 default:
60 BUG_ON(1);
61 }
62}
63
Sage Weil4f6a7e52013-02-23 10:41:09 -080064struct ceph_object_locator {
Ilya Dryomov221165252014-01-27 17:40:18 +020065 s64 pool;
Yan, Zheng30c156d2016-02-14 11:24:31 +080066 struct ceph_string *pool_ns;
Sage Weil4f6a7e52013-02-23 10:41:09 -080067};
68
Ilya Dryomov63244fa2016-04-28 16:07:23 +020069static inline void ceph_oloc_init(struct ceph_object_locator *oloc)
70{
71 oloc->pool = -1;
Yan, Zheng30c156d2016-02-14 11:24:31 +080072 oloc->pool_ns = NULL;
Ilya Dryomov63244fa2016-04-28 16:07:23 +020073}
74
75static inline bool ceph_oloc_empty(const struct ceph_object_locator *oloc)
76{
77 return oloc->pool == -1;
78}
79
Yan, Zheng30c156d2016-02-14 11:24:31 +080080void ceph_oloc_copy(struct ceph_object_locator *dest,
81 const struct ceph_object_locator *src);
82void ceph_oloc_destroy(struct ceph_object_locator *oloc);
Ilya Dryomov63244fa2016-04-28 16:07:23 +020083
Ilya Dryomov4295f222014-01-27 17:40:18 +020084/*
85 * Maximum supported by kernel client object name length
86 *
87 * (probably outdated: must be >= RBD_MAX_MD_NAME_LEN -- currently 100)
88 */
89#define CEPH_MAX_OID_NAME_LEN 100
90
Ilya Dryomovd30291b2016-04-29 19:54:20 +020091/*
92 * 51-char inline_name is long enough for all cephfs and all but one
93 * rbd requests: <imgname> in "<imgname>.rbd"/"rbd_id.<imgname>" can be
94 * arbitrarily long (~PAGE_SIZE). It's done once during rbd map; all
95 * other rbd requests fit into inline_name.
96 *
97 * Makes ceph_object_id 64 bytes on 64-bit.
98 */
99#define CEPH_OID_INLINE_LEN 52
100
101/*
102 * Both inline and external buffers have space for a NUL-terminator,
103 * which is carried around. It's not required though - RADOS object
104 * names don't have to be NUL-terminated and may contain NULs.
105 */
Ilya Dryomov4295f222014-01-27 17:40:18 +0200106struct ceph_object_id {
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200107 char *name;
108 char inline_name[CEPH_OID_INLINE_LEN];
Ilya Dryomov4295f222014-01-27 17:40:18 +0200109 int name_len;
110};
111
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200112static inline void ceph_oid_init(struct ceph_object_id *oid)
113{
114 oid->name = oid->inline_name;
115 oid->name_len = 0;
116}
117
Ilya Dryomov281dbe52016-07-26 15:22:35 +0200118#define CEPH_OID_INIT_ONSTACK(oid) \
119 ({ ceph_oid_init(&oid); oid; })
120#define CEPH_DEFINE_OID_ONSTACK(oid) \
121 struct ceph_object_id oid = CEPH_OID_INIT_ONSTACK(oid)
122
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200123static inline bool ceph_oid_empty(const struct ceph_object_id *oid)
124{
125 return oid->name == oid->inline_name && !oid->name_len;
126}
127
128void ceph_oid_copy(struct ceph_object_id *dest,
129 const struct ceph_object_id *src);
130__printf(2, 3)
131void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...);
132__printf(3, 4)
133int ceph_oid_aprintf(struct ceph_object_id *oid, gfp_t gfp,
134 const char *fmt, ...);
135void ceph_oid_destroy(struct ceph_object_id *oid);
136
Sage Weilf24e9982009-10-06 11:31:10 -0700137struct ceph_pg_mapping {
138 struct rb_node node;
Sage Weil5b191d92013-02-23 10:38:16 -0800139 struct ceph_pg pgid;
Ilya Dryomov35a935d2014-03-21 19:05:29 +0200140
141 union {
142 struct {
143 int len;
144 int osds[];
145 } pg_temp;
Ilya Dryomov9686f942014-03-21 19:05:29 +0200146 struct {
147 int osd;
148 } primary_temp;
Ilya Dryomov35a935d2014-03-21 19:05:29 +0200149 };
Sage Weilf24e9982009-10-06 11:31:10 -0700150};
151
152struct ceph_osdmap {
153 struct ceph_fsid fsid;
154 u32 epoch;
Sage Weilf24e9982009-10-06 11:31:10 -0700155 struct ceph_timespec created, modified;
156
157 u32 flags; /* CEPH_OSDMAP_* */
158
159 u32 max_osd; /* size of osd_state, _offload, _addr arrays */
160 u8 *osd_state; /* CEPH_OSD_* */
161 u32 *osd_weight; /* 0 = failed, 0x10000 = 100% normal */
162 struct ceph_entity_addr *osd_addr;
163
164 struct rb_root pg_temp;
Ilya Dryomov9686f942014-03-21 19:05:29 +0200165 struct rb_root primary_temp;
166
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +0200167 u32 *osd_primary_affinity;
168
Sage Weil4fc51be2010-02-16 15:55:03 -0800169 struct rb_root pg_pools;
170 u32 pool_max;
Sage Weilf24e9982009-10-06 11:31:10 -0700171
172 /* the CRUSH map specifies the mapping of placement groups to
173 * the list of osds that store+replicate them. */
174 struct crush_map *crush;
Ilya Dryomov9d521472014-01-31 17:54:26 +0200175
176 struct mutex crush_scratch_mutex;
177 int crush_scratch_ary[CEPH_PG_MAX_SIZE * 3];
Sage Weilf24e9982009-10-06 11:31:10 -0700178};
179
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400180static inline bool ceph_osd_exists(struct ceph_osdmap *map, int osd)
Ilya Dryomov246138f2014-03-24 17:12:46 +0200181{
182 return osd >= 0 && osd < map->max_osd &&
183 (map->osd_state[osd] & CEPH_OSD_EXISTS);
184}
185
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400186static inline bool ceph_osd_is_up(struct ceph_osdmap *map, int osd)
Sage Weilf24e9982009-10-06 11:31:10 -0700187{
Ilya Dryomov246138f2014-03-24 17:12:46 +0200188 return ceph_osd_exists(map, osd) &&
189 (map->osd_state[osd] & CEPH_OSD_UP);
190}
191
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400192static inline bool ceph_osd_is_down(struct ceph_osdmap *map, int osd)
Ilya Dryomov246138f2014-03-24 17:12:46 +0200193{
194 return !ceph_osd_is_up(map, osd);
Sage Weilf24e9982009-10-06 11:31:10 -0700195}
196
Sage Weilf24e9982009-10-06 11:31:10 -0700197extern char *ceph_osdmap_state_str(char *str, int len, int state);
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +0200198extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd);
Sage Weilf24e9982009-10-06 11:31:10 -0700199
200static inline struct ceph_entity_addr *ceph_osd_addr(struct ceph_osdmap *map,
201 int osd)
202{
203 if (osd >= map->max_osd)
204 return NULL;
205 return &map->osd_addr[osd];
206}
207
Alex Elderef4859d2013-04-01 18:58:26 -0500208static inline int ceph_decode_pgid(void **p, void *end, struct ceph_pg *pgid)
209{
210 __u8 version;
211
212 if (!ceph_has_room(p, end, 1 + 8 + 4 + 4)) {
Joe Perches3ef650d2015-03-23 13:35:03 -0700213 pr_warn("incomplete pg encoding\n");
Alex Elderef4859d2013-04-01 18:58:26 -0500214 return -EINVAL;
215 }
216 version = ceph_decode_8(p);
217 if (version > 1) {
Joe Perches3ef650d2015-03-23 13:35:03 -0700218 pr_warn("do not understand pg encoding %d > 1\n",
Alex Elderef4859d2013-04-01 18:58:26 -0500219 (int)version);
220 return -EINVAL;
221 }
222
223 pgid->pool = ceph_decode_64(p);
224 pgid->seed = ceph_decode_32(p);
225 *p += 4; /* skip deprecated preferred value */
226
227 return 0;
228}
229
Ilya Dryomove5253a72016-04-28 16:07:25 +0200230struct ceph_osdmap *ceph_osdmap_alloc(void);
Ilya Dryomova2505d62014-03-13 16:36:13 +0200231extern struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end);
Ilya Dryomov0c0a8de2016-04-28 16:07:21 +0200232struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end,
233 struct ceph_osdmap *map);
Sage Weilf24e9982009-10-06 11:31:10 -0700234extern void ceph_osdmap_destroy(struct ceph_osdmap *map);
235
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +0200236struct ceph_osds {
237 int osds[CEPH_PG_MAX_SIZE];
238 int size;
239 int primary; /* id, NOT index */
240};
241
242static inline void ceph_osds_init(struct ceph_osds *set)
243{
244 set->size = 0;
245 set->primary = -1;
246}
247
248void ceph_osds_copy(struct ceph_osds *dest, const struct ceph_osds *src);
249
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200250bool ceph_is_new_interval(const struct ceph_osds *old_acting,
251 const struct ceph_osds *new_acting,
252 const struct ceph_osds *old_up,
253 const struct ceph_osds *new_up,
254 int old_size,
255 int new_size,
256 int old_min_size,
257 int new_min_size,
258 u32 old_pg_num,
259 u32 new_pg_num,
260 bool old_sort_bitwise,
261 bool new_sort_bitwise,
262 const struct ceph_pg *pgid);
263bool ceph_osds_changed(const struct ceph_osds *old_acting,
264 const struct ceph_osds *new_acting,
265 bool any_change);
266
Sage Weilf24e9982009-10-06 11:31:10 -0700267/* calculate mapping of a file extent to an object */
Sage Weild63b77f2012-09-24 20:59:48 -0700268extern int ceph_calc_file_object_mapping(struct ceph_file_layout *layout,
Alex Eldere8afad62012-11-14 09:38:19 -0600269 u64 off, u64 len,
Sage Weild63b77f2012-09-24 20:59:48 -0700270 u64 *bno, u64 *oxoff, u64 *oxlen);
Sage Weilf24e9982009-10-06 11:31:10 -0700271
Ilya Dryomovd9591f52016-04-28 16:07:22 +0200272int ceph_object_locator_to_pg(struct ceph_osdmap *osdmap,
273 struct ceph_object_id *oid,
274 struct ceph_object_locator *oloc,
275 struct ceph_pg *raw_pgid);
Ilya Dryomov7c13cb62014-01-27 17:40:19 +0200276
Ilya Dryomov6f3bfd42016-04-28 16:07:22 +0200277void ceph_pg_to_up_acting_osds(struct ceph_osdmap *osdmap,
278 const struct ceph_pg *raw_pgid,
279 struct ceph_osds *up,
280 struct ceph_osds *acting);
Ilya Dryomovf81f1632016-04-28 16:07:23 +0200281int ceph_pg_to_acting_primary(struct ceph_osdmap *osdmap,
282 const struct ceph_pg *raw_pgid);
Sage Weilf24e9982009-10-06 11:31:10 -0700283
Ilya Dryomovce7f6a22014-01-27 17:40:19 +0200284extern struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map,
285 u64 id);
286
Alex Elder72afc712012-10-30 19:40:33 -0500287extern const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id);
Yehuda Sadeh7669a2c2010-05-17 12:31:35 -0700288extern int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name);
289
Sage Weilf24e9982009-10-06 11:31:10 -0700290#endif