-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/bin:/usr/bin in PATH causes failure in certain GUI apps #194
Comments
It gets worse for things that aren't in the PATH and that are moved between distros. See this: systemd/systemd#34712 - polkit "actions" integration fails for paths moved from /lib to /usr/lib There calling This looks like a flaw in in polkitd. I think we need either:
Cheers, |
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
This changes the pkexec path that is compared from the original supplied path to the path resolved by realpath(3). That means that "/bin/something" might now be matched as "/usr/bin/something", a review of your <annotate key="org.freedesktop.policykit.exec.path"> actions might be in order. Fixes: polkit-org#194 See also: systemd/systemd#34714
@jrybar-rh or anyone else. Could you check the PR? |
I'm already on it, but currently there are other burning priorities. WIP. |
In gitlab.freedesktop.org by jrw32982 on Mar 23, 2023, 19:58
Link to the original issue: https://gitlab.freedesktop.org/polkit/polkit/-/issues/193
Current behaviour, description of the problem
Apparently, the order of
/bin
and/usr/bin
inPATH
matters! I was getting failures for multiple apps started from LinuxMint's Menu: mintsources, lightdm-settings, etc. Eventually I tracked it down to the fact that I had/bin:/usr/bin
in myPATH
(created by my shell profile) rather than/usr/bin:/bin
. Once I modified my shell profile, and switched the order of those components in my PATH, and rebooted, the GUI apps started working.Desired behaviour
Both command lines (see below) should work identically and successfully. Currently, the order of
/usr/bin:/bin
inPATH
is required for apps to work and the order of/bin:/usr/bin
causes them to fail. The order shouldn't matter.For other OSes (where
mintsources
is not available), you can reproduce with any GUI app requiring use ofpkexec
and configured in a location like/usr/share/polkit-1/actions/
, with an annotation like:(Note:
/usr/bin/mintsources
, rather than/bin/mintsources
)It looks like this is a bug with
pkexec
and/or the polkit mechanism:pkexec
doesn't fully resolve (canonicalize) the path to the executable, a lareadlink -f /bin/mintsources
, before matching it against the path in the policy. Thepkexec
documentation saysfull path of the program
where I think it should saycanonical full path of the program
.Reproducer
Detailed description
polkit 0-105.33, pkexec 0-105-33, LinuxMint 21
See more discussion and bug confirmation at Github LinuxMint Cinnamon and LinuxMint forum
The text was updated successfully, but these errors were encountered: