Skip to content

Commit 7c9cbd0

Browse files
holtmannJohan Hedberg
authored andcommitted
Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer
The function l2cap_get_conf_opt will return L2CAP_CONF_OPT_SIZE + opt->len as length value. The opt->len however is in control over the remote user and can be used by an attacker to gain access beyond the bounds of the actual packet. To prevent any potential leak of heap memory, it is enough to check that the resulting len calculation after calling l2cap_get_conf_opt is not below zero. A well formed packet will always return >= 0 here and will end with the length value being zero after the last option has been parsed. In case of malformed packets messing with the opt->len field the length value will become negative. If that is the case, then just abort and ignore the option. In case an attacker uses a too short opt->len value, then garbage will be parsed, but that is protected by the unknown option handling and also the option parameter size checks. Signed-off-by: Marcel Holtmann <[email protected]> Reviewed-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Johan Hedberg <[email protected]>
1 parent af3d5d1 commit 7c9cbd0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

net/bluetooth/l2cap_core.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3337,6 +3337,8 @@ static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data, size_t data
33373337

33383338
while (len >= L2CAP_CONF_OPT_SIZE) {
33393339
len -= l2cap_get_conf_opt(&req, &type, &olen, &val);
3340+
if (len < 0)
3341+
break;
33403342

33413343
hint = type & L2CAP_CONF_HINT;
33423344
type &= L2CAP_CONF_MASK;
@@ -3555,6 +3557,8 @@ static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len,
35553557

35563558
while (len >= L2CAP_CONF_OPT_SIZE) {
35573559
len -= l2cap_get_conf_opt(&rsp, &type, &olen, &val);
3560+
if (len < 0)
3561+
break;
35583562

35593563
switch (type) {
35603564
case L2CAP_CONF_MTU:
@@ -3740,6 +3744,8 @@ static void l2cap_conf_rfc_get(struct l2cap_chan *chan, void *rsp, int len)
37403744

37413745
while (len >= L2CAP_CONF_OPT_SIZE) {
37423746
len -= l2cap_get_conf_opt(&rsp, &type, &olen, &val);
3747+
if (len < 0)
3748+
break;
37433749

37443750
switch (type) {
37453751
case L2CAP_CONF_RFC:

0 commit comments

Comments
 (0)