-
Notifications
You must be signed in to change notification settings - Fork 0
/
sfs.c
526 lines (479 loc) · 21.1 KB
/
sfs.c
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
#define FUSE_USE_VERSION 31
#include <fuse3/fuse.h> // 用户态文件系统fuse
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <malloc.h>
#include <time.h>
#include <errno.h>
#include <math.h>
#include "sfs_ds.h" // SFS文件系统相关数据结构
#include "sfs_rw.h" // SFS文件系统相关读写操作
#include "sfs_utils.h" // SFS文件系统相关辅助函数
// ************************************************************************************
// 以下为fuse_operations需要实现的SFS回调函数
/*
* 基于inode组织磁盘:
* | super block | inode bitmap | data bitmap | inode area | data area |
* inode号或块号大小为: sizeof(short int)=2,一个数据块可存放 512/2=256 个块号
* 最大文件大小为: (4*512 + 256*512 + 256**2*512 + 256**3*512) Byte = 8224MB
*
* 初始化文件系统:
* 1. 打开文件系统的载体文件(sfs.img)
* 2. 检查文件系统是否已经被初始化(检查sb->fs_size),如果已经初始化,可以跳过初始化步骤
* 3. 如果文件系统尚未初始化,进行初始化操作,包括超级块的填充以及inode位图和数据块位图的初始化
*/
static void* SFS_init(struct fuse_conn_info* conn, struct fuse_config *cfg) {
// 8M大小的虚拟磁盘文件映像路径,该文件作为SFS文件系统的载体
fs = fopen(fs_img, "rb+");
if (fs == NULL) {
// 检查映像文件路径
perror("[SFS_init] Error: failed to open the file system image");
printf("[SFS_init] Error: the file system image's path: %s\n", fs_img);
return NULL;
}
// 检查文件系统是否已经初始化,可以通过检查超级块的fs_size来实现
sb = malloc(sizeof(struct sb));
fseek(fs, 0, SEEK_SET); // 定位超级块位置
fread(sb, sizeof(struct sb), 1, fs); // 读取超级块数据
// 初始化根目录属性
root_entry = (struct entry*)malloc(sizeof(struct entry));
strcpy(root_entry->name, "/"); // 根目录为"/"
strcpy(root_entry->extension, ""); // 目录扩展名为空字符串
root_entry->type = DIR_TYPE; // 目录文件类型
root_entry->inode = 0; // 根目录的inode号为0
work_entry = root_entry; // 当前工作目录为根目录
if (sb->fs_size > 0) {
// 文件系统已初始化,无需再次初始化虚拟磁盘文件sfs.img
printf("[SFS_init] SFS has been initialized\n");
} else {
// 进行虚拟磁盘初始化
printf("[SFS_init] Start initializing SFS\n");
// 文件系统虚拟磁盘尚未初始化,进行初始化操作(格式化)
// 首先填充超级块(超级块位于第0块)
sb->fs_size = FS_SIZE / BLOCK_SIZE; // 文件系统大小,以块为单位,共16*1024块
sb->first_blk_of_inodebitmap = 1; // inode位图的第一块块号
sb->inodebitmap_size = NUM_INODE_BITMAP_BLOCK; // inode位图大小为1块(512B)
sb->first_blk_of_databitmap = sb->first_blk_of_inodebitmap + sb->inodebitmap_size; // 数据块位图的第一块块号(第2块)
sb->databitmap_size = NUM_DATA_BITMAP_BLOCK; // 数据块位图大小为4块(4 * 512 = 2048 Byte)
sb->first_inode = sb->first_blk_of_databitmap + sb->databitmap_size; // inode区的第一块块号(第6块)
sb->inode_area_size = sb->inodebitmap_size * BLOCK_SIZE * 8; // inode区大小为512*8块,该文件系统最多有4k个文件
sb->first_blk = sb->first_inode + sb->inode_area_size; // 数据区的第一块块号(6 + 4096 = 4102)
sb->datasize = sb->databitmap_size * BLOCK_SIZE * 8; // 数据区大小为4*512*8块
// 将超级块数据写到到文件系统载体文件
fseek(fs, 0, SEEK_SET);
fwrite(sb, sizeof(struct sb), 1, fs);
// 将根目录的相关信息填写到inode区的第一个inode
struct inode* root_inode = (struct inode*)malloc(sizeof(struct inode));
root_inode->st_mode = __S_IFDIR | 0755; // 目录文件
root_inode->st_ino = 0; // 根目录的inode号为0(第一个)
root_inode->st_nlink = 2; // 链接引用数(根目录为2,其它目录为1)
root_inode->st_uid = 0; // 拥有者的用户ID,0为超级用户
root_inode->st_gid = 0; // 拥有者的组ID,0为超级用户组
root_inode->st_size = 0; // 初始大小为空
// 初始化根目录inode
write_inode(0, root_inode); // 写回磁盘更新
set_inode_bitmap_used(0); // 第一个inode已分配(ino=0)
// 完成文件系统初始化,关闭文件系统载体文件
free(root_inode);
root_inode = NULL;
}
// 检查超级块属性
printf("\tsuper block: first inode bitmap=%ld\n", sb->first_blk_of_inodebitmap);
printf("\tsuper block: inode bitmap size=%ld\n", sb->inodebitmap_size);
printf("\tsuper block: first datablock bitmap=%ld\n", sb->first_blk_of_databitmap);
printf("\tsuper block: datablock bitmap size=%ld\n", sb->databitmap_size);
printf("\tsuper block: first inode=%ld\n", sb->first_inode);
printf("\tsuper block: first datablock=%ld\n", sb->first_blk);
printf("\tsuper block: file system size=%ld\n", sb->fs_size);
// 检查root_entry
char* type = root_entry->type == DIR_TYPE ? "DIR": "FILE";
printf("\troot entry: name=%s\n", root_entry->name);
printf("\troot entry: type=%s\n", type);
printf("\troot entry: inode=%d\n", root_entry->inode);
return NULL;
}
// 读取文件属性
static int SFS_getattr(const char *path,
struct stat *stbuf,
struct fuse_file_info *fi) {
(void) fi;
printf("[SFS_getattr] path=%s\n", path);
// 过滤文件(包括进行读写文件时一些隐藏文件、临时文件等,防止SFS为它们额外创建数据结构)
char fname[MAX_PATH_LEN];
get_file_name(path, fname);
if (strcmp(path, "/") != 0) {
struct entry* t_entry = (struct entry*)malloc(sizeof(struct entry));
fname_ext(fname, t_entry->name, t_entry->extension); // 分割文件名和扩展名
// 进行过滤的文件类型(空路径、临时文件等)
int condition = strcmp(fname, "") == 0 ||
strcmp(t_entry->extension, "swp") == 0 ||
fname[0] == '.' ||
fname[strlen(fname)-1] == '~';
if (condition) {
printf("[SFS_getattr] filter the hidden file %s\n", fname);
free(t_entry);
return -1;
}
free(t_entry);
}
char file_name[MAX_FILE_NAME + MAX_FILE_EXTENSION + 1];
get_file_name(path, file_name);
struct entry* entry = (struct entry*)malloc(sizeof(struct entry));
// 根据路径获取目标entry
if (find_entry(path, entry) == -1) {
printf("[SFS_getattr] Error: path %s is not existed\n", path);
return -ENOENT; // 没有该目录或文件
}
// 根据inode号读取对应索引节点
struct inode* inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(entry->inode, inode);
// 根据inode将属性赋值stbuf(struct stat),文件系统便可知道文件属性
memset(stbuf, 0, sizeof(struct stat));
stbuf->st_mode = inode->st_mode; // 权限,也可以显示是目录还是普通文件类型
stbuf->st_ino = inode->st_ino; // inode号(short int)
stbuf->st_nlink = inode->st_nlink; // 链接数
stbuf->st_uid = inode->st_uid; // 用户id
stbuf->st_gid = inode->st_gid; // 用户组id
stbuf->st_size = inode->st_size; // 文件大小
stbuf->st_blksize = BLOCK_SIZE;
stbuf->st_blocks = inode->st_size / BLOCK_SIZE + 1;
free(entry);
free(inode);
entry = NULL;
inode = NULL;
return 0;
}
/**
* 读取目录,使用ls命令会自动调用该方法
* readdir在ls过程中每次仅会返回一个目录项
* 其中offset参数记录着当前一个返回的目录项
*/
static int SFS_readdir(const char* path, void* buf,
fuse_fill_dir_t filler, off_t offset,
struct fuse_file_info* fi,
enum fuse_readdir_flags flags) {
(void) fi;
off_t cur = offset; // 当前需要进行返回的目录项偏移
printf("[SFS_readir] path=%s\n", path);
struct entry* entry = (struct entry*)malloc(sizeof(struct entry));
// 根据路径解析获取将要读取的entry
if (find_entry(path, entry) == -1) {
// 该目录没有对应entry
printf("[SFS_readir] Error: this path %s does not exist\n", path);
return -1;
}
// 存在该路径对应entry,读取索引节点
struct inode* inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(entry->inode, inode);
// 读取目录结构进行子目录项的文件名匹配
struct dir* dir = (struct dir*)malloc(sizeof(struct dir));
read_dir(inode, dir);
if (cur < dir->num_entries) {
char fname[MAX_FILE_NAME + 1 + MAX_FILE_EXTENSION];
full_name(dir->entries[cur]->name, dir->entries[cur]->extension, fname);
// printf("[SFS_readdir] name=%s\n", fname);
// 将文件名加入到缓冲区,文件系统会自动获取目录项进行显示
filler(buf, fname, NULL, ++cur, 0);
}
return 0;
}
// 创建目录
static int SFS_mkdir(const char* path, mode_t mode) {
printf("[SFS_mkdir] path=%s\n", path);
(void) mode;
struct entry* parent_entry = (struct entry*)malloc(sizeof(struct entry));
char* parent_path = (char*)malloc(sizeof(path));
// 获取path的上一级目录
get_parent_path(path, parent_path); // 获得上一级路径
find_entry(parent_path, parent_entry); // 获得上一级entry(需要保证是目录文件类型)
if (parent_entry->type != DIR_TYPE) {
// 需要保证上一级是目录文件类型
printf("[SFS_mkdir] Error: parent entry is not DIR type\n");
free(parent_entry);
free(parent_path);
parent_entry = NULL;
parent_path = NULL;
return -1;
}
// 寻找空闲inode装载新创建的目录
short int* ino = (short int*)malloc(sizeof(short int));
get_free_ino(ino);
if (*ino == -1) {
// 没有空闲inode
printf("[SFS_mkdir] Error: there is no free inode for new entry\n");
free(parent_entry);
free(parent_path);
free(ino);
return -1;
}
// 创建新inode指向new_entry
struct inode* inode = (struct inode*)malloc(sizeof(struct inode));
new_inode(inode, *ino, DIR_TYPE);
// 将该inode写入虚拟磁盘
write_inode(*ino, inode);
set_inode_bitmap_used(*ino);
// 创建新的entry作为目录文件
char file_name[MAX_FILE_NAME + MAX_FILE_EXTENSION + 1];
get_file_name(path, file_name);
struct entry* entry = (struct entry*)malloc(sizeof(struct entry));
new_entry(entry, file_name, "", DIR_TYPE, *ino);
// 读取父目录的entry,将新创建的子目录加入其中
struct inode* parent_inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(parent_entry->inode, parent_inode);
//printf("[SFS_mkdir] add entry name=%s\n", entry->name);
add_entry(parent_inode, entry);
free(ino);
free(inode);
free(entry);
ino = NULL;
inode = NULL;
entry = NULL;
free(parent_path);
free(parent_entry);
free(parent_inode);
parent_path = NULL;
parent_entry = NULL;
parent_inode = NULL;
return 0;
}
// 删除目录
static int SFS_rmdir(const char* path) {
printf("[SFS_rmdir] path=%s\n", path);
if (strcmp(path, "/") == 0) {
// 根目录无法删除
printf("[SFS_rmdir] fail to remove the root dir\n");
return -1;
}
// 路径解析
struct entry* entry = (struct entry*)malloc(sizeof(struct entry)); // 待删除的entry
if (find_entry(path, entry) != 0) {
// 不存在该路径对应的entry
printf("[SFS_rmdir] the path %s does not exist\n", path);
return -1;
}
// 找到了路径需要删除目录对应的entry
// 从父目录下将其删除
struct entry* parent_entry = (struct entry*)malloc(sizeof(struct entry));
char* parent_path = (char*)malloc(sizeof(path));
// 获取path的上一级目录
get_parent_path(path, parent_path); // 获得上一级路径
find_entry(parent_path, parent_entry); // 获得上一级entry
// 遍历parent_inode的数据块进行匹配删除(在remove_entry内)
struct inode* parent_inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(parent_entry->inode, parent_inode);
remove_entry(parent_inode, entry); // 内部递归操作,将目录的子目录项一同清空
free(entry);
free(parent_entry);
free(parent_inode);
return 0;
}
// 创建文件
// touch要求不仅仅是创建文件,还要求可以修改文件的访问时间,故实现了utimeus调用
static int SFS_mknod(const char* path, mode_t mode, dev_t dev) {
printf("[SFS_mknod] path=%s\n", path);
(void) mode;
(void) dev;
// 过滤文件
char file_name[MAX_FILE_NAME + MAX_FILE_EXTENSION + 1];
get_file_name(path, file_name);
if (strcmp(file_name, "") == 0 || file_name[0] == '.') {
printf("[SFS_mknod] filter the hidden file %s\n", file_name);
return -1;
}
// 获取父目录,将新创建文件加入其中
struct entry* parent_entry = (struct entry*)malloc(sizeof(struct entry));
char* parent_path = (char*)malloc(sizeof(path));
// 获取path的上一级目录
get_parent_path(path, parent_path); // 获得上一级路径
find_entry(parent_path, parent_entry); // 获得上一级entry(需要保证是目录文件类型)
if (parent_entry->type != DIR_TYPE) {
// 需要保证上一级是目录文件类型
printf("[SFS_mknod] Error: parent entry is not DIR type\n");
free(parent_entry);
free(parent_path);
parent_entry = NULL;
parent_path = NULL;
return -1;
}
// 寻找空闲inode指向新创建的文件
short int* ino = (short int*)malloc(sizeof(short int));
get_free_ino(ino);
if (*ino == -1) {
// 没有空闲inode
printf("[SFS_mknod] Error: there is no free inode for new entry\n");
free(parent_entry);
free(parent_path);
free(ino);
return -1;
}
// 创建新inode指向new_entry
struct inode* inode = (struct inode*)malloc(sizeof(struct inode));
new_inode(inode, *ino, FILE_TYPE);
// 将该inode写入虚拟磁盘
write_inode(*ino, inode);
set_inode_bitmap_used(*ino);
// 创建新的entry作为文件
struct entry* entry = (struct entry*)malloc(sizeof(struct entry));
fname_ext(file_name, entry->name, entry->extension); // 分割文件名和扩展名
new_entry(entry, entry->name, entry->extension, FILE_TYPE, *ino);
struct inode* parent_inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(parent_entry->inode, parent_inode);
//printf("[SFS_mknod] add entry name=%s\n", entry->name);
add_entry(parent_inode, entry); // 将新创建文件加入到父目录下
free(ino);
free(inode);
free(entry);
ino = NULL;
inode = NULL;
entry = NULL;
free(parent_path);
free(parent_entry);
free(parent_inode);
parent_path = NULL;
parent_entry = NULL;
parent_inode = NULL;
return 0;
}
// 删除文件
// 与删除目录实现基本一致
static int SFS_unlink(const char* path) {
printf("[SFS_unlink] path=%s\n", path);
if (strcmp(path, "/") == 0) {
// 根目录无法删除
printf("[SFS_unlink] fail to remove the root dir\n");
return -1;
}
// 路径解析获取需要删除的文件
struct entry* entry = (struct entry*)malloc(sizeof(struct entry)); // 待删除的entry
if (find_entry(path, entry) != 0) {
// 不存在该路径对应的entry
printf("[SFS_unlink] the path %s does not exist\n", path);
return -1;
}
// 找到了路径对应的entry
struct entry* parent_entry = (struct entry*)malloc(sizeof(struct entry));
char* parent_path = (char*)malloc(sizeof(path));
// 获取path的上一级目录
get_parent_path(path, parent_path); // 获得上一级路径
find_entry(parent_path, parent_entry); // 获得上一级entry
// 遍历parent_inode的数据块进行匹配删除
struct inode* parent_inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(parent_entry->inode, parent_inode);
remove_entry(parent_inode, entry); // 父目录删除子文件
free(entry);
free(parent_entry);
free(parent_inode);
return 0;
}
// 打开文件
static int SFS_open(const char* path, struct fuse_file_info* fi) {
(void)fi;
(void)path;
return 0;
}
// 关闭文件
static int SFS_release(const char* path, struct fuse_file_info* fi) {
(void)fi;
(void)path;
return 0;
}
// 读文件
static int SFS_read(const char* path, char* buf, size_t size, off_t offset, struct fuse_file_info* fi) {
(void) fi;
printf("[SFS_read] path=%s\n", path);
// 路径解析获取需要读取的文件entry
struct entry* entry = (struct entry*)malloc(sizeof(struct entry));
find_entry(path, entry);
// 判断是否属于普通文件类型
if (entry->type != FILE_TYPE) {
printf("[SFS_read] the path %s is not a file\n", path);
return -EISDIR; // 无法读取目录
}
// 获取读取文件的inode
struct inode* inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(entry->inode, inode);
if (inode->st_size < offset) {
free(entry);
free(inode);
// 要保证文件大小大于所要读取的偏移量
return -ESPIPE;
}
// printf("[SFS_read] inode size=%ld\n", inode->st_size);
char* data = malloc(inode->st_size);
read_file(inode, data, size); // 将inode存储的数据读取到data
// 将数据data拷贝到buf缓冲区,即内存
memcpy(buf, data + offset, size);
free(entry);
free(inode);
return size; // 返回实际读取的字节数,如果读取失败,返回负数表示错误
}
// 写文件
static int SFS_write(const char* path, const char* buf, size_t size, off_t offset, struct fuse_file_info* fi) {
(void) fi;
printf("[SFS_write] path=%s\n", path);
// 路径解析
struct entry* entry = (struct entry*)malloc(sizeof(struct entry));
find_entry(path, entry);
if (entry->type != FILE_TYPE) {
printf("[SFS_read] the path %s is not a file\n", path);
return -EISDIR; // 无法读取目录
}
// 获取待写文件的inode
struct inode* inode = (struct inode*)malloc(sizeof(struct inode));
read_inode(entry->inode, inode);
if (inode->st_size < offset) {
// 要保证文件大小大于所要读取的偏移量
free(entry);
free(inode);
return -ESPIPE;
}
// 写后文件的大小
int new_size = MAX(offset + size, inode->st_size);
char* data = malloc(new_size);
// 首先将文件内容读取出来,在此基础上写
read_file(inode, data, inode->st_size);
memcpy(data + offset, buf, size); // 将写的数据拷贝到读取的数据中
write_file(inode, data, new_size); // 将写后的数据拷贝回索引节点
inode->st_size = new_size; // 更新inode文件大小
// 写回inode到磁盘
write_inode(inode->st_ino, inode);
return size;
}
// 修改时间
int SFS_utimens(const char* path, const struct timespec tv[2], struct fuse_file_info *fi) {
(void) path;
(void) fi;
return 0;
}
// 定义文件系统支持的操作函数,并添加到该结构体中
// fuse会在执行linux相关操作时执行我们所定义的文件操作函数
static struct fuse_operations SFS_operations = {
.init = SFS_init, // 初始化文件系统
.getattr = SFS_getattr, // 获取文件或目录的属性
.readdir = SFS_readdir, // 读取目录
.mkdir = SFS_mkdir, // 创建目录
.rmdir = SFS_rmdir, // 删除目录
.mknod = SFS_mknod, // 创建文件
.unlink = SFS_unlink, // 删除文件
.open = SFS_open, // 打开文件
.release = SFS_release, // 关闭文件
.read = SFS_read, // 读文件
.write = SFS_write, // 写文件
.utimens = SFS_utimens, // 修改时间(创建文件要求实现)
};
int main(int argc, char *argv[]) {
// printf("%lu\n", sizeof(struct file));
// 权限掩码,umask(0)为0取反再创建文件时权限(mode)相与
// 即(~0) & mode,在八进制中为:0777 & mode
// 为后面的代码调用函数mkdir给出最大的权限,避免了创建目录或文件的权限不确定性
umask(0);
int ret = 0;
// fuse库的入口起点,通过SFS_operation包含的回调函数来执行文件系统操作
ret = fuse_main(argc, argv, &SFS_operations, NULL);
fclose(fs);
free(sb);
sb = NULL;
return ret;
}