Last active
June 24, 2020 23:21
-
-
Save arbruijn/a3a9069570bc68e8fb85c44bad23c461 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -p0777 | |
# Usage: coff-to-djgpp.pl < windows-coff.o > djgpp-coff.o | |
# | |
# renames .rdata section to .text, changes relative relocation format | |
# get coff header | |
my($magic, $nsec, $tim, $sym, $nsym, $optsz) = unpack("vvVVVv", $_); | |
# loop over all sections | |
for ($i = 0; $i < $nsec; $i++) { | |
$ofs = 20 + $optsz + $i * 40; | |
# rename .rdata to .text | |
if (substr($_, $ofs, 8) eq ".rdata\0\0") { | |
$_ = substr($_, 0, $ofs). | |
".text\0\0\0".substr($_, $ofs + 8) | |
} | |
# get section header | |
my($n1, $n2, $vsize, $rva, $size, $data, $reloc, $lin, $nreloc) = unpack("VVVVVVVVv", substr($_, $ofs, 40)); | |
# loop over all relocations | |
for ($j = 0; $j < $nreloc; $j++) { | |
$ro = $reloc + $j * 10; | |
# get relocation | |
my($adr, $idx, $tp) = unpack("VVv", substr($_, $ro, 10)); | |
if ($tp == 20) { # relative relocation? | |
# adjust original value of relative relocation to -address | |
my $o = $data + $adr; | |
my($v) = unpack("V", substr($_, $o, 4)); | |
$_ = substr($_, 0, $o).pack("V", -($adr + 4)).substr($_, $o + 4) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment