Message ID | tencent_E43E1B2F25E4BA5EBBEC33229E5E1BEB4B08@qq.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 401ad9b792e12ca584ae7648c56926ed5e002299 |
Headers | show |
Series | [v2] Bluetooth: Ignore too large handle values in BIG | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | warning | WARNING: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #91: handle value is belonging to ida id range, otherwise ida will be erroneously total: 0 errors, 1 warnings, 0 checks, 10 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/src/13700520.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. |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/SubjectPrefix | success | Gitlint PASS |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | warning | CheckSparse WARNING net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): |
tedd_an/CheckSmatch | warning | CheckSparse WARNING net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
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=862580 ---Test result--- Test Summary: CheckPatch FAIL 2.06 seconds GitLint PASS 4.56 seconds SubjectPrefix PASS 0.62 seconds BuildKernel PASS 29.96 seconds CheckAllWarning PASS 32.46 seconds CheckSparse WARNING 40.13 seconds CheckSmatch WARNING 102.67 seconds BuildKernel32 PASS 28.72 seconds TestRunnerSetup PASS 524.19 seconds TestRunner_l2cap-tester PASS 18.30 seconds TestRunner_iso-tester PASS 35.14 seconds TestRunner_bnep-tester PASS 5.30 seconds TestRunner_mgmt-tester PASS 111.24 seconds TestRunner_rfcomm-tester PASS 7.65 seconds TestRunner_sco-tester PASS 12.97 seconds TestRunner_ioctl-tester PASS 7.84 seconds TestRunner_mesh-tester PASS 5.98 seconds TestRunner_smp-tester PASS 6.88 seconds TestRunner_userchan-tester PASS 5.01 seconds IncrementalBuild PASS 28.44 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script Output: [v2] Bluetooth: Ignore too large handle values in BIG WARNING: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #91: handle value is belonging to ida id range, otherwise ida will be erroneously total: 0 errors, 1 warnings, 0 checks, 10 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/src/13700520.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. ############################## Test: CheckSparse - WARNING Desc: Run sparse tool with linux kernel Output: net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): ############################## Test: CheckSmatch - WARNING Desc: Run smatch tool with source Output: net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 17 Jun 2024 19:09:37 +0800 you wrote: > hci_le_big_sync_established_evt is necessary to filter out cases where the > handle value is belonging to ida id range, otherwise ida will be erroneously > released in hci_conn_cleanup. > > Fixes: 181a42edddf5 ("Bluetooth: Make handle of hci_conn be unique") > Reported-by: syzbot+b2545b087a01a7319474@syzkaller.appspotmail.com > Closes: https://syzkaller.appspot.com/bug?extid=b2545b087a01a7319474 > Signed-off-by: Edward Adam Davis <eadavis@qq.com> > > [...] Here is the summary with links: - [v2] Bluetooth: Ignore too large handle values in BIG https://git.kernel.org/bluetooth/bluetooth-next/c/401ad9b792e1 You are awesome, thank you!
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index a487f9df8145..3966fbc38df9 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -6893,6 +6893,10 @@ static void hci_le_big_sync_established_evt(struct hci_dev *hdev, void *data, bis = hci_conn_hash_lookup_handle(hdev, handle); if (!bis) { + if (handle > HCI_CONN_HANDLE_MAX) { + bt_dev_dbg(hdev, "ignore too large handle %u", handle); + continue; + } bis = hci_conn_add(hdev, ISO_LINK, BDADDR_ANY, HCI_ROLE_SLAVE, handle); if (IS_ERR(bis))
hci_le_big_sync_established_evt is necessary to filter out cases where the handle value is belonging to ida id range, otherwise ida will be erroneously released in hci_conn_cleanup. Fixes: 181a42edddf5 ("Bluetooth: Make handle of hci_conn be unique") Reported-by: syzbot+b2545b087a01a7319474@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=b2545b087a01a7319474 Signed-off-by: Edward Adam Davis <eadavis@qq.com> --- net/bluetooth/hci_event.c | 4 +++ 1 file changed, 4 insertions(+)