]> git.proxmox.com Git - ceph.git/blame - ceph/src/tools/rbd_mirror/image_sync/SyncPointPruneRequest.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / tools / rbd_mirror / image_sync / SyncPointPruneRequest.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 "SyncPointPruneRequest.h"
11fdf7f2 5#include "common/debug.h"
7c673cae
FG
6#include "common/errno.h"
7#include "journal/Journaler.h"
8#include "librbd/ImageCtx.h"
9#include "librbd/ImageState.h"
10#include "librbd/Operations.h"
11#include "librbd/Utils.h"
12#include <set>
13
14#define dout_context g_ceph_context
15#define dout_subsys ceph_subsys_rbd_mirror
16#undef dout_prefix
17#define dout_prefix *_dout << "rbd::mirror::image_sync::SyncPointPruneRequest: " \
18 << this << " " << __func__
19namespace rbd {
20namespace mirror {
21namespace image_sync {
22
23using librbd::util::create_context_callback;
24
25template <typename I>
26SyncPointPruneRequest<I>::SyncPointPruneRequest(I *remote_image_ctx,
27 bool sync_complete,
28 Journaler *journaler,
29 MirrorPeerClientMeta *client_meta,
30 Context *on_finish)
31 : m_remote_image_ctx(remote_image_ctx), m_sync_complete(sync_complete),
32 m_journaler(journaler), m_client_meta(client_meta), m_on_finish(on_finish),
33 m_client_meta_copy(*client_meta) {
34}
35
36template <typename I>
37void SyncPointPruneRequest<I>::send() {
38 if (m_client_meta->sync_points.empty()) {
39 send_remove_snap();
40 return;
41 }
42
43 if (m_sync_complete) {
44 // if sync is complete, we can remove the master sync point
45 auto it = m_client_meta_copy.sync_points.begin();
46 MirrorPeerSyncPoint &sync_point = *it;
47
48 ++it;
49 if (it == m_client_meta_copy.sync_points.end() ||
50 it->from_snap_name != sync_point.snap_name) {
51 m_snap_names.push_back(sync_point.snap_name);
52 }
53
54 if (!sync_point.from_snap_name.empty()) {
55 m_snap_names.push_back(sync_point.from_snap_name);
56 }
57 } else {
58 // if we have more than one sync point or invalid sync points,
59 // trim them off
60 RWLock::RLocker snap_locker(m_remote_image_ctx->snap_lock);
61 std::set<std::string> snap_names;
62 for (auto it = m_client_meta_copy.sync_points.rbegin();
63 it != m_client_meta_copy.sync_points.rend(); ++it) {
64 MirrorPeerSyncPoint &sync_point = *it;
65 if (&sync_point == &m_client_meta_copy.sync_points.front()) {
66 if (m_remote_image_ctx->get_snap_id(
67 cls::rbd::UserSnapshotNamespace(), sync_point.snap_name) ==
68 CEPH_NOSNAP) {
69 derr << ": failed to locate sync point snapshot: "
70 << sync_point.snap_name << dendl;
71 } else if (!sync_point.from_snap_name.empty()) {
72 derr << ": unexpected from_snap_name in primary sync point: "
73 << sync_point.from_snap_name << dendl;
74 } else {
75 // first sync point is OK -- keep it
76 break;
77 }
78 m_invalid_master_sync_point = true;
79 }
80
81 if (snap_names.count(sync_point.snap_name) == 0) {
82 snap_names.insert(sync_point.snap_name);
83 m_snap_names.push_back(sync_point.snap_name);
84 }
85
86 MirrorPeerSyncPoint &front_sync_point =
87 m_client_meta_copy.sync_points.front();
88 if (!sync_point.from_snap_name.empty() &&
89 snap_names.count(sync_point.from_snap_name) == 0 &&
90 sync_point.from_snap_name != front_sync_point.snap_name) {
91 snap_names.insert(sync_point.from_snap_name);
92 m_snap_names.push_back(sync_point.from_snap_name);
93 }
94 }
95 }
96
97 send_remove_snap();
98}
99
100template <typename I>
101void SyncPointPruneRequest<I>::send_remove_snap() {
102 if (m_snap_names.empty()) {
103 send_refresh_image();
104 return;
105 }
106
107 const std::string &snap_name = m_snap_names.front();
108
109 dout(20) << ": snap_name=" << snap_name << dendl;
110
111 Context *ctx = create_context_callback<
112 SyncPointPruneRequest<I>, &SyncPointPruneRequest<I>::handle_remove_snap>(
113 this);
114 m_remote_image_ctx->operations->snap_remove(cls::rbd::UserSnapshotNamespace(),
115 snap_name.c_str(),
116 ctx);
117}
118
119template <typename I>
120void SyncPointPruneRequest<I>::handle_remove_snap(int r) {
121 dout(20) << ": r=" << r << dendl;
122
11fdf7f2 123 ceph_assert(!m_snap_names.empty());
7c673cae
FG
124 std::string snap_name = m_snap_names.front();
125 m_snap_names.pop_front();
126
127 if (r == -ENOENT) {
128 r = 0;
129 }
130 if (r < 0) {
131 derr << ": failed to remove snapshot '" << snap_name << "': "
132 << cpp_strerror(r) << dendl;
133 finish(r);
134 return;
135 }
136
137 send_remove_snap();
138}
139
140template <typename I>
141void SyncPointPruneRequest<I>::send_refresh_image() {
142 dout(20) << dendl;
143
144 Context *ctx = create_context_callback<
145 SyncPointPruneRequest<I>, &SyncPointPruneRequest<I>::handle_refresh_image>(
146 this);
147 m_remote_image_ctx->state->refresh(ctx);
148}
149
150template <typename I>
151void SyncPointPruneRequest<I>::handle_refresh_image(int r) {
152 dout(20) << ": r=" << r << dendl;
153
154 if (r < 0) {
155 derr << ": remote image refresh failed: " << cpp_strerror(r) << dendl;
156 finish(r);
157 return;
158 }
159
160 send_update_client();
161}
162
163template <typename I>
164void SyncPointPruneRequest<I>::send_update_client() {
165 dout(20) << dendl;
166
167 if (m_sync_complete) {
168 m_client_meta_copy.sync_points.pop_front();
169 if (m_client_meta_copy.sync_points.empty()) {
170 m_client_meta_copy.state = librbd::journal::MIRROR_PEER_STATE_REPLAYING;
171 }
172 } else {
173 while (m_client_meta_copy.sync_points.size() > 1) {
174 m_client_meta_copy.sync_points.pop_back();
175 }
176 if (m_invalid_master_sync_point) {
177 // all subsequent sync points would have been pruned
178 m_client_meta_copy.sync_points.clear();
179 }
180 }
181
182 bufferlist client_data_bl;
183 librbd::journal::ClientData client_data(m_client_meta_copy);
11fdf7f2 184 encode(client_data, client_data_bl);
7c673cae
FG
185
186 Context *ctx = create_context_callback<
187 SyncPointPruneRequest<I>, &SyncPointPruneRequest<I>::handle_update_client>(
188 this);
189 m_journaler->update_client(client_data_bl, ctx);
190}
191
192template <typename I>
193void SyncPointPruneRequest<I>::handle_update_client(int r) {
194 dout(20) << ": r=" << r << dendl;
195
196 if (r < 0) {
197 derr << ": failed to update client data: " << cpp_strerror(r)
198 << dendl;
199 finish(r);
200 return;
201 }
202
203 // update provided meta structure to reflect reality
204 *m_client_meta = m_client_meta_copy;
205 finish(0);
206}
207
208template <typename I>
209void SyncPointPruneRequest<I>::finish(int r) {
210 dout(20) << ": r=" << r << dendl;
211
212 m_on_finish->complete(r);
213 delete this;
214}
215
216} // namespace image_sync
217} // namespace mirror
218} // namespace rbd
219
220template class rbd::mirror::image_sync::SyncPointPruneRequest<librbd::ImageCtx>;