summaryrefslogtreecommitdiffstats
path: root/src/librbd/mirror/GetUuidRequest.cc
blob: f8209f90512c0234b040cdf51a7635f309ae5ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#include "librbd/mirror/GetUuidRequest.h"
#include "common/dout.h"
#include "common/errno.h"
#include "cls/rbd/cls_rbd_client.h"
#include "librbd/ImageCtx.h"
#include "librbd/Utils.h"

#define dout_subsys ceph_subsys_rbd

#undef dout_prefix
#define dout_prefix *_dout << "librbd::mirror::GetUuidRequest: " \
                           << this << " " << __func__ << ": "

namespace librbd {
namespace mirror {

using librbd::util::create_rados_callback;

template <typename I>
GetUuidRequest<I>::GetUuidRequest(
    librados::IoCtx& io_ctx, std::string* mirror_uuid, Context* on_finish)
  : m_mirror_uuid(mirror_uuid), m_on_finish(on_finish),
    m_cct(reinterpret_cast<CephContext*>(io_ctx.cct())) {
  m_io_ctx.dup(io_ctx);
  m_io_ctx.set_namespace("");
}

template <typename I>
void GetUuidRequest<I>::send() {
  get_mirror_uuid();
}

template <typename I>
void GetUuidRequest<I>::get_mirror_uuid() {
  ldout(m_cct, 20) << dendl;

  librados::ObjectReadOperation op;
  librbd::cls_client::mirror_uuid_get_start(&op);

  auto aio_comp = create_rados_callback<
    GetUuidRequest<I>, &GetUuidRequest<I>::handle_get_mirror_uuid>(this);
  int r = m_io_ctx.aio_operate(RBD_MIRRORING, aio_comp, &op, &m_out_bl);
  ceph_assert(r == 0);
  aio_comp->release();
}

template <typename I>
void GetUuidRequest<I>::handle_get_mirror_uuid(int r) {
  ldout(m_cct, 20) << "r=" << r << dendl;

  if (r >= 0) {
    auto it = m_out_bl.cbegin();
    r = librbd::cls_client::mirror_uuid_get_finish(&it, m_mirror_uuid);
    if (r >= 0 && m_mirror_uuid->empty()) {
      r = -ENOENT;
    }
  }

  if (r < 0) {
    if (r == -ENOENT) {
      ldout(m_cct, 5) << "mirror uuid missing" << dendl;
    } else {
      lderr(m_cct) << "failed to retrieve mirror uuid: " << cpp_strerror(r)
                   << dendl;
    }
    *m_mirror_uuid = "";
  }

  finish(r);
}

template <typename I>
void GetUuidRequest<I>::finish(int r) {
  ldout(m_cct, 20) << "r=" << r << dendl;

  m_on_finish->complete(r);
  delete this;
}

} // namespace mirror
} // namespace librbd

template class librbd::mirror::GetUuidRequest<librbd::ImageCtx>;