osdmap.h 5.9 KB
Newer Older
S
Sage Weil 已提交
1 2 3 4
#ifndef _FS_CEPH_OSDMAP_H
#define _FS_CEPH_OSDMAP_H

#include <linux/rbtree.h>
5
#include <linux/ceph/types.h>
6
#include <linux/ceph/decode.h>
7
#include <linux/ceph/ceph_fs.h>
8
#include <linux/crush/crush.h>
S
Sage Weil 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21

/*
 * The osd map describes the current membership of the osd cluster and
 * specifies the mapping of objects to placement groups and placement
 * groups to (sets of) osds.  That is, it completely specifies the
 * (desired) distribution of all data objects in the system at some
 * point in time.
 *
 * Each map version is identified by an epoch, which increases monotonically.
 *
 * The map can be updated either via an incremental map (diff) describing
 * the change between two successive epochs, or as a fully encoded map.
 */
22 23 24 25 26
struct ceph_pg {
	uint64_t pool;
	uint32_t seed;
};

27 28
#define CEPH_POOL_FLAG_HASHPSPOOL  1

S
Sage Weil 已提交
29
struct ceph_pg_pool_info {
30
	struct rb_node node;
31 32 33 34 35 36 37
	s64 id;
	u8 type;
	u8 size;
	u8 crush_ruleset;
	u8 object_hash;
	u32 pg_num, pgp_num;
	int pg_num_mask, pgp_num_mask;
38 39
	s64 read_tier;
	s64 write_tier; /* wins for read+write ops */
40
	u64 flags;
41
	char *name;
S
Sage Weil 已提交
42 43
};

44 45 46 47 48 49 50 51 52 53 54 55
static inline bool ceph_can_shift_osds(struct ceph_pg_pool_info *pool)
{
	switch (pool->type) {
	case CEPH_POOL_TYPE_REP:
		return true;
	case CEPH_POOL_TYPE_EC:
		return false;
	default:
		BUG_ON(1);
	}
}

56
struct ceph_object_locator {
57
	s64 pool;
58 59
};

60 61 62 63 64 65 66
/*
 * Maximum supported by kernel client object name length
 *
 * (probably outdated: must be >= RBD_MAX_MD_NAME_LEN -- currently 100)
 */
#define CEPH_MAX_OID_NAME_LEN 100

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
/*
 * 51-char inline_name is long enough for all cephfs and all but one
 * rbd requests: <imgname> in "<imgname>.rbd"/"rbd_id.<imgname>" can be
 * arbitrarily long (~PAGE_SIZE).  It's done once during rbd map; all
 * other rbd requests fit into inline_name.
 *
 * Makes ceph_object_id 64 bytes on 64-bit.
 */
#define CEPH_OID_INLINE_LEN 52

/*
 * Both inline and external buffers have space for a NUL-terminator,
 * which is carried around.  It's not required though - RADOS object
 * names don't have to be NUL-terminated and may contain NULs.
 */
82
struct ceph_object_id {
83 84
	char *name;
	char inline_name[CEPH_OID_INLINE_LEN];
85 86 87
	int name_len;
};

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
static inline void ceph_oid_init(struct ceph_object_id *oid)
{
	oid->name = oid->inline_name;
	oid->name_len = 0;
}

static inline bool ceph_oid_empty(const struct ceph_object_id *oid)
{
	return oid->name == oid->inline_name && !oid->name_len;
}

void ceph_oid_copy(struct ceph_object_id *dest,
		   const struct ceph_object_id *src);
__printf(2, 3)
void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...);
__printf(3, 4)
int ceph_oid_aprintf(struct ceph_object_id *oid, gfp_t gfp,
		     const char *fmt, ...);
void ceph_oid_destroy(struct ceph_object_id *oid);

S
Sage Weil 已提交
108 109
struct ceph_pg_mapping {
	struct rb_node node;
110
	struct ceph_pg pgid;
111 112 113 114 115 116

	union {
		struct {
			int len;
			int osds[];
		} pg_temp;
117 118 119
		struct {
			int osd;
		} primary_temp;
120
	};
S
Sage Weil 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
};

struct ceph_osdmap {
	struct ceph_fsid fsid;
	u32 epoch;
	struct ceph_timespec created, modified;

	u32 flags;         /* CEPH_OSDMAP_* */

	u32 max_osd;       /* size of osd_state, _offload, _addr arrays */
	u8 *osd_state;     /* CEPH_OSD_* */
	u32 *osd_weight;   /* 0 = failed, 0x10000 = 100% normal */
	struct ceph_entity_addr *osd_addr;

	struct rb_root pg_temp;
136 137
	struct rb_root primary_temp;

138 139
	u32 *osd_primary_affinity;

140 141
	struct rb_root pg_pools;
	u32 pool_max;
S
Sage Weil 已提交
142 143 144 145

	/* the CRUSH map specifies the mapping of placement groups to
	 * the list of osds that store+replicate them. */
	struct crush_map *crush;
146 147 148

	struct mutex crush_scratch_mutex;
	int crush_scratch_ary[CEPH_PG_MAX_SIZE * 3];
S
Sage Weil 已提交
149 150
};

151 152 153 154 155 156
static inline int ceph_osd_exists(struct ceph_osdmap *map, int osd)
{
	return osd >= 0 && osd < map->max_osd &&
	       (map->osd_state[osd] & CEPH_OSD_EXISTS);
}

S
Sage Weil 已提交
157 158
static inline int ceph_osd_is_up(struct ceph_osdmap *map, int osd)
{
159 160 161 162 163 164 165
	return ceph_osd_exists(map, osd) &&
	       (map->osd_state[osd] & CEPH_OSD_UP);
}

static inline int ceph_osd_is_down(struct ceph_osdmap *map, int osd)
{
	return !ceph_osd_is_up(map, osd);
S
Sage Weil 已提交
166 167 168 169 170 171 172 173
}

static inline bool ceph_osdmap_flag(struct ceph_osdmap *map, int flag)
{
	return map && (map->flags & flag);
}

extern char *ceph_osdmap_state_str(char *str, int len, int state);
174
extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd);
S
Sage Weil 已提交
175 176 177 178 179 180 181 182 183

static inline struct ceph_entity_addr *ceph_osd_addr(struct ceph_osdmap *map,
						     int osd)
{
	if (osd >= map->max_osd)
		return NULL;
	return &map->osd_addr[osd];
}

184 185 186 187 188
static inline int ceph_decode_pgid(void **p, void *end, struct ceph_pg *pgid)
{
	__u8 version;

	if (!ceph_has_room(p, end, 1 + 8 + 4 + 4)) {
189
		pr_warn("incomplete pg encoding\n");
190 191 192 193
		return -EINVAL;
	}
	version = ceph_decode_8(p);
	if (version > 1) {
194
		pr_warn("do not understand pg encoding %d > 1\n",
195 196 197 198 199 200 201 202 203 204 205
			(int)version);
		return -EINVAL;
	}

	pgid->pool = ceph_decode_64(p);
	pgid->seed = ceph_decode_32(p);
	*p += 4;	/* skip deprecated preferred value */

	return 0;
}

206
extern struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end);
207 208
struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end,
					     struct ceph_osdmap *map);
S
Sage Weil 已提交
209 210 211
extern void ceph_osdmap_destroy(struct ceph_osdmap *map);

/* calculate mapping of a file extent to an object */
S
Sage Weil 已提交
212
extern int ceph_calc_file_object_mapping(struct ceph_file_layout *layout,
213
					 u64 off, u64 len,
S
Sage Weil 已提交
214
					 u64 *bno, u64 *oxoff, u64 *oxlen);
S
Sage Weil 已提交
215 216

/* calculate mapping of object to a placement group */
217 218 219 220 221
extern int ceph_oloc_oid_to_pg(struct ceph_osdmap *osdmap,
			       struct ceph_object_locator *oloc,
			       struct ceph_object_id *oid,
			       struct ceph_pg *pg_out);

222
extern int ceph_calc_pg_acting(struct ceph_osdmap *osdmap,
223
			       struct ceph_pg pgid,
224
			       int *osds, int *primary);
225
extern int ceph_calc_pg_primary(struct ceph_osdmap *osdmap,
226
				struct ceph_pg pgid);
S
Sage Weil 已提交
227

I
Ilya Dryomov 已提交
228 229 230
extern struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map,
						    u64 id);

231
extern const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id);
Y
Yehuda Sadeh 已提交
232 233
extern int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name);

S
Sage Weil 已提交
234
#endif