Static linking improves security and updating
Published: Monday, Feb 22, 2010 Last modified: Thursday, Nov 14, 2024
- http://www.ksplice.com
- http://www.redbend.com
- http://blog.garbe.us/2008/02/08/01_Static_linking
- Worse is better general Mercurial binary diff
- Rsync is also a great tool for binary updates
- http://patent-warrior.blogspot.com/2009/10/red-bend-v-google-chrome-no-damages.html
- http://dev.chromium.org/developers/design-documents/software-updates-courgette
Despite what GNU and opensource projects think, statically built apps are the way to go.
Security benefits of statically built binaries
Shared libraries are often touted as being good for security. No need to rebuild, you just replace the binary and everything linked to say an updated libpng.so gets the security fix.
Likewise one security problem in a shared library makes all the binaries dependent on it vulnerable.
The good security benefit of statically built libararies is that you elimate the library path. So you can’t hack binaries like so:
LD_PRELOAD=/usr/lib/libpng12vulnerable.so /usr/bin/firefox
Or perhaps a binary with setuid right escalation.
Also since statically built binaries only compile in the object code they actually use from the library, the surface area of the attack is greatly reduced.
As we’ve seen in the last couple of months, updates to libjpeg and libpng can also involve ABI changes, meaning complete rebuilds in any case.
Please read the stali FAQ for more argumentation.