The commit referenced in the "Fixes" tag mistakenly attempted to preserve the label of the peeloff socket that had been set in selinux_socket_post_create() in the case of a client socket. However, the peeloff socket should in fact just inherit the label from the parent socket. In practice these labels are usually the same, but they may differ when setsockcreatecon(3) or socket type transition rules are involved. The fact that selinux_socket_[post_]create() are called on the peeloff socket is actually not what should be happening (it is a side effect of sctp_do_peeloff() using socket_create() to create the socket, which calls the aforementioned LSM hooks). A patch to fix this is being worked on. In the meanwhile, at least fix sctp_assoc_established() to set asoc->secid to the socket's sid and selinux_sctp_sk_clone() to unconditionally get the peeloff socket's sid from asoc->secid, which will ensure that the peeloff socket gets the right label in case of both client and server SCTP socket. The label set by selinux_socket_post_create() will be simply overwritten in both cases, as was the case before the commit this patch is fixing. Passed both the selinux-testsuite (with client peeloff tests added) and the SCTP functional test suite from lksctp-tools. Fixes: e7310c94024c ("security: implement sctp_assoc_established hook in selinux") Based-on-patch-by: Xin Long <lucien.xin@xxxxxxxxx> Signed-off-by: Ondrej Mosnacek <omosnace@xxxxxxxxxx> --- As agreed with Xin Long, I'm posting this fix up instead of him. I am now fairly convinced that this is the right way to deal with the immediate problem of client peeloff socket labeling. I'll work on addressing the side problem regarding selinux_socket_post_create() being called on the peeloff sockets separately. Please don't merge this patch without an ack from Paul, as it seems we haven't reached an overall consensus yet. security/selinux/hooks.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 5e5215fe2e83..5d9da4662449 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -5502,8 +5502,7 @@ static void selinux_sctp_sk_clone(struct sctp_association *asoc, struct sock *sk if (!selinux_policycap_extsockclass()) return selinux_sk_clone_security(sk, newsk); - if (asoc->secid != SECSID_WILD) - newsksec->sid = asoc->secid; + newsksec->sid = asoc->secid; newsksec->peer_sid = asoc->peer_secid; newsksec->sclass = sksec->sclass; selinux_netlbl_sctp_sk_clone(sk, newsk); @@ -5566,7 +5565,7 @@ static void selinux_sctp_assoc_established(struct sctp_association *asoc, selinux_inet_conn_established(asoc->base.sk, skb); asoc->peer_secid = sksec->peer_sid; - asoc->secid = SECSID_WILD; + asoc->secid = sksec->sid; } static int selinux_secmark_relabel_packet(u32 sid) -- 2.31.1