gz-transport icon indicating copy to clipboard operation
gz-transport copied to clipboard

Callback method is executed after instance that holds the callback is destroyed

Open francocipollone opened this issue 3 years ago • 2 comments

Environment

  • OS Version: Ubuntu 18.04
  • Source or binary build? Binary, however, I ended up using source for debugging: Binary, ignition-transport7_7.5.1 Source: - branch ign-transport7. - commit name: ⬆️ 7.5.1 🏁 (#206) - hash: 50f57934

Description

Context: Typical publisher-subscriber scenario in which the callback method of the subscriber is an instance method of a class.

  • Expected behavior: After the transport::node is unsubscribed from the topic I would expect that no callback method will be executed.
  • Actual behavior: The callback method is executed after the object that holds that callback method is destroyed(this implies the node being unsubscribed.) leading to undefined behavior(typically SEGFAULT).

Steps to reproduce

I forked the repo and branched from branch name ign-transport7 (commit name: "⬆️ 7.5.1 🏁 (#206)")" and I've added some apps in the example folder. --> https://github.com/francocipollone/ign-transport/commit/9d5427fa56a7e420f6182d7fd3d435eaabd95818

  1. Git Clone https://github.com/francocipollone/ign-transport
cd ign-transport
git checkout francocipollone/adds_example_to_show_bug
  1. Build the project including the examples.
  2. Move to build folder.
  3. Run the publisher_bug_example.cc
./publisher_bug_example

It is just a publisher without any sleep time to force a big amount of messages.

  1. Run the subscriber_bug_example.cc I provide :
./publisher_bug_example

Basically, the idea is to force the undefined behavior when the object that holds the callback method is destroyed before this method is called again.

The example consists of an infinite loop that in every iteration creates the instance of a class that is meant to subscribe to a topic by providing a callback method, then wait for a certain time (during this time the callback method is being called), and then the iteration finishes so this object is deallocated(when destroying this object, implicitly the destructor of ignition::transport::node is also called so it should be unsubscribed to the topic and no callback method should be called). Then the loop continues. The code is commented to explain the behavior.

ign_trans_bug

Output

The last image of the animation shows: ign_trans_bug

Where it can be seen that at the end of the first iteration the object that holds the callback is destroyed and after that a callback is executed leading to a segmentation fault.

I've added another example where I do a workaround in order to keep the instance of the class alive in memory until the end of the execution by keeping a shared_ptr of itself. The code is also commented: subscriber_bug_workaround_example.cc It can be executed by executing the following in the build folder

./subscriber_bug_workaround_example

In this case, no segmentation fault is thrown, which makes sense given that all the instances of the class are still living in memory.

I am opened to provide more information if needed. Please don't hesitate in asking. :+1:

francocipollone avatar Mar 22 '21 21:03 francocipollone