Message ID | 20221031231052.2718430-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 34f07dd531a4cf92afb3dbd7057c35702d0870e3 |
Headers | show |
Series | Bluetooth: L2CAP: Fix attempting to access uninitialized memory | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/checkpatch | success | Checkpatch PASS |
tedd_an/gitlint | success | Gitlint PASS |
tedd_an/subjectprefix | success | PASS |
tedd_an/buildkernel | success | Build Kernel PASS |
tedd_an/buildkernel32 | success | Build Kernel32 PASS |
tedd_an/incremental_build | success | Pass |
tedd_an/testrunnersetup | success | Test Runner Setup PASS |
tedd_an/testrunnerl2cap-tester | success | Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneriso-tester | success | Total: 55, Passed: 55 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 494, Passed: 494 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 11, Passed: 11 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersco-tester | success | Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerioctl-tester | success | Total: 28, Passed: 28 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermesh-tester | success | Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersmp-tester | success | Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneruserchan-tester | success | Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0 |
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=690675 ---Test result--- Test Summary: CheckPatch PASS 1.42 seconds GitLint PASS 0.83 seconds SubjectPrefix PASS 0.64 seconds BuildKernel PASS 45.44 seconds BuildKernel32 PASS 40.67 seconds Incremental Build with patchesPASS 63.07 seconds TestRunner: Setup PASS 702.91 seconds TestRunner: l2cap-tester PASS 21.89 seconds TestRunner: iso-tester PASS 22.33 seconds TestRunner: bnep-tester PASS 8.51 seconds TestRunner: mgmt-tester PASS 136.60 seconds TestRunner: rfcomm-tester PASS 13.46 seconds TestRunner: sco-tester PASS 12.76 seconds TestRunner: ioctl-tester PASS 14.63 seconds TestRunner: mesh-tester PASS 9.94 seconds TestRunner: smp-tester PASS 12.11 seconds TestRunner: userchan-tester PASS 8.51 seconds --- Regards, Linux Bluetooth
Hi Luiz On Mon, 2022-10-31 at 16:10 -0700, Luiz Augusto von Dentz wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > On l2cap_parse_conf_req the variable efs is only initialized if > remote_efs has been set. > > CVE: CVE-2022-42895 > CC: stable@vger.kernel.org > Reported-by: Tamás Koczka <poprdi@google.com> Reviewed-by: Tedd Ho-Jeong An <tedd.an@intel.com> > Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > --- > net/bluetooth/l2cap_core.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c > index cdddd2c779f2..93802b27f2a5 100644 > --- a/net/bluetooth/l2cap_core.c > +++ b/net/bluetooth/l2cap_core.c > @@ -3764,7 +3764,8 @@ static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data, size_t data > l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, > sizeof(rfc), (unsigned long) &rfc, endptr - ptr); > > - if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) { > + if (remote_efs && > + test_bit(FLAG_EFS_ENABLE, &chan->flags)) { > chan->remote_id = efs.id; > chan->remote_stype = efs.stype; > chan->remote_msdu = le16_to_cpu(efs.msdu); Regards, Tedd
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 31 Oct 2022 16:10:52 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > On l2cap_parse_conf_req the variable efs is only initialized if > remote_efs has been set. > > CVE: CVE-2022-42895 > CC: stable@vger.kernel.org > Reported-by: Tamás Koczka <poprdi@google.com> > Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > [...] Here is the summary with links: - Bluetooth: L2CAP: Fix attempting to access uninitialized memory https://git.kernel.org/bluetooth/bluetooth-next/c/34f07dd531a4 You are awesome, thank you!
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index cdddd2c779f2..93802b27f2a5 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -3764,7 +3764,8 @@ static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data, size_t data l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), (unsigned long) &rfc, endptr - ptr); - if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) { + if (remote_efs && + test_bit(FLAG_EFS_ENABLE, &chan->flags)) { chan->remote_id = efs.id; chan->remote_stype = efs.stype; chan->remote_msdu = le16_to_cpu(efs.msdu);