2 * Copyright 2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
3 * All rights reserved. Distributed under the terms of the MIT License.
6 #include <KernelExport.h>
9 #include <NetBufferUtilities.h>
10 #include <net_protocol.h>
12 #include <bluetooth/HCI/btHCI_acl.h>
13 #include <bluetooth/HCI/btHCI_transport.h>
14 #include <bluetooth/HCI/btHCI_event.h>
15 #include <bluetooth/bdaddrUtils.h>
17 //#define BT_DEBUG_THIS_MODULE
18 #define SUBMODULE_NAME "ACL"
19 #define SUBMODULE_COLOR 34
21 #include <btCoreData.h>
22 #include <btModules.h>
27 extern struct bluetooth_core_data_module_info
* btCoreData
;
29 struct net_protocol_module_info
* L2cap
= NULL
;
31 extern void RegisterConnection(hci_id hid
, uint16 handle
);
32 extern void unRegisterConnection(hci_id hid
, uint16 handle
);
34 status_t
PostToUpper(HciConnection
* conn
, net_buffer
* buf
);
37 AclAssembly(net_buffer
* nbuf
, hci_id hid
)
39 status_t error
= B_OK
;
41 // Check ACL data packet. Driver should ensure report complete ACL packets
42 if (nbuf
->size
< sizeof(struct hci_acl_header
)) {
43 debugf("Invalid ACL data packet, small length=%ld\n", nbuf
->size
);
44 gBufferModule
->free(nbuf
);
48 // Strip ACL data packet header
49 NetBufferHeaderReader
<struct hci_acl_header
> aclHeader(nbuf
);
50 status_t status
= aclHeader
.Status();
52 gBufferModule
->free(nbuf
);
57 // Get ACL connection handle, PB flag and payload length
58 aclHeader
->handle
= le16toh(aclHeader
->handle
);
60 uint16 con_handle
= get_acl_handle(aclHeader
->handle
);
61 uint16 pb
= get_acl_pb_flag(aclHeader
->handle
);
62 uint16 length
= le16toh(aclHeader
->alen
);
66 debugf("ACL data packet, handle=%#x, PB=%#x, length=%d\n",
67 con_handle
, pb
, length
);
69 // a) Ensure there is HCI connection
70 // b) Get connection descriptor
71 // c) veryfy the status of the connection
73 HciConnection
* conn
= btCoreData
->ConnectionByHandle(con_handle
, hid
);
75 debugf("Uexpected handle=%#x does not exist!\n", con_handle
);
76 conn
= btCoreData
->AddConnection(con_handle
, BT_ACL
, BDADDR_NULL
, hid
);
79 // Verify connection state
80 if (conn
->status
!= HCI_CONN_OPEN
) {
81 flowf("unexpected ACL data packet. Connection not open\n");
82 gBufferModule
->free(nbuf
);
88 if (pb
== HCI_ACL_PACKET_START
) {
89 if (conn
->currentRxPacket
!= NULL
) {
90 debugf("Dropping incomplete L2CAP packet, got %ld want %d \n",
91 conn
->currentRxPacket
->size
, length
);
92 gBufferModule
->free(conn
->currentRxPacket
);
93 conn
->currentRxPacket
= NULL
;
94 conn
->currentRxExpectedLength
= 0;
97 // Get L2CAP header, ACL header was dimissed
98 if (nbuf
->size
< sizeof(l2cap_hdr_t
)) {
99 debugf("Invalid L2CAP start fragment, small, length=%ld\n",
101 gBufferModule
->free(nbuf
);
106 NetBufferHeaderReader
<l2cap_hdr_t
> l2capHeader(nbuf
);
107 status_t status
= l2capHeader
.Status();
109 gBufferModule
->free(nbuf
);
113 l2capHeader
->length
= le16toh(l2capHeader
->length
);
114 l2capHeader
->dcid
= le16toh(l2capHeader
->dcid
);
116 debugf("New L2CAP, handle=%#x length=%d\n", con_handle
,
117 le16toh(l2capHeader
->length
));
119 // Start new L2CAP packet
120 conn
->currentRxPacket
= nbuf
;
121 conn
->currentRxExpectedLength
= l2capHeader
->length
+ sizeof(l2cap_hdr_t
);
124 } else if (pb
== HCI_ACL_PACKET_FRAGMENT
) {
125 if (conn
->currentRxPacket
== NULL
) {
126 gBufferModule
->free(nbuf
);
130 // Add fragment to the L2CAP packet
131 gBufferModule
->merge(conn
->currentRxPacket
, nbuf
, true);
134 debugf("invalid ACL data packet. Invalid PB flag=%#x\n", pb
);
135 gBufferModule
->free(nbuf
);
139 // substract the length of content of the ACL packet
140 conn
->currentRxExpectedLength
-= length
;
142 if (conn
->currentRxExpectedLength
< 0) {
144 debugf("Mismatch. Got %ld, expected %ld\n",
145 conn
->currentRxPacket
->size
, conn
->currentRxExpectedLength
);
147 gBufferModule
->free(conn
->currentRxPacket
);
148 conn
->currentRxPacket
= NULL
;
149 conn
->currentRxExpectedLength
= 0;
151 } else if (conn
->currentRxExpectedLength
== 0) {
152 // OK, we have got complete L2CAP packet, so process it
153 debugf("L2cap packet ready %ld bytes\n", conn
->currentRxPacket
->size
);
154 error
= PostToUpper(conn
, conn
->currentRxPacket
);
156 conn
->currentRxPacket
= NULL
;
157 conn
->currentRxExpectedLength
= 0;
159 debugf("Expected %ld current adds %d\n",
160 conn
->currentRxExpectedLength
, length
);
168 PostToUpper(HciConnection
* conn
, net_buffer
* buf
)
172 if (get_module(NET_BLUETOOTH_L2CAP_NAME
,(module_info
**)&L2cap
) != B_OK
) {
173 debugf("cannot get module \"%s\"\n", NET_BLUETOOTH_L2CAP_NAME
);
175 } // TODO: someone put it
177 return L2cap
->receive_data((net_buffer
*)conn
);// XXX pass handle in type