-
Notifications
You must be signed in to change notification settings - Fork 0
/
yfs_client.cc
416 lines (313 loc) · 10.2 KB
/
yfs_client.cc
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
// yfs client. implements FS operations using extent and lock server
#include "yfs_client.h"
#include "lock_client.h"
#include "extent_client.h"
#include <sstream>
#include <iostream>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
/* #define EXT_RPC(xx) do { \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
return RPCERR; \
} \
} while (0) */
/* #define LOCK_RPC(xx) do { \
if ((xx) != lock_protocol::OK) { \
printf("LOCK_RPC Error: %s:%d \n", __FILE__, __LINE__); \
return RPCERR; \
} \
} while (0) */
#define LOCK_DO(lid) lock_guard _LOCK##lid(lc, (lid))
#define EXT_RPC_READ(xx, lid) do { \
LOCK_DO(lid); \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
return RPCERR; \
} \
} while (0)
#define EXT_RPC_WRITE(xx) do { \
LOCK_DO(0); \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
return RPCERR; \
} \
} while (0)
#define EXT_RPC_RW_BEGIN(xx, lid) do { \
LOCK_DO(lid); \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
return RPCERR; \
}
#define EXT_RPC_RW_END(xx) \
LOCK_DO(0); \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
return RPCERR; \
} \
} while (0)
int strhash(std::string s) {
int v = 1234567890;
for (size_t i = 0; i < s.size(); ++i) {
v ^= ((v << 16) + (v << 3) + s[i] * 2333333333 + (v >> 3) + (v >> 16));
}
return v;
}
yfs_client::yfs_client(std::string extent_dst, std::string lock_dst) {
ec = new extent_client(extent_dst);
lc = new lock_client(lock_dst);
// LOCK_DO(0);
// LOCK_DO(1);
// if (ec->put(1, "") != extent_protocol::OK) {
// printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__);
// };
}
bool yfs_client::isfile(inum inum) {
extent_protocol::attr a;
EXT_RPC_READ(ec->getattr(inum, a), inum);
if (a.type == extent_protocol::T_FILE) {
printf("isfile: %lld is a file\n", inum);
return true;
}
printf("isfile: %lld is not a file\n", inum);
return false;
}
bool yfs_client::isdir(inum inum) {
extent_protocol::attr a;
EXT_RPC_READ(ec->getattr(inum, a), inum);
if (a.type == extent_protocol::T_DIR) {
printf("isdir: %lld is a dir\n", inum);
return true;
}
printf("isdir: %lld is not a dir\n", inum);
return false;
}
bool yfs_client::islink(inum inum) {
extent_protocol::attr a;
EXT_RPC_READ(ec->getattr(inum, a), inum);
if (a.type == extent_protocol::T_SYMLINK) {
printf("islink: %lld is a symlink\n", inum);
return true;
}
printf("islink: %lld is not a symlink\n", inum);
return false;
}
int yfs_client::getfile(inum inum, fileinfo &fin) {
printf("getfile %016llx\n", inum);
extent_protocol::attr a;
EXT_RPC_READ(ec->getattr(inum, a), inum);
fin.atime = a.atime;
fin.mtime = a.mtime;
fin.ctime = a.ctime;
fin.size = a.size;
printf("getfile %016llx -> sz %llu\n", inum, fin.size);
return OK;
}
int yfs_client::getdir(inum inum, dirinfo &din) {
printf("getdir %016llx\n", inum);
extent_protocol::attr a;
EXT_RPC_READ(ec->getattr(inum, a), inum);
din.atime = a.atime;
din.mtime = a.mtime;
din.ctime = a.mtime;
return OK;
}
int yfs_client::getlink(inum inum, linkinfo &lin) {
printf("getlink %016llx\n", inum);
extent_protocol::attr a;
EXT_RPC_READ(ec->getattr(inum, a), inum);
lin.atime = a.atime;
lin.mtime = a.mtime;
lin.ctime = a.mtime;
return OK;
}
int yfs_client::lookup(inum parent, const char *name, bool &found, inum &ino_out) {
std::string dir_info;
EXT_RPC_READ(ec->get(parent, dir_info), parent);
std::string file_name(name);
int name_length = file_name.size();
int name_hash = strhash(file_name);
size_t i = 0;
while (i < dir_info.size()) {
std::string ent = dir_info.substr(i, sizeof(struct direntraw));
struct direntraw dr = *((struct direntraw *) ent.data());
i += sizeof(struct direntraw);
if (name_length == dr.name_length && name_hash == dr.name_hash) {
std::string ent_name = dir_info.substr(i, dr.name_length);
if (ent_name == file_name) {
ino_out = dr.inum;
found = true;
return OK;
}
}
i += dr.name_length;
}
found = false;
return OK;
}
int yfs_client::create(inum parent, const char *name, mode_t mode, inum &ino_out) {
bool exist = false;
// lookup
int st = lookup(parent, name, exist, ino_out);
if (st != OK) {
return st;
}
if (exist) {
return EXIST;
}
std::string dir_info;
EXT_RPC_RW_BEGIN(ec->get(parent, dir_info), parent);
// create
EXT_RPC_WRITE(ec->create(extent_protocol::T_FILE, ino_out));
// modify parent
std::string file_name(name);
struct direntraw dr;
dr.inum = ino_out;
dr.name_length = file_name.size();
dr.name_hash = strhash(file_name);
dir_info.append((char *) &dr, sizeof(struct direntraw));
dir_info.append(file_name);
EXT_RPC_RW_END(ec->put(parent, dir_info));
return OK;
}
int yfs_client::mkdir(inum parent, const char *name, mode_t mode, inum &ino_out) {
bool exist = false;
// lookup
int st = lookup(parent, name, exist, ino_out);
if (st != OK) {
return st;
}
if (exist) {
return EXIST;
}
std::string dir_info;
EXT_RPC_RW_BEGIN(ec->get(parent, dir_info), parent);
// create
EXT_RPC_WRITE(ec->create(extent_protocol::T_DIR, ino_out));
// modify parent
std::string file_name(name);
struct direntraw dr;
dr.inum = ino_out;
dr.name_length = file_name.size();
dr.name_hash = strhash(file_name);
dir_info.append((char *) &dr, sizeof(struct direntraw));
dir_info.append(file_name);
EXT_RPC_RW_END(ec->put(parent, dir_info));
return OK;
}
int yfs_client::mklink(inum parent, const char *name, const char *link, inum &ino_out) {
bool exist = false;
// lookup
int st = lookup(parent, name, exist, ino_out);
if (st != OK) {
return st;
}
if (exist) {
return EXIST;
}
std::string dir_info;
EXT_RPC_RW_BEGIN(ec->get(parent, dir_info), parent);
// create
EXT_RPC_WRITE(ec->create(extent_protocol::T_SYMLINK, ino_out));
EXT_RPC_WRITE(ec->put(ino_out, link));
// modify parent
std::string file_name(name);
struct direntraw dr;
dr.inum = ino_out;
dr.name_length = file_name.size();
dr.name_hash = strhash(file_name);
dir_info.append((char *) &dr, sizeof(struct direntraw));
dir_info.append(file_name);
EXT_RPC_RW_END(ec->put(parent, dir_info));
return OK;
}
int yfs_client::read(inum ino, size_t size, off_t off, std::string &data) {
std::string file_data;
EXT_RPC_READ(ec->get(ino, file_data), ino);
data = file_data.substr(off, size);
return OK;
}
int yfs_client::readdir(inum dir, std::list<dirent> &list) {
std::string dir_info;
EXT_RPC_READ(ec->get(dir, dir_info), dir);
size_t i = 0;
while (i < dir_info.size()) {
std::string ent = dir_info.substr(i, sizeof(struct direntraw));
struct direntraw dr = *((struct direntraw *) ent.data());
i += sizeof(struct direntraw);
struct dirent de;
de.inum = dr.inum;
de.name = dir_info.substr(i, dr.name_length);
list.push_back(de);
i += dr.name_length;
}
return OK;
}
int yfs_client::readlink(inum ino, std::string &data) {
EXT_RPC_READ(ec->get(ino, data), ino);
return OK;
}
// Only support set size of attr
int yfs_client::setattr(inum ino, size_t size) {
std::string file_data;
EXT_RPC_RW_BEGIN(ec->get(ino, file_data), ino);
file_data.resize(size);
EXT_RPC_RW_END(ec->put(ino, file_data));
return OK;
}
int yfs_client::write(inum ino, size_t size, off_t off, const char *data,
size_t &bytes_written) {
std::string file_data;
std::string new_file_data;
EXT_RPC_RW_BEGIN(ec->get(ino, file_data), ino);
if (off + size > file_data.size()) {
file_data.resize(off + size, 0);
}
// notice: naive implementation
new_file_data = file_data.substr(0, off);
new_file_data.append(data, size);
new_file_data.append(file_data.substr(
off + size,
file_data.size() - off - size
));
EXT_RPC_RW_END(ec->put(ino, new_file_data));
return OK;
}
int yfs_client::unlink(inum parent, const char *name) {
std::string dir_info;
EXT_RPC_RW_BEGIN(ec->get(parent, dir_info), parent);
std::string file_name(name);
int name_length = file_name.size();
int name_hash = strhash(file_name);
size_t i = 0;
while (i < dir_info.size()) {
std::string ent = dir_info.substr(i, sizeof(struct direntraw));
struct direntraw dr = *((struct direntraw *) ent.data());
i += sizeof(struct direntraw);
if (name_length == dr.name_length && name_hash == dr.name_hash) {
std::string ent_name = dir_info.substr(i, dr.name_length);
if (ent_name == file_name) {
// notice: naive implementation
std::string new_dir_info;
new_dir_info = dir_info.substr(0, i - sizeof(struct direntraw));
new_dir_info.append(dir_info.substr(
i + dr.name_length,
dir_info.size() - i - dr.name_length
));
EXT_RPC_WRITE(ec->put(parent, new_dir_info));
EXT_RPC_WRITE(ec->remove(dr.inum));
return OK;
}
}
i += dr.name_length;
}
EXT_RPC_RW_END(ec->put(parent, dir_info));
return NOENT;
}
int yfs_client::vcaction(size_t action) {
EXT_RPC_WRITE(ec->vcaction(action));
return OK;
}