mirror of https://github.com/PCSX2/pcsx2.git
702 lines
20 KiB
C++
702 lines
20 KiB
C++
/* PCSX2 - PS2 Emulator for PCs
|
|
* Copyright (C) 2002-2009 PCSX2 Dev Team
|
|
*
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "PrecompiledHeader.h"
|
|
#include "Common.h"
|
|
|
|
#include "GS.h" // for sending game crc to mtgs
|
|
|
|
#include "CDVD/IsoFS/IsoFSCDVD.h"
|
|
#include "CDVD/IsoFS/IsoFS.h"
|
|
|
|
using namespace std;
|
|
extern void InitPatch(const wxString& crc);
|
|
|
|
u32 ElfCRC;
|
|
|
|
struct ELF_HEADER {
|
|
u8 e_ident[16]; //0x7f,"ELF" (ELF file identifier)
|
|
u16 e_type; //ELF type: 0=NONE, 1=REL, 2=EXEC, 3=SHARED, 4=CORE
|
|
u16 e_machine; //Processor: 8=MIPS R3000
|
|
u32 e_version; //Version: 1=current
|
|
u32 e_entry; //Entry point address
|
|
u32 e_phoff; //Start of program headers (offset from file start)
|
|
u32 e_shoff; //Start of section headers (offset from file start)
|
|
u32 e_flags; //Processor specific flags = 0x20924001 noreorder, mips
|
|
u16 e_ehsize; //ELF header size (0x34 = 52 bytes)
|
|
u16 e_phentsize; //Program headers entry size
|
|
u16 e_phnum; //Number of program headers
|
|
u16 e_shentsize; //Section headers entry size
|
|
u16 e_shnum; //Number of section headers
|
|
u16 e_shstrndx; //Section header stringtable index
|
|
};
|
|
|
|
struct ELF_PHR {
|
|
u32 p_type; //see notes1
|
|
u32 p_offset; //Offset from file start to program segment.
|
|
u32 p_vaddr; //Virtual address of the segment
|
|
u32 p_paddr; //Physical address of the segment
|
|
u32 p_filesz; //Number of bytes in the file image of the segment
|
|
u32 p_memsz; //Number of bytes in the memory image of the segment
|
|
u32 p_flags; //Flags for segment
|
|
u32 p_align; //Alignment. The address of 0x08 and 0x0C must fit this alignment. 0=no alignment
|
|
};
|
|
|
|
/*
|
|
notes1
|
|
------
|
|
0=Inactive
|
|
1=Load the segment into memory, no. of bytes specified by 0x10 and 0x14
|
|
2=Dynamic linking
|
|
3=Interpreter. The array element must specify a path name
|
|
4=Note. The array element must specify the location and size of aux. info
|
|
5=reserved
|
|
6=The array element must specify location and size of the program header table.
|
|
*/
|
|
|
|
struct ELF_SHR {
|
|
u32 sh_name; //No. to the index of the Section header stringtable index
|
|
u32 sh_type; //See notes2
|
|
u32 sh_flags; //see notes3
|
|
u32 sh_addr; //Section start address
|
|
u32 sh_offset; //Offset from start of file to section
|
|
u32 sh_size; //Size of section
|
|
u32 sh_link; //Section header table index link
|
|
u32 sh_info; //Info
|
|
u32 sh_addralign; //Alignment. The adress of 0x0C must fit this alignment. 0=no alignment.
|
|
u32 sh_entsize; //Fixed size entries.
|
|
};
|
|
|
|
/*
|
|
notes 2
|
|
-------
|
|
Type:
|
|
0=Inactive
|
|
1=PROGBITS
|
|
2=SYMTAB symbol table
|
|
3=STRTAB string table
|
|
4=RELA relocation entries
|
|
5=HASH hash table
|
|
6=DYNAMIC dynamic linking information
|
|
7=NOTE
|
|
8=NOBITS
|
|
9=REL relocation entries
|
|
10=SHLIB
|
|
0x70000000=LOPROC processor specifc
|
|
0x7fffffff=HIPROC
|
|
0x80000000=LOUSER lower bound
|
|
0xffffffff=HIUSER upper bound
|
|
|
|
notes 3
|
|
-------
|
|
Section Flags: (1 bit, you may combine them like 3 = alloc & write permission)
|
|
1=Write section contains data the is be writeable during execution.
|
|
2=Alloc section occupies memory during execution
|
|
4=Exec section contains executable instructions
|
|
0xf0000000=Mask bits processor-specific
|
|
*/
|
|
|
|
struct Elf32_Sym {
|
|
u32 st_name;
|
|
u32 st_value;
|
|
u32 st_size;
|
|
u8 st_info;
|
|
u8 st_other;
|
|
u16 st_shndx;
|
|
};
|
|
|
|
#define ELF32_ST_TYPE(i) ((i)&0xf)
|
|
|
|
struct Elf32_Rel {
|
|
u32 r_offset;
|
|
u32 r_info;
|
|
};
|
|
|
|
#if 0
|
|
// fixme: ELF command line option system.
|
|
// It parses a command line and pastes it into PS2 memory, and then points the a0 register at it.
|
|
// A user-written ELF can then load the data and respond accordingly. Needs a rewrite using modern
|
|
// string parsing utils. :)
|
|
|
|
//2002-09-19 (Florin)
|
|
char args[256]="ez.m2v"; //to be accessed by other files
|
|
uptr args_ptr; //a big value; in fact, it is an address
|
|
|
|
static bool isEmpty(int addr)
|
|
{
|
|
return ((PS2MEM_BASE[addr] == 0) || (PS2MEM_BASE[addr] == 32));
|
|
}
|
|
|
|
//in a0 is passed the address of the command line args,
|
|
//i.e. a pointer to an area like this:
|
|
//+00 unknown/unused
|
|
//+04 argc; number of arguments
|
|
//+08 argv[0]; address of the first parameter - program name (char*) -
|
|
//+08 argv[1]; address of the second parameter (char*) |
|
|
//+0C argv[2]; and so on |
|
|
//........ |
|
|
//+08+4*argc the program name(first param) <--
|
|
//+08+4*argc+strlen(argv[0]+1) the rest of params; i.e. a copy of 'args'
|
|
// see above 'char args[256];'
|
|
|
|
// The results of this function will normally be that it finds an arg at 13 chars, and another at 0.
|
|
// It'd probably be easier to 0 out all 256 chars, split args, copy all the arguments in, and note
|
|
// the locations of each split... --arcum42
|
|
|
|
static uint parseCommandLine( const wxString& filename )
|
|
{
|
|
if ( ( args_ptr != 0xFFFFFFFF ) && ( args_ptr > (4 + 4 + 256) ) )
|
|
{
|
|
const char *p;
|
|
int argc, i, ret = 0;
|
|
u32 args_end;
|
|
|
|
args_ptr -= 256;
|
|
|
|
args[ 255 ] = 0;
|
|
|
|
// Copy the parameters into the section of memory at args_ptr,
|
|
// then zero out anything past the end of args till 256 chars is reached.
|
|
memcpy( &PS2MEM_BASE[ args_ptr ], args, 256 );
|
|
memset( &PS2MEM_BASE[ args_ptr + strlen( args ) ], 0, 256 - strlen( args ) );
|
|
args_end = args_ptr + strlen( args );
|
|
|
|
// Set p to just the filename, no path.
|
|
#ifdef _WIN32
|
|
p = strrchr( filename, '\\' );
|
|
#else //linux
|
|
p = strrchr( filename, '/' );
|
|
if( p == NULL ) p = strchr(filename, '\\');
|
|
#endif
|
|
if (p)
|
|
p++;
|
|
else
|
|
p = filename;
|
|
|
|
|
|
args_ptr -= strlen( p ) + 1;
|
|
|
|
//fill param 0; i.e. name of the program
|
|
strcpy( (char*)&PS2MEM_BASE[ args_ptr ], p );
|
|
|
|
// Start from the end of where we wrote to, not including all the zero'd out area.
|
|
for ( i = args_end - args_ptr + 1, argc = 0; i > 0; i-- )
|
|
{
|
|
while (i && isEmpty(args_ptr + i )) { i--; }
|
|
|
|
// If the last char is a space, set it to 0.
|
|
if ( PS2MEM_BASE[ args_ptr + i + 1 ] == ' ') PS2MEM_BASE[ args_ptr + i + 1 ] = 0;
|
|
|
|
while (i && !isEmpty(args_ptr + i )) { i--; }
|
|
|
|
// Now that we've gone back a word, increase the number of arguments,
|
|
// and mark the location of the argument.
|
|
if (!isEmpty(args_ptr + i )) // i <= 0
|
|
{
|
|
// If the spot we are on is not a space or null , use it.
|
|
argc++;
|
|
ret = args_ptr - 4 - 4 - argc * 4;
|
|
|
|
if (ret < 0 ) return 0;
|
|
((u32*)PS2MEM_BASE)[ args_ptr / 4 - argc ] = args_ptr + i;
|
|
}
|
|
else
|
|
{
|
|
if (!isEmpty(args_ptr + i + 1))
|
|
{
|
|
// Otherwise, use the next character .
|
|
argc++;
|
|
ret = args_ptr - 4 - 4 - argc * 4;
|
|
|
|
if (ret < 0 ) return 0;
|
|
((u32*)PS2MEM_BASE)[ args_ptr / 4 - argc ] = args_ptr + i + 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Pass the number of arguments, and if we have arguments.
|
|
((u32*)PS2MEM_BASE)[ args_ptr /4 - argc - 1 ] = argc; //how many args
|
|
((u32*)PS2MEM_BASE)[ args_ptr /4 - argc - 2 ] = ( argc > 0); //have args? //not used, cannot be filled at all
|
|
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
//---------------
|
|
|
|
struct ElfObject
|
|
{
|
|
wxString filename;
|
|
SafeArray<u8> data;
|
|
ELF_HEADER& header;
|
|
ELF_PHR* proghead;
|
|
ELF_SHR* secthead;
|
|
|
|
// Destructor!
|
|
// C++ does all the cleanup automagically for us.
|
|
virtual ~ElfObject() throw() { }
|
|
|
|
ElfObject( const wxString& srcfile, uint hdrsize )
|
|
: filename( srcfile )
|
|
, data( hdrsize, L"ELF headers" )
|
|
, header( *(ELF_HEADER*)data.GetPtr() )
|
|
, proghead( NULL )
|
|
, secthead( NULL )
|
|
{
|
|
readFile();
|
|
|
|
if( header.e_phnum > 0 )
|
|
proghead = (ELF_PHR*)&data[header.e_phoff];
|
|
|
|
if( header.e_shnum > 0 )
|
|
secthead = (ELF_SHR*)&data[header.e_shoff];
|
|
|
|
if ( ( header.e_shnum > 0 ) && ( header.e_shentsize != sizeof(ELF_SHR) ) )
|
|
Console.Error( "(ELF) Size of section headers is not standard" );
|
|
|
|
if ( ( header.e_phnum > 0 ) && ( header.e_phentsize != sizeof(ELF_PHR) ) )
|
|
Console.Error( "(ELF) Size of program headers is not standard" );
|
|
|
|
const char* elftype = NULL;
|
|
switch( header.e_type )
|
|
{
|
|
default:
|
|
ELF_LOG( "type: unknown = %x", header.e_type );
|
|
break;
|
|
|
|
case 0x0: elftype = "no file type"; break;
|
|
case 0x1: elftype = "relocatable"; break;
|
|
case 0x2: elftype = "executable"; break;
|
|
}
|
|
if( elftype != NULL ) ELF_LOG( "type: %s", elftype );
|
|
|
|
const char* machine = NULL;
|
|
switch ( header.e_machine )
|
|
{
|
|
case 1: machine = "AT&T WE 32100"; break;
|
|
case 2: machine = "SPARC"; break;
|
|
case 3: machine = "Intel 80386"; break;
|
|
case 4: machine = "Motorola 68000"; break;
|
|
case 5: machine = "Motorola 88000"; break;
|
|
case 7: machine = "Intel 80860"; break;
|
|
case 8: machine = "mips_rs3000"; break;
|
|
|
|
default:
|
|
ELF_LOG( "machine: unknown = %x", header.e_machine );
|
|
break;
|
|
}
|
|
|
|
if( machine != NULL )
|
|
ELF_LOG( "machine: %s", machine );
|
|
|
|
ELF_LOG("version: %d",header.e_version);
|
|
ELF_LOG("entry: %08x",header.e_entry);
|
|
ELF_LOG("flags: %08x",header.e_flags);
|
|
ELF_LOG("eh size: %08x",header.e_ehsize);
|
|
ELF_LOG("ph off: %08x",header.e_phoff);
|
|
ELF_LOG("ph entsiz: %08x",header.e_phentsize);
|
|
ELF_LOG("ph num: %08x",header.e_phnum);
|
|
ELF_LOG("sh off: %08x",header.e_shoff);
|
|
ELF_LOG("sh entsiz: %08x",header.e_shentsize);
|
|
ELF_LOG("sh num: %08x",header.e_shnum);
|
|
ELF_LOG("sh strndx: %08x",header.e_shstrndx);
|
|
|
|
ELF_LOG("\n");
|
|
}
|
|
|
|
void readFile()
|
|
{
|
|
int rsize = 0;
|
|
const wxCharBuffer work( filename.ToUTF8() );
|
|
if ((strnicmp( work, "cdrom:", strlen("cdrom:" )) == 0) ||
|
|
(strnicmp( work, "cdrom0:", strlen("cdromN:")) == 0) ||
|
|
(strnicmp( work, "cdrom1:", strlen("cdromN:")) == 0))
|
|
{
|
|
IsoFSCDVD isofs;
|
|
IsoFile file( isofs, fromUTF8(work) );
|
|
|
|
//int size = file.getLength();
|
|
rsize = file.read(data.GetPtr(), data.GetSizeInBytes());
|
|
}
|
|
else
|
|
{
|
|
FILE *f;
|
|
|
|
f = fopen( work.data(), "rb" );
|
|
if( f == NULL ) Exception::FileNotFound( filename );
|
|
|
|
fseek( f, 0, SEEK_SET );
|
|
rsize = fread( data.GetPtr(), 1, data.GetSizeInBytes(), f );
|
|
fclose( f );
|
|
}
|
|
|
|
if( rsize < data.GetSizeInBytes() ) throw Exception::EndOfStream( filename );
|
|
}
|
|
|
|
u32 GetCRC() const
|
|
{
|
|
u32 CRC = 0;
|
|
|
|
const u32* srcdata = (u32*)data.GetPtr();
|
|
for(u32 i=data.GetSizeInBytes()/4; i; --i, ++srcdata)
|
|
CRC ^= *srcdata;
|
|
|
|
return CRC;
|
|
}
|
|
|
|
|
|
void loadProgramHeaders()
|
|
{
|
|
if ( proghead == NULL )
|
|
return;
|
|
|
|
for( int i = 0 ; i < header.e_phnum ; i++ )
|
|
{
|
|
ELF_LOG( "Elf32 Program Header" );
|
|
ELF_LOG( "type: " );
|
|
|
|
switch ( proghead[ i ].p_type ) {
|
|
default:
|
|
ELF_LOG( "unknown %x", (int)proghead[ i ].p_type );
|
|
break;
|
|
|
|
case 0x1:
|
|
{
|
|
ELF_LOG("load");
|
|
const uint elfsize = data.GetLength();
|
|
|
|
if (proghead[ i ].p_offset < elfsize) {
|
|
int size;
|
|
|
|
if ((proghead[ i ].p_filesz + proghead[ i ].p_offset) > elfsize)
|
|
size = elfsize - proghead[ i ].p_offset;
|
|
else
|
|
size = proghead[ i ].p_filesz;
|
|
|
|
if( proghead[ i ].p_vaddr != proghead[ i ].p_paddr )
|
|
Console.Warning( "ElfProgram different load addrs: paddr=0x%8.8x, vaddr=0x%8.8x",
|
|
proghead[ i ].p_paddr, proghead[ i ].p_vaddr);
|
|
|
|
// used to be paddr
|
|
memcpy_fast(
|
|
&PS2MEM_BASE[proghead[ i ].p_vaddr & 0x1ffffff],
|
|
data.GetPtr(proghead[ i ].p_offset), size
|
|
);
|
|
|
|
ELF_LOG("\t*LOADED*");
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
ELF_LOG("\n");
|
|
ELF_LOG("offset: %08x",proghead[i].p_offset);
|
|
ELF_LOG("vaddr: %08x",proghead[i].p_vaddr);
|
|
ELF_LOG("paddr: %08x",proghead[i].p_paddr);
|
|
ELF_LOG("file size: %08x",proghead[i].p_filesz);
|
|
ELF_LOG("mem size: %08x",proghead[i].p_memsz);
|
|
ELF_LOG("flags: %08x",proghead[i].p_flags);
|
|
ELF_LOG("palign: %08x",proghead[i].p_align);
|
|
ELF_LOG("\n");
|
|
}
|
|
}
|
|
|
|
void loadSectionHeaders()
|
|
{
|
|
if( secthead == NULL || header.e_shoff > (u32)data.GetLength() )
|
|
return;
|
|
|
|
const u8* sections_names = data.GetPtr( secthead[ (header.e_shstrndx == 0xffff ? 0 : header.e_shstrndx) ].sh_offset );
|
|
|
|
int i_st = -1;
|
|
int i_dt = -1;
|
|
|
|
for( int i = 0 ; i < header.e_shnum ; i++ )
|
|
{
|
|
ELF_LOG( "ELF32 Section Header [%x] %s", i, §ions_names[ secthead[ i ].sh_name ] );
|
|
|
|
// used by parseCommandLine
|
|
//if ( secthead[i].sh_flags & 0x2 )
|
|
// args_ptr = min( args_ptr, secthead[ i ].sh_addr & 0x1ffffff );
|
|
|
|
ELF_LOG("\n");
|
|
|
|
const char* sectype = NULL;
|
|
switch ( secthead[ i ].sh_type )
|
|
{
|
|
case 0x0: sectype = "null"; break;
|
|
case 0x1: sectype = "progbits"; break;
|
|
case 0x2: sectype = "symtab"; break;
|
|
case 0x3: sectype = "strtab"; break;
|
|
case 0x4: sectype = "rela"; break;
|
|
case 0x8: sectype = "no bits"; break;
|
|
case 0x9: sectype = "rel"; break;
|
|
|
|
default:
|
|
ELF_LOG("type: unknown %08x",secthead[i].sh_type);
|
|
break;
|
|
}
|
|
|
|
ELF_LOG("type: %s", sectype);
|
|
ELF_LOG("flags: %08x", secthead[i].sh_flags);
|
|
ELF_LOG("addr: %08x", secthead[i].sh_addr);
|
|
ELF_LOG("offset: %08x", secthead[i].sh_offset);
|
|
ELF_LOG("size: %08x", secthead[i].sh_size);
|
|
ELF_LOG("link: %08x", secthead[i].sh_link);
|
|
ELF_LOG("info: %08x", secthead[i].sh_info);
|
|
ELF_LOG("addralign: %08x", secthead[i].sh_addralign);
|
|
ELF_LOG("entsize: %08x", secthead[i].sh_entsize);
|
|
// dump symbol table
|
|
|
|
if( secthead[ i ].sh_type == 0x02 )
|
|
{
|
|
i_st = i;
|
|
i_dt = secthead[i].sh_link;
|
|
}
|
|
}
|
|
|
|
if( ( i_st >= 0 ) && ( i_dt >= 0 ) )
|
|
{
|
|
const char * SymNames;
|
|
Elf32_Sym * eS;
|
|
|
|
SymNames = (char*)data.GetPtr( secthead[ i_dt ].sh_offset );
|
|
eS = (Elf32_Sym*)data.GetPtr( secthead[ i_st ].sh_offset );
|
|
Console.WriteLn("found %d symbols", secthead[ i_st ].sh_size / sizeof( Elf32_Sym ));
|
|
|
|
for( uint i = 1; i < ( secthead[ i_st ].sh_size / sizeof( Elf32_Sym ) ); i++ ) {
|
|
if ( ( eS[ i ].st_value != 0 ) && ( ELF32_ST_TYPE( eS[ i ].st_info ) == 2 ) ) {
|
|
R5900::disR5900AddSym( eS[i].st_value, &SymNames[ eS[ i ].st_name ] );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
void ElfApplyPatches()
|
|
{
|
|
wxString filename( wxsFormat( L"%8.8x", ElfCRC ) );
|
|
|
|
// if patches found the following status msg will be overwritten
|
|
Console.SetTitle( wxsFormat( _("Game running [CRC=%s]"), filename.c_str() ) );
|
|
|
|
if( !EmuConfig.EnablePatches ) return;
|
|
|
|
InitPatch(filename);
|
|
}
|
|
|
|
// Fetches the CRC of the game bound to the CDVD plugin.
|
|
u32 loadElfCRC( const char* filename )
|
|
{
|
|
u32 crcval = 0;
|
|
Console.WriteLn("loadElfCRC: %s", filename);
|
|
|
|
IsoFSCDVD isofs;
|
|
const int filesize = IsoDirectory(isofs).GetFileSize( fromUTF8(filename) );
|
|
|
|
DevCon.WriteLn( "loadElfFile: %d bytes", filesize );
|
|
crcval = ElfObject( fromUTF8(filename), filesize ).GetCRC();
|
|
Console.WriteLn( "loadElfFile: %s; CRC = %8.8X", filename, crcval );
|
|
|
|
return crcval;
|
|
}
|
|
|
|
// Loads the elf binary data from the specified file into PS2 memory, and injects the ELF's
|
|
// starting execution point into cpuRegs.pc. If the filename is a cdrom URI in the form
|
|
// of "cdrom0:" or "cdrom1:" then the CDVD is used as the source; otherwise the ELF is loaded
|
|
// from the host filesystem.
|
|
//
|
|
// If it starts with "cdrom:", an exception is thrown, unless PS1 emulation is being attempted.
|
|
//
|
|
// If the specified filename is empty then no action is taken (PS2 will continue booting
|
|
// normally as if it has no CD.
|
|
//
|
|
// Throws exception on error:
|
|
//
|
|
void loadElfFile(const wxString& filename)
|
|
{
|
|
if( filename.IsEmpty() ) return;
|
|
|
|
s64 elfsize;
|
|
Console.WriteLn( L"loadElfFile: " + filename );
|
|
|
|
const wxCharBuffer fnptr( filename.ToUTF8() );
|
|
bool useCdvdSource = false;
|
|
|
|
#ifndef ENABLE_LOADING_PS1_GAMES
|
|
if( filename.StartsWith( L"cdrom:" ) )
|
|
throw Exception::RuntimeError( wxLt("This is not a Ps2 disc. (And we don't currently emulate PS1 games)") );
|
|
#endif
|
|
|
|
if( !filename.StartsWith( L"cdrom:" ) && !filename.StartsWith( L"cdrom0:" ) && !filename.StartsWith( L"cdrom1:" ) )
|
|
{
|
|
DevCon.WriteLn("Loading from a file (or non-cd image)");
|
|
elfsize = Path::GetFileSize( filename );
|
|
}
|
|
else
|
|
{
|
|
DevCon.WriteLn("Loading from a CD rom or CD image");
|
|
useCdvdSource = true;
|
|
|
|
Console.WriteLn(L"loadElfCRC: " + filename);
|
|
IsoFSCDVD isofs;
|
|
elfsize = IsoDirectory( isofs ).GetFileSize( fromUTF8(fnptr) );
|
|
}
|
|
|
|
if( elfsize > 0xfffffff )
|
|
throw Exception::BadStream( filename, wxLt("Illegal ELF file size, over 2GB!") );
|
|
|
|
if( elfsize == -1 )
|
|
throw Exception::BadStream( filename, wxLt("Elf file does not exist! ") );
|
|
|
|
if( elfsize == 0 )
|
|
throw Exception::BadStream( filename, wxLt("Unexpected end of ELF file: ") );
|
|
|
|
Console.WriteLn( L"loadElfFile: %d bytes", wxULongLong(elfsize).GetLo() );
|
|
|
|
ElfObject elfobj( filename, wxULongLong(elfsize).GetLo() );
|
|
|
|
if( elfobj.proghead == NULL )
|
|
{
|
|
throw Exception::BadStream( filename, useCdvdSource ?
|
|
wxLt("Invalid ELF file header. The CD-Rom may be damaged, or the ISO image corrupted.") :
|
|
wxLt("Invalid ELF file.")
|
|
);
|
|
}
|
|
|
|
//2002-09-19 (Florin)
|
|
//args_ptr = 0xFFFFFFFF; //big value, searching for minimum [used by parseCommandLine]
|
|
|
|
elfobj.loadProgramHeaders();
|
|
elfobj.loadSectionHeaders();
|
|
|
|
cpuRegs.pc = elfobj.header.e_entry; //set pc to proper place
|
|
ELF_LOG( "PC set to: %8.8lx", cpuRegs.pc );
|
|
|
|
cpuRegs.GPR.n.sp.UL[0] = 0x81f00000;
|
|
cpuRegs.GPR.n.gp.UL[0] = 0x81f80000; // might not be 100% ok
|
|
//cpuRegs.GPR.n.a0.UL[0] = parseCommandLine( filename ); // see #ifdef'd out parseCommendLine for details.
|
|
|
|
for( uint i = 0; i < 0x100000; i++ )
|
|
{
|
|
if( memcmp( "rom0:OSDSYS", (char*)PSM( i ), 11 ) == 0 )
|
|
{
|
|
strcpy( (char*)PSM( i ), fnptr );
|
|
DevCon.WriteLn( "loadElfFile: addr %x \"%s\" -> \"%s\"", i, "rom0:OSDSYS", fnptr.data() );
|
|
}
|
|
}
|
|
ElfCRC = elfobj.GetCRC();
|
|
Console.WriteLn( L"loadElfFile: %s; CRC = %8.8X", filename.c_str(), ElfCRC );
|
|
ElfApplyPatches();
|
|
GetMTGS().SendGameCRC( ElfCRC );
|
|
|
|
return;
|
|
}
|
|
|
|
// return value:
|
|
// 0 - Invalid or unknown disc.
|
|
// 1 - PS1 CD
|
|
// 2 - PS2 CD
|
|
int GetPS2ElfName( wxString& name )
|
|
{
|
|
try {
|
|
IsoFSCDVD isofs;
|
|
IsoFile file( isofs, L"SYSTEM.CNF;1");
|
|
|
|
int size = file.getLength();
|
|
if( size == 0 ) return 0;
|
|
|
|
int retype = 0;
|
|
|
|
while( !file.eof() )
|
|
{
|
|
wxString original( fromUTF8(file.readLine().c_str()) );
|
|
ParsedAssignmentString parts( original );
|
|
|
|
if( parts.lvalue.IsEmpty() && parts.rvalue.IsEmpty() ) continue;
|
|
if( parts.rvalue.IsEmpty() )
|
|
{
|
|
Console.Error( "(GetElfName) Unusual or malformed entry in SYSTEM.CNF ignored:" );
|
|
Console.Indent().WriteLn( original );
|
|
continue;
|
|
}
|
|
|
|
if( parts.lvalue == L"BOOT2" )
|
|
{
|
|
name = parts.rvalue;
|
|
Console.WriteLn( Color_StrongBlue, L"(GetElfName) Detected PS2 Disc = " + name );
|
|
retype = 2;
|
|
}
|
|
else if( parts.lvalue == L"BOOT" )
|
|
{
|
|
name = parts.rvalue;
|
|
Console.WriteLn( Color_StrongBlue, L"(GetElfName) Detected PSX/PSone Disc = " + name );
|
|
retype = 1;
|
|
}
|
|
else if( parts.lvalue == L"VMODE" )
|
|
{
|
|
Console.WriteLn( Color_StrongBlue, L"(GetElfName) Disc region type = " + parts.rvalue );
|
|
}
|
|
else if( parts.lvalue == L"VER" )
|
|
{
|
|
Console.WriteLn( Color_StrongBlue, L"(GetElfName) Software version = " + parts.rvalue );
|
|
}
|
|
}
|
|
|
|
if( retype == 0 )
|
|
{
|
|
Console.Error("(GetElfName) Disc image is *not* a Playstation or PS2 game!");
|
|
return 0;
|
|
}
|
|
}
|
|
catch( Exception::FileNotFound& )
|
|
{
|
|
return 0; // no SYSTEM.CNF, not a PS1/PS2 disc.
|
|
}
|
|
|
|
#ifdef PCSX2_DEVBUILD
|
|
FILE *fp;
|
|
int i;
|
|
char buffer[512];
|
|
|
|
fp = fopen("System.map", "r");
|
|
if( fp == NULL ) return 2;
|
|
|
|
u32 addr;
|
|
|
|
Console.WriteLn("Loading System.map...");
|
|
while (!feof(fp)) {
|
|
fseek(fp, 8, SEEK_CUR);
|
|
buffer[0] = '0'; buffer[1] = 'x';
|
|
for (i=2; i<10; i++) buffer[i] = fgetc(fp); buffer[i] = 0;
|
|
addr = strtoul(buffer, (char**)NULL, 0);
|
|
fseek(fp, 3, SEEK_CUR);
|
|
for (i=0; i<512; i++) {
|
|
buffer[i] = fgetc(fp);
|
|
if (buffer[i] == '\n' || buffer[i] == 0) break;
|
|
}
|
|
if (buffer[i] == 0) break;
|
|
buffer[i] = 0;
|
|
|
|
R5900::disR5900AddSym(addr, buffer);
|
|
}
|
|
fclose(fp);
|
|
#endif
|
|
|
|
return 2;
|
|
}
|