blob: 18f4f27e0f74f8e64eb1c84d4ae8eb9c98826d3b [file] [log] [blame]
Andrei Emeltchenkobe218712010-12-01 16:58:26 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
Gustavo F. Padovance5706b2010-07-13 11:57:11 -03004 Copyright (C) 2009-2010 Gustavo F. Padovan <gustavo@padovan.org>
Gustavo F. Padovan5d8868f2010-07-16 16:18:39 -03005 Copyright (C) 2010 Google Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License version 2 as
11 published by the Free Software Foundation;
12
13 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
14 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
16 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
Andrei Emeltchenkobe218712010-12-01 16:58:26 +020017 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
18 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21
Andrei Emeltchenkobe218712010-12-01 16:58:26 +020022 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
23 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 SOFTWARE IS DISCLAIMED.
25*/
26
27#ifndef __L2CAP_H
28#define __L2CAP_H
29
Andrei Emeltchenko88843ab2011-10-17 12:19:56 +030030#include <asm/unaligned.h>
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* L2CAP defaults */
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -070033#define L2CAP_DEFAULT_MTU 672
Gustavo F. Padovanf2fcfcd2009-07-04 15:06:24 -030034#define L2CAP_DEFAULT_MIN_MTU 48
Andrei Emeltchenko8936fa62012-10-08 11:14:41 +030035#define L2CAP_DEFAULT_FLUSH_TO 0xFFFF
36#define L2CAP_EFS_DEFAULT_FLUSH_TO 0xFFFFFFFF
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -030037#define L2CAP_DEFAULT_TX_WINDOW 63
Andrei Emeltchenko6327eb92011-10-11 13:37:42 +030038#define L2CAP_DEFAULT_EXT_WINDOW 0x3FFF
Gustavo F. Padovane90bac02009-08-20 22:26:00 -030039#define L2CAP_DEFAULT_MAX_TX 3
Mat Martineaufa235562010-08-05 15:54:20 -070040#define L2CAP_DEFAULT_RETRANS_TO 2000 /* 2 seconds */
Gustavo F. Padovane90bac02009-08-20 22:26:00 -030041#define L2CAP_DEFAULT_MONITOR_TO 12000 /* 12 seconds */
Andrei Emeltchenko0b4558e2012-10-05 16:56:58 +030042#define L2CAP_DEFAULT_MAX_PDU_SIZE 1492 /* Sized for AMP packet */
Gustavo F. Padovanc1b4f432010-05-01 16:15:39 -030043#define L2CAP_DEFAULT_ACK_TO 200
Andrei Emeltchenko8f7975b2011-10-13 16:18:54 +030044#define L2CAP_DEFAULT_MAX_SDU_SIZE 0xFFFF
45#define L2CAP_DEFAULT_SDU_ITIME 0xFFFFFFFF
46#define L2CAP_DEFAULT_ACC_LAT 0xFFFFFFFF
Mat Martineau94122bb2012-05-02 09:42:02 -070047#define L2CAP_BREDR_MAX_PAYLOAD 1019 /* 3-DH5 packet */
Andre Guedes8c3a4f02012-05-31 17:01:35 -030048#define L2CAP_LE_MIN_MTU 23
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Marcel Holtmannba13ccd2012-03-01 14:25:33 -080050#define L2CAP_DISC_TIMEOUT msecs_to_jiffies(100)
51#define L2CAP_DISC_REJ_TIMEOUT msecs_to_jiffies(5000)
52#define L2CAP_ENC_TIMEOUT msecs_to_jiffies(5000)
53#define L2CAP_CONN_TIMEOUT msecs_to_jiffies(40000)
54#define L2CAP_INFO_TIMEOUT msecs_to_jiffies(4000)
Mat Martineau5b155ef2012-10-23 15:24:14 -070055#define L2CAP_MOVE_TIMEOUT msecs_to_jiffies(4000)
56#define L2CAP_MOVE_ERTX_TIMEOUT msecs_to_jiffies(60000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Andrei Emeltchenko466f8002012-05-29 13:59:01 +030058#define L2CAP_A2MP_DEFAULT_MTU 670
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* L2CAP socket address */
61struct sockaddr_l2 {
62 sa_family_t l2_family;
Al Viro8e036fc2007-07-29 00:16:36 -070063 __le16 l2_psm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 bdaddr_t l2_bdaddr;
Marcel Holtmannf29972d2009-02-12 05:07:45 +010065 __le16 l2_cid;
Andre Guedes43ef0b82012-04-24 21:02:52 -030066 __u8 l2_bdaddr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
69/* L2CAP socket options */
70#define L2CAP_OPTIONS 0x01
71struct l2cap_options {
72 __u16 omtu;
73 __u16 imtu;
74 __u16 flush_to;
75 __u8 mode;
Gustavo F. Padovanfcc203c2009-08-20 22:26:02 -030076 __u8 fcs;
Gustavo F. Padovan68d7f0c2010-05-01 16:15:41 -030077 __u8 max_tx;
Gustavo F. Padovan14b5aa72010-05-01 16:15:40 -030078 __u16 txwin_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
81#define L2CAP_CONNINFO 0x02
82struct l2cap_conninfo {
83 __u16 hci_handle;
84 __u8 dev_class[3];
85};
86
87#define L2CAP_LM 0x03
88#define L2CAP_LM_MASTER 0x0001
89#define L2CAP_LM_AUTH 0x0002
90#define L2CAP_LM_ENCRYPT 0x0004
91#define L2CAP_LM_TRUSTED 0x0008
92#define L2CAP_LM_RELIABLE 0x0010
93#define L2CAP_LM_SECURE 0x0020
Marcel Holtmann7d513e92014-01-15 22:37:40 -080094#define L2CAP_LM_FIPS 0x0040
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* L2CAP command codes */
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -070097#define L2CAP_COMMAND_REJ 0x01
98#define L2CAP_CONN_REQ 0x02
99#define L2CAP_CONN_RSP 0x03
100#define L2CAP_CONF_REQ 0x04
101#define L2CAP_CONF_RSP 0x05
102#define L2CAP_DISCONN_REQ 0x06
103#define L2CAP_DISCONN_RSP 0x07
104#define L2CAP_ECHO_REQ 0x08
105#define L2CAP_ECHO_RSP 0x09
106#define L2CAP_INFO_REQ 0x0a
107#define L2CAP_INFO_RSP 0x0b
Mat Martineau38094c72011-11-02 16:18:31 -0700108#define L2CAP_CREATE_CHAN_REQ 0x0c
109#define L2CAP_CREATE_CHAN_RSP 0x0d
110#define L2CAP_MOVE_CHAN_REQ 0x0e
111#define L2CAP_MOVE_CHAN_RSP 0x0f
112#define L2CAP_MOVE_CHAN_CFM 0x10
113#define L2CAP_MOVE_CHAN_CFM_RSP 0x11
Claudio Takahasi3300d9a2011-02-11 19:28:54 -0200114#define L2CAP_CONN_PARAM_UPDATE_REQ 0x12
115#define L2CAP_CONN_PARAM_UPDATE_RSP 0x13
Johan Hedbergee5ec5c2013-05-13 12:15:39 +0300116#define L2CAP_LE_CONN_REQ 0x14
117#define L2CAP_LE_CONN_RSP 0x15
118#define L2CAP_LE_CREDITS 0x16
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700119
Andrei Emeltchenkoa8583932011-09-16 16:26:30 +0300120/* L2CAP extended feature mask */
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700121#define L2CAP_FEAT_FLOWCTL 0x00000001
122#define L2CAP_FEAT_RETRANS 0x00000002
Andrei Emeltchenkoa8583932011-09-16 16:26:30 +0300123#define L2CAP_FEAT_BIDIR_QOS 0x00000004
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700124#define L2CAP_FEAT_ERTM 0x00000008
125#define L2CAP_FEAT_STREAMING 0x00000010
126#define L2CAP_FEAT_FCS 0x00000020
Andrei Emeltchenkoa8583932011-09-16 16:26:30 +0300127#define L2CAP_FEAT_EXT_FLOW 0x00000040
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700128#define L2CAP_FEAT_FIXED_CHAN 0x00000080
Andrei Emeltchenkoa8583932011-09-16 16:26:30 +0300129#define L2CAP_FEAT_EXT_WINDOW 0x00000100
130#define L2CAP_FEAT_UCD 0x00000200
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700131
132/* L2CAP checksum option */
133#define L2CAP_FCS_NONE 0x00
134#define L2CAP_FCS_CRC16 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Mat Martineaud835ac02011-11-02 16:18:33 -0700136/* L2CAP fixed channels */
137#define L2CAP_FC_L2CAP 0x02
Marcel Holtmannd40bffb2013-10-12 08:18:18 -0700138#define L2CAP_FC_CONNLESS 0x04
Mat Martineaud835ac02011-11-02 16:18:33 -0700139#define L2CAP_FC_A2MP 0x08
Jukka Rissanen18722c22013-12-11 17:05:37 +0200140#define L2CAP_FC_6LOWPAN 0x3e /* reserved and temporary value */
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -0300141
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -0300142/* L2CAP Control Field bit masks */
Andrei Emeltchenko57253fd2011-10-11 13:37:43 +0300143#define L2CAP_CTRL_SAR 0xC000
144#define L2CAP_CTRL_REQSEQ 0x3F00
145#define L2CAP_CTRL_TXSEQ 0x007E
146#define L2CAP_CTRL_SUPERVISE 0x000C
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -0300147
Andrei Emeltchenko57253fd2011-10-11 13:37:43 +0300148#define L2CAP_CTRL_RETRANS 0x0080
149#define L2CAP_CTRL_FINAL 0x0080
150#define L2CAP_CTRL_POLL 0x0010
151#define L2CAP_CTRL_FRAME_TYPE 0x0001 /* I- or S-Frame */
152
153#define L2CAP_CTRL_TXSEQ_SHIFT 1
154#define L2CAP_CTRL_SUPER_SHIFT 2
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700155#define L2CAP_CTRL_POLL_SHIFT 4
156#define L2CAP_CTRL_FINAL_SHIFT 7
Andrei Emeltchenko57253fd2011-10-11 13:37:43 +0300157#define L2CAP_CTRL_REQSEQ_SHIFT 8
158#define L2CAP_CTRL_SAR_SHIFT 14
159
160/* L2CAP Extended Control Field bit mask */
161#define L2CAP_EXT_CTRL_TXSEQ 0xFFFC0000
162#define L2CAP_EXT_CTRL_SAR 0x00030000
163#define L2CAP_EXT_CTRL_SUPERVISE 0x00030000
164#define L2CAP_EXT_CTRL_REQSEQ 0x0000FFFC
165
166#define L2CAP_EXT_CTRL_POLL 0x00040000
167#define L2CAP_EXT_CTRL_FINAL 0x00000002
168#define L2CAP_EXT_CTRL_FRAME_TYPE 0x00000001 /* I- or S-Frame */
169
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700170#define L2CAP_EXT_CTRL_FINAL_SHIFT 1
Andrei Emeltchenko57253fd2011-10-11 13:37:43 +0300171#define L2CAP_EXT_CTRL_REQSEQ_SHIFT 2
172#define L2CAP_EXT_CTRL_SAR_SHIFT 16
173#define L2CAP_EXT_CTRL_SUPER_SHIFT 16
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700174#define L2CAP_EXT_CTRL_POLL_SHIFT 18
Andrei Emeltchenko57253fd2011-10-11 13:37:43 +0300175#define L2CAP_EXT_CTRL_TXSEQ_SHIFT 18
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -0300176
177/* L2CAP Supervisory Function */
Andrei Emeltchenkoab784b72011-10-11 13:37:44 +0300178#define L2CAP_SUPER_RR 0x00
179#define L2CAP_SUPER_REJ 0x01
180#define L2CAP_SUPER_RNR 0x02
181#define L2CAP_SUPER_SREJ 0x03
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -0300182
183/* L2CAP Segmentation and Reassembly */
Andrei Emeltchenko7e0ef6e2011-10-11 13:37:45 +0300184#define L2CAP_SAR_UNSEGMENTED 0x00
185#define L2CAP_SAR_START 0x01
186#define L2CAP_SAR_END 0x02
187#define L2CAP_SAR_CONTINUE 0x03
Gustavo F. Padovan1c2acff2009-08-20 22:25:57 -0300188
Ilia Kolomisnkye2fd3182011-07-10 08:47:44 +0300189/* L2CAP Command rej. reasons */
Andrei Emeltchenko8d6765a2011-10-11 13:37:41 +0300190#define L2CAP_REJ_NOT_UNDERSTOOD 0x0000
191#define L2CAP_REJ_MTU_EXCEEDED 0x0001
192#define L2CAP_REJ_INVALID_CID 0x0002
Ilia Kolomisnkye2fd3182011-07-10 08:47:44 +0300193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/* L2CAP structures */
195struct l2cap_hdr {
Al Viro8e036fc2007-07-29 00:16:36 -0700196 __le16 len;
197 __le16 cid;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300198} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define L2CAP_HDR_SIZE 4
Andrei Emeltchenkod43cb282011-10-11 13:37:54 +0300200#define L2CAP_ENH_HDR_SIZE 6
201#define L2CAP_EXT_HDR_SIZE 8
202
203#define L2CAP_FCS_SIZE 2
204#define L2CAP_SDULEN_SIZE 2
205#define L2CAP_PSMLEN_SIZE 2
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700206#define L2CAP_ENH_CTRL_SIZE 2
207#define L2CAP_EXT_CTRL_SIZE 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209struct l2cap_cmd_hdr {
210 __u8 code;
211 __u8 ident;
Al Viro8e036fc2007-07-29 00:16:36 -0700212 __le16 len;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300213} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#define L2CAP_CMD_HDR_SIZE 4
215
Ilia Kolomisnkye2fd3182011-07-10 08:47:44 +0300216struct l2cap_cmd_rej_unk {
Al Viro8e036fc2007-07-29 00:16:36 -0700217 __le16 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300218} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Ilia Kolomisnkye2fd3182011-07-10 08:47:44 +0300220struct l2cap_cmd_rej_mtu {
221 __le16 reason;
222 __le16 max_mtu;
223} __packed;
224
225struct l2cap_cmd_rej_cid {
226 __le16 reason;
227 __le16 scid;
228 __le16 dcid;
229} __packed;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231struct l2cap_conn_req {
Al Viro8e036fc2007-07-29 00:16:36 -0700232 __le16 psm;
233 __le16 scid;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300234} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236struct l2cap_conn_rsp {
Al Viro8e036fc2007-07-29 00:16:36 -0700237 __le16 dcid;
238 __le16 scid;
239 __le16 result;
240 __le16 status;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300241} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Andrei Emeltchenko2983fd62012-05-24 15:42:50 +0300243/* protocol/service multiplexer (PSM) */
244#define L2CAP_PSM_SDP 0x0001
245#define L2CAP_PSM_RFCOMM 0x0003
Marcel Holtmann3124b842013-10-12 07:19:32 -0700246#define L2CAP_PSM_3DSP 0x0021
Andrei Emeltchenko2983fd62012-05-24 15:42:50 +0300247
Maxime Jayat3f794102013-10-12 01:29:46 +0200248/* channel identifier */
Gustavo F. Padovan8db4dc42009-04-20 01:31:05 -0300249#define L2CAP_CID_SIGNALING 0x0001
250#define L2CAP_CID_CONN_LESS 0x0002
Andrei Emeltchenko466f8002012-05-29 13:59:01 +0300251#define L2CAP_CID_A2MP 0x0003
Johan Hedberg073d1cf2013-04-29 19:35:35 +0300252#define L2CAP_CID_ATT 0x0004
Ville Tervoacd7d372011-02-10 22:38:49 -0300253#define L2CAP_CID_LE_SIGNALING 0x0005
254#define L2CAP_CID_SMP 0x0006
Gustavo F. Padovan8db4dc42009-04-20 01:31:05 -0300255#define L2CAP_CID_DYN_START 0x0040
256#define L2CAP_CID_DYN_END 0xffff
Johan Hedberge77af752013-10-08 10:31:00 +0200257#define L2CAP_CID_LE_DYN_END 0x007f
Gustavo F. Padovan8db4dc42009-04-20 01:31:05 -0300258
Mat Martineau38094c72011-11-02 16:18:31 -0700259/* connect/create channel results */
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700260#define L2CAP_CR_SUCCESS 0x0000
261#define L2CAP_CR_PEND 0x0001
262#define L2CAP_CR_BAD_PSM 0x0002
263#define L2CAP_CR_SEC_BLOCK 0x0003
264#define L2CAP_CR_NO_MEM 0x0004
Mat Martineau38094c72011-11-02 16:18:31 -0700265#define L2CAP_CR_BAD_AMP 0x0005
Johan Hedbergee5ec5c2013-05-13 12:15:39 +0300266#define L2CAP_CR_AUTHENTICATION 0x0005
267#define L2CAP_CR_AUTHORIZATION 0x0006
268#define L2CAP_CR_BAD_KEY_SIZE 0x0007
269#define L2CAP_CR_ENCRYPTION 0x0008
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Mat Martineau38094c72011-11-02 16:18:31 -0700271/* connect/create channel status */
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700272#define L2CAP_CS_NO_INFO 0x0000
273#define L2CAP_CS_AUTHEN_PEND 0x0001
274#define L2CAP_CS_AUTHOR_PEND 0x0002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276struct l2cap_conf_req {
Al Viro8e036fc2007-07-29 00:16:36 -0700277 __le16 dcid;
278 __le16 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 __u8 data[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300280} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282struct l2cap_conf_rsp {
Al Viro8e036fc2007-07-29 00:16:36 -0700283 __le16 scid;
284 __le16 flags;
285 __le16 result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 __u8 data[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300287} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Marcel Holtmann5dee9e72007-05-24 14:27:19 +0200289#define L2CAP_CONF_SUCCESS 0x0000
290#define L2CAP_CONF_UNACCEPT 0x0001
291#define L2CAP_CONF_REJECT 0x0002
292#define L2CAP_CONF_UNKNOWN 0x0003
Andrei Emeltchenko0e8b2072011-10-17 14:35:32 +0300293#define L2CAP_CONF_PENDING 0x0004
Andrei Emeltchenko5a9e7052011-10-13 16:18:53 +0300294#define L2CAP_CONF_EFS_REJECT 0x0005
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Andrei Emeltchenko59e54bd2012-05-23 15:44:06 +0300296/* configuration req/rsp continuation flag */
297#define L2CAP_CONF_FLAG_CONTINUATION 0x0001
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299struct l2cap_conf_opt {
300 __u8 type;
301 __u8 len;
302 __u8 val[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300303} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#define L2CAP_CONF_OPT_SIZE 2
305
Gustavo F. Padovan589d2742009-04-20 01:31:07 -0300306#define L2CAP_CONF_HINT 0x80
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700307#define L2CAP_CONF_MASK 0x7f
Gustavo F. Padovan589d2742009-04-20 01:31:07 -0300308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#define L2CAP_CONF_MTU 0x01
310#define L2CAP_CONF_FLUSH_TO 0x02
311#define L2CAP_CONF_QOS 0x03
312#define L2CAP_CONF_RFC 0x04
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700313#define L2CAP_CONF_FCS 0x05
Andrei Emeltchenko5a9e7052011-10-13 16:18:53 +0300314#define L2CAP_CONF_EFS 0x06
Andrei Emeltchenko6327eb92011-10-11 13:37:42 +0300315#define L2CAP_CONF_EWS 0x07
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317#define L2CAP_CONF_MAX_SIZE 22
318
Marcel Holtmann6464f352007-10-20 13:39:51 +0200319struct l2cap_conf_rfc {
320 __u8 mode;
321 __u8 txwin_size;
322 __u8 max_transmit;
323 __le16 retrans_timeout;
324 __le16 monitor_timeout;
325 __le16 max_pdu_size;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300326} __packed;
Marcel Holtmann6464f352007-10-20 13:39:51 +0200327
328#define L2CAP_MODE_BASIC 0x00
329#define L2CAP_MODE_RETRANS 0x01
330#define L2CAP_MODE_FLOWCTL 0x02
Marcel Holtmann47ec1dcd2009-05-02 18:57:55 -0700331#define L2CAP_MODE_ERTM 0x03
Marcel Holtmannc6b03cf2009-05-02 22:31:10 -0700332#define L2CAP_MODE_STREAMING 0x04
Marcel Holtmann6464f352007-10-20 13:39:51 +0200333
Johan Hedberg38319712013-05-17 12:49:23 +0300334/* Unlike the above this one doesn't actually map to anything that would
335 * ever be sent over the air. Therefore, use a value that's unlikely to
336 * ever be used in the BR/EDR configuration phase.
337 */
338#define L2CAP_MODE_LE_FLOWCTL 0x80
339
Andrei Emeltchenko5a9e7052011-10-13 16:18:53 +0300340struct l2cap_conf_efs {
341 __u8 id;
342 __u8 stype;
343 __le16 msdu;
344 __le32 sdu_itime;
345 __le32 acc_lat;
346 __le32 flush_to;
347} __packed;
348
Andrei Emeltchenko8f7975b2011-10-13 16:18:54 +0300349#define L2CAP_SERV_NOTRAFIC 0x00
350#define L2CAP_SERV_BESTEFFORT 0x01
351#define L2CAP_SERV_GUARANTEED 0x02
352
353#define L2CAP_BESTEFFORT_ID 0x01
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355struct l2cap_disconn_req {
Al Viro8e036fc2007-07-29 00:16:36 -0700356 __le16 dcid;
357 __le16 scid;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300358} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360struct l2cap_disconn_rsp {
Al Viro8e036fc2007-07-29 00:16:36 -0700361 __le16 dcid;
362 __le16 scid;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300363} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365struct l2cap_info_req {
Al Viro8e036fc2007-07-29 00:16:36 -0700366 __le16 type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300367} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369struct l2cap_info_rsp {
Al Viro8e036fc2007-07-29 00:16:36 -0700370 __le16 type;
371 __le16 result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 __u8 data[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300373} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Mat Martineau38094c72011-11-02 16:18:31 -0700375struct l2cap_create_chan_req {
376 __le16 psm;
377 __le16 scid;
378 __u8 amp_id;
379} __packed;
380
381struct l2cap_create_chan_rsp {
382 __le16 dcid;
383 __le16 scid;
384 __le16 result;
385 __le16 status;
386} __packed;
387
388struct l2cap_move_chan_req {
389 __le16 icid;
390 __u8 dest_amp_id;
391} __packed;
392
393struct l2cap_move_chan_rsp {
394 __le16 icid;
395 __le16 result;
396} __packed;
397
398#define L2CAP_MR_SUCCESS 0x0000
399#define L2CAP_MR_PEND 0x0001
400#define L2CAP_MR_BAD_ID 0x0002
401#define L2CAP_MR_SAME_ID 0x0003
402#define L2CAP_MR_NOT_SUPP 0x0004
403#define L2CAP_MR_COLLISION 0x0005
404#define L2CAP_MR_NOT_ALLOWED 0x0006
405
406struct l2cap_move_chan_cfm {
407 __le16 icid;
408 __le16 result;
409} __packed;
410
411#define L2CAP_MC_CONFIRMED 0x0000
412#define L2CAP_MC_UNCONFIRMED 0x0001
413
414struct l2cap_move_chan_cfm_rsp {
415 __le16 icid;
416} __packed;
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/* info type */
Andrei Emeltchenko8d6765a2011-10-11 13:37:41 +0300419#define L2CAP_IT_CL_MTU 0x0001
420#define L2CAP_IT_FEAT_MASK 0x0002
421#define L2CAP_IT_FIXED_CHAN 0x0003
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423/* info result */
Andrei Emeltchenko8d6765a2011-10-11 13:37:41 +0300424#define L2CAP_IR_SUCCESS 0x0000
425#define L2CAP_IR_NOTSUPP 0x0001
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Claudio Takahaside731152011-02-11 19:28:55 -0200427struct l2cap_conn_param_update_req {
428 __le16 min;
429 __le16 max;
430 __le16 latency;
431 __le16 to_multiplier;
432} __packed;
433
434struct l2cap_conn_param_update_rsp {
435 __le16 result;
436} __packed;
437
438/* Connection Parameters result */
439#define L2CAP_CONN_PARAM_ACCEPTED 0x0000
440#define L2CAP_CONN_PARAM_REJECTED 0x0001
441
Johan Hedbergee5ec5c2013-05-13 12:15:39 +0300442#define L2CAP_LE_MAX_CREDITS 10
443#define L2CAP_LE_DEFAULT_MPS 230
444
445struct l2cap_le_conn_req {
446 __le16 psm;
447 __le16 scid;
448 __le16 mtu;
449 __le16 mps;
450 __le16 credits;
451} __packed;
452
453struct l2cap_le_conn_rsp {
454 __le16 dcid;
455 __le16 mtu;
456 __le16 mps;
457 __le16 credits;
458 __le16 result;
459} __packed;
460
461struct l2cap_le_credits {
462 __le16 cid;
463 __le16 credits;
464} __packed;
465
Gustavo F. Padovan48454072011-03-25 00:22:30 -0300466/* ----- L2CAP channels and connections ----- */
Mat Martineau3c588192012-04-11 10:48:42 -0700467struct l2cap_seq_list {
468 __u16 head;
469 __u16 tail;
470 __u16 mask;
471 __u16 *list;
472};
473
474#define L2CAP_SEQ_LIST_CLEAR 0xFFFF
475#define L2CAP_SEQ_LIST_TAIL 0x8000
476
Gustavo F. Padovan48454072011-03-25 00:22:30 -0300477struct l2cap_chan {
Gustavo F. Padovan8c1d7872011-04-13 20:23:55 -0300478 struct l2cap_conn *conn;
Mat Martineau08333282012-10-23 15:24:06 -0700479 struct hci_conn *hs_hcon;
480 struct hci_chan *hs_hchan;
Syam Sidhardhan144ad332012-07-27 23:51:21 +0530481 struct kref kref;
Gustavo F. Padovan8c1d7872011-04-13 20:23:55 -0300482
Gustavo F. Padovan89bc5002011-06-03 00:19:47 -0300483 __u8 state;
484
Marcel Holtmann7eafc592013-10-13 08:12:47 -0700485 bdaddr_t dst;
Marcel Holtmann4f1654e2013-10-13 08:50:41 -0700486 __u8 dst_type;
Marcel Holtmann7eafc592013-10-13 08:12:47 -0700487 bdaddr_t src;
Marcel Holtmann4f1654e2013-10-13 08:50:41 -0700488 __u8 src_type;
Gustavo F. Padovanfe4128e2011-04-13 19:50:45 -0300489 __le16 psm;
Marcel Holtmann4f1654e2013-10-13 08:50:41 -0700490 __le16 sport;
Gustavo F. Padovanfe4128e2011-04-13 19:50:45 -0300491 __u16 dcid;
492 __u16 scid;
Gustavo F. Padovan43434782011-04-12 18:31:57 -0300493
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -0300494 __u16 imtu;
495 __u16 omtu;
496 __u16 flush_to;
497 __u8 mode;
Gustavo F. Padovan715ec002011-05-02 17:13:55 -0300498 __u8 chan_type;
Mat Martineau2ea66482011-11-02 16:18:30 -0700499 __u8 chan_policy;
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -0300500
Gustavo F. Padovan43434782011-04-12 18:31:57 -0300501 __u8 sec_level;
Gustavo F. Padovan43434782011-04-12 18:31:57 -0300502
Gustavo F. Padovanfc7f8a72011-03-25 13:59:37 -0300503 __u8 ident;
504
Gustavo F. Padovan73ffa902011-03-25 14:16:54 -0300505 __u8 conf_req[64];
506 __u8 conf_len;
507 __u8 num_conf_req;
508 __u8 num_conf_rsp;
509
Gustavo F. Padovan47d1ec62011-04-13 15:57:03 -0300510 __u8 fcs;
511
Andrei Emeltchenko6327eb92011-10-11 13:37:42 +0300512 __u16 tx_win;
Andrei Emeltchenko836be932011-10-17 12:19:57 +0300513 __u16 tx_win_max;
Mat Martineauc20f8e32012-07-10 05:47:07 -0700514 __u16 ack_win;
Gustavo F. Padovan47d1ec62011-04-13 15:57:03 -0300515 __u8 max_tx;
516 __u16 retrans_timeout;
517 __u16 monitor_timeout;
518 __u16 mps;
519
Johan Hedberg0cd75f72013-05-17 13:09:05 +0300520 __u16 tx_credits;
521 __u16 rx_credits;
522
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700523 __u8 tx_state;
524 __u8 rx_state;
525
Gustavo F. Padovanc1360a12011-06-10 17:02:12 -0300526 unsigned long conf_state;
Gustavo F. Padovane2ab4352011-06-10 21:28:49 -0300527 unsigned long conn_state;
Andrei Emeltchenkod57b0e82011-10-11 14:04:31 +0300528 unsigned long flags;
Gustavo F. Padovan525cd182011-03-25 19:43:39 -0300529
Andrei Emeltchenkofffadc02012-11-01 15:37:03 +0200530 __u8 remote_amp_id;
Mat Martineau08333282012-10-23 15:24:06 -0700531 __u8 local_amp_id;
532 __u8 move_id;
533 __u8 move_state;
534 __u8 move_role;
535
Andrei Emeltchenkofb45de72011-10-11 13:37:47 +0300536 __u16 next_tx_seq;
537 __u16 expected_ack_seq;
538 __u16 expected_tx_seq;
Andrei Emeltchenko0b209fa2011-10-11 13:37:46 +0300539 __u16 buffer_seq;
Andrei Emeltchenkofb45de72011-10-11 13:37:47 +0300540 __u16 srej_save_reqseq;
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700541 __u16 last_acked_seq;
Andrei Emeltchenkofb45de72011-10-11 13:37:47 +0300542 __u16 frames_sent;
543 __u16 unacked_frames;
Gustavo F. Padovan6a026612011-04-01 00:38:50 -0300544 __u8 retry_count;
Gustavo F. Padovan6f61fd472011-03-25 20:09:37 -0300545 __u16 sdu_len;
Gustavo F. Padovan6f61fd472011-03-25 20:09:37 -0300546 struct sk_buff *sdu;
Mat Martineau84084a32011-07-22 14:54:00 -0700547 struct sk_buff *sdu_last_frag;
Gustavo F. Padovan6f61fd472011-03-25 20:09:37 -0300548
Andrei Emeltchenko6327eb92011-10-11 13:37:42 +0300549 __u16 remote_tx_win;
Gustavo F. Padovan2c03a7a2011-03-25 20:15:28 -0300550 __u8 remote_max_tx;
551 __u16 remote_mps;
Gustavo F. Padovan42e5c802011-03-25 19:58:34 -0300552
Andrei Emeltchenko5a9e7052011-10-13 16:18:53 +0300553 __u8 local_id;
554 __u8 local_stype;
555 __u16 local_msdu;
556 __u32 local_sdu_itime;
557 __u32 local_acc_lat;
558 __u32 local_flush_to;
559
560 __u8 remote_id;
561 __u8 remote_stype;
562 __u16 remote_msdu;
563 __u32 remote_sdu_itime;
564 __u32 remote_acc_lat;
565 __u32 remote_flush_to;
566
Gustavo F. Padovan721c4182011-06-23 19:29:58 -0300567 struct delayed_work chan_timer;
568 struct delayed_work retrans_timer;
569 struct delayed_work monitor_timer;
570 struct delayed_work ack_timer;
571
Gustavo F. Padovan58d35f82011-04-04 16:16:44 -0300572 struct sk_buff *tx_send_head;
573 struct sk_buff_head tx_q;
Gustavo F. Padovanf1c67752011-03-25 20:36:10 -0300574 struct sk_buff_head srej_q;
Mat Martineau3c588192012-04-11 10:48:42 -0700575 struct l2cap_seq_list srej_list;
576 struct l2cap_seq_list retrans_list;
Gustavo F. Padovane92c8e72011-04-01 00:53:45 -0300577
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300578 struct list_head list;
579 struct list_head global_l;
Gustavo F. Padovan80808e42011-05-16 17:24:37 -0300580
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300581 void *data;
Marcel Holtmann67f86a42014-06-08 10:05:31 +0200582 const struct l2cap_ops *ops;
Andrei Emeltchenkoc03b3552012-02-21 12:54:56 +0200583 struct mutex lock;
Gustavo F. Padovan80808e42011-05-16 17:24:37 -0300584};
585
586struct l2cap_ops {
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300587 char *name;
Gustavo F. Padovan80808e42011-05-16 17:24:37 -0300588
Gustavo Padovan80b98022012-05-27 22:27:51 -0300589 struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan);
590 int (*recv) (struct l2cap_chan * chan,
591 struct sk_buff *skb);
Andrei Emeltchenkoc0df7f62012-05-27 22:27:52 -0300592 void (*teardown) (struct l2cap_chan *chan, int err);
Gustavo Padovan80b98022012-05-27 22:27:51 -0300593 void (*close) (struct l2cap_chan *chan);
594 void (*state_change) (struct l2cap_chan *chan,
Gustavo Padovan53f52122013-10-15 19:24:45 -0300595 int state, int err);
Andrei Emeltchenko54a59aa2012-05-27 22:27:53 -0300596 void (*ready) (struct l2cap_chan *chan);
Gustavo Padovan2dc4e512012-10-12 19:35:24 +0800597 void (*defer) (struct l2cap_chan *chan);
Marcel Holtmannd97c8992013-10-14 02:53:54 -0700598 void (*resume) (struct l2cap_chan *chan);
Johan Hedberg837776f2013-10-15 11:03:18 +0300599 void (*suspend) (struct l2cap_chan *chan);
Gustavo Padovan5ec1bbe2013-10-15 19:24:48 -0300600 void (*set_shutdown) (struct l2cap_chan *chan);
Gustavo Padovan8d836d72013-10-15 19:24:47 -0300601 long (*get_sndtimeo) (struct l2cap_chan *chan);
Andrei Emeltchenko2f7719c2012-01-20 14:08:03 +0200602 struct sk_buff *(*alloc_skb) (struct l2cap_chan *chan,
Gustavo Padovan90338942012-04-06 20:15:47 -0300603 unsigned long len, int nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604};
605
606struct l2cap_conn {
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300607 struct hci_conn *hcon;
608 struct hci_chan *hchan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300610 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300612 __u32 feat_mask;
613 __u8 fixed_chan_mask;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700614 bool hs_enabled;
Marcel Holtmann4e8402a2007-10-20 13:37:56 +0200615
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300616 __u8 info_state;
617 __u8 info_ident;
Marcel Holtmann4e8402a2007-10-20 13:37:56 +0200618
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300619 struct delayed_work info_timer;
Marcel Holtmann4e8402a2007-10-20 13:37:56 +0200620
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300621 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300623 struct sk_buff *rx_skb;
624 __u32 rx_len;
625 __u8 tx_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Johan Hedberg61a939c2014-01-17 20:45:11 +0200627 struct sk_buff_head pending_rx;
628 struct work_struct pending_rx_work;
629
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300630 __u8 disc_reason;
Marcel Holtmann2950f212009-02-12 14:02:50 +0100631
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300632 struct delayed_work security_timer;
633 struct smp_chan *smp_chan;
Vinicius Costa Gomes5d3de7d2011-06-14 13:37:41 -0300634
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300635 struct list_head chan_l;
636 struct mutex chan_lock;
David Herrmann9c903e32013-04-06 20:28:44 +0200637 struct kref ref;
David Herrmann2c8e1412013-04-06 20:28:45 +0200638 struct list_head users;
639};
640
641struct l2cap_user {
642 struct list_head list;
643 int (*probe) (struct l2cap_conn *conn, struct l2cap_user *user);
644 void (*remove) (struct l2cap_conn *conn, struct l2cap_user *user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645};
646
Marcel Holtmann4e8402a2007-10-20 13:37:56 +0200647#define L2CAP_INFO_CL_MTU_REQ_SENT 0x01
Marcel Holtmann984947d2009-02-06 23:35:19 +0100648#define L2CAP_INFO_FEAT_MASK_REQ_SENT 0x04
649#define L2CAP_INFO_FEAT_MASK_REQ_DONE 0x08
Marcel Holtmann4e8402a2007-10-20 13:37:56 +0200650
Gustavo F. Padovan715ec002011-05-02 17:13:55 -0300651#define L2CAP_CHAN_RAW 1
652#define L2CAP_CHAN_CONN_LESS 2
653#define L2CAP_CHAN_CONN_ORIENTED 3
Johan Hedberg2338a7e2014-01-24 10:35:40 +0200654#define L2CAP_CHAN_FIXED 4
Gustavo F. Padovan715ec002011-05-02 17:13:55 -0300655
Gustavo F. Padovan48454072011-03-25 00:22:30 -0300656/* ----- L2CAP socket info ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#define l2cap_pi(sk) ((struct l2cap_pinfo *) sk)
658
659struct l2cap_pinfo {
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300660 struct bt_sock bt;
Gustavo F. Padovan48454072011-03-25 00:22:30 -0300661 struct l2cap_chan *chan;
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300662 struct sk_buff *rx_busy_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663};
664
Gustavo F. Padovanc1360a12011-06-10 17:02:12 -0300665enum {
666 CONF_REQ_SENT,
667 CONF_INPUT_DONE,
668 CONF_OUTPUT_DONE,
669 CONF_MTU_DONE,
670 CONF_MODE_DONE,
671 CONF_CONNECT_PEND,
Andrei Emeltchenkof2592d32012-11-29 17:46:08 +0200672 CONF_RECV_NO_FCS,
Gustavo F. Padovanc1360a12011-06-10 17:02:12 -0300673 CONF_STATE2_DEVICE,
Andrei Emeltchenko6327eb92011-10-11 13:37:42 +0300674 CONF_EWS_RECV,
Andrei Emeltchenko0e8b2072011-10-17 14:35:32 +0300675 CONF_LOC_CONF_PEND,
676 CONF_REM_CONF_PEND,
Mat Martineau28270112012-05-17 21:14:09 -0700677 CONF_NOT_COMPLETE,
Gustavo F. Padovanc1360a12011-06-10 17:02:12 -0300678};
Marcel Holtmann861d6882007-10-20 13:37:06 +0200679
Gustavo F. Padovanf2fcfcd2009-07-04 15:06:24 -0300680#define L2CAP_CONF_MAX_CONF_REQ 2
681#define L2CAP_CONF_MAX_CONF_RSP 2
682
Gustavo F. Padovane2ab4352011-06-10 21:28:49 -0300683enum {
Gustavo F. Padovane2ab4352011-06-10 21:28:49 -0300684 CONN_SREJ_SENT,
685 CONN_WAIT_F,
686 CONN_SREJ_ACT,
687 CONN_SEND_PBIT,
688 CONN_REMOTE_BUSY,
689 CONN_LOCAL_BUSY,
690 CONN_REJ_ACT,
691 CONN_SEND_FBIT,
692 CONN_RNR_SENT,
Gustavo F. Padovane2ab4352011-06-10 21:28:49 -0300693};
Gustavo F. Padovane90bac02009-08-20 22:26:00 -0300694
Andrei Emeltchenkod57b0e82011-10-11 14:04:31 +0300695/* Definitions for flags in l2cap_chan */
696enum {
Andrei Emeltchenko43bd0f32011-10-11 14:04:34 +0300697 FLAG_ROLE_SWITCH,
Andrei Emeltchenko15770b12011-10-11 14:04:33 +0300698 FLAG_FORCE_ACTIVE,
Andrei Emeltchenkoecf61bd2011-10-11 14:04:32 +0300699 FLAG_FORCE_RELIABLE,
Andrei Emeltchenkod57b0e82011-10-11 14:04:31 +0300700 FLAG_FLUSHABLE,
Andrei Emeltchenko6327eb92011-10-11 13:37:42 +0300701 FLAG_EXT_CTRL,
Andrei Emeltchenko5a9e7052011-10-13 16:18:53 +0300702 FLAG_EFS_ENABLE,
Marcel Holtmannbdc25782013-10-14 02:45:34 -0700703 FLAG_DEFER_SETUP,
Johan Hedberg595177f2013-12-02 22:12:22 +0200704 FLAG_LE_CONN_REQ_SENT,
Andrei Emeltchenkod57b0e82011-10-11 14:04:31 +0300705};
706
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700707enum {
708 L2CAP_TX_STATE_XMIT,
709 L2CAP_TX_STATE_WAIT_F,
710};
711
712enum {
713 L2CAP_RX_STATE_RECV,
714 L2CAP_RX_STATE_SREJ_SENT,
Mat Martineau08333282012-10-23 15:24:06 -0700715 L2CAP_RX_STATE_MOVE,
716 L2CAP_RX_STATE_WAIT_P,
717 L2CAP_RX_STATE_WAIT_F,
Mat Martineaud5f7ac32012-03-23 16:56:55 -0700718};
719
720enum {
721 L2CAP_TXSEQ_EXPECTED,
722 L2CAP_TXSEQ_EXPECTED_SREJ,
723 L2CAP_TXSEQ_UNEXPECTED,
724 L2CAP_TXSEQ_UNEXPECTED_SREJ,
725 L2CAP_TXSEQ_DUPLICATE,
726 L2CAP_TXSEQ_DUPLICATE_SREJ,
727 L2CAP_TXSEQ_INVALID,
728 L2CAP_TXSEQ_INVALID_IGNORE,
729};
730
731enum {
732 L2CAP_EV_DATA_REQUEST,
733 L2CAP_EV_LOCAL_BUSY_DETECTED,
734 L2CAP_EV_LOCAL_BUSY_CLEAR,
735 L2CAP_EV_RECV_REQSEQ_AND_FBIT,
736 L2CAP_EV_RECV_FBIT,
737 L2CAP_EV_RETRANS_TO,
738 L2CAP_EV_MONITOR_TO,
739 L2CAP_EV_EXPLICIT_POLL,
740 L2CAP_EV_RECV_IFRAME,
741 L2CAP_EV_RECV_RR,
742 L2CAP_EV_RECV_REJ,
743 L2CAP_EV_RECV_RNR,
744 L2CAP_EV_RECV_SREJ,
745 L2CAP_EV_RECV_FRAME,
746};
747
Mat Martineau08333282012-10-23 15:24:06 -0700748enum {
749 L2CAP_MOVE_ROLE_NONE,
750 L2CAP_MOVE_ROLE_INITIATOR,
751 L2CAP_MOVE_ROLE_RESPONDER,
752};
753
754enum {
755 L2CAP_MOVE_STABLE,
756 L2CAP_MOVE_WAIT_REQ,
757 L2CAP_MOVE_WAIT_RSP,
758 L2CAP_MOVE_WAIT_RSP_SUCCESS,
759 L2CAP_MOVE_WAIT_CONFIRM,
760 L2CAP_MOVE_WAIT_CONFIRM_RSP,
761 L2CAP_MOVE_WAIT_LOGICAL_COMP,
762 L2CAP_MOVE_WAIT_LOGICAL_CFM,
763 L2CAP_MOVE_WAIT_LOCAL_BUSY,
764 L2CAP_MOVE_WAIT_PREPARE,
765};
766
Jaganath Kanakkassery30648372012-07-13 18:17:54 +0530767void l2cap_chan_hold(struct l2cap_chan *c);
768void l2cap_chan_put(struct l2cap_chan *c);
Ulisses Furquim371fd832011-12-21 20:02:36 -0200769
Andrei Emeltchenkoc03b3552012-02-21 12:54:56 +0200770static inline void l2cap_chan_lock(struct l2cap_chan *chan)
771{
772 mutex_lock(&chan->lock);
773}
774
775static inline void l2cap_chan_unlock(struct l2cap_chan *chan)
776{
777 mutex_unlock(&chan->lock);
778}
779
Gustavo F. Padovanc2ec9c12011-12-20 10:57:26 -0200780static inline void l2cap_set_timer(struct l2cap_chan *chan,
Andrei Emeltchenko6f74b6f2012-03-23 16:31:50 +0200781 struct delayed_work *work, long timeout)
Gustavo F. Padovanc2ec9c12011-12-20 10:57:26 -0200782{
Andrei Emeltchenkoe05dcc32012-02-17 11:40:56 +0200783 BT_DBG("chan %p state %s timeout %ld", chan,
Andrei Emeltchenko6f74b6f2012-03-23 16:31:50 +0200784 state_to_string(chan->state), timeout);
Gustavo F. Padovanc2ec9c12011-12-20 10:57:26 -0200785
Andrei Emeltchenko6f74b6f2012-03-23 16:31:50 +0200786 /* If delayed work cancelled do not hold(chan)
787 since it is already done with previous set_timer */
Ulisses Furquim17cd3f32012-01-30 18:26:28 -0200788 if (!cancel_delayed_work(work))
Ulisses Furquim371fd832011-12-21 20:02:36 -0200789 l2cap_chan_hold(chan);
Andrei Emeltchenko6f74b6f2012-03-23 16:31:50 +0200790
Gustavo F. Padovanc2ec9c12011-12-20 10:57:26 -0200791 schedule_delayed_work(work, timeout);
792}
793
Szymon Janc75b93b52012-01-11 10:59:45 +0100794static inline bool l2cap_clear_timer(struct l2cap_chan *chan,
Andrei Emeltchenko6f74b6f2012-03-23 16:31:50 +0200795 struct delayed_work *work)
Gustavo F. Padovanc2ec9c12011-12-20 10:57:26 -0200796{
Szymon Janc75b93b52012-01-11 10:59:45 +0100797 bool ret;
798
Andrei Emeltchenko6f74b6f2012-03-23 16:31:50 +0200799 /* put(chan) if delayed work cancelled otherwise it
800 is done in delayed work function */
Ulisses Furquim17cd3f32012-01-30 18:26:28 -0200801 ret = cancel_delayed_work(work);
Szymon Janc75b93b52012-01-11 10:59:45 +0100802 if (ret)
Ulisses Furquim371fd832011-12-21 20:02:36 -0200803 l2cap_chan_put(chan);
Szymon Janc75b93b52012-01-11 10:59:45 +0100804
805 return ret;
Gustavo F. Padovanc2ec9c12011-12-20 10:57:26 -0200806}
807
Gustavo F. Padovanc9b66672011-05-17 14:59:01 -0300808#define __set_chan_timer(c, t) l2cap_set_timer(c, &c->chan_timer, (t))
809#define __clear_chan_timer(c) l2cap_clear_timer(c, &c->chan_timer)
Gustavo F. Padovan1a09bcb2011-05-17 15:13:19 -0300810#define __clear_retrans_timer(c) l2cap_clear_timer(c, &c->retrans_timer)
Gustavo F. Padovan1a09bcb2011-05-17 15:13:19 -0300811#define __clear_monitor_timer(c) l2cap_clear_timer(c, &c->monitor_timer)
812#define __set_ack_timer(c) l2cap_set_timer(c, &chan->ack_timer, \
Andrzej Kaczmarekb83ddfe2012-01-04 12:10:42 +0100813 msecs_to_jiffies(L2CAP_DEFAULT_ACK_TO));
Gustavo F. Padovan1a09bcb2011-05-17 15:13:19 -0300814#define __clear_ack_timer(c) l2cap_clear_timer(c, &c->ack_timer)
Gustavo F. Padovanc74e5602009-08-20 22:25:58 -0300815
Andrei Emeltchenko836be932011-10-17 12:19:57 +0300816static inline int __seq_offset(struct l2cap_chan *chan, __u16 seq1, __u16 seq2)
817{
Mat Martineau5a364bd2012-04-25 16:36:12 -0700818 if (seq1 >= seq2)
819 return seq1 - seq2;
820 else
821 return chan->tx_win_max + 1 - seq2 + seq1;
Andrei Emeltchenko836be932011-10-17 12:19:57 +0300822}
823
824static inline __u16 __next_seq(struct l2cap_chan *chan, __u16 seq)
825{
826 return (seq + 1) % (chan->tx_win_max + 1);
827}
828
Gustavo Padovan7e1af8a2012-05-29 13:19:26 -0300829static inline struct l2cap_chan *l2cap_chan_no_new_connection(struct l2cap_chan *chan)
830{
831 return NULL;
832}
833
834static inline void l2cap_chan_no_teardown(struct l2cap_chan *chan, int err)
835{
836}
837
838static inline void l2cap_chan_no_ready(struct l2cap_chan *chan)
839{
840}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Gustavo Padovan2dc4e512012-10-12 19:35:24 +0800842static inline void l2cap_chan_no_defer(struct l2cap_chan *chan)
843{
844}
845
Marcel Holtmann2ce5fb52013-10-15 16:47:11 -0700846static inline void l2cap_chan_no_resume(struct l2cap_chan *chan)
847{
848}
849
Gustavo Padovan5ec1bbe2013-10-15 19:24:48 -0300850static inline void l2cap_chan_no_set_shutdown(struct l2cap_chan *chan)
851{
852}
853
Gustavo Padovan8d836d72013-10-15 19:24:47 -0300854static inline long l2cap_chan_no_get_sndtimeo(struct l2cap_chan *chan)
855{
856 return 0;
857}
858
Rusty Russelleb939922011-12-19 14:08:01 +0000859extern bool disable_ertm;
Gustavo F. Padovanbb58f742011-02-03 20:50:35 -0200860
861int l2cap_init_sockets(void);
862void l2cap_cleanup_sockets(void);
David Herrmannb3916db2013-04-05 14:57:34 +0200863bool l2cap_is_socket(struct socket *sock);
Gustavo F. Padovanbb58f742011-02-03 20:50:35 -0200864
Johan Hedberg27e2d4c2013-05-14 13:27:21 +0300865void __l2cap_le_connect_rsp_defer(struct l2cap_chan *chan);
Gustavo F. Padovan8c1d7872011-04-13 20:23:55 -0300866void __l2cap_connect_rsp_defer(struct l2cap_chan *chan);
Gustavo F. Padovan68983252011-02-04 03:02:31 -0200867
Gustavo F. Padovan9e4425f2011-04-18 18:38:43 -0300868int l2cap_add_psm(struct l2cap_chan *chan, bdaddr_t *src, __le16 psm);
869int l2cap_add_scid(struct l2cap_chan *chan, __u16 scid);
870
Gustavo Padovaneef1d9b2012-03-25 13:59:16 -0300871struct l2cap_chan *l2cap_chan_create(void);
Gustavo F. Padovan0f852722011-05-04 19:42:50 -0300872void l2cap_chan_close(struct l2cap_chan *chan, int reason);
Johan Hedbergcbe8fed2012-01-08 22:51:16 +0200873int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid,
Andre Guedes8e9f9892012-04-24 21:02:55 -0300874 bdaddr_t *dst, u8 dst_type);
Marcel Holtmann8d463212014-06-05 15:22:51 +0200875int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len);
Mat Martineaue3281402011-07-07 09:39:02 -0700876void l2cap_chan_busy(struct l2cap_chan *chan, int busy);
Gustavo F. Padovand45fc422011-11-05 19:54:24 -0200877int l2cap_chan_check_security(struct l2cap_chan *chan);
Andrei Emeltchenkobd4b1652012-03-28 16:31:25 +0300878void l2cap_chan_set_defaults(struct l2cap_chan *chan);
Andrei Emeltchenko466f8002012-05-29 13:59:01 +0300879int l2cap_ertm_init(struct l2cap_chan *chan);
880void l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan);
Andrei Emeltchenko93c3e8f2012-09-27 17:26:16 +0300881void __l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan);
Andrei Emeltchenko466f8002012-05-29 13:59:01 +0300882void l2cap_chan_del(struct l2cap_chan *chan, int err);
Johan Hedberg387a33e2014-02-18 21:41:33 +0200883void l2cap_conn_update_id_addr(struct hci_conn *hcon);
Andrei Emeltchenko2766be42012-09-27 17:26:21 +0300884void l2cap_send_conn_req(struct l2cap_chan *chan);
Mat Martineau3f7a56c2012-10-23 15:24:23 -0700885void l2cap_move_start(struct l2cap_chan *chan);
Andrei Emeltchenko27695fb2012-10-25 15:20:45 +0300886void l2cap_logical_cfm(struct l2cap_chan *chan, struct hci_chan *hchan,
887 u8 status);
Andrei Emeltchenkoa514b172012-11-14 17:39:30 +0200888void __l2cap_physical_cfm(struct l2cap_chan *chan, int result);
Gustavo F. Padovanbb58f742011-02-03 20:50:35 -0200889
David Herrmann9c903e32013-04-06 20:28:44 +0200890void l2cap_conn_get(struct l2cap_conn *conn);
891void l2cap_conn_put(struct l2cap_conn *conn);
892
David Herrmann2c8e1412013-04-06 20:28:45 +0200893int l2cap_register_user(struct l2cap_conn *conn, struct l2cap_user *user);
894void l2cap_unregister_user(struct l2cap_conn *conn, struct l2cap_user *user);
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896#endif /* __L2CAP_H */