[Spice-devel] [PATCH 1/2] Ensure that plugins cannot bypass version check

Frediano Ziglio fziglio at redhat.com
Tue Apr 17 18:11:21 UTC 2018


> 
> > On 17 Apr 2018, at 16:12, Frediano Ziglio <fziglio at redhat.com> wrote:
> > 
> >> 
> >> From: Christophe de Dinechin <dinechin at redhat.com>
> >> 
> >> This change addresses three issues related to plugin version checking:
> >> 
> >> 1. It is possible for plugins to bypass version checking or do it wrong
> >>   (as a matter of fact, the mjpeg fallback sets a bad example)
> >> 
> >> 2. The current plugin version check violates the C++ ODR, i.e.
> >>   it relies on undefined behaviors when the header used to compile
> >>   the plugin and to compile the agent are not identical,
> >> 
> >> 3. A major.minor numbering scheme is not ideal for ABI checks.
> >>   In particular, it makes it difficult to react to an incompatibility
> >>   that was detected post release.
> >> 
> >> [More info]
> >> 
> >> 1. Make it impossible to bypass version checking
> >> 
> >> The current code depends on the plugin implementing the version check
> >> correctly by calling PluginVersionIsCompatible. To make things worse,
> >> the only publicly available example gets this wrong and uses an
> >> ad-hoc version check, so anybody copy-pasting this code will get it
> >> wrong.
> >> 
> >> It is more robust to do the version check in the agent before calling
> >> any method in the plugin. It ensures that version checking cannot be
> >> bypassed, is done consistently and generates consistent error messages.
> >> 
> >> As an indication that the aproach is robust, the new check correctly
> >> refuses to load older plugins that use the old version checking method:
> >> 
> >>    spice-streaming-agent[5167]:
> >>        error loading plugin [...].so: no version information
> >> 
> > 
> > This is clear to everybody, doing from the agent avoid each plugin to
> > do the check on the version and we can do it safely before executing
> > any code in the plugin (library initialization aside).
> 
> As I pointed out in an early reply, library initialization is not much of an
> issue since it does not have access to the agent yet. So barring static
> entry points in the agent interface that could be called during init, we are
> OK.
> 
> > 
> >> 2. ODR-related problems
> >> 
> >> The C++ One Definition Rule (ODR) states that all translation units
> >> must see the same definitions. In the current code, when we call
> >> Agent::PluginVersionIsCompatible from the plugin, it is an ODR
> >> violation as soon as we have made any change in the Agent class
> >> compared to what the plugin was compiled against.
> >> 
> >> The current code therefore relies on implementation dependent knowlege
> >> of how virtual functions are laid out in the vtable, and puts
> >> unnecessary constraints on the changes allowed in the classes
> >> (e.g. it's not allowed to put anything before some member functions)
> >> 
> >> 3. Major.minor numbering scheme
> >> 
> >> The major.minor numbering scheme initially selected makes it harder
> >> to fixes cases where an incompatibility was detected after release.
> >> 
> >> For example, the major.minor version checking assumes that agent 1.21
> >> is compatible with plugins 1.21, 1.13 or 1.03. If later testing
> >> shows that 1.13 actually introduced an incompatiliy, you have to
> >> special-case 1.13 in the compatibiliy check.
> >> 
> >> An approach that does not have this problem is to rely on incremented
> >> version numbers, with a "current" and "oldest compatible" version
> >> number. This is used for example by libtools [1].
> >> 
> >> Since the change required for #1 and #2  introduces an ABI break,
> >> it is as good a time as any to also change the numbering scheme,
> >> since changing it later would introduce another unnecessary ABI break.
> >> 
> >> [1]
> >> https://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
> >> 
> > 
> > Reading all the replies looks like to me that what you are basically
> > doing with these changes is basically removing the minor from the
> > versioning
> > schema and making every change binary incompatible.
> 
> I don’t understand how you could reach that conclusion. If that was the case,
> there would be no “PluginInterfaceOldestCompatibleVersion” version in my
> proposal.
> 
> In reality, the numbering change I proposed offers the possibility to decide,
> for any release, what is the oldest compatible version, without having to
> necessarily have that oldest compatible be the latest.
> 
> In the example I gave above, I was indicating that version 20 was compatible
> with version 3, but that version 21 introduced a change that breaks
> compatibility not with version 20, but with versions earlier than 13. This
> can be expressed with my scheme easily by bumping the “oldest compatible”
> from 3 to 13 (without being forced to bump it to 21). By contrast, with the
> major.minor scheme, this kind of scenario requires special treatment.
> 
> When does this kind of scenario happen? Imagine we added support for
> loading/unloading plugins. Version 13 adds a new interface to unload
> plugins, and a new “unloadable plugin” entry point. Therefore, starting with
> version 13, the agent would try the new entry point first, and if it’s
> there, assume it can unload the plugin, otherwise fallback to the old method
> and mark the plugin as not-unloadable. Therefore, the change in version 13
> would still be binary compatible with version 3. Years later, in version 21,
> we decide to drop support for non-unloadable plugins. So now the agent
> refuses to load a plugin if it does not have the new entry point. In that
> case, we’d want to bump the “compatible version” to 13, since all plugins
> after 13 have that new entry point. The key win here is that we’d not have
> to force the last compatible version to be 21.
> 

I think this is more a MinimalVersion definition than a compatibility
version.
And by the way can be implemented also with major.minor, just the minimal
would be 1.13 instead of 13.

> This could mean years of differences in terms of binary compatibility. We
> could deprecate things slowly and offer graceful transitions.
> 
> 
> > 
> > libtool by itself uses major, minor to implement its numbering schema
> > that is the major minor schema is more flexible than libtool schema.
> > Major minor allows for instance to have different plugins or executables
> > installed
> > each in its major private directory or having multiple binary library
> > installed in a system.
> > 
> > If a plugin is compiled with version X and the agent if version Y
> > (obviously
> > having X != Y) a full ODR would require the definition of "Agent" (for
> > instance)
> > in version X would be the same of version Y. That is each version is not
> > compatible.
> 
> That has already been discussed with Christophe F. A full ODR is not the
> objective. The objective is to avoid violating the ODR while checking if the
> ODR violations we have are acceptable. Or as I wrote earlier, the code
> testing for binary compatibility should not assume some kind of binary
> compatibility to start with.
> 

Okay, this patch solves ODR for PluginVersionIsCompatible. But I think or we
consider ODR as a issue or not.

The practical question is, having:

class Something {
public:
   virtual void do_something(int param)=0;
};

how to extend it avoiding ODR violation and ABI change?
That is how do you plan to extend the interface in a compatible way?

Simply if you want to break the initial ABI to check the version you could
change the entry point name. Either way I agree that reading the version
with an entry point is safer.

Exporting an entry point from a library with a given name and structure
(in this case an unsigned number) is an ABI so the "the code
testing for binary compatibility should not assume some kind of binary
compatibility to start with" is basically doing the opposite assuming
an ABI.

> > 
> >> Signed-off-by: Christophe de Dinechin <dinechin at redhat.com>
> >> ---
> >> include/spice-streaming-agent/plugin.hpp | 50
> >> +++++++++++++++++---------------
> >> src/concrete-agent.cpp                   | 35 +++++++++++-----------
> >> src/concrete-agent.hpp                   |  4 ---
> >> src/mjpeg-fallback.cpp                   |  3 --
> >> 4 files changed, 45 insertions(+), 47 deletions(-)
> >> 
> >> diff --git a/include/spice-streaming-agent/plugin.hpp
> >> b/include/spice-streaming-agent/plugin.hpp
> >> index e08e3a6..0ec5040 100644
> >> --- a/include/spice-streaming-agent/plugin.hpp
> >> +++ b/include/spice-streaming-agent/plugin.hpp
> >> @@ -23,11 +23,22 @@ namespace streaming_agent {
> >> class FrameCapture;
> >> 
> >> /*!
> >> - * Plugin version, only using few bits, schema is 0xMMmm
> >> - * where MM is major and mm is the minor, can be easily expanded
> >> - * using more bits in the future
> >> + * Plugins use a versioning system similar to that implemented by libtool
> >> + *
> >> http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
> >> + * Update the version information as follows:
> >> + * [ANY CHANGE] If any interfaces have been added, removed, or changed
> >> since
> >> the last update,
> >> + * increment PluginInterfaceVersion.
> >> + * [COMPATIBLE CHANGE] If interfaces have only been added since the last
> >> public release,
> >> + * leave PluginInterfaceOldestCompatibleVersion identical.
> >> + * [INCOMPATIBLE CHANGE] If any interfaces have been removed or changed
> >> since the last release,
> >> + * set PluginInterfaceOldestCompatibleVersion to PluginInterfaceVersion.
> >> + * [DETECTED INCOMPATIBILITY]: If an incompatibility is detected after a
> >> release,
> >> + * set PluginInterfaceOldestCompatibleVersion to the last known
> >> compatible
> >> version.
> >>  */
> >> -enum Constants : unsigned { PluginVersion = 0x100u };
> >> +enum Constants : unsigned {
> >> +    PluginInterfaceVersion = 1,
> >> +    PluginInterfaceOldestCompatibleVersion = 1
> >> +};
> >> 
> >> enum Ranks : unsigned {
> >>     /// this plugin should not be used
> >> @@ -103,20 +114,6 @@ class Agent
> >> {
> >> public:
> >>     /*!
> >> -     * Get agent version.
> >> -     * Plugin should check the version for compatibility before doing
> >> -     * everything.
> >> -     * \return version specified like PluginVersion
> >> -     */
> >> -    virtual unsigned Version() const = 0;
> >> -
> >> -    /*!
> >> -     * Check if a given plugin version is compatible with this agent
> >> -     * \return true is compatible
> >> -     */
> >> -    virtual bool PluginVersionIsCompatible(unsigned pluginVersion) const
> >> =
> >> 0;
> >> -
> >> -    /*!
> >>      * Register a plugin in the system.
> >>      */
> >>     virtual void Register(Plugin& plugin) = 0;
> >> @@ -136,18 +133,25 @@ typedef bool
> >> PluginInitFunc(spice::streaming_agent::Agent* agent);
> >> 
> >> #ifndef SPICE_STREAMING_AGENT_PROGRAM
> >> /*!
> >> + * Plugin interface version
> >> + * Each plugin should define this variable and set it to
> >> PluginInterfaceVersion
> >> + * That version will be checked by the agent before executing any plugin
> >> code
> >> + */
> >> +extern "C" unsigned spice_streaming_agent_plugin_interface_version;
> >> +
> >> +/*!
> >>  * Plugin main entry point.
> >> - * Plugins should check if the version of the agent is compatible.
> >> - * If is compatible should register itself to the agent and return
> >> - * true.
> >> - * If is not compatible can decide to stay in memory or not returning
> >> - * true (do not unload) or false (safe to unload). This is necessary
> >> + * This entry point is only called if the version check passed.
> >> + * It should return true if it loaded and initialized successfully.
> >> + * If the plugin does not initialize and does not want to be unloaded,
> >> + * it may still return true on failure. This is necessary
> >>  * if the plugin uses some library which are not safe to be unloaded.
> >>  * This public interface is also designed to avoid exporting data from
> >>  * the plugin which could be a problem in some systems.
> >>  * \return true if plugin should stay loaded, false otherwise
> >>  */
> >> extern "C" spice::streaming_agent::PluginInitFunc
> >> spice_streaming_agent_plugin_init;
> >> +
> >> #endif
> >> 
> >> #endif // SPICE_STREAMING_AGENT_PLUGIN_HPP
> >> diff --git a/src/concrete-agent.cpp b/src/concrete-agent.cpp
> >> index 4cf70e7..eb4f333 100644
> >> --- a/src/concrete-agent.cpp
> >> +++ b/src/concrete-agent.cpp
> >> @@ -15,28 +15,11 @@
> >> 
> >> using namespace spice::streaming_agent;
> >> 
> >> -static inline unsigned MajorVersion(unsigned version)
> >> -{
> >> -    return version >> 8;
> >> -}
> >> -
> >> -static inline unsigned MinorVersion(unsigned version)
> >> -{
> >> -    return version & 0xffu;
> >> -}
> >> -
> >> ConcreteAgent::ConcreteAgent()
> >> {
> >>     options.push_back(ConcreteConfigureOption(nullptr, nullptr));
> >> }
> >> 
> >> -bool ConcreteAgent::PluginVersionIsCompatible(unsigned pluginVersion)
> >> const
> >> -{
> >> -    unsigned version = Version();
> >> -    return MajorVersion(version) == MajorVersion(pluginVersion) &&
> >> -        MinorVersion(version) >= MinorVersion(pluginVersion);
> >> -}
> >> -
> >> void ConcreteAgent::Register(Plugin& plugin)
> >> {
> >>     plugins.push_back(std::shared_ptr<Plugin>(&plugin));
> >> @@ -83,6 +66,24 @@ void ConcreteAgent::LoadPlugin(const std::string
> >> &plugin_filename)
> >>         return;
> >>     }
> >> 
> >> +    unsigned *version =
> >> +        (unsigned *) dlsym(dl,
> >> "spice_streaming_agent_plugin_interface_version");
> >> +    if (!version) {
> >> +        syslog(LOG_ERR, "error loading plugin %s: no version
> >> information",
> >> +               plugin_filename.c_str());
> >> +        return;
> >> +    }
> >> +    if (*version < PluginInterfaceOldestCompatibleVersion ||
> >> +        *version > PluginInterfaceVersion) {
> >> +        syslog(LOG_ERR,
> >> +               "error loading plugin %s: plugin interface version %u, "
> >> +               "agent accepts version %u...%u",
> >> +               plugin_filename.c_str(), *version,
> >> +               PluginInterfaceOldestCompatibleVersion,
> >> +               PluginInterfaceVersion);
> >> +        return;
> >> +    }
> >> +
> >>     try {
> >>         PluginInitFunc* init_func =
> >>             (PluginInitFunc *) dlsym(dl,
> >>             "spice_streaming_agent_plugin_init");
> >> diff --git a/src/concrete-agent.hpp b/src/concrete-agent.hpp
> >> index 5bca23b..c631916 100644
> >> --- a/src/concrete-agent.hpp
> >> +++ b/src/concrete-agent.hpp
> >> @@ -27,16 +27,12 @@ class ConcreteAgent final : public Agent
> >> {
> >> public:
> >>     ConcreteAgent();
> >> -    unsigned Version() const override {
> >> -        return PluginVersion;
> >> -    }
> >>     void Register(Plugin& plugin) override;
> >>     const ConfigureOption* Options() const override;
> >>     void LoadPlugins(const std::string &directory);
> >>     // pointer must remain valid
> >>     void AddOption(const char *name, const char *value);
> >>     FrameCapture *GetBestFrameCapture(const std::set<SpiceVideoCodecType>&
> >>     codecs);
> >> -    bool PluginVersionIsCompatible(unsigned pluginVersion) const
> >> override;
> >> private:
> >>     void LoadPlugin(const std::string &plugin_filename);
> >>     std::vector<std::shared_ptr<Plugin>> plugins;
> >> diff --git a/src/mjpeg-fallback.cpp b/src/mjpeg-fallback.cpp
> >> index 68c282f..605a4b3 100644
> >> --- a/src/mjpeg-fallback.cpp
> >> +++ b/src/mjpeg-fallback.cpp
> >> @@ -180,9 +180,6 @@ SpiceVideoCodecType MjpegPlugin::VideoCodecType()
> >> const {
> >> 
> >> bool MjpegPlugin::Register(Agent* agent)
> >> {
> >> -    if (agent->Version() != PluginVersion)
> >> -        return false;
> >> -
> >>     std::unique_ptr<MjpegPlugin> plugin(new MjpegPlugin());
> >> 
> >>     try {
> > 
> > Maybe a way to avoid ODR violation would be to define interface versions in
> > a
> > chained way like
> 
> This is addressing a different issue, which is how to extend the interface in
> C++ without violating the ODR. Your approach does not really solve the ODR
> problem, it moves it to the interface of the plugin entry point. Version 1
> plugins would have a function that takes an Agent_V1 pointer, version 2
> plugins would expect an Agent_V2. You constructed them to be binary
> compatible, but that’s not different from adding the fields directly to the
> class in a way that makes it binary compatible.
> 
> That does not make your approach invalid. It gets bonus points for making it
> clear what the version changes are.
> 

Not only that, Agent_V1 is always defined the same way, avoiding ODR violation.
Even if compiler decides to order the functions by an hash of the name for instance
the definition is the same so the compiler has to use the same ABI.

> > 
> > class Agent_V1 {
> > public:
> >   func1
> >   func2
> > };
> > 
> > class Agent_V2: public Agent_V1 {
> > public:
> >   func3
> >   func4
> > };
> > 
> > typedef Agent_V2 Agent;
> > 
> > enum Versions {
> >  Current = Version_2;
> > };
> > 
> > The only not ODR would be the typedef
> 
> The real concern with ODR would be the plugin entry point that uses that
> typedef.
> 

That's why I suggested to always pass Agent_V1. Or the agent should
pass the proper pointer based on the version read from the plugin.

> > but does not looks a big issue, the
> > init function could receive a "Agent_V1" pointer always and each plugin
> > knows that could convert to its "Agent" type safely as the agent already
> > checked the ABIs.
> > 
> > If for some reasons version 2 is buggy the agent can have a:
> > 
> > class Agent_V3: public Agent_V1 {
> >   ...
> > };
> > 
> > and refuse to load any plugin using version 2.
> > 
> > The agent could use some adapter interface to support multiple plugin
> > interfaces.
> 
> Yes, this is what I used as an example for “unloadable plugins” above.
> 
> 
> Christophe
> 

Frediano


More information about the Spice-devel mailing list