GrenderG / FreeDVDBoot

PlayStation 2 DVD Player Exploit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FreeDVDBoot

PlayStation 2 DVD Player Exploit. This allows you to burn your own PlayStation 2 homebrew discs and play them on an unmodified console as seen in the demo video. With uLaunchELF as the initial program, users can include multiple homebrew programs on the same disc.

For technical details please refer to my blog post.

Basic setup

Using prebuilt ISOs in this repo (PREBUILT ISOs folder).

Step 1: Identify your DVD Player Version

Boot your PlayStation 2 without any disc inserted, and press Triangle to identify which DVD Player version your console has. Still early in terms of support for different versions, check back here later for more support. Hopefully over time other developers from the scene will also contribute support for additional DVD Player versions.

Currently only support:

  • 3.04 (tested only region M in emulator so far, but guess all regions EUMACDGJ will work - with English language set in settings) - please ping me and will update this page when confirmed working on hardware.
  • 3.10 (all regions EUMACDGJ - with English language set in settings) - confirmed working on hardware by CTurt, and others. Only seems to work with English language.
  • 3.11 (all regions EUMACDGJ) - confirmed working on hardware by MrMario2011, and others. (Only seems to work with English language).

UPDATE: Experimental hybrid ISO for both 3.10 and 3.11 support merged into one now available, burn PREBUILT ISOs/hybrid 3.10 and 3.11.iso and set language to English. Confirmed working on 3.11.

Please don't bother trying on a non-supported firmware/language configuration, it won't work...

Step 2: Burn

Pre-built ISO files for supported DVD Players containing just uLaunchELF are provided in this repository for ease of use (which can be used to boot homebrew over a USB mass storage device). For example, if your DVD Player version is 3.10E, you would want to burn PREBUILT ISOs/3.10 only - all regions - English lang.iso.

You should use DVD-R with low burning speed (others may work, but they put more strain on PS2 laser), and make sure to finalise the disc as burning option. Otherwise, you might run into issues reading the disc.

Troubleshooting - please read if the above didn't work

Disc doesn't spin on slim console - press the lid down hard to ensure the sensors detect that the lid is closed.

PS2 says "unable to read disc" - this doesn't seem to be a problem with the exploit, but just that your DVD laser might not work, or at least can't read the disc you burned. Please try a regular DVD video first, or DVD game to ensure one of those works. If that works, make sure you are finalising your disc when burning, use a low write speed, and I recommend using DVD-R instead of any other type of DVD as those put more strain on the laser.

PS2 enters black screen - if your PS2 DVD laser is really worn out, or you are using something difficult to read like DVD+RW burned on high speed, it might take some time before uLaunchELF actually starts. Please try waiting 3 minutes or so, per this comment.

Also try cleaning the disc to remove dust, and try verifying the burn on PC.

Try setting your console language to English, as that affects some versions of the exploit, and English language is the only one I tested.

Custom disc setup

If you intend to make your own image containing additional homebrew / modified initial loader, please read on. Step 1 is the same; identify your firmware version.

Step 2: Copy your homebrew

Once you've identified your console's DVD Player version, copy all of the homebrew you would like to include on the disc into that directory in the Filesystem (EG: Filesystem/3.10EU/).

Step 3: Make an image

Once you've placed all the homebrew files you'd like into the directory, generate a UDF image of the directory. The easiest way is probably to install genisoimage (comes pre-installed on many Linux distributions like Ubuntu) or mkisofs and run the following (where exploit.iso is the output and Filesystem/3.10 is the directory containing VIDEO_TS and any homebrew):

genisoimage -udf -o exploit.iso Filesystems/3.10

Step 4: Test and burn

I would recommend you test in PCSX2 first, but since PCSX2 doesn't support loading the DVD Player, you have to decrypt and repack it yourself, which is beyond the scope of this README. With that said, if you aren't touching anything in VIDEO_TS, there shouldn't really be any reason for the exploit to fail.

OPTIONAL: Replace the initial program

I've included uLaunchELF recompiled with DVD support as the default initial program. It presents a menu which allows you to select any of the homebrew programs you chose to include on the disc (and also allows booting from USB).

Alternatively, if you would rather just boot into a single homebrew application, the initial program the exploit attempts to boot is located at VIDEO_TS/VTS_02_0.IFO, replace it with your desired ELF file, with the below caveat that compatibility might be lower than if you booted a program through uLaunchELF:

For the initial release, I didn't bother to reimplement a couple of functions used by the loader, so it requires that the ELF you load doesn't overwrite those functions I use (those are around 0x84000 - 0x85fff and 0x250000 - 0x29ffff). I will probably remove this limitation in the future, but all ELFs I could find were fine with this limitation.

You can run readelf -l to verify your executable satisfies this requirement. For example, this Tetris homebrew just uses 0x00100000 - 0x0017a940:

$ readelf -l VTS_02_0.IFO

Elf file type is EXEC (Executable file)
Entry point 0x104490
There is 1 program header, starting at offset 52

Program Headers:
  Type           Offset   VirtAddr   PhysAddr   FileSiz MemSiz  Flg Align
  LOAD           0x001000 0x00100000 0x00100000 0x72ef4 0x7a940 RWE 0x1000

 Section to Segment mapping:
  Segment Sections...
   00     .text .ctors .dtors .rodata .data .jcr .sdata .sbss .bss

DEVELOPMENT: Replacing the loader payload

The default payload will boot VIDEO_TS/VTS_02_0.IFO as an ELF file, but tweaks might be desired to improve compatibility, or maybe changing the behaviour to boot BOOT.ELF instead for instance.

If you wish to update the loader payload, run build.sh inside PAYLOAD directory, and copy the output fullpayload.bin to VIDEO_TS/VIDEO_TS.IFO at offset 0x2bb4 (for 3.10E).

PORTING:

Please read my technical writeup, to understand how the exploit works. I've also provided some notes about porting in the porting notes.txt file.

About

PlayStation 2 DVD Player Exploit


Languages

Language:C 65.5%Language:Assembly 21.1%Language:Shell 13.5%