This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyfs_client.cc
509 lines (393 loc) · 10.8 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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
// yfs client. implements FS operations using extent and lock server
#include "yfs_client.h"
#include "extent_client.h"
#include "lock_client.h"
#include <sstream>
#include <iostream>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <atomic>
#define YFS_LOCK(ID) \
volatile yfs_lock _lock(lc, ID); \
std::atomic_thread_fence (std::memory_order_seq_cst);
yfs_client::yfs_client()
{
ec = NULL;
lc = NULL;
}
yfs_client::yfs_client(std::string extent_dst, std::string lock_dst, const char* cert_file)
{
lc = new lock_client(lock_dst);
YFS_LOCK(1)
ec = new extent_client(extent_dst);
if (ec->put(1, "") != extent_protocol::OK)
printf("error init root dir\n"); // XYB: init root dir
}
int
yfs_client::verify(const char* name, unsigned short *uid)
{
int ret = OK;
return ret;
}
yfs_client::inum
yfs_client::n2i(std::string n)
{
std::istringstream ist(n);
unsigned long long finum;
ist >> finum;
return finum;
}
std::string
yfs_client::filename(inum inum)
{
std::ostringstream ost;
ost << inum;
return ost.str();
}
bool
yfs_client::isfile(inum inum)
{
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
printf("error getting attr\n");
return false;
}
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;
if (ec->getattr(inum, a) != extent_protocol::OK) {
printf("error getting attr\n");
return false;
}
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;
}
/** Your code here for Lab...
* You may need to add routines such as
* readlink, issymlink here to implement symbolic link.
*
* */
bool
yfs_client::issymlink(inum inum) {
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
printf("error getting attr\n");
return false;
}
if (a.type == extent_protocol::T_SYMLINK) {
printf("issymlink: %lld is a symlink\n", inum);
return true;
}
printf("issymlink: %lld is not a symlink\n", inum);
return false;
}
int
yfs_client::readlink(inum inum, std::string &dest) {
printf("readlink %016llx\n", inum);
return ec->get(inum, dest);
}
int
yfs_client::symlink(inum parent, const char *name, const char *link, inum &ino_out) {
int r = OK;
YFS_LOCK(parent)
printf("symlink parent %016llx, name %s, link %s\n", parent, name, link);
dir dirnode;
if ((r = getdirnode(parent, dirnode)) != OK) return r;
bool found;
inum found_inode;
dirnode.lookup(name, found, found_inode);
if (found) return EXIST;
if ((r = ec->create(extent_protocol::T_SYMLINK, ino_out)) != OK) return r;
if ((r = ec->put(ino_out, std::string(link))) != OK) return r;
dirnode.addentry(name, 0, ino_out);
savedirnode(parent, dirnode);
return r;
}
int
yfs_client::getfile(inum inum, fileinfo &fin)
{
int r = OK;
YFS_LOCK(inum);
printf("getfile %016llx\n", inum);
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
r = IOERR;
goto release;
}
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);
release:
return r;
}
int
yfs_client::getdir(inum inum, dirinfo &din)
{
int r = OK;
YFS_LOCK(inum)
printf("getdir %016llx\n", inum);
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
r = IOERR;
goto release;
}
din.atime = a.atime;
din.mtime = a.mtime;
din.ctime = a.ctime;
release:
return r;
}
#define EXT_RPC(xx) do { \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
r = IOERR; \
goto release; \
} \
} while (0)
// Only support set size of attr
int
yfs_client::setattr(inum ino, filestat st, unsigned long size)
{
int r = OK;
YFS_LOCK(ino)
/*
* your lab2 code goes here.
* note: get the content of inode ino, and modify its content
* according to the size (<, =, or >) content length.
*/
printf("setattr %016llx\n", ino);
std::string buf;
if ((r = ec->get(ino, buf)) != OK) return r;
if (buf.size() == size) return r;
buf.resize(size, '\0');
r = ec->put(ino, buf);
return r;
}
int
yfs_client::create(inum parent, const char *name, mode_t mode, inum &ino_out)
{
int r = OK;
printf("create parent: %016llx, name: %s\n", parent, name);
YFS_LOCK(parent)
/*
* your lab2 code goes here.
* note: lookup is what you need to check if file EXIST;
* after create file or dir, you must remember to modify the parent infomation.
*/
dir dirnode;
if ((r = getdirnode(parent, dirnode)) != OK) return r;
bool found;
inum found_inode;
dirnode.lookup(name, found, found_inode);
if (found) return EXIST;
if ((r = ec->create(extent_protocol::T_FILE, ino_out)) != OK) return r;
dirnode.addentry(name, mode, ino_out);
savedirnode(parent, dirnode);
return r;
}
int
yfs_client::mkdir(inum parent, const char *name, mode_t mode, inum &ino_out)
{
int r = OK;
printf("mkdir parent: %016llx, name: %s\n", parent, name);
YFS_LOCK(parent)
/*
* your lab2 code goes here.
* note: lookup is what you need to check if directory exist;
* after create file or dir, you must remember to modify the parent infomation.
*/
dir dirnode;
if ((r = getdirnode(parent, dirnode)) != OK) return r;
bool found;
inum found_inode;
dirnode.lookup(name, found, found_inode);
if (found) return EXIST;
if ((r = ec->create(extent_protocol::T_DIR, ino_out)) != OK) return r;
dirnode.addentry(name, mode, ino_out);
savedirnode(parent, dirnode);
return r;
}
int
yfs_client::lookup(inum parent, const char *name, bool &found, inum &ino_out)
{
int r = OK;
printf("lookup %s\n", name);
YFS_LOCK(parent)
/*
* your lab2 code goes here.
* note: lookup file from parent dir according to name;
* you should design the format of directory content.
*/
dir dirnode;
if ((r = getdirnode(parent, dirnode)) != OK) return r;
dirnode.lookup(name, found, ino_out);
return r;
}
int
yfs_client::readdir(inum parent, std::list<dirent> &list)
{
int r = OK;
YFS_LOCK(parent)
/*
* your lab2 code goes here.
* note: you should parse the dirctory content using your defined format,
* and push the dirents to the list.
*/
printf("readdir %016llx\n", parent);
dir dirnode;
if ((r = getdirnode(parent, dirnode)) != OK) return r;
dirnode.getentries(list);
return r;
}
int
yfs_client::read(inum ino, size_t size, off_t off, std::string &data)
{
int r = OK;
YFS_LOCK(ino)
/*
* your lab2 code goes here.
* note: read using ec->get().
*/
printf("read %016llx, size %lu off %lu\n", ino, size, off);
r = ec->get(ino, data);
data.erase(0, off);
if (data.size() > size)
data.resize(size);
printf("read %016llx actual size %lu\n", ino, data.size());
return r;
}
int
yfs_client::write(inum ino, size_t size, off_t off, const char *data,
size_t &bytes_written)
{
int r = OK;
YFS_LOCK(ino)
/*
* your lab2 code goes here.
* note: write using ec->put().
* when off > length of original file, fill the holes with '\0'.
*/
printf("write %016llx, size %lu, off %lu\n", ino, size, off);
std::string buf;
if ((r = ec->get(ino, buf)) != OK) return r;
bytes_written = off + size - buf.size();
if (off + size > buf.size()) {
buf.resize(off + size, '\0');
}
buf.replace(off, size, data, size);
r = ec->put(ino, buf);
return r;
}
int yfs_client::unlink(inum parent,const char *name)
{
int r = OK;
YFS_LOCK(parent)
/*
* your lab2 code goes here.
* note: you should remove the file using ec->remove,
* and update the parent directory content.
*/
dir dirnode;
if ((r = getdirnode(parent, dirnode)) != OK) return r;
bool found;
inum found_inode;
dirnode.lookup(name, found, found_inode);
if (!found) return NOENT;
if ((r = ec->remove(found_inode)) != OK) return r;
dirnode.removeentry(name);
r = savedirnode(parent, dirnode);
return r;
}
int yfs_client::getdirnode(inum ino, dir &dir_out) {
int r = OK;
std::string buf;
if (!isdir(ino)) return IOERR;
if ((r = ec->get(ino, buf)) != OK) return r;
dir_out = dir(buf);
return r;
}
int yfs_client::savedirnode(inum ino, const dir &dirnode) {
std::string buf;
dirnode.dump(buf);
return ec->put(ino, buf);
}
yfs_client::dir::dir(const std::string &buf) {
const char *b = buf.c_str();
uint32_t cnt = *(uint32_t *)b;
b += sizeof(uint32_t);
while (cnt --> 0) {
uint8_t len = *(uint8_t *)b;
b += sizeof(uint8_t);
std::string name(b, b + len);
b += len;
inum ino = *(inum *)b;
b += sizeof(inum);
entries[name] = ino;
}
}
void yfs_client::dir::dump(std::string &out) const {
uint32_t cnt = entries.size();
char *buf = new char[cnt * (sizeof(uint8_t) + sizeof(uint32_t) + MAX_NAME_LEN) + sizeof(uint32_t)];
char *b = buf;
*(uint32_t *)b = cnt;
b += sizeof(uint32_t);
for (const auto &entry: entries) {
const auto &name = entry.first;
inum ino = entry.second;
*(uint8_t *)b = name.size();
b += sizeof(uint8_t);
memcpy(b, name.c_str(), name.size());
b += name.size();
*(inum *)b = ino;
b += sizeof(inum);
}
out = std::string(buf, b);
delete[] buf;
}
void yfs_client::dir::lookup(const std::string &name, bool &found, inum &ino_out) const {
printf("_lookup %s\n", name.c_str());
const auto it = entries.find(name);
if (it != entries.end()) {
found = true;
ino_out = it->second;
} else {
found = false;
}
}
void yfs_client::dir::addentry(const std::string &name, mode_t mode, inum ino) {
entries[name] = ino;
}
void yfs_client::dir::removeentry(const std::string &name) {
entries.erase(name);
}
void yfs_client::dir::getentries(std::list<dirent> &entries) const {
for (const auto &entry: this->entries) {
entries.push_back(dirent { entry.first, entry.second });
}
}
void yfs_client::commit() {
ec->commit();
}
void yfs_client::prev() {
ec->rollback();
}
void yfs_client::next() {
ec->redo();
}