2016-12-04 05:06:16 +08:00
|
|
|
Title: Stack Protection Support
|
|
|
|
|
|
|
|
Description:
|
|
|
|
|
2017-04-09 23:50:18 +08:00
|
|
|
This test verifies that stack canaries operate as expected.
|
2016-12-04 05:06:16 +08:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Building and Running Project:
|
|
|
|
|
2017-04-09 23:50:18 +08:00
|
|
|
This project outputs to the console. It can be built and executed
|
2016-12-04 05:06:16 +08:00
|
|
|
on QEMU as follows:
|
|
|
|
|
2017-01-08 05:31:34 +08:00
|
|
|
make run
|
2016-12-04 05:06:16 +08:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Troubleshooting:
|
|
|
|
|
|
|
|
Problems caused by out-dated project information can be addressed by
|
|
|
|
issuing one of the following commands then rebuilding the project:
|
|
|
|
|
|
|
|
make clean # discard results of previous builds
|
|
|
|
# but keep existing configuration info
|
|
|
|
or
|
|
|
|
make pristine # discard results of previous builds
|
|
|
|
# and restore pre-defined configuration info
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Sample Output:
|
|
|
|
tc_start() - Test Stack Protection Canary
|
|
|
|
|
|
|
|
Starts main
|
|
|
|
Starts alternate_thread
|
|
|
|
alternate_thread: Input string is too long and stack overflowed!
|
|
|
|
|
|
|
|
***** Stack Check Fail! *****
|
|
|
|
Current thread ID = 0x00103180
|
|
|
|
Faulting segment:address = 0xdead:0xdeaddead
|
|
|
|
eax: 0xdeaddead, ebx: 0xdeaddead, ecx: 0xdeaddead, edx: 0xdeaddead
|
|
|
|
esi: 0xdeaddead, edi: 0xdeaddead, ebp: 0deaddead, esp: 0xdeaddead
|
|
|
|
eflags: 0xdeaddead
|
|
|
|
Fatal fault in thread 0x00103180! Aborting.
|
|
|
|
main: Stack ok
|
|
|
|
main: Stack ok
|
|
|
|
main: Stack ok
|
|
|
|
main: Stack ok
|
|
|
|
main: Stack ok
|
|
|
|
main: Stack ok
|
|
|
|
===================================================================
|
|
|
|
PASS - main.
|
|
|
|
===================================================================
|
|
|
|
PROJECT EXECUTION SUCCESSFUL
|