Emit interface added signal

Ratan Gupta ratagupt at linux.vnet.ibm.com
Fri Mar 19 19:37:03 AEDT 2021


Thanks Patrick for your response.

On 3/18/21 8:27 PM, Patrick Williams wrote:
> On Thu, Mar 18, 2021 at 04:03:21PM +0530, Ratan Gupta wrote:
>
>> Proposal: Don't emit the interface added signal by the D-bus service if
>> we are restoring the D-Bus objects from file system.
>>
>> Do we see any concern here? or any other way to fix the above issue?
> Yes, this is pretty dangerous.  If you do this, mapper will not know
> about your objects and they will not show up in queries.  This is
> certainly not what you want.  (Mapper will delete your objects from its
> cache when the service exits, and not know that you have new ones
> because it did not get the signal.)
>
> This isn't just about mapper though.  Anytime you do not emit the
> signals, you then require applications to poll your service for
> knowledge of your objects.
>
> In general, you should not work around an issue in one application
> (bmcweb in this case) by changing your dbus behavior.  This isn't the
> first time that I've seen a similar request.

My plan was not to modify anything in bmcweb, My plan was exactly as you 
described below

The dbus applications which is restoring the Dbus objects from the file 
system needs to be modified if they are restoring the Dbus objects from 
the file system and that was the intent to send this mail as the changes 
lies in other repo.

e.g. 
https://github.com/openbmc/phosphor-debug-collector/blob/master/dump_manager_main.cpp#L60


>
> Having said this, there is one option for you.  This is completely valid,
> and done by other dbus services we have, and arguably more correct than
> what it sounds like you're currently doing.
>
>     - Defer the service name registration until just before entering your
>       dbus processing loop.
>
>     - Create your restored dbus objects before this service name
>       registration and use the `emitSignal=false` argument to prevent
>       the signal from being emitted.
>
> This pattern is your way of indicating "these aren't new dynamic
> objects, but objects I'm creating at the beginning of my service."
> When mapper sees the NameOwnerChanged signal, it will query your service
> for objects and add them to its cache.  `bmcweb` won't see the
> ObjectManager.InterfacesAdded signals for these static / restored
> objects, but it will see them for new / dynamic objects.
>


More information about the openbmc mailing list