-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-exporting C symbols for cdylib #2771
Comments
Does making them |
@petrochenkov Declaring |
Can we please have some focus brought to this. For many applications which combine both C and Rust and are trying to create a |
It seems clear that we need this functionality in one form or other. Ideally we'd have an RFC to determine who this should be implemented exactly. @aturon, how do we handle this, it being the impl period now? Or maybe we can decide on a straightforward way how to express this without an RFC. |
I'll leave this nominated for now so it doesn't fall off the radar. Hopefully we'll have a clearer picture on how to proceed before the next dev-tools meeting. |
I think we could approach the procedural issue here in a few ways:
It's not like RFCs are prohibited per se, more that we're trying to focus the teams on executing already-planned work. This is small enough that it's probably not a big distraction. I do think that in general this area of Rust could use more design focus, FWIW. |
Currently the recommended way to export a function that you define yourself from a
The crate root being the root of the |
cc @rust-lang/lang, adding this to our list of issues that need to be triaged. |
We discussed this one in the lang team meeting. This does need an RFC; how quickly that progresses will depend on how smoothly and non-bikesheddy the RFC goes. The approach of making symbols public if Also, we should stop automatically exporting such symbols from a |
Oh, this is great. What is done now (if I remember correctly), e.g. heuristic-based link-time visibility based on sum of factors like crate type, ABI (non- |
I do think it'd be nice to have a broader RFC that explicitly defines when symbols should be exported, across all use-cases. |
I just stumbled over this. Is there any workaround that we can use in the meantime? In the worst case I could wrapp all 3rd party functions with my own: extern crate saltyrtc_client_ffi;
pub type salty_event_loop_t = saltyrtc_client_ffi::salty_event_loop_t;
#[no_mangle]
pub extern "C" fn salty_event_loop_new() -> *mut salty_event_loop_t {
saltyrtc_client_ffi::salty_event_loop_new()
} ...but I hope there's a better way than this. If not, this is really a stumbling block when trying to reuse code from FFI compatible crates... |
I just encountered this issue at work. We've got a @dbrgn for now I've found a really crummy workaround.... I'm creating a macro which will manually re-export the symbols. So you "only" need to call It feels horrible, but it works... #[doc(hidden)]
#[macro_export]
macro_rules! export_c_symbol {
(fn $name:ident($( $arg:ident : $type:ty ),*) -> $ret:ty) => {
#[no_mangle]
pub unsafe extern "C" fn $name($( $arg : $type),*) -> $ret {
$crate::error_handling::$name($( $arg ),*)
}
};
(fn $name:ident($( $arg:ident : $type:ty ),*)) => {
export_c_symbol!(fn $name($( $arg : $type),*) -> ());
}
}
/// As a workaround for rust-lang/rust#6342, you can use this macro to make sure
/// the symbols for `ffi_utils`'s error handling are correctly exported in your
/// `cdylib`.
#[macro_export]
macro_rules! export_error_handling_functions {
() => {
export_c_symbol!(fn clear_last_error());
export_c_symbol!(fn last_error_length() -> ::libc::c_int);
export_c_symbol!(fn last_error_length_utf16() -> ::libc::c_int);
export_c_symbol!(fn error_message_utf8(buf: *mut ::libc::c_char, length: ::libc::c_int) -> ::libc::c_int);
export_c_symbol!(fn error_message_utf16(buf: *mut u16, length: ::libc::c_int) -> ::libc::c_int);
};
} |
@Michael-F-Bryan thanks. yeah, there's probably currently no way around wrapping these functions. by the way, you should try to avoid two |
Yep. The first time I ran the test suite with that macro I got lots of linker errors due to duplicate symbols. I "fixed" that by removing the Interestingly, I never got the "duplicate symbols" error when compiling the DLL in release mode. I'm assuming rustc/LLVM inlines the original functions and then strips out their now "unused" function symbols before they get to the linking stage. |
It doesn't happen when linking together two libraries with rustc, but it happened to me when trying to link two independent shared libraries (compiled from Rust) into an iOS app. There might be a way to extract the Rust stdlib into a separate shared library (similar to the way it's done with libc, if I understand this correctly), but I haven't found a way to do this so far. But that's probably offtopic here :) |
Stepped into this issue as well. Unfortunately the solution with function wrapper does not work for me as I have to reexport arrays. |
The workaround does not work for me either as I need to (re)export variadic functions which cannot be defined in Rust. |
@tanriol While it doesn't address your immediate issue, in case you haven't already seen it, #2137 and rust-lang/rust#44930 may help you in the future. |
This required some shenanigans with the probestack definition to get it exported in the final `lucet_runtime.so`. I left a TODO in the code to revert it once [this Rust issue](https://github.com/rust-lang/rust/issues/36342) is fixed.
Moving the stack probe into the compiled Lucet modules lets us dodge Rust's current inability to reexport dynamic symbols (see <https://github.com/rust-lang/rust/issues/36342>). It loses a small amount of fidelity that we got with stack overflow traps previously, as we can't distinguish a stack overflow originating in the stack probe from anywhere else. The C test suites are now parameterized over region, much like the Rust test suites.
I encountered this issue on Linux using rust 1.33.0. The trick to set |
I just ran into, and spent hours, debugging this. :( In my case I can trivially wrap it but it'd be nice if I could tell Rust not to throw away my symbol :( |
Bumped into it, spent more than a day troubleshooting this :( Do we have ideas on how to go forward on this issue ? |
Previously, the overriding implementations were defined in a C++ source file compiled and linked by the use of `cc`. It didn't really work because their symbols weren't exported by the final cdylib file. This commit works around the issue by re-implementing them in Rust code. This is a sketchy hack at best since it makes assumptions about the target environment's C++ mangling scheme and calling conventions. This might be made unnecessary by [rust-lang/rfcs#2771][1]. [1]: rust-lang/rfcs#2771
Ideally, the overriding implementations should be defined in a C++ source file compiled and linked by the use of `cc`. This doesn't work at the moment because their symbols aren't exported by the final cdylib file. This commit works around the issue by implementing them in Rust code. This is a sketchy hack at best since it makes assumptions about the target environment's C++ mangling scheme and calling conventions. This work-around might be made unnecessary by [rust-lang/rfcs#2771][1]. [1]: rust-lang/rfcs#2771
six years later.. ._@~·· rust has made me cry. I was promised a rose garden, but instead all my extern C were dropped. (and that was after working around Cargo's beastly lack of feature forwarding that I had to hack around with RUSTFLAGS tunnelling --cfg feature=...) |
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04 when we use GCC ranlib (used by default with `cc` crate version >= 1.0.74[2]). LTO is incompatible with `__asm__(".symver ..")` because LTO uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[3] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[4]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: Binutils ranlib was used before, see discussion in rust-lang/cc-rs#735 for full details. [3]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [4]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04 when we use GCC ranlib (used by default with `cc` crate version >= 1.0.74[2]). LTO is incompatible with `__asm__(".symver ..")` because LTO uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[3] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[4]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: Binutils ranlib was used before, see discussion in rust-lang/cc-rs#735 for full details. [3]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [4]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04 when we use GCC ranlib (used by default with `cc` crate version >= 1.0.74[2]). LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[3] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[4]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: Binutils ranlib was used before, see discussion in rust-lang/cc-rs#735 for full details. [3]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [4]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[2]. We could explicitly set `emit_rerun_if_env_changed(false)` to restore our hack, but it is better to fix the underlying problem outright. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[3] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[4]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [3]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [4]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[2]. Hence, would need to set `emit_rerun_if_env_changed(false)` for all `cc::Build` instances in `aziot-key-openssl-engine-shared` and its dependency graph to restore our hack for new `cc > 1.0.73` versions. This is not remotely practical. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[3] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[4]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [3]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [4]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[2]. Hence, would need to set `emit_rerun_if_env_changed(false)` for all `cc::Build` instances in `aziot-key-openssl-engine-shared` and its dependency graph to restore our hack for `cc > 1.0.73`. This is not remotely practical. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[3] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[4]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [3]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [4]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment[2]. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[3]. Hence, would need to set `emit_rerun_if_env_changed(false)` for all `cc::Build` instances in `aziot-key-openssl-engine-shared` and its dependency graph to restore our hack for `cc > 1.0.73`. This is not remotely practical. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[4] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[5]. [1]: https://wiki.ubuntu.com/ToolChain/LTO [2]: Azure@f66c155 [3]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [4]: `..@` instead of `..@@` since we do not define a version node name, meaning double-at leads to symbol duplication. [5]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[^1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment[^2]. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[^3]. Hence, would need to set `emit_rerun_if_env_changed(false)` for all `cc::Build` instances in `aziot-key-openssl-engine-shared` and its dependency graph to restore our hack for `cc > 1.0.73`. This is not remotely practical. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[^4] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[^5]. [^1]: https://wiki.ubuntu.com/ToolChain/LTO [^2]: Azure@f66c155 [^3]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [^4]: `..@` instead of `..@@` since we do not define a version node name, meaning `..@@` leads to symbol duplication. [^5]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[^1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment[^2]. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[^3]. Hence, would need to set `emit_rerun_if_env_changed(false)` for all `cc::Build` instances in `aziot-key-openssl-engine-shared` and its dependency graph to restore our hack for `cc > 1.0.73`. This is not remotely practical. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[^4] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[^5]. [^1]: https://wiki.ubuntu.com/ToolChain/LTO [^2]: f66c155 [^3]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [^4]: `..@` instead of `..@@` since we do not define a version node name, meaning `..@@` leads to symbol duplication. [^5]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
LTO is enabled by default for .deb packages starting in Ubuntu 21.04[^1], causing build failures on Ubuntu 22.04. Previously, we hacked around this by compiling outside of the `dpkg-buildpackage` environment[^2]. However, this hack stopped working when the `cc` crate began emitting `rerun-if-env-changed` in version `1.0.74`[^3]. Hence, would need to set `emit_rerun_if_env_changed(false)` for all `cc::Build` instances in `aziot-key-openssl-engine-shared` and its dependency graph to restore our hack for `cc > 1.0.73`. This is not remotely practical. LTO is incompatible with `__asm__(".symver ..")` because it uses the linker-script-provided exported symbols to determine what is safe to optimize out, and the linker script is naturally unaware of manually-exported symbols. We can work around this by adding `__attribute__((used))` to the functions we want to keep in the final object. Another option would be to use GCC's `__attribute__((symver("..@")))`[^4] directive, but this relies on too new of a toolchain version (GCC 10). Addendum 1: The fundamental reason for why LTO is a problem for `aziot-key-openssl-engine-shared` in the first place is that this crate uses what is, in effect, a "symbol stub" to hook Rust code into OpenSSL's engine macros. First, `build/engine.c` declares the engine function signature and uses OpenSSL's macros to expand the dynamic engine binding. This file is then compiled (but not linked) into an object that will become the dynamic library's public interface. The way this is accomplished is by linking the whole object into the `cdylib` (as opposed to only linking referenced functions). LTO requires us to go one step further by preventing the linker from optimizing out symbols not declared as globally-exported in `rustc`'s linker script, which does not know of the symbol declaration in the stub object. There is an open RFC request for allowing re-export of C symbols from `cdylib` crates: rust-lang/rfcs#2771. Addendum 2: When our supported platforms start shipping with GNU as >= 2.35 and/or Clang 13, we may want to add `,remove` to the `.symver` directive arguments to lift the restriction that `aziot-key-openssl-engine-shared` cannot be included in tests[^5]. [^1]: https://wiki.ubuntu.com/ToolChain/LTO [^2]: Azure@f66c155 [^3]: https://github.com/rust-lang/cc-rs/releases/tag/1.0.74 [^4]: `..@` instead of `..@@` since we do not define a version node name, meaning `..@@` leads to symbol duplication. [^5]: https://maskray.me/blog/2020-11-26-all-about-symbol-versioning
Give C symbols that need to be exported a `_C` suffix so that they can be linked into a Rust symbol with the correct name (Since we can't directly export from C/C++ with Rust+Cargo) See: rust-lang/rfcs#2771
Give C symbols that need to be exported a `_C` suffix so that they can be linked into a Rust symbol with the correct name (Since we can't directly export from C/C++ with Rust+Cargo) See: rust-lang/rfcs#2771
Any updates on this issue? |
I think (?) I may have found a workaround, if my understanding of this issue is correct. I have a project where I need to create a shared library that exports a bunch of no-mangle symbols that take C++ types as arguments (!). Not ideal for a lot of reasons, but the most salient one is that all of the rust tooling focused on exporting symbols from rust in a cdylib requires that the types be FFI-compatible. What I ended up trying is including some C++ code that exports the symbols I needed, then calls into rust as-needed, but I immediately ran into this issue because the exported symbols in my C++ code were being hidden during the cdylib build at some point. As it turns out, if you change your crate type to staticlib, the visibility of the C++ symbols does not change. I don't understand why, but I'm not about to question it. Once you have the static library you can turn it into a dynamic library. There may be a better way to do this but this is what I came up with. Working example here: https://github.com/ellenhp/bambu-farm/tree/a87ad3988ef859355f86170f1371f1e94caa6615 Sorry if I'm misunderstanding the bug, but hopefully this helps someone. |
For watchers of this issue, I've raised a relatively small RFC which covers a single narrow use-case: building a cdylib that wants to re-export a specific set symbols from a pre-built staticlib. Note that this RFC doesn't actually propose adding any functionality on Linux (I don't know about the status on Windows) - you can already do this today by adding There are a number of use-cases it doesn't cover, including:
The above are valid scenarios, but require a little more work than this first step I'm trying to make. If you think that the raised RFC precludes any of these other use-cases, please comment over there. @ellenhp that works fine, it just produces a cdylib larger than necessary - since a |
In an extern block, C symbols can be imported to Rust. When building Rust library into
dylib
, the symbols stay visible and can be used from C. However, when building into newly introducedcdylib
, the imported C symbols are no longer visible. I am not aware of a mechanism to re-export the C symbols.The text was updated successfully, but these errors were encountered: