2009-06-27 00:47:03 +08:00
|
|
|
//===-- enable_execute_stack_test.c - Test __enable_execute_stack ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:13:33 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2009-06-27 00:47:03 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern void __clear_cache(void* start, void* end);
|
|
|
|
extern void __enable_execute_stack(void* addr);
|
|
|
|
|
|
|
|
typedef int (*pfunc)(void);
|
|
|
|
|
|
|
|
int func1()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int func2()
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2009-10-28 23:54:04 +08:00
|
|
|
unsigned char execution_buffer[128];
|
|
|
|
// mark stack page containing execution_buffer to be executable
|
|
|
|
__enable_execute_stack(execution_buffer);
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
// verify you can copy and execute a function
|
2009-10-28 23:54:04 +08:00
|
|
|
memcpy(execution_buffer, (void *)(uintptr_t)&func1, 128);
|
2009-06-27 00:47:03 +08:00
|
|
|
__clear_cache(execution_buffer, &execution_buffer[128]);
|
2009-10-28 23:54:04 +08:00
|
|
|
pfunc f1 = (pfunc)(uintptr_t)execution_buffer;
|
2009-06-27 00:47:03 +08:00
|
|
|
if ( (*f1)() != 1 )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// verify you can overwrite a function with another
|
2009-10-28 23:54:04 +08:00
|
|
|
memcpy(execution_buffer, (void *)(uintptr_t)&func2, 128);
|
2009-06-27 00:47:03 +08:00
|
|
|
__clear_cache(execution_buffer, &execution_buffer[128]);
|
2009-10-28 23:54:04 +08:00
|
|
|
pfunc f2 = (pfunc)(uintptr_t)execution_buffer;
|
2009-06-27 00:47:03 +08:00
|
|
|
if ( (*f2)() != 2 )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|