Files
upx/src/stub/src/i386-linux.elf.interp-entry.S
T
2006-08-16 15:29:11 +02:00

183 lines
4.6 KiB
ArmAsm

/*
; i386-linux.elf.interp-entry.S -- Linux separate ELF PT_INTERP
;
; This file is part of the UPX executable compressor.
;
; Copyright (C) 1996-2006 Markus Franz Xaver Johannes Oberhumer
; Copyright (C) 1996-2006 Laszlo Molnar
; Copyright (C) 2000-2006 John F. Reiser
; All Rights Reserved.
;
; UPX and the UCL library are free software; you can redistribute them
; and/or modify them under the terms of the GNU General Public License as
; published by the Free Software Foundation; either version 2 of
; the License, or (at your option) any later version.
;
; This program 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 this program; see the file COPYING.
; If not, write to the Free Software Foundation, Inc.,
; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;
; Markus F.X.J. Oberhumer Laszlo Molnar
; <mfx@users.sourceforge.net> <ml1050@users.sourceforge.net>
;
; John F. Reiser
; <jreiser@users.sourceforge.net>
;
*/
#include "arch/i386/macros.S"
// CPU 386
/*************************************************************************
// program entry point
// see glibc/sysdeps/i386/elf/start.S
**************************************************************************/
section LXPTI000
_start: .globl _start
//// int3
/*
;; How to debug this code: Uncomment the 'int3' breakpoint instruction above.
;; Build the stubs and upx. Compress a testcase, such as a copy of /bin/date.
;; Invoke gdb, and give a 'run' command. Define a single-step macro such as
;; define g
;; stepi
;; x/i $pc
;; end
;; and a step-over macro such as
;; define h
;; x/2i $pc
;; tbreak *$_
;; continue
;; x/i $pc
;; end
;; Step through the code; remember that <Enter> repeats the previous command.
;;
*/
call L200 // push address of get_funf
get_funf:
cmp eax, 0x46
mov ecx, unf46
je L110
cmp eax, 0x49
mov ecx, unf49
je L110
L120:
mov ecx, none
L110:
mov eax, ecx
none:
ret
#define M_NRV2B_LE32 2
#define M_NRV2D_LE32 5
#define M_NRV2E_LE32 8
#define M_CL1B_LE32 11
#define M_LZMA 14
L200:
call L300 // push address of get_fexp
get_fexp:
cmp eax, M_NRV2B_LE32
mov ecx, nrv2b
je L110
cmp eax, M_NRV2D_LE32
mov ecx, nrv2d
je L110
cmp eax, M_NRV2E_LE32
mov ecx, nrv2e
je L110
cmp eax, M_CL1B_LE32
mov ecx, cl1b
je L110
jmp L120
/*************************************************************************
// C callable decompressor
**************************************************************************/
section LXPTI040
nrv2b:
section LXPTI041
nrv2d:
section LXPTI042
nrv2e:
section LXPTI043
cl1b:
#define INP dword ptr [esp+8*4+1*4]
#define INS dword ptr [esp+8*4+2*4]
#define OUTP dword ptr [esp+8*4+3*4]
#define OUTS dword ptr [esp+8*4+4*4]
section LXPTI050
pusha
// cld
or ebp, -1
mov esi, INP
mov edi, OUTP
// align 8
#include "arch/i386/nrv2b_d32.S"
#include "arch/i386/nrv2d_d32.S"
#include "arch/i386/nrv2e_d32.S"
#include "arch/i386/cl1_d32.S"
#include "arch/i386/lzma_d.S"
section LXPTI090
jmp exp_done
section LXPTI091
// eax is 0 from decompressor code
//xor eax, eax ; return code
exp_done:
// check compressed size
mov edx, INP
add edx, INS
cmp esi, edx
jz .ok
dec eax
.ok:
// write back the uncompressed size
sub edi, OUTP
mov edx, OUTS
mov [edx], edi
mov [7*4 + esp], eax
popa
ret
cjt32 0
ctojr32
section LXPTI140
unf46:
section LXPTI141
unf49:
#define CTO8 dword ptr [esp+8*4+3*4]
section LXPTI150
pusha
mov edi,INP
mov ecx,INS
mov edx,CTO8
ckt32 edi, dl
section LXPTI160
popa
ret
section LXPTI200
L300:
eof:
// vi:ts=8:et:nowrap