-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfs.c
261 lines (217 loc) · 5.76 KB
/
fs.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
/*
* RSFS - Really Simple File System
*
* Copyright © 2010 Gustavo Maciel Dias Vieira
* Copyright © 2010 Rodrigo Rocco Barbieri
*
* This file is part of RSFS.
*
* RSFS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <string.h>
#include "disk.h"
#include "fs.h"
#define CLUSTERSIZE 4096
unsigned short fat[65536];
typedef struct {
char used;
char name[25];
unsigned short first_block;
int size;
} dir_entry;
dir_entry dir[128];
int fs_init() {
int sector, agrupamento, buffer_offset;
char *buffer = (char *) malloc (sizeof(fat));
int isFAT = VERDADEIRO, isDir = VERDADEIRO;
int i;
//Le a tabela FAT e o diretorio do disco em um buffer
buffer_offset = 0;
for(agrupamento = 0; agrupamento < 33; agrupamento++)
{
sector = 0;
while(sector < 8)
{
bl_read(agrupamento * 8 + sector, &buffer[buffer_offset]);
sector++;
buffer_offset = buffer_offset + 512;
}
}
//Vê se as 32 posicoes da tabela FAT referenciada pelo buffer tem o codigo FAT
buffer_offset = 0;
for(agrupamento = 0; agrupamento < 32; agrupamento++)
{
if(buffer[buffer_offset] != FAT)
{
isFAT = FALSO;
break;
}
else
buffer_offset = buffer_offset + 2;
}
//Vê se a 33a posicao da tabela FAT referenciada pelo buffer tem o codigo DIRETORIO
if(buffer[buffer_offset] != DIRETORIO)
{
isDir = FALSO;
}
if(!isFAT || !isDir)
{
fs_format();
}
else
{
// Carrega a tabela FAT e o diretorio
// FAT já está em buffer
buffer_offset = 0;
for(i = 0; i < 65536; i++)
{
fat[i] = buffer[buffer_offset];
buffer_offset = buffer_offset + 2;
}
// buffer pega o diretorio que está no disco no agrupamento 33
buffer = (char *) malloc (sizeof(dir));
buffer_offset = 0;
sector = 0;
while(sector < 8)
{
bl_read(32 * 8 + sector, &buffer[buffer_offset]);
sector++;
}
// copia buffer para o vetor de diretorios
memcpy(&dir, buffer, 128);
}
return 1;
}
int fs_format() {
int i, sector, agrupamento, buffer_offset;
char *buffer;
//inicializa a tabela FAT
for(i = 0; i < 32; i++)
fat[i] = FAT;
for(i = 32; i < 33; i++)
fat[i] = DIRETORIO;
for(i = 33; i < 65536; i++)
fat[i] = LIVRE;
// Escreve a FAT no disco
buffer = (char *) fat;
buffer_offset = 0;
for(agrupamento = 0; agrupamento < 32; agrupamento++)
{
sector = 0;
while(sector < 8)
{
bl_write(agrupamento * 8 + sector, &buffer[buffer_offset]);
sector++;
buffer_offset = buffer_offset + 512;
}
}
//Zera o diretorio
for(i = 0; i < 128; i++)
{
dir[i].used = FALSO;
}
//Escreve o diretorio no disco
buffer = (char *) dir;
buffer_offset = 0;
agrupamento = 32;
sector = 0;
while(sector < 8)
{
bl_write(agrupamento * 8 + sector, &buffer[buffer_offset]);
sector++;
buffer_offset = buffer_offset + 512;
}
return 1;
}
int fs_free() {
int livres = 0;
int i;
for(i = 33; i < 65536; i++)
{
if(fat[i] == LIVRE)
livres++;
}
return livres * CLUSTERSIZE;
}
int fs_list(char *buffer, int size) {
printf("Função não implementada: fs_list\n");
return 0;
}
int fs_create(char* file_name) {
int i, j;
int fat_livre = FALSO, dir_livre = FALSO;
for(j = 0; j < 128; j++)
{
if(strcmp(dir[j].name, file_name) == 0)
{
printf("Arquivo com mesmo nome já existe.\n");
return 0;
}
}
// Faz varredura na FAT em busca de uma posicao marcada como LIVRE
for(i = 33; i < 65536; i++)
{
if(fat[i] == LIVRE)
{
fat_livre = VERDADEIRO;
break;
}
}
if(fat_livre)
{
for(j = 0; j < 128; j++)
{
if(dir[j].used == FALSO)
{
dir_livre = VERDADEIRO;
// Atualiza a FAT
fat[i] = ULTIMO;
// Atualiza a entrada no vetor de arquivos
dir[j].used = VERDADEIRO;
dir[j].first_block = i;
dir[j].size = 0;
strcpy(dir[j].name, file_name);
return 1;
}
}
if(!dir_livre)
printf("Disco cheio!");
}
else
{
printf("Disco cheio!");
}
return 0;
}
int fs_remove(char *file_name) {
printf("Função não implementada: fs_remove\n");
return 0;
}
int fs_open(char *file_name, int mode) {
printf("Função não implementada: fs_open\n");
return -1;
}
int fs_close(int file) {
printf("Função não implementada: fs_close\n");
return 0;
}
int fs_write(char *buffer, int size, int file) {
printf("Função não implementada: fs_write\n");
return -1;
}
int fs_read(char *buffer, int size, int file) {
printf("Função não implementada: fs_read\n");
return -1;
}