blob: 777a29412706ffc6dbef24c7bc7a35bc18829f99 [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
Sage Weil83ca14f2013-02-26 10:39:09 -080027#define CEPH_POOL_FLAG_HASHPSPOOL 1
28
Sage Weilf24e9982009-10-06 11:31:10 -070029struct ceph_pg_pool_info {
Sage Weil4fc51be2010-02-16 15:55:03 -080030 struct rb_node node;
Sage Weil4f6a7e52013-02-23 10:41:09 -080031 s64 id;
32 u8 type;
33 u8 size;
34 u8 crush_ruleset;
35 u8 object_hash;
36 u32 pg_num, pgp_num;
37 int pg_num_mask, pgp_num_mask;
Ilya Dryomov17a13e402014-01-27 17:40:19 +020038 s64 read_tier;
39 s64 write_tier; /* wins for read+write ops */
Sage Weil4f6a7e52013-02-23 10:41:09 -080040 u64 flags;
Sage Weil2844a762010-04-09 15:46:42 -070041 char *name;
Sage Weilf24e9982009-10-06 11:31:10 -070042};
43
Ilya Dryomov2abebdb2014-03-24 17:12:47 +020044static inline bool ceph_can_shift_osds(struct ceph_pg_pool_info *pool)
45{
46 switch (pool->type) {
47 case CEPH_POOL_TYPE_REP:
48 return true;
49 case CEPH_POOL_TYPE_EC:
50 return false;
51 default:
52 BUG_ON(1);
53 }
54}
55
Sage Weil4f6a7e52013-02-23 10:41:09 -080056struct ceph_object_locator {
Ilya Dryomov221165252014-01-27 17:40:18 +020057 s64 pool;
Sage Weil4f6a7e52013-02-23 10:41:09 -080058};
59
Ilya Dryomov4295f222014-01-27 17:40:18 +020060/*
61 * Maximum supported by kernel client object name length
62 *
63 * (probably outdated: must be >= RBD_MAX_MD_NAME_LEN -- currently 100)
64 */
65#define CEPH_MAX_OID_NAME_LEN 100
66
Ilya Dryomovd30291b2016-04-29 19:54:20 +020067/*
68 * 51-char inline_name is long enough for all cephfs and all but one
69 * rbd requests: <imgname> in "<imgname>.rbd"/"rbd_id.<imgname>" can be
70 * arbitrarily long (~PAGE_SIZE). It's done once during rbd map; all
71 * other rbd requests fit into inline_name.
72 *
73 * Makes ceph_object_id 64 bytes on 64-bit.
74 */
75#define CEPH_OID_INLINE_LEN 52
76
77/*
78 * Both inline and external buffers have space for a NUL-terminator,
79 * which is carried around. It's not required though - RADOS object
80 * names don't have to be NUL-terminated and may contain NULs.
81 */
Ilya Dryomov4295f222014-01-27 17:40:18 +020082struct ceph_object_id {
Ilya Dryomovd30291b2016-04-29 19:54:20 +020083 char *name;
84 char inline_name[CEPH_OID_INLINE_LEN];
Ilya Dryomov4295f222014-01-27 17:40:18 +020085 int name_len;
86};
87
Ilya Dryomovd30291b2016-04-29 19:54:20 +020088static inline void ceph_oid_init(struct ceph_object_id *oid)
89{
90 oid->name = oid->inline_name;
91 oid->name_len = 0;
92}
93
94static inline bool ceph_oid_empty(const struct ceph_object_id *oid)
95{
96 return oid->name == oid->inline_name && !oid->name_len;
97}
98
99void ceph_oid_copy(struct ceph_object_id *dest,
100 const struct ceph_object_id *src);
101__printf(2, 3)
102void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...);
103__printf(3, 4)
104int ceph_oid_aprintf(struct ceph_object_id *oid, gfp_t gfp,
105 const char *fmt, ...);
106void ceph_oid_destroy(struct ceph_object_id *oid);
107
Sage Weilf24e9982009-10-06 11:31:10 -0700108struct ceph_pg_mapping {
109 struct rb_node node;
Sage Weil5b191d92013-02-23 10:38:16 -0800110 struct ceph_pg pgid;
Ilya Dryomov35a935d2014-03-21 19:05:29 +0200111
112 union {
113 struct {
114 int len;
115 int osds[];
116 } pg_temp;
Ilya Dryomov9686f942014-03-21 19:05:29 +0200117 struct {
118 int osd;
119 } primary_temp;
Ilya Dryomov35a935d2014-03-21 19:05:29 +0200120 };
Sage Weilf24e9982009-10-06 11:31:10 -0700121};
122
123struct ceph_osdmap {
124 struct ceph_fsid fsid;
125 u32 epoch;
126 u32 mkfs_epoch;
127 struct ceph_timespec created, modified;
128
129 u32 flags; /* CEPH_OSDMAP_* */
130
131 u32 max_osd; /* size of osd_state, _offload, _addr arrays */
132 u8 *osd_state; /* CEPH_OSD_* */
133 u32 *osd_weight; /* 0 = failed, 0x10000 = 100% normal */
134 struct ceph_entity_addr *osd_addr;
135
136 struct rb_root pg_temp;
Ilya Dryomov9686f942014-03-21 19:05:29 +0200137 struct rb_root primary_temp;
138
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +0200139 u32 *osd_primary_affinity;
140
Sage Weil4fc51be2010-02-16 15:55:03 -0800141 struct rb_root pg_pools;
142 u32 pool_max;
Sage Weilf24e9982009-10-06 11:31:10 -0700143
144 /* the CRUSH map specifies the mapping of placement groups to
145 * the list of osds that store+replicate them. */
146 struct crush_map *crush;
Ilya Dryomov9d521472014-01-31 17:54:26 +0200147
148 struct mutex crush_scratch_mutex;
149 int crush_scratch_ary[CEPH_PG_MAX_SIZE * 3];
Sage Weilf24e9982009-10-06 11:31:10 -0700150};
151
Ilya Dryomov246138f2014-03-24 17:12:46 +0200152static inline int ceph_osd_exists(struct ceph_osdmap *map, int osd)
153{
154 return osd >= 0 && osd < map->max_osd &&
155 (map->osd_state[osd] & CEPH_OSD_EXISTS);
156}
157
Sage Weilf24e9982009-10-06 11:31:10 -0700158static inline int ceph_osd_is_up(struct ceph_osdmap *map, int osd)
159{
Ilya Dryomov246138f2014-03-24 17:12:46 +0200160 return ceph_osd_exists(map, osd) &&
161 (map->osd_state[osd] & CEPH_OSD_UP);
162}
163
164static inline int ceph_osd_is_down(struct ceph_osdmap *map, int osd)
165{
166 return !ceph_osd_is_up(map, osd);
Sage Weilf24e9982009-10-06 11:31:10 -0700167}
168
169static inline bool ceph_osdmap_flag(struct ceph_osdmap *map, int flag)
170{
171 return map && (map->flags & flag);
172}
173
174extern char *ceph_osdmap_state_str(char *str, int len, int state);
Ilya Dryomov2cfa34f2014-03-21 19:05:30 +0200175extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd);
Sage Weilf24e9982009-10-06 11:31:10 -0700176
177static inline struct ceph_entity_addr *ceph_osd_addr(struct ceph_osdmap *map,
178 int osd)
179{
180 if (osd >= map->max_osd)
181 return NULL;
182 return &map->osd_addr[osd];
183}
184
Alex Elderef4859d2013-04-01 18:58:26 -0500185static inline int ceph_decode_pgid(void **p, void *end, struct ceph_pg *pgid)
186{
187 __u8 version;
188
189 if (!ceph_has_room(p, end, 1 + 8 + 4 + 4)) {
Joe Perches3ef650d2015-03-23 13:35:03 -0700190 pr_warn("incomplete pg encoding\n");
Alex Elderef4859d2013-04-01 18:58:26 -0500191 return -EINVAL;
192 }
193 version = ceph_decode_8(p);
194 if (version > 1) {
Joe Perches3ef650d2015-03-23 13:35:03 -0700195 pr_warn("do not understand pg encoding %d > 1\n",
Alex Elderef4859d2013-04-01 18:58:26 -0500196 (int)version);
197 return -EINVAL;
198 }
199
200 pgid->pool = ceph_decode_64(p);
201 pgid->seed = ceph_decode_32(p);
202 *p += 4; /* skip deprecated preferred value */
203
204 return 0;
205}
206
Ilya Dryomova2505d62014-03-13 16:36:13 +0200207extern struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end);
Sage Weilf24e9982009-10-06 11:31:10 -0700208extern struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end,
209 struct ceph_osdmap *map,
210 struct ceph_messenger *msgr);
211extern void ceph_osdmap_destroy(struct ceph_osdmap *map);
212
213/* calculate mapping of a file extent to an object */
Sage Weild63b77f2012-09-24 20:59:48 -0700214extern int ceph_calc_file_object_mapping(struct ceph_file_layout *layout,
Alex Eldere8afad62012-11-14 09:38:19 -0600215 u64 off, u64 len,
Sage Weild63b77f2012-09-24 20:59:48 -0700216 u64 *bno, u64 *oxoff, u64 *oxlen);
Sage Weilf24e9982009-10-06 11:31:10 -0700217
218/* calculate mapping of object to a placement group */
Ilya Dryomov7c13cb62014-01-27 17:40:19 +0200219extern int ceph_oloc_oid_to_pg(struct ceph_osdmap *osdmap,
220 struct ceph_object_locator *oloc,
221 struct ceph_object_id *oid,
222 struct ceph_pg *pg_out);
223
Sage Weil129793542013-01-08 09:15:10 -0800224extern int ceph_calc_pg_acting(struct ceph_osdmap *osdmap,
Sage Weil5b191d92013-02-23 10:38:16 -0800225 struct ceph_pg pgid,
Ilya Dryomov8008ab12014-03-24 17:12:48 +0200226 int *osds, int *primary);
Sage Weil51042122009-11-04 11:39:12 -0800227extern int ceph_calc_pg_primary(struct ceph_osdmap *osdmap,
Sage Weil5b191d92013-02-23 10:38:16 -0800228 struct ceph_pg pgid);
Sage Weilf24e9982009-10-06 11:31:10 -0700229
Ilya Dryomovce7f6a22014-01-27 17:40:19 +0200230extern struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map,
231 u64 id);
232
Alex Elder72afc712012-10-30 19:40:33 -0500233extern const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id);
Yehuda Sadeh7669a2c2010-05-17 12:31:35 -0700234extern int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name);
235
Sage Weilf24e9982009-10-06 11:31:10 -0700236#endif