* Regression introduced by commit dbe9a4173ea53
@ 2015-01-23 14:16 Jonas Danielsson
0 siblings, 0 replies; only message in thread
From: Jonas Danielsson @ 2015-01-23 14:16 UTC (permalink / raw)
To: davem
Cc: linux-kernel, netdev, ebiederm, luto, rgb, johannes.berg, viro,
akpm, fabf, brian.cambell, mpatocka, tgraf, eric.dumazet, desrt
Hi,
I have seen a regression, that I think is caused by:
commit dbe9a4173ea53b72b2c35d19f676a85b69f1c9fe
Author: Eric W. Biederman <ebiederm@xmission.com>
Date: Thu Sep 6 18:20:01 2012 +0000
scm: Don't use struct ucred in NETLINK_CB and struct scm_cookie.
With this commit the value send as uid when credentials are missing
changes from -1 to overflowuid (default -2, the 'nobody' user).
I was using dbus-send to perform a method call on a gdbus server.
And sometimes I fall victim to the race condition caused by:
commit 16e5726 ("af_unix: dont send SCM_CREDENTIALS by default")
And then there will be no credentials on the socket. The glib library checks
the uid, and if it is -1, it will fall back to using SO_PEERCRED and things
will work for me. But since the commit in $subject changes the uid I get
failure with NoReply from dbus-send.
It seems that before the commit in $subject that the function from_kuid_munged
was only called if there were credentials present. Otherwise we would set uid
to -1. Now uid gets set to -1 if there is no credentials but from_kuid_munged
is always called. And from the documentation of from_kuid_munged it states
that it 'never fails and always returns a valid uid'. And in the case of
uid being -1, it returns overflowuid.
So this seems like it broke glib. Caused by 1) the introduced race condition
that makes it not totally safe to set SO_PEERCRED on the accepted socket and
2) that the value of uid when credentials are missing changed from -1 to
overflowuid.
Thanks for your time
Jonas
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-01-23 14:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-23 14:16 Regression introduced by commit dbe9a4173ea53 Jonas Danielsson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox