]> git.proxmox.com Git - ceph.git/blame - ceph/src/mgr/MgrClient.cc
update sources to v12.2.3
[ceph.git] / ceph / src / mgr / MgrClient.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) 2016 John Spray <john.spray@redhat.com>
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 "MgrClient.h"
16
17#include "mgr/MgrContext.h"
18
19#include "msg/Messenger.h"
20#include "messages/MMgrMap.h"
21#include "messages/MMgrReport.h"
22#include "messages/MMgrOpen.h"
23#include "messages/MMgrConfigure.h"
24#include "messages/MCommand.h"
25#include "messages/MCommandReply.h"
26#include "messages/MPGStats.h"
27
28#define dout_subsys ceph_subsys_mgrc
29#undef dout_prefix
30#define dout_prefix *_dout << "mgrc " << __func__ << " "
31
32MgrClient::MgrClient(CephContext *cct_, Messenger *msgr_)
33 : Dispatcher(cct_), cct(cct_), msgr(msgr_),
34 timer(cct_, lock)
35{
36 assert(cct != nullptr);
37}
38
39void MgrClient::init()
40{
41 Mutex::Locker l(lock);
42
43 assert(msgr != nullptr);
44
45 timer.init();
46}
47
48void MgrClient::shutdown()
49{
50 Mutex::Locker l(lock);
51
52 if (connect_retry_callback) {
53 timer.cancel_event(connect_retry_callback);
54 connect_retry_callback = nullptr;
55 }
56
57 // forget about in-flight commands if we are prematurely shut down
58 // (e.g., by control-C)
59 command_table.clear();
60
61 timer.shutdown();
31f18b77
FG
62 if (session) {
63 session->con->mark_down();
64 session.reset();
65 }
7c673cae
FG
66}
67
68bool MgrClient::ms_dispatch(Message *m)
69{
70 Mutex::Locker l(lock);
71
72 switch(m->get_type()) {
73 case MSG_MGR_MAP:
74 return handle_mgr_map(static_cast<MMgrMap*>(m));
75 case MSG_MGR_CONFIGURE:
76 return handle_mgr_configure(static_cast<MMgrConfigure*>(m));
77 case MSG_COMMAND_REPLY:
78 if (m->get_source().type() == CEPH_ENTITY_TYPE_MGR) {
79 handle_command_reply(static_cast<MCommandReply*>(m));
80 return true;
81 } else {
82 return false;
83 }
84 default:
85 ldout(cct, 30) << "Not handling " << *m << dendl;
86 return false;
87 }
88}
89
90void MgrClient::reconnect()
91{
92 assert(lock.is_locked_by_me());
93
94 if (session) {
95 ldout(cct, 4) << "Terminating session with "
96 << session->con->get_peer_addr() << dendl;
97 session->con->mark_down();
98 session.reset();
99 stats_period = 0;
100 if (report_callback != nullptr) {
101 timer.cancel_event(report_callback);
102 report_callback = nullptr;
103 }
104 }
105
106 if (!map.get_available()) {
107 ldout(cct, 4) << "No active mgr available yet" << dendl;
108 return;
109 }
110
111 if (last_connect_attempt != utime_t()) {
112 utime_t now = ceph_clock_now();
113 utime_t when = last_connect_attempt;
3efd9988 114 when += cct->_conf->get_val<double>("mgr_connect_retry_interval");
7c673cae
FG
115 if (now < when) {
116 if (!connect_retry_callback) {
3efd9988
FG
117 connect_retry_callback = timer.add_event_at(
118 when,
119 new FunctionContext([this](int r){
120 connect_retry_callback = nullptr;
121 reconnect();
122 }));
7c673cae
FG
123 }
124 ldout(cct, 4) << "waiting to retry connect until " << when << dendl;
125 return;
126 }
127 }
128
129 if (connect_retry_callback) {
130 timer.cancel_event(connect_retry_callback);
131 connect_retry_callback = nullptr;
132 }
133
134 ldout(cct, 4) << "Starting new session with " << map.get_active_addr()
135 << dendl;
136 entity_inst_t inst;
137 inst.addr = map.get_active_addr();
138 inst.name = entity_name_t::MGR(map.get_active_gid());
139 last_connect_attempt = ceph_clock_now();
140
141 session.reset(new MgrSessionState());
142 session->con = msgr->get_connection(inst);
143
224ce89b
WB
144 if (service_daemon) {
145 daemon_dirty_status = true;
146 }
147
7c673cae
FG
148 // Don't send an open if we're just a client (i.e. doing
149 // command-sending, not stats etc)
c07f9fc5 150 if (!cct->_conf->name.is_client() || service_daemon) {
224ce89b 151 _send_open();
7c673cae
FG
152 }
153
154 // resend any pending commands
155 for (const auto &p : command_table.get_commands()) {
156 MCommand *m = p.second.get_message({});
157 assert(session);
158 assert(session->con);
159 session->con->send_message(m);
160 }
161}
162
224ce89b
WB
163void MgrClient::_send_open()
164{
165 if (session && session->con) {
166 auto open = new MMgrOpen();
167 if (!service_name.empty()) {
168 open->service_name = service_name;
169 open->daemon_name = daemon_name;
170 } else {
c07f9fc5 171 open->daemon_name = cct->_conf->name.get_id();
224ce89b
WB
172 }
173 if (service_daemon) {
174 open->service_daemon = service_daemon;
175 open->daemon_metadata = daemon_metadata;
176 }
177 session->con->send_message(open);
178 }
179}
180
7c673cae
FG
181bool MgrClient::handle_mgr_map(MMgrMap *m)
182{
183 assert(lock.is_locked_by_me());
184
185 ldout(cct, 20) << *m << dendl;
186
187 map = m->get_map();
188 ldout(cct, 4) << "Got map version " << map.epoch << dendl;
189 m->put();
190
191 ldout(cct, 4) << "Active mgr is now " << map.get_active_addr() << dendl;
192
193 // Reset session?
194 if (!session ||
195 session->con->get_peer_addr() != map.get_active_addr()) {
196 reconnect();
197 }
198
199 return true;
200}
201
202bool MgrClient::ms_handle_reset(Connection *con)
203{
204 Mutex::Locker l(lock);
205 if (session && con == session->con) {
206 ldout(cct, 4) << __func__ << " con " << con << dendl;
207 reconnect();
208 return true;
209 }
210 return false;
211}
212
213bool MgrClient::ms_handle_refused(Connection *con)
214{
215 // do nothing for now
216 return false;
217}
218
219void MgrClient::send_report()
220{
221 assert(lock.is_locked_by_me());
222 assert(session);
223 report_callback = nullptr;
224
225 auto report = new MMgrReport();
226 auto pcc = cct->get_perfcounters_collection();
227
228 pcc->with_counters([this, report](
229 const PerfCountersCollection::CounterMap &by_path)
230 {
3efd9988
FG
231 // Helper for checking whether a counter should be included
232 auto include_counter = [this](
233 const PerfCounters::perf_counter_data_any_d &ctr,
234 const PerfCounters &perf_counters)
235 {
236 return perf_counters.get_adjusted_priority(ctr.prio) >= (int)stats_threshold;
237 };
238
239 // Helper for cases where we want to forget a counter
240 auto undeclare = [report, this](const std::string &path)
241 {
242 report->undeclare_types.push_back(path);
243 ldout(cct,20) << " undeclare " << path << dendl;
244 session->declared.erase(path);
245 };
246
7c673cae 247 ENCODE_START(1, 1, report->packed);
3efd9988
FG
248
249 // Find counters that no longer exist, and undeclare them
7c673cae 250 for (auto p = session->declared.begin(); p != session->declared.end(); ) {
3efd9988
FG
251 const auto &path = *(p++);
252 if (by_path.count(path) == 0) {
253 undeclare(path);
7c673cae
FG
254 }
255 }
3efd9988 256
7c673cae
FG
257 for (const auto &i : by_path) {
258 auto& path = i.first;
3efd9988
FG
259 auto& data = *(i.second.data);
260 auto& perf_counters = *(i.second.perf_counters);
261
262 // Find counters that still exist, but are no longer permitted by
263 // stats_threshold
264 if (!include_counter(data, perf_counters)) {
265 if (session->declared.count(path)) {
266 undeclare(path);
267 }
268 continue;
269 }
7c673cae
FG
270
271 if (session->declared.count(path) == 0) {
3efd9988 272 ldout(cct,20) << " declare " << path << dendl;
7c673cae
FG
273 PerfCounterType type;
274 type.path = path;
275 if (data.description) {
276 type.description = data.description;
277 }
278 if (data.nick) {
279 type.nick = data.nick;
280 }
281 type.type = data.type;
3efd9988 282 type.priority = perf_counters.get_adjusted_priority(data.prio);
7c673cae
FG
283 report->declare_types.push_back(std::move(type));
284 session->declared.insert(path);
285 }
286
31f18b77 287 ::encode(static_cast<uint64_t>(data.u64), report->packed);
7c673cae 288 if (data.type & PERFCOUNTER_LONGRUNAVG) {
31f18b77
FG
289 ::encode(static_cast<uint64_t>(data.avgcount), report->packed);
290 ::encode(static_cast<uint64_t>(data.avgcount2), report->packed);
7c673cae
FG
291 }
292 }
293 ENCODE_FINISH(report->packed);
294
3efd9988
FG
295 ldout(cct, 20) << "sending " << session->declared.size() << " counters ("
296 "of possible " << by_path.size() << "), "
297 << report->declare_types.size() << " new, "
298 << report->undeclare_types.size() << " removed"
299 << dendl;
7c673cae
FG
300 });
301
302 ldout(cct, 20) << "encoded " << report->packed.length() << " bytes" << dendl;
303
224ce89b
WB
304 if (daemon_name.size()) {
305 report->daemon_name = daemon_name;
306 } else {
c07f9fc5 307 report->daemon_name = cct->_conf->name.get_id();
224ce89b
WB
308 }
309 report->service_name = service_name;
310
311 if (daemon_dirty_status) {
312 report->daemon_status = daemon_status;
313 daemon_dirty_status = false;
314 }
7c673cae 315
b32b8144 316 report->osd_health_metrics = std::move(osd_health_metrics);
7c673cae
FG
317 session->con->send_message(report);
318
319 if (stats_period != 0) {
320 report_callback = new FunctionContext([this](int r){send_report();});
321 timer.add_event_after(stats_period, report_callback);
322 }
323
31f18b77
FG
324 send_pgstats();
325}
326
327void MgrClient::send_pgstats()
328{
329 if (pgstats_cb && session) {
330 session->con->send_message(pgstats_cb());
7c673cae
FG
331 }
332}
333
334bool MgrClient::handle_mgr_configure(MMgrConfigure *m)
335{
336 assert(lock.is_locked_by_me());
337
338 ldout(cct, 20) << *m << dendl;
339
340 if (!session) {
341 lderr(cct) << "dropping unexpected configure message" << dendl;
342 m->put();
343 return true;
344 }
345
346 ldout(cct, 4) << "stats_period=" << m->stats_period << dendl;
347
3efd9988
FG
348 if (stats_threshold != m->stats_threshold) {
349 ldout(cct, 4) << "updated stats threshold: " << m->stats_threshold << dendl;
350 stats_threshold = m->stats_threshold;
351 }
352
7c673cae
FG
353 bool starting = (stats_period == 0) && (m->stats_period != 0);
354 stats_period = m->stats_period;
355 if (starting) {
356 send_report();
357 }
358
359 m->put();
360 return true;
361}
362
363int MgrClient::start_command(const vector<string>& cmd, const bufferlist& inbl,
364 bufferlist *outbl, string *outs,
365 Context *onfinish)
366{
367 Mutex::Locker l(lock);
368
369 ldout(cct, 20) << "cmd: " << cmd << dendl;
370
371 if (map.epoch == 0) {
372 ldout(cct,20) << " no MgrMap, assuming EACCES" << dendl;
373 return -EACCES;
374 }
375
376 auto &op = command_table.start_command();
377 op.cmd = cmd;
378 op.inbl = inbl;
379 op.outbl = outbl;
380 op.outs = outs;
381 op.on_finish = onfinish;
382
383 if (session && session->con) {
384 // Leaving fsid argument null because it isn't used.
385 MCommand *m = op.get_message({});
386 session->con->send_message(m);
387 }
388 return 0;
389}
390
391bool MgrClient::handle_command_reply(MCommandReply *m)
392{
393 assert(lock.is_locked_by_me());
394
395 ldout(cct, 20) << *m << dendl;
396
397 const auto tid = m->get_tid();
398 if (!command_table.exists(tid)) {
399 ldout(cct, 4) << "handle_command_reply tid " << m->get_tid()
400 << " not found" << dendl;
401 m->put();
402 return true;
403 }
404
405 auto &op = command_table.get_command(tid);
406 if (op.outbl) {
407 op.outbl->claim(m->get_data());
408 }
409
410 if (op.outs) {
411 *(op.outs) = m->rs;
412 }
413
414 if (op.on_finish) {
415 op.on_finish->complete(m->r);
416 }
417
418 command_table.erase(tid);
419
420 m->put();
421 return true;
422}
423
224ce89b
WB
424int MgrClient::service_daemon_register(
425 const std::string& service,
426 const std::string& name,
427 const std::map<std::string,std::string>& metadata)
428{
429 Mutex::Locker l(lock);
430 if (name == "osd" ||
431 name == "mds" ||
432 name == "client" ||
433 name == "mon" ||
434 name == "mgr") {
435 // normal ceph entity types are not allowed!
436 return -EINVAL;
437 }
438 if (service_daemon) {
439 return -EEXIST;
440 }
441 ldout(cct,1) << service << "." << name << " metadata " << metadata << dendl;
442 service_daemon = true;
443 service_name = service;
444 daemon_name = name;
445 daemon_metadata = metadata;
446 daemon_dirty_status = true;
447
448 // late register?
c07f9fc5 449 if (cct->_conf->name.is_client() && session && session->con) {
224ce89b
WB
450 _send_open();
451 }
452
453 return 0;
454}
455
456int MgrClient::service_daemon_update_status(
457 const std::map<std::string,std::string>& status)
458{
459 Mutex::Locker l(lock);
460 ldout(cct,10) << status << dendl;
461 daemon_status = status;
462 daemon_dirty_status = true;
463 return 0;
464}
b32b8144
FG
465
466void MgrClient::update_osd_health(std::vector<OSDHealthMetric>&& metrics)
467{
468 osd_health_metrics = std::move(metrics);
469}