2009-12-19 15:05:31 +01:00
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "fatmounter.h"
|
|
|
|
#include "libntfs/ntfs.h"
|
|
|
|
#include "libwbfs/libwbfs.h"
|
|
|
|
#include "wbfs.h"
|
2010-02-22 22:29:47 +01:00
|
|
|
#include "usbstorage2.h"
|
2009-12-19 15:05:31 +01:00
|
|
|
#include "frag.h"
|
|
|
|
#include "utils.h"
|
2010-04-10 11:15:22 +02:00
|
|
|
#include "sys.h"
|
|
|
|
#include "wdvd.h"
|
|
|
|
#include "gecko.h"
|
2009-12-19 15:05:31 +01:00
|
|
|
|
|
|
|
FragList *frag_list = NULL;
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
void frag_init(FragList *ff, int maxnum)
|
|
|
|
{
|
|
|
|
memset(ff, 0, sizeof(Fragment) * (maxnum+1));
|
|
|
|
ff->maxnum = maxnum;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
int frag_append(FragList *ff, u32 offset, u32 sector, u32 count)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
if (count) {
|
|
|
|
n = ff->num - 1;
|
|
|
|
if (ff->num > 0
|
|
|
|
&& ff->frag[n].offset + ff->frag[n].count == offset
|
|
|
|
&& ff->frag[n].sector + ff->frag[n].count == sector)
|
|
|
|
{
|
|
|
|
// merge
|
|
|
|
ff->frag[n].count += count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// add
|
|
|
|
if (ff->num >= ff->maxnum) {
|
|
|
|
// too many fragments
|
|
|
|
return -500;
|
|
|
|
}
|
|
|
|
n = ff->num;
|
|
|
|
ff->frag[n].offset = offset;
|
|
|
|
ff->frag[n].sector = sector;
|
|
|
|
ff->frag[n].count = count;
|
|
|
|
ff->num++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ff->size = offset + count;
|
|
|
|
return 0;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
int _frag_append(void *ff, u32 offset, u32 sector, u32 count)
|
|
|
|
{
|
|
|
|
return frag_append(ff, offset, sector, count);
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
int frag_concat(FragList *ff, FragList *src)
|
|
|
|
{
|
|
|
|
int i, ret;
|
|
|
|
u32 size = ff->size;
|
|
|
|
//printf("concat: %d %d <- %d %d\n", ff->num, ff->size, src->num, src->size);
|
|
|
|
for (i=0; i<src->num; i++) {
|
|
|
|
ret = frag_append(ff, size + src->frag[i].offset,
|
|
|
|
src->frag[i].sector, src->frag[i].count);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
|
|
|
ff->size = size + src->size;
|
|
|
|
//printf("concat: -> %d %d\n", ff->num, ff->size);
|
|
|
|
return 0;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// in case a sparse block is requested,
|
|
|
|
// the returned poffset might not be equal to requested offset
|
|
|
|
// the difference should be filled with 0
|
|
|
|
int frag_get(FragList *ff, u32 offset, u32 count,
|
2010-02-09 11:59:55 +01:00
|
|
|
u32 *poffset, u32 *psector, u32 *pcount)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u32 delta;
|
|
|
|
//printf("frag_get(%u %u)\n", offset, count);
|
|
|
|
for (i=0; i<ff->num; i++) {
|
|
|
|
if (ff->frag[i].offset <= offset
|
|
|
|
&& ff->frag[i].offset + ff->frag[i].count > offset)
|
|
|
|
{
|
|
|
|
delta = offset - ff->frag[i].offset;
|
|
|
|
*poffset = offset;
|
|
|
|
*psector = ff->frag[i].sector + delta;
|
|
|
|
*pcount = ff->frag[i].count - delta;
|
|
|
|
if (*pcount > count) *pcount = count;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (ff->frag[i].offset > offset
|
|
|
|
&& ff->frag[i].offset < offset + count)
|
|
|
|
{
|
|
|
|
delta = ff->frag[i].offset - offset;
|
|
|
|
*poffset = ff->frag[i].offset;
|
|
|
|
*psector = ff->frag[i].sector;
|
|
|
|
*pcount = ff->frag[i].count;
|
|
|
|
count -= delta;
|
|
|
|
if (*pcount > count) *pcount = count;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// not found
|
|
|
|
if (offset + count > ff->size) {
|
|
|
|
// error: out of range!
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// if inside range, then it must be just sparse, zero filled
|
|
|
|
// return empty block at the end of requested
|
|
|
|
*poffset = offset + count;
|
|
|
|
*psector = 0;
|
|
|
|
*pcount = 0;
|
|
|
|
out:
|
|
|
|
//printf("=>(%u %u %u)\n", *poffset, *psector, *pcount);
|
|
|
|
return 0;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
int frag_remap(FragList *ff, FragList *log, FragList *phy)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ret;
|
|
|
|
u32 offset;
|
|
|
|
u32 sector;
|
|
|
|
u32 count;
|
|
|
|
u32 delta;
|
|
|
|
for (i=0; i<log->num; i++) {
|
|
|
|
delta = 0;
|
|
|
|
count = 0;
|
|
|
|
do {
|
|
|
|
ret = frag_get(phy,
|
|
|
|
log->frag[i].sector + delta + count,
|
|
|
|
log->frag[i].count - delta - count,
|
|
|
|
&offset, §or, &count);
|
|
|
|
if (ret) return ret; // error
|
|
|
|
delta = offset - log->frag[i].sector;
|
|
|
|
ret = frag_append(ff, log->frag[i].offset + delta, sector, count);
|
|
|
|
if (ret) return ret; // error
|
|
|
|
} while (count + delta < log->frag[i].count);
|
|
|
|
}
|
|
|
|
return 0;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
int get_frag_list(u8 *id)
|
|
|
|
{
|
2010-02-15 00:22:52 +01:00
|
|
|
return WBFS_GetFragList(id);
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
int set_frag_list(u8 *id)
|
|
|
|
{
|
|
|
|
if (wbfs_part_fs == PART_FS_WBFS) return 0;
|
|
|
|
if (frag_list == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2009-12-19 15:05:31 +01:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
// (+1 for header which is same size as fragment)
|
|
|
|
int size = sizeof(Fragment) * (frag_list->num + 1);
|
2010-04-10 11:15:22 +02:00
|
|
|
int ret;
|
|
|
|
DCFlushRange(frag_list, size);
|
|
|
|
if (is_ios_type(IOS_TYPE_HERMES)) {
|
|
|
|
ret = USBStorage_WBFS_SetFragList(frag_list, size);
|
|
|
|
} else {
|
|
|
|
gprintf("Calling WDVD_SetFragList\n");
|
|
|
|
ret = WDVD_SetFragList(wbfsDev, frag_list, size);
|
|
|
|
}
|
2010-02-09 11:59:55 +01:00
|
|
|
if (ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
2009-12-19 15:05:31 +01:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
// verify id matches
|
|
|
|
char discid[8];
|
|
|
|
memset(discid, 0, sizeof(discid));
|
2010-04-10 11:15:22 +02:00
|
|
|
if (is_ios_type(IOS_TYPE_HERMES)) {
|
|
|
|
ret = USBStorage_WBFS_Read(0, 8, discid);
|
|
|
|
} else {
|
|
|
|
ret = WDVD_UnencryptedRead(discid, 8, 0);
|
|
|
|
}
|
|
|
|
return (memcmp(id, discid, 6) != 0) ? -1 : 0;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
|
|
|
|