From: Kuniyuki Iwashima <kuni1840@gmail.com>
To: bluca@debian.org
Cc: brauner@kernel.org, davem@davemloft.net, edumazet@google.com,
horms@kernel.org, kuba@kernel.org, kuni1840@gmail.com,
kuniyu@amazon.com, netdev@vger.kernel.org, pabeni@redhat.com,
willemb@google.com
Subject: Re: [PATCH v5 net-next 5/9] net: Restrict SO_PASS{CRED,PIDFD,SEC} to AF_{UNIX,NETLINK,BLUETOOTH}.
Date: Mon, 9 Jun 2025 08:55:36 -0700 [thread overview]
Message-ID: <20250609155613.563713-1-kuni1840@gmail.com> (raw)
In-Reply-To: <eb38a7d139a9c0854e2ed7122ee5ea5153227b41.camel@debian.org>
From: Luca Boccassi <bluca@debian.org>
Date: Mon, 09 Jun 2025 12:14:51 +0100
> On Mon, 2025-05-19 at 13:57 -0700, Kuniyuki Iwashima wrote:
> > SCM_CREDENTIALS and SCM_SECURITY can be recv()ed by calling
> > scm_recv() or scm_recv_unix(), and SCM_PIDFD is only used by
> > scm_recv_unix().
> >
> > scm_recv() is called from AF_NETLINK and AF_BLUETOOTH.
> >
> > scm_recv_unix() is literally called from AF_UNIX.
> >
> > Let's restrict SO_PASSCRED and SO_PASSSEC to such sockets and
> > SO_PASSPIDFD to AF_UNIX only.
> >
> > Later, SOCK_PASS{CRED,PIDFD,SEC} will be moved to struct sock
> > and united with another field.
> >
> > Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
> > Reviewed-by: Willem de Bruijn <willemb@google.com>
> > ---
> > v3:
> > * Return -EOPNOTSUPP in getsockopt() too
> > * Add CONFIG_SECURITY_NETWORK check for SO_PASSSEC
> >
> > diff --git a/net/core/sock.c b/net/core/sock.c
> > index d7d6d3a8efe5..fd5f9d3873c1 100644
> > --- a/net/core/sock.c
> > +++ b/net/core/sock.c
> > @@ -1221,12 +1221,21 @@ int sk_setsockopt(struct sock *sk, int level,
> > int optname,
> > }
> > return -EPERM;
> > case SO_PASSSEC:
> > + if (!IS_ENABLED(CONFIG_SECURITY_NETWORK) ||
> > sk_may_scm_recv(sk))
> > + return -EOPNOTSUPP;
>
> Hi,
>
> Was this one meant to be !sk_may_scm_recv(sk) like in getsockopt below
> by any chance?
Oops, but the next patch happened to fix it.
Will try to reproduce it.
>
> We have a report that this is breaking AF_UNIX sockets with 6.16~rc1:
>
> [ 1.763019] systemd[1]: systemd-journald-dev-log.socket: SO_PASSSEC
> failed: Operation not supported
> [ 1.763102] systemd[1]: systemd-journald.socket: SO_PASSSEC failed:
> Operation not supported
> [ 1.763121] systemd[1]: systemd-journald.socket: SO_PASSSEC failed:
> Operation not supported
>
> https://github.com/systemd/systemd/issues/37783
next prev parent reply other threads:[~2025-06-09 15:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-19 20:57 [PATCH v5 net-next 0/9] af_unix: Introduce SO_PASSRIGHTS Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 1/9] af_unix: Factorise test_bit() for SOCK_PASSCRED and SOCK_PASSPIDFD Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 2/9] af_unix: Don't pass struct socket to maybe_add_creds() Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 3/9] scm: Move scm_recv() from scm.h to scm.c Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 4/9] tcp: Restrict SO_TXREHASH to TCP socket Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 5/9] net: Restrict SO_PASS{CRED,PIDFD,SEC} to AF_{UNIX,NETLINK,BLUETOOTH} Kuniyuki Iwashima
2025-06-09 11:14 ` Luca Boccassi
2025-06-09 15:55 ` Kuniyuki Iwashima [this message]
2025-06-10 19:54 ` Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 6/9] af_unix: Move SOCK_PASS{CRED,PIDFD,SEC} to struct sock Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 7/9] af_unix: Inherit sk_flags at connect() Kuniyuki Iwashima
2025-05-19 20:57 ` [PATCH v5 net-next 8/9] af_unix: Introduce SO_PASSRIGHTS Kuniyuki Iwashima
2025-05-19 20:58 ` [PATCH v5 net-next 9/9] selftest: af_unix: Test SO_PASSRIGHTS Kuniyuki Iwashima
2025-05-28 11:40 ` [PATCH v5 net-next 0/9] af_unix: Introduce SO_PASSRIGHTS Paolo Abeni
2025-05-28 13:21 ` Paolo Abeni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250609155613.563713-1-kuni1840@gmail.com \
--to=kuni1840@gmail.com \
--cc=bluca@debian.org \
--cc=brauner@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=kuniyu@amazon.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=willemb@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).