-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib.c
2055 lines (1928 loc) · 76 KB
/
lib.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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "lib.h"
// 写组描述符
static void update_group_desc() {
fp = fopen(current_disk, "rb+");
fseek(fp, GDT_START, SEEK_SET);
fwrite(&group_desc_buf, GD_SIZE, 1, fp);
fflush(fp);
}
// 读组描述符
static void load_group_desc() {
fseek(fp, GDT_START, SEEK_SET);
fread(&group_desc_buf, GD_SIZE, 1, fp);
}
// 写第 i 个 inode
static void update_inode_entry(unsigned short i) {
fp = fopen(current_disk, "rb+");
fseek(fp, INODE_TABLE + (i - 1) * INODE_SIZE, SEEK_SET);
fwrite(&inode_buf, INODE_SIZE, 1, fp);
fflush(fp);
}
// 读第 i 个 inode
static void load_inode_entry(unsigned short i) {
fseek(fp, INODE_TABLE + (i - 1) * INODE_SIZE, SEEK_SET);
fread(&inode_buf, INODE_SIZE, 1, fp);
}
// 写第 i 个数据块,目录项
static void update_dir(unsigned short i) {
fp = fopen(current_disk, "rb+");
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fwrite(dir_buf, BLOCK_SIZE, 1, fp);
fflush(fp);
}
// 读第 i 个数据块,目录项
static void load_dir(unsigned short i) {
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fread(dir_buf, BLOCK_SIZE, 1, fp);
}
// 写 block 位图
static void update_block_bitmap() {
fp = fopen(current_disk, "rb+");
fseek(fp, BLOCK_BITMAP, SEEK_SET);
fwrite(bitbuf, BLOCK_SIZE, 1, fp);
fflush(fp);
}
// 读 block 位图
static void load_block_bitmap() {
fseek(fp, BLOCK_BITMAP, SEEK_SET);
fread(bitbuf, BLOCK_SIZE, 1, fp);
}
// 写 inode 位图
static void update_inode_bitmap() {
fp = fopen(current_disk, "rb+");
fseek(fp, INODE_BITMAP, SEEK_SET);
fwrite(ibuf, BLOCK_SIZE, 1, fp);
fflush(fp);
}
// 读 inode 位图
static void load_inode_bitmap() {
fseek(fp, INODE_BITMAP, SEEK_SET);
fread(ibuf, BLOCK_SIZE, 1, fp);
}
// 写第 i 个数据块, 从 Buffer 写入
static void update_block(unsigned short i) {
fp = fopen(current_disk, "rb+");
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
//fseek(fp,0,SEEK_SET);
fwrite(Buffer, BLOCK_SIZE, 1, fp);
fflush(fp);
}
// 读第 i 个数据块, 读到 Buffer
static void load_block(unsigned short i) {
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fread(Buffer, BLOCK_SIZE, 1, fp);
}
// 写第 i 个数据块, 从 inode_ptr_buffer 写入
static void update_block_from_inode_ptr(unsigned short i) {
fp = fopen(current_disk, "rb+");
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fwrite(inode_ptr_buf, BLOCK_SIZE, 1, fp);
fflush(fp);
}
// 读第 i 个数据块, 读到 inode_ptr_buffer
static void load_block_to_inode_ptr(unsigned short i) {
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fread(inode_ptr_buf, BLOCK_SIZE, 1, fp);
}
// 写第 i 个数据块, 从 inode_ptr_buffer_level2 写入
static void update_block_from_inode_ptr_level_2(unsigned short i) {
fp = fopen(current_disk, "rb+");
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fwrite(inode_ptr_buf_level_2, BLOCK_SIZE, 1, fp);
fflush(fp);
}
// 读第 i 个数据块, 读到 inode_ptr_buffer_level2
static void load_block_to_inode_ptr_level_2(unsigned short i) {
fseek(fp, DATA_BLOCK + i * BLOCK_SIZE, SEEK_SET);
fread(inode_ptr_buf_level_2, BLOCK_SIZE, 1, fp);
}
// 分配一个数据块,返回数据块号
static int alloc_block() {
//bitbuf共有512个字节,表示4096个数据块。根据last_alloc_block/8计算它在bitbuf的哪一个字节
unsigned short cur = last_alloc_block;
unsigned char con = 128; // 1000 0000b
int flag = 0;
if (group_desc_buf.bg_free_blocks_count == 0) {
printf("There is no block to be allocated!\n");
return (0);
}
load_block_bitmap();
cur /= 8;
while (bitbuf[cur] == 255) { //该字节的8个bit都已有数据
if (cur == 511)
cur = 0; //最后一个字节也已经满,从头开始寻找
else
cur++;
}
while (bitbuf[cur] & con) { //在一个字节中找具体的某一个bit
con = con / 2;
flag++;
}
bitbuf[cur] = bitbuf[cur] + con;
last_alloc_block = cur * 8 + flag;
update_block_bitmap();
group_desc_buf.bg_free_blocks_count--;
update_group_desc();
return last_alloc_block;
}
// 分配一个 inode
static int alloc_inode() {
unsigned short cur = last_alloc_inode;
unsigned char con = 128;
int flag = 0;
if (group_desc_buf.bg_free_inodes_count == 0) {
printf("There is no Inode to be allocated!\n");
return 0;
}
load_inode_bitmap();
cur = (cur - 1) / 8; //第一个标号是1,但是存储是从0开始的
while (ibuf[cur] == 255) { //先看该字节的8个位是否已经填满
if (cur == 511)
cur = 0;
else
cur++;
}
while (ibuf[cur] & con) { //再看某个字节的具体哪一位没有被占用
con = con / 2;
flag++;
}
ibuf[cur] = ibuf[cur] + con;
last_alloc_inode = cur * 8 + flag + 1;
update_inode_bitmap();
group_desc_buf.bg_free_inodes_count--;
update_group_desc();
return last_alloc_inode;
}
//查找当前目录中名为tmp的文件或目录,并得到该文件的inode号,它在上级目录中的数据块号以及数据块中目录的项号
static unsigned short find_file(char tmp[100], int file_type, unsigned short *inode_num,
unsigned short *block_num, unsigned short *dir_num) {
unsigned short j, k;
load_inode_entry(current_dir); //进入当前目录
j = 0;
while (j < inode_buf.i_blocks) {
load_dir(inode_buf.i_block[j]);
k = 0;
while (k < 32) { //每个数据块最多有32个目录项
if (!dir_buf[k].inode || dir_buf[k].file_type != file_type || strcmp(dir_buf[k].name, tmp)) {
k++;
}
else {
*inode_num = dir_buf[k].inode;
*block_num = j;
*dir_num = k;
return 1;
}
}
j++;
}
return 0;
}
// 为新增目录或文件分配 dir_entry
static void init_dir_entry(unsigned short tmp, unsigned short len, int type, int mode) {
load_inode_entry(tmp);
if (type == 2) { // 目录
inode_buf.i_size = 32;
inode_buf.i_blocks = 1;
inode_buf.i_block[0] = alloc_block();
time_t now;
time(&now);
inode_buf.i_ctime = now;
inode_buf.i_mtime = now;
inode_buf.i_atime = now;
if (inode_buf.i_block[0] == 0) {
printf("There is no block to be allocated!\n");
return;
}
dir_buf[0].inode = tmp;
dir_buf[1].inode = current_dir;
dir_buf[0].name_len = len;
dir_buf[1].name_len = current_dirlen;
dir_buf[0].file_type = dir_buf[1].file_type = 2;
for (type = 2; type < 32; type++)
dir_buf[type].inode = 0;
strcpy(dir_buf[0].name, ".");
strcpy(dir_buf[1].name, "..");
update_dir(inode_buf.i_block[0]);
inode_buf.i_mode = 518; // 0000 0010 0000 0110b
}
else {
inode_buf.i_size = 0;
inode_buf.i_blocks = 0;
switch (mode)
{
case 1:
inode_buf.i_mode = 257; // 0000 0100 0000 0001b
break;
case 2:
inode_buf.i_mode = 258; // 0000 0100 0000 0010b
break;
case 3:
inode_buf.i_mode = 259; // 0000 0100 0000 0011b
break;
case 4:
inode_buf.i_mode = 260; // 0000 0100 0000 0100b
break;
case 5:
inode_buf.i_mode = 261; // 0000 0100 0000 0101b
break;
case 6:
inode_buf.i_mode = 262; // 0000 0100 0000 0110b
break;
case 7:
inode_buf.i_mode = 263; // 0000 0100 0000 0111b
break;
default:
break;
}
time_t now;
time(&now);
inode_buf.i_ctime = now;
inode_buf.i_mtime = now;
inode_buf.i_atime = now;
}
update_inode_entry(tmp);
}
// 删除一个块
static void remove_block(unsigned short del_num) {
unsigned short tmp;
tmp = del_num / 8;
load_block_bitmap();
switch (del_num % 8) { // 更新block位图 将具体的位置为0
case 0:
bitbuf[tmp] = bitbuf[tmp] & 127;
break; // bitbuf[tmp] & 0111 1111b
case 1:
bitbuf[tmp] = bitbuf[tmp] & 191;
break; //bitbuf[tmp] & 1011 1111b
case 2:
bitbuf[tmp] = bitbuf[tmp] & 223;
break; //bitbuf[tmp] & 1101 1111b
case 3:
bitbuf[tmp] = bitbuf[tmp] & 239;
break; //bitbuf[tmp] & 1110 1111b
case 4:
bitbuf[tmp] = bitbuf[tmp] & 247;
break; //bitbuf[tmp] & 1111 0111b
case 5:
bitbuf[tmp] = bitbuf[tmp] & 251;
break; //bitbuf[tmp] & 1111 1011b
case 6:
bitbuf[tmp] = bitbuf[tmp] & 253;
break; //bitbuf[tmp] & 1111 1101b
case 7:
bitbuf[tmp] = bitbuf[tmp] & 254;
break; // bitbuf[tmp] & 1111 1110b
}
update_block_bitmap();
group_desc_buf.bg_free_blocks_count++;
update_group_desc();
}
// 删除一个 inode
static void remove_inode(unsigned short del_num) {
unsigned short tmp;
tmp = (del_num - 1) / 8;
load_inode_bitmap();
switch ((del_num - 1) % 8) { //更改block位图
case 0:
bitbuf[tmp] = bitbuf[tmp] & 127;
break;
case 1:
bitbuf[tmp] = bitbuf[tmp] & 191;
break;
case 2:
bitbuf[tmp] = bitbuf[tmp] & 223;
break;
case 3:
bitbuf[tmp] = bitbuf[tmp] & 239;
break;
case 4:
bitbuf[tmp] = bitbuf[tmp] & 247;
break;
case 5:
bitbuf[tmp] = bitbuf[tmp] & 251;
break;
case 6:
bitbuf[tmp] = bitbuf[tmp] & 253;
break;
case 7:
bitbuf[tmp] = bitbuf[tmp] & 254;
break;
}
update_inode_bitmap();
group_desc_buf.bg_free_inodes_count++;
update_group_desc();
}
// 在打开文件表中查找是否已打开文件
static unsigned short search_file_in_open_table(unsigned short Inode) {
unsigned short fopen_table_point = 0;
while (fopen_table_point < 16 && fopen_table[fopen_table_point++] != Inode);
if (fopen_table_point == 16) {
return 0;
}
return 1;
}
// 初始化磁盘
void initialize_disk() {
int i = 0;
printf("Creating the ext2 file system\n");
printf("Please wait ...\n");
last_alloc_inode = 1;
last_alloc_block = 0;
for (i = 0; i < FOPEN_TABLE_MAX; i++) {
fopen_table[i] = 0; //清空缓冲表
}
for (i = 0; i < BLOCK_SIZE; i++) {
Buffer[i] = 0; // 清空缓冲区
}
if (fp != NULL) {
fclose(fp);
}
//printf("current disk: %s\n", current_disk);
fp = fopen(current_disk, "w+"); //此文件大小是4096*512=B, 用此文件来模拟文件系统
fseek(fp, DISK_START, SEEK_SET);//将文件指针从0开始
for (i = 0; i < NUM_BLOCK ; i++) {
//清空文件, 即清空磁盘全部用0填充, Buffer为缓冲区起始地址, BLOCK_SIZE表示读取大小, 1表示写入对象的个数
fwrite(Buffer, BLOCK_SIZE, 1, fp);
}
// 根目录的inode号为1
load_inode_entry(1);
load_dir(0);
// 修改路径名为根目录
strcpy(current_path, "");
strcat(current_path, "[");
strcat(current_path, current_user);
strcat(current_path, "@ext2 /");
// 初始化组描述符内容
load_group_desc();
group_desc_buf.bg_block_bitmap = BLOCK_BITMAP; //第一个块位图的起始地址
group_desc_buf.bg_inode_bitmap = INODE_BITMAP; //第一个inode位图的起始地址
group_desc_buf.bg_inode_table = INODE_TABLE; //inode表的起始地址
group_desc_buf.bg_free_blocks_count = DATA_BLOCK_COUNTS; //空闲数据块数
group_desc_buf.bg_free_inodes_count = INODE_TABLE_COUNTS; //空闲inode数
group_desc_buf.bg_used_dirs_count = 0; // 初始分配给目录的节点数是0
update_group_desc(); // 更新组描述符内容
load_block_bitmap();
load_inode_bitmap();
inode_buf.i_mode = 518; // 0000 0010 0000 0110b 因为是目录文件类型, 所以第10位为1
inode_buf.i_blocks = 0;
inode_buf.i_size = 32; // 32B因为有两个目录项 . 和 ..
inode_buf.i_atime = 0;
inode_buf.i_ctime = 0;
inode_buf.i_mtime = 0;
inode_buf.i_dtime = 0;
inode_buf.i_block[0] = alloc_block(); //分配数据块
inode_buf.i_blocks++;
current_dir = alloc_inode(); //当前目录的inode号
update_inode_entry(current_dir);
//初始化根目录的目录项
dir_buf[0].inode = dir_buf[1].inode = current_dir; //当前目录的inode号
dir_buf[0].name_len = 0; // .的长度为0
dir_buf[1].name_len = 0; // ..的长度为0
dir_buf[0].file_type = dir_buf[1].file_type = 2; // 2表示目录文件
strcpy(dir_buf[0].name, ".");
strcpy(dir_buf[1].name, "..");
update_dir(inode_buf.i_block[0]);
printf("The ext2 file system has been installed!\n");
// check_disk();
// fclose(fp);
}
// 初始化用户信息
void initialize_user() {
// 从userlist.txt中读取用户信息
FILE *fp = fopen("./userlist.txt", "r");
if (fp == NULL) {
printf("No user in userlist.txt! create an admin!\n");
strcpy(User[0].username, "admin");
strcpy(User[0].password, "admin");
strcpy(User[0].disk_name, "Disk0");
fp = fopen("./userlist.txt", "w");
if (fp == NULL) {
printf("Can't open userlist.txt!\n");
exit(0);
}
fprintf(fp, "%s %s %s\n", User[0].username, User[0].password, User[0].disk_name);
fclose(fp);
user_num = 1;
return;
}
int i = 0;
while (!feof(fp) && i < USER_MAX) {
fscanf(fp, "%s %s %s\n", User[i].username, User[i].password, User[i].disk_name);
// printf("%s\n %s\n %s\n", User[i].username, User[i].password, User[i].disk_name);
i++;
}
fclose(fp);
user_num = i;
// printf("user_num = %d\n", user_num);
}
// 用户登录
int login(char username[10], char password[10]) {
for (int i = 0; i < user_num; i++) {
if (!strcmp(User[i].username, username)) {
if (!strcmp(User[i].password, password)){
user_index = i;
// printf("user_index = %d\n", user_index);
return 1;
}
break;
}
}
return 0;
}
// 初始化内存
void initialize_memory() {
int i = 0;
last_alloc_inode = 1;
last_alloc_block = 0;
for (i = 0; i < FOPEN_TABLE_MAX; i++) {
fopen_table[i] = 0;
}
strcpy(current_path, "");
strcat(current_path, "[");
strcat(current_path, current_user);
strcat(current_path, "@ext2 /");
current_dir = 1;
fp = fopen(current_disk, "rb+");
if (fp == NULL) {
printf("The File system does not exist!\n");
initialize_disk();
return;
}
// 如果文件全部为空,需要重新初始化
fseek(fp, 0, 0);
char c;
int flag = 0;
while (!feof(fp)) {
fread(&c, 1, 1, fp);
if (c != 0) {
flag = 1;
break;
}
}
if (flag == 0) {
printf("The File system does not exist!\n");
initialize_disk();
return;
}
load_group_desc();
}
// 格式化
void format() {
initialize_disk();
initialize_memory();
}
// 进入某个目录,单步操作
static int cd_onestep(char tmp[100]) {
unsigned short i, j, k, flag;
flag = find_file(tmp, 2, &i, &j, &k); // i是inode号,j是它在本目录的数据块中的偏移量,k是它在本目录的目录项中的偏移量
// 对于..的情况, i指向下一级的inode号,在dirprepare中设定..的inode号为上级目录的inode号
// find_file中已加载了inode_entry和dir
if (flag) {
current_dir = i;
if (!strcmp(tmp, "..") && dir_buf[k - 1].name_len) // 到上一级目录, k-1对应 . 的目录项,保证到根目录不再往前
{
current_path[strlen(current_path) - dir_buf[k - 1].name_len - 1] = '\0';
current_dirlen = dir_buf[k].name_len;
// 修改访问时间
load_inode_entry(current_dir);
time_t t;
time(&t);
inode_buf.i_atime = t;
update_inode_entry(current_dir);
return 1;
}
else if (!strcmp(tmp, ".")) {
// 修改访问时间
load_inode_entry(current_dir);
time_t t;
time(&t);
inode_buf.i_atime = t;
update_inode_entry(current_dir);
return 1;
}
else if (strcmp(tmp, "..")) // cd 到子目录
{
current_dirlen = strlen(tmp);
strcat(current_path, tmp);
strcat(current_path, "/");
// 修改访问时间
load_inode_entry(current_dir);
time_t t;
time(&t);
inode_buf.i_atime = t;
update_inode_entry(current_dir);
return 1;
}
}
else {
printf("The directory %s not exists!\n", tmp);
return 0;
}
}
// 进入某个目录
void cd(char tmp[100]) {
// 以/为分隔符,逐级进入目录
char *p;
p = strtok(tmp, "/");
while (p) {
int ret = cd_onestep(p);
if (ret == 0) {
return;
}
p = strtok(NULL, "/");
}
}
// 创建目录
void mkdir(char tmp[100], int type) {
unsigned short tmpno, i, j, k, flag;
// 当前目录下新增目录或文件
load_inode_entry(current_dir);
if (!find_file(tmp, type, &i, &j, &k)) { // 未找到同名文件
if (inode_buf.i_size == 4096) { // 目录项已满
printf("Directory has no room to be alloced!\n");
return;
}
flag = 1;
if (inode_buf.i_size != inode_buf.i_blocks * 512) { // 目录中有某些块中32个 dir_entry 未满
i = 0;
while (flag && i < inode_buf.i_blocks) {
load_dir(inode_buf.i_block[i]);
j = 0;
while (j < 32) {
if (dir_buf[j].inode == 0) {
flag = 0; //找到某个未装满目录项的块
break;
}
j++;
}
i++;
}
tmpno = dir_buf[j].inode = alloc_inode();
dir_buf[j].name_len = strlen(tmp);
dir_buf[j].file_type = type;
strcpy(dir_buf[j].name, tmp);
update_dir(inode_buf.i_block[i - 1]);
}
else { // 全满 新增加块
inode_buf.i_block[inode_buf.i_blocks] = alloc_block();
if (inode_buf.i_block[inode_buf.i_blocks] == 0) {
printf("No block can be alloced!\n");
return;
}
inode_buf.i_blocks++;
load_dir(inode_buf.i_block[inode_buf.i_blocks - 1]);
tmpno = dir_buf[0].inode = alloc_inode();
dir_buf[0].name_len = strlen(tmp);
dir_buf[0].file_type = type;
strcpy(dir_buf[0].name, tmp);
// 初始化新块的其余目录项
for (flag = 1; flag < 32; flag++) {
dir_buf[flag].inode = 0;
}
update_dir(inode_buf.i_block[inode_buf.i_blocks - 1]);
}
inode_buf.i_size += 16;
update_inode_entry(current_dir);
// 为新增目录分配 dir_entry
init_dir_entry(tmpno, strlen(tmp), type, 6);
}
else { // 已经存在同名文件或目录
printf("Directory has already existed!\n");
}
}
// 创建文件
void create(char tmp[100], int type) {
unsigned short tmpno, i, j, k, flag;
load_inode_entry(current_dir);
if (!find_file(tmp, type, &i, &j, &k)) {
if (inode_buf.i_size == 4096) { // 目录项已满
printf("Directory has no room to be alloced!\n");
return;
}
flag = 1;
if (inode_buf.i_size != inode_buf.i_blocks * 512) { // 目录中有某些块中32个 dir_entry 未满
i = 0;
while (flag && i < inode_buf.i_blocks) {
load_dir(inode_buf.i_block[i]);
j = 0;
while (j < 32) { //找到某个未装满目录项的块
if (dir_buf[j].inode == 0) {//找到了未分配的目录项
flag = 0;
break;
}
j++;
}
i++;
}
tmpno = dir_buf[j].inode = alloc_inode();//分配一个新的inode项
dir_buf[j].name_len = strlen(tmp);
dir_buf[j].file_type = type;
strcpy(dir_buf[j].name, tmp);
update_dir(inode_buf.i_block[i - 1]); //-1是因为i++了
}
else { //分配一个新的数据块
inode_buf.i_block[inode_buf.i_blocks] = alloc_block();
if (inode_buf.i_block[inode_buf.i_blocks] == 0) {
printf("No block can be alloced!\n");
return;
}
inode_buf.i_blocks++;
load_dir(inode_buf.i_block[inode_buf.i_blocks - 1]);
tmpno = dir_buf[0].inode = alloc_inode();
dir_buf[0].name_len = strlen(tmp);
dir_buf[0].file_type = type;
strcpy(dir_buf[0].name, tmp);
//初始化新块其他项目为0,即未分配,因为写入的时候按块写入,所以要初始化
for (flag = 1; flag < 32; flag++) {
dir_buf[flag].inode = 0;
}
update_dir(inode_buf.i_block[inode_buf.i_blocks - 1]);
}
inode_buf.i_size += 16; //目录项大小为16
update_inode_entry(current_dir);
int mode = 0;
// 如果是.exe/.bin/.com或者不带后缀的文件,就赋予可执行权限
int len = strlen(tmp);
if (tmp[len - 1] == 'e' && tmp[len - 2] == 'x' && tmp[len - 3] == 'e' && tmp[len - 4] == '.') {
mode = 7;
}
else if (tmp[len - 1] == 'n' && tmp[len - 2] == 'i' && tmp[len - 3] == 'b' && tmp[len - 4] == '.') {
mode = 7;
}
else if (tmp[len - 1] == 'm' && tmp[len - 2] == 'o' && tmp[len - 3] == 'c' && tmp[len - 4] == '.') {
mode = 7;
}
else {
mode = 7;
for (int i = 0; i < len; i++) {
if (tmp[i] == '.') {
mode = 6;
break;
}
}
}
//将新增文件的inode节点初始化
init_dir_entry(tmpno, strlen(tmp), type, mode);
}
else {
printf("File has already existed!\n");
}
}
// 递归删除目录
static void remove_dir(unsigned short inode_no) {
unsigned short i, j, k;
load_inode_entry(inode_no);
current_dir = inode_no;
for (i = 0; i < inode_buf.i_blocks; i++) {
load_dir(inode_buf.i_block[i]);
for (j = 0; j < 32; j++) {
load_inode_entry(inode_no);
current_dir = inode_no;
if (dir_buf[j].inode != 0 && strcmp(dir_buf[j].name, ".") && strcmp(dir_buf[j].name, "..")) {
if (dir_buf[j].file_type == 1) { // 文件
//printf("remove file %s\n", dir[j].name);
del(dir_buf[j].name);
}
else if (dir_buf[j].file_type == 2) { // 目录
//printf("remove dir %s\n", dir[j].name);
load_inode_entry(dir_buf[j].inode);
current_dir = dir_buf[j].inode;
if (inode_buf.i_size == 32) { // 只有.and ..
inode_buf.i_size = 0;
inode_buf.i_blocks = 0;
remove_block(inode_buf.i_block[0]);
}
else {
remove_dir(dir_buf[j].inode);
}
}
}
}
remove_block(inode_buf.i_block[i]);
}
remove_inode(inode_no);
}
// 删除目录
void rmdir(char tmp[100]) {
unsigned short i, j, k, flag;
unsigned short m, n;
if (!strcmp(tmp, "..") || !strcmp(tmp, ".")) {
printf("The directory can not be deleted!\n");
return;
}
flag = find_file(tmp, 2, &i, &j, &k);
if (flag) {
load_inode_entry(dir_buf[k].inode); // 加载要删除的节点
if (inode_buf.i_size == 32) { // 只有.and ..
inode_buf.i_size = 0;
inode_buf.i_blocks = 0;
remove_block(inode_buf.i_block[0]);
// 更新 tmp 所在父目录
load_inode_entry(current_dir);
load_dir(inode_buf.i_block[j]);
remove_inode(dir_buf[k].inode);
dir_buf[k].inode = 0;
dir_buf[k].name_len = 0;
dir_buf[k].file_type = 0;
dir_buf[k].name[0] = '\0';
dir_buf[k].rec_len = 0;
update_dir(inode_buf.i_block[j]);
inode_buf.i_size -= 16;
m = 1;
while (m < inode_buf.i_blocks) {
flag = n = 0;
load_dir(inode_buf.i_block[m]);
while (n < 32) {
if (!dir_buf[n].inode) {
flag++;
}
n++;
}
//如果删除过后,整个数据块的目录项全都为空。类似于在数组中删除某一个位置
if (flag == 32) {
remove_block(inode_buf.i_block[m]);
inode_buf.i_blocks--;
while (m < inode_buf.i_blocks) {
inode_buf.i_block[m] = inode_buf.i_block[m + 1];
++m;
}
}
}
update_inode_entry(current_dir);
return;
}
else {
// 保存当前目录
unsigned short tmp_dir = current_dir;
char tmp_name[100];
strcpy(tmp_name, current_path);
// 如果目录不为空, 递归删除
remove_dir(dir_buf[k].inode);
// 恢复当前目录
current_dir = tmp_dir;
strcpy(current_path, tmp_name);
load_inode_entry(current_dir);
load_dir(inode_buf.i_block[j]);
dir_buf[k].inode = 0;
dir_buf[k].name_len = 0;
dir_buf[k].file_type = 0;
dir_buf[k].name[0] = '\0';
dir_buf[k].rec_len = 0;
update_dir(inode_buf.i_block[j]);
inode_buf.i_size -= 16;
m = 1;
while (m < inode_buf.i_blocks) {
flag = n = 0;
load_dir(inode_buf.i_block[m]);
while (n < 32) {
if (!dir_buf[n].inode) {
flag++;
}
n++;
}
//如果删除过后,整个数据块的目录项全都为空。类似于在数组中删除某一个位置
if (flag == 32) {
remove_block(inode_buf.i_block[m]);
inode_buf.i_blocks--;
while (m < inode_buf.i_blocks) {
inode_buf.i_block[m] = inode_buf.i_block[m + 1];
++m;
}
}
}
update_inode_entry(current_dir);
return;
}
}
else {
printf("Directory to be deleted not exists!\n");
}
}
// 删除文件
void del(char tmp[100]) {
unsigned short i, j, k, m, n, flag;
m = 0;
flag = find_file(tmp, 1, &i, &j, &k);
if (flag) {
flag = 0;
// 若文件 tmp 已打开, 则将对应的 fopen_table 项清0
while (fopen_table[flag] != dir_buf[k].inode && flag < 16) {
flag++;
}
if (flag < 16) {
fopen_table[flag] = 0;
}
load_inode_entry(i); // 加载删除文件 inode
// 将现有的数据块全部释放
if (inode_buf.i_blocks <=6){
while (inode_buf.i_blocks > 0) {
remove_block(inode_buf.i_block[inode_buf.i_blocks - 1]);
inode_buf.i_blocks--;
}
}
else if (inode_buf.i_blocks <= 6 + 256){
// 删除间接索引块
load_block_to_inode_ptr(inode_buf.i_block[6]);
remove_block(inode_buf.i_block[6]);
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 8; j++) {
if (inode_ptr_buf[i].i_block[j] != 0) {
remove_block(inode_ptr_buf[i].i_block[j]);
inode_buf.i_blocks--;
}
}
}
inode_buf.i_block[6] = 0;
while (inode_buf.i_blocks > 0) {
remove_block(inode_buf.i_block[inode_buf.i_blocks - 1]);
inode_buf.i_blocks--;
}
}
else if (inode_buf.i_blocks <= 6 + 256 + 256 * 256){
// 删除间接索引块
load_block_to_inode_ptr(inode_buf.i_block[6]);
remove_block(inode_buf.i_block[6]);
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 8; j++) {
if (inode_ptr_buf[i].i_block[j] != 0) {
remove_block(inode_ptr_buf[i].i_block[j]);
inode_buf.i_blocks--;
}
}
}
inode_buf.i_block[6] = 0;
// 删除二次间接索引块
load_block_to_inode_ptr(inode_buf.i_block[7]);
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 8; j++) {
if (inode_ptr_buf[i].i_block[j] != 0) {
load_block_to_inode_ptr_level_2(inode_ptr_buf[i].i_block[j]);
for (int k = 0; k < 64; k++) {
for (int l = 0; l < 8; l++) {
if (inode_ptr_buf_level_2[k].i_block[l] != 0) {
remove_block(inode_ptr_buf_level_2[k].i_block[l]);
inode_buf.i_blocks--;
}
}
}
remove_block(inode_ptr_buf[i].i_block[j]);
}
}
}
remove_block(inode_buf.i_block[7]);
inode_buf.i_block[7] = 0;
while (inode_buf.i_blocks > 0) {
remove_block(inode_buf.i_block[inode_buf.i_blocks - 1]);
inode_buf.i_blocks--;
}
}
inode_buf.i_blocks = 0;
inode_buf.i_size = 0;
remove_inode(i);
// 更新父目录
load_inode_entry(current_dir);
load_dir(inode_buf.i_block[j]);
dir_buf[k].inode = 0; //删除inode节点
dir_buf[k].file_type = 0;
dir_buf[k].name[0] = '\0';
dir_buf[k].name_len = 0;
dir_buf[k].rec_len = 0;
update_dir(inode_buf.i_block[j]);
inode_buf.i_size -= 16;
m = 1;
//删除一项后整个数据块为空,则将该数据块删除
while (m < inode_buf.i_blocks) {
flag = n = 0;
load_dir(inode_buf.i_block[m]);
while (n < 32) {
if (!dir_buf[n].inode) {
flag++;
}
n++;
}
if (flag == 32) {
remove_block(inode_buf.i_block[m]);
inode_buf.i_blocks--;
while (m < inode_buf.i_blocks) {
inode_buf.i_block[m] = inode_buf.i_block[m + 1];
++m;
}
}
}
update_inode_entry(current_dir);
}
else {
printf("The file %s not exists!\n", tmp);
}
}
// 打开文件
void open_file(char tmp[100]) {
unsigned short flag, i, j, k;
flag = find_file(tmp, 1, &i, &j, &k);
if (flag) {
if (search_file_in_open_table(dir_buf[k].inode)) {
printf("The file %s has opened!\n", tmp);
}
else {
flag = 0;
while (fopen_table[flag]) {