-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction_ext2.c
363 lines (276 loc) · 9.05 KB
/
function_ext2.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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "ext2_fs.h"
#define BASE_OFFSET 1024 /* locates beginning of the super block (first group) */
#define FD_DEVICE "myext2image.img" /* the floppy disk device */
#define BLOCK_OFFSET(block) (BASE_OFFSET + (block-1)*block_size)
unsigned int ROOT_DIRECTORY = 2;
unsigned int CURRENT_DIRECTORY = 2;
static unsigned int block_size = 0; /* block size (to be calculated) */
static void read_dir(int, const struct ext2_inode*, const struct ext2_group_desc*);
static void read_inode(int, int, const struct ext2_group_desc*, struct ext2_inode*);
struct ext2_super_block Read_SuperBlock(int print){
struct ext2_super_block super;
int fd;
/* open floppy device */
if ((fd = open(FD_DEVICE, O_RDONLY)) < 0) {
perror(FD_DEVICE);
exit(1); /* error while opening the floppy device */
}
/* read super-block */
lseek(fd, BASE_OFFSET, SEEK_SET);
read(fd, &super, sizeof(super));
close(fd);
if (super.s_magic != EXT2_SUPER_MAGIC) {
fprintf(stderr, "Not a Ext2 filesystem\n");
exit(1);
}
block_size = 1024 << super.s_log_block_size;
if(print == 1){
printf("Reading super-block from device " FD_DEVICE ":\n"
"Inodes count : %u\n"
"Blocks count : %u\n"
"Reserved blocks count : %u\n"
"Free blocks count : %u\n"
"Free inodes count : %u\n"
"First data block : %u\n"
"Block size : %u\n"
"Blocks per group : %u\n"
"Inodes per group : %u\n"
"Creator OS : %u\n"
"First non-reserved inode: %u\n"
"Size of inode structure : %hu\n"
,
super.s_inodes_count,
super.s_blocks_count,
super.s_r_blocks_count, /* reserved blocks count */
super.s_free_blocks_count,
super.s_free_inodes_count,
super.s_first_data_block,
block_size,
super.s_blocks_per_group,
super.s_inodes_per_group,
super.s_creator_os,
super.s_first_ino, /* first non-reserved inode */
super.s_inode_size);
}
return super;
}
struct ext2_group_desc Read_GroupDesc(int print){
struct ext2_super_block super;
struct ext2_group_desc group;
int fd;
/* open floppy device */
if ((fd = open(FD_DEVICE, O_RDONLY)) < 0) {
perror(FD_DEVICE);
exit(1); /* error while opening the floppy device */
}
/* read super-block */
lseek(fd, BASE_OFFSET, SEEK_SET);
read(fd, &super, sizeof(super));
if (super.s_magic != EXT2_SUPER_MAGIC) {
fprintf(stderr, "Not a Ext2 filesystem\n");
exit(1);
}
block_size = 1024 << super.s_log_block_size;
/* read group descriptor */
lseek(fd, BASE_OFFSET + block_size, SEEK_SET);
read(fd, &group, sizeof(group));
close(fd);
if(print == 1){
printf("Reading first group-descriptor from device " FD_DEVICE ":\n"
"Blocks bitmap block: %u\n"
"Inodes bitmap block: %u\n"
"Inodes table block : %u\n"
"Free blocks count : %u\n"
"Free inodes count : %u\n"
"Directories count : %u\n"
,
group.bg_block_bitmap,
group.bg_inode_bitmap,
group.bg_inode_table,
group.bg_free_blocks_count,
group.bg_free_inodes_count,
group.bg_used_dirs_count); /* directories count */
}
return group;
}
void Read_RootInode(){
struct ext2_super_block super;
struct ext2_group_desc group;
struct ext2_inode inode;
int fd;
int i;
/* open floppy device */
if ((fd = open(FD_DEVICE, O_RDONLY)) < 0) {
perror(FD_DEVICE);
exit(1); /* error while opening the floppy device */
}
/* read super-block */
lseek(fd, BASE_OFFSET, SEEK_SET);
read(fd, &super, sizeof(super));
if (super.s_magic != EXT2_SUPER_MAGIC) {
fprintf(stderr, "Not a Ext2 filesystem\n");
exit(1);
}
block_size = 1024 << super.s_log_block_size;
/* read group descriptor */
lseek(fd, BASE_OFFSET + block_size, SEEK_SET);
read(fd, &group, sizeof(group));
/* read root inode */
read_inode(fd, 2, &group, &inode);
printf("Reading root inode\n"
"File mode: %hu\n"
"Owner UID: %hu\n"
"Size : %u bytes\n"
"Blocks : %u\n"
,
inode.i_mode,
inode.i_uid,
inode.i_size,
inode.i_blocks);
for(i=0; i<EXT2_N_BLOCKS; i++)
if (i < EXT2_NDIR_BLOCKS) /* direct blocks */
printf("Block %2u : %u\n", i, inode.i_block[i]);
else if (i == EXT2_IND_BLOCK) /* single indirect block */
printf("Single : %u\n", inode.i_block[i]);
else if (i == EXT2_DIND_BLOCK) /* double indirect block */
printf("Double : %u\n", inode.i_block[i]);
else if (i == EXT2_TIND_BLOCK) /* triple indirect block */
printf("Triple : %u\n", inode.i_block[i]);
close(fd);
}
void List_ETX(){
struct ext2_super_block super;
struct ext2_group_desc group;
struct ext2_inode inode;
int fd;
/* open floppy device */
if ((fd = open(FD_DEVICE, O_RDONLY)) < 0) {
perror(FD_DEVICE);
exit(1); /* error while opening the floppy device */
}
/* read super-block */
lseek(fd, BASE_OFFSET, SEEK_SET);
read(fd, &super, sizeof(super));
if (super.s_magic != EXT2_SUPER_MAGIC) {
fprintf(stderr, "Not a Ext2 filesystem\n");
exit(1);
}
block_size = 1024 << super.s_log_block_size;
/* read group descriptor */
lseek(fd, BASE_OFFSET + block_size, SEEK_SET);
read(fd, &group, sizeof(group));
/* show entries in the root directory */
read_inode(fd, 2, &group, &inode); /* read inode 2 (root directory) */
read_dir(fd, &inode, &group);
close(fd);
}
//Funções Auxiliares 4.c
static
void read_inode(int fd, int inode_no, const struct ext2_group_desc *group, struct ext2_inode *inode)
{
lseek(fd, BLOCK_OFFSET(group->bg_inode_table)+(inode_no-1)*sizeof(struct ext2_inode),
SEEK_SET);
read(fd, inode, sizeof(struct ext2_inode));
} /* read_inode() */
static void read_dir(int fd, const struct ext2_inode *inode, const struct ext2_group_desc *group)
{
void *block;
if (S_ISDIR(inode->i_mode)) {
struct ext2_dir_entry_2 *entry;
unsigned int size = 0;
if ((block = malloc(block_size)) == NULL) { /* allocate memory for the data block */
fprintf(stderr, "Memory error\n");
close(fd);
exit(1);
}
lseek(fd, BLOCK_OFFSET(inode->i_block[0]), SEEK_SET);
read(fd, block, block_size); /* read block from disk*/
entry = (struct ext2_dir_entry_2 *) block; /* first entry in the directory */
/* Notice that the list may be terminated with a NULL
entry (entry->inode == NULL)*/
while((size < inode->i_size) && entry->inode) {
char file_name[EXT2_NAME_LEN+1];
memcpy(file_name, entry->name, entry->name_len);
file_name[entry->name_len] = 0; /* append null character to the file name */
printf("%10u %s\n", entry->inode, file_name);
entry = (void*) entry + entry->rec_len;
size += entry->rec_len;
}
free(block);
}
} /* read_dir() */
static unsigned int Read_Inode_Number(int fd, const struct ext2_inode *inode, const struct ext2_group_desc *group, char* nome_arquivo)
{
void *block;
if (S_ISDIR(inode->i_mode)) {
struct ext2_dir_entry_2 *entry;
unsigned int size = 0;
if ((block = malloc(block_size)) == NULL) { /* allocate memory for the data block */
fprintf(stderr, "Memory error\n");
close(fd);
exit(1);
}
lseek(fd, BLOCK_OFFSET(inode->i_block[0]), SEEK_SET);
read(fd, block, block_size); /* read block from disk*/
entry = (struct ext2_dir_entry_2 *) block; /* first entry in the directory */
/* Notice that the list may be terminated with a NULL
entry (entry->inode == NULL)*/
while((size < inode->i_size) && entry->inode) {
char file_name[EXT2_NAME_LEN+1];
memcpy(file_name, entry->name, entry->name_len);
file_name[entry->name_len] = 0; /* append null character to the file name */
if(strcmp(nome_arquivo, entry->name) == 0){
return entry->inode;
}
entry = (void*) entry + entry->rec_len;
size += entry->rec_len;
}
free(block);
}
} /* retorna numero inode */
void read_arq(int fd, struct ext2_inode *inode){
int size = inode->i_size;
char *bloco = malloc(block_size);
lseek(fd, BLOCK_OFFSET(inode->i_block[0]),SEEK_SET);
read(fd, bloco, block_size);
for (int i = 0; i < size; i++)
{
printf("%c", bloco[i]);
}
}
int main(){
struct ext2_super_block super;
struct ext2_group_desc group;
struct ext2_inode inode;
int fd;
/* open floppy device */
if ((fd = open(FD_DEVICE, O_RDONLY)) < 0) {
perror(FD_DEVICE);
exit(1); /* error while opening the floppy device */
}
/* read super-block */
lseek(fd, BASE_OFFSET, SEEK_SET);
read(fd, &super, sizeof(super));
if (super.s_magic != EXT2_SUPER_MAGIC) {
fprintf(stderr, "Not a Ext2 filesystem\n");
exit(1);
}
block_size = 1024 << super.s_log_block_size;
/* read group descriptor */
lseek(fd, BASE_OFFSET + block_size, SEEK_SET);
read(fd, &group, sizeof(group));
/* show entries in the root directory */
read_inode(fd, 2, &group, &inode); /* read inode 2 (root directory) */
unsigned int i_number = Read_Inode_Number(fd, &inode, &group, "hello.txt");
read_inode(fd, i_number, &group, &inode);
read_arq(fd, &inode);
return 0;
}