-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFat.c
583 lines (530 loc) · 12.8 KB
/
Fat.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
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <libgen.h>
#ifndef CLUSTER
#define CLUSTER 4096
#define mascDeleted 0x80
#define mascDir 0x08
#endif
//Bloco com 256 linhas cada
//hexdump -C fat.part
/* tabela FAT, 1024 entradas de 4 bytess */
uint32_t fat[1024];
/* entrada de diretorio, 32 bytes cada */
typedef struct {
uint8_t filename[16];
uint8_t attributes;
uint8_t reserved[7];
uint32_t first_block; //olha na fat
uint32_t size;
}dir_entry;
/* diretorios (incluindo ROOT), 128 entradas de diretorio com 32 bytes cada = 4096 bytes */
dir_entry dir[128];
int atualDirectory=2;//rootDir
char data[CLUSTER];
int isInit = 0;
FILE *memoria_fat;
void fillBoot(){
uint8_t boot[CLUSTER];
int i;
for (i = 0; i < CLUSTER; i++)
{
boot[i] = 0xa5;
}
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, 0 , SEEK_SET);
fwrite(&boot, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void fillFat(){
int i;
fat[0] = -1;
fat[1] = -1;
fat[2] = -1;
for (i = 3; i < sizeof(fat)/sizeof(fat[0]); i++)
{
fat[i] = 0;
}
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER, SEEK_SET);
fwrite(&fat, sizeof(fat), 1, memoria_fat);
fclose(memoria_fat);
}
void fillRootDir(){
int i;
for (i = 0; i < sizeof(dir) / sizeof(dir[0]); i++)
{
dir[i].size = 0x00;
dir[i].first_block = 0x00;
int j;
for(j=0; j< sizeof(dir[i].filename)/ sizeof(dir[i].filename[0]);j++){
dir[i].filename[j]=0x0;
}
dir[i].attributes = 0x0;
for(j=0; j< sizeof(dir[i].reserved)/ sizeof(dir[i].reserved[0]);j++){
dir[i].reserved[j]=0x0;
}
}
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, 2*CLUSTER, SEEK_SET);
fwrite(&dir, sizeof(dir), 1, memoria_fat);
fclose(memoria_fat);
}
void fillDataCluster(){
int i;
uint8_t data[CLUSTER];
for (i = 0; i < CLUSTER; i++)
{
data[i] = 0x00;
}
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER*3, SEEK_SET);
for (i = 1; i <= 1021; i++)
{
fwrite(&data, CLUSTER, 1, memoria_fat);
}
fclose(memoria_fat);
}
uint8_t* loadBoot(){
uint8_t boot[CLUSTER];
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, 0 , SEEK_SET);
fread(&boot, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
return boot;
}
void loadFat(){
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER, SEEK_SET);
fread(&fat, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void loadDirectory(int fatPos){
atualDirectory = fatPos;
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER*fatPos, SEEK_SET);
fread(&dir, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void loadFile(int fatPos){
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER*fatPos, SEEK_SET);
fread(&dir, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void saveDirectory(){
//atualDirectory utlizando o valor de atualDirectory
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER*atualDirectory, SEEK_SET);
fwrite(&dir, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void saveFat(){
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER, SEEK_SET);
fwrite(&fat, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void loadBlock(int fatPos){
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER*fatPos, SEEK_SET);
fread(&data, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void saveBlock(int fatPos){
memoria_fat = fopen("fat.part","r+");
fseek(memoria_fat, CLUSTER*fatPos, SEEK_SET);
fwrite(&data, CLUSTER, 1, memoria_fat);
fclose(memoria_fat);
}
void loadRootDir(){
loadDirectory(2);
}
int isFile(dir_entry entry){
return (entry.attributes & mascDir)!=mascDir;//criar mascara para verificar se é um diretorio ou um arquivo
}
int isDeleted(dir_entry entry){
return (entry.attributes & mascDeleted)== mascDeleted;
}
int searchFreePositionInFat(){
int i;
for(i=0; i < sizeof(fat)/ sizeof(fat[0]);i++){ //percorre todos os "arquivos" do diretorio corrente
if(fat[i]==0){
return i;
}
}
return -1;
}
int searchFreePosition(){
//Procura a primeira posição livre dentro da pasta corrente.
int i;
for(i=0; i < sizeof(dir)/ sizeof(dir[0]);i++){ //percorre todos os "arquivos" do diretorio corrente
if(dir[i].filename[0]==0 || isDeleted(dir[i])){
return i;
}
}
return -1;
}
int lookupFile(char *name){
int i;
for(i=0; i < sizeof(dir)/ sizeof(dir[0]);i++){ //percorre todos os "arquivos" do diretorio corrente
if(strcmp(dir[i].filename,name)==0 && !isDeleted(dir[i])){//verifica se é este a pasta solicitada.
return i;
}
}
return -1;
}
int searchDirectory(char *directory){
// Search in current directory (one directory for time) if exist directory set in global directory and return 1; else return 0;
int dirPos = lookupFile(directory);
if(dirPos != -1){
if(isFile(dir[dirPos]) == 0 && !isDeleted(dir[dirPos])){
loadDirectory(dir[dirPos].first_block);
return 1;
}
}
return 0;
}
int setDirectory(char *path){
loadRootDir();
int i=0;
int initDir = 0;
char *token;
path = strdup(path);
token = strtok(path, "/"); // ROOT
//token = strtok(NULL,"/"); //PRIMEIRA PASTA
while(token != NULL){
if(searchDirectory(token) == 0){
printf("diretorio %s não encontrado\n",token);
return 0;
}
token = strtok(NULL,"/");
}
return 1;
}
void init(){
memoria_fat = fopen("fat.part","w+"); //cria arquivo
fclose(memoria_fat);
fillBoot();
fillFat();
fillRootDir();
fillDataCluster();
isInit = 1;
};
void load(){
FILE* fptr = fopen("fat.part", "r");
if (fptr == NULL)
{
printf("Arquivo fat não encontrado\n");
return;
}
loadBoot();
loadFat();
loadRootDir();
isInit = 1;
}
void makeDir(char *path, char *directory){
if(directory[0]== '/'){
printf("informe o diretorio a ser criado\n");
return;
}
loadFat();
//carrega diretorio onde sera criado o diretorio e verifica se este existe
if(setDirectory(path) == 0 ){
return;
}
if(lookupFile(directory) != -1){
printf("Arquivo %s ja existente no diretorio %s\n",directory,path);
return;
}else{
int dirPos = searchFreePosition(); //posição dentro do diretorio local aonde sera salvo o nosso querido diretorio
int fatPos = searchFreePositionInFat(); //posição dentro da fat aonde sera salvo o nosso querido diretorio
if(fatPos==-1){
printf("Memoria cheia\n");
return;
}else if(dirPos==-1){
printf("Diretorio cheio\n");
return;
}
dir_entry entry;
entry.size = 0x00;
entry.first_block = fatPos;
int j;
for(j=0; j< sizeof(entry.filename)/ sizeof(entry.filename[0]);j++){
entry.filename[j]=0x0;
}
strcpy(entry.filename,directory);
entry.attributes = 0x08;
for(j=0; j< sizeof(entry.reserved)/ sizeof(entry.reserved[0]);j++){
entry.reserved[j]=0x0;
}
//setar reservados
dir[dirPos] = entry;
fat[fatPos] = -1;
saveFat();
saveDirectory();
}
}
void makeFile(char *path, char *file){
loadFat();
//carrega diretorio onde sera criado o diretorio e verifica se este existe
if(setDirectory(path) == 0 ){
return;
}
if(lookupFile(file) != -1){
printf("Arquivo %s ja existente no diretorio %s\n",file,path);
return;
}else{
int dirPos = searchFreePosition(); //posição dentro do diretorio local aonde sera salvo o nosso querido diretorio
int fatPos = searchFreePositionInFat(); //posição dentro da fat aonde sera salvo o nosso querido diretorio
if(fatPos==-1){
printf("Memoria cheia\n");
return;
}else if(dirPos==-1){
printf("Diretorio cheio\n");
return;
}
dir_entry entry;
entry.size = 0x00;
entry.first_block = fatPos;
int j;
for(j=0; j< sizeof(entry.filename)/ sizeof(entry.filename[0]);j++){
entry.filename[j]=0x0;
}
strcpy(entry.filename,file);
entry.attributes = 0x0;
for(j=0; j< sizeof(entry.reserved)/ sizeof(entry.reserved[0]);j++){
entry.reserved[j]=0x0;
}
//setar reservados
dir[dirPos] = entry;
fat[fatPos] = -1;
saveFat();
saveDirectory();
}
}
void removeFile(char *path, char *file){
loadFat();
if(setDirectory(path) == 0 ){
return;
}
int dirPos = lookupFile(file);
if(dirPos == -1){
printf("Arquivo %s não existente no diretorio %s\n",file,path);
return;
}else if(!isFile(dir[dirPos])){
printf("%s é um diretorio e não será removido\n",file);
return;
}
int fatPos = dir[dirPos].first_block;
while(fat[fatPos] != -1){
int aux = fat[fatPos];
fat[fatPos] = 0;
fatPos= aux;
}
fat[fatPos] =0;
dir[dirPos].attributes |= mascDeleted;
saveFat();
saveDirectory();
}
void rmDir(char *path, char *directory){
loadFat();
if(setDirectory(path) == 0 ){
return;
}
int dirPos = lookupFile(directory);
if(dirPos == -1 || isFile(dir[dirPos])){
printf("%s não existente no diretorio %s\n",directory,path);
return;
}
int i;
char *pathv1= strcat(strdup("/"),directory);
char *pathv2= path[strlen(path)-1] == '/' ? pathv1 : strdup(strcat(strdup(path),pathv1));
setDirectory(pathv2); //Seta para pasta que será removida(para buscar as subpastas/arquivos)
for (i = 0; i <sizeof(dir)/ sizeof(dir[0]) ; i++)
{
if(!isDeleted(dir[i]) && dir[i].filename[0] !=0){
if (isFile(dir[i]))
{
removeFile(pathv2,dir[i].filename);
}
else{
rmDir(pathv2,dir[i].filename);
}
}
}
setDirectory(path);
dir[dirPos].attributes |= mascDeleted;
fat[dir[dirPos].first_block] = 0;
saveFat();
saveDirectory();
}
void ls(char *path){
if( setDirectory(path) == 0){
return;
}
int i;
for (i = 0; i <sizeof(dir)/ sizeof(dir[0]) ; i++)
{
if(!isDeleted(dir[i]) && dir[i].filename[0]!=0 ){
if(isFile(dir[i]))
printf("Arquivo: %s -- Size:%d \n",dir[i].filename,dir[i].size);
else
printf("Diretorio: %s/ -- Size:%d \n",dir[i].filename,dir[i].size);
}
}
}
void cleanData(){
int i;
for(i=0;i<CLUSTER;i++){
data[i]=0;
}
}
void write(char *path, char *file, char *text){
if( setDirectory(path) == 0){
return;
}
int filePos = lookupFile(file);
if (filePos==-1)
{
printf("Arquivo %s não encontrado no diretorio %s\n",file,path);
return;
}else{
//verify if the file is deleted or a folder
if(!isFile(dir[filePos]) || isDeleted(dir[filePos])){
printf("Arquivo %s não encontrado no diretorio %s\n",file,path);
return ;
}
loadFat();
int fatPos = dir[filePos].first_block;
while(fat[fatPos]!=-1){
fatPos = fat[fatPos];
}
int total = (int)strlen(text);
int j=dir[filePos].size % CLUSTER;
int i=0;
loadBlock(fatPos);
while(i<total){
while(j < CLUSTER && i<total){
data[j] = text[i];
j++;
i++;
}
saveBlock(fatPos);
if(i >= total){
break;
}
int aux = searchFreePositionInFat();
fat[fatPos] = aux;
fatPos = aux;
if(fatPos==-1){
printf("Não há espaço suficiente na memoria");
return;
}
fat[fatPos] = -1;
j=0;
cleanData();
}
dir[filePos].size += total;
saveFat();
saveDirectory();
}
}
void cat(char *path, char *file){
loadFat();
setDirectory(path);
int filePos = lookupFile(file);
if (filePos==-1)
{
printf("Arquivo não encontrado no diretorio%s\n",path);
return;
}else{
//verify if the file is deleted or a folder
if(!isFile(dir[filePos]) || isDeleted(dir[filePos])){
printf("Arquivo não encontrado no diretorio%s\n",path);
return ;
}
int i;
int fatPos = dir[filePos].first_block;
int size = dir[filePos].size;
int j = 0;
while(fat[fatPos]!=-1){
loadBlock(fatPos);
for(i=0;i<CLUSTER;i++){
printf("%c",data[i] );
j++;
}
fatPos = fat[fatPos];
}
loadBlock(fatPos);
for(i=0;i<CLUSTER && j<size;i++){
printf("%c",data[i] );
j++;
}
printf("\n");
}
}
void shell(){
while(1){
char cmd[1024];
printf("Digite o comando:");
fgets(cmd,1024,stdin);
if(strlen(cmd)<=1){
printf("Comando não informado\n");
continue;
}
cmd[strlen(cmd)-1] = '\0';
fseek(stdin,0,SEEK_SET);
char *opcao = strtok(cmd, " ");
if(strcmp("init",opcao) == 0){
init();
}else if(strcmp("load",opcao) == 0){
load();
}else if(strcmp("exit",opcao)== 0){
printf("volte sempre\n");
return;
}else if(isInit==0){
printf("Inicialize/Carregue a fat para utilizar este comando\n");
continue;
}else if(strcmp("ls",opcao)== 0){
char *path = strtok(NULL, " ");
if(path == NULL){
printf("Caminho não informado\n");
continue;
}
ls(path);
}else{
char *pathAndName = strtok(NULL, " ");
if(pathAndName == NULL){
printf("caminho não informado\n");
continue;
}
char *name = strdup(basename(pathAndName));
char *path = strdup(dirname(pathAndName));
if(strcmp("mkdir",opcao)== 0){
makeDir(path,name);
}else if(strcmp("rmdir",opcao)== 0){
rmDir(path,name);
}else if(strcmp("create",opcao)== 0){
makeFile(path,name);
}else if(strcmp("rm",opcao)== 0){
removeFile(path,name);
}else if(strcmp("cat",opcao)== 0){
cat(path,name);
}else if(strcmp("write",opcao)== 0){
char *text = strtok(NULL, " ");
if(text == NULL){
printf("dados a serem gravados não informados\n");
continue;
}
write(path,name,text);
}
}
}
}
int main(int argc, char const *argv[])
{
shell();
return 0;
}