]> git.proxmox.com Git - ceph.git/blame - ceph/src/mds/MDSDaemon.cc
update sources to v12.1.2
[ceph.git] / ceph / src / mds / MDSDaemon.cc
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3/*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15#include <unistd.h>
16
17#include "include/compat.h"
7c673cae
FG
18#include "include/types.h"
19#include "include/str_list.h"
c07f9fc5 20
7c673cae 21#include "common/Clock.h"
c07f9fc5
FG
22#include "common/HeartbeatMap.h"
23#include "common/Timer.h"
24#include "common/backport14.h"
7c673cae 25#include "common/ceph_argparse.h"
c07f9fc5
FG
26#include "common/config.h"
27#include "common/entity_name.h"
7c673cae 28#include "common/errno.h"
c07f9fc5
FG
29#include "common/perf_counters.h"
30#include "common/signal.h"
31#include "common/version.h"
32
33#include "global/signal_handler.h"
7c673cae
FG
34
35#include "msg/Messenger.h"
36#include "mon/MonClient.h"
37
38#include "osdc/Objecter.h"
39
40#include "MDSMap.h"
41
42#include "MDSDaemon.h"
43#include "Server.h"
44#include "Locker.h"
45
46#include "SnapServer.h"
47#include "SnapClient.h"
48
7c673cae
FG
49#include "events/ESession.h"
50#include "events/ESubtreeMap.h"
51
52#include "messages/MMDSMap.h"
53
54#include "messages/MGenericMessage.h"
55
56#include "messages/MMonCommand.h"
57#include "messages/MCommand.h"
58#include "messages/MCommandReply.h"
59
60#include "auth/AuthAuthorizeHandler.h"
61#include "auth/RotatingKeyRing.h"
62#include "auth/KeyRing.h"
63
7c673cae
FG
64#include "perfglue/cpu_profiler.h"
65#include "perfglue/heap_profiler.h"
66
67#define dout_context g_ceph_context
68#define dout_subsys ceph_subsys_mds
69#undef dout_prefix
70#define dout_prefix *_dout << "mds." << name << ' '
71
72
73class MDSDaemon::C_MDS_Tick : public Context {
74 protected:
75 MDSDaemon *mds_daemon;
76public:
77 explicit C_MDS_Tick(MDSDaemon *m) : mds_daemon(m) {}
78 void finish(int r) override {
79 assert(mds_daemon->mds_lock.is_locked_by_me());
7c673cae
FG
80 mds_daemon->tick();
81 }
82};
83
84// cons/des
85MDSDaemon::MDSDaemon(const std::string &n, Messenger *m, MonClient *mc) :
86 Dispatcher(m->cct),
87 mds_lock("MDSDaemon::mds_lock"),
88 stopping(false),
89 timer(m->cct, mds_lock),
90 beacon(m->cct, mc, n),
91 authorize_handler_cluster_registry(new AuthAuthorizeHandlerRegistry(m->cct,
92 m->cct->_conf->auth_supported.empty() ?
93 m->cct->_conf->auth_cluster_required :
94 m->cct->_conf->auth_supported)),
95 authorize_handler_service_registry(new AuthAuthorizeHandlerRegistry(m->cct,
96 m->cct->_conf->auth_supported.empty() ?
97 m->cct->_conf->auth_service_required :
98 m->cct->_conf->auth_supported)),
99 name(n),
100 messenger(m),
101 monc(mc),
102 mgrc(m->cct, m),
103 log_client(m->cct, messenger, &mc->monmap, LogClient::NO_FLAGS),
104 mds_rank(NULL),
105 tick_event(0),
106 asok_hook(NULL)
107{
108 orig_argc = 0;
109 orig_argv = NULL;
110
111 clog = log_client.create_channel();
112
113 monc->set_messenger(messenger);
114
115 mdsmap = new MDSMap;
116}
117
118MDSDaemon::~MDSDaemon() {
119 Mutex::Locker lock(mds_lock);
120
121 delete mds_rank;
122 mds_rank = NULL;
123 delete mdsmap;
124 mdsmap = NULL;
125
126 delete authorize_handler_service_registry;
127 delete authorize_handler_cluster_registry;
128}
129
130class MDSSocketHook : public AdminSocketHook {
131 MDSDaemon *mds;
132public:
133 explicit MDSSocketHook(MDSDaemon *m) : mds(m) {}
134 bool call(std::string command, cmdmap_t& cmdmap, std::string format,
135 bufferlist& out) override {
136 stringstream ss;
137 bool r = mds->asok_command(command, cmdmap, format, ss);
138 out.append(ss);
139 return r;
140 }
141};
142
143bool MDSDaemon::asok_command(string command, cmdmap_t& cmdmap, string format,
144 ostream& ss)
145{
146 dout(1) << "asok_command: " << command << " (starting...)" << dendl;
147
148 Formatter *f = Formatter::create(format, "json-pretty", "json-pretty");
149 bool handled = false;
150 if (command == "status") {
151 dump_status(f);
152 handled = true;
153 } else {
154 if (mds_rank == NULL) {
155 dout(1) << "Can't run that command on an inactive MDS!" << dendl;
156 f->dump_string("error", "mds_not_active");
157 } else {
158 handled = mds_rank->handle_asok_command(command, cmdmap, f, ss);
159 }
160 }
161 f->flush(ss);
162 delete f;
163
164 dout(1) << "asok_command: " << command << " (complete)" << dendl;
165
166 return handled;
167}
168
169void MDSDaemon::dump_status(Formatter *f)
170{
171 f->open_object_section("status");
172 f->dump_stream("cluster_fsid") << monc->get_fsid();
173 if (mds_rank) {
174 f->dump_int("whoami", mds_rank->get_nodeid());
175 } else {
176 f->dump_int("whoami", MDS_RANK_NONE);
177 }
178
179 f->dump_int("id", monc->get_global_id());
180 f->dump_string("want_state", ceph_mds_state_name(beacon.get_want_state()));
181 f->dump_string("state", ceph_mds_state_name(mdsmap->get_state_gid(mds_gid_t(
182 monc->get_global_id()))));
183 if (mds_rank) {
184 Mutex::Locker l(mds_lock);
185 mds_rank->dump_status(f);
186 }
187
188 f->dump_unsigned("mdsmap_epoch", mdsmap->get_epoch());
189 if (mds_rank) {
190 f->dump_unsigned("osdmap_epoch", mds_rank->get_osd_epoch());
191 f->dump_unsigned("osdmap_epoch_barrier", mds_rank->get_osd_epoch_barrier());
192 } else {
193 f->dump_unsigned("osdmap_epoch", 0);
194 f->dump_unsigned("osdmap_epoch_barrier", 0);
195 }
196 f->close_section(); // status
197}
198
199void MDSDaemon::set_up_admin_socket()
200{
201 int r;
202 AdminSocket *admin_socket = g_ceph_context->get_admin_socket();
203 assert(asok_hook == nullptr);
204 asok_hook = new MDSSocketHook(this);
205 r = admin_socket->register_command("status", "status", asok_hook,
206 "high-level status of MDS");
207 assert(r == 0);
208 r = admin_socket->register_command("dump_ops_in_flight",
209 "dump_ops_in_flight", asok_hook,
210 "show the ops currently in flight");
211 assert(r == 0);
212 r = admin_socket->register_command("ops",
213 "ops", asok_hook,
214 "show the ops currently in flight");
215 assert(r == 0);
216 r = admin_socket->register_command("dump_blocked_ops", "dump_blocked_ops",
217 asok_hook,
218 "show the blocked ops currently in flight");
219 assert(r == 0);
220 r = admin_socket->register_command("dump_historic_ops", "dump_historic_ops",
221 asok_hook,
222 "show slowest recent ops");
223 assert(r == 0);
224 r = admin_socket->register_command("dump_historic_ops_by_duration", "dump_historic_ops_by_duration",
225 asok_hook,
226 "show slowest recent ops, sorted by op duration");
227 assert(r == 0);
228 r = admin_socket->register_command("scrub_path",
229 "scrub_path name=path,type=CephString "
230 "name=scrubops,type=CephChoices,"
231 "strings=force|recursive|repair,n=N,req=false",
232 asok_hook,
233 "scrub an inode and output results");
234 assert(r == 0);
235 r = admin_socket->register_command("tag path",
236 "tag path name=path,type=CephString"
237 " name=tag,type=CephString",
238 asok_hook,
239 "Apply scrub tag recursively");
240 assert(r == 0);
241 r = admin_socket->register_command("flush_path",
242 "flush_path name=path,type=CephString",
243 asok_hook,
244 "flush an inode (and its dirfrags)");
245 assert(r == 0);
246 r = admin_socket->register_command("export dir",
247 "export dir "
248 "name=path,type=CephString "
249 "name=rank,type=CephInt",
250 asok_hook,
251 "migrate a subtree to named MDS");
252 assert(r == 0);
253 r = admin_socket->register_command("dump cache",
254 "dump cache name=path,type=CephString,req=false",
255 asok_hook,
256 "dump metadata cache (optionally to a file)");
257 assert(r == 0);
258 r = admin_socket->register_command("dump tree",
259 "dump tree "
260 "name=root,type=CephString,req=true "
261 "name=depth,type=CephInt,req=false ",
262 asok_hook,
263 "dump metadata cache for subtree");
264 assert(r == 0);
265 r = admin_socket->register_command("session evict",
266 "session evict name=client_id,type=CephString",
267 asok_hook,
268 "Evict a CephFS client");
269 assert(r == 0);
270 r = admin_socket->register_command("osdmap barrier",
271 "osdmap barrier name=target_epoch,type=CephInt",
272 asok_hook,
273 "Wait until the MDS has this OSD map epoch");
274 assert(r == 0);
275 r = admin_socket->register_command("session ls",
276 "session ls",
277 asok_hook,
278 "Enumerate connected CephFS clients");
279 assert(r == 0);
280 r = admin_socket->register_command("flush journal",
281 "flush journal",
282 asok_hook,
283 "Flush the journal to the backing store");
284 assert(r == 0);
285 r = admin_socket->register_command("force_readonly",
286 "force_readonly",
287 asok_hook,
288 "Force MDS to read-only mode");
289 assert(r == 0);
290 r = admin_socket->register_command("get subtrees",
291 "get subtrees",
292 asok_hook,
293 "Return the subtree map");
294 assert(r == 0);
295 r = admin_socket->register_command("dirfrag split",
296 "dirfrag split "
297 "name=path,type=CephString,req=true "
298 "name=frag,type=CephString,req=true "
299 "name=bits,type=CephInt,req=true ",
300 asok_hook,
301 "Fragment directory by path");
302 assert(r == 0);
303 r = admin_socket->register_command("dirfrag merge",
304 "dirfrag merge "
305 "name=path,type=CephString,req=true "
306 "name=frag,type=CephString,req=true",
307 asok_hook,
308 "De-fragment directory by path");
309 assert(r == 0);
310 r = admin_socket->register_command("dirfrag ls",
311 "dirfrag ls "
312 "name=path,type=CephString,req=true",
313 asok_hook,
314 "List fragments in directory");
315 assert(r == 0);
316}
317
318void MDSDaemon::clean_up_admin_socket()
319{
320 AdminSocket *admin_socket = g_ceph_context->get_admin_socket();
321 admin_socket->unregister_command("status");
322 admin_socket->unregister_command("dump_ops_in_flight");
323 admin_socket->unregister_command("ops");
324 admin_socket->unregister_command("dump_blocked_ops");
325 admin_socket->unregister_command("dump_historic_ops");
326 admin_socket->unregister_command("dump_historic_ops_by_duration");
327 admin_socket->unregister_command("scrub_path");
328 admin_socket->unregister_command("tag path");
329 admin_socket->unregister_command("flush_path");
330 admin_socket->unregister_command("export dir");
331 admin_socket->unregister_command("dump cache");
332 admin_socket->unregister_command("dump tree");
333 admin_socket->unregister_command("session evict");
334 admin_socket->unregister_command("osdmap barrier");
335 admin_socket->unregister_command("session ls");
336 admin_socket->unregister_command("flush journal");
337 admin_socket->unregister_command("force_readonly");
338 admin_socket->unregister_command("get subtrees");
339 admin_socket->unregister_command("dirfrag split");
340 admin_socket->unregister_command("dirfrag merge");
341 admin_socket->unregister_command("dirfrag ls");
342 delete asok_hook;
343 asok_hook = NULL;
344}
345
346const char** MDSDaemon::get_tracked_conf_keys() const
347{
348 static const char* KEYS[] = {
349 "mds_op_complaint_time", "mds_op_log_threshold",
350 "mds_op_history_size", "mds_op_history_duration",
351 "mds_enable_op_tracker",
352 "mds_log_pause",
353 // clog & admin clog
354 "clog_to_monitors",
355 "clog_to_syslog",
356 "clog_to_syslog_facility",
357 "clog_to_syslog_level",
358 // PurgeQueue
359 "mds_max_purge_ops",
360 "mds_max_purge_ops_per_pg",
361 "mds_max_purge_files",
362 "clog_to_graylog",
363 "clog_to_graylog_host",
364 "clog_to_graylog_port",
365 "host",
366 "fsid",
367 NULL
368 };
369 return KEYS;
370}
371
372void MDSDaemon::handle_conf_change(const struct md_config_t *conf,
373 const std::set <std::string> &changed)
374{
375 // We may be called within mds_lock (via `tell`) or outwith the
376 // lock (via admin socket `config set`), so handle either case.
377 const bool initially_locked = mds_lock.is_locked_by_me();
378 if (!initially_locked) {
379 mds_lock.Lock();
380 }
381
382 if (changed.count("mds_op_complaint_time") ||
383 changed.count("mds_op_log_threshold")) {
384 if (mds_rank) {
385 mds_rank->op_tracker.set_complaint_and_threshold(conf->mds_op_complaint_time,
386 conf->mds_op_log_threshold);
387 }
388 }
389 if (changed.count("mds_op_history_size") ||
390 changed.count("mds_op_history_duration")) {
391 if (mds_rank) {
392 mds_rank->op_tracker.set_history_size_and_duration(conf->mds_op_history_size,
393 conf->mds_op_history_duration);
394 }
395 }
396 if (changed.count("mds_enable_op_tracker")) {
397 if (mds_rank) {
398 mds_rank->op_tracker.set_tracking(conf->mds_enable_op_tracker);
399 }
400 }
401 if (changed.count("clog_to_monitors") ||
402 changed.count("clog_to_syslog") ||
403 changed.count("clog_to_syslog_level") ||
404 changed.count("clog_to_syslog_facility") ||
405 changed.count("clog_to_graylog") ||
406 changed.count("clog_to_graylog_host") ||
407 changed.count("clog_to_graylog_port") ||
408 changed.count("host") ||
409 changed.count("fsid")) {
410 if (mds_rank) {
411 mds_rank->update_log_config();
412 }
413 }
414
415 if (!g_conf->mds_log_pause && changed.count("mds_log_pause")) {
416 if (mds_rank) {
417 mds_rank->mdlog->kick_submitter();
418 }
419 }
420
421 if (mds_rank) {
422 mds_rank->handle_conf_change(conf, changed);
423 }
424
425 if (!initially_locked) {
426 mds_lock.Unlock();
427 }
428}
429
430
431int MDSDaemon::init()
432{
433 dout(10) << sizeof(MDSCacheObject) << "\tMDSCacheObject" << dendl;
434 dout(10) << sizeof(CInode) << "\tCInode" << dendl;
435 dout(10) << sizeof(elist<void*>::item) << "\t elist<>::item *7=" << 7*sizeof(elist<void*>::item) << dendl;
436 dout(10) << sizeof(inode_t) << "\t inode_t " << dendl;
437 dout(10) << sizeof(nest_info_t) << "\t nest_info_t " << dendl;
438 dout(10) << sizeof(frag_info_t) << "\t frag_info_t " << dendl;
439 dout(10) << sizeof(SimpleLock) << "\t SimpleLock *5=" << 5*sizeof(SimpleLock) << dendl;
440 dout(10) << sizeof(ScatterLock) << "\t ScatterLock *3=" << 3*sizeof(ScatterLock) << dendl;
441 dout(10) << sizeof(CDentry) << "\tCDentry" << dendl;
442 dout(10) << sizeof(elist<void*>::item) << "\t elist<>::item" << dendl;
443 dout(10) << sizeof(SimpleLock) << "\t SimpleLock" << dendl;
444 dout(10) << sizeof(CDir) << "\tCDir " << dendl;
445 dout(10) << sizeof(elist<void*>::item) << "\t elist<>::item *2=" << 2*sizeof(elist<void*>::item) << dendl;
446 dout(10) << sizeof(fnode_t) << "\t fnode_t " << dendl;
447 dout(10) << sizeof(nest_info_t) << "\t nest_info_t *2" << dendl;
448 dout(10) << sizeof(frag_info_t) << "\t frag_info_t *2" << dendl;
449 dout(10) << sizeof(Capability) << "\tCapability " << dendl;
450 dout(10) << sizeof(xlist<void*>::item) << "\t xlist<>::item *2=" << 2*sizeof(xlist<void*>::item) << dendl;
451
452 messenger->add_dispatcher_tail(&beacon);
453 messenger->add_dispatcher_tail(this);
454
455 // get monmap
456 monc->set_messenger(messenger);
457
458 monc->set_want_keys(CEPH_ENTITY_TYPE_MON | CEPH_ENTITY_TYPE_OSD |
459 CEPH_ENTITY_TYPE_MDS | CEPH_ENTITY_TYPE_MGR);
460 int r = 0;
461 r = monc->init();
462 if (r < 0) {
463 derr << "ERROR: failed to get monmap: " << cpp_strerror(-r) << dendl;
464 mds_lock.Lock();
465 suicide();
466 mds_lock.Unlock();
467 return r;
468 }
469
470 // tell monc about log_client so it will know about mon session resets
471 monc->set_log_client(&log_client);
472
473 r = monc->authenticate();
474 if (r < 0) {
475 derr << "ERROR: failed to authenticate: " << cpp_strerror(-r) << dendl;
476 mds_lock.Lock();
477 suicide();
478 mds_lock.Unlock();
479 return r;
480 }
481
482 int rotating_auth_attempts = 0;
483 while (monc->wait_auth_rotating(30.0) < 0) {
484 if (++rotating_auth_attempts <= g_conf->max_rotating_auth_attempts) {
485 derr << "unable to obtain rotating service keys; retrying" << dendl;
486 continue;
487 }
488 derr << "ERROR: failed to refresh rotating keys, "
489 << "maximum retry time reached." << dendl;
490 mds_lock.Lock();
491 suicide();
492 mds_lock.Unlock();
493 return -ETIMEDOUT;
494 }
495
496 mgrc.init();
497 messenger->add_dispatcher_head(&mgrc);
498
499 mds_lock.Lock();
500 if (beacon.get_want_state() == CEPH_MDS_STATE_DNE) {
501 dout(4) << __func__ << ": terminated already, dropping out" << dendl;
502 mds_lock.Unlock();
503 return 0;
504 }
505
506 monc->sub_want("mdsmap", 0, 0);
507 monc->sub_want("mgrmap", 0, 0);
508 monc->renew_subs();
509
510 mds_lock.Unlock();
511
512 // Set up admin socket before taking mds_lock, so that ordering
513 // is consistent (later we take mds_lock within asok callbacks)
514 set_up_admin_socket();
515 g_conf->add_observer(this);
516 mds_lock.Lock();
517 if (beacon.get_want_state() == MDSMap::STATE_DNE) {
518 suicide(); // we could do something more graceful here
519 dout(4) << __func__ << ": terminated already, dropping out" << dendl;
520 mds_lock.Unlock();
521 return 0;
522 }
523
524 timer.init();
525
526 beacon.init(mdsmap);
527 messenger->set_myname(entity_name_t::MDS(MDS_RANK_NONE));
528
529 // schedule tick
530 reset_tick();
531 mds_lock.Unlock();
532
533 return 0;
534}
535
536void MDSDaemon::reset_tick()
537{
538 // cancel old
539 if (tick_event) timer.cancel_event(tick_event);
540
541 // schedule
542 tick_event = new C_MDS_Tick(this);
543 timer.add_event_after(g_conf->mds_tick_interval, tick_event);
544}
545
546void MDSDaemon::tick()
547{
7c673cae
FG
548 // reschedule
549 reset_tick();
550
551 // Call through to subsystems' tick functions
552 if (mds_rank) {
553 mds_rank->tick();
554 }
555}
556
557void MDSDaemon::send_command_reply(MCommand *m, MDSRank *mds_rank,
558 int r, bufferlist outbl,
559 const std::string& outs)
560{
561 Session *session = static_cast<Session *>(m->get_connection()->get_priv());
562 assert(session != NULL);
563 // If someone is using a closed session for sending commands (e.g.
564 // the ceph CLI) then we should feel free to clean up this connection
565 // as soon as we've sent them a response.
566 const bool live_session = mds_rank &&
567 mds_rank->sessionmap.get_session(session->info.inst.name) != nullptr
568 && session->get_state_seq() > 0;
569
570 if (!live_session) {
571 // This session only existed to issue commands, so terminate it
572 // as soon as we can.
573 assert(session->is_closed());
574 session->connection->mark_disposable();
575 session->put();
576 }
577
578 MCommandReply *reply = new MCommandReply(r, outs);
579 reply->set_tid(m->get_tid());
580 reply->set_data(outbl);
581 m->get_connection()->send_message(reply);
582}
583
584/* This function DOES put the passed message before returning*/
585void MDSDaemon::handle_command(MCommand *m)
586{
587 Session *session = static_cast<Session *>(m->get_connection()->get_priv());
588 assert(session != NULL);
589
590 int r = 0;
591 cmdmap_t cmdmap;
592 std::stringstream ss;
593 std::string outs;
594 bufferlist outbl;
595 Context *run_after = NULL;
596 bool need_reply = true;
597
598 if (!session->auth_caps.allow_all()) {
599 dout(1) << __func__
600 << ": received command from client without `tell` capability: "
601 << m->get_connection()->peer_addr << dendl;
602
603 ss << "permission denied";
604 r = -EPERM;
605 } else if (m->cmd.empty()) {
606 r = -EINVAL;
607 ss << "no command given";
608 outs = ss.str();
609 } else if (!cmdmap_from_json(m->cmd, &cmdmap, ss)) {
610 r = -EINVAL;
611 outs = ss.str();
612 } else {
613 r = _handle_command(cmdmap, m, &outbl, &outs, &run_after, &need_reply);
614 }
615
616 if (need_reply) {
617 send_command_reply(m, mds_rank, r, outbl, outs);
618 }
619
620 if (run_after) {
621 run_after->complete(0);
622 }
623
624 m->put();
625}
626
627
628struct MDSCommand {
629 string cmdstring;
630 string helpstring;
631 string module;
632 string perm;
633 string availability;
634} mds_commands[] = {
635
636#define COMMAND(parsesig, helptext, module, perm, availability) \
637 {parsesig, helptext, module, perm, availability},
638
639COMMAND("injectargs " \
640 "name=injected_args,type=CephString,n=N",
641 "inject configuration arguments into running MDS",
642 "mds", "*", "cli,rest")
c07f9fc5
FG
643COMMAND("config set " \
644 "name=key,type=CephString name=value,type=CephString",
645 "Set a configuration option at runtime (not persistent)",
646 "mds", "*", "cli,rest")
7c673cae
FG
647COMMAND("exit",
648 "Terminate this MDS",
649 "mds", "*", "cli,rest")
650COMMAND("respawn",
651 "Restart this MDS",
652 "mds", "*", "cli,rest")
653COMMAND("session kill " \
654 "name=session_id,type=CephInt",
655 "End a client session",
656 "mds", "*", "cli,rest")
657COMMAND("cpu_profiler " \
658 "name=arg,type=CephChoices,strings=status|flush",
659 "run cpu profiling on daemon", "mds", "rw", "cli,rest")
660COMMAND("session ls " \
661 "name=filters,type=CephString,n=N,req=false",
662 "List client sessions", "mds", "r", "cli,rest")
31f18b77
FG
663COMMAND("client ls " \
664 "name=filters,type=CephString,n=N,req=false",
665 "List client sessions", "mds", "r", "cli,rest")
7c673cae
FG
666COMMAND("session evict " \
667 "name=filters,type=CephString,n=N,req=false",
668 "Evict client session(s)", "mds", "rw", "cli,rest")
31f18b77
FG
669COMMAND("client evict " \
670 "name=filters,type=CephString,n=N,req=false",
671 "Evict client session(s)", "mds", "rw", "cli,rest")
7c673cae
FG
672COMMAND("damage ls",
673 "List detected metadata damage", "mds", "r", "cli,rest")
674COMMAND("damage rm name=damage_id,type=CephInt",
675 "Remove a damage table entry", "mds", "rw", "cli,rest")
c07f9fc5 676COMMAND("version", "report version of MDS", "mds", "r", "cli,rest")
7c673cae
FG
677COMMAND("heap " \
678 "name=heapcmd,type=CephChoices,strings=dump|start_profiler|stop_profiler|release|stats", \
679 "show heap usage info (available only if compiled with tcmalloc)", \
680 "mds", "*", "cli,rest")
681};
682
683
684int MDSDaemon::_handle_command(
685 const cmdmap_t &cmdmap,
686 MCommand *m,
687 bufferlist *outbl,
688 std::string *outs,
689 Context **run_later,
690 bool *need_reply)
691{
692 assert(outbl != NULL);
693 assert(outs != NULL);
694
695 class SuicideLater : public Context
696 {
697 MDSDaemon *mds;
698
699 public:
700 explicit SuicideLater(MDSDaemon *mds_) : mds(mds_) {}
701 void finish(int r) override {
702 // Wait a little to improve chances of caller getting
703 // our response before seeing us disappear from mdsmap
704 sleep(1);
705
706 mds->suicide();
707 }
708 };
709
710
711 class RespawnLater : public Context
712 {
713 MDSDaemon *mds;
714
715 public:
716
717 explicit RespawnLater(MDSDaemon *mds_) : mds(mds_) {}
718 void finish(int r) override {
719 // Wait a little to improve chances of caller getting
720 // our response before seeing us disappear from mdsmap
721 sleep(1);
722
723 mds->respawn();
724 }
725 };
726
727 std::stringstream ds;
728 std::stringstream ss;
729 std::string prefix;
c07f9fc5
FG
730 std::string format;
731 std::unique_ptr<Formatter> f(Formatter::create(format));
7c673cae
FG
732 cmd_getval(cct, cmdmap, "prefix", prefix);
733
734 int r = 0;
735
736 if (prefix == "get_command_descriptions") {
737 int cmdnum = 0;
c07f9fc5 738 std::unique_ptr<JSONFormatter> f(ceph::make_unique<JSONFormatter>());
7c673cae
FG
739 f->open_object_section("command_descriptions");
740 for (MDSCommand *cp = mds_commands;
741 cp < &mds_commands[ARRAY_SIZE(mds_commands)]; cp++) {
742
743 ostringstream secname;
744 secname << "cmd" << setfill('0') << std::setw(3) << cmdnum;
c07f9fc5 745 dump_cmddesc_to_json(f.get(), secname.str(), cp->cmdstring, cp->helpstring,
7c673cae
FG
746 cp->module, cp->perm, cp->availability, 0);
747 cmdnum++;
748 }
749 f->close_section(); // command_descriptions
750
751 f->flush(ds);
c07f9fc5
FG
752 goto out;
753 }
754
755 cmd_getval(cct, cmdmap, "format", format);
756 if (prefix == "version") {
757 if (f) {
758 f->open_object_section("version");
759 f->dump_string("version", pretty_version_to_str());
760 f->close_section();
761 f->flush(ds);
762 } else {
763 ds << pretty_version_to_str();
764 }
7c673cae
FG
765 } else if (prefix == "injectargs") {
766 vector<string> argsvec;
767 cmd_getval(cct, cmdmap, "injected_args", argsvec);
768
769 if (argsvec.empty()) {
770 r = -EINVAL;
771 ss << "ignoring empty injectargs";
772 goto out;
773 }
774 string args = argsvec.front();
775 for (vector<string>::iterator a = ++argsvec.begin(); a != argsvec.end(); ++a)
776 args += " " + *a;
777 r = cct->_conf->injectargs(args, &ss);
c07f9fc5
FG
778 } else if (prefix == "config set") {
779 std::string key;
780 cmd_getval(cct, cmdmap, "key", key);
781 std::string val;
782 cmd_getval(cct, cmdmap, "value", val);
783 r = cct->_conf->set_val(key, val, true, &ss);
7c673cae
FG
784 } else if (prefix == "exit") {
785 // We will send response before executing
786 ss << "Exiting...";
787 *run_later = new SuicideLater(this);
c07f9fc5 788 } else if (prefix == "respawn") {
7c673cae
FG
789 // We will send response before executing
790 ss << "Respawning...";
791 *run_later = new RespawnLater(this);
792 } else if (prefix == "session kill") {
793 if (mds_rank == NULL) {
794 r = -EINVAL;
795 ss << "MDS not active";
796 goto out;
797 }
798 // FIXME harmonize `session kill` with admin socket session evict
799 int64_t session_id = 0;
800 bool got = cmd_getval(cct, cmdmap, "session_id", session_id);
801 assert(got);
31f18b77
FG
802 bool killed = mds_rank->evict_client(session_id, false,
803 g_conf->mds_session_blacklist_on_evict,
804 ss);
7c673cae
FG
805 if (!killed)
806 r = -ENOENT;
807 } else if (prefix == "heap") {
808 if (!ceph_using_tcmalloc()) {
809 r = -EOPNOTSUPP;
810 ss << "could not issue heap profiler command -- not using tcmalloc!";
811 } else {
812 string heapcmd;
813 cmd_getval(cct, cmdmap, "heapcmd", heapcmd);
814 vector<string> heapcmd_vec;
815 get_str_vec(heapcmd, heapcmd_vec);
816 ceph_heap_profiler_handle_command(heapcmd_vec, ds);
817 }
818 } else if (prefix == "cpu_profiler") {
819 string arg;
820 cmd_getval(cct, cmdmap, "arg", arg);
821 vector<string> argvec;
822 get_str_vec(arg, argvec);
823 cpu_profiler_handle_command(argvec, ds);
824 } else {
825 // Give MDSRank a shot at the command
826 if (mds_rank) {
827 bool handled = mds_rank->handle_command(cmdmap, m, &r, &ds, &ss,
828 need_reply);
829 if (handled) {
830 goto out;
831 }
832 }
833
834 // Neither MDSDaemon nor MDSRank know this command
835 std::ostringstream ss;
836 ss << "unrecognized command! " << prefix;
837 r = -EINVAL;
838 }
839
840out:
841 *outs = ss.str();
842 outbl->append(ds);
843 return r;
844}
845
846/* This function deletes the passed message before returning. */
847
848void MDSDaemon::handle_mds_map(MMDSMap *m)
849{
850 version_t epoch = m->get_epoch();
851 dout(5) << "handle_mds_map epoch " << epoch << " from " << m->get_source() << dendl;
852
853 // is it new?
854 if (epoch <= mdsmap->get_epoch()) {
855 dout(5) << " old map epoch " << epoch << " <= " << mdsmap->get_epoch()
856 << ", discarding" << dendl;
857 m->put();
858 return;
859 }
860
861 entity_addr_t addr;
862
863 // keep old map, for a moment
864 MDSMap *oldmap = mdsmap;
865
866 // decode and process
867 mdsmap = new MDSMap;
868 mdsmap->decode(m->get_encoded());
869 const MDSMap::DaemonState new_state = mdsmap->get_state_gid(mds_gid_t(monc->get_global_id()));
870 const int incarnation = mdsmap->get_inc_gid(mds_gid_t(monc->get_global_id()));
871
872 monc->sub_got("mdsmap", mdsmap->get_epoch());
873
874 // Calculate my effective rank (either my owned rank or my
875 // standby_for_rank if in standby replay)
876 mds_rank_t whoami = mdsmap->get_rank_gid(mds_gid_t(monc->get_global_id()));
877
878 // verify compatset
879 CompatSet mdsmap_compat(get_mdsmap_compat_set_all());
880 dout(10) << " my compat " << mdsmap_compat << dendl;
881 dout(10) << " mdsmap compat " << mdsmap->compat << dendl;
882 if (!mdsmap_compat.writeable(mdsmap->compat)) {
883 dout(0) << "handle_mds_map mdsmap compatset " << mdsmap->compat
884 << " not writeable with daemon features " << mdsmap_compat
885 << ", killing myself" << dendl;
886 suicide();
887 goto out;
888 }
889
890 // mark down any failed peers
891 for (map<mds_gid_t,MDSMap::mds_info_t>::const_iterator p = oldmap->get_mds_info().begin();
892 p != oldmap->get_mds_info().end();
893 ++p) {
894 if (mdsmap->get_mds_info().count(p->first) == 0) {
895 dout(10) << " peer mds gid " << p->first << " removed from map" << dendl;
896 messenger->mark_down(p->second.addr);
897 }
898 }
899
900 if (whoami == MDS_RANK_NONE &&
901 new_state == MDSMap::STATE_STANDBY_REPLAY) {
902 whoami = mdsmap->get_mds_info_gid(mds_gid_t(monc->get_global_id())).standby_for_rank;
903 }
904
905 // see who i am
906 addr = messenger->get_myaddr();
c07f9fc5 907 dout(10) << "map says I am " << addr << " mds." << whoami << "." << incarnation
7c673cae
FG
908 << " state " << ceph_mds_state_name(new_state) << dendl;
909
910 if (whoami == MDS_RANK_NONE) {
911 if (mds_rank != NULL) {
c07f9fc5 912 const auto myid = monc->get_global_id();
7c673cae
FG
913 // We have entered a rank-holding state, we shouldn't be back
914 // here!
915 if (g_conf->mds_enforce_unique_name) {
916 if (mds_gid_t existing = mdsmap->find_mds_gid_by_name(name)) {
917 const MDSMap::mds_info_t& i = mdsmap->get_info_gid(existing);
c07f9fc5
FG
918 if (i.global_id > myid) {
919 dout(1) << "map replaced me with another mds." << whoami
920 << " with gid (" << i.global_id << ") larger than myself ("
921 << myid << "); quitting!" << dendl;
7c673cae
FG
922 // Call suicide() rather than respawn() because if someone else
923 // has taken our ID, we don't want to keep restarting and
924 // fighting them for the ID.
925 suicide();
926 m->put();
927 return;
928 }
929 }
930 }
931
c07f9fc5
FG
932 dout(1) << "map removed me (mds." << whoami << " gid:"
933 << myid << ") from cluster due to lost contact; respawning" << dendl;
7c673cae
FG
934 respawn();
935 }
936 // MDSRank not active: process the map here to see if we have
937 // been assigned a rank.
938 dout(10) << __func__ << ": handling map in rankless mode" << dendl;
939 _handle_mds_map(oldmap);
940 } else {
941
942 // Did we already hold a different rank? MDSMonitor shouldn't try
943 // to change that out from under me!
944 if (mds_rank && whoami != mds_rank->get_nodeid()) {
945 derr << "Invalid rank transition " << mds_rank->get_nodeid() << "->"
946 << whoami << dendl;
947 respawn();
948 }
949
950 // Did I previously not hold a rank? Initialize!
951 if (mds_rank == NULL) {
952 mds_rank = new MDSRankDispatcher(whoami, mds_lock, clog,
953 timer, beacon, mdsmap, messenger, monc,
954 new FunctionContext([this](int r){respawn();}),
955 new FunctionContext([this](int r){suicide();}));
956 dout(10) << __func__ << ": initializing MDS rank "
957 << mds_rank->get_nodeid() << dendl;
958 mds_rank->init();
959 }
960
961 // MDSRank is active: let him process the map, we have no say.
962 dout(10) << __func__ << ": handling map as rank "
963 << mds_rank->get_nodeid() << dendl;
964 mds_rank->handle_mds_map(m, oldmap);
965 }
966
967out:
968 beacon.notify_mdsmap(mdsmap);
969 m->put();
970 delete oldmap;
971}
972
973void MDSDaemon::_handle_mds_map(MDSMap *oldmap)
974{
975 MDSMap::DaemonState new_state = mdsmap->get_state_gid(mds_gid_t(monc->get_global_id()));
976
977 // Normal rankless case, we're marked as standby
978 if (new_state == MDSMap::STATE_STANDBY) {
979 beacon.set_want_state(mdsmap, new_state);
980 dout(1) << "handle_mds_map standby" << dendl;
981
982 return;
983 }
984
985 // Case where we thought we were standby, but MDSMap disagrees
986 if (beacon.get_want_state() == MDSMap::STATE_STANDBY) {
987 dout(10) << "dropped out of mdsmap, try to re-add myself" << dendl;
988 new_state = MDSMap::STATE_BOOT;
989 beacon.set_want_state(mdsmap, new_state);
990 return;
991 }
992
993 // Case where we have sent a boot beacon that isn't reflected yet
994 if (beacon.get_want_state() == MDSMap::STATE_BOOT) {
995 dout(10) << "not in map yet" << dendl;
996 }
997}
998
999void MDSDaemon::handle_signal(int signum)
1000{
1001 assert(signum == SIGINT || signum == SIGTERM);
1002 derr << "*** got signal " << sig_str(signum) << " ***" << dendl;
1003 {
1004 Mutex::Locker l(mds_lock);
1005 if (stopping) {
1006 return;
1007 }
1008 suicide();
1009 }
1010}
1011
1012void MDSDaemon::suicide()
1013{
1014 assert(mds_lock.is_locked());
1015
1016 // make sure we don't suicide twice
1017 assert(stopping == false);
1018 stopping = true;
1019
1020 dout(1) << "suicide. wanted state "
1021 << ceph_mds_state_name(beacon.get_want_state()) << dendl;
1022
1023 if (tick_event) {
1024 timer.cancel_event(tick_event);
1025 tick_event = 0;
1026 }
1027
1028 //because add_observer is called after set_up_admin_socket
1029 //so we can use asok_hook to avoid assert in the remove_observer
1030 if (asok_hook != NULL)
1031 g_conf->remove_observer(this);
1032
1033 clean_up_admin_socket();
1034
1035 // Inform MDS we are going away, then shut down beacon
1036 beacon.set_want_state(mdsmap, MDSMap::STATE_DNE);
1037 if (!mdsmap->is_dne_gid(mds_gid_t(monc->get_global_id()))) {
1038 // Notify the MDSMonitor that we're dying, so that it doesn't have to
1039 // wait for us to go laggy. Only do this if we're actually in the
1040 // MDSMap, because otherwise the MDSMonitor will drop our message.
1041 beacon.send_and_wait(1);
1042 }
1043 beacon.shutdown();
1044
1045 mgrc.shutdown();
1046
1047 if (mds_rank) {
1048 mds_rank->shutdown();
1049 } else {
1050 timer.shutdown();
1051
1052 monc->shutdown();
1053 messenger->shutdown();
1054 }
1055}
1056
1057void MDSDaemon::respawn()
1058{
1059 dout(1) << "respawn" << dendl;
1060
1061 char *new_argv[orig_argc+1];
1062 dout(1) << " e: '" << orig_argv[0] << "'" << dendl;
1063 for (int i=0; i<orig_argc; i++) {
1064 new_argv[i] = (char *)orig_argv[i];
1065 dout(1) << " " << i << ": '" << orig_argv[i] << "'" << dendl;
1066 }
1067 new_argv[orig_argc] = NULL;
1068
1069 /* Determine the path to our executable, test if Linux /proc/self/exe exists.
1070 * This allows us to exec the same executable even if it has since been
1071 * unlinked.
1072 */
1073 char exe_path[PATH_MAX] = "";
1074 if (readlink(PROCPREFIX "/proc/self/exe", exe_path, PATH_MAX-1) == -1) {
1075 /* Print CWD for the user's interest */
1076 char buf[PATH_MAX];
1077 char *cwd = getcwd(buf, sizeof(buf));
1078 assert(cwd);
1079 dout(1) << " cwd " << cwd << dendl;
1080
1081 /* Fall back to a best-effort: just running in our CWD */
1082 strncpy(exe_path, orig_argv[0], PATH_MAX-1);
1083 } else {
1084 dout(1) << "respawning with exe " << exe_path << dendl;
1085 strcpy(exe_path, PROCPREFIX "/proc/self/exe");
1086 }
1087
1088 dout(1) << " exe_path " << exe_path << dendl;
1089
1090 unblock_all_signals(NULL);
1091 execv(exe_path, new_argv);
1092
1093 dout(0) << "respawn execv " << orig_argv[0]
1094 << " failed with " << cpp_strerror(errno) << dendl;
1095
1096 // We have to assert out here, because suicide() returns, and callers
1097 // to respawn expect it never to return.
1098 ceph_abort();
1099}
1100
1101
1102
1103bool MDSDaemon::ms_dispatch(Message *m)
1104{
1105 Mutex::Locker l(mds_lock);
1106 if (stopping) {
1107 return false;
1108 }
1109
1110 // Drop out early if shutting down
1111 if (beacon.get_want_state() == CEPH_MDS_STATE_DNE) {
1112 dout(10) << " stopping, discarding " << *m << dendl;
1113 m->put();
1114 return true;
1115 }
1116
1117 // First see if it's a daemon message
1118 const bool handled_core = handle_core_message(m);
1119 if (handled_core) {
1120 return true;
1121 }
1122
1123 // Not core, try it as a rank message
1124 if (mds_rank) {
1125 return mds_rank->ms_dispatch(m);
1126 } else {
1127 return false;
1128 }
1129}
1130
1131bool MDSDaemon::ms_get_authorizer(int dest_type, AuthAuthorizer **authorizer, bool force_new)
1132{
1133 dout(10) << "MDSDaemon::ms_get_authorizer type="
1134 << ceph_entity_type_name(dest_type) << dendl;
1135
1136 /* monitor authorization is being handled on different layer */
1137 if (dest_type == CEPH_ENTITY_TYPE_MON)
1138 return true;
1139
1140 if (force_new) {
1141 if (monc->wait_auth_rotating(10) < 0)
1142 return false;
1143 }
1144
1145 *authorizer = monc->build_authorizer(dest_type);
1146 return *authorizer != NULL;
1147}
1148
1149
1150/*
1151 * high priority messages we always process
1152 */
1153bool MDSDaemon::handle_core_message(Message *m)
1154{
1155 switch (m->get_type()) {
1156 case CEPH_MSG_MON_MAP:
1157 ALLOW_MESSAGES_FROM(CEPH_ENTITY_TYPE_MON);
1158 m->put();
1159 break;
1160
1161 // MDS
1162 case CEPH_MSG_MDS_MAP:
1163 ALLOW_MESSAGES_FROM(CEPH_ENTITY_TYPE_MON | CEPH_ENTITY_TYPE_MDS);
1164 handle_mds_map(static_cast<MMDSMap*>(m));
1165 break;
1166
1167 // OSD
1168 case MSG_COMMAND:
1169 handle_command(static_cast<MCommand*>(m));
1170 break;
1171 case CEPH_MSG_OSD_MAP:
1172 ALLOW_MESSAGES_FROM(CEPH_ENTITY_TYPE_MON | CEPH_ENTITY_TYPE_OSD);
1173
1174 if (mds_rank) {
1175 mds_rank->handle_osd_map();
1176 }
1177 m->put();
1178 break;
1179
1180 case MSG_MON_COMMAND:
1181 ALLOW_MESSAGES_FROM(CEPH_ENTITY_TYPE_MON);
1182 clog->warn() << "dropping `mds tell` command from legacy monitor";
1183 m->put();
1184 break;
1185
1186 default:
1187 return false;
1188 }
1189 return true;
1190}
1191
1192void MDSDaemon::ms_handle_connect(Connection *con)
1193{
1194}
1195
1196bool MDSDaemon::ms_handle_reset(Connection *con)
1197{
1198 if (con->get_peer_type() != CEPH_ENTITY_TYPE_CLIENT)
1199 return false;
1200
1201 Mutex::Locker l(mds_lock);
1202 if (stopping) {
1203 return false;
1204 }
1205 dout(5) << "ms_handle_reset on " << con->get_peer_addr() << dendl;
1206 if (beacon.get_want_state() == CEPH_MDS_STATE_DNE)
1207 return false;
1208
1209 Session *session = static_cast<Session *>(con->get_priv());
1210 if (session) {
1211 if (session->is_closed()) {
1212 dout(3) << "ms_handle_reset closing connection for session " << session->info.inst << dendl;
1213 con->mark_down();
1214 con->set_priv(NULL);
1215 }
1216 session->put();
1217 } else {
1218 con->mark_down();
1219 }
1220 return false;
1221}
1222
1223
1224void MDSDaemon::ms_handle_remote_reset(Connection *con)
1225{
1226 if (con->get_peer_type() != CEPH_ENTITY_TYPE_CLIENT)
1227 return;
1228
1229 Mutex::Locker l(mds_lock);
1230 if (stopping) {
1231 return;
1232 }
1233
1234 dout(5) << "ms_handle_remote_reset on " << con->get_peer_addr() << dendl;
1235 if (beacon.get_want_state() == CEPH_MDS_STATE_DNE)
1236 return;
1237
1238 Session *session = static_cast<Session *>(con->get_priv());
1239 if (session) {
1240 if (session->is_closed()) {
1241 dout(3) << "ms_handle_remote_reset closing connection for session " << session->info.inst << dendl;
1242 con->mark_down();
1243 con->set_priv(NULL);
1244 }
1245 session->put();
1246 }
1247}
1248
1249bool MDSDaemon::ms_handle_refused(Connection *con)
1250{
1251 // do nothing for now
1252 return false;
1253}
1254
1255bool MDSDaemon::ms_verify_authorizer(Connection *con, int peer_type,
1256 int protocol, bufferlist& authorizer_data, bufferlist& authorizer_reply,
1257 bool& is_valid, CryptoKey& session_key)
1258{
1259 Mutex::Locker l(mds_lock);
1260 if (stopping) {
1261 return false;
1262 }
1263 if (beacon.get_want_state() == CEPH_MDS_STATE_DNE)
1264 return false;
1265
1266 AuthAuthorizeHandler *authorize_handler = 0;
1267 switch (peer_type) {
1268 case CEPH_ENTITY_TYPE_MDS:
1269 authorize_handler = authorize_handler_cluster_registry->get_handler(protocol);
1270 break;
1271 default:
1272 authorize_handler = authorize_handler_service_registry->get_handler(protocol);
1273 }
1274 if (!authorize_handler) {
1275 dout(0) << "No AuthAuthorizeHandler found for protocol " << protocol << dendl;
1276 is_valid = false;
1277 return true;
1278 }
1279
1280 AuthCapsInfo caps_info;
1281 EntityName name;
1282 uint64_t global_id;
1283
c07f9fc5
FG
1284 RotatingKeyRing *keys = monc->rotating_secrets.get();
1285 if (keys) {
1286 is_valid = authorize_handler->verify_authorizer(
1287 cct, keys,
1288 authorizer_data, authorizer_reply, name, global_id, caps_info,
1289 session_key);
1290 } else {
1291 dout(10) << __func__ << " no rotating_keys (yet), denied" << dendl;
1292 is_valid = false;
1293 }
7c673cae
FG
1294
1295 if (is_valid) {
1296 entity_name_t n(con->get_peer_type(), global_id);
1297
1298 // We allow connections and assign Session instances to connections
1299 // even if we have not been assigned a rank, because clients with
1300 // "allow *" are allowed to connect and do 'tell' operations before
1301 // we have a rank.
1302 Session *s = NULL;
1303 if (mds_rank) {
1304 // If we do hold a rank, see if this is an existing client establishing
1305 // a new connection, rather than a new client
1306 s = mds_rank->sessionmap.get_session(n);
1307 }
1308
1309 // Wire up a Session* to this connection
1310 // It doesn't go into a SessionMap instance until it sends an explicit
1311 // request to open a session (initial state of Session is `closed`)
1312 if (!s) {
1313 s = new Session;
1314 s->info.auth_name = name;
1315 s->info.inst.addr = con->get_peer_addr();
1316 s->info.inst.name = n;
1317 dout(10) << " new session " << s << " for " << s->info.inst << " con " << con << dendl;
1318 con->set_priv(s);
1319 s->connection = con;
1320 } else {
1321 dout(10) << " existing session " << s << " for " << s->info.inst << " existing con " << s->connection
1322 << ", new/authorizing con " << con << dendl;
1323 con->set_priv(s->get());
1324
1325
1326
1327 // Wait until we fully accept the connection before setting
1328 // s->connection. In particular, if there are multiple incoming
1329 // connection attempts, they will all get their authorizer
1330 // validated, but some of them may "lose the race" and get
1331 // dropped. We only want to consider the winner(s). See
1332 // ms_handle_accept(). This is important for Sessions we replay
1333 // from the journal on recovery that don't have established
1334 // messenger state; we want the con from only the winning
1335 // connect attempt(s). (Normal reconnects that don't follow MDS
1336 // recovery are reconnected to the existing con by the
1337 // messenger.)
1338 }
1339
1340 if (caps_info.allow_all) {
1341 // Flag for auth providers that don't provide cap strings
1342 s->auth_caps.set_allow_all();
1343 }
1344
1345 bufferlist::iterator p = caps_info.caps.begin();
1346 string auth_cap_str;
1347 try {
1348 ::decode(auth_cap_str, p);
1349
1350 dout(10) << __func__ << ": parsing auth_cap_str='" << auth_cap_str << "'" << dendl;
1351 std::ostringstream errstr;
1352 if (!s->auth_caps.parse(g_ceph_context, auth_cap_str, &errstr)) {
1353 dout(1) << __func__ << ": auth cap parse error: " << errstr.str()
1354 << " parsing '" << auth_cap_str << "'" << dendl;
1355 clog->warn() << name << " mds cap '" << auth_cap_str
1356 << "' does not parse: " << errstr.str();
1357 }
1358 } catch (buffer::error& e) {
1359 // Assume legacy auth, defaults to:
1360 // * permit all filesystem ops
1361 // * permit no `tell` ops
1362 dout(1) << __func__ << ": cannot decode auth caps bl of length " << caps_info.caps.length() << dendl;
1363 }
1364 }
1365
1366 return true; // we made a decision (see is_valid)
1367}
1368
1369
1370void MDSDaemon::ms_handle_accept(Connection *con)
1371{
1372 Mutex::Locker l(mds_lock);
1373 if (stopping) {
1374 return;
1375 }
1376
1377 Session *s = static_cast<Session *>(con->get_priv());
1378 dout(10) << "ms_handle_accept " << con->get_peer_addr() << " con " << con << " session " << s << dendl;
1379 if (s) {
1380 if (s->connection != con) {
1381 dout(10) << " session connection " << s->connection << " -> " << con << dendl;
1382 s->connection = con;
1383
1384 // send out any queued messages
1385 while (!s->preopen_out_queue.empty()) {
1386 con->send_message(s->preopen_out_queue.front());
1387 s->preopen_out_queue.pop_front();
1388 }
1389 }
1390 s->put();
1391 }
1392}
1393
1394bool MDSDaemon::is_clean_shutdown()
1395{
1396 if (mds_rank) {
1397 return mds_rank->is_stopped();
1398 } else {
1399 return true;
1400 }
1401}