blob: ce2d00da5096a68521e1bba42ee0340cb3647eb9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil2f2dc052009-10-06 11:31:09 -07003
4#include <linux/bug.h>
5#include <linux/err.h>
6#include <linux/random.h>
7#include <linux/slab.h>
8#include <linux/types.h>
9
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include <linux/ceph/mdsmap.h>
11#include <linux/ceph/messenger.h>
12#include <linux/ceph/decode.h>
Sage Weil2f2dc052009-10-06 11:31:09 -070013
14#include "super.h"
15
16
17/*
18 * choose a random mds that is "up" (i.e. has a state > 0), or -1.
19 */
20int ceph_mdsmap_get_random_mds(struct ceph_mdsmap *m)
21{
22 int n = 0;
23 int i;
Sam Langa84cd292013-04-09 16:49:11 -050024
25 /* special case for one mds */
Yan, Zheng76201b62017-03-28 17:04:13 +080026 if (1 == m->m_num_mds && m->m_info[0].state > 0)
Sam Langa84cd292013-04-09 16:49:11 -050027 return 0;
Sage Weil2f2dc052009-10-06 11:31:09 -070028
29 /* count */
Yan, Zheng76201b62017-03-28 17:04:13 +080030 for (i = 0; i < m->m_num_mds; i++)
Sage Weil2f2dc052009-10-06 11:31:09 -070031 if (m->m_info[i].state > 0)
32 n++;
33 if (n == 0)
34 return -1;
35
36 /* pick */
Sam Langa84cd292013-04-09 16:49:11 -050037 n = prandom_u32() % n;
Sage Weil2f2dc052009-10-06 11:31:09 -070038 for (i = 0; n > 0; i++, n--)
39 while (m->m_info[i].state <= 0)
40 i++;
41
42 return i;
43}
44
Yan, Zhenge9e427f2016-11-10 16:02:06 +080045#define __decode_and_drop_type(p, end, type, bad) \
46 do { \
47 if (*p + sizeof(type) > end) \
48 goto bad; \
49 *p += sizeof(type); \
50 } while (0)
51
52#define __decode_and_drop_set(p, end, type, bad) \
53 do { \
54 u32 n; \
55 size_t need; \
56 ceph_decode_32_safe(p, end, n, bad); \
57 need = sizeof(type) * n; \
58 ceph_decode_need(p, end, need, bad); \
59 *p += need; \
60 } while (0)
61
62#define __decode_and_drop_map(p, end, ktype, vtype, bad) \
63 do { \
64 u32 n; \
65 size_t need; \
66 ceph_decode_32_safe(p, end, n, bad); \
67 need = (sizeof(ktype) + sizeof(vtype)) * n; \
68 ceph_decode_need(p, end, need, bad); \
69 *p += need; \
70 } while (0)
71
72
73static int __decode_and_drop_compat_set(void **p, void* end)
74{
75 int i;
76 /* compat, ro_compat, incompat*/
77 for (i = 0; i < 3; i++) {
78 u32 n;
79 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad);
80 /* mask */
81 *p += sizeof(u64);
82 /* names (map<u64, string>) */
83 n = ceph_decode_32(p);
84 while (n-- > 0) {
85 u32 len;
86 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32),
87 bad);
88 *p += sizeof(u64);
89 len = ceph_decode_32(p);
90 ceph_decode_need(p, end, len, bad);
91 *p += len;
92 }
93 }
94 return 0;
95bad:
96 return -1;
97}
98
Sage Weil2f2dc052009-10-06 11:31:09 -070099/*
100 * Decode an MDS map
101 *
102 * Ignore any fields we don't care about (there are quite a few of
103 * them).
104 */
105struct ceph_mdsmap *ceph_mdsmap_decode(void **p, void *end)
106{
107 struct ceph_mdsmap *m;
Sage Weil9ec7cab2009-12-14 15:13:47 -0800108 const void *start = *p;
Sage Weil2f2dc052009-10-06 11:31:09 -0700109 int i, j, n;
Jeff Laytonf3848af2019-06-04 11:26:36 -0400110 int err;
Yan, Zhengd463a432016-03-31 15:53:01 +0800111 u8 mdsmap_v, mdsmap_cv;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800112 u16 mdsmap_ev;
Sage Weil2f2dc052009-10-06 11:31:09 -0700113
114 m = kzalloc(sizeof(*m), GFP_NOFS);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200115 if (!m)
Sage Weil2f2dc052009-10-06 11:31:09 -0700116 return ERR_PTR(-ENOMEM);
117
Yan, Zhengd463a432016-03-31 15:53:01 +0800118 ceph_decode_need(p, end, 1 + 1, bad);
119 mdsmap_v = ceph_decode_8(p);
120 mdsmap_cv = ceph_decode_8(p);
121 if (mdsmap_v >= 4) {
122 u32 mdsmap_len;
123 ceph_decode_32_safe(p, end, mdsmap_len, bad);
124 if (end < *p + mdsmap_len)
125 goto bad;
126 end = *p + mdsmap_len;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800127 }
Sage Weil2f2dc052009-10-06 11:31:09 -0700128
129 ceph_decode_need(p, end, 8*sizeof(u32) + sizeof(u64), bad);
Sage Weilc89136e2009-10-14 09:59:09 -0700130 m->m_epoch = ceph_decode_32(p);
131 m->m_client_epoch = ceph_decode_32(p);
132 m->m_last_failure = ceph_decode_32(p);
133 m->m_root = ceph_decode_32(p);
134 m->m_session_timeout = ceph_decode_32(p);
135 m->m_session_autoclose = ceph_decode_32(p);
136 m->m_max_file_size = ceph_decode_64(p);
137 m->m_max_mds = ceph_decode_32(p);
Yan, Zheng76201b62017-03-28 17:04:13 +0800138 m->m_num_mds = m->m_max_mds;
Sage Weil2f2dc052009-10-06 11:31:09 -0700139
Yan, Zheng76201b62017-03-28 17:04:13 +0800140 m->m_info = kcalloc(m->m_num_mds, sizeof(*m->m_info), GFP_NOFS);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200141 if (!m->m_info)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800142 goto nomem;
Sage Weil2f2dc052009-10-06 11:31:09 -0700143
144 /* pick out active nodes from mds_info (state > 0) */
Sage Weilc89136e2009-10-14 09:59:09 -0700145 n = ceph_decode_32(p);
Sage Weil2f2dc052009-10-06 11:31:09 -0700146 for (i = 0; i < n; i++) {
Sage Weil94045e12009-11-19 15:31:50 -0800147 u64 global_id;
Sage Weil2f2dc052009-10-06 11:31:09 -0700148 u32 namelen;
149 s32 mds, inc, state;
150 u64 state_seq;
Yan, Zhengd463a432016-03-31 15:53:01 +0800151 u8 info_v;
152 void *info_end = NULL;
Sage Weil2f2dc052009-10-06 11:31:09 -0700153 struct ceph_entity_addr addr;
154 u32 num_export_targets;
155 void *pexport_targets = NULL;
Sage Weil0deb01c2010-06-17 14:19:01 -0700156 struct ceph_timespec laggy_since;
Dan Carpenter6af86522013-05-29 06:46:56 -0500157 struct ceph_mds_info *info;
Sage Weil2f2dc052009-10-06 11:31:09 -0700158
Yan, Zhengd463a432016-03-31 15:53:01 +0800159 ceph_decode_need(p, end, sizeof(u64) + 1, bad);
Sage Weil94045e12009-11-19 15:31:50 -0800160 global_id = ceph_decode_64(p);
Yan, Zhengd463a432016-03-31 15:53:01 +0800161 info_v= ceph_decode_8(p);
162 if (info_v >= 4) {
163 u32 info_len;
164 u8 info_cv;
165 ceph_decode_need(p, end, 1 + sizeof(u32), bad);
166 info_cv = ceph_decode_8(p);
167 info_len = ceph_decode_32(p);
168 info_end = *p + info_len;
169 if (info_end > end)
170 goto bad;
171 }
172
173 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad);
Sage Weil94045e12009-11-19 15:31:50 -0800174 *p += sizeof(u64);
Sage Weilc89136e2009-10-14 09:59:09 -0700175 namelen = ceph_decode_32(p); /* skip mds name */
Sage Weil2f2dc052009-10-06 11:31:09 -0700176 *p += namelen;
177
178 ceph_decode_need(p, end,
Sage Weile251e282009-10-07 16:38:19 -0700179 4*sizeof(u32) + sizeof(u64) +
Sage Weil2f2dc052009-10-06 11:31:09 -0700180 sizeof(addr) + sizeof(struct ceph_timespec),
181 bad);
Sage Weilc89136e2009-10-14 09:59:09 -0700182 mds = ceph_decode_32(p);
183 inc = ceph_decode_32(p);
184 state = ceph_decode_32(p);
185 state_seq = ceph_decode_64(p);
Jeff Laytonf3848af2019-06-04 11:26:36 -0400186 err = ceph_decode_entity_addr(p, end, &addr);
187 if (err)
188 goto corrupt;
Sage Weil0deb01c2010-06-17 14:19:01 -0700189 ceph_decode_copy(p, &laggy_since, sizeof(laggy_since));
Sage Weil2f2dc052009-10-06 11:31:09 -0700190 *p += sizeof(u32);
191 ceph_decode_32_safe(p, end, namelen, bad);
Sage Weile251e282009-10-07 16:38:19 -0700192 *p += namelen;
Yan, Zhengd463a432016-03-31 15:53:01 +0800193 if (info_v >= 2) {
Sage Weil2f2dc052009-10-06 11:31:09 -0700194 ceph_decode_32_safe(p, end, num_export_targets, bad);
195 pexport_targets = *p;
Sage Weile251e282009-10-07 16:38:19 -0700196 *p += num_export_targets * sizeof(u32);
Sage Weil2f2dc052009-10-06 11:31:09 -0700197 } else {
198 num_export_targets = 0;
199 }
200
Yan, Zhengd463a432016-03-31 15:53:01 +0800201 if (info_end && *p != info_end) {
202 if (*p > info_end)
203 goto bad;
204 *p = info_end;
205 }
206
Sage Weil94045e12009-11-19 15:31:50 -0800207 dout("mdsmap_decode %d/%d %lld mds%d.%d %s %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700208 i+1, n, global_id, mds, inc,
Jeff Laytonb726ec92019-05-06 09:38:47 -0400209 ceph_pr_addr(&addr),
Sage Weil2f2dc052009-10-06 11:31:09 -0700210 ceph_mds_state_name(state));
Dan Carpenter6af86522013-05-29 06:46:56 -0500211
Yan, Zheng76201b62017-03-28 17:04:13 +0800212 if (mds < 0 || state <= 0)
Dan Carpenter6af86522013-05-29 06:46:56 -0500213 continue;
214
Yan, Zheng76201b62017-03-28 17:04:13 +0800215 if (mds >= m->m_num_mds) {
216 int new_num = max(mds + 1, m->m_num_mds * 2);
217 void *new_m_info = krealloc(m->m_info,
218 new_num * sizeof(*m->m_info),
219 GFP_NOFS | __GFP_ZERO);
220 if (!new_m_info)
221 goto nomem;
222 m->m_info = new_m_info;
223 m->m_num_mds = new_num;
224 }
225
Dan Carpenter6af86522013-05-29 06:46:56 -0500226 info = &m->m_info[mds];
227 info->global_id = global_id;
228 info->state = state;
229 info->addr = addr;
230 info->laggy = (laggy_since.tv_sec != 0 ||
231 laggy_since.tv_nsec != 0);
232 info->num_export_targets = num_export_targets;
233 if (num_export_targets) {
234 info->export_targets = kcalloc(num_export_targets,
235 sizeof(u32), GFP_NOFS);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200236 if (!info->export_targets)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800237 goto nomem;
Dan Carpenter6af86522013-05-29 06:46:56 -0500238 for (j = 0; j < num_export_targets; j++)
239 info->export_targets[j] =
240 ceph_decode_32(&pexport_targets);
241 } else {
242 info->export_targets = NULL;
Sage Weil2f2dc052009-10-06 11:31:09 -0700243 }
244 }
Yan, Zheng76201b62017-03-28 17:04:13 +0800245 if (m->m_num_mds > m->m_max_mds) {
246 /* find max up mds */
247 for (i = m->m_num_mds; i >= m->m_max_mds; i--) {
248 if (i == 0 || m->m_info[i-1].state > 0)
249 break;
250 }
251 m->m_num_mds = i;
252 }
Sage Weil2f2dc052009-10-06 11:31:09 -0700253
254 /* pg_pools */
255 ceph_decode_32_safe(p, end, n, bad);
256 m->m_num_data_pg_pools = n;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800257 m->m_data_pg_pools = kcalloc(n, sizeof(u64), GFP_NOFS);
Sage Weil2f2dc052009-10-06 11:31:09 -0700258 if (!m->m_data_pg_pools)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800259 goto nomem;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800260 ceph_decode_need(p, end, sizeof(u64)*(n+1), bad);
Sage Weil2f2dc052009-10-06 11:31:09 -0700261 for (i = 0; i < n; i++)
Sage Weil4f6a7e52013-02-23 10:41:09 -0800262 m->m_data_pg_pools[i] = ceph_decode_64(p);
263 m->m_cas_pg_pool = ceph_decode_64(p);
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800264 m->m_enabled = m->m_epoch > 1;
Sage Weil2f2dc052009-10-06 11:31:09 -0700265
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800266 mdsmap_ev = 1;
267 if (mdsmap_v >= 2) {
268 ceph_decode_16_safe(p, end, mdsmap_ev, bad_ext);
269 }
270 if (mdsmap_ev >= 3) {
271 if (__decode_and_drop_compat_set(p, end) < 0)
272 goto bad_ext;
273 }
274 /* metadata_pool */
275 if (mdsmap_ev < 5) {
276 __decode_and_drop_type(p, end, u32, bad_ext);
277 } else {
278 __decode_and_drop_type(p, end, u64, bad_ext);
279 }
280
281 /* created + modified + tableserver */
282 __decode_and_drop_type(p, end, struct ceph_timespec, bad_ext);
283 __decode_and_drop_type(p, end, struct ceph_timespec, bad_ext);
284 __decode_and_drop_type(p, end, u32, bad_ext);
285
286 /* in */
287 {
288 int num_laggy = 0;
289 ceph_decode_32_safe(p, end, n, bad_ext);
290 ceph_decode_need(p, end, sizeof(u32) * n, bad_ext);
291
292 for (i = 0; i < n; i++) {
293 s32 mds = ceph_decode_32(p);
Yan, Zheng76201b62017-03-28 17:04:13 +0800294 if (mds >= 0 && mds < m->m_num_mds) {
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800295 if (m->m_info[mds].laggy)
296 num_laggy++;
297 }
298 }
299 m->m_num_laggy = num_laggy;
Yan, Zheng76201b62017-03-28 17:04:13 +0800300
301 if (n > m->m_num_mds) {
302 void *new_m_info = krealloc(m->m_info,
303 n * sizeof(*m->m_info),
304 GFP_NOFS | __GFP_ZERO);
305 if (!new_m_info)
306 goto nomem;
307 m->m_info = new_m_info;
308 }
309 m->m_num_mds = n;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800310 }
311
312 /* inc */
313 __decode_and_drop_map(p, end, u32, u32, bad_ext);
314 /* up */
315 __decode_and_drop_map(p, end, u32, u64, bad_ext);
316 /* failed */
317 __decode_and_drop_set(p, end, u32, bad_ext);
318 /* stopped */
319 __decode_and_drop_set(p, end, u32, bad_ext);
320
321 if (mdsmap_ev >= 4) {
322 /* last_failure_osd_epoch */
323 __decode_and_drop_type(p, end, u32, bad_ext);
324 }
325 if (mdsmap_ev >= 6) {
326 /* ever_allowed_snaps */
327 __decode_and_drop_type(p, end, u8, bad_ext);
328 /* explicitly_allowed_snaps */
329 __decode_and_drop_type(p, end, u8, bad_ext);
330 }
331 if (mdsmap_ev >= 7) {
332 /* inline_data_enabled */
333 __decode_and_drop_type(p, end, u8, bad_ext);
334 }
335 if (mdsmap_ev >= 8) {
336 u32 name_len;
337 /* enabled */
338 ceph_decode_8_safe(p, end, m->m_enabled, bad_ext);
339 ceph_decode_32_safe(p, end, name_len, bad_ext);
340 ceph_decode_need(p, end, name_len, bad_ext);
341 *p += name_len;
342 }
343 /* damaged */
344 if (mdsmap_ev >= 9) {
345 size_t need;
346 ceph_decode_32_safe(p, end, n, bad_ext);
347 need = sizeof(u32) * n;
348 ceph_decode_need(p, end, need, bad_ext);
349 *p += need;
350 m->m_damaged = n > 0;
351 } else {
352 m->m_damaged = false;
353 }
354bad_ext:
Yan, Zhengd463a432016-03-31 15:53:01 +0800355 *p = end;
Sage Weil2f2dc052009-10-06 11:31:09 -0700356 dout("mdsmap_decode success epoch %u\n", m->m_epoch);
357 return m;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800358nomem:
Sage Weil2f2dc052009-10-06 11:31:09 -0700359 err = -ENOMEM;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800360 goto out_err;
Jeff Laytonf3848af2019-06-04 11:26:36 -0400361corrupt:
Sage Weil2f2dc052009-10-06 11:31:09 -0700362 pr_err("corrupt mdsmap\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800363 print_hex_dump(KERN_DEBUG, "mdsmap: ",
364 DUMP_PREFIX_OFFSET, 16, 1,
365 start, end - start, true);
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800366out_err:
Sage Weil2f2dc052009-10-06 11:31:09 -0700367 ceph_mdsmap_destroy(m);
Emil Goodec213b502013-05-28 16:59:00 +0200368 return ERR_PTR(err);
Jeff Laytonf3848af2019-06-04 11:26:36 -0400369bad:
370 err = -EINVAL;
371 goto corrupt;
Sage Weil2f2dc052009-10-06 11:31:09 -0700372}
373
374void ceph_mdsmap_destroy(struct ceph_mdsmap *m)
375{
376 int i;
377
Yan, Zheng76201b62017-03-28 17:04:13 +0800378 for (i = 0; i < m->m_num_mds; i++)
Sage Weil2f2dc052009-10-06 11:31:09 -0700379 kfree(m->m_info[i].export_targets);
380 kfree(m->m_info);
381 kfree(m->m_data_pg_pools);
382 kfree(m);
383}
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800384
385bool ceph_mdsmap_is_cluster_available(struct ceph_mdsmap *m)
386{
387 int i, nr_active = 0;
388 if (!m->m_enabled)
389 return false;
390 if (m->m_damaged)
391 return false;
392 if (m->m_num_laggy > 0)
393 return false;
Yan, Zheng76201b62017-03-28 17:04:13 +0800394 for (i = 0; i < m->m_num_mds; i++) {
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800395 if (m->m_info[i].state == CEPH_MDS_STATE_ACTIVE)
396 nr_active++;
397 }
398 return nr_active > 0;
399}