From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH v1 2/2] Bluetooth: ISO: require CAP_NET_BIND_SERVICE to bind
Date: Thu, 27 Aug 2026 14:01:49 -0400 [thread overview]
Message-ID: <20260827180149.415744-2-luiz.dentz@gmail.com> (raw)
In-Reply-To: <20260827180149.415744-1-luiz.dentz@gmail.com>
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
ISO sockets have no PSM or port namespace: binding one reserves the
ability to accept any incoming CIS or to sync to broadcast streams on
the adapter. That is equivalent to listening on a well-known service,
which L2CAP already restricts to CAP_NET_BIND_SERVICE in
l2cap_validate_bredr_psm()/l2cap_validate_le_psm().
Apply the same restriction to iso_sock_bind() so unprivileged processes
can no longer hijack incoming ISO links.
Fixes: ccf74f2390d6 ("Bluetooth: Add BTPROTO_ISO socket type")
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
---
net/bluetooth/iso.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/net/bluetooth/iso.c b/net/bluetooth/iso.c
index 75bfd5938b2e..4e1e34ffc294 100644
--- a/net/bluetooth/iso.c
+++ b/net/bluetooth/iso.c
@@ -1200,6 +1200,13 @@ static int iso_sock_bind(struct socket *sock, struct sockaddr_unsized *addr,
addr->sa_family != AF_BLUETOOTH)
return -EINVAL;
+ /* Binding an ISO socket reserves the ability to accept any incoming
+ * CIS/BIS on the adapter, so restrict it in the same way L2CAP
+ * restricts well-known PSMs.
+ */
+ if (!capable(CAP_NET_BIND_SERVICE))
+ return -EACCES;
+
lock_sock(sk);
if ((sk->sk_state == BT_CONNECT2 || sk->sk_state == BT_CONNECTED) &&
--
2.54.0
next prev parent reply other threads:[~2026-08-27 18:02 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-27 18:01 [PATCH v1 1/2] Bluetooth: SCO: require CAP_NET_BIND_SERVICE to bind Luiz Augusto von Dentz
2026-08-27 18:01 ` Luiz Augusto von Dentz [this message]
2026-08-27 23:41 ` Pauli Virtanen
2026-08-28 13:50 ` Luiz Augusto von Dentz
2026-08-28 16:02 ` Pauli Virtanen
2026-08-28 16:46 ` Luiz Augusto von Dentz
2026-08-29 8:39 ` Pauli Virtanen
2026-08-28 1:10 ` [v1,1/2] " bluez.test.bot
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=20260827180149.415744-2-luiz.dentz@gmail.com \
--to=luiz.dentz@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
/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