Skip to content
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

Document adding -fvisibility=hidden flag for macOS users #460

Merged
merged 2 commits into from
Apr 2, 2019
Merged

Document adding -fvisibility=hidden flag for macOS users #460

merged 2 commits into from
Apr 2, 2019

Conversation

NickNaso
Copy link
Member

Added section to remember the macOS user to add the -fvisibility=hidden flag.

Added section to remember the macOS user to add the `-fvisibility=hidden` flag.
@mhdawson mhdawson mentioned this pull request Mar 20, 2019
4 tasks
Copy link
Contributor

@gabrielschulhof gabrielschulhof left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM with some nits.

doc/setup.md Outdated Show resolved Hide resolved
doc/setup.md Outdated Show resolved Hide resolved
Copy link
Contributor

@gabrielschulhof gabrielschulhof left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM with one minor nit: Please start the commit message with a verb in the imperative, like
"Document adding -fvisibility=hidden flag for macOS users"

@NickNaso NickNaso changed the title -fvisibility=hidden flag for macOS user Document adding -fvisibility=hidden flag for macOS users Apr 1, 2019
Copy link
Member

@mhdawson mhdawson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@vweevers
Copy link

@NickNaso @gabrielschulhof Could you summarize why you recommend -fvisibility=hidden? Are there any risks / downsides? It seems to stem from #456, is that right?

I'm asking because leveldown has a similar issue (Level/leveldown#687) and -fvisibility=hidden might solve it but I'm not sure what the implications are for a native addon.

Thanks!

@NickNaso
Copy link
Member Author

NickNaso commented Oct 21, 2019

Hi @vweevers,
what I remember is that on OSX symbols are exported by default, and they overlap if two different copies of the same symbol appear in a process. This means that if you build two different native add-ons and export the same symbol on OSX there is a risk to call a function on the wrong native add-on. In our case #456 we built two different native add-ons one that support the exception (binding.node) and another not (binding_noexcept.node) and we discovered that on OSX loading the native add-ons on the same process it could happens that a function within the wrong native add-on will be called.
@gabrielschulhof reported this to node-gyp maintainers you can follow the status of the duplicate symbol check here on this PR nodejs/node-gyp#1891
The right solution for now is to follow the suggestion proposed here: https://github.com/nodejs/node-addon-api/blob/master/doc/setup.md#installation-and-usage at point 4.
I hope that this answer help to you.

@mvduin
Copy link

mvduin commented Jul 13, 2022

Note that -fvisibility=hidden should be enabled not just on macOS but also on Linux and every other platform that supports it, which I'm guessing is probably every platform except Windows where this behaviour is default anyway (more or less), not just for node addons but for shared libraries in general.

Even if it happens to not crash, you obviously don't want symbols from one module to unintentionally resolve against the same symbol defined in a different module, that's a recipe for horrifyingly weird problems that only occur when certain combinations of modules are loaded. This is especially true for libraries like node-addon-api which is partially parameterized through preprocessor macros.

Note that the disturbing default behaviour for shared libraries on ELF-based targets (such as Linux) is that every symbol with external linkage is resolved at runtime by the dynamic linker even if that symbol is defined in the same file, i.e. if you write:

void foo() {}
void bar() { foo(); }

then bar may in fact call foo imported from elsewhere rather than the one defined right above it. This also applies to functions declared as inline if the compiler chose to not actually inline it, and it prevents inlining of functions that aren't explicitly declared as inline (such as inlining foo into bar above).

As a result, -fvisibility=hidden also tends to significiantly reduce the size of and improve the performance of shared libraries.

kevindavies8 added a commit to kevindavies8/node-addon-api-Develop that referenced this pull request Aug 24, 2022
* -fvisibility=hidden flag for macOS user

Added section to remember the macOS user to add the `-fvisibility=hidden` flag.

PR-URL: nodejs/node-addon-api#460
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Marlyfleitas added a commit to Marlyfleitas/node-api-addon-Development that referenced this pull request Aug 26, 2022
* -fvisibility=hidden flag for macOS user

Added section to remember the macOS user to add the `-fvisibility=hidden` flag.

PR-URL: nodejs/node-addon-api#460
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
wroy7860 added a commit to wroy7860/addon-api-benchmark-node that referenced this pull request Sep 19, 2022
* -fvisibility=hidden flag for macOS user

Added section to remember the macOS user to add the `-fvisibility=hidden` flag.

PR-URL: nodejs/node-addon-api#460
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
austinli64 added a commit to austinli64/node-addon-api that referenced this pull request May 9, 2023
* -fvisibility=hidden flag for macOS user

Added section to remember the macOS user to add the `-fvisibility=hidden` flag.

PR-URL: nodejs/node-addon-api#460
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
johnfrench3 pushed a commit to johnfrench3/node-addon-api-git that referenced this pull request Aug 11, 2023
* -fvisibility=hidden flag for macOS user

Added section to remember the macOS user to add the `-fvisibility=hidden` flag.

PR-URL: nodejs/node-addon-api#460
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants