ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / net / bluetooth / l2cap.h
1 /* 
2    BlueZ - Bluetooth protocol stack for Linux
3    Copyright (C) 2000-2001 Qualcomm Incorporated
4
5    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License version 2 as
9    published by the Free Software Foundation;
10
11    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
16    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
17    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
18    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
21    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
22    SOFTWARE IS DISCLAIMED.
23 */
24
25 /*
26  *  $Id: l2cap.h,v 1.1.1.1 2002/03/08 21:03:15 maxk Exp $
27  */
28
29 #ifndef __L2CAP_H
30 #define __L2CAP_H
31
32 /* L2CAP defaults */
33 #define L2CAP_DEFAULT_MTU       672
34 #define L2CAP_DEFAULT_FLUSH_TO  0xFFFF
35
36 #define L2CAP_CONN_TIMEOUT      (HZ * 40)
37
38 /* L2CAP socket address */
39 struct sockaddr_l2 {
40         sa_family_t     l2_family;
41         unsigned short  l2_psm;
42         bdaddr_t        l2_bdaddr;
43 };
44
45 /* Socket options */
46 #define L2CAP_OPTIONS   0x01
47 struct l2cap_options {
48         __u16 omtu;
49         __u16 imtu;
50         __u16 flush_to;
51 };
52
53 #define L2CAP_CONNINFO  0x02
54 struct l2cap_conninfo {
55         __u16 hci_handle;
56 };
57
58 #define L2CAP_LM        0x03
59 #define L2CAP_LM_MASTER         0x0001
60 #define L2CAP_LM_AUTH           0x0002
61 #define L2CAP_LM_ENCRYPT        0x0004
62 #define L2CAP_LM_TRUSTED        0x0008
63
64 #define L2CAP_QOS       0x04
65 struct l2cap_qos {
66         __u16 service_type;
67         __u32 token_rate;
68         __u32 token_bucket_size;
69         __u32 peak_bandwidth;
70         __u32 latency;
71         __u32 delay_variation;
72 };
73
74 #define L2CAP_SERV_NO_TRAFFIC   0x00
75 #define L2CAP_SERV_BEST_EFFORT  0x01
76 #define L2CAP_SERV_GUARANTEED   0x02
77
78 /* L2CAP command codes */
79 #define L2CAP_COMMAND_REJ 0x01
80 #define L2CAP_CONN_REQ    0x02
81 #define L2CAP_CONN_RSP    0x03
82 #define L2CAP_CONF_REQ    0x04
83 #define L2CAP_CONF_RSP    0x05
84 #define L2CAP_DISCONN_REQ 0x06
85 #define L2CAP_DISCONN_RSP 0x07
86 #define L2CAP_ECHO_REQ    0x08
87 #define L2CAP_ECHO_RSP    0x09
88 #define L2CAP_INFO_REQ    0x0a
89 #define L2CAP_INFO_RSP    0x0b
90
91 /* L2CAP structures */
92 struct l2cap_hdr {
93         __u16      len;
94         __u16      cid;
95 } __attribute__ ((packed));
96 #define L2CAP_HDR_SIZE          4
97
98 struct l2cap_cmd_hdr {
99         __u8       code;
100         __u8       ident;
101         __u16      len;
102 } __attribute__ ((packed));
103 #define L2CAP_CMD_HDR_SIZE      4
104
105 struct l2cap_cmd_rej {
106         __u16      reason;
107 } __attribute__ ((packed));
108
109 struct l2cap_conn_req {
110         __u16      psm;
111         __u16      scid;
112 } __attribute__ ((packed));
113
114 struct l2cap_conn_rsp {
115         __u16      dcid;
116         __u16      scid;
117         __u16      result;
118         __u16      status;
119 } __attribute__ ((packed));
120
121 /* connect result */
122 #define L2CAP_CR_SUCCESS    0x0000
123 #define L2CAP_CR_PEND       0x0001
124 #define L2CAP_CR_BAD_PSM    0x0002
125 #define L2CAP_CR_SEC_BLOCK  0x0003
126 #define L2CAP_CR_NO_MEM     0x0004
127
128 /* connect status */
129 #define L2CAP_CS_NO_INFO      0x0000
130 #define L2CAP_CS_AUTHEN_PEND  0x0001
131 #define L2CAP_CS_AUTHOR_PEND  0x0002
132
133 struct l2cap_conf_req {
134         __u16      dcid;
135         __u16      flags;
136         __u8       data[0];
137 } __attribute__ ((packed));
138
139 struct l2cap_conf_rsp {
140         __u16      scid;
141         __u16      flags;
142         __u16      result;
143         __u8       data[0];
144 } __attribute__ ((packed));
145
146 #define L2CAP_CONF_SUCCESS      0x00
147 #define L2CAP_CONF_UNACCEPT     0x01
148
149 struct l2cap_conf_opt {
150         __u8       type;
151         __u8       len;
152         __u8       val[0];
153 } __attribute__ ((packed));
154 #define L2CAP_CONF_OPT_SIZE     2
155
156 #define L2CAP_CONF_MTU          0x01
157 #define L2CAP_CONF_FLUSH_TO     0x02
158 #define L2CAP_CONF_QOS          0x03
159
160 #define L2CAP_CONF_MAX_SIZE     22
161
162 struct l2cap_disconn_req {
163         __u16      dcid;
164         __u16      scid;
165 } __attribute__ ((packed));
166
167 struct l2cap_disconn_rsp {
168         __u16      dcid;
169         __u16      scid;
170 } __attribute__ ((packed));
171
172 struct l2cap_info_req {
173         __u16       type;
174         __u8        data[0];
175 } __attribute__ ((packed));
176
177 struct l2cap_info_rsp {
178         __u16       type;
179         __u16       result;
180         __u8        data[0];
181 } __attribute__ ((packed));
182
183 /* ----- L2CAP connections ----- */
184 struct l2cap_chan_list {
185         struct sock     *head;
186         rwlock_t        lock;
187         long            num;
188 };
189
190 struct l2cap_conn {
191         struct hci_conn *hcon;
192
193         bdaddr_t        *dst;
194         bdaddr_t        *src;
195         
196         unsigned int    mtu;
197
198         spinlock_t      lock;
199         
200         struct sk_buff *rx_skb;
201         __u32           rx_len;
202         __u8            rx_ident;
203         __u8            tx_ident;
204
205         struct l2cap_chan_list chan_list;
206 };
207
208 /* ----- L2CAP channel and socket info ----- */
209 #define l2cap_pi(sk)   ((struct l2cap_pinfo *)sk->sk_protinfo)
210
211 struct l2cap_pinfo {
212         __u16           psm;
213         __u16           dcid;
214         __u16           scid;
215
216         __u16           imtu;
217         __u16           omtu;
218         __u16           flush_to;
219         
220         __u32           link_mode;
221
222         __u8            conf_state;
223         __u8            conf_retry;
224         __u16           conf_mtu;
225
226         __u8            ident;
227
228         __u16           sport;
229
230         struct l2cap_conn       *conn;
231         struct sock             *next_c;
232         struct sock             *prev_c;
233 };
234
235 #define L2CAP_CONF_REQ_SENT    0x01
236 #define L2CAP_CONF_INPUT_DONE  0x02
237 #define L2CAP_CONF_OUTPUT_DONE 0x04
238 #define L2CAP_CONF_MAX_RETRIES 2
239
240 void l2cap_load(void);
241
242 #endif /* __L2CAP_H */