Bluetooth: Fix rejected connection not disconnecting ACL link
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>
Wed, 15 Jul 2009 16:50:58 +0000 (13:50 -0300)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 22 Aug 2009 22:05:58 +0000 (15:05 -0700)
commit9e726b17422bade75fba94e625cd35fd1353e682
treeaf8cf616d9cbda12f51682dbb96e696f135be436
parentef54fd937fbd5ebaeb023818524565bd526a5f36
Bluetooth: Fix rejected connection not disconnecting ACL link

When using DEFER_SETUP on a RFCOMM socket, a SABM frame triggers
authorization which when rejected send a DM response. This is fine
according to the RFCOMM spec:

    the responding implementation may replace the "proper" response
    on the Multiplexer Control channel with a DM frame, sent on the
    referenced DLCI to indicate that the DLCI is not open, and that
    the responder would not grant a request to open it later either.

But some stacks doesn't seems to cope with this leaving DLCI 0 open after
receiving DM frame.

To fix it properly a timer was introduced to rfcomm_session which is used
to set a timeout when the last active DLC of a session is unlinked, this
will give the remote stack some time to reply with a proper DISC frame on
DLCI 0 avoiding both sides sending DISC to each other on stacks that
follow the specification and taking care of those who don't by taking
down DLCI 0.

Signed-off-by: Luiz Augusto von Dentz <luiz.dentz@openbossa.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
include/net/bluetooth/rfcomm.h
net/bluetooth/rfcomm/core.c