-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheck.c
286 lines (245 loc) · 8.17 KB
/
check.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
//
// ext2all.c
//
// List entries in the all directories of the floppy disk.
// Assumes no directory is more than one block in size.
//
// Nick Howe
// Emanuele Altieri
//
///////////////////////////////////////////////////////////////////////////////
//
// HEADER FILES
//
#define __LINUX_PERCPU_H
// avoid including files that generate errors
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "ext2.h"
///////////////////////////////////////////////////////////////////////////////
//
// DEFINITIONS AND MACROS
//
#define BASE_OFFSET 1024 // beginning of the super block (first group)
#define USB_DEVICE "/dev/sda1" // the memory stick device
#define BLOCK_OFFSET(block) (BASE_OFFSET+(block-1)*block_size)
///////////////////////////////////////////////////////////////////////////////
//
// GLOBALS
//
static unsigned int block_size = 0; // to be calculated
static unsigned int ptrs_per_block = 0; // to be calculated
static unsigned int num_inodes_per_group = 0; // to be read in
static unsigned int num_inodes = 0; // to be read in
///////////////////////////////////////////////////////////////////////////////
//
// FORWARD DECLARATIONS
//
static void read_block(int, int, void*);
static void read_inode(int, const struct ext2_group_desc*, int,
struct ext2_inode*);
static void *read_file(int , const struct ext2_group_desc*,
const struct ext2_inode*);
static void print_dir(int, const struct ext2_group_desc*,
const struct ext2_inode*);
///////////////////////////////////////////////////////////////////////////////
//
// main() opens the device and initializes some of the data structures.
//
int main(void) {
struct ext2_super_block super;
struct ext2_group_desc *group;
struct ext2_inode inode;
int i;
int fd;
int num_groups;
// open usb device
if ((fd = open(USB_DEVICE, O_RDONLY)) < 0) {
perror(USB_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 an Ext2 filesystem\n");
exit(1);
}
block_size = 1024 << super.s_log_block_size;
ptrs_per_block = (block_size/sizeof(__u32));
num_inodes_per_group = super.s_inodes_per_group;
// create and read in group descriptors array
num_groups = (super.s_blocks_count+super.s_blocks_per_group-1)
/super.s_blocks_per_group;
if ((group = (struct ext2_group_desc*)
malloc(num_groups*sizeof(struct ext2_group_desc))) == NULL) {
fprintf(stderr, "Memory error\n");
close(fd);
exit(1);
}
for (i = 0; i < num_groups; i++) {
lseek(fd,BASE_OFFSET+block_size+i*sizeof(struct ext2_group_desc),SEEK_SET);
read(fd, group+i, sizeof(struct ext2_group_desc));
}
// show entries in the root directory
read_inode(fd, group, 2, &inode); // read inode 2 (root directory)
printf(" inode listing\n---------- ----------\n");
print_dir(fd, group, &inode);
free(group);
close(fd);
exit(0);
} // end of main()
///////////////////////////////////////////////////////////////////////////////
//
// read_block() reads the specified block of data
//
static
void read_block(int fd, int block_no, void *buffer)
{
lseek(fd, BLOCK_OFFSET(block_no),SEEK_SET);
read(fd, buffer, block_size);
} // end of read_block()
///////////////////////////////////////////////////////////////////////////////
//
// read_inode() reads in an inode data structure
//
// R/O: fd, group,inode_no
// W/O: inode
static
void read_inode(int fd, const struct ext2_group_desc *group, int inode_no,
struct ext2_inode *inode)
{
int group_no = inode_no/num_inodes_per_group;
//printf("group #%d; table %d\n",group_no,group[group_no].bg_inode_table);
lseek(fd, BLOCK_OFFSET(group[group_no].bg_inode_table)+(inode_no-group_no*num_inodes_per_group-1)*sizeof(struct ext2_inode),SEEK_SET);
read(fd, inode, sizeof(struct ext2_inode));
} // end of read_inode()
///////////////////////////////////////////////////////////////////////////////
//
// read_file() reads in a file, allocating buffer space as necessary
// (Note that this may not be feasible if the file is too big to fit in
// main memory.)
//
// R/O: fd, group, inode
static
void *read_file(int fd, const struct ext2_group_desc *group,
const struct ext2_inode *inode)
{
void *buffer;
__u32 *si_block, *di_block, *ti_block;
int num_read = 0;
int si_count, di_count, ti_count;
// allocate space for file
if ((buffer = malloc(block_size*inode->i_blocks)) == NULL) {
fprintf(stderr, "Memory error\n");
close(fd);
exit(1);
}
// read direct blocks
while ((num_read < inode->i_blocks)&&(num_read < EXT2_NDIR_BLOCKS)) {
lseek(fd, BLOCK_OFFSET(inode->i_block[num_read]),SEEK_SET);
read(fd, buffer+num_read*block_size, block_size);
num_read++;
}
// read indirect blocks, if necessary
if (num_read < inode->i_blocks) {
// allocate space for indirect block pointers
if ((si_block = malloc(3*block_size)) == NULL) {
fprintf(stderr, "Memory error\n");
close(fd);
exit(1);
}
di_block = si_block+ptrs_per_block;
ti_block = di_block+ptrs_per_block;
// single indirect
lseek(fd, BLOCK_OFFSET(inode->i_block[EXT2_IND_BLOCK]),SEEK_SET);
read(fd, si_block, block_size);
si_count = 0;
while ((num_read < inode->i_blocks)&&(si_count < ptrs_per_block)) {
lseek(fd, BLOCK_OFFSET(si_block[si_count]),SEEK_SET);
read(fd, buffer+num_read*block_size, block_size);
num_read++;
si_count++;
}
// double indirect
if (num_read < inode->i_blocks) {
lseek(fd, BLOCK_OFFSET(inode->i_block[EXT2_DIND_BLOCK]),SEEK_SET);
read(fd, di_block, block_size);
di_count = 0;
while ((num_read < inode->i_blocks)&&(di_count < ptrs_per_block)) {
lseek(fd, BLOCK_OFFSET(di_block[di_count]),SEEK_SET);
read(fd, si_block, block_size);
si_count = 0;
while ((num_read < inode->i_blocks)&&(si_count < ptrs_per_block)) {
lseek(fd, BLOCK_OFFSET(si_block[si_count]),SEEK_SET);
read(fd, buffer+num_read*block_size, block_size);
num_read++;
si_count++;
}
di_count++;
}
}
// triple indirect
if (num_read < inode->i_blocks) {
lseek(fd, BLOCK_OFFSET(inode->i_block[EXT2_TIND_BLOCK]),SEEK_SET);
read(fd, ti_block, block_size);
ti_count = 0;
while ((num_read < inode->i_blocks)&&(ti_count < ptrs_per_block)) {
lseek(fd,BLOCK_OFFSET(inode->i_block[EXT2_DIND_BLOCK]),SEEK_SET);
read(fd, di_block, block_size);
di_count = 0;
while ((num_read < inode->i_blocks)&&(di_count < ptrs_per_block)) {
lseek(fd, BLOCK_OFFSET(di_block[di_count]),SEEK_SET);
read(fd, si_block, block_size);
si_count = 0;
while ((num_read < inode->i_blocks)&&(si_count < ptrs_per_block)) {
lseek(fd, BLOCK_OFFSET(si_block[si_count]),SEEK_SET);
read(fd, buffer+num_read*block_size, block_size);
num_read++;
si_count++;
}
di_count++;
}
ti_count++;
}
}
free(si_block);
}
return buffer;
} // end of read_file()
///////////////////////////////////////////////////////////////////////////////
//
// print_dir() reads in a directory structure
//
static void print_dir(int fd, const struct ext2_group_desc *group,
const struct ext2_inode *inode)
{
void *buffer;
if (S_ISDIR(inode->i_mode)) {
struct ext2_dir_entry_2 *entry;
unsigned int size = 0;
// read in file (directory) data
buffer = read_file(fd, group, inode);
// print out directory
entry = (struct ext2_dir_entry_2 *) buffer; // first entry
while(size < inode->i_size) {
if (entry->inode > 0) {
// print out information on this entry
char file_name[EXT2_NAME_LEN+1];
memcpy(file_name, entry->name, entry->name_len);
file_name[entry->name_len] = 0; // append null to the file name
printf("%10u %s\n", entry->inode, file_name);
}
// move on to next entry in this directory
size += entry->rec_len;
entry = (void*) entry + entry->rec_len;
}
free(buffer);
}
} // print_dir()
///////////////////////////////////////////////////////////////////////////////