-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk.c
executable file
·96 lines (87 loc) · 2.35 KB
/
disk.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
/*
* 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 <sys/stat.h>
#include <unistd.h>
#include "disk.h"
#define PAGESIZE 4096
int device_size;
FILE *stream;
int bl_init(char *file, int size) {
struct stat sb;
stream = NULL;
if (stat(file, &sb) == 0) {
if (S_ISREG(sb.st_mode)) {
device_size = sb.st_size;
stream = fopen(file, "r+");
}
if (stream == NULL) {
perror("Abrindo imagem pré-existente");
return 0;
}
} else {
device_size = size * SECTORSIZE;
if (device_size < 1) {
printf("Imagem não pode ter tamanho zero\n");
return 0;
}
stream = fopen(file, "w+");
if (stream == NULL) {
perror("Criando nova imagem");
return 0;
}
if (truncate(file, device_size) == -1) {
perror("Ajustando tamanho da imagem");
return 0;
}
}
return 1;
}
int bl_size() {
return device_size / SECTORSIZE;
}
int bl_write(int sector, char *buffer) {
if (fseek(stream, sector * SECTORSIZE, SEEK_SET) == -1) {
perror("Erro posicionando setor para escrita");
return 0;
}
if (fwrite(buffer, sizeof(char), SECTORSIZE, stream) != SECTORSIZE) {
perror("Erro escrevendo setor");
return 0;
}
if (fflush(stream) != 0) {
perror("Erro gravando setor no disco");
return 0;
}
return 1;
}
int bl_read(int sector, char *buffer){
if (fseek(stream, sector * SECTORSIZE, SEEK_SET) == -1) {
perror("Erro posicionando setor para leitura");
return 0;
}
if (fread(buffer, sizeof(char), SECTORSIZE, stream) != SECTORSIZE) {
perror("Erro lendo setor");
return 0;
}
return 1;
}