]> git.proxmox.com Git - ceph.git/blame - ceph/src/tools/rbd_mirror/ImageReplayer.cc
import quincy beta 17.1.0
[ceph.git] / ceph / src / tools / rbd_mirror / ImageReplayer.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#include "include/compat.h"
5#include "common/Formatter.h"
11fdf7f2 6#include "common/admin_socket.h"
7c673cae
FG
7#include "common/debug.h"
8#include "common/errno.h"
9#include "include/stringify.h"
10#include "cls/rbd/cls_rbd_client.h"
11#include "common/Timer.h"
7c673cae
FG
12#include "global/global_context.h"
13#include "journal/Journaler.h"
7c673cae
FG
14#include "librbd/ExclusiveLock.h"
15#include "librbd/ImageCtx.h"
16#include "librbd/ImageState.h"
17#include "librbd/Journal.h"
18#include "librbd/Operations.h"
19#include "librbd/Utils.h"
f67539c2 20#include "librbd/asio/ContextWQ.h"
d2e6a577 21#include "ImageDeleter.h"
7c673cae 22#include "ImageReplayer.h"
9f95a23c 23#include "MirrorStatusUpdater.h"
7c673cae
FG
24#include "Threads.h"
25#include "tools/rbd_mirror/image_replayer/BootstrapRequest.h"
9f95a23c
TL
26#include "tools/rbd_mirror/image_replayer/ReplayerListener.h"
27#include "tools/rbd_mirror/image_replayer/StateBuilder.h"
28#include "tools/rbd_mirror/image_replayer/Utils.h"
29#include "tools/rbd_mirror/image_replayer/journal/Replayer.h"
30#include "tools/rbd_mirror/image_replayer/journal/StateBuilder.h"
31#include <map>
7c673cae
FG
32
33#define dout_context g_ceph_context
34#define dout_subsys ceph_subsys_rbd_mirror
35#undef dout_prefix
36#define dout_prefix *_dout << "rbd::mirror::" << *this << " " \
37 << __func__ << ": "
38
7c673cae
FG
39namespace rbd {
40namespace mirror {
41
42using librbd::util::create_context_callback;
7c673cae
FG
43
44template <typename I>
45std::ostream &operator<<(std::ostream &os,
46 const typename ImageReplayer<I>::State &state);
47
48namespace {
49
3efd9988 50template <typename I>
7c673cae
FG
51class ImageReplayerAdminSocketCommand {
52public:
3efd9988
FG
53 ImageReplayerAdminSocketCommand(const std::string &desc,
54 ImageReplayer<I> *replayer)
55 : desc(desc), replayer(replayer) {
56 }
7c673cae 57 virtual ~ImageReplayerAdminSocketCommand() {}
9f95a23c 58 virtual int call(Formatter *f) = 0;
3efd9988
FG
59
60 std::string desc;
61 ImageReplayer<I> *replayer;
62 bool registered = false;
7c673cae
FG
63};
64
65template <typename I>
3efd9988 66class StatusCommand : public ImageReplayerAdminSocketCommand<I> {
7c673cae 67public:
3efd9988
FG
68 explicit StatusCommand(const std::string &desc, ImageReplayer<I> *replayer)
69 : ImageReplayerAdminSocketCommand<I>(desc, replayer) {
70 }
7c673cae 71
9f95a23c
TL
72 int call(Formatter *f) override {
73 this->replayer->print_status(f);
74 return 0;
7c673cae 75 }
7c673cae
FG
76};
77
78template <typename I>
3efd9988 79class StartCommand : public ImageReplayerAdminSocketCommand<I> {
7c673cae 80public:
3efd9988
FG
81 explicit StartCommand(const std::string &desc, ImageReplayer<I> *replayer)
82 : ImageReplayerAdminSocketCommand<I>(desc, replayer) {
83 }
7c673cae 84
9f95a23c 85 int call(Formatter *f) override {
3efd9988 86 this->replayer->start(nullptr, true);
9f95a23c 87 return 0;
7c673cae 88 }
7c673cae
FG
89};
90
91template <typename I>
3efd9988 92class StopCommand : public ImageReplayerAdminSocketCommand<I> {
7c673cae 93public:
3efd9988
FG
94 explicit StopCommand(const std::string &desc, ImageReplayer<I> *replayer)
95 : ImageReplayerAdminSocketCommand<I>(desc, replayer) {
96 }
7c673cae 97
9f95a23c 98 int call(Formatter *f) override {
3efd9988 99 this->replayer->stop(nullptr, true);
9f95a23c 100 return 0;
7c673cae 101 }
7c673cae
FG
102};
103
104template <typename I>
3efd9988 105class RestartCommand : public ImageReplayerAdminSocketCommand<I> {
7c673cae 106public:
3efd9988
FG
107 explicit RestartCommand(const std::string &desc, ImageReplayer<I> *replayer)
108 : ImageReplayerAdminSocketCommand<I>(desc, replayer) {
109 }
7c673cae 110
9f95a23c 111 int call(Formatter *f) override {
3efd9988 112 this->replayer->restart();
9f95a23c 113 return 0;
7c673cae 114 }
7c673cae
FG
115};
116
117template <typename I>
3efd9988 118class FlushCommand : public ImageReplayerAdminSocketCommand<I> {
7c673cae 119public:
3efd9988
FG
120 explicit FlushCommand(const std::string &desc, ImageReplayer<I> *replayer)
121 : ImageReplayerAdminSocketCommand<I>(desc, replayer) {
122 }
7c673cae 123
9f95a23c 124 int call(Formatter *f) override {
28e407b8 125 this->replayer->flush();
9f95a23c 126 return 0;
7c673cae 127 }
7c673cae
FG
128};
129
130template <typename I>
131class ImageReplayerAdminSocketHook : public AdminSocketHook {
132public:
133 ImageReplayerAdminSocketHook(CephContext *cct, const std::string &name,
31f18b77 134 ImageReplayer<I> *replayer)
3efd9988
FG
135 : admin_socket(cct->get_admin_socket()),
136 commands{{"rbd mirror flush " + name,
137 new FlushCommand<I>("flush rbd mirror " + name, replayer)},
138 {"rbd mirror restart " + name,
139 new RestartCommand<I>("restart rbd mirror " + name, replayer)},
140 {"rbd mirror start " + name,
141 new StartCommand<I>("start rbd mirror " + name, replayer)},
142 {"rbd mirror status " + name,
143 new StatusCommand<I>("get status for rbd mirror " + name, replayer)},
144 {"rbd mirror stop " + name,
145 new StopCommand<I>("stop rbd mirror " + name, replayer)}} {
d2e6a577
FG
146 }
147
148 int register_commands() {
3efd9988 149 for (auto &it : commands) {
9f95a23c 150 int r = admin_socket->register_command(it.first, this,
3efd9988
FG
151 it.second->desc);
152 if (r < 0) {
153 return r;
154 }
155 it.second->registered = true;
7c673cae 156 }
d2e6a577 157 return 0;
7c673cae
FG
158 }
159
160 ~ImageReplayerAdminSocketHook() override {
9f95a23c 161 admin_socket->unregister_commands(this);
3efd9988 162 for (auto &it : commands) {
3efd9988 163 delete it.second;
7c673cae 164 }
31f18b77 165 commands.clear();
7c673cae
FG
166 }
167
9f95a23c
TL
168 int call(std::string_view command, const cmdmap_t& cmdmap,
169 Formatter *f,
170 std::ostream& errss,
171 bufferlist& out) override {
3efd9988 172 auto i = commands.find(command);
11fdf7f2 173 ceph_assert(i != commands.end());
9f95a23c 174 return i->second->call(f);
7c673cae
FG
175 }
176
177private:
11fdf7f2
TL
178 typedef std::map<std::string, ImageReplayerAdminSocketCommand<I>*,
179 std::less<>> Commands;
7c673cae
FG
180
181 AdminSocket *admin_socket;
182 Commands commands;
183};
184
7c673cae
FG
185} // anonymous namespace
186
187template <typename I>
188void ImageReplayer<I>::BootstrapProgressContext::update_progress(
189 const std::string &description, bool flush)
190{
191 const std::string desc = "bootstrapping, " + description;
192 replayer->set_state_description(0, desc);
193 if (flush) {
194 replayer->update_mirror_image_status(false, boost::none);
195 }
196}
197
198template <typename I>
9f95a23c
TL
199struct ImageReplayer<I>::ReplayerListener
200 : public image_replayer::ReplayerListener {
201 ImageReplayer<I>* image_replayer;
202
203 ReplayerListener(ImageReplayer<I>* image_replayer)
204 : image_replayer(image_replayer) {
205 }
206
207 void handle_notification() override {
208 image_replayer->handle_replayer_notification();
209 }
210};
7c673cae
FG
211
212template <typename I>
9f95a23c
TL
213ImageReplayer<I>::ImageReplayer(
214 librados::IoCtx &local_io_ctx, const std::string &local_mirror_uuid,
215 const std::string &global_image_id, Threads<I> *threads,
216 InstanceWatcher<I> *instance_watcher,
217 MirrorStatusUpdater<I>* local_status_updater,
218 journal::CacheManagerHandler *cache_manager_handler,
219 PoolMetaCache* pool_meta_cache) :
220 m_local_io_ctx(local_io_ctx), m_local_mirror_uuid(local_mirror_uuid),
221 m_global_image_id(global_image_id), m_threads(threads),
31f18b77 222 m_instance_watcher(instance_watcher),
9f95a23c
TL
223 m_local_status_updater(local_status_updater),
224 m_cache_manager_handler(cache_manager_handler),
225 m_pool_meta_cache(pool_meta_cache),
226 m_local_image_name(global_image_id),
227 m_lock(ceph::make_mutex("rbd::mirror::ImageReplayer " +
228 stringify(local_io_ctx.get_id()) + " " + global_image_id)),
7c673cae 229 m_progress_cxt(this),
9f95a23c 230 m_replayer_listener(new ReplayerListener(this))
7c673cae
FG
231{
232 // Register asok commands using a temporary "remote_pool_name/global_image_id"
233 // name. When the image name becomes known on start the asok commands will be
234 // re-registered using "remote_pool_name/remote_image_name" name.
235
9f95a23c
TL
236 m_image_spec = image_replayer::util::compute_image_spec(
237 local_io_ctx, global_image_id);
d2e6a577 238 register_admin_socket_hook();
7c673cae
FG
239}
240
241template <typename I>
242ImageReplayer<I>::~ImageReplayer()
243{
d2e6a577 244 unregister_admin_socket_hook();
9f95a23c 245 ceph_assert(m_state_builder == nullptr);
11fdf7f2 246 ceph_assert(m_on_start_finish == nullptr);
20effc67 247 ceph_assert(m_on_stop_contexts.empty());
11fdf7f2 248 ceph_assert(m_bootstrap_request == nullptr);
1911f103 249 ceph_assert(m_update_status_task == nullptr);
9f95a23c 250 delete m_replayer_listener;
7c673cae
FG
251}
252
c07f9fc5
FG
253template <typename I>
254image_replayer::HealthState ImageReplayer<I>::get_health_state() const {
9f95a23c 255 std::lock_guard locker{m_lock};
c07f9fc5
FG
256
257 if (!m_mirror_image_status_state) {
258 return image_replayer::HEALTH_STATE_OK;
259 } else if (*m_mirror_image_status_state ==
260 cls::rbd::MIRROR_IMAGE_STATUS_STATE_SYNCING ||
261 *m_mirror_image_status_state ==
262 cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN) {
263 return image_replayer::HEALTH_STATE_WARNING;
264 }
265 return image_replayer::HEALTH_STATE_ERROR;
266}
267
7c673cae 268template <typename I>
9f95a23c
TL
269void ImageReplayer<I>::add_peer(const Peer<I>& peer) {
270 dout(10) << "peer=" << peer << dendl;
271
272 std::lock_guard locker{m_lock};
273 auto it = m_peers.find(peer);
d2e6a577 274 if (it == m_peers.end()) {
9f95a23c 275 m_peers.insert(peer);
7c673cae
FG
276 }
277}
278
7c673cae
FG
279template <typename I>
280void ImageReplayer<I>::set_state_description(int r, const std::string &desc) {
9f95a23c 281 dout(10) << "r=" << r << ", desc=" << desc << dendl;
7c673cae 282
9f95a23c 283 std::lock_guard l{m_lock};
7c673cae
FG
284 m_last_r = r;
285 m_state_desc = desc;
286}
287
288template <typename I>
e306af50 289void ImageReplayer<I>::start(Context *on_finish, bool manual, bool restart)
7c673cae 290{
11fdf7f2 291 dout(10) << "on_finish=" << on_finish << dendl;
7c673cae
FG
292
293 int r = 0;
294 {
9f95a23c 295 std::lock_guard locker{m_lock};
7c673cae
FG
296 if (!is_stopped_()) {
297 derr << "already running" << dendl;
298 r = -EINVAL;
299 } else if (m_manual_stop && !manual) {
300 dout(5) << "stopped manually, ignoring start without manual flag"
301 << dendl;
302 r = -EPERM;
e306af50
TL
303 } else if (restart && !m_restart_requested) {
304 dout(10) << "canceled restart" << dendl;
305 r = -ECANCELED;
7c673cae
FG
306 } else {
307 m_state = STATE_STARTING;
308 m_last_r = 0;
309 m_state_desc.clear();
310 m_manual_stop = false;
d2e6a577 311 m_delete_requested = false;
e306af50 312 m_restart_requested = false;
a4b75251 313 m_status_removed = false;
7c673cae
FG
314
315 if (on_finish != nullptr) {
11fdf7f2 316 ceph_assert(m_on_start_finish == nullptr);
7c673cae
FG
317 m_on_start_finish = on_finish;
318 }
20effc67 319 ceph_assert(m_on_stop_contexts.empty());
7c673cae
FG
320 }
321 }
322
323 if (r < 0) {
324 if (on_finish) {
325 on_finish->complete(r);
326 }
327 return;
328 }
329
9f95a23c 330 bootstrap();
7c673cae
FG
331}
332
333template <typename I>
9f95a23c 334void ImageReplayer<I>::bootstrap() {
11fdf7f2 335 dout(10) << dendl;
7c673cae 336
9f95a23c 337 std::unique_lock locker{m_lock};
b32b8144 338 if (m_peers.empty()) {
9f95a23c
TL
339 locker.unlock();
340
341 dout(5) << "no peer clusters" << dendl;
342 on_start_fail(-ENOENT, "no peer clusters");
b32b8144
FG
343 return;
344 }
7c673cae 345
d2e6a577 346 // TODO need to support multiple remote images
11fdf7f2 347 ceph_assert(!m_peers.empty());
9f95a23c 348 m_remote_image_peer = *m_peers.begin();
7c673cae 349
9f95a23c 350 if (on_start_interrupted(m_lock)) {
b32b8144
FG
351 return;
352 }
7c673cae 353
9f95a23c
TL
354 ceph_assert(m_state_builder == nullptr);
355 auto ctx = create_context_callback<
11fdf7f2 356 ImageReplayer, &ImageReplayer<I>::handle_bootstrap>(this);
9f95a23c
TL
357 auto request = image_replayer::BootstrapRequest<I>::create(
358 m_threads, m_local_io_ctx, m_remote_image_peer.io_ctx, m_instance_watcher,
359 m_global_image_id, m_local_mirror_uuid,
360 m_remote_image_peer.remote_pool_meta, m_cache_manager_handler,
361 m_pool_meta_cache, &m_progress_cxt, &m_state_builder, &m_resync_requested,
362 ctx);
7c673cae 363
9f95a23c
TL
364 request->get();
365 m_bootstrap_request = request;
366 locker.unlock();
7c673cae 367
9f95a23c 368 update_mirror_image_status(false, boost::none);
7c673cae
FG
369 request->send();
370}
371
372template <typename I>
373void ImageReplayer<I>::handle_bootstrap(int r) {
11fdf7f2 374 dout(10) << "r=" << r << dendl;
7c673cae 375 {
9f95a23c 376 std::lock_guard locker{m_lock};
7c673cae
FG
377 m_bootstrap_request->put();
378 m_bootstrap_request = nullptr;
7c673cae
FG
379 }
380
11fdf7f2
TL
381 if (on_start_interrupted()) {
382 return;
9f95a23c
TL
383 } else if (r == -ENOMSG) {
384 dout(5) << "local image is primary" << dendl;
385 on_start_fail(0, "local image is primary");
386 return;
11fdf7f2 387 } else if (r == -EREMOTEIO) {
c07f9fc5
FG
388 dout(5) << "remote image is non-primary" << dendl;
389 on_start_fail(-EREMOTEIO, "remote image is non-primary");
7c673cae
FG
390 return;
391 } else if (r == -EEXIST) {
7c673cae
FG
392 on_start_fail(r, "split-brain detected");
393 return;
9f95a23c
TL
394 } else if (r == -ENOLINK) {
395 m_delete_requested = true;
396 on_start_fail(0, "remote image no longer exists");
397 return;
a4b75251
TL
398 } else if (r == -ERESTART) {
399 on_start_fail(r, "image in transient state, try again");
400 return;
7c673cae
FG
401 } else if (r < 0) {
402 on_start_fail(r, "error bootstrapping replay");
403 return;
d2e6a577
FG
404 } else if (m_resync_requested) {
405 on_start_fail(0, "resync requested");
406 return;
7c673cae
FG
407 }
408
9f95a23c 409 start_replay();
7c673cae
FG
410}
411
412template <typename I>
9f95a23c 413void ImageReplayer<I>::start_replay() {
11fdf7f2 414 dout(10) << dendl;
7c673cae 415
9f95a23c
TL
416 std::unique_lock locker{m_lock};
417 ceph_assert(m_replayer == nullptr);
418 m_replayer = m_state_builder->create_replayer(m_threads, m_instance_watcher,
419 m_local_mirror_uuid,
420 m_pool_meta_cache,
421 m_replayer_listener);
422
423 auto ctx = create_context_callback<
424 ImageReplayer<I>, &ImageReplayer<I>::handle_start_replay>(this);
425 m_replayer->init(ctx);
7c673cae
FG
426}
427
428template <typename I>
9f95a23c 429void ImageReplayer<I>::handle_start_replay(int r) {
11fdf7f2 430 dout(10) << "r=" << r << dendl;
7c673cae 431
11fdf7f2
TL
432 if (on_start_interrupted()) {
433 return;
434 } else if (r < 0) {
9f95a23c
TL
435 std::string error_description = m_replayer->get_error_description();
436 if (r == -ENOTCONN && m_replayer->is_resync_requested()) {
437 std::unique_lock locker{m_lock};
d2e6a577 438 m_resync_requested = true;
7c673cae 439 }
7c673cae 440
9f95a23c
TL
441 // shut down not required if init failed
442 m_replayer->destroy();
443 m_replayer = nullptr;
7c673cae 444
9f95a23c
TL
445 derr << "error starting replay: " << cpp_strerror(r) << dendl;
446 on_start_fail(r, error_description);
7c673cae
FG
447 return;
448 }
449
9f95a23c 450 Context *on_finish = nullptr;
7c673cae 451 {
9f95a23c 452 std::unique_lock locker{m_lock};
11fdf7f2 453 ceph_assert(m_state == STATE_STARTING);
7c673cae
FG
454 m_state = STATE_REPLAYING;
455 std::swap(m_on_start_finish, on_finish);
1911f103
TL
456
457 std::unique_lock timer_locker{m_threads->timer_lock};
458 schedule_update_mirror_image_replay_status();
7c673cae
FG
459 }
460
7c673cae 461 update_mirror_image_status(true, boost::none);
7c673cae 462 if (on_replay_interrupted()) {
9f95a23c
TL
463 if (on_finish != nullptr) {
464 on_finish->complete(r);
465 }
7c673cae
FG
466 return;
467 }
468
11fdf7f2 469 dout(10) << "start succeeded" << dendl;
d2e6a577 470 if (on_finish != nullptr) {
11fdf7f2 471 dout(10) << "on finish complete, r=" << r << dendl;
d2e6a577
FG
472 on_finish->complete(r);
473 }
7c673cae
FG
474}
475
476template <typename I>
477void ImageReplayer<I>::on_start_fail(int r, const std::string &desc)
478{
9f95a23c
TL
479 dout(10) << "r=" << r << ", desc=" << desc << dendl;
480 Context *ctx = new LambdaContext([this, r, desc](int _r) {
7c673cae 481 {
9f95a23c 482 std::lock_guard locker{m_lock};
11fdf7f2 483 ceph_assert(m_state == STATE_STARTING);
7c673cae 484 m_state = STATE_STOPPING;
d2e6a577 485 if (r < 0 && r != -ECANCELED && r != -EREMOTEIO && r != -ENOENT) {
7c673cae
FG
486 derr << "start failed: " << cpp_strerror(r) << dendl;
487 } else {
11fdf7f2 488 dout(10) << "start canceled" << dendl;
7c673cae
FG
489 }
490 }
491
492 set_state_description(r, desc);
9f95a23c 493 update_mirror_image_status(false, boost::none);
7c673cae
FG
494 shut_down(r);
495 });
496 m_threads->work_queue->queue(ctx, 0);
497}
498
499template <typename I>
11fdf7f2 500bool ImageReplayer<I>::on_start_interrupted() {
9f95a23c 501 std::lock_guard locker{m_lock};
11fdf7f2
TL
502 return on_start_interrupted(m_lock);
503}
504
505template <typename I>
9f95a23c
TL
506bool ImageReplayer<I>::on_start_interrupted(ceph::mutex& lock) {
507 ceph_assert(ceph_mutex_is_locked(m_lock));
11fdf7f2
TL
508 ceph_assert(m_state == STATE_STARTING);
509 if (!m_stop_requested) {
7c673cae
FG
510 return false;
511 }
512
11fdf7f2 513 on_start_fail(-ECANCELED, "");
7c673cae
FG
514 return true;
515}
516
517template <typename I>
e306af50 518void ImageReplayer<I>::stop(Context *on_finish, bool manual, bool restart)
7c673cae 519{
11fdf7f2 520 dout(10) << "on_finish=" << on_finish << ", manual=" << manual
e306af50 521 << ", restart=" << restart << dendl;
7c673cae
FG
522
523 image_replayer::BootstrapRequest<I> *bootstrap_request = nullptr;
524 bool shut_down_replay = false;
20effc67 525 bool is_stopped = false;
7c673cae 526 {
9f95a23c 527 std::lock_guard locker{m_lock};
7c673cae
FG
528
529 if (!is_running_()) {
20effc67
TL
530 if (manual && !m_manual_stop) {
531 dout(10) << "marking manual" << dendl;
532 m_manual_stop = true;
533 }
e306af50
TL
534 if (!restart && m_restart_requested) {
535 dout(10) << "canceling restart" << dendl;
536 m_restart_requested = false;
537 }
20effc67
TL
538 if (is_stopped_()) {
539 dout(10) << "already stopped" << dendl;
540 is_stopped = true;
541 } else {
542 dout(10) << "joining in-flight stop" << dendl;
543 if (on_finish != nullptr) {
544 m_on_stop_contexts.push_back(on_finish);
545 }
546 }
7c673cae 547 } else {
20effc67
TL
548 if (m_state == STATE_STARTING) {
549 dout(10) << "canceling start" << dendl;
550 if (m_bootstrap_request != nullptr) {
551 bootstrap_request = m_bootstrap_request;
552 bootstrap_request->get();
553 }
554 } else {
555 dout(10) << "interrupting replay" << dendl;
556 shut_down_replay = true;
7c673cae 557 }
20effc67
TL
558
559 ceph_assert(m_on_stop_contexts.empty());
560 if (on_finish != nullptr) {
561 m_on_stop_contexts.push_back(on_finish);
562 }
563 m_stop_requested = true;
564 m_manual_stop = manual;
7c673cae
FG
565 }
566 }
567
20effc67
TL
568 if (is_stopped) {
569 if (on_finish) {
570 on_finish->complete(-EINVAL);
571 }
572 return;
573 }
574
7c673cae
FG
575 // avoid holding lock since bootstrap request will update status
576 if (bootstrap_request != nullptr) {
11fdf7f2 577 dout(10) << "canceling bootstrap" << dendl;
7c673cae
FG
578 bootstrap_request->cancel();
579 bootstrap_request->put();
580 }
581
7c673cae 582 if (shut_down_replay) {
e306af50 583 on_stop_journal_replay();
7c673cae
FG
584 }
585}
586
587template <typename I>
588void ImageReplayer<I>::on_stop_journal_replay(int r, const std::string &desc)
589{
11fdf7f2 590 dout(10) << dendl;
7c673cae
FG
591
592 {
9f95a23c 593 std::lock_guard locker{m_lock};
7c673cae
FG
594 if (m_state != STATE_REPLAYING) {
595 // might be invoked multiple times while stopping
596 return;
597 }
9f95a23c 598
7c673cae
FG
599 m_stop_requested = true;
600 m_state = STATE_STOPPING;
601 }
602
1911f103 603 cancel_update_mirror_image_replay_status();
7c673cae 604 set_state_description(r, desc);
a8e16298 605 update_mirror_image_status(true, boost::none);
7c673cae
FG
606 shut_down(0);
607}
608
7c673cae
FG
609template <typename I>
610void ImageReplayer<I>::restart(Context *on_finish)
611{
e306af50
TL
612 {
613 std::lock_guard locker{m_lock};
614 m_restart_requested = true;
615 }
616
9f95a23c 617 auto ctx = new LambdaContext(
7c673cae
FG
618 [this, on_finish](int r) {
619 if (r < 0) {
620 // Try start anyway.
621 }
e306af50 622 start(on_finish, true, true);
7c673cae 623 });
e306af50 624 stop(ctx, false, true);
7c673cae
FG
625}
626
627template <typename I>
81eedcae 628void ImageReplayer<I>::flush()
7c673cae 629{
81eedcae 630 C_SaferCond ctx;
7c673cae 631
9f95a23c
TL
632 {
633 std::unique_lock locker{m_lock};
634 if (m_state != STATE_REPLAYING) {
635 return;
636 }
7c673cae 637
9f95a23c
TL
638 dout(10) << dendl;
639 ceph_assert(m_replayer != nullptr);
640 m_replayer->flush(&ctx);
81eedcae
TL
641 }
642
9f95a23c
TL
643 int r = ctx.wait();
644 if (r >= 0) {
645 update_mirror_image_status(false, boost::none);
7c673cae 646 }
7c673cae
FG
647}
648
649template <typename I>
650bool ImageReplayer<I>::on_replay_interrupted()
651{
652 bool shut_down;
653 {
9f95a23c 654 std::lock_guard locker{m_lock};
7c673cae
FG
655 shut_down = m_stop_requested;
656 }
657
658 if (shut_down) {
659 on_stop_journal_replay();
660 }
661 return shut_down;
662}
663
664template <typename I>
9f95a23c 665void ImageReplayer<I>::print_status(Formatter *f)
7c673cae 666{
11fdf7f2 667 dout(10) << dendl;
7c673cae 668
9f95a23c 669 std::lock_guard l{m_lock};
7c673cae 670
9f95a23c
TL
671 f->open_object_section("image_replayer");
672 f->dump_string("name", m_image_spec);
673 f->dump_string("state", to_string(m_state));
674 f->close_section();
7c673cae
FG
675}
676
1911f103
TL
677template <typename I>
678void ImageReplayer<I>::schedule_update_mirror_image_replay_status() {
679 ceph_assert(ceph_mutex_is_locked_by_me(m_lock));
680 ceph_assert(ceph_mutex_is_locked_by_me(m_threads->timer_lock));
681 if (m_state != STATE_REPLAYING) {
682 return;
683 }
684
685 dout(10) << dendl;
686
687 // periodically update the replaying status even if nothing changes
688 // so that we can adjust our performance stats
689 ceph_assert(m_update_status_task == nullptr);
690 m_update_status_task = create_context_callback<
691 ImageReplayer<I>,
692 &ImageReplayer<I>::handle_update_mirror_image_replay_status>(this);
693 m_threads->timer->add_event_after(10, m_update_status_task);
694}
695
696template <typename I>
697void ImageReplayer<I>::handle_update_mirror_image_replay_status(int r) {
698 dout(10) << dendl;
699
cd265ab1
TL
700 ceph_assert(ceph_mutex_is_locked_by_me(m_threads->timer_lock));
701
702 ceph_assert(m_update_status_task != nullptr);
703 m_update_status_task = nullptr;
704
1911f103
TL
705 auto ctx = new LambdaContext([this](int) {
706 update_mirror_image_status(false, boost::none);
707
cd265ab1
TL
708 std::unique_lock locker{m_lock};
709 std::unique_lock timer_locker{m_threads->timer_lock};
1911f103 710
cd265ab1 711 schedule_update_mirror_image_replay_status();
1911f103
TL
712 m_in_flight_op_tracker.finish_op();
713 });
714
715 m_in_flight_op_tracker.start_op();
716 m_threads->work_queue->queue(ctx, 0);
717}
718
719template <typename I>
720void ImageReplayer<I>::cancel_update_mirror_image_replay_status() {
721 std::unique_lock timer_locker{m_threads->timer_lock};
722 if (m_update_status_task != nullptr) {
723 dout(10) << dendl;
724
725 if (m_threads->timer->cancel_event(m_update_status_task)) {
726 m_update_status_task = nullptr;
727 }
728 }
729}
730
7c673cae 731template <typename I>
9f95a23c
TL
732void ImageReplayer<I>::update_mirror_image_status(
733 bool force, const OptionalState &opt_state) {
734 dout(15) << "force=" << force << ", "
735 << "state=" << opt_state << dendl;
7c673cae
FG
736
737 {
9f95a23c
TL
738 std::lock_guard locker{m_lock};
739 if (!force && !is_stopped_() && !is_running_()) {
740 dout(15) << "shut down in-progress: ignoring update" << dendl;
28e407b8 741 return;
28e407b8
AA
742 }
743 }
744
9f95a23c
TL
745 m_in_flight_op_tracker.start_op();
746 auto ctx = new LambdaContext(
747 [this, force, opt_state](int r) {
748 set_mirror_image_status_update(force, opt_state);
11fdf7f2
TL
749 });
750 m_threads->work_queue->queue(ctx, 0);
7c673cae
FG
751}
752
753template <typename I>
9f95a23c
TL
754void ImageReplayer<I>::set_mirror_image_status_update(
755 bool force, const OptionalState &opt_state) {
756 dout(15) << "force=" << force << ", "
757 << "state=" << opt_state << dendl;
7c673cae 758
28e407b8
AA
759 reregister_admin_socket_hook();
760
7c673cae
FG
761 State state;
762 std::string state_desc;
763 int last_r;
7c673cae 764 bool stopping_replay;
c07f9fc5 765
9f95a23c
TL
766 auto mirror_image_status_state = boost::make_optional(
767 false, cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN);
c07f9fc5 768 image_replayer::BootstrapRequest<I>* bootstrap_request = nullptr;
7c673cae 769 {
9f95a23c 770 std::lock_guard locker{m_lock};
7c673cae
FG
771 state = m_state;
772 state_desc = m_state_desc;
c07f9fc5 773 mirror_image_status_state = m_mirror_image_status_state;
7c673cae 774 last_r = m_last_r;
9f95a23c 775 stopping_replay = (m_replayer != nullptr);
c07f9fc5
FG
776
777 if (m_bootstrap_request != nullptr) {
778 bootstrap_request = m_bootstrap_request;
779 bootstrap_request->get();
780 }
781 }
782
783 bool syncing = false;
784 if (bootstrap_request != nullptr) {
785 syncing = bootstrap_request->is_syncing();
786 bootstrap_request->put();
787 bootstrap_request = nullptr;
7c673cae
FG
788 }
789
790 if (opt_state) {
791 state = *opt_state;
792 }
793
9f95a23c 794 cls::rbd::MirrorImageSiteStatus status;
7c673cae
FG
795 status.up = true;
796 switch (state) {
797 case STATE_STARTING:
c07f9fc5 798 if (syncing) {
7c673cae
FG
799 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_SYNCING;
800 status.description = state_desc.empty() ? "syncing" : state_desc;
c07f9fc5 801 mirror_image_status_state = status.state;
7c673cae
FG
802 } else {
803 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_STARTING_REPLAY;
804 status.description = "starting replay";
805 }
806 break;
807 case STATE_REPLAYING:
7c673cae
FG
808 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING;
809 {
9f95a23c
TL
810 std::string desc;
811 auto on_req_finish = new LambdaContext(
812 [this, force](int r) {
11fdf7f2 813 dout(15) << "replay status ready: r=" << r << dendl;
7c673cae 814 if (r >= 0) {
9f95a23c 815 set_mirror_image_status_update(force, boost::none);
7c673cae 816 } else if (r == -EAGAIN) {
9f95a23c 817 m_in_flight_op_tracker.finish_op();
7c673cae
FG
818 }
819 });
820
9f95a23c
TL
821 ceph_assert(m_replayer != nullptr);
822 if (!m_replayer->get_replay_status(&desc, on_req_finish)) {
11fdf7f2 823 dout(15) << "waiting for replay status" << dendl;
7c673cae
FG
824 return;
825 }
9f95a23c 826
7c673cae 827 status.description = "replaying, " + desc;
11fdf7f2
TL
828 mirror_image_status_state = boost::make_optional(
829 false, cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN);
7c673cae
FG
830 }
831 break;
832 case STATE_STOPPING:
833 if (stopping_replay) {
834 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_STOPPING_REPLAY;
a8e16298 835 status.description = state_desc.empty() ? "stopping replay" : state_desc;
7c673cae
FG
836 break;
837 }
838 // FALLTHROUGH
839 case STATE_STOPPED:
c07f9fc5
FG
840 if (last_r == -EREMOTEIO) {
841 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN;
842 status.description = state_desc;
843 mirror_image_status_state = status.state;
9f95a23c 844 } else if (last_r < 0 && last_r != -ECANCELED) {
7c673cae
FG
845 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR;
846 status.description = state_desc;
c07f9fc5 847 mirror_image_status_state = status.state;
7c673cae
FG
848 } else {
849 status.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_STOPPED;
850 status.description = state_desc.empty() ? "stopped" : state_desc;
c07f9fc5 851 mirror_image_status_state = boost::none;
7c673cae
FG
852 }
853 break;
854 default:
11fdf7f2 855 ceph_assert(!"invalid state");
7c673cae
FG
856 }
857
c07f9fc5 858 {
9f95a23c 859 std::lock_guard locker{m_lock};
c07f9fc5
FG
860 m_mirror_image_status_state = mirror_image_status_state;
861 }
862
863 // prevent the status from ping-ponging when failed replays are restarted
864 if (mirror_image_status_state &&
865 *mirror_image_status_state == cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR) {
866 status.state = *mirror_image_status_state;
867 }
868
11fdf7f2 869 dout(15) << "status=" << status << dendl;
9f95a23c
TL
870 m_local_status_updater->set_mirror_image_status(m_global_image_id, status,
871 force);
872 if (m_remote_image_peer.mirror_status_updater != nullptr) {
873 m_remote_image_peer.mirror_status_updater->set_mirror_image_status(
874 m_global_image_id, status, force);
7c673cae
FG
875 }
876
9f95a23c 877 m_in_flight_op_tracker.finish_op();
7c673cae
FG
878}
879
880template <typename I>
881void ImageReplayer<I>::shut_down(int r) {
11fdf7f2 882 dout(10) << "r=" << r << dendl;
3efd9988 883
3efd9988 884 {
9f95a23c 885 std::lock_guard locker{m_lock};
11fdf7f2 886 ceph_assert(m_state == STATE_STOPPING);
7c673cae
FG
887 }
888
9f95a23c
TL
889 if (!m_in_flight_op_tracker.empty()) {
890 dout(15) << "waiting for in-flight operations to complete" << dendl;
891 m_in_flight_op_tracker.wait_for_ops(new LambdaContext([this, r](int) {
892 shut_down(r);
893 }));
894 return;
895 }
31f18b77 896
7c673cae 897 // chain the shut down sequence (reverse order)
9f95a23c 898 Context *ctx = new LambdaContext(
7c673cae 899 [this, r](int _r) {
9f95a23c 900 update_mirror_image_status(true, STATE_STOPPED);
7c673cae
FG
901 handle_shut_down(r);
902 });
31f18b77 903
9f95a23c
TL
904 // destruct the state builder
905 if (m_state_builder != nullptr) {
906 ctx = new LambdaContext([this, ctx](int r) {
907 m_state_builder->close(ctx);
31f18b77
FG
908 });
909 }
910
9f95a23c
TL
911 // close the replayer
912 if (m_replayer != nullptr) {
913 ctx = new LambdaContext([this, ctx](int r) {
914 m_replayer->destroy();
915 m_replayer = nullptr;
916 ctx->complete(0);
917 });
918 ctx = new LambdaContext([this, ctx](int r) {
919 m_replayer->shut_down(ctx);
31f18b77 920 });
7c673cae 921 }
31f18b77 922
7c673cae
FG
923 m_threads->work_queue->queue(ctx, 0);
924}
925
926template <typename I>
927void ImageReplayer<I>::handle_shut_down(int r) {
11fdf7f2
TL
928 bool resync_requested = false;
929 bool delete_requested = false;
3efd9988 930 bool unregister_asok_hook = false;
7c673cae 931 {
9f95a23c 932 std::lock_guard locker{m_lock};
7c673cae 933
9f95a23c
TL
934 if (m_delete_requested && m_state_builder != nullptr &&
935 !m_state_builder->local_image_id.empty()) {
936 ceph_assert(m_state_builder->remote_image_id.empty());
d2e6a577 937 dout(0) << "remote image no longer exists: scheduling deletion" << dendl;
11fdf7f2
TL
938 unregister_asok_hook = true;
939 std::swap(delete_requested, m_delete_requested);
a4b75251 940 m_delete_in_progress = true;
d2e6a577 941 }
d2e6a577 942
11fdf7f2 943 std::swap(resync_requested, m_resync_requested);
9f95a23c
TL
944 if (!delete_requested && !resync_requested && m_last_r == -ENOENT &&
945 ((m_state_builder == nullptr) ||
946 (m_state_builder->local_image_id.empty() &&
947 m_state_builder->remote_image_id.empty()))) {
d2e6a577 948 dout(0) << "mirror image no longer exists" << dendl;
3efd9988 949 unregister_asok_hook = true;
d2e6a577 950 m_finished = true;
7c673cae
FG
951 }
952 }
953
3efd9988
FG
954 if (unregister_asok_hook) {
955 unregister_admin_socket_hook();
956 }
957
11fdf7f2
TL
958 if (delete_requested || resync_requested) {
959 dout(5) << "moving image to trash" << dendl;
9f95a23c 960 auto ctx = new LambdaContext([this, r](int) {
11fdf7f2
TL
961 handle_shut_down(r);
962 });
9f95a23c 963 ImageDeleter<I>::trash_move(m_local_io_ctx, m_global_image_id,
11fdf7f2
TL
964 resync_requested, m_threads->work_queue, ctx);
965 return;
966 }
7c673cae 967
9f95a23c
TL
968 if (!m_in_flight_op_tracker.empty()) {
969 dout(15) << "waiting for in-flight operations to complete" << dendl;
970 m_in_flight_op_tracker.wait_for_ops(new LambdaContext([this, r](int) {
971 handle_shut_down(r);
972 }));
973 return;
974 }
7c673cae 975
a4b75251 976 if (!m_status_removed) {
9f95a23c 977 auto ctx = new LambdaContext([this, r](int) {
a4b75251
TL
978 m_status_removed = true;
979 handle_shut_down(r);
980 });
981 remove_image_status(m_delete_in_progress, ctx);
9f95a23c
TL
982 return;
983 }
984
985 if (m_state_builder != nullptr) {
986 m_state_builder->destroy();
987 m_state_builder = nullptr;
988 }
989
990 dout(10) << "stop complete" << dendl;
7c673cae 991 Context *on_start = nullptr;
20effc67 992 Contexts on_stop_contexts;
7c673cae 993 {
9f95a23c 994 std::lock_guard locker{m_lock};
7c673cae 995 std::swap(on_start, m_on_start_finish);
20effc67 996 on_stop_contexts = std::move(m_on_stop_contexts);
7c673cae 997 m_stop_requested = false;
11fdf7f2 998 ceph_assert(m_state == STATE_STOPPING);
7c673cae
FG
999 m_state = STATE_STOPPED;
1000 }
1001
1002 if (on_start != nullptr) {
11fdf7f2 1003 dout(10) << "on start finish complete, r=" << r << dendl;
7c673cae
FG
1004 on_start->complete(r);
1005 r = 0;
1006 }
20effc67
TL
1007 for (auto ctx : on_stop_contexts) {
1008 dout(10) << "on stop finish " << ctx << " complete, r=" << r << dendl;
1009 ctx->complete(r);
7c673cae
FG
1010 }
1011}
1012
1013template <typename I>
9f95a23c
TL
1014void ImageReplayer<I>::handle_replayer_notification() {
1015 dout(10) << dendl;
1016
1017 std::unique_lock locker{m_lock};
1018 if (m_state != STATE_REPLAYING) {
1019 // might be attempting to shut down
1020 return;
1021 }
7c673cae 1022
7c673cae 1023 {
9f95a23c
TL
1024 // detect a rename of the local image
1025 ceph_assert(m_state_builder != nullptr &&
1026 m_state_builder->local_image_ctx != nullptr);
1027 std::shared_lock image_locker{m_state_builder->local_image_ctx->image_lock};
1028 if (m_local_image_name != m_state_builder->local_image_ctx->name) {
1029 // will re-register with new name after next status update
1030 dout(10) << "image renamed" << dendl;
1031 m_local_image_name = m_state_builder->local_image_ctx->name;
7c673cae 1032 }
9f95a23c 1033 }
7c673cae 1034
9f95a23c
TL
1035 // replayer cannot be shut down while notification is in-flight
1036 ceph_assert(m_replayer != nullptr);
1037 locker.unlock();
1038
1039 if (m_replayer->is_resync_requested()) {
1040 dout(10) << "resync requested" << dendl;
1041 m_resync_requested = true;
1042 on_stop_journal_replay(0, "resync requested");
1043 return;
7c673cae
FG
1044 }
1045
9f95a23c
TL
1046 if (!m_replayer->is_replaying()) {
1047 auto error_code = m_replayer->get_error_code();
1048 auto error_description = m_replayer->get_error_description();
1049 dout(10) << "replay interrupted: "
1050 << "r=" << error_code << ", "
1051 << "error=" << error_description << dendl;
1052 on_stop_journal_replay(error_code, error_description);
1053 return;
7c673cae 1054 }
9f95a23c
TL
1055
1056 update_mirror_image_status(false, {});
7c673cae
FG
1057}
1058
1059template <typename I>
1060std::string ImageReplayer<I>::to_string(const State state) {
1061 switch (state) {
1062 case ImageReplayer<I>::STATE_STARTING:
1063 return "Starting";
1064 case ImageReplayer<I>::STATE_REPLAYING:
1065 return "Replaying";
7c673cae
FG
1066 case ImageReplayer<I>::STATE_STOPPING:
1067 return "Stopping";
1068 case ImageReplayer<I>::STATE_STOPPED:
1069 return "Stopped";
1070 default:
1071 break;
1072 }
1073 return "Unknown(" + stringify(state) + ")";
1074}
1075
d2e6a577
FG
1076template <typename I>
1077void ImageReplayer<I>::register_admin_socket_hook() {
3efd9988
FG
1078 ImageReplayerAdminSocketHook<I> *asok_hook;
1079 {
9f95a23c 1080 std::lock_guard locker{m_lock};
3efd9988
FG
1081 if (m_asok_hook != nullptr) {
1082 return;
1083 }
7c673cae 1084
9f95a23c
TL
1085 dout(15) << "registered asok hook: " << m_image_spec << dendl;
1086 asok_hook = new ImageReplayerAdminSocketHook<I>(
1087 g_ceph_context, m_image_spec, this);
3efd9988
FG
1088 int r = asok_hook->register_commands();
1089 if (r == 0) {
1090 m_asok_hook = asok_hook;
1091 return;
1092 }
d2e6a577 1093 derr << "error registering admin socket commands" << dendl;
d2e6a577 1094 }
3efd9988 1095 delete asok_hook;
d2e6a577
FG
1096}
1097
1098template <typename I>
1099void ImageReplayer<I>::unregister_admin_socket_hook() {
28e407b8 1100 dout(15) << dendl;
d2e6a577 1101
3efd9988
FG
1102 AdminSocketHook *asok_hook = nullptr;
1103 {
9f95a23c 1104 std::lock_guard locker{m_lock};
3efd9988
FG
1105 std::swap(asok_hook, m_asok_hook);
1106 }
1107 delete asok_hook;
1108}
1109
1110template <typename I>
28e407b8 1111void ImageReplayer<I>::reregister_admin_socket_hook() {
9f95a23c
TL
1112 std::unique_lock locker{m_lock};
1113 if (m_state == STATE_STARTING && m_bootstrap_request != nullptr) {
1114 m_local_image_name = m_bootstrap_request->get_local_image_name();
3efd9988 1115 }
9f95a23c
TL
1116
1117 auto image_spec = image_replayer::util::compute_image_spec(
1118 m_local_io_ctx, m_local_image_name);
1119 if (m_asok_hook != nullptr && m_image_spec == image_spec) {
1120 return;
1121 }
1122
1123 dout(15) << "old_image_spec=" << m_image_spec << ", "
1124 << "new_image_spec=" << image_spec << dendl;
1125 m_image_spec = image_spec;
1126
1127 if (m_state == STATE_STOPPING || m_state == STATE_STOPPED) {
1128 // no need to re-register if stopping
1129 return;
1130 }
1131 locker.unlock();
1132
3efd9988
FG
1133 unregister_admin_socket_hook();
1134 register_admin_socket_hook();
7c673cae
FG
1135}
1136
a4b75251
TL
1137template <typename I>
1138void ImageReplayer<I>::remove_image_status(bool force, Context *on_finish)
1139{
1140 auto ctx = new LambdaContext([this, force, on_finish](int) {
1141 remove_image_status_remote(force, on_finish);
1142 });
1143
1144 if (m_local_status_updater->exists(m_global_image_id)) {
1145 dout(15) << "removing local mirror image status" << dendl;
1146 if (force) {
1147 m_local_status_updater->remove_mirror_image_status(
1148 m_global_image_id, true, ctx);
1149 } else {
1150 m_local_status_updater->remove_refresh_mirror_image_status(
1151 m_global_image_id, ctx);
1152 }
1153 return;
1154 }
1155
1156 ctx->complete(0);
1157}
1158
1159template <typename I>
1160void ImageReplayer<I>::remove_image_status_remote(bool force, Context *on_finish)
1161{
1162 if (m_remote_image_peer.mirror_status_updater != nullptr &&
1163 m_remote_image_peer.mirror_status_updater->exists(m_global_image_id)) {
1164 dout(15) << "removing remote mirror image status" << dendl;
1165 if (force) {
1166 m_remote_image_peer.mirror_status_updater->remove_mirror_image_status(
1167 m_global_image_id, true, on_finish);
1168 } else {
1169 m_remote_image_peer.mirror_status_updater->remove_refresh_mirror_image_status(
1170 m_global_image_id, on_finish);
1171 }
1172 return;
1173 }
1174 if (on_finish) {
1175 on_finish->complete(0);
1176 }
1177}
1178
7c673cae
FG
1179template <typename I>
1180std::ostream &operator<<(std::ostream &os, const ImageReplayer<I> &replayer)
1181{
1182 os << "ImageReplayer: " << &replayer << " [" << replayer.get_local_pool_id()
1183 << "/" << replayer.get_global_image_id() << "]";
1184 return os;
1185}
1186
1187} // namespace mirror
1188} // namespace rbd
1189
1190template class rbd::mirror::ImageReplayer<librbd::ImageCtx>;