2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
// by oggzee
|
|
|
|
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include "splits.h"
|
2012-12-08 17:17:35 +01:00
|
|
|
#include "gecko/gecko.hpp"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#define off64_t off_t
|
|
|
|
#define FMT_llu "%llu"
|
|
|
|
#define FMT_lld "%lld"
|
|
|
|
|
2012-05-12 18:03:14 +02:00
|
|
|
#define split_error(x) do { gprintf("\nsplit error: %s\n\n",x); } while(0)
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
// 1 cluster less than 4gb
|
2012-07-26 00:12:17 +02:00
|
|
|
u64 OPT_split_size = (u64)4LL * 1024 * 1024 * 1024 - 32 * 1024;
|
2012-01-21 21:57:41 +01:00
|
|
|
// 1 cluster less than 2gb
|
|
|
|
//u64 OPT_split_size = (u64)2LL * 1024 * 1024 * 1024 - 32 * 1024;
|
|
|
|
|
|
|
|
//split_info_t split;
|
|
|
|
|
|
|
|
void split_get_fname(split_info_t *s, int idx, char *fname)
|
|
|
|
{
|
|
|
|
strcpy(fname, s->fname);
|
2012-04-28 00:55:17 +02:00
|
|
|
if (idx == 0 && s->create_mode)
|
|
|
|
{
|
2012-05-04 05:10:17 +02:00
|
|
|
//strcat(fname, ".tmp");
|
2012-04-28 00:55:17 +02:00
|
|
|
}
|
|
|
|
else if (idx > 0)
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
char *c = fname + strlen(fname) - 1;
|
|
|
|
*c = '0' + idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int split_open_file(split_info_t *s, int idx)
|
|
|
|
{
|
|
|
|
int fd = s->fd[idx];
|
2012-04-28 00:55:17 +02:00
|
|
|
if (fd >= 0) return fd;
|
2012-01-21 21:57:41 +01:00
|
|
|
char fname[1024];
|
|
|
|
split_get_fname(s, idx, fname);
|
|
|
|
//char *mode = s->create_mode ? "wb+" : "rb+";
|
2012-04-28 00:55:17 +02:00
|
|
|
int mode = s->create_mode ? (O_CREAT | O_RDWR) : O_RDWR;
|
2012-01-21 21:57:41 +01:00
|
|
|
//gprintf("SPLIT OPEN %s %s %d\n", fname, mode, idx); //Wpad_WaitButtons();
|
|
|
|
//f = fopen(fname, mode);
|
|
|
|
fd = open(fname, mode);
|
2012-04-28 00:55:17 +02:00
|
|
|
if (fd < 0) return -1;
|
|
|
|
if (idx > 0 && s->create_mode)
|
|
|
|
{
|
|
|
|
//gprintf("%s Split: %d %s \n", s->create_mode ? "Create" : "Read", idx, fname);
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
s->fd[idx] = fd;
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
// faster as it uses larger chunks than ftruncate internally
|
|
|
|
int write_zero(int fd, off_t size)
|
|
|
|
{
|
|
|
|
int buf[0x4000]; //64kb
|
|
|
|
memset(buf, 0, sizeof(buf));
|
2012-05-12 18:03:14 +02:00
|
|
|
|
|
|
|
u32 chunk;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
while (size)
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
chunk = size;
|
2012-05-12 18:03:14 +02:00
|
|
|
if (chunk > sizeof(buf))
|
|
|
|
chunk = sizeof(buf);
|
2012-01-21 21:57:41 +01:00
|
|
|
ret = write(fd, buf, chunk);
|
|
|
|
// gprintf("WZ %d %d / %lld \n", ret, chunk, size);
|
|
|
|
size -= chunk;
|
|
|
|
if (ret < 0) return ret;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int split_fill(split_info_t *s, int idx, u64 size)
|
|
|
|
{
|
|
|
|
int fd = split_open_file(s, idx);
|
|
|
|
|
|
|
|
off64_t fsize = lseek(fd, 0, SEEK_END);
|
2012-07-26 00:12:17 +02:00
|
|
|
if((u64)fsize < size)
|
2012-05-12 18:03:14 +02:00
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
// gprintf("TRUNC %d "FMT_lld" "FMT_lld"\n", idx, size, fsize); // Wpad_WaitButtons();
|
|
|
|
ftruncate(fd, size);
|
|
|
|
// write_zero(fd, size - fsize);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int split_get_file(split_info_t *s, u32 lba, u32 *sec_count, int fill)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
if (lba >= s->total_sec) {
|
2012-05-12 18:03:14 +02:00
|
|
|
gprintf( "SPLIT: invalid sector %u / %u\n", lba, (u32)s->total_sec);
|
2012-01-21 21:57:41 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
int idx;
|
|
|
|
idx = lba / s->split_sec;
|
|
|
|
if (idx >= s->max_split) {
|
2012-05-12 18:03:14 +02:00
|
|
|
gprintf( "SPLIT: invalid split %d / %d\n", idx, s->max_split - 1);
|
2012-01-21 21:57:41 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fd = s->fd[idx];
|
|
|
|
if (fd<0) {
|
|
|
|
// opening new, make sure all previous are full
|
|
|
|
int i;
|
|
|
|
for (i=0; i<idx; i++) {
|
|
|
|
if (split_fill(s, i, s->split_size)) {
|
|
|
|
printf("FILL %d\n", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fd = split_open_file(s, idx);
|
|
|
|
}
|
|
|
|
if (fd<0) {
|
2012-05-12 18:03:14 +02:00
|
|
|
gprintf( "SPLIT %d: no file\n", idx);
|
2012-01-21 21:57:41 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
u32 sec = lba % s->split_sec; // inside file
|
|
|
|
off64_t off = (off64_t)sec * 512;
|
|
|
|
// num sectors till end of file
|
|
|
|
u32 to_end = s->split_sec - sec;
|
|
|
|
if (*sec_count > to_end) *sec_count = to_end;
|
|
|
|
if (s->create_mode) {
|
|
|
|
if (fill) {
|
|
|
|
// extend, so that read will be succesfull
|
|
|
|
split_fill(s, idx, off + 512 * (*sec_count));
|
|
|
|
} else {
|
|
|
|
// fill up so that write continues from end of file
|
|
|
|
// shouldn't be necessary, but libfat looks buggy
|
|
|
|
// and this is faster
|
|
|
|
split_fill(s, idx, off);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lseek(fd, off, SEEK_SET);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2012-05-12 18:03:14 +02:00
|
|
|
int split_read_sector(void *_fp, u32 lba, u32 count, void *buf)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
|
|
|
split_info_t *s = _fp;
|
2012-07-26 00:12:17 +02:00
|
|
|
int fd;
|
2012-01-21 21:57:41 +01:00
|
|
|
u64 off = lba;
|
|
|
|
off *= 512ULL;
|
|
|
|
int i;
|
|
|
|
u32 chunk;
|
|
|
|
size_t ret;
|
2012-05-12 18:03:14 +02:00
|
|
|
//gprintf("READ %d %d\n", lba, count);
|
|
|
|
for (i=0; i<(int)count; i+=chunk)
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
chunk = count - i;
|
|
|
|
fd = split_get_file(s, lba+i, &chunk, 1);
|
2012-05-12 18:03:14 +02:00
|
|
|
if (fd<0)
|
|
|
|
{
|
|
|
|
gprintf("\n\n"FMT_lld" %d %p\n",off,count,_fp);
|
|
|
|
split_error("error seeking in disc partition\n");
|
2012-01-21 21:57:41 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
//ret = fread(buf+i*512, 512ULL, chunk, f);
|
|
|
|
ret = read(fd, buf+i*512, chunk * 512);
|
2012-05-12 18:03:14 +02:00
|
|
|
if (ret != chunk * 512)
|
|
|
|
{
|
|
|
|
gprintf( "error reading %u %u [%u] %u = %u\n", lba, count, i, chunk, ret);
|
|
|
|
split_error("error reading disc\n");
|
2012-01-21 21:57:41 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-12 18:03:14 +02:00
|
|
|
int split_write_sector(void *_fp, u32 lba, u32 count, void *buf)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
|
|
|
split_info_t *s = _fp;
|
|
|
|
int fd;
|
|
|
|
u64 off = lba;
|
|
|
|
off*=512ULL;
|
|
|
|
int i;
|
|
|
|
u32 chunk;
|
|
|
|
size_t ret;
|
|
|
|
// gprintf("WRITE %d %d %p \n", lba, count, buf);
|
2012-05-12 18:03:14 +02:00
|
|
|
for (i=0; i<(int)count; i+=chunk)
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
chunk = count - i;
|
|
|
|
fd = split_get_file(s, lba+i, &chunk, 0);
|
|
|
|
// gprintf("WRITE Got file: %d\n", fd);
|
|
|
|
//if (chunk != count)
|
2012-05-12 18:03:14 +02:00
|
|
|
// gprintf( "WRITE CHUNK %d %d/%d\n", lba+i, chunk, count);
|
|
|
|
if (fd<0 || !chunk)
|
|
|
|
{
|
|
|
|
gprintf("\n\n"FMT_lld" %d %p\n",off,count,_fp);
|
|
|
|
split_error("error seeking in disc partition\n");
|
2012-01-21 21:57:41 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
//if (fwrite(buf+i*512, 512ULL, chunk, f) != chunk) {
|
|
|
|
// gprintf("write %d %p %d \n", fd, buf+i*512, chunk * 512);
|
|
|
|
ret = write(fd, buf+i*512, chunk * 512);
|
|
|
|
// gprintf("write ret = %d \n", ret);
|
2012-05-12 18:03:14 +02:00
|
|
|
if (ret != chunk * 512)
|
|
|
|
{
|
|
|
|
split_error("error writing disc\n");
|
2012-01-21 21:57:41 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void split_init(split_info_t *s, char *fname)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *p;
|
2012-04-28 00:55:17 +02:00
|
|
|
//gprintf("SPLIT_INIT %s\n", fname);
|
2012-01-21 21:57:41 +01:00
|
|
|
memset(s, 0, sizeof(*s));
|
2012-04-28 00:55:17 +02:00
|
|
|
for (i = 0; i < MAX_SPLIT; i++)
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
s->fd[i] = -1;
|
|
|
|
}
|
|
|
|
strcpy(s->fname, fname);
|
|
|
|
s->max_split = 1;
|
|
|
|
p = strrchr(fname, '.');
|
2012-04-28 00:55:17 +02:00
|
|
|
if (p && (strcasecmp(p, ".wbfs") == 0))
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
s->max_split = MAX_SPLIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void split_set_size(split_info_t *s, u64 split_size, u64 total_size)
|
|
|
|
{
|
|
|
|
s->total_size = total_size;
|
|
|
|
s->split_size = split_size;
|
|
|
|
s->total_sec = total_size / 512;
|
|
|
|
s->split_sec = split_size / 512;
|
|
|
|
}
|
|
|
|
|
|
|
|
void split_close(split_info_t *s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
// char fname[1024];
|
|
|
|
// char tmpname[1024];
|
|
|
|
for (i=0; i<s->max_split; i++) {
|
|
|
|
if (s->fd[i] >= 0) {
|
|
|
|
close(s->fd[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if (s->create_mode) {
|
|
|
|
// split_get_fname(s, -1, fname);
|
|
|
|
// split_get_fname(s, 0, tmpname);
|
|
|
|
// rename(tmpname, fname);
|
|
|
|
// }
|
|
|
|
memset(s, 0, sizeof(*s));
|
|
|
|
}
|
|
|
|
|
|
|
|
int split_create(split_info_t *s, char *fname,
|
|
|
|
u64 split_size, u64 total_size, bool overwrite)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int fd;
|
|
|
|
char sname[1024];
|
|
|
|
int error = 0;
|
|
|
|
split_init(s, fname);
|
|
|
|
s->create_mode = 1;
|
|
|
|
// check if any file already exists
|
|
|
|
for (i=-1; i<s->max_split; i++) {
|
|
|
|
split_get_fname(s, i, sname);
|
|
|
|
if (overwrite) {
|
|
|
|
remove(sname);
|
|
|
|
} else {
|
|
|
|
fd = open(sname, O_RDONLY);
|
|
|
|
if (fd >= 0) {
|
2012-05-12 18:03:14 +02:00
|
|
|
gprintf( "Error: file already exists: %s\n", sname);
|
2012-01-21 21:57:41 +01:00
|
|
|
close(fd);
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
split_init(s, "");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
split_set_size(s, split_size, total_size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int split_open(split_info_t *s, char *fname)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u64 size = 0;
|
|
|
|
u64 total_size = 0;
|
|
|
|
u64 split_size = 0;
|
|
|
|
int fd;
|
|
|
|
split_init(s, fname);
|
2012-04-28 00:55:17 +02:00
|
|
|
for (i = 0; i < s->max_split; i++)
|
|
|
|
{
|
2012-01-21 21:57:41 +01:00
|
|
|
fd = split_open_file(s, i);
|
2012-04-28 00:55:17 +02:00
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
if (i == 0)
|
|
|
|
goto error;
|
2012-01-21 21:57:41 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// check previous size - all splits except last must be same size
|
2012-04-28 00:55:17 +02:00
|
|
|
if (i > 0 && size != split_size)
|
|
|
|
{
|
|
|
|
gprintf("split %i: invalid size %ld\n", i, size);
|
|
|
|
goto error;
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
// get size
|
|
|
|
//fseeko(f, 0, SEEK_END);
|
|
|
|
//size = ftello(f);
|
|
|
|
size = lseek(fd, 0, SEEK_END);
|
|
|
|
// check sector alignment
|
2012-04-28 00:55:17 +02:00
|
|
|
if (size % 512)
|
|
|
|
gprintf("split %i: size (%ld) not sector (512) aligned!", i, size);
|
2012-01-21 21:57:41 +01:00
|
|
|
// first sets split size
|
2012-04-28 00:55:17 +02:00
|
|
|
if (i == 0)
|
2012-01-21 21:57:41 +01:00
|
|
|
split_size = size;
|
|
|
|
total_size += size;
|
|
|
|
}
|
|
|
|
split_set_size(s, split_size, total_size);
|
|
|
|
return 0;
|
2012-04-28 00:55:17 +02:00
|
|
|
|
|
|
|
error:
|
2012-01-21 21:57:41 +01:00
|
|
|
split_close(s);
|
|
|
|
return -1;
|
|
|
|
}
|