* [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync()
@ 2024-05-01 18:09 Gustavo A. R. Silva
2024-05-01 18:35 ` [next] " bluez.test.bot
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gustavo A. R. Silva @ 2024-05-01 18:09 UTC (permalink / raw)
To: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz
Cc: linux-bluetooth, linux-kernel, Gustavo A. R. Silva,
linux-hardening
Use struct_size() instead of the open-coded version. Similarly to
this other patch[1].
Link: https://lore.kernel.org/linux-hardening/ZiwwPmCvU25YzWek@neat/ [1]
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
---
net/bluetooth/hci_conn.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index d6daf55f0307..c508609be105 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -2135,7 +2135,7 @@ int hci_le_big_create_sync(struct hci_dev *hdev, struct hci_conn *hcon,
memcpy(pdu->bis, bis, num_bis);
return hci_send_cmd(hdev, HCI_OP_LE_BIG_CREATE_SYNC,
- sizeof(*pdu) + num_bis, pdu);
+ struct_size(pdu, bis, num_bis), pdu);
}
static void create_big_complete(struct hci_dev *hdev, void *data, int err)
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* RE: [next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync()
2024-05-01 18:09 [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync() Gustavo A. R. Silva
@ 2024-05-01 18:35 ` bluez.test.bot
2024-05-01 19:12 ` [PATCH][next] " Kees Cook
2024-05-01 20:00 ` patchwork-bot+bluetooth
2 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2024-05-01 18:35 UTC (permalink / raw)
To: linux-bluetooth, gustavoars
[-- Attachment #1: Type: text/plain, Size: 2312 bytes --]
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=849718
---Test result---
Test Summary:
CheckPatch PASS 0.48 seconds
GitLint PASS 0.20 seconds
SubjectPrefix PASS 0.08 seconds
BuildKernel PASS 29.44 seconds
CheckAllWarning PASS 32.23 seconds
CheckSparse PASS 37.69 seconds
CheckSmatch FAIL 35.29 seconds
BuildKernel32 PASS 28.38 seconds
TestRunnerSetup PASS 512.49 seconds
TestRunner_l2cap-tester PASS 20.20 seconds
TestRunner_iso-tester PASS 28.50 seconds
TestRunner_bnep-tester PASS 4.60 seconds
TestRunner_mgmt-tester PASS 110.62 seconds
TestRunner_rfcomm-tester PASS 7.23 seconds
TestRunner_sco-tester PASS 14.90 seconds
TestRunner_ioctl-tester PASS 7.57 seconds
TestRunner_mesh-tester PASS 5.69 seconds
TestRunner_smp-tester PASS 6.71 seconds
TestRunner_userchan-tester PASS 4.82 seconds
IncrementalBuild PASS 27.24 seconds
Details
##############################
Test: CheckSmatch - FAIL
Desc: Run smatch tool with source
Output:
Segmentation fault (core dumped)
make[4]: *** [scripts/Makefile.build:244: net/bluetooth/hci_core.o] Error 139
make[4]: *** Deleting file 'net/bluetooth/hci_core.o'
make[3]: *** [scripts/Makefile.build:485: net/bluetooth] Error 2
make[2]: *** [scripts/Makefile.build:485: net] Error 2
make[2]: *** Waiting for unfinished jobs....
Segmentation fault (core dumped)
make[4]: *** [scripts/Makefile.build:244: drivers/bluetooth/bcm203x.o] Error 139
make[4]: *** Deleting file 'drivers/bluetooth/bcm203x.o'
make[4]: *** Waiting for unfinished jobs....
make[3]: *** [scripts/Makefile.build:485: drivers/bluetooth] Error 2
make[2]: *** [scripts/Makefile.build:485: drivers] Error 2
make[1]: *** [/github/workspace/src/src/Makefile:1919: .] Error 2
make: *** [Makefile:240: __sub-make] Error 2
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync()
2024-05-01 18:09 [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync() Gustavo A. R. Silva
2024-05-01 18:35 ` [next] " bluez.test.bot
@ 2024-05-01 19:12 ` Kees Cook
2024-05-01 20:00 ` patchwork-bot+bluetooth
2 siblings, 0 replies; 4+ messages in thread
From: Kees Cook @ 2024-05-01 19:12 UTC (permalink / raw)
To: Gustavo A. R. Silva
Cc: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
linux-bluetooth, linux-kernel, linux-hardening
On Wed, May 01, 2024 at 12:09:30PM -0600, Gustavo A. R. Silva wrote:
> Use struct_size() instead of the open-coded version. Similarly to
> this other patch[1].
>
> Link: https://lore.kernel.org/linux-hardening/ZiwwPmCvU25YzWek@neat/ [1]
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
--
Kees Cook
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync()
2024-05-01 18:09 [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync() Gustavo A. R. Silva
2024-05-01 18:35 ` [next] " bluez.test.bot
2024-05-01 19:12 ` [PATCH][next] " Kees Cook
@ 2024-05-01 20:00 ` patchwork-bot+bluetooth
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2024-05-01 20:00 UTC (permalink / raw)
To: Gustavo A. R. Silva
Cc: marcel, johan.hedberg, luiz.dentz, linux-bluetooth, linux-kernel,
linux-hardening
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Wed, 1 May 2024 12:09:30 -0600 you wrote:
> Use struct_size() instead of the open-coded version. Similarly to
> this other patch[1].
>
> Link: https://lore.kernel.org/linux-hardening/ZiwwPmCvU25YzWek@neat/ [1]
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> ---
> net/bluetooth/hci_conn.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- [next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync()
https://git.kernel.org/bluetooth/bluetooth-next/c/7bbc06151f36
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-01 20:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-01 18:09 [PATCH][next] Bluetooth: hci_conn: Use struct_size() in hci_le_big_create_sync() Gustavo A. R. Silva
2024-05-01 18:35 ` [next] " bluez.test.bot
2024-05-01 19:12 ` [PATCH][next] " Kees Cook
2024-05-01 20:00 ` patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox