plugin: use RTLD_LOCAL instead of RTLD_GLOBAL when loading library
authorRafał Miłecki <rafal@milecki.pl>
Thu, 9 Nov 2017 14:08:16 +0000 (15:08 +0100)
committerRafał Miłecki <rafal@milecki.pl>
Thu, 9 Nov 2017 14:49:15 +0000 (15:49 +0100)
commit9a8640183c031ece7742fd58d8c7927863c96cf7
treea978d2aaa2ded02f74fc19c8cb7a1a26992065fa
parent0577cfc1acdbaf30c31090e75045ba58d6dd8a78
plugin: use RTLD_LOCAL instead of RTLD_GLOBAL when loading library

RTLD_GLOBAL was used to allow plugins use each other symbols but this
facility was (most likely) never used and is a bad design anyway. If
there is a common code it should just go to a library.

Using RTLD_LOCAL on the other hand saves us from conflicting symbols
used by different plugins. An example can be iwinfo plugin using libnl.
If there appears to be another plugin using incompatible netlink
implementation this will result in a problem. Both plugins will start
using the same libnl which will break one of them.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Acked-by: Jo-Philipp Wich <jo@mein.io>
plugin.c