Skip to content

Commit

Permalink
rewriter: Move call gates for non-static address-taken functions to s…
Browse files Browse the repository at this point in the history
…ource files defining the target

These call gates were originally defined in the call gate .so for simplicity.
Moving them to the source file defining the original address-taken function
simplifies control-flow since it no longer requies cross-DSO calls and makes it
possible to support programs that are intended to be compiled with
-fvisibility=hidden since functions that may have hidden are only referenced by
call gates within the DSO that defines them. Closes #435.
  • Loading branch information
ayrtonm committed Nov 12, 2024
1 parent 07a52ab commit 64ac630
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 12 deletions.
2 changes: 1 addition & 1 deletion tools/rewriter/GenCallAsm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ std::string emit_asm_wrapper(AbiSignature &sig,

add_comment_line(aw, "Wrapper for "s + sig_string(sig, target_name) + ":");
add_asm_line(aw, ".text");
if (!as_macro) {
if (kind != WrapperKind::PointerToStatic) {
add_asm_line(aw, ".global "s + wrapper_name);
} else {
add_asm_line(aw, ".local "s + wrapper_name);
Expand Down
2 changes: 2 additions & 0 deletions tools/rewriter/GenCallAsm.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ enum class WrapperKind {
Direct,
// Indirect call through a pointer sent to another compartment
Pointer,
// Indirect call through a pointer sent to another compartment
PointerToStatic,
// Indirect call through a pointer received from another compartment
IndirectCallsite,
};
Expand Down
44 changes: 33 additions & 11 deletions tools/rewriter/SourceRewriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -911,6 +911,8 @@ class FnDecl : public RefactoringCallback {
if (definition) {
defined_fns[pkey].insert(fn_name);
fn_pkeys[fn_name] = pkey;
Filename filename = get_expansion_filename(fn_node->getLocation(), sm);
fn_definitions[fn_name] = filename;
} else {
declared_fns[pkey].insert(fn_name);
}
Expand All @@ -920,6 +922,7 @@ class FnDecl : public RefactoringCallback {
std::set<Function> declared_fns[MAX_PKEYS];
std::map<Function, AbiSignature> abi_signatures;
std::map<Function, Pkey> fn_pkeys;
std::map<Function, Filename> fn_definitions;
};

static void create_file(llvm::raw_fd_ostream *file[MAX_PKEYS], int i, const char *extension) {
Expand Down Expand Up @@ -1418,8 +1421,20 @@ int main(int argc, const char **argv) {
}

std::cout << "Generating function pointer wrappers\n";
std::string macros_defining_wrappers;
/*
* This loops over all non-static address-taken functions but we only want to
* define one call gate for each so we need to track them in case a function
* has its address taken in multiple places
*/
std::set<Function> generated_wrappers = {};
// Define wrappers for function pointers (i.e. those referenced by IA2_FN)
for (const auto &[fn_name, opaque] : ptr_expr_pass.addr_taken_fns) {
if (generated_wrappers.contains(fn_name)) {
continue;
}
llvm::errs() << " inserting " << fn_name << " into set\n";
generated_wrappers.insert(fn_name);
/*
* Declare these wrapper in the output header so that IA2_FN can reference
* them. e.g. extern struct IA2_fnptr_ZTSFiiE __ia2_foo;
Expand All @@ -1435,10 +1450,18 @@ int main(int argc, const char **argv) {
AbiSignature c_abi_sig = fn_decl_pass.abi_signatures[fn_name];
std::string asm_wrapper =
emit_asm_wrapper(c_abi_sig, wrapper_name, fn_name,
WrapperKind::Pointer, 0, target_pkey, Target);
wrapper_out << "asm(\n";
wrapper_out << asm_wrapper;
wrapper_out << ");\n";
WrapperKind::Pointer, 0, target_pkey, Target,
true /* as_macro */);
macros_defining_wrappers += "#define IA2_DEFINE_WRAPPER_"s + fn_name + " \\\n";
macros_defining_wrappers += "asm(\\\n";
macros_defining_wrappers += asm_wrapper;
macros_defining_wrappers += ");\n";

/* Invoke the macro we just defined in the source file defining the target function */
auto filename = fn_decl_pass.fn_definitions[fn_name];
std::ofstream source_file(filename, std::ios::app);
source_file << "IA2_DEFINE_WRAPPER(" << fn_name << ")\n";

} else {
header_out << "asm(\n";
header_out << " \".set " << wrapper_name << ", __real_" << fn_name << "\\n\"\n";
Expand All @@ -1449,7 +1472,6 @@ int main(int argc, const char **argv) {
std::cout << "Generating function pointer wrappers for static functions\n";
// Define wrappers for pointers to static functions (also those referenced by
// IA2_FN)
std::string static_wrappers;
for (const auto &[filename, addr_taken_fns] :
ptr_expr_pass.internal_addr_taken_fns) {

Expand All @@ -1467,12 +1489,12 @@ int main(int argc, const char **argv) {
AbiSignature c_abi_sig = fn_decl_pass.abi_signatures[fn_name];

std::string asm_wrapper = emit_asm_wrapper(
c_abi_sig, wrapper_name, fn_name, WrapperKind::Pointer, 0,
c_abi_sig, wrapper_name, fn_name, WrapperKind::PointerToStatic, 0,
target_pkey, Target, true /* as_macro */);
static_wrappers += "#define IA2_DEFINE_WRAPPER_"s + fn_name + " \\\n";
static_wrappers += "asm(\\\n";
static_wrappers += asm_wrapper;
static_wrappers += ");\n";
macros_defining_wrappers += "#define IA2_DEFINE_WRAPPER_"s + fn_name + " \\\n";
macros_defining_wrappers += "asm(\\\n";
macros_defining_wrappers += asm_wrapper;
macros_defining_wrappers += ");\n";

header_out << "extern " << opaque << " " << wrapper_name << ";\n";

Expand All @@ -1490,7 +1512,7 @@ int main(int argc, const char **argv) {
}
header_out << "asm(\"__libia2_abort:\\n\"\n"
<< " \"" << undef_insn << "\");\n";
header_out << static_wrappers.c_str();
header_out << macros_defining_wrappers.c_str();

for (int i = 0; i < num_pkeys; i++) {
if (ld_args_out[i] != nullptr) {
Expand Down

0 comments on commit 64ac630

Please sign in to comment.