* net: fix incorrect credentials passing
@ 2013-04-20 1:32 Linus Torvalds
2013-04-20 1:58 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Linus Torvalds @ 2013-04-20 1:32 UTC (permalink / raw)
To: David Miller; +Cc: netdev, Serge E. Hallyn, Eric W. Biederman
Commit 257b5358b32f ("scm: Capture the full credentials of the scm
sender") changed the credentials passing code to pass in the effective
uid/gid instead of the real uid/gid.
Obviously this doesn't matter most of the time (since normally they are
the same), but it results in differences for suid binaries when the wrong
uid/gid ends up being used.
This just undoes that (presumably unintentional) part of the commit.
Reported-by: Andy Lutomirski <luto@amacapital.net>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Serge E. Hallyn <serge@hallyn.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: stable@vger.kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
include/net/scm.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/net/scm.h b/include/net/scm.h
index 975cca01048b..b11708105681 100644
--- a/include/net/scm.h
+++ b/include/net/scm.h
@@ -56,8 +56,8 @@ static __inline__ void scm_set_cred(struct scm_cookie *scm,
scm->pid = get_pid(pid);
scm->cred = cred ? get_cred(cred) : NULL;
scm->creds.pid = pid_vnr(pid);
- scm->creds.uid = cred ? cred->euid : INVALID_UID;
- scm->creds.gid = cred ? cred->egid : INVALID_GID;
+ scm->creds.uid = cred ? cred->uid : INVALID_UID;
+ scm->creds.gid = cred ? cred->gid : INVALID_GID;
}
static __inline__ void scm_destroy_cred(struct scm_cookie *scm)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: net: fix incorrect credentials passing
2013-04-20 1:32 net: fix incorrect credentials passing Linus Torvalds
@ 2013-04-20 1:58 ` David Miller
2013-04-20 10:53 ` Eric W. Biederman
0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2013-04-20 1:58 UTC (permalink / raw)
To: torvalds; +Cc: netdev, serge, ebiederm
From: Linus Torvalds <torvalds@linux-foundation.org>
Date: Fri, 19 Apr 2013 18:32:32 -0700 (PDT)
> Commit 257b5358b32f ("scm: Capture the full credentials of the scm
> sender") changed the credentials passing code to pass in the effective
> uid/gid instead of the real uid/gid.
Yep, that's exactly what happened, via a very twisty and winding road.
The helper cred_to_ucred(), which was created by commit
3f551f9436c05a3b5eccdd6e94733df5bb98d2a5 ("sock: Introduce
cred_to_ucred") seemed to be aimed at providing the semantics expected
by SO_PEERCRED, which does in fact want to use the effective UIDs and
GIDs.
The SO_PEERCRED side of this can be seen more clearly in commit
109f6e39fa07c48f580125f531f46cb7c245b528 ("af_unix: Allow SO_PEERCRED
to work across namespaces.")
The error begins when we try to use that helper in the SCM credentials
code.
Initially, cred_to_ucred() is what was used by scm_set_cred(). Then
it got changed in dbe9a4173ea53b72b2c35d19f676a85b69f1c9fe ("scm:
Don't use struct ucred in NETLINK_CB and struct scm_cookie.") which
continues the error by propagating the effective UID/GID usage from
cred_to_ucred() into explicit accesses inside of scm_set_cred().
So, as stated, the error originates from trying to use this common
helper for both SO_PEERCERD and the SCM stuff, the latter of which
does not want to use effective UIDs and GIDs.
> This just undoes that (presumably unintentional) part of the commit.
Indeed, I'd say this was an oversight in semantic differences when
creating the cred_to_ucred() helper.
Eric B. please review and ACK this.
Thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: net: fix incorrect credentials passing
2013-04-20 1:58 ` David Miller
@ 2013-04-20 10:53 ` Eric W. Biederman
2013-04-20 20:58 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Eric W. Biederman @ 2013-04-20 10:53 UTC (permalink / raw)
To: David Miller; +Cc: torvalds, netdev, serge
David Miller <davem@davemloft.net> writes:
> From: Linus Torvalds <torvalds@linux-foundation.org>
> Date: Fri, 19 Apr 2013 18:32:32 -0700 (PDT)
>
>> Commit 257b5358b32f ("scm: Capture the full credentials of the scm
>> sender") changed the credentials passing code to pass in the effective
>> uid/gid instead of the real uid/gid.
>
> Yep, that's exactly what happened, via a very twisty and winding road.
>
> The helper cred_to_ucred(), which was created by commit
> 3f551f9436c05a3b5eccdd6e94733df5bb98d2a5 ("sock: Introduce
> cred_to_ucred") seemed to be aimed at providing the semantics expected
> by SO_PEERCRED, which does in fact want to use the effective UIDs and
> GIDs.
>
> The SO_PEERCRED side of this can be seen more clearly in commit
> 109f6e39fa07c48f580125f531f46cb7c245b528 ("af_unix: Allow SO_PEERCRED
> to work across namespaces.")
>
> The error begins when we try to use that helper in the SCM credentials
> code.
>
> Initially, cred_to_ucred() is what was used by scm_set_cred(). Then
> it got changed in dbe9a4173ea53b72b2c35d19f676a85b69f1c9fe ("scm:
> Don't use struct ucred in NETLINK_CB and struct scm_cookie.") which
> continues the error by propagating the effective UID/GID usage from
> cred_to_ucred() into explicit accesses inside of scm_set_cred().
>
> So, as stated, the error originates from trying to use this common
> helper for both SO_PEERCERD and the SCM stuff, the latter of which
> does not want to use effective UIDs and GIDs.
>
>> This just undoes that (presumably unintentional) part of the commit.
>
> Indeed, I'd say this was an oversight in semantic differences when
> creating the cred_to_ucred() helper.
>
> Eric B. please review and ACK this.
I have followed this only briefly and looked at this only quickly but I
David I read the git history the same way you do. I introduced a
behavior change when the cred_to_ucred helper was introduced into
scm_set_cred(). Linus's patch restores the original behavior.
So.
Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
Hopefully that is sufficient. I am in the midst of taking care of some
non-software things this week and I really don't have the time to look
more closely.
Eric
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: net: fix incorrect credentials passing
2013-04-20 10:53 ` Eric W. Biederman
@ 2013-04-20 20:58 ` David Miller
0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2013-04-20 20:58 UTC (permalink / raw)
To: ebiederm; +Cc: torvalds, netdev, serge
From: ebiederm@xmission.com (Eric W. Biederman)
Date: Sat, 20 Apr 2013 03:53:50 -0700
> I have followed this only briefly and looked at this only quickly but I
> David I read the git history the same way you do. I introduced a
> behavior change when the cred_to_ucred helper was introduced into
> scm_set_cred(). Linus's patch restores the original behavior.
>
> So.
>
> Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
Thanks for reviewing Eric.
Applied and queued up for -stable, thanks everyone.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-20 20:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-20 1:32 net: fix incorrect credentials passing Linus Torvalds
2013-04-20 1:58 ` David Miller
2013-04-20 10:53 ` Eric W. Biederman
2013-04-20 20:58 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).