Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 277ffbe3 authored by Gustavo Padovan's avatar Gustavo Padovan Committed by Marcel Holtmann
Browse files

Bluetooth: Check the minimum {I,S}-frame size into L2CAP



All packets with size fewer than the minimum specified is dropped.
Note that the size of the l2cap basic header, FCS and SAR fields are
already subtracted of len at the moment of the size check.

Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
Reviewed-by: default avatarJoão Paulo Rechi Vita <jprvita@profusion.mobi>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 1d8f5d16
Loading
Loading
Loading
Loading
+11 −3
Original line number Diff line number Diff line
@@ -3627,10 +3627,17 @@ static inline int l2cap_data_channel(struct l2cap_conn *conn, u16 cid, struct sk
		if (l2cap_check_fcs(pi, skb))
			goto drop;

		if (__is_iframe(control))
		if (__is_iframe(control)) {
			if (len < 4)
				goto drop;

			l2cap_data_channel_iframe(sk, control, skb);
		else
		} else {
			if (len != 0)
				goto drop;

			l2cap_data_channel_sframe(sk, control, skb);
		}

		goto done;

@@ -3645,7 +3652,8 @@ static inline int l2cap_data_channel(struct l2cap_conn *conn, u16 cid, struct sk
		if (pi->fcs == L2CAP_FCS_CRC16)
			len -= 2;

		if (len > L2CAP_DEFAULT_MAX_PDU_SIZE || __is_sframe(control))
		if (len > L2CAP_DEFAULT_MAX_PDU_SIZE || len < 4
				|| __is_sframe(control))
			goto drop;

		if (l2cap_check_fcs(pi, skb))