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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
#include "JournalingObjectStore.h"
#include "common/debug.h"
#define DOUT_SUBSYS journal
#undef dout_prefix
#define dout_prefix *_dout << "journal "
void JournalingObjectStore::journal_start()
{
dout(10) << "journal_start" << dendl;
finisher.start();
}
void JournalingObjectStore::journal_stop()
{
dout(10) << "journal_stop" << dendl;
finisher.stop();
if (journal) {
journal->close();
delete journal;
journal = 0;
}
}
int JournalingObjectStore::journal_replay(uint64_t fs_op_seq)
{
dout(10) << "journal_replay fs op_seq " << fs_op_seq << dendl;
if (g_conf->journal_replay_from) {
dout(0) << "journal_replay forcing replay from " << g_conf->journal_replay_from
<< " instead of " << fs_op_seq << dendl;
// the previous op is the last one committed
fs_op_seq = g_conf->journal_replay_from - 1;
}
op_seq = fs_op_seq;
committed_seq = fs_op_seq;
committing_seq = fs_op_seq;
applied_seq = fs_op_seq;
if (!journal)
return 0;
int err = journal->open(op_seq);
if (err < 0) {
char buf[80];
dout(3) << "journal_replay open failed with "
<< strerror_r(-err, buf, sizeof(buf)) << dendl;
delete journal;
journal = 0;
return err;
}
journal_lock.Lock();
replaying = true;
int count = 0;
while (1) {
bufferlist bl;
uint64_t seq = op_seq + 1;
if (!journal->read_entry(bl, seq)) {
dout(3) << "journal_replay: end of journal, done." << dendl;
break;
}
if (seq <= op_seq) {
dout(3) << "journal_replay: skipping old op seq " << seq << " <= " << op_seq << dendl;
continue;
}
assert(op_seq == seq-1);
dout(3) << "journal_replay: applying op seq " << seq << dendl;
bufferlist::iterator p = bl.begin();
list<Transaction*> tls;
while (!p.end()) {
Transaction *t = new Transaction(p);
tls.push_back(t);
}
open_ops++;
journal_lock.Unlock();
int r = do_transactions(tls, seq);
journal_lock.Lock();
open_ops--;
cond.Signal();
op_seq = applied_seq = seq;
while (!tls.empty()) {
delete tls.front();
tls.pop_front();
}
dout(3) << "journal_replay: r = " << r << ", op_seq now " << op_seq << dendl;
assert(op_seq == seq);
seq++; // we expect the next op
}
replaying = false;
journal_lock.Unlock();
// done reading, make writeable.
journal->make_writeable();
return count;
}
// ------------------------------------
uint64_t JournalingObjectStore::op_apply_start(uint64_t op)
{
Mutex::Locker l(journal_lock);
return _op_apply_start(op);
}
uint64_t JournalingObjectStore::_op_apply_start(uint64_t op)
{
assert(journal_lock.is_locked());
if (blocked) {
Cond cond;
ops_apply_blocked.push_back(&cond);
dout(10) << "op_apply_start " << op << " blocked (getting in back of line)" << dendl;
while (blocked && ops_apply_blocked.front() != &cond)
cond.Wait(journal_lock);
dout(10) << "op_apply_start " << op << " woke (at front of line)" << dendl;
ops_apply_blocked.pop_front();
if (!ops_apply_blocked.empty()) {
dout(10) << "op_apply_start " << op << " ...and kicking next in line" << dendl;
ops_apply_blocked.front()->Signal();
}
} else {
dout(10) << "op_apply_start " << op << dendl;
}
open_ops++;
return op;
}
void JournalingObjectStore::op_apply_finish(uint64_t op)
{
dout(10) << "op_apply_finish " << op << dendl;
journal_lock.Lock();
if (--open_ops == 0)
cond.Signal();
// there can be multiple applies in flight; track the max value we
// note. note that we can't _read_ this value and learn anything
// meaningful unless/until we've quiesced all in-flight applies.
if (op > applied_seq)
applied_seq = op;
journal_lock.Unlock();
}
uint64_t JournalingObjectStore::op_submit_start()
{
journal_lock.Lock();
uint64_t op = ++op_seq;
dout(10) << "op_submit_start " << op << dendl;
ops_submitting.push_back(op);
return op;
}
void JournalingObjectStore::op_submit_finish(uint64_t op)
{
dout(10) << "op_submit_finish " << op << dendl;
if (op != ops_submitting.front()) {
dout(0) << "op_submit_finish " << op << " expected " << ops_submitting.front()
<< ", OUT OF ORDER" << dendl;
assert(0 == "out of order op_submit_finish");
}
ops_submitting.pop_front();
journal_lock.Unlock();
}
// ------------------------------------------
/*
* this may (will generally) get called by an op_queue thread holding
* an open_ops reference. it should block only long enough for the
* commit to _start_ waiting for open_ops, but not longer or else we
* will deadlock.
*
* caller must hold journal_lock.
*/
void JournalingObjectStore::_trigger_commit(uint64_t seq)
{
assert(journal_lock.is_locked());
dout(10) << "trigger_commit " << seq << dendl;
force_commit = true;
while (!blocked && committing_seq < seq) {
dout(20) << "trigger_commit not blocked and seq " << seq << " > committing " << committing_seq << dendl;
cond.Wait(journal_lock);
}
dout(10) << "trigger_commit triggered, will commit something >= " << seq << dendl;
}
bool JournalingObjectStore::commit_start()
{
bool ret = false;
journal_lock.Lock();
dout(10) << "commit_start op_seq " << op_seq
<< ", applied_seq " << applied_seq
<< ", committed_seq " << committed_seq << dendl;
blocked = true;
cond.Signal(); // for trigger_commit() caller
while (open_ops > 0) {
dout(10) << "commit_start blocked, waiting for " << open_ops << " open ops" << dendl;
cond.Wait(journal_lock);
}
if (applied_seq == committed_seq && !force_commit) {
dout(10) << "commit_start nothing to do" << dendl;
blocked = false;
if (!ops_apply_blocked.empty())
ops_apply_blocked.front()->Signal();
assert(commit_waiters.empty());
goto out;
}
force_commit = false;
com_lock.Lock();
// we can _only_ read applied_seq here because open_ops == 0 (we've
// quiesced all in-flight applies).
committing_seq = applied_seq;
com_lock.Unlock();
dout(10) << "commit_start committing " << committing_seq << ", still blocked" << dendl;
ret = true;
out:
if (journal)
journal->commit_start(); // tell the journal too
journal_lock.Unlock();
return ret;
}
void JournalingObjectStore::commit_started()
{
Mutex::Locker l(journal_lock);
// allow new ops. (underlying fs should now be committing all prior ops)
dout(10) << "commit_started committing " << committing_seq << ", unblocking" << dendl;
blocked = false;
if (!ops_apply_blocked.empty())
ops_apply_blocked.front()->Signal();
}
void JournalingObjectStore::commit_finish()
{
Mutex::Locker l(journal_lock);
dout(10) << "commit_finish thru " << committing_seq << dendl;
if (journal)
journal->committed_thru(committing_seq);
com_lock.Lock();
committed_seq = committing_seq;
com_lock.Unlock();
map<version_t, vector<Context*> >::iterator p = commit_waiters.begin();
while (p != commit_waiters.end() &&
p->first <= committing_seq) {
finisher.queue(p->second);
commit_waiters.erase(p++);
}
}
void JournalingObjectStore::op_journal_transactions(list<ObjectStore::Transaction*>& tls, uint64_t op,
Context *onjournal)
{
Mutex::Locker l(journal_lock);
_op_journal_transactions(tls, op, onjournal);
}
void JournalingObjectStore::_op_journal_transactions(list<ObjectStore::Transaction*>& tls, uint64_t op,
Context *onjournal)
{
assert(journal_lock.is_locked());
dout(10) << "op_journal_transactions " << op << " " << tls << dendl;
if (journal && journal->is_writeable()) {
bufferlist tbl;
unsigned data_len = 0, data_align = 0;
for (list<ObjectStore::Transaction*>::iterator p = tls.begin(); p != tls.end(); p++) {
ObjectStore::Transaction *t = *p;
if (t->get_data_length() > data_len &&
(int)t->get_data_length() >= g_conf->journal_align_min_size) {
data_len = t->get_data_length();
data_align = (t->get_data_alignment() - tbl.length()) & ~CEPH_PAGE_MASK;
}
::encode(*t, tbl);
}
journal->submit_entry(op, tbl, data_align, onjournal);
} else if (onjournal)
commit_waiters[op].push_back(onjournal);
}
|