Re: [systemd-devel] Does systemd-stdio-bridge handle dbus UNIX_FD passing somehow?

2017-06-27 Thread Lennart Poettering
On Tue, 27.06.17 10:26, Umut Tezduyar Lindskog (u...@tezduyar.com) wrote: > Hello, > > I would like to make a method call on a remote machine with busctl > where the method returns UNIX_FD (h), type unix domain socket. > > I am guessing the FD stops on stdio-bridge without any other magic >

Re: [systemd-devel] Does systemd-stdio-bridge handle dbus UNIX_FD passing somehow?

2017-06-27 Thread Mantas Mikulėnas
Afaik, the stdio bridge only supports a single dbus protocol stream and nothing else. Trying to pass file descriptors over the network might need magic in the literal sense – just imagine emulating all the ioctls, socket operations, etc. that a program may want to perform. (I seem to remember a

[systemd-devel] Does systemd-stdio-bridge handle dbus UNIX_FD passing somehow?

2017-06-27 Thread Umut Tezduyar Lindskog
Hello, I would like to make a method call on a remote machine with busctl where the method returns UNIX_FD (h), type unix domain socket. I am guessing the FD stops on stdio-bridge without any other magic bridging the UDS to an another socket on the host. Is that the case? Can there be any magic