forked from ProjectZeroSlackr/ipodloader2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vfs.c
308 lines (255 loc) · 8.62 KB
/
vfs.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
#include "bootloader.h"
#include "ata2.h"
#include "fat32.h"
#include "ext2.h"
#include "fwfs.h"
#include "vfs.h"
#include "minilibc.h"
#include "macpartitions.h"
#define MAX_FILES 10
#define MAX_FS 4
static filesystem *fs[MAX_FS]; /* Hardlimit of 4 registered filesystems */
static uint32 fsCnt;
typedef struct {
uint32 fsIdx;
int fd;
} vfs_handle_t;
vfs_handle_t vfs_handle[MAX_FILES]; /* Hardlimit of 10 open files */
uint32 maxHandle;
int vfs_find_part(vfs_type type) {
int i;
for(i = 0; i < MAX_FS; i++){
if(fs[i] && fs[i]->type == type){
return (i);
}
}
return (-1);
}
int vfs_open(char *fname) {
int8 part;
int i;
part = -1;
/* FAT32: [dos], [fat], [win], [vfat], [fat32]
EXT2: [ext], [ext2], [linux]
HFS+: [hfs], [hfs+], [linux] */
if( fname[0] == '[' ){
if( !mlc_strncmp(fname,"[dos]",5) || !mlc_strncmp(fname,"[fat]",5) ||
!mlc_strncmp(fname,"[win]",5) || !mlc_strncmp(fname,"[vfat]",6) ||
!mlc_strncmp(fname,"[fat32]",7) ){
part = vfs_find_part(FAT32);
}
if( !mlc_strncmp(fname,"[ext]",5) || !mlc_strncmp(fname,"[ext2]",6) ||
!mlc_strncmp(fname,"[linux]",7) ){
part = vfs_find_part(EXT2);
}
if( !mlc_strncmp(fname,"[hfs]",5) || !mlc_strncmp(fname,"[hfs+]",6) ||
(part == -1 && !mlc_strncmp(fname,"[linux]",7)) ){
part = vfs_find_part(HFSPLUS);
}
/* [xxx]/ == position of ] + 2 chars */
fname = mlc_strchr(fname, ']') + 2;
}
else if( !mlc_strncmp(fname,"(hd0,",5) ){
part = fname[5] - '0'; /* atoi, the old-fashioned way */
/* (hd0,0)/ == 8 chars */
fname = fname + 8;
}
if( part == -1 ) return(-1);
if (fs[part]) {
i = 0;
while( (vfs_handle[i].fd != -1) && (i<MAX_FILES) ) i++;
vfs_handle[i].fsIdx = part;
vfs_handle[i].fd = fs[part]->open(fs[part]->fsdata,fname);
if( vfs_handle[i].fd != -1 )
return(i);
}
return(-1);
}
void vfs_close(int fd) {
if(vfs_handle[fd].fd != -1) {
uint32 part = vfs_handle[fd].fsIdx;
if (fs[part]->close) {
fs[part]->close( fs[part]->fsdata, vfs_handle[fd].fd );
}
vfs_handle[fd].fd = -1;
}
}
int vfs_seek(int fd,long offset,int whence) {
uint32 part;
if(vfs_handle[fd].fd == -1) return(-1);
part = vfs_handle[fd].fsIdx;
return( fs[part]->seek( fs[part]->fsdata,vfs_handle[fd].fd,offset,whence) );
}
long vfs_tell(int fd) {
uint32 part;
if(vfs_handle[fd].fd == -1) return(-1);
part = vfs_handle[fd].fsIdx;
return( fs[part]->tell( fs[part]->fsdata,vfs_handle[fd].fd) );
}
int vfs_getinfo(int fd, long *out_chksum) {
uint32 part;
if(vfs_handle[fd].fd == -1) return(-1);
part = vfs_handle[fd].fsIdx;
if (!fs[part]->getinfo) return -1;
return fs[part]->getinfo( fs[part]->fsdata, vfs_handle[fd].fd, out_chksum );
}
size_t vfs_read(void *ptr,size_t size, size_t nmemb,int fd) {
uint32 part;
if(vfs_handle[fd].fd == -1) return(-1);
part = vfs_handle[fd].fsIdx;
return( fs[part]->read( fs[part]->fsdata,ptr,size,nmemb,vfs_handle[fd].fd) );
}
void vfs_registerfs( filesystem *newfs ) {
fs[newfs->partnum] = newfs;
}
void vfs_init( void) {
uint32 i;
fsCnt = 0;
mbr_t *iPodMBR;
iPodMBR = mlc_malloc( sizeof(mbr_t));
fs_header_t *fs_header;
fs_header = mlc_malloc( sizeof(fs_header_t));
ata_readblocks(iPodMBR, 0, 1);
/*
* When plugged in via USB or Firewire, the iPod 5.5G presents the drive as having 2048 byte sectors to the host.
* This can cause the host to format the drive with the assumption that the sector size is 2048 bytes, when it's really 512 bytes.
*
* This doesn't affect FAT32, since FAT always uses fixed size 512 byte blocks.
*
* It *does* affect the MBR, which specifies partition offsets in sectors.
* Changing the sector size invalidates the MBR parition table, and we can't recover the original sector size used.
*
* So, if we assume the MBR was created with 512 byte sectors, it might actually be 2048 bytes and we'll find nothing at the offsets.
* We don't really know what sector size was used without simply peeking for valid partitions at the locations specified.
*/
for(i=0; i < MAX_FILES; i++) vfs_handle[i].fd = -1;
/* The number of valid partitions that were found */
uint8 foundpartcount = 0;
if( iPodMBR->MBR_signature == 0xAA55 ) {
/* this is a WinPod with a DOS/ext2 partition scheme */
mlc_printf("Detected WinPod MBR\n");
/* Note( ryan.crosby@live.com ):
* Apparently this is some hint of sector size, stored in the MBR.
* I'm not sure what it's supposed to be, and can't find anything about it in any official specs.
*/
uint32 logBlkMultiplier = (iPodMBR->code[12] | iPodMBR->code[11]) / 2; // we usually find 02 00, 00 02 or 00 08 here
if((logBlkMultiplier < 1) | (logBlkMultiplier > 4)) logBlkMultiplier = 1;
/* Check each primary partition for a supported FS */
for(i=0; i < MAX_FS; i++) {
uint32 offset;
uint8 type;
uint8 validoffset;
type = iPodMBR->partition_table[i].type;
offset = iPodMBR->partition_table[i].lba_offset;
validoffset = 0;
switch(type) {
case 0x00:
if(i == 0) {
/* Technically this is an "Empty partition entry", but Apple uses it for the proprietary firmware partition at partition 0 */
ata_readblocks(fs_header, offset, 1);
if( mlc_strncmp((void*)(fs_header->fwfsmagic),"]ih[", 4) ) {
offset = offset;
validoffset = 1;
}
else if(logBlkMultiplier > 1) {
ata_readblocks(fs_header, offset*logBlkMultiplier, 1);
if( mlc_strncmp((void*)(fs_header->fwfsmagic),"]ih[", 4) )
{
offset = offset * logBlkMultiplier;
validoffset = 1;
}
}
if(validoffset) {
foundpartcount++;
mlc_printf("[%d]: iPod FW\n", i);
fwfs_newfs(i, offset);
}
else {
mlc_printf("[%d]: Bad iPod FW entry\n", i);
mlc_show_critical_error();
}
}
else {
mlc_printf("[%d]: Empty\n", i);
}
break;
case 0x83:
/* EXT2 partition */
ata_readblocks(fs_header, offset + 2, 1);
if(fs_header->ext2magic == 0xEF53) {
offset = offset;
validoffset = 1;
}
else if(logBlkMultiplier > 1) {
ata_readblocks(fs_header, offset*logBlkMultiplier + 2, 1);
if(fs_header->ext2magic == 0xEF53) {
offset = offset*logBlkMultiplier;
validoffset = 1;
}
}
if(validoffset) {
foundpartcount++;
mlc_printf("[%d]: EXT2\n", i);
ext2_newfs(i, offset);
}
else {
mlc_printf("[%d]: Bad EXT2 entry\n", i);
mlc_show_critical_error();
}
break;
case 0xB:
/* FAT partition */
ata_readblocks(fs_header, offset, 1);
if(fs_header->fat32magic == 0xAA55) {
offset = offset;
validoffset = 1;
}
else if(logBlkMultiplier > 1) {
ata_readblocks(fs_header, offset*logBlkMultiplier, 1);
if(fs_header->fat32magic == 0xAA55) {
offset = offset*logBlkMultiplier;
validoffset = 1;
}
}
if(validoffset) {
foundpartcount++;
mlc_printf("[%d]: FAT\n", i);
fat32_newfs(i, offset);
}
else {
mlc_printf("[%d]: Bad FAT entry\n", i);
mlc_show_critical_error();
}
break;
default:
mlc_printf("[%d]: Unknown 0x%X2\n", i, type);
break;
}
}
if(foundpartcount > 0) {
mlc_printf("Found %d valid partitions\n", foundpartcount);
}
else {
/* No valid partition was found */
mlc_printf("No valid paritions found!\n");
mlc_show_critical_error();
}
}
/* TODO: Why is this ER and not PM (for Apple Parition Map)? What is this? */
else if( iPodMBR->code[0] == 'E' && iPodMBR->code[1] == 'R') {
/* this is a MacPod with a HFS partition scheme */
mlc_printf("Detected MacPod partition\n");
check_mac_partitions ((uint8 *)iPodMBR);
}
else {
mlc_printf("Invalid MBR\n\n");
mlc_printf("MBR Sig: %04hhX\n", iPodMBR->MBR_signature);
mlc_printf("Disk Sig: %08hhX\n", iPodMBR->disk_signature);
mlc_printf("Disk start:\n");
mlc_hexdump (iPodMBR, 32);
mlc_show_critical_error();
}
#if DEBUG
mlc_show_critical_error();
#endif
}