-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve static address taken function rewriting (#447)
* Add static addr taken function test and fix bug. Fixes a bug when the static function and its use are in different files (i.e. function definition is in a header). * Handle static function declaration that starts with a macro expansion * Disable identically named static function
- Loading branch information
Showing
6 changed files
with
102 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
define_shared_lib( | ||
SRCS lib.c | ||
NEEDS_LD_WRAP | ||
PKEY 2 | ||
) | ||
|
||
define_test( | ||
SRCS main.c | ||
NEEDS_LD_WRAP | ||
PKEY 1 | ||
CRITERION_TEST | ||
) | ||
|
||
define_ia2_wrapper() |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#pragma once | ||
|
||
#define LOCAL static | ||
|
||
typedef void (*fn_ptr_ty)(void); | ||
|
||
static void inline_noop(void) { | ||
printf("called %s defined in header\n", __func__); | ||
} | ||
|
||
fn_ptr_ty *get_ptrs_in_main(void); | ||
fn_ptr_ty *get_ptrs_in_lib(void); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include <criterion/criterion.h> | ||
#include <criterion/logging.h> | ||
#include <ia2.h> | ||
|
||
#define IA2_COMPARTMENT 2 | ||
#include <ia2_compartment_init.inc> | ||
|
||
#include "static_fns.h" | ||
|
||
static void duplicate_noop(void) { | ||
printf("called %s in library\n", __func__); | ||
} | ||
|
||
static void identical_name(void) { | ||
static int x = 4; | ||
printf("%s in library read x = %d\n", __func__, x); | ||
} | ||
|
||
static fn_ptr_ty ptrs[3] IA2_SHARED_DATA = { | ||
inline_noop, duplicate_noop, identical_name | ||
}; | ||
|
||
fn_ptr_ty *get_ptrs_in_lib(void) { | ||
return ptrs; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#include <criterion/criterion.h> | ||
#include <criterion/logging.h> | ||
#include <ia2.h> | ||
|
||
INIT_RUNTIME(2); | ||
#define IA2_COMPARTMENT 1 | ||
#include <ia2_compartment_init.inc> | ||
|
||
#include "static_fns.h" | ||
|
||
static void duplicate_noop(void) { | ||
printf("called %s in main binary\n", __func__); | ||
} | ||
|
||
LOCAL void macro_attr_noop(void) { | ||
printf("called %s in main binary\n", __func__); | ||
} | ||
|
||
// static void identical_name(void) { | ||
// static int x = 3; | ||
// printf("%s in main binary read x = %d\n", __func__, x); | ||
// } | ||
|
||
static fn_ptr_ty ptrs[] IA2_SHARED_DATA = { | ||
inline_noop, duplicate_noop, /* identical_name, */ macro_attr_noop, | ||
}; | ||
|
||
fn_ptr_ty *get_ptrs_in_main(void) { | ||
return ptrs; | ||
} | ||
|
||
Test(static_addr_taken, call_ptrs_in_main) { | ||
for (int i = 0; i < sizeof(ptrs) / sizeof(ptrs[0]); i++) { | ||
ptrs[i](); | ||
} | ||
} | ||
|
||
Test(static_addr_taken, call_ptr_from_lib) { | ||
fn_ptr_ty *lib_ptrs = get_ptrs_in_lib(); | ||
for (int i = 0; i < 3; i++) { | ||
lib_ptrs[i](); | ||
} | ||
} |
This file contains 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