hypfvieh / dbus-java

Improved version of java DBus library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/)
https://hypfvieh.github.io/dbus-java/
MIT License
185 stars 73 forks source link

Allow SASL UID to be provided via the `TransportBuilder` #178

Closed brett-smith closed 2 years ago

brett-smith commented 2 years ago

.. instead of being detected.

There are a couple of reasons for this PR.

  1. I have an SSH transport. If I am using SASL, and if I am connecting from a machine where the local user UID differs from the authenticated user on the remote machine, the DBus connection will not be allowed. We must pretend that our UID is that of the remote user. I do not see this as security issue, the user is already authenticated by SSH, and the broker is validating that the connection is coming from the remote user.

  2. The use of UnixSystem breaks when attempting to compile to native code with GraalVM (actually, it fails to link). I believe this is a bug in Graal, but nevertheless UnixSystem is not part of the official API and is platform dependent. This is the sole reason for depending on the jdk.security.auth module.

Usage :-

builder.transportConfig().withSaslUid(1000);