自己変更コードに関する記事を見つけていくつかの例を試してみましたが、常にセグメンテーション違反が発生します。私が理解できる限り、メモリ権限に違反があります。コードセグメントは(r)ead / e(x)ecuteであるため、書き込みを試みるとこの障害が発生します。実行時またはそれ以前にメモリ権限を変更してプログラムをテストする方法はありますか?私はLinuxを使用しており、例はGASアセンブリで記述されています。
.extern memcpy
.section .data
string:
.asciz "whatever"
string_end:
.section .bss
.lcomm buf, string_end-string
.section .text
.globl main
main:
call changer
mov $string, %edx
label:
push string_end-string
push $buf
push $string
call memcpy
changer:
mov $offset_to_write, %esi
mov $label, %edi
mov $0xb, %ecx
loop1:
lodsb
stosb
loop loop1
ret
offset_to_write:
push 0
call exit
end:
したがって、osgxによって提案された変更後、ここに動作するコードがあります(実際には、アセンブル&リンク&実行するとクラッシュしますが、gdbを使用して監視すると、コードが変更されます!)
.extern memcpy
.section .data
string:
.asciz "Giorgos"
string_end:
.section .bss
.lcomm buf, string_end-string
.section .text
.globl main
main:
lea (main), %esi # get the start of memory region to
# change its permissions (smc-enabled)
andl $0xFFFFF000, %esi # align to start of a pagesize
pushl $7 # permissions==r|w|x
pushl $4096 # page size
pushl %esi # computed start address
call mprotect
call changer # function that does smc
mov $string, %edx
label:
push string_end-string # this code will be overridden
push $buf # and never be executed!
push $string
call memcpy
changer:
mov $offset_to_write, %esi # simple copy bytes algorithm
mov $label, %edi
mov $0xb, %ecx
loop1:
lodsb
stosb
loop loop1
ret
offset_to_write: # these instructions will be
push $0 # executed eventually
call exit
end: