2022-07-28 22:16:15

by Luiz Augusto von Dentz

[permalink] [raw]
Subject: [PATCH] Bluetooth: ISO: Fix info leak in iso_sock_getsockopt()

From: Dan Carpenter <[email protected]>

The C standard rules for when struct holes are zeroed out are slightly
weird. The existing assignments might initialize everything, but GCC
is allowed to (and does sometimes) leave the struct holes uninitialized,
so instead of using yet another variable and copy the QoS settings just
use a pointer to the stored QoS settings.

Fixes: ccf74f2390d6 ("Bluetooth: Add BTPROTO_ISO socket type")
Reported-by: Dan Carpenter <[email protected]>
Signed-off-by: Luiz Augusto von Dentz <[email protected]>
---
net/bluetooth/iso.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/net/bluetooth/iso.c b/net/bluetooth/iso.c
index 19d003727b50..dded22cde0d1 100644
--- a/net/bluetooth/iso.c
+++ b/net/bluetooth/iso.c
@@ -1235,7 +1235,7 @@ static int iso_sock_getsockopt(struct socket *sock, int level, int optname,
{
struct sock *sk = sock->sk;
int len, err = 0;
- struct bt_iso_qos qos;
+ struct bt_iso_qos *qos;
u8 base_len;
u8 *base;

@@ -1261,12 +1261,12 @@ static int iso_sock_getsockopt(struct socket *sock, int level, int optname,

case BT_ISO_QOS:
if (sk->sk_state == BT_CONNECTED || sk->sk_state == BT_CONNECT2)
- qos = iso_pi(sk)->conn->hcon->iso_qos;
+ qos = &iso_pi(sk)->conn->hcon->iso_qos;
else
- qos = iso_pi(sk)->qos;
+ qos = &iso_pi(sk)->qos;

- len = min_t(unsigned int, len, sizeof(qos));
- if (copy_to_user(optval, (char *)&qos, len))
+ len = min_t(unsigned int, len, sizeof(*qos));
+ if (copy_to_user(optval, qos, len))
err = -EFAULT;

break;
--
2.37.1


2022-07-28 23:08:19

by bluez.test.bot

[permalink] [raw]
Subject: RE: Bluetooth: ISO: Fix info leak in iso_sock_getsockopt()

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=663892

---Test result---

Test Summary:
CheckPatch FAIL 2.39 seconds
GitLint PASS 0.79 seconds
SubjectPrefix PASS 0.72 seconds
BuildKernel PASS 32.56 seconds
BuildKernel32 PASS 28.31 seconds
Incremental Build with patchesPASS 39.94 seconds
TestRunner: Setup PASS 465.81 seconds
TestRunner: l2cap-tester PASS 16.35 seconds
TestRunner: bnep-tester PASS 6.51 seconds
TestRunner: mgmt-tester PASS 101.11 seconds
TestRunner: rfcomm-tester PASS 9.82 seconds
TestRunner: sco-tester PASS 9.07 seconds
TestRunner: smp-tester PASS 9.62 seconds
TestRunner: userchan-tester PASS 6.30 seconds

Details
##############################
Test: CheckPatch - FAIL - 2.39 seconds
Run checkpatch.pl script with rule in .checkpatch.conf
Bluetooth: ISO: Fix info leak in iso_sock_getsockopt()\ERROR:NO_AUTHOR_SIGN_OFF: Missing Signed-off-by: line by nominal patch author 'Dan Carpenter <[email protected]>'

total: 1 errors, 0 warnings, 0 checks, 24 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
mechanically convert to the typical style using --fix or --fix-inplace.

/github/workspace/src/12931756.patch has style problems, please review.

NOTE: Ignored message types: UNKNOWN_COMMIT_ID

NOTE: If any of the errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.




---
Regards,
Linux Bluetooth

2022-07-29 00:13:27

by patchwork-bot+bluetooth

[permalink] [raw]
Subject: Re: [PATCH] Bluetooth: ISO: Fix info leak in iso_sock_getsockopt()

Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <[email protected]>:

On Thu, 28 Jul 2022 15:11:45 -0700 you wrote:
> From: Dan Carpenter <[email protected]>
>
> The C standard rules for when struct holes are zeroed out are slightly
> weird. The existing assignments might initialize everything, but GCC
> is allowed to (and does sometimes) leave the struct holes uninitialized,
> so instead of using yet another variable and copy the QoS settings just
> use a pointer to the stored QoS settings.
>
> [...]

Here is the summary with links:
- Bluetooth: ISO: Fix info leak in iso_sock_getsockopt()
https://git.kernel.org/bluetooth/bluetooth-next/c/2cd0542726ba

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html