blob: f7eb02f09b54055c9b8c17b6fdcf53ec5041aa11 [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 RFCOMM implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 Copyright (C) 2002 Marcel Holtmann <marcel@holtmann.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation;
9
10 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
11 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
13 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090014 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
15 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090019 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
20 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 SOFTWARE IS DISCLAIMED.
22*/
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
25 * Bluetooth RFCOMM core.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
Marcel Holtmannaef7d972010-03-21 05:27:45 +010029#include <linux/debugfs.h>
Marcel Holtmanna524ecc2007-10-20 21:37:20 +020030#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/unaligned.h>
32
33#include <net/bluetooth/bluetooth.h>
34#include <net/bluetooth/hci_core.h>
35#include <net/bluetooth/l2cap.h>
36#include <net/bluetooth/rfcomm.h>
37
Marcel Holtmann5f9018a2009-01-16 10:09:50 +010038#define VERSION "1.11"
Marcel Holtmann56f3a402006-02-13 11:39:57 +010039
Rusty Russelleb939922011-12-19 14:08:01 +000040static bool disable_cfc;
41static bool l2cap_ertm;
Marcel Holtmann98bcd082006-07-14 11:42:12 +020042static int channel_mtu = -1;
Marcel Holtmann56f3a402006-02-13 11:39:57 +010043static unsigned int l2cap_mtu = RFCOMM_MAX_L2CAP_MTU;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static struct task_struct *rfcomm_thread;
46
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080047static DEFINE_MUTEX(rfcomm_mutex);
48#define rfcomm_lock() mutex_lock(&rfcomm_mutex)
49#define rfcomm_unlock() mutex_unlock(&rfcomm_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static LIST_HEAD(session_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Gustavo F. Padovan54365382011-12-20 16:30:44 -020054static int rfcomm_send_frame(struct rfcomm_session *s, u8 *data, int len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int rfcomm_send_sabm(struct rfcomm_session *s, u8 dlci);
56static int rfcomm_send_disc(struct rfcomm_session *s, u8 dlci);
57static int rfcomm_queue_disc(struct rfcomm_dlc *d);
58static int rfcomm_send_nsc(struct rfcomm_session *s, int cr, u8 type);
59static int rfcomm_send_pn(struct rfcomm_session *s, int cr, struct rfcomm_dlc *d);
60static int rfcomm_send_msc(struct rfcomm_session *s, int cr, u8 dlci, u8 v24_sig);
61static int rfcomm_send_test(struct rfcomm_session *s, int cr, u8 *pattern, int len);
62static int rfcomm_send_credits(struct rfcomm_session *s, u8 addr, u8 credits);
63static void rfcomm_make_uih(struct sk_buff *skb, u8 addr);
64
65static void rfcomm_process_connect(struct rfcomm_session *s);
66
Luiz Augusto von Dentz63ce0902010-08-19 14:06:10 +030067static struct rfcomm_session *rfcomm_session_create(bdaddr_t *src,
68 bdaddr_t *dst,
69 u8 sec_level,
70 int *err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static struct rfcomm_session *rfcomm_session_get(bdaddr_t *src, bdaddr_t *dst);
Dean Jenkins8ff52f72013-02-28 14:21:55 +000072static struct rfcomm_session *rfcomm_session_del(struct rfcomm_session *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* ---- RFCOMM frame parsing macros ---- */
75#define __get_dlci(b) ((b & 0xfc) >> 2)
76#define __get_channel(b) ((b & 0xf8) >> 3)
77#define __get_dir(b) ((b & 0x04) >> 2)
78#define __get_type(b) ((b & 0xef))
79
80#define __test_ea(b) ((b & 0x01))
Szymon Jancec511542014-10-13 11:43:53 +020081#define __test_cr(b) (!!(b & 0x02))
Szymon Janc15346a92014-10-13 11:43:54 +020082#define __test_pf(b) (!!(b & 0x10))
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Johan Hedberg2a68c892014-11-04 08:45:45 +020084#define __session_dir(s) ((s)->initiator ? 0x00 : 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#define __addr(cr, dlci) (((dlci & 0x3f) << 2) | (cr << 1) | 0x01)
87#define __ctrl(type, pf) (((type & 0xef) | (pf << 4)))
88#define __dlci(dir, chn) (((chn & 0x1f) << 1) | dir)
89#define __srv_channel(dlci) (dlci >> 1)
90#define __dir(dlci) (dlci & 0x01)
91
92#define __len8(len) (((len) << 1) | 1)
93#define __len16(len) ((len) << 1)
94
95/* MCC macros */
96#define __mcc_type(cr, type) (((type << 2) | (cr << 1) | 0x01))
97#define __get_mcc_type(b) ((b & 0xfc) >> 2)
98#define __get_mcc_len(b) ((b & 0xfe) >> 1)
99
100/* RPN macros */
J. Suter3a5e9032005-08-09 20:28:46 -0700101#define __rpn_line_settings(data, stop, parity) ((data & 0x3) | ((stop & 0x1) << 2) | ((parity & 0x7) << 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define __get_rpn_data_bits(line) ((line) & 0x3)
103#define __get_rpn_stop_bits(line) (((line) >> 2) & 0x1)
J. Suter3a5e9032005-08-09 20:28:46 -0700104#define __get_rpn_parity(line) (((line) >> 3) & 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Peter Zijlstraeedf7e42014-10-29 16:17:12 +0100106static DECLARE_WAIT_QUEUE_HEAD(rfcomm_wq);
107
Gustavo Padovan6039aa732012-05-23 04:04:18 -0300108static void rfcomm_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Peter Zijlstraeedf7e42014-10-29 16:17:12 +0100110 wake_up_all(&rfcomm_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* ---- RFCOMM FCS computation ---- */
114
Marcel Holtmann408c1ce2005-10-28 19:20:36 +0200115/* reversed, 8-bit, poly=0x07 */
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900116static unsigned char rfcomm_crc_table[256] = {
Marcel Holtmann408c1ce2005-10-28 19:20:36 +0200117 0x00, 0x91, 0xe3, 0x72, 0x07, 0x96, 0xe4, 0x75,
118 0x0e, 0x9f, 0xed, 0x7c, 0x09, 0x98, 0xea, 0x7b,
119 0x1c, 0x8d, 0xff, 0x6e, 0x1b, 0x8a, 0xf8, 0x69,
120 0x12, 0x83, 0xf1, 0x60, 0x15, 0x84, 0xf6, 0x67,
121
122 0x38, 0xa9, 0xdb, 0x4a, 0x3f, 0xae, 0xdc, 0x4d,
123 0x36, 0xa7, 0xd5, 0x44, 0x31, 0xa0, 0xd2, 0x43,
124 0x24, 0xb5, 0xc7, 0x56, 0x23, 0xb2, 0xc0, 0x51,
125 0x2a, 0xbb, 0xc9, 0x58, 0x2d, 0xbc, 0xce, 0x5f,
126
127 0x70, 0xe1, 0x93, 0x02, 0x77, 0xe6, 0x94, 0x05,
128 0x7e, 0xef, 0x9d, 0x0c, 0x79, 0xe8, 0x9a, 0x0b,
129 0x6c, 0xfd, 0x8f, 0x1e, 0x6b, 0xfa, 0x88, 0x19,
130 0x62, 0xf3, 0x81, 0x10, 0x65, 0xf4, 0x86, 0x17,
131
132 0x48, 0xd9, 0xab, 0x3a, 0x4f, 0xde, 0xac, 0x3d,
133 0x46, 0xd7, 0xa5, 0x34, 0x41, 0xd0, 0xa2, 0x33,
134 0x54, 0xc5, 0xb7, 0x26, 0x53, 0xc2, 0xb0, 0x21,
135 0x5a, 0xcb, 0xb9, 0x28, 0x5d, 0xcc, 0xbe, 0x2f,
136
137 0xe0, 0x71, 0x03, 0x92, 0xe7, 0x76, 0x04, 0x95,
138 0xee, 0x7f, 0x0d, 0x9c, 0xe9, 0x78, 0x0a, 0x9b,
139 0xfc, 0x6d, 0x1f, 0x8e, 0xfb, 0x6a, 0x18, 0x89,
140 0xf2, 0x63, 0x11, 0x80, 0xf5, 0x64, 0x16, 0x87,
141
142 0xd8, 0x49, 0x3b, 0xaa, 0xdf, 0x4e, 0x3c, 0xad,
143 0xd6, 0x47, 0x35, 0xa4, 0xd1, 0x40, 0x32, 0xa3,
144 0xc4, 0x55, 0x27, 0xb6, 0xc3, 0x52, 0x20, 0xb1,
145 0xca, 0x5b, 0x29, 0xb8, 0xcd, 0x5c, 0x2e, 0xbf,
146
147 0x90, 0x01, 0x73, 0xe2, 0x97, 0x06, 0x74, 0xe5,
148 0x9e, 0x0f, 0x7d, 0xec, 0x99, 0x08, 0x7a, 0xeb,
149 0x8c, 0x1d, 0x6f, 0xfe, 0x8b, 0x1a, 0x68, 0xf9,
150 0x82, 0x13, 0x61, 0xf0, 0x85, 0x14, 0x66, 0xf7,
151
152 0xa8, 0x39, 0x4b, 0xda, 0xaf, 0x3e, 0x4c, 0xdd,
153 0xa6, 0x37, 0x45, 0xd4, 0xa1, 0x30, 0x42, 0xd3,
154 0xb4, 0x25, 0x57, 0xc6, 0xb3, 0x22, 0x50, 0xc1,
155 0xba, 0x2b, 0x59, 0xc8, 0xbd, 0x2c, 0x5e, 0xcf
156};
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* CRC on 2 bytes */
159#define __crc(data) (rfcomm_crc_table[rfcomm_crc_table[0xff ^ data[0]] ^ data[1]])
160
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900161/* FCS on 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static inline u8 __fcs(u8 *data)
163{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000164 return 0xff - __crc(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900167/* FCS on 3 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static inline u8 __fcs2(u8 *data)
169{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000170 return 0xff - rfcomm_crc_table[__crc(data) ^ data[2]];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/* Check FCS */
174static inline int __check_fcs(u8 *data, int type, u8 fcs)
175{
176 u8 f = __crc(data);
177
178 if (type != RFCOMM_UIH)
179 f = rfcomm_crc_table[f ^ data[2]];
180
181 return rfcomm_crc_table[f ^ fcs] != 0xcf;
182}
183
184/* ---- L2CAP callbacks ---- */
185static void rfcomm_l2state_change(struct sock *sk)
186{
187 BT_DBG("%p state %d", sk, sk->sk_state);
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300188 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
David S. Miller676d2362014-04-11 16:15:36 -0400191static void rfcomm_l2data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
David S. Miller676d2362014-04-11 16:15:36 -0400193 BT_DBG("%p", sk);
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300194 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197static int rfcomm_l2sock_create(struct socket **sock)
198{
199 int err;
200
201 BT_DBG("");
202
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -0500203 err = sock_create_kern(&init_net, PF_BLUETOOTH, SOCK_SEQPACKET, BTPROTO_L2CAP, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (!err) {
205 struct sock *sk = (*sock)->sk;
206 sk->sk_data_ready = rfcomm_l2data_ready;
207 sk->sk_state_change = rfcomm_l2state_change;
208 }
209 return err;
210}
211
Gustavo Padovan6039aa732012-05-23 04:04:18 -0300212static int rfcomm_check_security(struct rfcomm_dlc *d)
Marcel Holtmann77db1982008-07-14 20:13:45 +0200213{
214 struct sock *sk = d->session->sock->sk;
Gustavo F. Padovan8c1d7872011-04-13 20:23:55 -0300215 struct l2cap_conn *conn = l2cap_pi(sk)->chan->conn;
216
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100217 __u8 auth_type;
Marcel Holtmann77db1982008-07-14 20:13:45 +0200218
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100219 switch (d->sec_level) {
220 case BT_SECURITY_HIGH:
Marcel Holtmann2c068e02014-01-15 22:37:41 -0800221 case BT_SECURITY_FIPS:
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100222 auth_type = HCI_AT_GENERAL_BONDING_MITM;
223 break;
224 case BT_SECURITY_MEDIUM:
225 auth_type = HCI_AT_GENERAL_BONDING;
226 break;
227 default:
228 auth_type = HCI_AT_NO_BONDING;
229 break;
230 }
231
Johan Hedberge7cafc42014-07-17 15:35:38 +0300232 return hci_conn_security(conn->hcon, d->sec_level, auth_type,
233 d->out);
Marcel Holtmann77db1982008-07-14 20:13:45 +0200234}
235
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300236static void rfcomm_session_timeout(unsigned long arg)
237{
238 struct rfcomm_session *s = (void *) arg;
239
240 BT_DBG("session %p state %ld", s, s->state);
241
242 set_bit(RFCOMM_TIMED_OUT, &s->flags);
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300243 rfcomm_schedule();
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300244}
245
246static void rfcomm_session_set_timer(struct rfcomm_session *s, long timeout)
247{
248 BT_DBG("session %p state %ld timeout %ld", s, s->state, timeout);
249
Dean Jenkins08c30ac2013-02-28 14:21:56 +0000250 mod_timer(&s->timer, jiffies + timeout);
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300251}
252
253static void rfcomm_session_clear_timer(struct rfcomm_session *s)
254{
255 BT_DBG("session %p state %ld", s, s->state);
256
Dean Jenkins08c30ac2013-02-28 14:21:56 +0000257 del_timer_sync(&s->timer);
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300258}
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/* ---- RFCOMM DLCs ---- */
261static void rfcomm_dlc_timeout(unsigned long arg)
262{
263 struct rfcomm_dlc *d = (void *) arg;
264
265 BT_DBG("dlc %p state %ld", d, d->state);
266
267 set_bit(RFCOMM_TIMED_OUT, &d->flags);
268 rfcomm_dlc_put(d);
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300269 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272static void rfcomm_dlc_set_timer(struct rfcomm_dlc *d, long timeout)
273{
274 BT_DBG("dlc %p state %ld timeout %ld", d, d->state, timeout);
275
276 if (!mod_timer(&d->timer, jiffies + timeout))
277 rfcomm_dlc_hold(d);
278}
279
280static void rfcomm_dlc_clear_timer(struct rfcomm_dlc *d)
281{
282 BT_DBG("dlc %p state %ld", d, d->state);
283
Ying Xue25cc4ae2013-02-03 20:32:57 +0000284 if (del_timer(&d->timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 rfcomm_dlc_put(d);
286}
287
288static void rfcomm_dlc_clear_state(struct rfcomm_dlc *d)
289{
290 BT_DBG("%p", d);
291
292 d->state = BT_OPEN;
293 d->flags = 0;
294 d->mscex = 0;
Johan Hedberg183f7322010-12-06 15:56:17 +0200295 d->sec_level = BT_SECURITY_LOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 d->mtu = RFCOMM_DEFAULT_MTU;
297 d->v24_sig = RFCOMM_V24_RTC | RFCOMM_V24_RTR | RFCOMM_V24_DV;
298
299 d->cfc = RFCOMM_CFC_DISABLED;
300 d->rx_credits = RFCOMM_DEFAULT_CREDITS;
301}
302
Al Virodd0fc662005-10-07 07:46:04 +0100303struct rfcomm_dlc *rfcomm_dlc_alloc(gfp_t prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Marcel Holtmann25ea6db2006-07-06 15:40:09 +0200305 struct rfcomm_dlc *d = kzalloc(sizeof(*d), prio);
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!d)
308 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800310 setup_timer(&d->timer, rfcomm_dlc_timeout, (unsigned long)d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 skb_queue_head_init(&d->tx_queue);
Libor Pechacek86aae6c2014-04-29 20:38:34 +0200313 mutex_init(&d->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 atomic_set(&d->refcnt, 1);
315
316 rfcomm_dlc_clear_state(d);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 BT_DBG("%p", d);
Marcel Holtmann25ea6db2006-07-06 15:40:09 +0200319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return d;
321}
322
323void rfcomm_dlc_free(struct rfcomm_dlc *d)
324{
325 BT_DBG("%p", d);
326
327 skb_queue_purge(&d->tx_queue);
328 kfree(d);
329}
330
331static void rfcomm_dlc_link(struct rfcomm_session *s, struct rfcomm_dlc *d)
332{
333 BT_DBG("dlc %p session %p", d, s);
334
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300335 rfcomm_session_clear_timer(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 rfcomm_dlc_hold(d);
337 list_add(&d->list, &s->dlcs);
338 d->session = s;
339}
340
341static void rfcomm_dlc_unlink(struct rfcomm_dlc *d)
342{
343 struct rfcomm_session *s = d->session;
344
345 BT_DBG("dlc %p refcnt %d session %p", d, atomic_read(&d->refcnt), s);
346
347 list_del(&d->list);
348 d->session = NULL;
349 rfcomm_dlc_put(d);
350
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300351 if (list_empty(&s->dlcs))
352 rfcomm_session_set_timer(s, RFCOMM_IDLE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355static struct rfcomm_dlc *rfcomm_dlc_get(struct rfcomm_session *s, u8 dlci)
356{
357 struct rfcomm_dlc *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200359 list_for_each_entry(d, &s->dlcs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (d->dlci == dlci)
361 return d;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return NULL;
364}
365
Peter Hurleyc10a8482014-02-09 20:59:10 -0500366static int rfcomm_check_channel(u8 channel)
367{
368 return channel < 1 || channel > 30;
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371static int __rfcomm_dlc_open(struct rfcomm_dlc *d, bdaddr_t *src, bdaddr_t *dst, u8 channel)
372{
373 struct rfcomm_session *s;
374 int err = 0;
375 u8 dlci;
376
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300377 BT_DBG("dlc %p state %ld %pMR -> %pMR channel %d",
378 d, d->state, src, dst, channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Peter Hurleyc10a8482014-02-09 20:59:10 -0500380 if (rfcomm_check_channel(channel))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -EINVAL;
382
383 if (d->state != BT_OPEN && d->state != BT_CLOSED)
384 return 0;
385
386 s = rfcomm_session_get(src, dst);
387 if (!s) {
Luiz Augusto von Dentz63ce0902010-08-19 14:06:10 +0300388 s = rfcomm_session_create(src, dst, d->sec_level, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!s)
390 return err;
391 }
392
Johan Hedberg2a68c892014-11-04 08:45:45 +0200393 dlci = __dlci(__session_dir(s), channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* Check if DLCI already exists */
396 if (rfcomm_dlc_get(s, dlci))
397 return -EBUSY;
398
399 rfcomm_dlc_clear_state(d);
400
401 d->dlci = dlci;
402 d->addr = __addr(s->initiator, dlci);
403 d->priority = 7;
404
Marcel Holtmann77db1982008-07-14 20:13:45 +0200405 d->state = BT_CONFIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 rfcomm_dlc_link(s, d);
407
Marcel Holtmann77db1982008-07-14 20:13:45 +0200408 d->out = 1;
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 d->mtu = s->mtu;
411 d->cfc = (s->cfc == RFCOMM_CFC_UNKNOWN) ? 0 : s->cfc;
412
Marcel Holtmann77db1982008-07-14 20:13:45 +0200413 if (s->state == BT_CONNECTED) {
Marcel Holtmann9f2c8a02009-01-15 21:58:40 +0100414 if (rfcomm_check_security(d))
Marcel Holtmann77db1982008-07-14 20:13:45 +0200415 rfcomm_send_pn(s, 1, d);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100416 else
417 set_bit(RFCOMM_AUTH_PENDING, &d->flags);
Marcel Holtmann77db1982008-07-14 20:13:45 +0200418 }
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 rfcomm_dlc_set_timer(d, RFCOMM_CONN_TIMEOUT);
Marcel Holtmann77db1982008-07-14 20:13:45 +0200421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return 0;
423}
424
425int rfcomm_dlc_open(struct rfcomm_dlc *d, bdaddr_t *src, bdaddr_t *dst, u8 channel)
426{
427 int r;
428
429 rfcomm_lock();
430
431 r = __rfcomm_dlc_open(d, src, dst, channel);
432
433 rfcomm_unlock();
434 return r;
435}
436
Peter Hurleyf6223572014-02-09 20:59:13 -0500437static void __rfcomm_dlc_disconn(struct rfcomm_dlc *d)
438{
439 struct rfcomm_session *s = d->session;
440
441 d->state = BT_DISCONN;
442 if (skb_queue_empty(&d->tx_queue)) {
443 rfcomm_send_disc(s, d->dlci);
444 rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT);
445 } else {
446 rfcomm_queue_disc(d);
447 rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT * 2);
448 }
449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451static int __rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
452{
453 struct rfcomm_session *s = d->session;
454 if (!s)
455 return 0;
456
457 BT_DBG("dlc %p state %ld dlci %d err %d session %p",
458 d, d->state, d->dlci, err, s);
459
460 switch (d->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 case BT_CONNECT:
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +0100462 case BT_CONFIG:
Peter Hurley5998e042014-02-09 20:59:12 -0500463 case BT_OPEN:
464 case BT_CONNECT2:
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +0100465 if (test_and_clear_bit(RFCOMM_DEFER_SETUP, &d->flags)) {
466 set_bit(RFCOMM_AUTH_REJECT, &d->flags);
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300467 rfcomm_schedule();
Peter Hurley5998e042014-02-09 20:59:12 -0500468 return 0;
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +0100469 }
Peter Hurley5998e042014-02-09 20:59:12 -0500470 }
471
472 switch (d->state) {
473 case BT_CONNECT:
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +0100474 case BT_CONNECTED:
Peter Hurleyf6223572014-02-09 20:59:13 -0500475 __rfcomm_dlc_disconn(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
477
Peter Hurleyc4fd3182014-02-09 20:59:14 -0500478 case BT_CONFIG:
479 if (s->state != BT_BOUND) {
480 __rfcomm_dlc_disconn(d);
481 break;
482 }
483 /* if closing a dlc in a session that hasn't been started,
484 * just close and unlink the dlc
485 */
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 default:
488 rfcomm_dlc_clear_timer(d);
489
490 rfcomm_dlc_lock(d);
491 d->state = BT_CLOSED;
Dave Young1905f6c2008-04-01 23:59:06 -0700492 d->state_change(d, err);
Arjan van de Ven4c8411f2008-05-29 01:32:47 -0700493 rfcomm_dlc_unlock(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 skb_queue_purge(&d->tx_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 rfcomm_dlc_unlink(d);
497 }
498
499 return 0;
500}
501
502int rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
503{
Dean Jenkinsc06f7d52013-02-28 14:21:54 +0000504 int r = 0;
505 struct rfcomm_dlc *d_list;
506 struct rfcomm_session *s, *s_list;
507
508 BT_DBG("dlc %p state %ld dlci %d err %d", d, d->state, d->dlci, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 rfcomm_lock();
511
Dean Jenkinsc06f7d52013-02-28 14:21:54 +0000512 s = d->session;
513 if (!s)
514 goto no_session;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Dean Jenkinsc06f7d52013-02-28 14:21:54 +0000516 /* after waiting on the mutex check the session still exists
517 * then check the dlc still exists
518 */
519 list_for_each_entry(s_list, &session_list, list) {
520 if (s_list == s) {
521 list_for_each_entry(d_list, &s->dlcs, list) {
522 if (d_list == d) {
523 r = __rfcomm_dlc_close(d, err);
524 break;
525 }
526 }
527 break;
528 }
529 }
530
531no_session:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 rfcomm_unlock();
533 return r;
534}
535
Peter Hurleyc10a8482014-02-09 20:59:10 -0500536struct rfcomm_dlc *rfcomm_dlc_exists(bdaddr_t *src, bdaddr_t *dst, u8 channel)
537{
538 struct rfcomm_session *s;
539 struct rfcomm_dlc *dlc = NULL;
540 u8 dlci;
541
542 if (rfcomm_check_channel(channel))
543 return ERR_PTR(-EINVAL);
544
545 rfcomm_lock();
546 s = rfcomm_session_get(src, dst);
547 if (s) {
Johan Hedberg2a68c892014-11-04 08:45:45 +0200548 dlci = __dlci(__session_dir(s), channel);
Peter Hurleyc10a8482014-02-09 20:59:10 -0500549 dlc = rfcomm_dlc_get(s, dlci);
550 }
551 rfcomm_unlock();
552 return dlc;
553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555int rfcomm_dlc_send(struct rfcomm_dlc *d, struct sk_buff *skb)
556{
557 int len = skb->len;
558
559 if (d->state != BT_CONNECTED)
560 return -ENOTCONN;
561
562 BT_DBG("dlc %p mtu %d len %d", d, d->mtu, len);
563
564 if (len > d->mtu)
565 return -EINVAL;
566
567 rfcomm_make_uih(skb, d->addr);
568 skb_queue_tail(&d->tx_queue, skb);
569
570 if (!test_bit(RFCOMM_TX_THROTTLED, &d->flags))
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300571 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return len;
573}
574
Peter Hurley72e51082014-02-09 20:59:22 -0500575void rfcomm_dlc_send_noerror(struct rfcomm_dlc *d, struct sk_buff *skb)
576{
577 int len = skb->len;
578
579 BT_DBG("dlc %p mtu %d len %d", d, d->mtu, len);
580
581 rfcomm_make_uih(skb, d->addr);
582 skb_queue_tail(&d->tx_queue, skb);
583
584 if (d->state == BT_CONNECTED &&
585 !test_bit(RFCOMM_TX_THROTTLED, &d->flags))
586 rfcomm_schedule();
587}
588
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800589void __rfcomm_dlc_throttle(struct rfcomm_dlc *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 BT_DBG("dlc %p state %ld", d, d->state);
592
593 if (!d->cfc) {
594 d->v24_sig |= RFCOMM_V24_FC;
595 set_bit(RFCOMM_MSC_PENDING, &d->flags);
596 }
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300597 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800600void __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 BT_DBG("dlc %p state %ld", d, d->state);
603
604 if (!d->cfc) {
605 d->v24_sig &= ~RFCOMM_V24_FC;
606 set_bit(RFCOMM_MSC_PENDING, &d->flags);
607 }
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300608 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900611/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 Set/get modem status functions use _local_ status i.e. what we report
613 to the other side.
614 Remote status is provided by dlc->modem_status() callback.
615 */
616int rfcomm_dlc_set_modem_status(struct rfcomm_dlc *d, u8 v24_sig)
617{
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900618 BT_DBG("dlc %p state %ld v24_sig 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 d, d->state, v24_sig);
620
621 if (test_bit(RFCOMM_RX_THROTTLED, &d->flags))
622 v24_sig |= RFCOMM_V24_FC;
623 else
624 v24_sig &= ~RFCOMM_V24_FC;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 d->v24_sig = v24_sig;
627
628 if (!test_and_set_bit(RFCOMM_MSC_PENDING, &d->flags))
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300629 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 return 0;
632}
633
634int rfcomm_dlc_get_modem_status(struct rfcomm_dlc *d, u8 *v24_sig)
635{
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900636 BT_DBG("dlc %p state %ld v24_sig 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 d, d->state, d->v24_sig);
638
639 *v24_sig = d->v24_sig;
640 return 0;
641}
642
643/* ---- RFCOMM sessions ---- */
644static struct rfcomm_session *rfcomm_session_add(struct socket *sock, int state)
645{
Marcel Holtmann25ea6db2006-07-06 15:40:09 +0200646 struct rfcomm_session *s = kzalloc(sizeof(*s), GFP_KERNEL);
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!s)
649 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 BT_DBG("session %p sock %p", s, sock);
652
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300653 setup_timer(&s->timer, rfcomm_session_timeout, (unsigned long) s);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 INIT_LIST_HEAD(&s->dlcs);
656 s->state = state;
657 s->sock = sock;
658
659 s->mtu = RFCOMM_DEFAULT_MTU;
Marcel Holtmann7c2660b2006-07-03 10:02:51 +0200660 s->cfc = disable_cfc ? RFCOMM_CFC_DISABLED : RFCOMM_CFC_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /* Do not increment module usage count for listening sessions.
663 * Otherwise we won't be able to unload the module. */
664 if (state != BT_LISTEN)
665 if (!try_module_get(THIS_MODULE)) {
666 kfree(s);
667 return NULL;
668 }
669
670 list_add(&s->list, &session_list);
671
672 return s;
673}
674
Dean Jenkins8ff52f72013-02-28 14:21:55 +0000675static struct rfcomm_session *rfcomm_session_del(struct rfcomm_session *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 int state = s->state;
678
679 BT_DBG("session %p state %ld", s, s->state);
680
681 list_del(&s->list);
682
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300683 rfcomm_session_clear_timer(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 sock_release(s->sock);
685 kfree(s);
686
687 if (state != BT_LISTEN)
688 module_put(THIS_MODULE);
Dean Jenkins8ff52f72013-02-28 14:21:55 +0000689
690 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693static struct rfcomm_session *rfcomm_session_get(bdaddr_t *src, bdaddr_t *dst)
694{
Geliang Tang7eb74042015-12-18 23:33:25 +0800695 struct rfcomm_session *s, *n;
Marcel Holtmann24bc10c2013-10-13 09:49:54 -0700696 struct l2cap_chan *chan;
Geliang Tang7eb74042015-12-18 23:33:25 +0800697 list_for_each_entry_safe(s, n, &session_list, list) {
Marcel Holtmann24bc10c2013-10-13 09:49:54 -0700698 chan = l2cap_pi(s->sock->sk)->chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Marcel Holtmann24bc10c2013-10-13 09:49:54 -0700700 if ((!bacmp(src, BDADDR_ANY) || !bacmp(&chan->src, src)) &&
701 !bacmp(&chan->dst, dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return s;
703 }
704 return NULL;
705}
706
Dean Jenkins8ff52f72013-02-28 14:21:55 +0000707static struct rfcomm_session *rfcomm_session_close(struct rfcomm_session *s,
708 int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Geliang Tang7eb74042015-12-18 23:33:25 +0800710 struct rfcomm_dlc *d, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 s->state = BT_CLOSED;
713
Dean Jenkins24fd6422013-02-28 14:21:58 +0000714 BT_DBG("session %p state %ld err %d", s, s->state, err);
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /* Close all dlcs */
Geliang Tang7eb74042015-12-18 23:33:25 +0800717 list_for_each_entry_safe(d, n, &s->dlcs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 d->state = BT_CLOSED;
719 __rfcomm_dlc_close(d, err);
720 }
721
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -0300722 rfcomm_session_clear_timer(s);
Dean Jenkins08c30ac2013-02-28 14:21:56 +0000723 return rfcomm_session_del(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Luiz Augusto von Dentz63ce0902010-08-19 14:06:10 +0300726static struct rfcomm_session *rfcomm_session_create(bdaddr_t *src,
727 bdaddr_t *dst,
728 u8 sec_level,
729 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct rfcomm_session *s = NULL;
732 struct sockaddr_l2 addr;
733 struct socket *sock;
734 struct sock *sk;
735
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300736 BT_DBG("%pMR -> %pMR", src, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 *err = rfcomm_l2sock_create(&sock);
739 if (*err < 0)
740 return NULL;
741
742 bacpy(&addr.l2_bdaddr, src);
743 addr.l2_family = AF_BLUETOOTH;
744 addr.l2_psm = 0;
Marcel Holtmann37e62f52009-02-17 21:49:33 +0100745 addr.l2_cid = 0;
Seung-Woo Kimc507f132013-11-05 16:02:24 +0900746 addr.l2_bdaddr_type = BDADDR_BREDR;
Marcel Holtmann48db9ca2007-05-05 00:36:06 +0200747 *err = kernel_bind(sock, (struct sockaddr *) &addr, sizeof(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (*err < 0)
749 goto failed;
750
751 /* Set L2CAP options */
752 sk = sock->sk;
753 lock_sock(sk);
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -0300754 l2cap_pi(sk)->chan->imtu = l2cap_mtu;
Gustavo F. Padovan47d1ec62011-04-13 15:57:03 -0300755 l2cap_pi(sk)->chan->sec_level = sec_level;
Marcel Holtmanneae38ee2009-10-05 12:23:48 +0200756 if (l2cap_ertm)
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -0300757 l2cap_pi(sk)->chan->mode = L2CAP_MODE_ERTM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 release_sock(sk);
759
760 s = rfcomm_session_add(sock, BT_BOUND);
761 if (!s) {
762 *err = -ENOMEM;
763 goto failed;
764 }
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 s->initiator = 1;
767
768 bacpy(&addr.l2_bdaddr, dst);
769 addr.l2_family = AF_BLUETOOTH;
Marcel Holtmann72e4a6b2014-12-20 18:00:41 +0100770 addr.l2_psm = cpu_to_le16(L2CAP_PSM_RFCOMM);
Marcel Holtmann37e62f52009-02-17 21:49:33 +0100771 addr.l2_cid = 0;
Seung-Woo Kim8992da02013-11-05 17:15:42 +0900772 addr.l2_bdaddr_type = BDADDR_BREDR;
Marcel Holtmann48db9ca2007-05-05 00:36:06 +0200773 *err = kernel_connect(sock, (struct sockaddr *) &addr, sizeof(addr), O_NONBLOCK);
Marcel Holtmannb4c612a2006-09-23 09:54:38 +0200774 if (*err == 0 || *err == -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return s;
776
Dean Jenkins8ff52f72013-02-28 14:21:55 +0000777 return rfcomm_session_del(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779failed:
780 sock_release(sock);
781 return NULL;
782}
783
784void rfcomm_session_getaddr(struct rfcomm_session *s, bdaddr_t *src, bdaddr_t *dst)
785{
Marcel Holtmann24bc10c2013-10-13 09:49:54 -0700786 struct l2cap_chan *chan = l2cap_pi(s->sock->sk)->chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (src)
Marcel Holtmann24bc10c2013-10-13 09:49:54 -0700788 bacpy(src, &chan->src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (dst)
Marcel Holtmann24bc10c2013-10-13 09:49:54 -0700790 bacpy(dst, &chan->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
793/* ---- RFCOMM frame sending ---- */
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200794static int rfcomm_send_frame(struct rfcomm_session *s, u8 *data, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct kvec iv = { data, len };
797 struct msghdr msg;
798
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200799 BT_DBG("session %p len %d", s, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 memset(&msg, 0, sizeof(msg));
802
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200803 return kernel_sendmsg(s->sock, &msg, &iv, 1, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Luiz Augusto von Dentz262038f2011-11-01 10:58:58 +0200806static int rfcomm_send_cmd(struct rfcomm_session *s, struct rfcomm_cmd *cmd)
807{
808 BT_DBG("%p cmd %u", s, cmd->ctrl);
809
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200810 return rfcomm_send_frame(s, (void *) cmd, sizeof(*cmd));
Luiz Augusto von Dentz262038f2011-11-01 10:58:58 +0200811}
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813static int rfcomm_send_sabm(struct rfcomm_session *s, u8 dlci)
814{
815 struct rfcomm_cmd cmd;
816
817 BT_DBG("%p dlci %d", s, dlci);
818
819 cmd.addr = __addr(s->initiator, dlci);
820 cmd.ctrl = __ctrl(RFCOMM_SABM, 1);
821 cmd.len = __len8(0);
822 cmd.fcs = __fcs2((u8 *) &cmd);
823
Luiz Augusto von Dentz262038f2011-11-01 10:58:58 +0200824 return rfcomm_send_cmd(s, &cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827static int rfcomm_send_ua(struct rfcomm_session *s, u8 dlci)
828{
829 struct rfcomm_cmd cmd;
830
831 BT_DBG("%p dlci %d", s, dlci);
832
833 cmd.addr = __addr(!s->initiator, dlci);
834 cmd.ctrl = __ctrl(RFCOMM_UA, 1);
835 cmd.len = __len8(0);
836 cmd.fcs = __fcs2((u8 *) &cmd);
837
Luiz Augusto von Dentz262038f2011-11-01 10:58:58 +0200838 return rfcomm_send_cmd(s, &cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
841static int rfcomm_send_disc(struct rfcomm_session *s, u8 dlci)
842{
843 struct rfcomm_cmd cmd;
844
845 BT_DBG("%p dlci %d", s, dlci);
846
847 cmd.addr = __addr(s->initiator, dlci);
848 cmd.ctrl = __ctrl(RFCOMM_DISC, 1);
849 cmd.len = __len8(0);
850 cmd.fcs = __fcs2((u8 *) &cmd);
851
Luiz Augusto von Dentz262038f2011-11-01 10:58:58 +0200852 return rfcomm_send_cmd(s, &cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
855static int rfcomm_queue_disc(struct rfcomm_dlc *d)
856{
857 struct rfcomm_cmd *cmd;
858 struct sk_buff *skb;
859
860 BT_DBG("dlc %p dlci %d", d, d->dlci);
861
862 skb = alloc_skb(sizeof(*cmd), GFP_KERNEL);
863 if (!skb)
864 return -ENOMEM;
865
866 cmd = (void *) __skb_put(skb, sizeof(*cmd));
867 cmd->addr = d->addr;
868 cmd->ctrl = __ctrl(RFCOMM_DISC, 1);
869 cmd->len = __len8(0);
870 cmd->fcs = __fcs2((u8 *) cmd);
871
872 skb_queue_tail(&d->tx_queue, skb);
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +0300873 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return 0;
875}
876
877static int rfcomm_send_dm(struct rfcomm_session *s, u8 dlci)
878{
879 struct rfcomm_cmd cmd;
880
881 BT_DBG("%p dlci %d", s, dlci);
882
883 cmd.addr = __addr(!s->initiator, dlci);
884 cmd.ctrl = __ctrl(RFCOMM_DM, 1);
885 cmd.len = __len8(0);
886 cmd.fcs = __fcs2((u8 *) &cmd);
887
Luiz Augusto von Dentz262038f2011-11-01 10:58:58 +0200888 return rfcomm_send_cmd(s, &cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891static int rfcomm_send_nsc(struct rfcomm_session *s, int cr, u8 type)
892{
893 struct rfcomm_hdr *hdr;
894 struct rfcomm_mcc *mcc;
895 u8 buf[16], *ptr = buf;
896
897 BT_DBG("%p cr %d type %d", s, cr, type);
898
899 hdr = (void *) ptr; ptr += sizeof(*hdr);
900 hdr->addr = __addr(s->initiator, 0);
901 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
902 hdr->len = __len8(sizeof(*mcc) + 1);
903
904 mcc = (void *) ptr; ptr += sizeof(*mcc);
Szymon Jancec511542014-10-13 11:43:53 +0200905 mcc->type = __mcc_type(0, RFCOMM_NSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 mcc->len = __len8(1);
907
908 /* Type that we didn't like */
909 *ptr = __mcc_type(cr, type); ptr++;
910
911 *ptr = __fcs(buf); ptr++;
912
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200913 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916static int rfcomm_send_pn(struct rfcomm_session *s, int cr, struct rfcomm_dlc *d)
917{
918 struct rfcomm_hdr *hdr;
919 struct rfcomm_mcc *mcc;
920 struct rfcomm_pn *pn;
921 u8 buf[16], *ptr = buf;
922
923 BT_DBG("%p cr %d dlci %d mtu %d", s, cr, d->dlci, d->mtu);
924
925 hdr = (void *) ptr; ptr += sizeof(*hdr);
926 hdr->addr = __addr(s->initiator, 0);
927 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
928 hdr->len = __len8(sizeof(*mcc) + sizeof(*pn));
929
930 mcc = (void *) ptr; ptr += sizeof(*mcc);
931 mcc->type = __mcc_type(cr, RFCOMM_PN);
932 mcc->len = __len8(sizeof(*pn));
933
934 pn = (void *) ptr; ptr += sizeof(*pn);
935 pn->dlci = d->dlci;
936 pn->priority = d->priority;
937 pn->ack_timer = 0;
938 pn->max_retrans = 0;
939
940 if (s->cfc) {
941 pn->flow_ctrl = cr ? 0xf0 : 0xe0;
942 pn->credits = RFCOMM_DEFAULT_CREDITS;
943 } else {
944 pn->flow_ctrl = 0;
945 pn->credits = 0;
946 }
947
Marcel Holtmann98bcd082006-07-14 11:42:12 +0200948 if (cr && channel_mtu >= 0)
Marcel Holtmannb4324b52009-06-07 18:06:51 +0200949 pn->mtu = cpu_to_le16(channel_mtu);
Marcel Holtmann98bcd082006-07-14 11:42:12 +0200950 else
Marcel Holtmannb4324b52009-06-07 18:06:51 +0200951 pn->mtu = cpu_to_le16(d->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 *ptr = __fcs(buf); ptr++;
954
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200955 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
J. Suter3a5e9032005-08-09 20:28:46 -0700958int rfcomm_send_rpn(struct rfcomm_session *s, int cr, u8 dlci,
959 u8 bit_rate, u8 data_bits, u8 stop_bits,
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900960 u8 parity, u8 flow_ctrl_settings,
J. Suter3a5e9032005-08-09 20:28:46 -0700961 u8 xon_char, u8 xoff_char, u16 param_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 struct rfcomm_hdr *hdr;
964 struct rfcomm_mcc *mcc;
965 struct rfcomm_rpn *rpn;
966 u8 buf[16], *ptr = buf;
967
968 BT_DBG("%p cr %d dlci %d bit_r 0x%x data_b 0x%x stop_b 0x%x parity 0x%x"
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900969 " flwc_s 0x%x xon_c 0x%x xoff_c 0x%x p_mask 0x%x",
970 s, cr, dlci, bit_rate, data_bits, stop_bits, parity,
J. Suter3a5e9032005-08-09 20:28:46 -0700971 flow_ctrl_settings, xon_char, xoff_char, param_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 hdr = (void *) ptr; ptr += sizeof(*hdr);
974 hdr->addr = __addr(s->initiator, 0);
975 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
976 hdr->len = __len8(sizeof(*mcc) + sizeof(*rpn));
977
978 mcc = (void *) ptr; ptr += sizeof(*mcc);
979 mcc->type = __mcc_type(cr, RFCOMM_RPN);
980 mcc->len = __len8(sizeof(*rpn));
981
982 rpn = (void *) ptr; ptr += sizeof(*rpn);
983 rpn->dlci = __addr(1, dlci);
984 rpn->bit_rate = bit_rate;
985 rpn->line_settings = __rpn_line_settings(data_bits, stop_bits, parity);
986 rpn->flow_ctrl = flow_ctrl_settings;
987 rpn->xon_char = xon_char;
988 rpn->xoff_char = xoff_char;
Al Viroe8db8c92006-11-08 00:28:44 -0800989 rpn->param_mask = cpu_to_le16(param_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 *ptr = __fcs(buf); ptr++;
992
Gustavo F. Padovan54365382011-12-20 16:30:44 -0200993 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
996static int rfcomm_send_rls(struct rfcomm_session *s, int cr, u8 dlci, u8 status)
997{
998 struct rfcomm_hdr *hdr;
999 struct rfcomm_mcc *mcc;
1000 struct rfcomm_rls *rls;
1001 u8 buf[16], *ptr = buf;
1002
1003 BT_DBG("%p cr %d status 0x%x", s, cr, status);
1004
1005 hdr = (void *) ptr; ptr += sizeof(*hdr);
1006 hdr->addr = __addr(s->initiator, 0);
1007 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
1008 hdr->len = __len8(sizeof(*mcc) + sizeof(*rls));
1009
1010 mcc = (void *) ptr; ptr += sizeof(*mcc);
1011 mcc->type = __mcc_type(cr, RFCOMM_RLS);
1012 mcc->len = __len8(sizeof(*rls));
1013
1014 rls = (void *) ptr; ptr += sizeof(*rls);
1015 rls->dlci = __addr(1, dlci);
1016 rls->status = status;
1017
1018 *ptr = __fcs(buf); ptr++;
1019
Gustavo F. Padovan54365382011-12-20 16:30:44 -02001020 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023static int rfcomm_send_msc(struct rfcomm_session *s, int cr, u8 dlci, u8 v24_sig)
1024{
1025 struct rfcomm_hdr *hdr;
1026 struct rfcomm_mcc *mcc;
1027 struct rfcomm_msc *msc;
1028 u8 buf[16], *ptr = buf;
1029
1030 BT_DBG("%p cr %d v24 0x%x", s, cr, v24_sig);
1031
1032 hdr = (void *) ptr; ptr += sizeof(*hdr);
1033 hdr->addr = __addr(s->initiator, 0);
1034 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
1035 hdr->len = __len8(sizeof(*mcc) + sizeof(*msc));
1036
1037 mcc = (void *) ptr; ptr += sizeof(*mcc);
1038 mcc->type = __mcc_type(cr, RFCOMM_MSC);
1039 mcc->len = __len8(sizeof(*msc));
1040
1041 msc = (void *) ptr; ptr += sizeof(*msc);
1042 msc->dlci = __addr(1, dlci);
1043 msc->v24_sig = v24_sig | 0x01;
1044
1045 *ptr = __fcs(buf); ptr++;
1046
Gustavo F. Padovan54365382011-12-20 16:30:44 -02001047 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
1050static int rfcomm_send_fcoff(struct rfcomm_session *s, int cr)
1051{
1052 struct rfcomm_hdr *hdr;
1053 struct rfcomm_mcc *mcc;
1054 u8 buf[16], *ptr = buf;
1055
1056 BT_DBG("%p cr %d", s, cr);
1057
1058 hdr = (void *) ptr; ptr += sizeof(*hdr);
1059 hdr->addr = __addr(s->initiator, 0);
1060 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
1061 hdr->len = __len8(sizeof(*mcc));
1062
1063 mcc = (void *) ptr; ptr += sizeof(*mcc);
1064 mcc->type = __mcc_type(cr, RFCOMM_FCOFF);
1065 mcc->len = __len8(0);
1066
1067 *ptr = __fcs(buf); ptr++;
1068
Gustavo F. Padovan54365382011-12-20 16:30:44 -02001069 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
1072static int rfcomm_send_fcon(struct rfcomm_session *s, int cr)
1073{
1074 struct rfcomm_hdr *hdr;
1075 struct rfcomm_mcc *mcc;
1076 u8 buf[16], *ptr = buf;
1077
1078 BT_DBG("%p cr %d", s, cr);
1079
1080 hdr = (void *) ptr; ptr += sizeof(*hdr);
1081 hdr->addr = __addr(s->initiator, 0);
1082 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
1083 hdr->len = __len8(sizeof(*mcc));
1084
1085 mcc = (void *) ptr; ptr += sizeof(*mcc);
1086 mcc->type = __mcc_type(cr, RFCOMM_FCON);
1087 mcc->len = __len8(0);
1088
1089 *ptr = __fcs(buf); ptr++;
1090
Gustavo F. Padovan54365382011-12-20 16:30:44 -02001091 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
1094static int rfcomm_send_test(struct rfcomm_session *s, int cr, u8 *pattern, int len)
1095{
1096 struct socket *sock = s->sock;
1097 struct kvec iv[3];
1098 struct msghdr msg;
1099 unsigned char hdr[5], crc[1];
1100
1101 if (len > 125)
1102 return -EINVAL;
1103
1104 BT_DBG("%p cr %d", s, cr);
1105
1106 hdr[0] = __addr(s->initiator, 0);
1107 hdr[1] = __ctrl(RFCOMM_UIH, 0);
1108 hdr[2] = 0x01 | ((len + 2) << 1);
1109 hdr[3] = 0x01 | ((cr & 0x01) << 1) | (RFCOMM_TEST << 2);
1110 hdr[4] = 0x01 | (len << 1);
1111
1112 crc[0] = __fcs(hdr);
1113
1114 iv[0].iov_base = hdr;
1115 iv[0].iov_len = 5;
1116 iv[1].iov_base = pattern;
1117 iv[1].iov_len = len;
1118 iv[2].iov_base = crc;
1119 iv[2].iov_len = 1;
1120
1121 memset(&msg, 0, sizeof(msg));
1122
1123 return kernel_sendmsg(sock, &msg, iv, 3, 6 + len);
1124}
1125
1126static int rfcomm_send_credits(struct rfcomm_session *s, u8 addr, u8 credits)
1127{
1128 struct rfcomm_hdr *hdr;
1129 u8 buf[16], *ptr = buf;
1130
1131 BT_DBG("%p addr %d credits %d", s, addr, credits);
1132
1133 hdr = (void *) ptr; ptr += sizeof(*hdr);
1134 hdr->addr = addr;
1135 hdr->ctrl = __ctrl(RFCOMM_UIH, 1);
1136 hdr->len = __len8(0);
1137
1138 *ptr = credits; ptr++;
1139
1140 *ptr = __fcs(buf); ptr++;
1141
Gustavo F. Padovan54365382011-12-20 16:30:44 -02001142 return rfcomm_send_frame(s, buf, ptr - buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145static void rfcomm_make_uih(struct sk_buff *skb, u8 addr)
1146{
1147 struct rfcomm_hdr *hdr;
1148 int len = skb->len;
1149 u8 *crc;
1150
1151 if (len > 127) {
1152 hdr = (void *) skb_push(skb, 4);
Marcel Holtmannb4324b52009-06-07 18:06:51 +02001153 put_unaligned(cpu_to_le16(__len16(len)), (__le16 *) &hdr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 } else {
1155 hdr = (void *) skb_push(skb, 3);
1156 hdr->len = __len8(len);
1157 }
1158 hdr->addr = addr;
1159 hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
1160
1161 crc = skb_put(skb, 1);
1162 *crc = __fcs((void *) hdr);
1163}
1164
1165/* ---- RFCOMM frame reception ---- */
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001166static struct rfcomm_session *rfcomm_recv_ua(struct rfcomm_session *s, u8 dlci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);
1169
1170 if (dlci) {
1171 /* Data channel */
1172 struct rfcomm_dlc *d = rfcomm_dlc_get(s, dlci);
1173 if (!d) {
1174 rfcomm_send_dm(s, dlci);
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001175 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
1178 switch (d->state) {
1179 case BT_CONNECT:
1180 rfcomm_dlc_clear_timer(d);
1181
1182 rfcomm_dlc_lock(d);
1183 d->state = BT_CONNECTED;
1184 d->state_change(d, 0);
1185 rfcomm_dlc_unlock(d);
1186
1187 rfcomm_send_msc(s, 1, dlci, d->v24_sig);
1188 break;
1189
1190 case BT_DISCONN:
1191 d->state = BT_CLOSED;
1192 __rfcomm_dlc_close(d, 0);
Marcel Holtmann9cf5b0e2007-05-05 00:36:13 +02001193
1194 if (list_empty(&s->dlcs)) {
1195 s->state = BT_DISCONN;
1196 rfcomm_send_disc(s, 0);
Mat Martineau79e65472011-12-06 16:23:26 -08001197 rfcomm_session_clear_timer(s);
Marcel Holtmann9cf5b0e2007-05-05 00:36:13 +02001198 }
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 break;
1201 }
1202 } else {
1203 /* Control channel */
1204 switch (s->state) {
1205 case BT_CONNECT:
1206 s->state = BT_CONNECTED;
1207 rfcomm_process_connect(s);
1208 break;
Marcel Holtmann9cf5b0e2007-05-05 00:36:13 +02001209
1210 case BT_DISCONN:
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001211 s = rfcomm_session_close(s, ECONNRESET);
Marcel Holtmann9cf5b0e2007-05-05 00:36:13 +02001212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214 }
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001215 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001218static struct rfcomm_session *rfcomm_recv_dm(struct rfcomm_session *s, u8 dlci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 int err = 0;
1221
1222 BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);
1223
1224 if (dlci) {
1225 /* Data DLC */
1226 struct rfcomm_dlc *d = rfcomm_dlc_get(s, dlci);
1227 if (d) {
1228 if (d->state == BT_CONNECT || d->state == BT_CONFIG)
1229 err = ECONNREFUSED;
1230 else
1231 err = ECONNRESET;
1232
1233 d->state = BT_CLOSED;
1234 __rfcomm_dlc_close(d, err);
1235 }
1236 } else {
1237 if (s->state == BT_CONNECT)
1238 err = ECONNREFUSED;
1239 else
1240 err = ECONNRESET;
1241
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001242 s = rfcomm_session_close(s, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001244 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001247static struct rfcomm_session *rfcomm_recv_disc(struct rfcomm_session *s,
1248 u8 dlci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
1250 int err = 0;
1251
1252 BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);
1253
1254 if (dlci) {
1255 struct rfcomm_dlc *d = rfcomm_dlc_get(s, dlci);
1256 if (d) {
1257 rfcomm_send_ua(s, dlci);
1258
1259 if (d->state == BT_CONNECT || d->state == BT_CONFIG)
1260 err = ECONNREFUSED;
1261 else
1262 err = ECONNRESET;
1263
1264 d->state = BT_CLOSED;
1265 __rfcomm_dlc_close(d, err);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001266 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 rfcomm_send_dm(s, dlci);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 } else {
1270 rfcomm_send_ua(s, 0);
1271
1272 if (s->state == BT_CONNECT)
1273 err = ECONNREFUSED;
1274 else
1275 err = ECONNRESET;
1276
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001277 s = rfcomm_session_close(s, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001279 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001282void rfcomm_dlc_accept(struct rfcomm_dlc *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Marcel Holtmann300b9392006-07-03 10:37:55 +02001284 struct sock *sk = d->session->sock->sk;
Gustavo F. Padovan8c1d7872011-04-13 20:23:55 -03001285 struct l2cap_conn *conn = l2cap_pi(sk)->chan->conn;
Marcel Holtmann300b9392006-07-03 10:37:55 +02001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 BT_DBG("dlc %p", d);
1288
1289 rfcomm_send_ua(d->session, d->dlci);
1290
Johan Hedberge2139b32009-03-26 16:41:56 +02001291 rfcomm_dlc_clear_timer(d);
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 rfcomm_dlc_lock(d);
1294 d->state = BT_CONNECTED;
1295 d->state_change(d, 0);
1296 rfcomm_dlc_unlock(d);
1297
Marcel Holtmann9f2c8a02009-01-15 21:58:40 +01001298 if (d->role_switch)
Gustavo F. Padovan8c1d7872011-04-13 20:23:55 -03001299 hci_conn_switch_role(conn->hcon, 0x00);
Marcel Holtmann300b9392006-07-03 10:37:55 +02001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 rfcomm_send_msc(d->session, 1, d->dlci, d->v24_sig);
1302}
1303
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001304static void rfcomm_check_accept(struct rfcomm_dlc *d)
1305{
Marcel Holtmann9f2c8a02009-01-15 21:58:40 +01001306 if (rfcomm_check_security(d)) {
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001307 if (d->defer_setup) {
1308 set_bit(RFCOMM_DEFER_SETUP, &d->flags);
1309 rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
Marcel Holtmann8bf47942009-02-16 02:59:49 +01001310
1311 rfcomm_dlc_lock(d);
1312 d->state = BT_CONNECT2;
1313 d->state_change(d, 0);
1314 rfcomm_dlc_unlock(d);
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001315 } else
1316 rfcomm_dlc_accept(d);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +01001317 } else {
1318 set_bit(RFCOMM_AUTH_PENDING, &d->flags);
1319 rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001320 }
1321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci)
1324{
1325 struct rfcomm_dlc *d;
1326 u8 channel;
1327
1328 BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);
1329
1330 if (!dlci) {
1331 rfcomm_send_ua(s, 0);
1332
1333 if (s->state == BT_OPEN) {
1334 s->state = BT_CONNECTED;
1335 rfcomm_process_connect(s);
1336 }
1337 return 0;
1338 }
1339
1340 /* Check if DLC exists */
1341 d = rfcomm_dlc_get(s, dlci);
1342 if (d) {
1343 if (d->state == BT_OPEN) {
1344 /* DLC was previously opened by PN request */
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001345 rfcomm_check_accept(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347 return 0;
1348 }
1349
1350 /* Notify socket layer about incoming connection */
1351 channel = __srv_channel(dlci);
1352 if (rfcomm_connect_ind(s, channel, &d)) {
1353 d->dlci = dlci;
1354 d->addr = __addr(s->initiator, dlci);
1355 rfcomm_dlc_link(s, d);
1356
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001357 rfcomm_check_accept(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 } else {
1359 rfcomm_send_dm(s, dlci);
1360 }
1361
1362 return 0;
1363}
1364
1365static int rfcomm_apply_pn(struct rfcomm_dlc *d, int cr, struct rfcomm_pn *pn)
1366{
1367 struct rfcomm_session *s = d->session;
1368
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001369 BT_DBG("dlc %p state %ld dlci %d mtu %d fc 0x%x credits %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 d, d->state, d->dlci, pn->mtu, pn->flow_ctrl, pn->credits);
1371
Marcel Holtmann7c2660b2006-07-03 10:02:51 +02001372 if ((pn->flow_ctrl == 0xf0 && s->cfc != RFCOMM_CFC_DISABLED) ||
1373 pn->flow_ctrl == 0xe0) {
1374 d->cfc = RFCOMM_CFC_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 d->tx_credits = pn->credits;
1376 } else {
Marcel Holtmann7c2660b2006-07-03 10:02:51 +02001377 d->cfc = RFCOMM_CFC_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 set_bit(RFCOMM_TX_THROTTLED, &d->flags);
1379 }
1380
Marcel Holtmann7c2660b2006-07-03 10:02:51 +02001381 if (s->cfc == RFCOMM_CFC_UNKNOWN)
1382 s->cfc = d->cfc;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 d->priority = pn->priority;
1385
Marcel Holtmannb4324b52009-06-07 18:06:51 +02001386 d->mtu = __le16_to_cpu(pn->mtu);
Marcel Holtmann98bcd082006-07-14 11:42:12 +02001387
1388 if (cr && d->mtu > s->mtu)
1389 d->mtu = s->mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 return 0;
1392}
1393
1394static int rfcomm_recv_pn(struct rfcomm_session *s, int cr, struct sk_buff *skb)
1395{
1396 struct rfcomm_pn *pn = (void *) skb->data;
1397 struct rfcomm_dlc *d;
1398 u8 dlci = pn->dlci;
1399
1400 BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);
1401
1402 if (!dlci)
1403 return 0;
1404
1405 d = rfcomm_dlc_get(s, dlci);
1406 if (d) {
1407 if (cr) {
1408 /* PN request */
1409 rfcomm_apply_pn(d, cr, pn);
1410 rfcomm_send_pn(s, 0, d);
1411 } else {
1412 /* PN response */
1413 switch (d->state) {
1414 case BT_CONFIG:
1415 rfcomm_apply_pn(d, cr, pn);
1416
1417 d->state = BT_CONNECT;
1418 rfcomm_send_sabm(s, d->dlci);
1419 break;
1420 }
1421 }
1422 } else {
1423 u8 channel = __srv_channel(dlci);
1424
1425 if (!cr)
1426 return 0;
1427
1428 /* PN request for non existing DLC.
1429 * Assume incoming connection. */
1430 if (rfcomm_connect_ind(s, channel, &d)) {
1431 d->dlci = dlci;
1432 d->addr = __addr(s->initiator, dlci);
1433 rfcomm_dlc_link(s, d);
1434
1435 rfcomm_apply_pn(d, cr, pn);
1436
1437 d->state = BT_OPEN;
1438 rfcomm_send_pn(s, 0, d);
1439 } else {
1440 rfcomm_send_dm(s, dlci);
1441 }
1442 }
1443 return 0;
1444}
1445
1446static int rfcomm_recv_rpn(struct rfcomm_session *s, int cr, int len, struct sk_buff *skb)
1447{
1448 struct rfcomm_rpn *rpn = (void *) skb->data;
1449 u8 dlci = __get_dlci(rpn->dlci);
1450
1451 u8 bit_rate = 0;
1452 u8 data_bits = 0;
1453 u8 stop_bits = 0;
1454 u8 parity = 0;
1455 u8 flow_ctrl = 0;
1456 u8 xon_char = 0;
1457 u8 xoff_char = 0;
1458 u16 rpn_mask = RFCOMM_RPN_PM_ALL;
J. Suter3a5e9032005-08-09 20:28:46 -07001459
1460 BT_DBG("dlci %d cr %d len 0x%x bitr 0x%x line 0x%x flow 0x%x xonc 0x%x xoffc 0x%x pm 0x%x",
1461 dlci, cr, len, rpn->bit_rate, rpn->line_settings, rpn->flow_ctrl,
1462 rpn->xon_char, rpn->xoff_char, rpn->param_mask);
1463
1464 if (!cr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return 0;
J. Suter3a5e9032005-08-09 20:28:46 -07001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (len == 1) {
Yuri Kululin08601462010-07-23 13:57:12 +04001468 /* This is a request, return default (according to ETSI TS 07.10) settings */
1469 bit_rate = RFCOMM_RPN_BR_9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 data_bits = RFCOMM_RPN_DATA_8;
1471 stop_bits = RFCOMM_RPN_STOP_1;
1472 parity = RFCOMM_RPN_PARITY_NONE;
1473 flow_ctrl = RFCOMM_RPN_FLOW_NONE;
1474 xon_char = RFCOMM_RPN_XON_CHAR;
1475 xoff_char = RFCOMM_RPN_XOFF_CHAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto rpn_out;
1477 }
J. Suter3a5e9032005-08-09 20:28:46 -07001478
1479 /* Check for sane values, ignore/accept bit_rate, 8 bits, 1 stop bit,
1480 * no parity, no flow control lines, normal XON/XOFF chars */
1481
Al Viroe8db8c92006-11-08 00:28:44 -08001482 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_BITRATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 bit_rate = rpn->bit_rate;
Yuri Kululin08601462010-07-23 13:57:12 +04001484 if (bit_rate > RFCOMM_RPN_BR_230400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 BT_DBG("RPN bit rate mismatch 0x%x", bit_rate);
Yuri Kululin08601462010-07-23 13:57:12 +04001486 bit_rate = RFCOMM_RPN_BR_9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 rpn_mask ^= RFCOMM_RPN_PM_BITRATE;
1488 }
1489 }
J. Suter3a5e9032005-08-09 20:28:46 -07001490
Al Viroe8db8c92006-11-08 00:28:44 -08001491 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 data_bits = __get_rpn_data_bits(rpn->line_settings);
1493 if (data_bits != RFCOMM_RPN_DATA_8) {
1494 BT_DBG("RPN data bits mismatch 0x%x", data_bits);
1495 data_bits = RFCOMM_RPN_DATA_8;
1496 rpn_mask ^= RFCOMM_RPN_PM_DATA;
1497 }
1498 }
J. Suter3a5e9032005-08-09 20:28:46 -07001499
Al Viroe8db8c92006-11-08 00:28:44 -08001500 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_STOP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 stop_bits = __get_rpn_stop_bits(rpn->line_settings);
1502 if (stop_bits != RFCOMM_RPN_STOP_1) {
1503 BT_DBG("RPN stop bits mismatch 0x%x", stop_bits);
1504 stop_bits = RFCOMM_RPN_STOP_1;
1505 rpn_mask ^= RFCOMM_RPN_PM_STOP;
1506 }
1507 }
J. Suter3a5e9032005-08-09 20:28:46 -07001508
Al Viroe8db8c92006-11-08 00:28:44 -08001509 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_PARITY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 parity = __get_rpn_parity(rpn->line_settings);
1511 if (parity != RFCOMM_RPN_PARITY_NONE) {
1512 BT_DBG("RPN parity mismatch 0x%x", parity);
1513 parity = RFCOMM_RPN_PARITY_NONE;
1514 rpn_mask ^= RFCOMM_RPN_PM_PARITY;
1515 }
1516 }
J. Suter3a5e9032005-08-09 20:28:46 -07001517
Al Viroe8db8c92006-11-08 00:28:44 -08001518 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_FLOW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 flow_ctrl = rpn->flow_ctrl;
1520 if (flow_ctrl != RFCOMM_RPN_FLOW_NONE) {
1521 BT_DBG("RPN flow ctrl mismatch 0x%x", flow_ctrl);
1522 flow_ctrl = RFCOMM_RPN_FLOW_NONE;
1523 rpn_mask ^= RFCOMM_RPN_PM_FLOW;
1524 }
1525 }
J. Suter3a5e9032005-08-09 20:28:46 -07001526
Al Viroe8db8c92006-11-08 00:28:44 -08001527 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_XON)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 xon_char = rpn->xon_char;
1529 if (xon_char != RFCOMM_RPN_XON_CHAR) {
1530 BT_DBG("RPN XON char mismatch 0x%x", xon_char);
1531 xon_char = RFCOMM_RPN_XON_CHAR;
1532 rpn_mask ^= RFCOMM_RPN_PM_XON;
1533 }
1534 }
J. Suter3a5e9032005-08-09 20:28:46 -07001535
Al Viroe8db8c92006-11-08 00:28:44 -08001536 if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_XOFF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 xoff_char = rpn->xoff_char;
1538 if (xoff_char != RFCOMM_RPN_XOFF_CHAR) {
1539 BT_DBG("RPN XOFF char mismatch 0x%x", xoff_char);
1540 xoff_char = RFCOMM_RPN_XOFF_CHAR;
1541 rpn_mask ^= RFCOMM_RPN_PM_XOFF;
1542 }
1543 }
1544
1545rpn_out:
J. Suter3a5e9032005-08-09 20:28:46 -07001546 rfcomm_send_rpn(s, 0, dlci, bit_rate, data_bits, stop_bits,
1547 parity, flow_ctrl, xon_char, xoff_char, rpn_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 return 0;
1550}
1551
1552static int rfcomm_recv_rls(struct rfcomm_session *s, int cr, struct sk_buff *skb)
1553{
1554 struct rfcomm_rls *rls = (void *) skb->data;
1555 u8 dlci = __get_dlci(rls->dlci);
1556
1557 BT_DBG("dlci %d cr %d status 0x%x", dlci, cr, rls->status);
J. Suter3a5e9032005-08-09 20:28:46 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (!cr)
1560 return 0;
1561
J. Suter3a5e9032005-08-09 20:28:46 -07001562 /* We should probably do something with this information here. But
1563 * for now it's sufficient just to reply -- Bluetooth 1.1 says it's
1564 * mandatory to recognise and respond to RLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 rfcomm_send_rls(s, 0, dlci, rls->status);
1567
1568 return 0;
1569}
1570
1571static int rfcomm_recv_msc(struct rfcomm_session *s, int cr, struct sk_buff *skb)
1572{
1573 struct rfcomm_msc *msc = (void *) skb->data;
1574 struct rfcomm_dlc *d;
1575 u8 dlci = __get_dlci(msc->dlci);
1576
1577 BT_DBG("dlci %d cr %d v24 0x%x", dlci, cr, msc->v24_sig);
1578
1579 d = rfcomm_dlc_get(s, dlci);
J. Suter3a5e9032005-08-09 20:28:46 -07001580 if (!d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return 0;
1582
1583 if (cr) {
1584 if (msc->v24_sig & RFCOMM_V24_FC && !d->cfc)
1585 set_bit(RFCOMM_TX_THROTTLED, &d->flags);
1586 else
1587 clear_bit(RFCOMM_TX_THROTTLED, &d->flags);
J. Suter3a5e9032005-08-09 20:28:46 -07001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 rfcomm_dlc_lock(d);
Marcel Holtmann8b6b3da2008-07-14 20:13:52 +02001590
1591 d->remote_v24_sig = msc->v24_sig;
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (d->modem_status)
1594 d->modem_status(d, msc->v24_sig);
Marcel Holtmann8b6b3da2008-07-14 20:13:52 +02001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 rfcomm_dlc_unlock(d);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 rfcomm_send_msc(s, 0, dlci, msc->v24_sig);
1599
1600 d->mscex |= RFCOMM_MSCEX_RX;
J. Suter3a5e9032005-08-09 20:28:46 -07001601 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 d->mscex |= RFCOMM_MSCEX_TX;
1603
1604 return 0;
1605}
1606
1607static int rfcomm_recv_mcc(struct rfcomm_session *s, struct sk_buff *skb)
1608{
1609 struct rfcomm_mcc *mcc = (void *) skb->data;
1610 u8 type, cr, len;
1611
1612 cr = __test_cr(mcc->type);
1613 type = __get_mcc_type(mcc->type);
1614 len = __get_mcc_len(mcc->len);
1615
1616 BT_DBG("%p type 0x%x cr %d", s, type, cr);
1617
1618 skb_pull(skb, 2);
1619
1620 switch (type) {
1621 case RFCOMM_PN:
1622 rfcomm_recv_pn(s, cr, skb);
1623 break;
1624
1625 case RFCOMM_RPN:
1626 rfcomm_recv_rpn(s, cr, len, skb);
1627 break;
1628
1629 case RFCOMM_RLS:
1630 rfcomm_recv_rls(s, cr, skb);
1631 break;
1632
1633 case RFCOMM_MSC:
1634 rfcomm_recv_msc(s, cr, skb);
1635 break;
1636
1637 case RFCOMM_FCOFF:
1638 if (cr) {
1639 set_bit(RFCOMM_TX_THROTTLED, &s->flags);
1640 rfcomm_send_fcoff(s, 0);
1641 }
1642 break;
1643
1644 case RFCOMM_FCON:
1645 if (cr) {
1646 clear_bit(RFCOMM_TX_THROTTLED, &s->flags);
1647 rfcomm_send_fcon(s, 0);
1648 }
1649 break;
1650
1651 case RFCOMM_TEST:
1652 if (cr)
1653 rfcomm_send_test(s, 0, skb->data, skb->len);
1654 break;
1655
1656 case RFCOMM_NSC:
1657 break;
1658
1659 default:
1660 BT_ERR("Unknown control type 0x%02x", type);
1661 rfcomm_send_nsc(s, cr, type);
1662 break;
1663 }
1664 return 0;
1665}
1666
1667static int rfcomm_recv_data(struct rfcomm_session *s, u8 dlci, int pf, struct sk_buff *skb)
1668{
1669 struct rfcomm_dlc *d;
1670
1671 BT_DBG("session %p state %ld dlci %d pf %d", s, s->state, dlci, pf);
1672
1673 d = rfcomm_dlc_get(s, dlci);
1674 if (!d) {
1675 rfcomm_send_dm(s, dlci);
1676 goto drop;
1677 }
1678
1679 if (pf && d->cfc) {
1680 u8 credits = *(u8 *) skb->data; skb_pull(skb, 1);
1681
1682 d->tx_credits += credits;
1683 if (d->tx_credits)
1684 clear_bit(RFCOMM_TX_THROTTLED, &d->flags);
1685 }
1686
1687 if (skb->len && d->state == BT_CONNECTED) {
1688 rfcomm_dlc_lock(d);
1689 d->rx_credits--;
1690 d->data_ready(d, skb);
1691 rfcomm_dlc_unlock(d);
1692 return 0;
1693 }
1694
1695drop:
1696 kfree_skb(skb);
1697 return 0;
1698}
1699
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001700static struct rfcomm_session *rfcomm_recv_frame(struct rfcomm_session *s,
1701 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 struct rfcomm_hdr *hdr = (void *) skb->data;
1704 u8 type, dlci, fcs;
1705
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001706 if (!s) {
1707 /* no session, so free socket data */
1708 kfree_skb(skb);
1709 return s;
1710 }
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 dlci = __get_dlci(hdr->addr);
1713 type = __get_type(hdr->ctrl);
1714
1715 /* Trim FCS */
1716 skb->len--; skb->tail--;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001717 fcs = *(u8 *)skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 if (__check_fcs(skb->data, type, fcs)) {
1720 BT_ERR("bad checksum in packet");
1721 kfree_skb(skb);
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001722 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
1724
1725 if (__test_ea(hdr->len))
1726 skb_pull(skb, 3);
1727 else
1728 skb_pull(skb, 4);
1729
1730 switch (type) {
1731 case RFCOMM_SABM:
1732 if (__test_pf(hdr->ctrl))
1733 rfcomm_recv_sabm(s, dlci);
1734 break;
1735
1736 case RFCOMM_DISC:
1737 if (__test_pf(hdr->ctrl))
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001738 s = rfcomm_recv_disc(s, dlci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 break;
1740
1741 case RFCOMM_UA:
1742 if (__test_pf(hdr->ctrl))
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001743 s = rfcomm_recv_ua(s, dlci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 break;
1745
1746 case RFCOMM_DM:
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001747 s = rfcomm_recv_dm(s, dlci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
1749
1750 case RFCOMM_UIH:
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001751 if (dlci) {
1752 rfcomm_recv_data(s, dlci, __test_pf(hdr->ctrl), skb);
1753 return s;
1754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 rfcomm_recv_mcc(s, skb);
1756 break;
1757
1758 default:
Andrei Emeltchenko5017d8d2010-09-08 16:26:53 +03001759 BT_ERR("Unknown packet type 0x%02x", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 break;
1761 }
1762 kfree_skb(skb);
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001763 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766/* ---- Connection and data processing ---- */
1767
1768static void rfcomm_process_connect(struct rfcomm_session *s)
1769{
Geliang Tang7eb74042015-12-18 23:33:25 +08001770 struct rfcomm_dlc *d, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 BT_DBG("session %p state %ld", s, s->state);
1773
Geliang Tang7eb74042015-12-18 23:33:25 +08001774 list_for_each_entry_safe(d, n, &s->dlcs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (d->state == BT_CONFIG) {
1776 d->mtu = s->mtu;
Marcel Holtmann9f2c8a02009-01-15 21:58:40 +01001777 if (rfcomm_check_security(d)) {
Marcel Holtmann8c1b2352009-01-15 21:58:04 +01001778 rfcomm_send_pn(s, 1, d);
1779 } else {
Marcel Holtmann77db1982008-07-14 20:13:45 +02001780 set_bit(RFCOMM_AUTH_PENDING, &d->flags);
1781 rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +01001782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784 }
1785}
1786
1787/* Send data queued for the DLC.
1788 * Return number of frames left in the queue.
1789 */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001790static int rfcomm_process_tx(struct rfcomm_dlc *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 struct sk_buff *skb;
1793 int err;
1794
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001795 BT_DBG("dlc %p state %ld cfc %d rx_credits %d tx_credits %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 d, d->state, d->cfc, d->rx_credits, d->tx_credits);
1797
1798 /* Send pending MSC */
1799 if (test_and_clear_bit(RFCOMM_MSC_PENDING, &d->flags))
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001800 rfcomm_send_msc(d->session, 1, d->dlci, d->v24_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 if (d->cfc) {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001803 /* CFC enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 * Give them some credits */
1805 if (!test_bit(RFCOMM_RX_THROTTLED, &d->flags) &&
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001806 d->rx_credits <= (d->cfc >> 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 rfcomm_send_credits(d->session, d->addr, d->cfc - d->rx_credits);
1808 d->rx_credits = d->cfc;
1809 }
1810 } else {
1811 /* CFC disabled.
1812 * Give ourselves some credits */
1813 d->tx_credits = 5;
1814 }
1815
1816 if (test_bit(RFCOMM_TX_THROTTLED, &d->flags))
1817 return skb_queue_len(&d->tx_queue);
1818
1819 while (d->tx_credits && (skb = skb_dequeue(&d->tx_queue))) {
Gustavo F. Padovan54365382011-12-20 16:30:44 -02001820 err = rfcomm_send_frame(d->session, skb->data, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (err < 0) {
1822 skb_queue_head(&d->tx_queue, skb);
1823 break;
1824 }
1825 kfree_skb(skb);
1826 d->tx_credits--;
1827 }
1828
1829 if (d->cfc && !d->tx_credits) {
1830 /* We're out of TX credits.
1831 * Set TX_THROTTLED flag to avoid unnesary wakeups by dlc_send. */
1832 set_bit(RFCOMM_TX_THROTTLED, &d->flags);
1833 }
1834
1835 return skb_queue_len(&d->tx_queue);
1836}
1837
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001838static void rfcomm_process_dlcs(struct rfcomm_session *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
Geliang Tang7eb74042015-12-18 23:33:25 +08001840 struct rfcomm_dlc *d, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 BT_DBG("session %p state %ld", s, s->state);
1843
Geliang Tang7eb74042015-12-18 23:33:25 +08001844 list_for_each_entry_safe(d, n, &s->dlcs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (test_bit(RFCOMM_TIMED_OUT, &d->flags)) {
1846 __rfcomm_dlc_close(d, ETIMEDOUT);
1847 continue;
1848 }
1849
Szymon Jancdb544672011-09-26 14:19:47 +02001850 if (test_bit(RFCOMM_ENC_DROP, &d->flags)) {
1851 __rfcomm_dlc_close(d, ECONNREFUSED);
1852 continue;
1853 }
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (test_and_clear_bit(RFCOMM_AUTH_ACCEPT, &d->flags)) {
1856 rfcomm_dlc_clear_timer(d);
Marcel Holtmann77db1982008-07-14 20:13:45 +02001857 if (d->out) {
1858 rfcomm_send_pn(s, 1, d);
1859 rfcomm_dlc_set_timer(d, RFCOMM_CONN_TIMEOUT);
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001860 } else {
1861 if (d->defer_setup) {
1862 set_bit(RFCOMM_DEFER_SETUP, &d->flags);
1863 rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
Marcel Holtmann8bf47942009-02-16 02:59:49 +01001864
1865 rfcomm_dlc_lock(d);
1866 d->state = BT_CONNECT2;
1867 d->state_change(d, 0);
1868 rfcomm_dlc_unlock(d);
Marcel Holtmannbb23c0a2009-01-15 21:56:48 +01001869 } else
1870 rfcomm_dlc_accept(d);
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 continue;
1873 } else if (test_and_clear_bit(RFCOMM_AUTH_REJECT, &d->flags)) {
1874 rfcomm_dlc_clear_timer(d);
Marcel Holtmann77db1982008-07-14 20:13:45 +02001875 if (!d->out)
1876 rfcomm_send_dm(s, d->dlci);
1877 else
1878 d->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 __rfcomm_dlc_close(d, ECONNREFUSED);
1880 continue;
1881 }
1882
Jaikumar Ganesh6e1031a2009-02-02 18:03:57 -08001883 if (test_bit(RFCOMM_SEC_PENDING, &d->flags))
1884 continue;
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (test_bit(RFCOMM_TX_THROTTLED, &s->flags))
1887 continue;
1888
1889 if ((d->state == BT_CONNECTED || d->state == BT_DISCONN) &&
Marcel Holtmann77db1982008-07-14 20:13:45 +02001890 d->mscex == RFCOMM_MSCEX_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 rfcomm_process_tx(d);
1892 }
1893}
1894
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001895static struct rfcomm_session *rfcomm_process_rx(struct rfcomm_session *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
1897 struct socket *sock = s->sock;
1898 struct sock *sk = sock->sk;
1899 struct sk_buff *skb;
1900
1901 BT_DBG("session %p state %ld qlen %d", s, s->state, skb_queue_len(&sk->sk_receive_queue));
1902
1903 /* Get data directly from socket receive queue without copying it. */
1904 while ((skb = skb_dequeue(&sk->sk_receive_queue))) {
1905 skb_orphan(skb);
Vignesh Raman32333ed2014-07-22 19:24:25 +05301906 if (!skb_linearize(skb)) {
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001907 s = rfcomm_recv_frame(s, skb);
Vignesh Raman32333ed2014-07-22 19:24:25 +05301908 if (!s)
1909 break;
1910 } else {
Mat Martineau44935722011-07-22 14:53:58 -07001911 kfree_skb(skb);
Vignesh Raman32333ed2014-07-22 19:24:25 +05301912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914
Dean Jenkins08c30ac2013-02-28 14:21:56 +00001915 if (s && (sk->sk_state == BT_CLOSED))
1916 s = rfcomm_session_close(s, sk->sk_err);
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001917
1918 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919}
1920
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001921static void rfcomm_accept_connection(struct rfcomm_session *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 struct socket *sock = s->sock, *nsock;
1924 int err;
1925
1926 /* Fast check for a new connection.
1927 * Avoids unnesesary socket allocations. */
1928 if (list_empty(&bt_sk(sock->sk)->accept_q))
1929 return;
1930
1931 BT_DBG("session %p", s);
1932
Marcel Holtmann48db9ca2007-05-05 00:36:06 +02001933 err = kernel_accept(sock, &nsock, O_NONBLOCK);
1934 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return;
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 /* Set our callbacks */
1938 nsock->sk->sk_data_ready = rfcomm_l2data_ready;
1939 nsock->sk->sk_state_change = rfcomm_l2state_change;
1940
1941 s = rfcomm_session_add(nsock, BT_OPEN);
1942 if (s) {
Marcel Holtmann98bcd082006-07-14 11:42:12 +02001943 /* We should adjust MTU on incoming sessions.
1944 * L2CAP MTU minus UIH header and FCS. */
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -03001945 s->mtu = min(l2cap_pi(nsock->sk)->chan->omtu,
1946 l2cap_pi(nsock->sk)->chan->imtu) - 5;
Marcel Holtmann98bcd082006-07-14 11:42:12 +02001947
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +03001948 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 } else
1950 sock_release(nsock);
1951}
1952
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001953static struct rfcomm_session *rfcomm_check_connection(struct rfcomm_session *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
1955 struct sock *sk = s->sock->sk;
1956
1957 BT_DBG("%p state %ld", s, s->state);
1958
Andrei Emeltchenko285b4e92010-12-01 16:58:23 +02001959 switch (sk->sk_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 case BT_CONNECTED:
1961 s->state = BT_CONNECT;
1962
1963 /* We can adjust MTU on outgoing sessions.
1964 * L2CAP MTU minus UIH header and FCS. */
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -03001965 s->mtu = min(l2cap_pi(sk)->chan->omtu, l2cap_pi(sk)->chan->imtu) - 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 rfcomm_send_sabm(s, 0);
1968 break;
1969
1970 case BT_CLOSED:
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001971 s = rfcomm_session_close(s, sk->sk_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 break;
1973 }
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001974 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001977static void rfcomm_process_sessions(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Geliang Tang7eb74042015-12-18 23:33:25 +08001979 struct rfcomm_session *s, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 rfcomm_lock();
1982
Geliang Tang7eb74042015-12-18 23:33:25 +08001983 list_for_each_entry_safe(s, n, &session_list, list) {
Luiz Augusto von Dentz9e726b12009-07-15 13:50:58 -03001984 if (test_and_clear_bit(RFCOMM_TIMED_OUT, &s->flags)) {
1985 s->state = BT_DISCONN;
1986 rfcomm_send_disc(s, 0);
1987 continue;
1988 }
1989
Peter Hurley4339c252014-02-09 20:59:11 -05001990 switch (s->state) {
1991 case BT_LISTEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 rfcomm_accept_connection(s);
1993 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 case BT_BOUND:
Dean Jenkins8ff52f72013-02-28 14:21:55 +00001996 s = rfcomm_check_connection(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 break;
1998
1999 default:
Dean Jenkins8ff52f72013-02-28 14:21:55 +00002000 s = rfcomm_process_rx(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 break;
2002 }
2003
Dean Jenkins8ff52f72013-02-28 14:21:55 +00002004 if (s)
2005 rfcomm_process_dlcs(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
2008 rfcomm_unlock();
2009}
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011static int rfcomm_add_listener(bdaddr_t *ba)
2012{
2013 struct sockaddr_l2 addr;
2014 struct socket *sock;
2015 struct sock *sk;
2016 struct rfcomm_session *s;
2017 int err = 0;
2018
2019 /* Create socket */
2020 err = rfcomm_l2sock_create(&sock);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002021 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 BT_ERR("Create socket failed %d", err);
2023 return err;
2024 }
2025
2026 /* Bind socket */
2027 bacpy(&addr.l2_bdaddr, ba);
2028 addr.l2_family = AF_BLUETOOTH;
Marcel Holtmann72e4a6b2014-12-20 18:00:41 +01002029 addr.l2_psm = cpu_to_le16(L2CAP_PSM_RFCOMM);
Marcel Holtmann37e62f52009-02-17 21:49:33 +01002030 addr.l2_cid = 0;
Seung-Woo Kimc507f132013-11-05 16:02:24 +09002031 addr.l2_bdaddr_type = BDADDR_BREDR;
Marcel Holtmann48db9ca2007-05-05 00:36:06 +02002032 err = kernel_bind(sock, (struct sockaddr *) &addr, sizeof(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (err < 0) {
2034 BT_ERR("Bind failed %d", err);
2035 goto failed;
2036 }
2037
2038 /* Set L2CAP options */
2039 sk = sock->sk;
2040 lock_sock(sk);
Gustavo F. Padovan0c1bc5c2011-04-13 17:20:49 -03002041 l2cap_pi(sk)->chan->imtu = l2cap_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 release_sock(sk);
2043
2044 /* Start listening on the socket */
Marcel Holtmann48db9ca2007-05-05 00:36:06 +02002045 err = kernel_listen(sock, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (err) {
2047 BT_ERR("Listen failed %d", err);
2048 goto failed;
2049 }
2050
2051 /* Add listening session */
2052 s = rfcomm_session_add(sock, BT_LISTEN);
Wei Yongjun0227c7b2013-03-20 20:23:37 +08002053 if (!s) {
2054 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 goto failed;
Wei Yongjun0227c7b2013-03-20 20:23:37 +08002056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return 0;
2059failed:
2060 sock_release(sock);
2061 return err;
2062}
2063
2064static void rfcomm_kill_listener(void)
2065{
Geliang Tang7eb74042015-12-18 23:33:25 +08002066 struct rfcomm_session *s, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 BT_DBG("");
2069
Geliang Tang7eb74042015-12-18 23:33:25 +08002070 list_for_each_entry_safe(s, n, &session_list, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 rfcomm_session_del(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
2074static int rfcomm_run(void *unused)
2075{
Peter Zijlstraeedf7e42014-10-29 16:17:12 +01002076 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 BT_DBG("");
2078
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002079 set_user_nice(current, -10);
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 rfcomm_add_listener(BDADDR_ANY);
2082
Peter Zijlstraeedf7e42014-10-29 16:17:12 +01002083 add_wait_queue(&rfcomm_wq, &wait);
2084 while (!kthread_should_stop()) {
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002085
2086 /* Process stuff */
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002087 rfcomm_process_sessions();
Peter Hurleye5842cd2011-07-24 00:10:35 -04002088
Peter Zijlstraeedf7e42014-10-29 16:17:12 +01002089 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002090 }
Peter Zijlstraeedf7e42014-10-29 16:17:12 +01002091 remove_wait_queue(&rfcomm_wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 rfcomm_kill_listener();
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return 0;
2096}
2097
Marcel Holtmann8c1b2352009-01-15 21:58:04 +01002098static void rfcomm_security_cfm(struct hci_conn *conn, u8 status, u8 encrypt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
2100 struct rfcomm_session *s;
Geliang Tang7eb74042015-12-18 23:33:25 +08002101 struct rfcomm_dlc *d, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 BT_DBG("conn %p status 0x%02x encrypt 0x%02x", conn, status, encrypt);
2104
2105 s = rfcomm_session_get(&conn->hdev->bdaddr, &conn->dst);
2106 if (!s)
2107 return;
2108
Geliang Tang7eb74042015-12-18 23:33:25 +08002109 list_for_each_entry_safe(d, n, &s->dlcs, list) {
Marcel Holtmann8c84b832009-01-16 08:17:51 +01002110 if (test_and_clear_bit(RFCOMM_SEC_PENDING, &d->flags)) {
2111 rfcomm_dlc_clear_timer(d);
2112 if (status || encrypt == 0x00) {
Szymon Jancdb544672011-09-26 14:19:47 +02002113 set_bit(RFCOMM_ENC_DROP, &d->flags);
Marcel Holtmann8c84b832009-01-16 08:17:51 +01002114 continue;
2115 }
2116 }
2117
2118 if (d->state == BT_CONNECTED && !status && encrypt == 0x00) {
2119 if (d->sec_level == BT_SECURITY_MEDIUM) {
2120 set_bit(RFCOMM_SEC_PENDING, &d->flags);
2121 rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
2122 continue;
Marcel Holtmann2c068e02014-01-15 22:37:41 -08002123 } else if (d->sec_level == BT_SECURITY_HIGH ||
2124 d->sec_level == BT_SECURITY_FIPS) {
Szymon Jancdb544672011-09-26 14:19:47 +02002125 set_bit(RFCOMM_ENC_DROP, &d->flags);
Marcel Holtmann8c84b832009-01-16 08:17:51 +01002126 continue;
2127 }
Marcel Holtmann9719f8a2008-07-14 20:13:45 +02002128 }
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (!test_and_clear_bit(RFCOMM_AUTH_PENDING, &d->flags))
2131 continue;
2132
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +02002133 if (!status && hci_conn_check_secure(conn, d->sec_level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 set_bit(RFCOMM_AUTH_ACCEPT, &d->flags);
2135 else
2136 set_bit(RFCOMM_AUTH_REJECT, &d->flags);
2137 }
2138
Andrei Emeltchenko534c92f2010-10-01 12:05:11 +03002139 rfcomm_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
2142static struct hci_cb rfcomm_cb = {
2143 .name = "RFCOMM",
Marcel Holtmann8c1b2352009-01-15 21:58:04 +01002144 .security_cfm = rfcomm_security_cfm
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145};
2146
Marcel Holtmannaef7d972010-03-21 05:27:45 +01002147static int rfcomm_dlc_debugfs_show(struct seq_file *f, void *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 struct rfcomm_session *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 rfcomm_lock();
2152
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002153 list_for_each_entry(s, &session_list, list) {
Marcel Holtmann24bc10c2013-10-13 09:49:54 -07002154 struct l2cap_chan *chan = l2cap_pi(s->sock->sk)->chan;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002155 struct rfcomm_dlc *d;
2156 list_for_each_entry(d, &s->dlcs, list) {
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +03002157 seq_printf(f, "%pMR %pMR %ld %d %d %d %d\n",
Marcel Holtmann24bc10c2013-10-13 09:49:54 -07002158 &chan->src, &chan->dst,
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +03002159 d->state, d->dlci, d->mtu,
2160 d->rx_credits, d->tx_credits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 rfcomm_unlock();
Marcel Holtmannbe9d1222005-11-08 09:57:38 -08002165
Marcel Holtmannaef7d972010-03-21 05:27:45 +01002166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167}
2168
Marcel Holtmannaef7d972010-03-21 05:27:45 +01002169static int rfcomm_dlc_debugfs_open(struct inode *inode, struct file *file)
2170{
2171 return single_open(file, rfcomm_dlc_debugfs_show, inode->i_private);
2172}
2173
2174static const struct file_operations rfcomm_dlc_debugfs_fops = {
2175 .open = rfcomm_dlc_debugfs_open,
2176 .read = seq_read,
2177 .llseek = seq_lseek,
2178 .release = single_release,
2179};
2180
2181static struct dentry *rfcomm_dlc_debugfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183/* ---- Initialization ---- */
2184static int __init rfcomm_init(void)
2185{
Marcel Holtmann52d18342009-08-22 14:49:36 -07002186 int err;
Dave Youngaf0d3b12009-08-03 04:26:16 +00002187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 hci_register_cb(&rfcomm_cb);
2189
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002190 rfcomm_thread = kthread_run(rfcomm_run, NULL, "krfcommd");
2191 if (IS_ERR(rfcomm_thread)) {
Marcel Holtmann52d18342009-08-22 14:49:36 -07002192 err = PTR_ERR(rfcomm_thread);
2193 goto unregister;
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Marcel Holtmann52d18342009-08-22 14:49:36 -07002196 err = rfcomm_init_ttys();
2197 if (err < 0)
2198 goto stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Marcel Holtmann52d18342009-08-22 14:49:36 -07002200 err = rfcomm_init_sockets();
2201 if (err < 0)
2202 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Marcel Holtmannbe9d1222005-11-08 09:57:38 -08002204 BT_INFO("RFCOMM ver %s", VERSION);
2205
Marcel Holtmann1120e4b2013-10-17 17:24:16 -07002206 if (IS_ERR_OR_NULL(bt_debugfs))
2207 return 0;
2208
2209 rfcomm_dlc_debugfs = debugfs_create_file("rfcomm_dlc", 0444,
2210 bt_debugfs, NULL,
2211 &rfcomm_dlc_debugfs_fops);
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return 0;
Dave Youngaf0d3b12009-08-03 04:26:16 +00002214
Marcel Holtmann52d18342009-08-22 14:49:36 -07002215cleanup:
Dave Youngaf0d3b12009-08-03 04:26:16 +00002216 rfcomm_cleanup_ttys();
Marcel Holtmann52d18342009-08-22 14:49:36 -07002217
2218stop:
Dave Youngaf0d3b12009-08-03 04:26:16 +00002219 kthread_stop(rfcomm_thread);
Marcel Holtmann52d18342009-08-22 14:49:36 -07002220
2221unregister:
Dave Youngaf0d3b12009-08-03 04:26:16 +00002222 hci_unregister_cb(&rfcomm_cb);
2223
Marcel Holtmann52d18342009-08-22 14:49:36 -07002224 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225}
2226
2227static void __exit rfcomm_exit(void)
2228{
Marcel Holtmannaef7d972010-03-21 05:27:45 +01002229 debugfs_remove(rfcomm_dlc_debugfs);
Marcel Holtmannbe9d1222005-11-08 09:57:38 -08002230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 hci_unregister_cb(&rfcomm_cb);
2232
Marcel Holtmanna524ecc2007-10-20 21:37:20 +02002233 kthread_stop(rfcomm_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 rfcomm_cleanup_ttys();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 rfcomm_cleanup_sockets();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
2240module_init(rfcomm_init);
2241module_exit(rfcomm_exit);
2242
Marcel Holtmann7c2660b2006-07-03 10:02:51 +02002243module_param(disable_cfc, bool, 0644);
2244MODULE_PARM_DESC(disable_cfc, "Disable credit based flow control");
2245
Marcel Holtmann98bcd082006-07-14 11:42:12 +02002246module_param(channel_mtu, int, 0644);
2247MODULE_PARM_DESC(channel_mtu, "Default MTU for the RFCOMM channel");
2248
Marcel Holtmann56f3a402006-02-13 11:39:57 +01002249module_param(l2cap_mtu, uint, 0644);
2250MODULE_PARM_DESC(l2cap_mtu, "Default MTU for the L2CAP connection");
2251
Marcel Holtmanneae38ee2009-10-05 12:23:48 +02002252module_param(l2cap_ertm, bool, 0644);
2253MODULE_PARM_DESC(l2cap_ertm, "Use L2CAP ERTM mode for connection");
2254
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002255MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256MODULE_DESCRIPTION("Bluetooth RFCOMM ver " VERSION);
2257MODULE_VERSION(VERSION);
2258MODULE_LICENSE("GPL");
2259MODULE_ALIAS("bt-proto-3");