havoc-remaster/tools/r2init.py
pyr0ball 27174a1c79 feat: NOCD patch boots Havoc on modern Windows (defeats CD copy protection)
Diagnosed and fixed the crash that killed HAVOC_NOCD.EXE ~1s after launch
(dgVoodoo window appears black, then the process exits). It was not a clean
exit: an ACCESS_VIOLATION (null-pointer read at VA 0x444E6A) during init.

Root cause is a copy-protection check in the WORLDS\ data-file loader
(0x42a480). It opens each file (GRAFIX/LAND/MAP/STUF) from both a local
"WORLDS\<name>" path and a CD-drive path (HAVOC.INI [SETUP] DRIVE=D:\), and
returns a valid stream only when the local open fails and the CD-drive open
succeeds. With files present locally and no D: drive it returned NULL, and the
GRAFIX loader (0x444db0) dereferenced that NULL without checking.

Fix: 14-byte patch at FO 0x29a2b rewrites the return decision to hand back the
successfully-opened local object. The game now boots to the title screen
("HAVOC(tm) by Reality Bytes"), responsive, main loop running.

- docs/PATCHES.md: full patch table (28 patches) + crash write-up
- tools/: RE + patching scripts (r2pipe disasm, minidump parser, ctypes
  debugger, PE/IAT/import analysis)
- run_probe.bat / run_and_log.bat: reliable native launch for repro
- .gitignore: exclude CD images, Ghidra install/project, dgVoodoo, *.ini

Diagnosed via WER minidumps (%LOCALAPPDATA%\CrashDumps) parsed in pure Python
(no cdb/windbg available).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01TN4Ytn3gdWRonNmHpisWQv
2026-07-03 09:29:59 -07:00

22 lines
830 B
Python

import r2pipe, sys, io
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace')
r2 = r2pipe.open("Z:/Development/devl/Havoc/HAVOC_NOCD.EXE",
["-e", "bin.relocs.apply=true"])
# 0x41868A is the only caller of 0x429CA0
# Let's see the context there and 0x418600 (init function)
print("=== 0x418600 context (init function, caller of pool init) ===")
print(r2.cmd("pd 80 @ 0x418600"))
print("\n=== 0x43A960 (gating function: arg2==0 -> run pool init) ===")
print(r2.cmd("pd 30 @ 0x43a960"))
# Also check what's at VA 0x429EC1 and VA 0x429F6C (other crash_stub callers in 0x429CA0 area)
print("\n=== 0x429EB3 (pool_alloc call near 0x429EC1) ===")
print(r2.cmd("pd 25 @ 0x429eb3"))
print("\n=== 0x429F5E (pool_alloc call near 0x429F6C) ===")
print(r2.cmd("pd 25 @ 0x429f5e"))
r2.quit()