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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
#include "crimson/osd/object_context_loader.h"
#include "osd/osd_types_fmt.h"
#include "osd/object_state_fmt.h"
SET_SUBSYS(osd);
namespace crimson::osd {
using crimson::common::local_conf;
template<RWState::State State>
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_head_obc(const hobject_t& oid,
with_obc_func_t&& func)
{
return with_locked_obc<State, true /* track */>(
oid,
[func=std::move(func)](auto obc) {
// The template with_obc_func_t wrapper supports two obcs (head and clone).
// In the 'with_head_obc' case, however, only the head is in use.
// Pass the same head obc twice in order to
// to support the generic with_obc sturcture.
return std::invoke(std::move(func), obc, obc);
});
}
template<RWState::State State>
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_clone_obc(const hobject_t& oid,
with_obc_func_t&& func,
bool resolve_clone)
{
LOG_PREFIX(ObjectContextLoader::with_clone_obc);
assert(!oid.is_head());
return with_head_obc<RWState::RWREAD>(
oid.get_head(),
[FNAME, oid, func=std::move(func), resolve_clone, this]
(auto head, auto) mutable -> load_obc_iertr::future<> {
if (!head->obs.exists) {
ERRORDPP("head doesn't exist for object {}", dpp, head->obs.oi.soid);
return load_obc_iertr::future<>{
crimson::ct_error::enoent::make()
};
}
return this->with_clone_obc_only<State>(std::move(head),
oid,
std::move(func),
resolve_clone);
});
}
template<RWState::State State>
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_clone_obc_only(ObjectContextRef head,
hobject_t clone_oid,
with_obc_func_t&& func,
bool resolve_clone)
{
LOG_PREFIX(ObjectContextLoader::with_clone_obc_only);
DEBUGDPP("{}", dpp, clone_oid);
assert(!clone_oid.is_head());
if (resolve_clone) {
auto resolved_oid = resolve_oid(head->get_head_ss(), clone_oid);
if (!resolved_oid) {
ERRORDPP("clone {} not found", dpp, clone_oid);
return load_obc_iertr::future<>{
crimson::ct_error::enoent::make()
};
}
if (resolved_oid->is_head()) {
// See resolve_oid
return std::move(func)(head, head);
}
clone_oid = *resolved_oid;
}
return with_locked_obc<State, false /* don't track */>(
clone_oid,
[head=std::move(head), func=std::move(func)](auto clone) {
clone->set_clone_ssc(head->ssc);
return std::move(func)(std::move(head), std::move(clone));
});
}
template<RWState::State State>
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_obc(hobject_t oid,
with_obc_func_t&& func,
bool resolve_clone)
{
if (oid.is_head()) {
return with_head_obc<State>(oid, std::move(func));
} else {
return with_clone_obc<State>(oid, std::move(func), resolve_clone);
}
}
template<RWState::State State, bool track, typename Func>
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_locked_obc(const hobject_t& oid,
Func&& func)
{
LOG_PREFIX(ObjectContextLoader::with_locked_obc);
auto [obc, existed] = obc_registry.get_cached_obc(oid);
DEBUGDPP("object {} existed {}",
dpp, obc->get_oid(), existed);
if constexpr (track) {
obc->append_to(obc_set_accessing);
}
if (existed) {
return obc->with_lock<State, IOInterruptCondition>(
[func=std::move(func), obc=ObjectContextRef(obc)] {
return std::invoke(std::move(func), obc);
}
).finally([FNAME, this, obc=ObjectContextRef(obc)] {
DEBUGDPP("released object {}, {}", dpp, obc->get_oid(), obc->obs);
if constexpr (track) {
obc->remove_from(obc_set_accessing);
}
});
} else {
return obc->load_then_with_lock<State> (
[this, obc=ObjectContextRef(obc)] {
return load_obc(obc);
},
[func=std::move(func), obc=ObjectContextRef(obc)] {
return std::invoke(std::move(func), obc);
}
).finally([FNAME, this, obc=ObjectContextRef(obc)] {
DEBUGDPP("released object {}, {}", dpp, obc->get_oid(), obc->obs);
if constexpr (track) {
obc->remove_from(obc_set_accessing);
}
});
}
}
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::load_obc(ObjectContextRef obc)
{
LOG_PREFIX(ObjectContextLoader::load_obc);
return backend.load_metadata(obc->get_oid())
.safe_then_interruptible(
[FNAME, this, obc=std::move(obc)](auto md)
-> load_obc_ertr::future<> {
const hobject_t& oid = md->os.oi.soid;
DEBUGDPP("loaded obs {} for {}", dpp, md->os.oi, oid);
if (oid.is_head()) {
if (!md->ssc) {
ERRORDPP("oid {} missing snapsetcontext", dpp, oid);
return crimson::ct_error::object_corrupted::make();
}
obc->set_head_state(std::move(md->os),
std::move(md->ssc));
} else {
// we load and set the ssc only for head obc.
// For clones, the head's ssc will be referenced later.
// See set_clone_ssc
obc->set_clone_state(std::move(md->os));
}
DEBUGDPP("loaded obc {} for {}", dpp, obc->obs.oi, obc->obs.oi.soid);
return seastar::now();
});
}
ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::reload_obc(ObjectContext& obc) const
{
LOG_PREFIX(ObjectContextLoader::reload_obc);
assert(obc.is_head());
return backend.load_metadata(obc.get_oid())
.safe_then_interruptible<false>(
[FNAME, this, &obc](auto md)-> load_obc_ertr::future<> {
DEBUGDPP("reloaded obs {} for {}", dpp, md->os.oi, obc.get_oid());
if (!md->ssc) {
ERRORDPP("oid {} missing snapsetcontext", dpp, obc.get_oid());
return crimson::ct_error::object_corrupted::make();
}
obc.set_head_state(std::move(md->os), std::move(md->ssc));
return load_obc_ertr::now();
});
}
void ObjectContextLoader::notify_on_change(bool is_primary)
{
LOG_PREFIX(ObjectContextLoader::notify_on_change);
DEBUGDPP("is_primary: {}", dpp, is_primary);
for (auto& obc : obc_set_accessing) {
DEBUGDPP("interrupting obc: {}", dpp, obc.get_oid());
obc.interrupt(::crimson::common::actingset_changed(is_primary));
}
}
// explicitly instantiate the used instantiations
template ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_obc<RWState::RWNONE>(hobject_t,
with_obc_func_t&&,
bool resolve_clone);
template ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_obc<RWState::RWREAD>(hobject_t,
with_obc_func_t&&,
bool resolve_clone);
template ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_obc<RWState::RWWRITE>(hobject_t,
with_obc_func_t&&,
bool resolve_clone);
template ObjectContextLoader::load_obc_iertr::future<>
ObjectContextLoader::with_obc<RWState::RWEXCL>(hobject_t,
with_obc_func_t&&,
bool resolve_clone);
}
|