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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_MMDSCACHEREJOIN_H
#define CEPH_MMDSCACHEREJOIN_H
#include "msg/Message.h"
#include "include/types.h"
#include "mds/CInode.h"
// sent from replica to auth
class MMDSCacheRejoin : public Message {
public:
static const int OP_WEAK = 1; // replica -> auth, i exist, + maybe open files.
static const int OP_STRONG = 2; // replica -> auth, i exist, + open files and lock state.
static const int OP_ACK = 3; // auth -> replica, here is your lock state.
static const int OP_MISSING = 5; // auth -> replica, i am missing these items
static const int OP_FULL = 6; // replica -> auth, here is the full object.
static const char *get_opname(int op) {
switch (op) {
case OP_WEAK: return "weak";
case OP_STRONG: return "strong";
case OP_ACK: return "ack";
case OP_MISSING: return "missing";
case OP_FULL: return "full";
default: assert(0); return 0;
}
}
// -- types --
struct inode_strong {
int32_t caps_wanted;
int32_t filelock, nestlock, dftlock;
inode_strong() {}
inode_strong(int cw, int dl, int nl, int dftl) :
caps_wanted(cw),
filelock(dl), nestlock(nl), dftlock(dftl) { }
void encode(bufferlist &bl) const {
::encode(caps_wanted, bl);
::encode(filelock, bl);
::encode(nestlock, bl);
::encode(dftlock, bl);
}
void decode(bufferlist::iterator &bl) {
::decode(caps_wanted, bl);
::decode(filelock, bl);
::decode(nestlock, bl);
::decode(dftlock, bl);
}
};
WRITE_CLASS_ENCODER(inode_strong)
struct dirfrag_strong {
int32_t nonce;
int8_t dir_rep;
dirfrag_strong() {}
dirfrag_strong(int n, int dr) : nonce(n), dir_rep(dr) {}
void encode(bufferlist &bl) const {
::encode(nonce, bl);
::encode(dir_rep, bl);
}
void decode(bufferlist::iterator &bl) {
::decode(nonce, bl);
::decode(dir_rep, bl);
}
};
WRITE_CLASS_ENCODER(dirfrag_strong)
struct dn_strong {
snapid_t first;
inodeno_t ino;
inodeno_t remote_ino;
unsigned char remote_d_type;
int32_t nonce;
int32_t lock;
dn_strong() :
ino(0), remote_ino(0), remote_d_type(0), nonce(0), lock(0) {}
dn_strong(snapid_t f, inodeno_t pi, inodeno_t ri, unsigned char rdt, int n, int l) :
first(f), ino(pi), remote_ino(ri), remote_d_type(rdt), nonce(n), lock(l) {}
bool is_primary() { return ino > 0; }
bool is_remote() { return remote_ino > 0; }
bool is_null() { return ino == 0 && remote_ino == 0; }
void encode(bufferlist &bl) const {
::encode(first, bl);
::encode(ino, bl);
::encode(remote_ino, bl);
::encode(remote_d_type, bl);
::encode(nonce, bl);
::encode(lock, bl);
}
void decode(bufferlist::iterator &bl) {
::decode(first, bl);
::decode(ino, bl);
::decode(remote_ino, bl);
::decode(remote_d_type, bl);
::decode(nonce, bl);
::decode(lock, bl);
}
};
WRITE_CLASS_ENCODER(dn_strong)
struct dn_weak {
snapid_t first;
inodeno_t ino;
dn_weak() : ino(0) {}
dn_weak(snapid_t f, inodeno_t pi) : first(f), ino(pi) {}
void encode(bufferlist &bl) const {
::encode(first, bl);
::encode(ino, bl);
}
void decode(bufferlist::iterator &bl) {
::decode(first, bl);
::decode(ino, bl);
}
};
WRITE_CLASS_ENCODER(dn_weak)
// -- data --
int32_t op;
struct lock_bls {
bufferlist file, nest, dft;
void encode(bufferlist& bl) const {
::encode(file, bl);
::encode(nest, bl);
::encode(dft, bl);
}
void decode(bufferlist::iterator& bl) {
::decode(file, bl);
::decode(nest, bl);
::decode(dft, bl);
}
};
WRITE_CLASS_ENCODER(lock_bls)
// weak
map<dirfrag_t, map<string_snap_t, dn_weak> > weak;
set<vinodeno_t> weak_inodes;
map<inodeno_t, lock_bls> inode_scatterlocks;
// strong
map<dirfrag_t, dirfrag_strong> strong_dirfrags;
map<dirfrag_t, map<string_snap_t, dn_strong> > strong_dentries;
map<vinodeno_t, inode_strong> strong_inodes;
// open
bufferlist cap_export_bl;
map<inodeno_t,map<client_t, ceph_mds_cap_reconnect> > cap_exports;
map<inodeno_t,filepath> cap_export_paths;
// full
bufferlist inode_base;
bufferlist inode_locks;
// authpins, xlocks
map<vinodeno_t, metareqid_t> authpinned_inodes;
map<vinodeno_t, map<__s32, metareqid_t> > xlocked_inodes;
map<dirfrag_t, map<string_snap_t, metareqid_t> > authpinned_dentries;
map<dirfrag_t, map<string_snap_t, metareqid_t> > xlocked_dentries;
MMDSCacheRejoin() : Message(MSG_MDS_CACHEREJOIN) {}
MMDSCacheRejoin(int o) :
Message(MSG_MDS_CACHEREJOIN),
op(o) {}
private:
~MMDSCacheRejoin() {}
public:
const char *get_type_name() { return "cache_rejoin"; }
void print(ostream& out) {
out << "cache_rejoin " << get_opname(op);
}
// -- builders --
// inodes
void add_weak_inode(vinodeno_t i) {
weak_inodes.insert(i);
}
void add_strong_inode(vinodeno_t i, int cw, int dl, int nl, int dftl) {
strong_inodes[i] = inode_strong(cw, dl, nl, dftl);
}
void add_inode_locks(CInode *in, __u32 nonce) {
::encode(in->inode.ino, inode_locks);
::encode(in->last, inode_locks);
::encode(nonce, inode_locks);
bufferlist bl;
in->_encode_locks_state_for_replica(bl);
::encode(bl, inode_locks);
}
void add_inode_base(CInode *in) {
::encode(in->inode.ino, inode_base);
::encode(in->last, inode_base);
bufferlist bl;
in->_encode_base(bl);
::encode(bl, inode_base);
}
void add_inode_authpin(vinodeno_t ino, const metareqid_t& ri) {
authpinned_inodes[ino] = ri;
}
void add_inode_xlock(vinodeno_t ino, int lt, const metareqid_t& ri) {
xlocked_inodes[ino][lt] = ri;
}
void add_scatterlock_state(CInode *in) {
if (inode_scatterlocks.count(in->ino()))
return; // already added this one
in->encode_lock_state(CEPH_LOCK_IFILE, inode_scatterlocks[in->ino()].file);
in->encode_lock_state(CEPH_LOCK_INEST, inode_scatterlocks[in->ino()].nest);
in->encode_lock_state(CEPH_LOCK_IDFT, inode_scatterlocks[in->ino()].dft);
}
void copy_cap_exports(bufferlist &bl) {
cap_export_bl = bl;
}
// dirfrags
void add_weak_dirfrag(dirfrag_t df) {
weak[df];
}
void add_weak_dirfrag(dirfrag_t df, map<string_snap_t,dn_weak>& dnmap) {
weak[df] = dnmap;
}
void add_strong_dirfrag(dirfrag_t df, int n, int dr) {
strong_dirfrags[df] = dirfrag_strong(n, dr);
}
// dentries
void add_weak_dentry(dirfrag_t df, const string& dname, snapid_t last, dn_weak& dnw) {
weak[df][string_snap_t(dname, last)] = dnw;
}
void add_weak_primary_dentry(dirfrag_t df, const string& dname, snapid_t first, snapid_t last, inodeno_t ino) {
weak[df][string_snap_t(dname, last)] = dn_weak(first, ino);
}
void add_strong_dentry(dirfrag_t df, const string& dname, snapid_t first, snapid_t last, inodeno_t pi, inodeno_t ri, unsigned char rdt, int n, int ls) {
strong_dentries[df][string_snap_t(dname, last)] = dn_strong(first, pi, ri, rdt, n, ls);
}
void add_dentry_authpin(dirfrag_t df, const string& dname, snapid_t last, const metareqid_t& ri) {
authpinned_dentries[df][string_snap_t(dname, last)] = ri;
}
void add_dentry_xlock(dirfrag_t df, const string& dname, snapid_t last, const metareqid_t& ri) {
xlocked_dentries[df][string_snap_t(dname, last)] = ri;
}
// -- encoding --
void encode_payload() {
::encode(op, payload);
::encode(strong_inodes, payload);
::encode(inode_base, payload);
::encode(inode_locks, payload);
::encode(inode_scatterlocks, payload);
::encode(authpinned_inodes, payload);
::encode(xlocked_inodes, payload);
::encode(cap_export_bl, payload);
::encode(strong_dirfrags, payload);
::encode(weak, payload);
::encode(weak_inodes, payload);
::encode(strong_dentries, payload);
::encode(authpinned_dentries, payload);
::encode(xlocked_dentries, payload);
}
void decode_payload() {
bufferlist::iterator p = payload.begin();
::decode(op, p);
::decode(strong_inodes, p);
::decode(inode_base, p);
::decode(inode_locks, p);
::decode(inode_scatterlocks, p);
::decode(authpinned_inodes, p);
::decode(xlocked_inodes, p);
::decode(cap_export_bl, p);
if (cap_export_bl.length()) {
bufferlist::iterator q = cap_export_bl.begin();
::decode(cap_exports, q);
::decode(cap_export_paths, q);
}
::decode(strong_dirfrags, p);
::decode(weak, p);
::decode(weak_inodes, p);
::decode(strong_dentries, p);
::decode(authpinned_dentries, p);
::decode(xlocked_dentries, p);
}
};
WRITE_CLASS_ENCODER(MMDSCacheRejoin::inode_strong)
WRITE_CLASS_ENCODER(MMDSCacheRejoin::dirfrag_strong)
WRITE_CLASS_ENCODER(MMDSCacheRejoin::dn_strong)
WRITE_CLASS_ENCODER(MMDSCacheRejoin::dn_weak)
WRITE_CLASS_ENCODER(MMDSCacheRejoin::lock_bls)
#endif
|