diff mbox series

[BlueZ,v1] shared/att: Fix failing to set security level

Message ID 20241119163731.2767660-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,v1] shared/att: Fix failing to set security level | expand

Commit Message

Luiz Augusto von Dentz Nov. 19, 2024, 4:37 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

bt_att_chan_set_security attempts to set BT_SECURITY without first
checking what is the current security level which may cause errors
since the kernel does actually return -EINVAL when the security doesn't
change.
---
 src/shared/att.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

bluez.test.bot@gmail.com Nov. 19, 2024, 5:43 p.m. UTC | #1
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=911015

---Test result---

Test Summary:
CheckPatch                    PENDING   0.25 seconds
GitLint                       PENDING   0.23 seconds
BuildEll                      PASS      21.09 seconds
BluezMake                     PASS      1713.45 seconds
MakeCheck                     PASS      13.66 seconds
MakeDistcheck                 PASS      164.68 seconds
CheckValgrind                 PASS      219.81 seconds
CheckSmatch                   PASS      279.14 seconds
bluezmakeextell               PASS      101.44 seconds
IncrementalBuild              PENDING   0.26 seconds
ScanBuild                     PASS      878.10 seconds

Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:

##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:

##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:



---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/src/shared/att.c b/src/shared/att.c
index 4a406f4b91a4..dabbdb4315eb 100644
--- a/src/shared/att.c
+++ b/src/shared/att.c
@@ -727,6 +727,9 @@  static bool bt_att_chan_set_security(struct bt_att_chan *chan, int level)
 {
 	struct bt_security sec;
 
+	if (level == bt_att_chan_get_security(chan))
+		return true;
+
 	if (chan->type == BT_ATT_LOCAL) {
 		chan->sec_level = level;
 		return true;