core.c 50.3 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13
   RFCOMM implementation for Linux Bluetooth stack (BlueZ).
   Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com>
   Copyright (C) 2002 Marcel Holtmann <marcel@holtmann.org>

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
14 15 16
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
L
Linus Torvalds 已提交
17 18
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

19 20
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28
   SOFTWARE IS DISCLAIMED.
*/

/*
 * Bluetooth RFCOMM core.
 */

#include <linux/module.h>
29
#include <linux/debugfs.h>
30
#include <linux/kthread.h>
L
Linus Torvalds 已提交
31 32 33 34 35 36 37
#include <asm/unaligned.h>

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
#include <net/bluetooth/l2cap.h>
#include <net/bluetooth/rfcomm.h>

38
#define VERSION "1.11"
39

40 41
static bool disable_cfc;
static bool l2cap_ertm;
42
static int channel_mtu = -1;
43 44
static unsigned int l2cap_mtu = RFCOMM_MAX_L2CAP_MTU;

L
Linus Torvalds 已提交
45 46
static struct task_struct *rfcomm_thread;

A
Arjan van de Ven 已提交
47 48 49
static DEFINE_MUTEX(rfcomm_mutex);
#define rfcomm_lock()	mutex_lock(&rfcomm_mutex)
#define rfcomm_unlock()	mutex_unlock(&rfcomm_mutex)
L
Linus Torvalds 已提交
50 51 52 53


static LIST_HEAD(session_list);

54
static int rfcomm_send_frame(struct rfcomm_session *s, u8 *data, int len);
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63 64 65 66
static int rfcomm_send_sabm(struct rfcomm_session *s, u8 dlci);
static int rfcomm_send_disc(struct rfcomm_session *s, u8 dlci);
static int rfcomm_queue_disc(struct rfcomm_dlc *d);
static int rfcomm_send_nsc(struct rfcomm_session *s, int cr, u8 type);
static int rfcomm_send_pn(struct rfcomm_session *s, int cr, struct rfcomm_dlc *d);
static int rfcomm_send_msc(struct rfcomm_session *s, int cr, u8 dlci, u8 v24_sig);
static int rfcomm_send_test(struct rfcomm_session *s, int cr, u8 *pattern, int len);
static int rfcomm_send_credits(struct rfcomm_session *s, u8 addr, u8 credits);
static void rfcomm_make_uih(struct sk_buff *skb, u8 addr);

static void rfcomm_process_connect(struct rfcomm_session *s);

67 68 69 70
static struct rfcomm_session *rfcomm_session_create(bdaddr_t *src,
							bdaddr_t *dst,
							u8 sec_level,
							int *err);
L
Linus Torvalds 已提交
71
static struct rfcomm_session *rfcomm_session_get(bdaddr_t *src, bdaddr_t *dst);
72
static struct rfcomm_session *rfcomm_session_del(struct rfcomm_session *s);
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80

/* ---- RFCOMM frame parsing macros ---- */
#define __get_dlci(b)     ((b & 0xfc) >> 2)
#define __get_channel(b)  ((b & 0xf8) >> 3)
#define __get_dir(b)      ((b & 0x04) >> 2)
#define __get_type(b)     ((b & 0xef))

#define __test_ea(b)      ((b & 0x01))
S
Szymon Janc 已提交
81
#define __test_cr(b)      (!!(b & 0x02))
82
#define __test_pf(b)      (!!(b & 0x10))
L
Linus Torvalds 已提交
83

84
#define __session_dir(s)  ((s)->initiator ? 0x00 : 0x01)
L
Linus Torvalds 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

#define __addr(cr, dlci)       (((dlci & 0x3f) << 2) | (cr << 1) | 0x01)
#define __ctrl(type, pf)       (((type & 0xef) | (pf << 4)))
#define __dlci(dir, chn)       (((chn & 0x1f) << 1) | dir)
#define __srv_channel(dlci)    (dlci >> 1)
#define __dir(dlci)            (dlci & 0x01)

#define __len8(len)       (((len) << 1) | 1)
#define __len16(len)      ((len) << 1)

/* MCC macros */
#define __mcc_type(cr, type)   (((type << 2) | (cr << 1) | 0x01))
#define __get_mcc_type(b) ((b & 0xfc) >> 2)
#define __get_mcc_len(b)  ((b & 0xfe) >> 1)

/* RPN macros */
101
#define __rpn_line_settings(data, stop, parity)  ((data & 0x3) | ((stop & 0x1) << 2) | ((parity & 0x7) << 3))
L
Linus Torvalds 已提交
102 103
#define __get_rpn_data_bits(line) ((line) & 0x3)
#define __get_rpn_stop_bits(line) (((line) >> 2) & 0x1)
104
#define __get_rpn_parity(line)    (((line) >> 3) & 0x7)
L
Linus Torvalds 已提交
105

106 107
static DECLARE_WAIT_QUEUE_HEAD(rfcomm_wq);

108
static void rfcomm_schedule(void)
L
Linus Torvalds 已提交
109
{
110
	wake_up_all(&rfcomm_wq);
L
Linus Torvalds 已提交
111 112 113 114
}

/* ---- RFCOMM FCS computation ---- */

115
/* reversed, 8-bit, poly=0x07 */
116
static unsigned char rfcomm_crc_table[256] = {
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
	0x00, 0x91, 0xe3, 0x72, 0x07, 0x96, 0xe4, 0x75,
	0x0e, 0x9f, 0xed, 0x7c, 0x09, 0x98, 0xea, 0x7b,
	0x1c, 0x8d, 0xff, 0x6e, 0x1b, 0x8a, 0xf8, 0x69,
	0x12, 0x83, 0xf1, 0x60, 0x15, 0x84, 0xf6, 0x67,

	0x38, 0xa9, 0xdb, 0x4a, 0x3f, 0xae, 0xdc, 0x4d,
	0x36, 0xa7, 0xd5, 0x44, 0x31, 0xa0, 0xd2, 0x43,
	0x24, 0xb5, 0xc7, 0x56, 0x23, 0xb2, 0xc0, 0x51,
	0x2a, 0xbb, 0xc9, 0x58, 0x2d, 0xbc, 0xce, 0x5f,

	0x70, 0xe1, 0x93, 0x02, 0x77, 0xe6, 0x94, 0x05,
	0x7e, 0xef, 0x9d, 0x0c, 0x79, 0xe8, 0x9a, 0x0b,
	0x6c, 0xfd, 0x8f, 0x1e, 0x6b, 0xfa, 0x88, 0x19,
	0x62, 0xf3, 0x81, 0x10, 0x65, 0xf4, 0x86, 0x17,

	0x48, 0xd9, 0xab, 0x3a, 0x4f, 0xde, 0xac, 0x3d,
	0x46, 0xd7, 0xa5, 0x34, 0x41, 0xd0, 0xa2, 0x33,
	0x54, 0xc5, 0xb7, 0x26, 0x53, 0xc2, 0xb0, 0x21,
	0x5a, 0xcb, 0xb9, 0x28, 0x5d, 0xcc, 0xbe, 0x2f,

	0xe0, 0x71, 0x03, 0x92, 0xe7, 0x76, 0x04, 0x95,
	0xee, 0x7f, 0x0d, 0x9c, 0xe9, 0x78, 0x0a, 0x9b,
	0xfc, 0x6d, 0x1f, 0x8e, 0xfb, 0x6a, 0x18, 0x89,
	0xf2, 0x63, 0x11, 0x80, 0xf5, 0x64, 0x16, 0x87,

	0xd8, 0x49, 0x3b, 0xaa, 0xdf, 0x4e, 0x3c, 0xad,
	0xd6, 0x47, 0x35, 0xa4, 0xd1, 0x40, 0x32, 0xa3,
	0xc4, 0x55, 0x27, 0xb6, 0xc3, 0x52, 0x20, 0xb1,
	0xca, 0x5b, 0x29, 0xb8, 0xcd, 0x5c, 0x2e, 0xbf,

	0x90, 0x01, 0x73, 0xe2, 0x97, 0x06, 0x74, 0xe5,
	0x9e, 0x0f, 0x7d, 0xec, 0x99, 0x08, 0x7a, 0xeb,
	0x8c, 0x1d, 0x6f, 0xfe, 0x8b, 0x1a, 0x68, 0xf9,
	0x82, 0x13, 0x61, 0xf0, 0x85, 0x14, 0x66, 0xf7,

	0xa8, 0x39, 0x4b, 0xda, 0xaf, 0x3e, 0x4c, 0xdd,
	0xa6, 0x37, 0x45, 0xd4, 0xa1, 0x30, 0x42, 0xd3,
	0xb4, 0x25, 0x57, 0xc6, 0xb3, 0x22, 0x50, 0xc1,
	0xba, 0x2b, 0x59, 0xc8, 0xbd, 0x2c, 0x5e, 0xcf
};

L
Linus Torvalds 已提交
158 159 160
/* CRC on 2 bytes */
#define __crc(data) (rfcomm_crc_table[rfcomm_crc_table[0xff ^ data[0]] ^ data[1]])

161
/* FCS on 2 bytes */
L
Linus Torvalds 已提交
162 163
static inline u8 __fcs(u8 *data)
{
E
Eric Dumazet 已提交
164
	return 0xff - __crc(data);
L
Linus Torvalds 已提交
165 166
}

167
/* FCS on 3 bytes */
L
Linus Torvalds 已提交
168 169
static inline u8 __fcs2(u8 *data)
{
E
Eric Dumazet 已提交
170
	return 0xff - rfcomm_crc_table[__crc(data) ^ data[2]];
L
Linus Torvalds 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
}

/* Check FCS */
static inline int __check_fcs(u8 *data, int type, u8 fcs)
{
	u8 f = __crc(data);

	if (type != RFCOMM_UIH)
		f = rfcomm_crc_table[f ^ data[2]];

	return rfcomm_crc_table[f ^ fcs] != 0xcf;
}

/* ---- L2CAP callbacks ---- */
static void rfcomm_l2state_change(struct sock *sk)
{
	BT_DBG("%p state %d", sk, sk->sk_state);
188
	rfcomm_schedule();
L
Linus Torvalds 已提交
189 190
}

191
static void rfcomm_l2data_ready(struct sock *sk)
L
Linus Torvalds 已提交
192
{
193
	BT_DBG("%p", sk);
194
	rfcomm_schedule();
L
Linus Torvalds 已提交
195 196 197 198 199 200 201 202
}

static int rfcomm_l2sock_create(struct socket **sock)
{
	int err;

	BT_DBG("");

203
	err = sock_create_kern(&init_net, PF_BLUETOOTH, SOCK_SEQPACKET, BTPROTO_L2CAP, sock);
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211
	if (!err) {
		struct sock *sk = (*sock)->sk;
		sk->sk_data_ready   = rfcomm_l2data_ready;
		sk->sk_state_change = rfcomm_l2state_change;
	}
	return err;
}

212
static int rfcomm_check_security(struct rfcomm_dlc *d)
213 214
{
	struct sock *sk = d->session->sock->sk;
215 216
	struct l2cap_conn *conn = l2cap_pi(sk)->chan->conn;

217 218 219 220
	__u8 auth_type;

	switch (d->sec_level) {
	case BT_SECURITY_HIGH:
221
	case BT_SECURITY_FIPS:
222 223 224 225 226 227 228 229 230
		auth_type = HCI_AT_GENERAL_BONDING_MITM;
		break;
	case BT_SECURITY_MEDIUM:
		auth_type = HCI_AT_GENERAL_BONDING;
		break;
	default:
		auth_type = HCI_AT_NO_BONDING;
		break;
	}
231

232 233
	return hci_conn_security(conn->hcon, d->sec_level, auth_type,
				 d->out);
234 235
}

236 237 238 239 240 241 242
static void rfcomm_session_timeout(unsigned long arg)
{
	struct rfcomm_session *s = (void *) arg;

	BT_DBG("session %p state %ld", s, s->state);

	set_bit(RFCOMM_TIMED_OUT, &s->flags);
243
	rfcomm_schedule();
244 245 246 247 248 249
}

static void rfcomm_session_set_timer(struct rfcomm_session *s, long timeout)
{
	BT_DBG("session %p state %ld timeout %ld", s, s->state, timeout);

250
	mod_timer(&s->timer, jiffies + timeout);
251 252 253 254 255 256
}

static void rfcomm_session_clear_timer(struct rfcomm_session *s)
{
	BT_DBG("session %p state %ld", s, s->state);

257
	del_timer_sync(&s->timer);
258 259
}

L
Linus Torvalds 已提交
260 261 262 263 264 265 266 267 268
/* ---- RFCOMM DLCs ---- */
static void rfcomm_dlc_timeout(unsigned long arg)
{
	struct rfcomm_dlc *d = (void *) arg;

	BT_DBG("dlc %p state %ld", d, d->state);

	set_bit(RFCOMM_TIMED_OUT, &d->flags);
	rfcomm_dlc_put(d);
269
	rfcomm_schedule();
L
Linus Torvalds 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283
}

static void rfcomm_dlc_set_timer(struct rfcomm_dlc *d, long timeout)
{
	BT_DBG("dlc %p state %ld timeout %ld", d, d->state, timeout);

	if (!mod_timer(&d->timer, jiffies + timeout))
		rfcomm_dlc_hold(d);
}

static void rfcomm_dlc_clear_timer(struct rfcomm_dlc *d)
{
	BT_DBG("dlc %p state %ld", d, d->state);

284
	if (del_timer(&d->timer))
L
Linus Torvalds 已提交
285 286 287 288 289 290 291 292 293 294
		rfcomm_dlc_put(d);
}

static void rfcomm_dlc_clear_state(struct rfcomm_dlc *d)
{
	BT_DBG("%p", d);

	d->state      = BT_OPEN;
	d->flags      = 0;
	d->mscex      = 0;
295
	d->sec_level  = BT_SECURITY_LOW;
L
Linus Torvalds 已提交
296 297 298 299 300 301 302
	d->mtu        = RFCOMM_DEFAULT_MTU;
	d->v24_sig    = RFCOMM_V24_RTC | RFCOMM_V24_RTR | RFCOMM_V24_DV;

	d->cfc        = RFCOMM_CFC_DISABLED;
	d->rx_credits = RFCOMM_DEFAULT_CREDITS;
}

A
Al Viro 已提交
303
struct rfcomm_dlc *rfcomm_dlc_alloc(gfp_t prio)
L
Linus Torvalds 已提交
304
{
305 306
	struct rfcomm_dlc *d = kzalloc(sizeof(*d), prio);

L
Linus Torvalds 已提交
307 308 309
	if (!d)
		return NULL;

310
	setup_timer(&d->timer, rfcomm_dlc_timeout, (unsigned long)d);
L
Linus Torvalds 已提交
311 312

	skb_queue_head_init(&d->tx_queue);
313
	mutex_init(&d->lock);
L
Linus Torvalds 已提交
314 315 316
	atomic_set(&d->refcnt, 1);

	rfcomm_dlc_clear_state(d);
317

L
Linus Torvalds 已提交
318
	BT_DBG("%p", d);
319

L
Linus Torvalds 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
	return d;
}

void rfcomm_dlc_free(struct rfcomm_dlc *d)
{
	BT_DBG("%p", d);

	skb_queue_purge(&d->tx_queue);
	kfree(d);
}

static void rfcomm_dlc_link(struct rfcomm_session *s, struct rfcomm_dlc *d)
{
	BT_DBG("dlc %p session %p", d, s);

335
	rfcomm_session_clear_timer(s);
L
Linus Torvalds 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
	rfcomm_dlc_hold(d);
	list_add(&d->list, &s->dlcs);
	d->session = s;
}

static void rfcomm_dlc_unlink(struct rfcomm_dlc *d)
{
	struct rfcomm_session *s = d->session;

	BT_DBG("dlc %p refcnt %d session %p", d, atomic_read(&d->refcnt), s);

	list_del(&d->list);
	d->session = NULL;
	rfcomm_dlc_put(d);

351 352
	if (list_empty(&s->dlcs))
		rfcomm_session_set_timer(s, RFCOMM_IDLE_TIMEOUT);
L
Linus Torvalds 已提交
353 354 355 356 357 358
}

static struct rfcomm_dlc *rfcomm_dlc_get(struct rfcomm_session *s, u8 dlci)
{
	struct rfcomm_dlc *d;

359
	list_for_each_entry(d, &s->dlcs, list)
L
Linus Torvalds 已提交
360 361
		if (d->dlci == dlci)
			return d;
362

L
Linus Torvalds 已提交
363 364 365
	return NULL;
}

366 367 368 369 370
static int rfcomm_check_channel(u8 channel)
{
	return channel < 1 || channel > 30;
}

L
Linus Torvalds 已提交
371 372 373 374 375 376
static int __rfcomm_dlc_open(struct rfcomm_dlc *d, bdaddr_t *src, bdaddr_t *dst, u8 channel)
{
	struct rfcomm_session *s;
	int err = 0;
	u8 dlci;

377 378
	BT_DBG("dlc %p state %ld %pMR -> %pMR channel %d",
	       d, d->state, src, dst, channel);
L
Linus Torvalds 已提交
379

380
	if (rfcomm_check_channel(channel))
L
Linus Torvalds 已提交
381 382 383 384 385 386 387
		return -EINVAL;

	if (d->state != BT_OPEN && d->state != BT_CLOSED)
		return 0;

	s = rfcomm_session_get(src, dst);
	if (!s) {
388
		s = rfcomm_session_create(src, dst, d->sec_level, &err);
L
Linus Torvalds 已提交
389 390 391 392
		if (!s)
			return err;
	}

393
	dlci = __dlci(__session_dir(s), channel);
L
Linus Torvalds 已提交
394 395 396 397 398 399 400 401 402 403 404

	/* Check if DLCI already exists */
	if (rfcomm_dlc_get(s, dlci))
		return -EBUSY;

	rfcomm_dlc_clear_state(d);

	d->dlci     = dlci;
	d->addr     = __addr(s->initiator, dlci);
	d->priority = 7;

405
	d->state = BT_CONFIG;
L
Linus Torvalds 已提交
406 407
	rfcomm_dlc_link(s, d);

408 409
	d->out = 1;

L
Linus Torvalds 已提交
410 411 412
	d->mtu = s->mtu;
	d->cfc = (s->cfc == RFCOMM_CFC_UNKNOWN) ? 0 : s->cfc;

413
	if (s->state == BT_CONNECTED) {
414
		if (rfcomm_check_security(d))
415
			rfcomm_send_pn(s, 1, d);
416 417
		else
			set_bit(RFCOMM_AUTH_PENDING, &d->flags);
418 419
	}

L
Linus Torvalds 已提交
420
	rfcomm_dlc_set_timer(d, RFCOMM_CONN_TIMEOUT);
421

L
Linus Torvalds 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
	return 0;
}

int rfcomm_dlc_open(struct rfcomm_dlc *d, bdaddr_t *src, bdaddr_t *dst, u8 channel)
{
	int r;

	rfcomm_lock();

	r = __rfcomm_dlc_open(d, src, dst, channel);

	rfcomm_unlock();
	return r;
}

437 438 439 440 441 442 443 444 445 446 447 448 449 450
static void __rfcomm_dlc_disconn(struct rfcomm_dlc *d)
{
	struct rfcomm_session *s = d->session;

	d->state = BT_DISCONN;
	if (skb_queue_empty(&d->tx_queue)) {
		rfcomm_send_disc(s, d->dlci);
		rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT);
	} else {
		rfcomm_queue_disc(d);
		rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT * 2);
	}
}

L
Linus Torvalds 已提交
451 452 453 454 455 456 457 458 459 460 461
static int __rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
{
	struct rfcomm_session *s = d->session;
	if (!s)
		return 0;

	BT_DBG("dlc %p state %ld dlci %d err %d session %p",
			d, d->state, d->dlci, err, s);

	switch (d->state) {
	case BT_CONNECT:
462
	case BT_CONFIG:
463 464
	case BT_OPEN:
	case BT_CONNECT2:
465 466
		if (test_and_clear_bit(RFCOMM_DEFER_SETUP, &d->flags)) {
			set_bit(RFCOMM_AUTH_REJECT, &d->flags);
467
			rfcomm_schedule();
468
			return 0;
469
		}
470 471 472 473
	}

	switch (d->state) {
	case BT_CONNECT:
474
	case BT_CONNECTED:
475
		__rfcomm_dlc_disconn(d);
L
Linus Torvalds 已提交
476 477
		break;

478 479 480 481 482 483 484 485 486
	case BT_CONFIG:
		if (s->state != BT_BOUND) {
			__rfcomm_dlc_disconn(d);
			break;
		}
		/* if closing a dlc in a session that hasn't been started,
		 * just close and unlink the dlc
		 */

L
Linus Torvalds 已提交
487 488 489 490 491
	default:
		rfcomm_dlc_clear_timer(d);

		rfcomm_dlc_lock(d);
		d->state = BT_CLOSED;
492
		d->state_change(d, err);
493
		rfcomm_dlc_unlock(d);
L
Linus Torvalds 已提交
494 495 496 497 498 499 500 501 502 503

		skb_queue_purge(&d->tx_queue);
		rfcomm_dlc_unlink(d);
	}

	return 0;
}

int rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
{
504 505 506 507 508
	int r = 0;
	struct rfcomm_dlc *d_list;
	struct rfcomm_session *s, *s_list;

	BT_DBG("dlc %p state %ld dlci %d err %d", d, d->state, d->dlci, err);
L
Linus Torvalds 已提交
509 510 511

	rfcomm_lock();

512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
	s = d->session;
	if (!s)
		goto no_session;

	/* after waiting on the mutex check the session still exists
	 * then check the dlc still exists
	 */
	list_for_each_entry(s_list, &session_list, list) {
		if (s_list == s) {
			list_for_each_entry(d_list, &s->dlcs, list) {
				if (d_list == d) {
					r = __rfcomm_dlc_close(d, err);
					break;
				}
			}
			break;
		}
	}
L
Linus Torvalds 已提交
530

531
no_session:
L
Linus Torvalds 已提交
532 533 534 535
	rfcomm_unlock();
	return r;
}

536 537 538 539 540 541 542 543 544 545 546 547
struct rfcomm_dlc *rfcomm_dlc_exists(bdaddr_t *src, bdaddr_t *dst, u8 channel)
{
	struct rfcomm_session *s;
	struct rfcomm_dlc *dlc = NULL;
	u8 dlci;

	if (rfcomm_check_channel(channel))
		return ERR_PTR(-EINVAL);

	rfcomm_lock();
	s = rfcomm_session_get(src, dst);
	if (s) {
548
		dlci = __dlci(__session_dir(s), channel);
549 550 551 552 553 554
		dlc = rfcomm_dlc_get(s, dlci);
	}
	rfcomm_unlock();
	return dlc;
}

L
Linus Torvalds 已提交
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
int rfcomm_dlc_send(struct rfcomm_dlc *d, struct sk_buff *skb)
{
	int len = skb->len;

	if (d->state != BT_CONNECTED)
		return -ENOTCONN;

	BT_DBG("dlc %p mtu %d len %d", d, d->mtu, len);

	if (len > d->mtu)
		return -EINVAL;

	rfcomm_make_uih(skb, d->addr);
	skb_queue_tail(&d->tx_queue, skb);

	if (!test_bit(RFCOMM_TX_THROTTLED, &d->flags))
571
		rfcomm_schedule();
L
Linus Torvalds 已提交
572 573 574
	return len;
}

575 576 577 578 579 580 581 582 583 584 585 586 587 588
void rfcomm_dlc_send_noerror(struct rfcomm_dlc *d, struct sk_buff *skb)
{
	int len = skb->len;

	BT_DBG("dlc %p mtu %d len %d", d, d->mtu, len);

	rfcomm_make_uih(skb, d->addr);
	skb_queue_tail(&d->tx_queue, skb);

	if (d->state == BT_CONNECTED &&
	    !test_bit(RFCOMM_TX_THROTTLED, &d->flags))
		rfcomm_schedule();
}

H
Harvey Harrison 已提交
589
void __rfcomm_dlc_throttle(struct rfcomm_dlc *d)
L
Linus Torvalds 已提交
590 591 592 593 594 595 596
{
	BT_DBG("dlc %p state %ld", d, d->state);

	if (!d->cfc) {
		d->v24_sig |= RFCOMM_V24_FC;
		set_bit(RFCOMM_MSC_PENDING, &d->flags);
	}
597
	rfcomm_schedule();
L
Linus Torvalds 已提交
598 599
}

H
Harvey Harrison 已提交
600
void __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d)
L
Linus Torvalds 已提交
601 602 603 604 605 606 607
{
	BT_DBG("dlc %p state %ld", d, d->state);

	if (!d->cfc) {
		d->v24_sig &= ~RFCOMM_V24_FC;
		set_bit(RFCOMM_MSC_PENDING, &d->flags);
	}
608
	rfcomm_schedule();
L
Linus Torvalds 已提交
609 610
}

611
/*
L
Linus Torvalds 已提交
612 613 614 615 616 617
   Set/get modem status functions use _local_ status i.e. what we report
   to the other side.
   Remote status is provided by dlc->modem_status() callback.
 */
int rfcomm_dlc_set_modem_status(struct rfcomm_dlc *d, u8 v24_sig)
{
618
	BT_DBG("dlc %p state %ld v24_sig 0x%x",
L
Linus Torvalds 已提交
619 620 621 622 623 624
			d, d->state, v24_sig);

	if (test_bit(RFCOMM_RX_THROTTLED, &d->flags))
		v24_sig |= RFCOMM_V24_FC;
	else
		v24_sig &= ~RFCOMM_V24_FC;
625

L
Linus Torvalds 已提交
626 627 628
	d->v24_sig = v24_sig;

	if (!test_and_set_bit(RFCOMM_MSC_PENDING, &d->flags))
629
		rfcomm_schedule();
L
Linus Torvalds 已提交
630 631 632 633 634 635

	return 0;
}

int rfcomm_dlc_get_modem_status(struct rfcomm_dlc *d, u8 *v24_sig)
{
636
	BT_DBG("dlc %p state %ld v24_sig 0x%x",
L
Linus Torvalds 已提交
637 638 639 640 641 642 643 644 645
			d, d->state, d->v24_sig);

	*v24_sig = d->v24_sig;
	return 0;
}

/* ---- RFCOMM sessions ---- */
static struct rfcomm_session *rfcomm_session_add(struct socket *sock, int state)
{
646 647
	struct rfcomm_session *s = kzalloc(sizeof(*s), GFP_KERNEL);

L
Linus Torvalds 已提交
648 649 650 651 652
	if (!s)
		return NULL;

	BT_DBG("session %p sock %p", s, sock);

653 654
	setup_timer(&s->timer, rfcomm_session_timeout, (unsigned long) s);

L
Linus Torvalds 已提交
655 656 657 658 659
	INIT_LIST_HEAD(&s->dlcs);
	s->state = state;
	s->sock  = sock;

	s->mtu = RFCOMM_DEFAULT_MTU;
660
	s->cfc = disable_cfc ? RFCOMM_CFC_DISABLED : RFCOMM_CFC_UNKNOWN;
L
Linus Torvalds 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674

	/* Do not increment module usage count for listening sessions.
	 * Otherwise we won't be able to unload the module. */
	if (state != BT_LISTEN)
		if (!try_module_get(THIS_MODULE)) {
			kfree(s);
			return NULL;
		}

	list_add(&s->list, &session_list);

	return s;
}

675
static struct rfcomm_session *rfcomm_session_del(struct rfcomm_session *s)
L
Linus Torvalds 已提交
676 677 678 679 680 681 682
{
	int state = s->state;

	BT_DBG("session %p state %ld", s, s->state);

	list_del(&s->list);

683
	rfcomm_session_clear_timer(s);
L
Linus Torvalds 已提交
684 685 686 687 688
	sock_release(s->sock);
	kfree(s);

	if (state != BT_LISTEN)
		module_put(THIS_MODULE);
689 690

	return NULL;
L
Linus Torvalds 已提交
691 692 693 694
}

static struct rfcomm_session *rfcomm_session_get(bdaddr_t *src, bdaddr_t *dst)
{
G
Geliang Tang 已提交
695
	struct rfcomm_session *s, *n;
696
	struct l2cap_chan *chan;
G
Geliang Tang 已提交
697
	list_for_each_entry_safe(s, n, &session_list, list) {
698
		chan = l2cap_pi(s->sock->sk)->chan;
L
Linus Torvalds 已提交
699

700 701
		if ((!bacmp(src, BDADDR_ANY) || !bacmp(&chan->src, src)) &&
		    !bacmp(&chan->dst, dst))
L
Linus Torvalds 已提交
702 703 704 705 706
			return s;
	}
	return NULL;
}

707 708
static struct rfcomm_session *rfcomm_session_close(struct rfcomm_session *s,
						   int err)
L
Linus Torvalds 已提交
709
{
G
Geliang Tang 已提交
710
	struct rfcomm_dlc *d, *n;
L
Linus Torvalds 已提交
711 712 713

	s->state = BT_CLOSED;

714 715
	BT_DBG("session %p state %ld err %d", s, s->state, err);

L
Linus Torvalds 已提交
716
	/* Close all dlcs */
G
Geliang Tang 已提交
717
	list_for_each_entry_safe(d, n, &s->dlcs, list) {
L
Linus Torvalds 已提交
718 719 720 721
		d->state = BT_CLOSED;
		__rfcomm_dlc_close(d, err);
	}

722
	rfcomm_session_clear_timer(s);
723
	return rfcomm_session_del(s);
L
Linus Torvalds 已提交
724 725
}

726 727 728 729
static struct rfcomm_session *rfcomm_session_create(bdaddr_t *src,
							bdaddr_t *dst,
							u8 sec_level,
							int *err)
L
Linus Torvalds 已提交
730 731 732 733 734 735
{
	struct rfcomm_session *s = NULL;
	struct sockaddr_l2 addr;
	struct socket *sock;
	struct sock *sk;

736
	BT_DBG("%pMR -> %pMR", src, dst);
L
Linus Torvalds 已提交
737 738 739 740 741 742 743 744

	*err = rfcomm_l2sock_create(&sock);
	if (*err < 0)
		return NULL;

	bacpy(&addr.l2_bdaddr, src);
	addr.l2_family = AF_BLUETOOTH;
	addr.l2_psm    = 0;
745
	addr.l2_cid    = 0;
746
	addr.l2_bdaddr_type = BDADDR_BREDR;
747
	*err = kernel_bind(sock, (struct sockaddr *) &addr, sizeof(addr));
L
Linus Torvalds 已提交
748 749 750 751 752 753
	if (*err < 0)
		goto failed;

	/* Set L2CAP options */
	sk = sock->sk;
	lock_sock(sk);
754
	l2cap_pi(sk)->chan->imtu = l2cap_mtu;
755
	l2cap_pi(sk)->chan->sec_level = sec_level;
756
	if (l2cap_ertm)
757
		l2cap_pi(sk)->chan->mode = L2CAP_MODE_ERTM;
L
Linus Torvalds 已提交
758 759 760 761 762 763 764 765 766 767 768 769
	release_sock(sk);

	s = rfcomm_session_add(sock, BT_BOUND);
	if (!s) {
		*err = -ENOMEM;
		goto failed;
	}

	s->initiator = 1;

	bacpy(&addr.l2_bdaddr, dst);
	addr.l2_family = AF_BLUETOOTH;
770
	addr.l2_psm    = cpu_to_le16(L2CAP_PSM_RFCOMM);
771
	addr.l2_cid    = 0;
772
	addr.l2_bdaddr_type = BDADDR_BREDR;
773
	*err = kernel_connect(sock, (struct sockaddr *) &addr, sizeof(addr), O_NONBLOCK);
774
	if (*err == 0 || *err == -EINPROGRESS)
L
Linus Torvalds 已提交
775 776
		return s;

777
	return rfcomm_session_del(s);
L
Linus Torvalds 已提交
778 779 780 781 782 783 784 785

failed:
	sock_release(sock);
	return NULL;
}

void rfcomm_session_getaddr(struct rfcomm_session *s, bdaddr_t *src, bdaddr_t *dst)
{
786
	struct l2cap_chan *chan = l2cap_pi(s->sock->sk)->chan;
L
Linus Torvalds 已提交
787
	if (src)
788
		bacpy(src, &chan->src);
L
Linus Torvalds 已提交
789
	if (dst)
790
		bacpy(dst, &chan->dst);
L
Linus Torvalds 已提交
791 792 793
}

/* ---- RFCOMM frame sending ---- */
794
static int rfcomm_send_frame(struct rfcomm_session *s, u8 *data, int len)
L
Linus Torvalds 已提交
795 796 797 798
{
	struct kvec iv = { data, len };
	struct msghdr msg;

799
	BT_DBG("session %p len %d", s, len);
L
Linus Torvalds 已提交
800 801 802

	memset(&msg, 0, sizeof(msg));

803
	return kernel_sendmsg(s->sock, &msg, &iv, 1, len);
L
Linus Torvalds 已提交
804 805
}

806 807 808 809
static int rfcomm_send_cmd(struct rfcomm_session *s, struct rfcomm_cmd *cmd)
{
	BT_DBG("%p cmd %u", s, cmd->ctrl);

810
	return rfcomm_send_frame(s, (void *) cmd, sizeof(*cmd));
811 812
}

L
Linus Torvalds 已提交
813 814 815 816 817 818 819 820 821 822 823
static int rfcomm_send_sabm(struct rfcomm_session *s, u8 dlci)
{
	struct rfcomm_cmd cmd;

	BT_DBG("%p dlci %d", s, dlci);

	cmd.addr = __addr(s->initiator, dlci);
	cmd.ctrl = __ctrl(RFCOMM_SABM, 1);
	cmd.len  = __len8(0);
	cmd.fcs  = __fcs2((u8 *) &cmd);

824
	return rfcomm_send_cmd(s, &cmd);
L
Linus Torvalds 已提交
825 826 827 828 829 830 831 832 833 834 835 836 837
}

static int rfcomm_send_ua(struct rfcomm_session *s, u8 dlci)
{
	struct rfcomm_cmd cmd;

	BT_DBG("%p dlci %d", s, dlci);

	cmd.addr = __addr(!s->initiator, dlci);
	cmd.ctrl = __ctrl(RFCOMM_UA, 1);
	cmd.len  = __len8(0);
	cmd.fcs  = __fcs2((u8 *) &cmd);

838
	return rfcomm_send_cmd(s, &cmd);
L
Linus Torvalds 已提交
839 840 841 842 843 844 845 846 847 848 849 850 851
}

static int rfcomm_send_disc(struct rfcomm_session *s, u8 dlci)
{
	struct rfcomm_cmd cmd;

	BT_DBG("%p dlci %d", s, dlci);

	cmd.addr = __addr(s->initiator, dlci);
	cmd.ctrl = __ctrl(RFCOMM_DISC, 1);
	cmd.len  = __len8(0);
	cmd.fcs  = __fcs2((u8 *) &cmd);

852
	return rfcomm_send_cmd(s, &cmd);
L
Linus Torvalds 已提交
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
}

static int rfcomm_queue_disc(struct rfcomm_dlc *d)
{
	struct rfcomm_cmd *cmd;
	struct sk_buff *skb;

	BT_DBG("dlc %p dlci %d", d, d->dlci);

	skb = alloc_skb(sizeof(*cmd), GFP_KERNEL);
	if (!skb)
		return -ENOMEM;

	cmd = (void *) __skb_put(skb, sizeof(*cmd));
	cmd->addr = d->addr;
	cmd->ctrl = __ctrl(RFCOMM_DISC, 1);
	cmd->len  = __len8(0);
	cmd->fcs  = __fcs2((u8 *) cmd);

	skb_queue_tail(&d->tx_queue, skb);
873
	rfcomm_schedule();
L
Linus Torvalds 已提交
874 875 876 877 878 879 880 881 882 883 884 885 886 887
	return 0;
}

static int rfcomm_send_dm(struct rfcomm_session *s, u8 dlci)
{
	struct rfcomm_cmd cmd;

	BT_DBG("%p dlci %d", s, dlci);

	cmd.addr = __addr(!s->initiator, dlci);
	cmd.ctrl = __ctrl(RFCOMM_DM, 1);
	cmd.len  = __len8(0);
	cmd.fcs  = __fcs2((u8 *) &cmd);

888
	return rfcomm_send_cmd(s, &cmd);
L
Linus Torvalds 已提交
889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
}

static int rfcomm_send_nsc(struct rfcomm_session *s, int cr, u8 type)
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d type %d", s, cr, type);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc) + 1);

	mcc = (void *) ptr; ptr += sizeof(*mcc);
S
Szymon Janc 已提交
905
	mcc->type = __mcc_type(0, RFCOMM_NSC);
L
Linus Torvalds 已提交
906 907 908 909 910 911 912
	mcc->len  = __len8(1);

	/* Type that we didn't like */
	*ptr = __mcc_type(cr, type); ptr++;

	*ptr = __fcs(buf); ptr++;

913
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
}

static int rfcomm_send_pn(struct rfcomm_session *s, int cr, struct rfcomm_dlc *d)
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	struct rfcomm_pn  *pn;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d dlci %d mtu %d", s, cr, d->dlci, d->mtu);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc) + sizeof(*pn));

	mcc = (void *) ptr; ptr += sizeof(*mcc);
	mcc->type = __mcc_type(cr, RFCOMM_PN);
	mcc->len  = __len8(sizeof(*pn));

	pn = (void *) ptr; ptr += sizeof(*pn);
	pn->dlci        = d->dlci;
	pn->priority    = d->priority;
	pn->ack_timer   = 0;
	pn->max_retrans = 0;

	if (s->cfc) {
		pn->flow_ctrl = cr ? 0xf0 : 0xe0;
		pn->credits = RFCOMM_DEFAULT_CREDITS;
	} else {
		pn->flow_ctrl = 0;
		pn->credits   = 0;
	}

948
	if (cr && channel_mtu >= 0)
949
		pn->mtu = cpu_to_le16(channel_mtu);
950
	else
951
		pn->mtu = cpu_to_le16(d->mtu);
L
Linus Torvalds 已提交
952 953 954

	*ptr = __fcs(buf); ptr++;

955
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
956 957
}

958 959
int rfcomm_send_rpn(struct rfcomm_session *s, int cr, u8 dlci,
			u8 bit_rate, u8 data_bits, u8 stop_bits,
960
			u8 parity, u8 flow_ctrl_settings,
961
			u8 xon_char, u8 xoff_char, u16 param_mask)
L
Linus Torvalds 已提交
962 963 964 965 966 967 968
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	struct rfcomm_rpn *rpn;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d dlci %d bit_r 0x%x data_b 0x%x stop_b 0x%x parity 0x%x"
969 970
			" flwc_s 0x%x xon_c 0x%x xoff_c 0x%x p_mask 0x%x",
		s, cr, dlci, bit_rate, data_bits, stop_bits, parity,
971
		flow_ctrl_settings, xon_char, xoff_char, param_mask);
L
Linus Torvalds 已提交
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc) + sizeof(*rpn));

	mcc = (void *) ptr; ptr += sizeof(*mcc);
	mcc->type = __mcc_type(cr, RFCOMM_RPN);
	mcc->len  = __len8(sizeof(*rpn));

	rpn = (void *) ptr; ptr += sizeof(*rpn);
	rpn->dlci          = __addr(1, dlci);
	rpn->bit_rate      = bit_rate;
	rpn->line_settings = __rpn_line_settings(data_bits, stop_bits, parity);
	rpn->flow_ctrl     = flow_ctrl_settings;
	rpn->xon_char      = xon_char;
	rpn->xoff_char     = xoff_char;
989
	rpn->param_mask    = cpu_to_le16(param_mask);
L
Linus Torvalds 已提交
990 991 992

	*ptr = __fcs(buf); ptr++;

993
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
}

static int rfcomm_send_rls(struct rfcomm_session *s, int cr, u8 dlci, u8 status)
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	struct rfcomm_rls *rls;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d status 0x%x", s, cr, status);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc) + sizeof(*rls));

	mcc = (void *) ptr; ptr += sizeof(*mcc);
	mcc->type = __mcc_type(cr, RFCOMM_RLS);
	mcc->len  = __len8(sizeof(*rls));

	rls = (void *) ptr; ptr += sizeof(*rls);
	rls->dlci   = __addr(1, dlci);
	rls->status = status;

	*ptr = __fcs(buf); ptr++;

1020
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
}

static int rfcomm_send_msc(struct rfcomm_session *s, int cr, u8 dlci, u8 v24_sig)
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	struct rfcomm_msc *msc;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d v24 0x%x", s, cr, v24_sig);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc) + sizeof(*msc));

	mcc = (void *) ptr; ptr += sizeof(*mcc);
	mcc->type = __mcc_type(cr, RFCOMM_MSC);
	mcc->len  = __len8(sizeof(*msc));

	msc = (void *) ptr; ptr += sizeof(*msc);
	msc->dlci    = __addr(1, dlci);
	msc->v24_sig = v24_sig | 0x01;

	*ptr = __fcs(buf); ptr++;

1047
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
}

static int rfcomm_send_fcoff(struct rfcomm_session *s, int cr)
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d", s, cr);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc));

	mcc = (void *) ptr; ptr += sizeof(*mcc);
	mcc->type = __mcc_type(cr, RFCOMM_FCOFF);
	mcc->len  = __len8(0);

	*ptr = __fcs(buf); ptr++;

1069
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
}

static int rfcomm_send_fcon(struct rfcomm_session *s, int cr)
{
	struct rfcomm_hdr *hdr;
	struct rfcomm_mcc *mcc;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p cr %d", s, cr);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = __addr(s->initiator, 0);
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);
	hdr->len  = __len8(sizeof(*mcc));

	mcc = (void *) ptr; ptr += sizeof(*mcc);
	mcc->type = __mcc_type(cr, RFCOMM_FCON);
	mcc->len  = __len8(0);

	*ptr = __fcs(buf); ptr++;

1091
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
}

static int rfcomm_send_test(struct rfcomm_session *s, int cr, u8 *pattern, int len)
{
	struct socket *sock = s->sock;
	struct kvec iv[3];
	struct msghdr msg;
	unsigned char hdr[5], crc[1];

	if (len > 125)
		return -EINVAL;

	BT_DBG("%p cr %d", s, cr);

	hdr[0] = __addr(s->initiator, 0);
	hdr[1] = __ctrl(RFCOMM_UIH, 0);
	hdr[2] = 0x01 | ((len + 2) << 1);
	hdr[3] = 0x01 | ((cr & 0x01) << 1) | (RFCOMM_TEST << 2);
	hdr[4] = 0x01 | (len << 1);

	crc[0] = __fcs(hdr);

	iv[0].iov_base = hdr;
	iv[0].iov_len  = 5;
	iv[1].iov_base = pattern;
	iv[1].iov_len  = len;
	iv[2].iov_base = crc;
	iv[2].iov_len  = 1;

	memset(&msg, 0, sizeof(msg));

	return kernel_sendmsg(sock, &msg, iv, 3, 6 + len);
}

static int rfcomm_send_credits(struct rfcomm_session *s, u8 addr, u8 credits)
{
	struct rfcomm_hdr *hdr;
	u8 buf[16], *ptr = buf;

	BT_DBG("%p addr %d credits %d", s, addr, credits);

	hdr = (void *) ptr; ptr += sizeof(*hdr);
	hdr->addr = addr;
	hdr->ctrl = __ctrl(RFCOMM_UIH, 1);
	hdr->len  = __len8(0);

	*ptr = credits; ptr++;

	*ptr = __fcs(buf); ptr++;

1142
	return rfcomm_send_frame(s, buf, ptr - buf);
L
Linus Torvalds 已提交
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
}

static void rfcomm_make_uih(struct sk_buff *skb, u8 addr)
{
	struct rfcomm_hdr *hdr;
	int len = skb->len;
	u8 *crc;

	if (len > 127) {
		hdr = (void *) skb_push(skb, 4);
1153
		put_unaligned(cpu_to_le16(__len16(len)), (__le16 *) &hdr->len);
L
Linus Torvalds 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
	} else {
		hdr = (void *) skb_push(skb, 3);
		hdr->len = __len8(len);
	}
	hdr->addr = addr;
	hdr->ctrl = __ctrl(RFCOMM_UIH, 0);

	crc = skb_put(skb, 1);
	*crc = __fcs((void *) hdr);
}

/* ---- RFCOMM frame reception ---- */
1166
static struct rfcomm_session *rfcomm_recv_ua(struct rfcomm_session *s, u8 dlci)
L
Linus Torvalds 已提交
1167 1168 1169 1170 1171 1172 1173 1174
{
	BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);

	if (dlci) {
		/* Data channel */
		struct rfcomm_dlc *d = rfcomm_dlc_get(s, dlci);
		if (!d) {
			rfcomm_send_dm(s, dlci);
1175
			return s;
L
Linus Torvalds 已提交
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
		}

		switch (d->state) {
		case BT_CONNECT:
			rfcomm_dlc_clear_timer(d);

			rfcomm_dlc_lock(d);
			d->state = BT_CONNECTED;
			d->state_change(d, 0);
			rfcomm_dlc_unlock(d);

			rfcomm_send_msc(s, 1, dlci, d->v24_sig);
			break;

		case BT_DISCONN:
			d->state = BT_CLOSED;
			__rfcomm_dlc_close(d, 0);
1193 1194 1195 1196

			if (list_empty(&s->dlcs)) {
				s->state = BT_DISCONN;
				rfcomm_send_disc(s, 0);
1197
				rfcomm_session_clear_timer(s);
1198 1199
			}

L
Linus Torvalds 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208
			break;
		}
	} else {
		/* Control channel */
		switch (s->state) {
		case BT_CONNECT:
			s->state = BT_CONNECTED;
			rfcomm_process_connect(s);
			break;
1209 1210

		case BT_DISCONN:
1211
			s = rfcomm_session_close(s, ECONNRESET);
1212
			break;
L
Linus Torvalds 已提交
1213 1214
		}
	}
1215
	return s;
L
Linus Torvalds 已提交
1216 1217
}

1218
static struct rfcomm_session *rfcomm_recv_dm(struct rfcomm_session *s, u8 dlci)
L
Linus Torvalds 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
{
	int err = 0;

	BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);

	if (dlci) {
		/* Data DLC */
		struct rfcomm_dlc *d = rfcomm_dlc_get(s, dlci);
		if (d) {
			if (d->state == BT_CONNECT || d->state == BT_CONFIG)
				err = ECONNREFUSED;
			else
				err = ECONNRESET;

			d->state = BT_CLOSED;
			__rfcomm_dlc_close(d, err);
		}
	} else {
		if (s->state == BT_CONNECT)
			err = ECONNREFUSED;
		else
			err = ECONNRESET;

1242
		s = rfcomm_session_close(s, err);
L
Linus Torvalds 已提交
1243
	}
1244
	return s;
L
Linus Torvalds 已提交
1245 1246
}

1247 1248
static struct rfcomm_session *rfcomm_recv_disc(struct rfcomm_session *s,
					       u8 dlci)
L
Linus Torvalds 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
{
	int err = 0;

	BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);

	if (dlci) {
		struct rfcomm_dlc *d = rfcomm_dlc_get(s, dlci);
		if (d) {
			rfcomm_send_ua(s, dlci);

			if (d->state == BT_CONNECT || d->state == BT_CONFIG)
				err = ECONNREFUSED;
			else
				err = ECONNRESET;

			d->state = BT_CLOSED;
			__rfcomm_dlc_close(d, err);
1266
		} else
L
Linus Torvalds 已提交
1267
			rfcomm_send_dm(s, dlci);
1268

L
Linus Torvalds 已提交
1269 1270 1271 1272 1273 1274 1275 1276
	} else {
		rfcomm_send_ua(s, 0);

		if (s->state == BT_CONNECT)
			err = ECONNREFUSED;
		else
			err = ECONNRESET;

1277
		s = rfcomm_session_close(s, err);
L
Linus Torvalds 已提交
1278
	}
1279
	return s;
L
Linus Torvalds 已提交
1280 1281
}

1282
void rfcomm_dlc_accept(struct rfcomm_dlc *d)
L
Linus Torvalds 已提交
1283
{
1284
	struct sock *sk = d->session->sock->sk;
1285
	struct l2cap_conn *conn = l2cap_pi(sk)->chan->conn;
1286

L
Linus Torvalds 已提交
1287 1288 1289 1290
	BT_DBG("dlc %p", d);

	rfcomm_send_ua(d->session, d->dlci);

1291 1292
	rfcomm_dlc_clear_timer(d);

L
Linus Torvalds 已提交
1293 1294 1295 1296 1297
	rfcomm_dlc_lock(d);
	d->state = BT_CONNECTED;
	d->state_change(d, 0);
	rfcomm_dlc_unlock(d);

1298
	if (d->role_switch)
1299
		hci_conn_switch_role(conn->hcon, 0x00);
1300

L
Linus Torvalds 已提交
1301 1302 1303
	rfcomm_send_msc(d->session, 1, d->dlci, d->v24_sig);
}

1304 1305
static void rfcomm_check_accept(struct rfcomm_dlc *d)
{
1306
	if (rfcomm_check_security(d)) {
1307 1308 1309
		if (d->defer_setup) {
			set_bit(RFCOMM_DEFER_SETUP, &d->flags);
			rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
1310 1311 1312 1313 1314

			rfcomm_dlc_lock(d);
			d->state = BT_CONNECT2;
			d->state_change(d, 0);
			rfcomm_dlc_unlock(d);
1315 1316
		} else
			rfcomm_dlc_accept(d);
1317 1318 1319
	} else {
		set_bit(RFCOMM_AUTH_PENDING, &d->flags);
		rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
1320 1321 1322
	}
}

L
Linus Torvalds 已提交
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci)
{
	struct rfcomm_dlc *d;
	u8 channel;

	BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);

	if (!dlci) {
		rfcomm_send_ua(s, 0);

		if (s->state == BT_OPEN) {
			s->state = BT_CONNECTED;
			rfcomm_process_connect(s);
		}
		return 0;
	}

	/* Check if DLC exists */
	d = rfcomm_dlc_get(s, dlci);
	if (d) {
		if (d->state == BT_OPEN) {
			/* DLC was previously opened by PN request */
1345
			rfcomm_check_accept(d);
L
Linus Torvalds 已提交
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
		}
		return 0;
	}

	/* Notify socket layer about incoming connection */
	channel = __srv_channel(dlci);
	if (rfcomm_connect_ind(s, channel, &d)) {
		d->dlci = dlci;
		d->addr = __addr(s->initiator, dlci);
		rfcomm_dlc_link(s, d);

1357
		rfcomm_check_accept(d);
L
Linus Torvalds 已提交
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
	} else {
		rfcomm_send_dm(s, dlci);
	}

	return 0;
}

static int rfcomm_apply_pn(struct rfcomm_dlc *d, int cr, struct rfcomm_pn *pn)
{
	struct rfcomm_session *s = d->session;

1369
	BT_DBG("dlc %p state %ld dlci %d mtu %d fc 0x%x credits %d",
L
Linus Torvalds 已提交
1370 1371
			d, d->state, d->dlci, pn->mtu, pn->flow_ctrl, pn->credits);

1372 1373 1374
	if ((pn->flow_ctrl == 0xf0 && s->cfc != RFCOMM_CFC_DISABLED) ||
						pn->flow_ctrl == 0xe0) {
		d->cfc = RFCOMM_CFC_ENABLED;
L
Linus Torvalds 已提交
1375 1376
		d->tx_credits = pn->credits;
	} else {
1377
		d->cfc = RFCOMM_CFC_DISABLED;
L
Linus Torvalds 已提交
1378 1379 1380
		set_bit(RFCOMM_TX_THROTTLED, &d->flags);
	}

1381 1382 1383
	if (s->cfc == RFCOMM_CFC_UNKNOWN)
		s->cfc = d->cfc;

L
Linus Torvalds 已提交
1384 1385
	d->priority = pn->priority;

1386
	d->mtu = __le16_to_cpu(pn->mtu);
1387 1388 1389

	if (cr && d->mtu > s->mtu)
		d->mtu = s->mtu;
L
Linus Torvalds 已提交
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458

	return 0;
}

static int rfcomm_recv_pn(struct rfcomm_session *s, int cr, struct sk_buff *skb)
{
	struct rfcomm_pn *pn = (void *) skb->data;
	struct rfcomm_dlc *d;
	u8 dlci = pn->dlci;

	BT_DBG("session %p state %ld dlci %d", s, s->state, dlci);

	if (!dlci)
		return 0;

	d = rfcomm_dlc_get(s, dlci);
	if (d) {
		if (cr) {
			/* PN request */
			rfcomm_apply_pn(d, cr, pn);
			rfcomm_send_pn(s, 0, d);
		} else {
			/* PN response */
			switch (d->state) {
			case BT_CONFIG:
				rfcomm_apply_pn(d, cr, pn);

				d->state = BT_CONNECT;
				rfcomm_send_sabm(s, d->dlci);
				break;
			}
		}
	} else {
		u8 channel = __srv_channel(dlci);

		if (!cr)
			return 0;

		/* PN request for non existing DLC.
		 * Assume incoming connection. */
		if (rfcomm_connect_ind(s, channel, &d)) {
			d->dlci = dlci;
			d->addr = __addr(s->initiator, dlci);
			rfcomm_dlc_link(s, d);

			rfcomm_apply_pn(d, cr, pn);

			d->state = BT_OPEN;
			rfcomm_send_pn(s, 0, d);
		} else {
			rfcomm_send_dm(s, dlci);
		}
	}
	return 0;
}

static int rfcomm_recv_rpn(struct rfcomm_session *s, int cr, int len, struct sk_buff *skb)
{
	struct rfcomm_rpn *rpn = (void *) skb->data;
	u8 dlci = __get_dlci(rpn->dlci);

	u8 bit_rate  = 0;
	u8 data_bits = 0;
	u8 stop_bits = 0;
	u8 parity    = 0;
	u8 flow_ctrl = 0;
	u8 xon_char  = 0;
	u8 xoff_char = 0;
	u16 rpn_mask = RFCOMM_RPN_PM_ALL;
1459 1460 1461 1462 1463 1464

	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",
		dlci, cr, len, rpn->bit_rate, rpn->line_settings, rpn->flow_ctrl,
		rpn->xon_char, rpn->xoff_char, rpn->param_mask);

	if (!cr)
L
Linus Torvalds 已提交
1465
		return 0;
1466

L
Linus Torvalds 已提交
1467
	if (len == 1) {
1468 1469
		/* This is a request, return default (according to ETSI TS 07.10) settings */
		bit_rate  = RFCOMM_RPN_BR_9600;
L
Linus Torvalds 已提交
1470 1471 1472 1473 1474 1475 1476 1477
		data_bits = RFCOMM_RPN_DATA_8;
		stop_bits = RFCOMM_RPN_STOP_1;
		parity    = RFCOMM_RPN_PARITY_NONE;
		flow_ctrl = RFCOMM_RPN_FLOW_NONE;
		xon_char  = RFCOMM_RPN_XON_CHAR;
		xoff_char = RFCOMM_RPN_XOFF_CHAR;
		goto rpn_out;
	}
1478 1479 1480 1481

	/* Check for sane values, ignore/accept bit_rate, 8 bits, 1 stop bit,
	 * no parity, no flow control lines, normal XON/XOFF chars */

1482
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_BITRATE)) {
L
Linus Torvalds 已提交
1483
		bit_rate = rpn->bit_rate;
1484
		if (bit_rate > RFCOMM_RPN_BR_230400) {
L
Linus Torvalds 已提交
1485
			BT_DBG("RPN bit rate mismatch 0x%x", bit_rate);
1486
			bit_rate = RFCOMM_RPN_BR_9600;
L
Linus Torvalds 已提交
1487 1488 1489
			rpn_mask ^= RFCOMM_RPN_PM_BITRATE;
		}
	}
1490

1491
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_DATA)) {
L
Linus Torvalds 已提交
1492 1493 1494 1495 1496 1497 1498
		data_bits = __get_rpn_data_bits(rpn->line_settings);
		if (data_bits != RFCOMM_RPN_DATA_8) {
			BT_DBG("RPN data bits mismatch 0x%x", data_bits);
			data_bits = RFCOMM_RPN_DATA_8;
			rpn_mask ^= RFCOMM_RPN_PM_DATA;
		}
	}
1499

1500
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_STOP)) {
L
Linus Torvalds 已提交
1501 1502 1503 1504 1505 1506 1507
		stop_bits = __get_rpn_stop_bits(rpn->line_settings);
		if (stop_bits != RFCOMM_RPN_STOP_1) {
			BT_DBG("RPN stop bits mismatch 0x%x", stop_bits);
			stop_bits = RFCOMM_RPN_STOP_1;
			rpn_mask ^= RFCOMM_RPN_PM_STOP;
		}
	}
1508

1509
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_PARITY)) {
L
Linus Torvalds 已提交
1510 1511 1512 1513 1514 1515 1516
		parity = __get_rpn_parity(rpn->line_settings);
		if (parity != RFCOMM_RPN_PARITY_NONE) {
			BT_DBG("RPN parity mismatch 0x%x", parity);
			parity = RFCOMM_RPN_PARITY_NONE;
			rpn_mask ^= RFCOMM_RPN_PM_PARITY;
		}
	}
1517

1518
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_FLOW)) {
L
Linus Torvalds 已提交
1519 1520 1521 1522 1523 1524 1525
		flow_ctrl = rpn->flow_ctrl;
		if (flow_ctrl != RFCOMM_RPN_FLOW_NONE) {
			BT_DBG("RPN flow ctrl mismatch 0x%x", flow_ctrl);
			flow_ctrl = RFCOMM_RPN_FLOW_NONE;
			rpn_mask ^= RFCOMM_RPN_PM_FLOW;
		}
	}
1526

1527
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_XON)) {
L
Linus Torvalds 已提交
1528 1529 1530 1531 1532 1533 1534
		xon_char = rpn->xon_char;
		if (xon_char != RFCOMM_RPN_XON_CHAR) {
			BT_DBG("RPN XON char mismatch 0x%x", xon_char);
			xon_char = RFCOMM_RPN_XON_CHAR;
			rpn_mask ^= RFCOMM_RPN_PM_XON;
		}
	}
1535

1536
	if (rpn->param_mask & cpu_to_le16(RFCOMM_RPN_PM_XOFF)) {
L
Linus Torvalds 已提交
1537 1538 1539 1540 1541 1542 1543 1544 1545
		xoff_char = rpn->xoff_char;
		if (xoff_char != RFCOMM_RPN_XOFF_CHAR) {
			BT_DBG("RPN XOFF char mismatch 0x%x", xoff_char);
			xoff_char = RFCOMM_RPN_XOFF_CHAR;
			rpn_mask ^= RFCOMM_RPN_PM_XOFF;
		}
	}

rpn_out:
1546 1547
	rfcomm_send_rpn(s, 0, dlci, bit_rate, data_bits, stop_bits,
			parity, flow_ctrl, xon_char, xoff_char, rpn_mask);
L
Linus Torvalds 已提交
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557

	return 0;
}

static int rfcomm_recv_rls(struct rfcomm_session *s, int cr, struct sk_buff *skb)
{
	struct rfcomm_rls *rls = (void *) skb->data;
	u8 dlci = __get_dlci(rls->dlci);

	BT_DBG("dlci %d cr %d status 0x%x", dlci, cr, rls->status);
1558

L
Linus Torvalds 已提交
1559 1560 1561
	if (!cr)
		return 0;

1562 1563 1564
	/* We should probably do something with this information here. But
	 * for now it's sufficient just to reply -- Bluetooth 1.1 says it's
	 * mandatory to recognise and respond to RLS */
L
Linus Torvalds 已提交
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579

	rfcomm_send_rls(s, 0, dlci, rls->status);

	return 0;
}

static int rfcomm_recv_msc(struct rfcomm_session *s, int cr, struct sk_buff *skb)
{
	struct rfcomm_msc *msc = (void *) skb->data;
	struct rfcomm_dlc *d;
	u8 dlci = __get_dlci(msc->dlci);

	BT_DBG("dlci %d cr %d v24 0x%x", dlci, cr, msc->v24_sig);

	d = rfcomm_dlc_get(s, dlci);
1580
	if (!d)
L
Linus Torvalds 已提交
1581 1582 1583 1584 1585 1586 1587
		return 0;

	if (cr) {
		if (msc->v24_sig & RFCOMM_V24_FC && !d->cfc)
			set_bit(RFCOMM_TX_THROTTLED, &d->flags);
		else
			clear_bit(RFCOMM_TX_THROTTLED, &d->flags);
1588

L
Linus Torvalds 已提交
1589
		rfcomm_dlc_lock(d);
1590 1591 1592

		d->remote_v24_sig = msc->v24_sig;

L
Linus Torvalds 已提交
1593 1594
		if (d->modem_status)
			d->modem_status(d, msc->v24_sig);
1595

L
Linus Torvalds 已提交
1596
		rfcomm_dlc_unlock(d);
1597

L
Linus Torvalds 已提交
1598 1599 1600
		rfcomm_send_msc(s, 0, dlci, msc->v24_sig);

		d->mscex |= RFCOMM_MSCEX_RX;
1601
	} else
L
Linus Torvalds 已提交
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
		d->mscex |= RFCOMM_MSCEX_TX;

	return 0;
}

static int rfcomm_recv_mcc(struct rfcomm_session *s, struct sk_buff *skb)
{
	struct rfcomm_mcc *mcc = (void *) skb->data;
	u8 type, cr, len;

	cr   = __test_cr(mcc->type);
	type = __get_mcc_type(mcc->type);
	len  = __get_mcc_len(mcc->len);

	BT_DBG("%p type 0x%x cr %d", s, type, cr);

	skb_pull(skb, 2);

	switch (type) {
	case RFCOMM_PN:
		rfcomm_recv_pn(s, cr, skb);
		break;

	case RFCOMM_RPN:
		rfcomm_recv_rpn(s, cr, len, skb);
		break;

	case RFCOMM_RLS:
		rfcomm_recv_rls(s, cr, skb);
		break;

	case RFCOMM_MSC:
		rfcomm_recv_msc(s, cr, skb);
		break;

	case RFCOMM_FCOFF:
		if (cr) {
			set_bit(RFCOMM_TX_THROTTLED, &s->flags);
			rfcomm_send_fcoff(s, 0);
		}
		break;

	case RFCOMM_FCON:
		if (cr) {
			clear_bit(RFCOMM_TX_THROTTLED, &s->flags);
			rfcomm_send_fcon(s, 0);
		}
		break;

	case RFCOMM_TEST:
		if (cr)
			rfcomm_send_test(s, 0, skb->data, skb->len);
		break;

	case RFCOMM_NSC:
		break;

	default:
		BT_ERR("Unknown control type 0x%02x", type);
		rfcomm_send_nsc(s, cr, type);
		break;
	}
	return 0;
}

static int rfcomm_recv_data(struct rfcomm_session *s, u8 dlci, int pf, struct sk_buff *skb)
{
	struct rfcomm_dlc *d;

	BT_DBG("session %p state %ld dlci %d pf %d", s, s->state, dlci, pf);

	d = rfcomm_dlc_get(s, dlci);
	if (!d) {
		rfcomm_send_dm(s, dlci);
		goto drop;
	}

	if (pf && d->cfc) {
		u8 credits = *(u8 *) skb->data; skb_pull(skb, 1);

		d->tx_credits += credits;
		if (d->tx_credits)
			clear_bit(RFCOMM_TX_THROTTLED, &d->flags);
	}

	if (skb->len && d->state == BT_CONNECTED) {
		rfcomm_dlc_lock(d);
		d->rx_credits--;
		d->data_ready(d, skb);
		rfcomm_dlc_unlock(d);
		return 0;
	}

drop:
	kfree_skb(skb);
	return 0;
}

1700 1701
static struct rfcomm_session *rfcomm_recv_frame(struct rfcomm_session *s,
						struct sk_buff *skb)
L
Linus Torvalds 已提交
1702 1703 1704 1705
{
	struct rfcomm_hdr *hdr = (void *) skb->data;
	u8 type, dlci, fcs;

1706 1707 1708 1709 1710 1711
	if (!s) {
		/* no session, so free socket data */
		kfree_skb(skb);
		return s;
	}

L
Linus Torvalds 已提交
1712 1713 1714 1715 1716
	dlci = __get_dlci(hdr->addr);
	type = __get_type(hdr->ctrl);

	/* Trim FCS */
	skb->len--; skb->tail--;
1717
	fcs = *(u8 *)skb_tail_pointer(skb);
L
Linus Torvalds 已提交
1718 1719 1720 1721

	if (__check_fcs(skb->data, type, fcs)) {
		BT_ERR("bad checksum in packet");
		kfree_skb(skb);
1722
		return s;
L
Linus Torvalds 已提交
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
	}

	if (__test_ea(hdr->len))
		skb_pull(skb, 3);
	else
		skb_pull(skb, 4);

	switch (type) {
	case RFCOMM_SABM:
		if (__test_pf(hdr->ctrl))
			rfcomm_recv_sabm(s, dlci);
		break;

	case RFCOMM_DISC:
		if (__test_pf(hdr->ctrl))
1738
			s = rfcomm_recv_disc(s, dlci);
L
Linus Torvalds 已提交
1739 1740 1741 1742
		break;

	case RFCOMM_UA:
		if (__test_pf(hdr->ctrl))
1743
			s = rfcomm_recv_ua(s, dlci);
L
Linus Torvalds 已提交
1744 1745 1746
		break;

	case RFCOMM_DM:
1747
		s = rfcomm_recv_dm(s, dlci);
L
Linus Torvalds 已提交
1748 1749 1750
		break;

	case RFCOMM_UIH:
1751 1752 1753 1754
		if (dlci) {
			rfcomm_recv_data(s, dlci, __test_pf(hdr->ctrl), skb);
			return s;
		}
L
Linus Torvalds 已提交
1755 1756 1757 1758
		rfcomm_recv_mcc(s, skb);
		break;

	default:
1759
		BT_ERR("Unknown packet type 0x%02x", type);
L
Linus Torvalds 已提交
1760 1761 1762
		break;
	}
	kfree_skb(skb);
1763
	return s;
L
Linus Torvalds 已提交
1764 1765 1766 1767 1768 1769
}

/* ---- Connection and data processing ---- */

static void rfcomm_process_connect(struct rfcomm_session *s)
{
G
Geliang Tang 已提交
1770
	struct rfcomm_dlc *d, *n;
L
Linus Torvalds 已提交
1771 1772 1773

	BT_DBG("session %p state %ld", s, s->state);

G
Geliang Tang 已提交
1774
	list_for_each_entry_safe(d, n, &s->dlcs, list) {
L
Linus Torvalds 已提交
1775 1776
		if (d->state == BT_CONFIG) {
			d->mtu = s->mtu;
1777
			if (rfcomm_check_security(d)) {
1778 1779
				rfcomm_send_pn(s, 1, d);
			} else {
1780 1781
				set_bit(RFCOMM_AUTH_PENDING, &d->flags);
				rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
1782
			}
L
Linus Torvalds 已提交
1783 1784 1785 1786 1787 1788 1789
		}
	}
}

/* Send data queued for the DLC.
 * Return number of frames left in the queue.
 */
1790
static int rfcomm_process_tx(struct rfcomm_dlc *d)
L
Linus Torvalds 已提交
1791 1792 1793 1794
{
	struct sk_buff *skb;
	int err;

1795
	BT_DBG("dlc %p state %ld cfc %d rx_credits %d tx_credits %d",
L
Linus Torvalds 已提交
1796 1797 1798 1799
			d, d->state, d->cfc, d->rx_credits, d->tx_credits);

	/* Send pending MSC */
	if (test_and_clear_bit(RFCOMM_MSC_PENDING, &d->flags))
1800
		rfcomm_send_msc(d->session, 1, d->dlci, d->v24_sig);
L
Linus Torvalds 已提交
1801 1802

	if (d->cfc) {
1803
		/* CFC enabled.
L
Linus Torvalds 已提交
1804 1805
		 * Give them some credits */
		if (!test_bit(RFCOMM_RX_THROTTLED, &d->flags) &&
1806
				d->rx_credits <= (d->cfc >> 2)) {
L
Linus Torvalds 已提交
1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819
			rfcomm_send_credits(d->session, d->addr, d->cfc - d->rx_credits);
			d->rx_credits = d->cfc;
		}
	} else {
		/* CFC disabled.
		 * Give ourselves some credits */
		d->tx_credits = 5;
	}

	if (test_bit(RFCOMM_TX_THROTTLED, &d->flags))
		return skb_queue_len(&d->tx_queue);

	while (d->tx_credits && (skb = skb_dequeue(&d->tx_queue))) {
1820
		err = rfcomm_send_frame(d->session, skb->data, skb->len);
L
Linus Torvalds 已提交
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837
		if (err < 0) {
			skb_queue_head(&d->tx_queue, skb);
			break;
		}
		kfree_skb(skb);
		d->tx_credits--;
	}

	if (d->cfc && !d->tx_credits) {
		/* We're out of TX credits.
		 * Set TX_THROTTLED flag to avoid unnesary wakeups by dlc_send. */
		set_bit(RFCOMM_TX_THROTTLED, &d->flags);
	}

	return skb_queue_len(&d->tx_queue);
}

1838
static void rfcomm_process_dlcs(struct rfcomm_session *s)
L
Linus Torvalds 已提交
1839
{
G
Geliang Tang 已提交
1840
	struct rfcomm_dlc *d, *n;
L
Linus Torvalds 已提交
1841 1842 1843

	BT_DBG("session %p state %ld", s, s->state);

G
Geliang Tang 已提交
1844
	list_for_each_entry_safe(d, n, &s->dlcs, list) {
L
Linus Torvalds 已提交
1845 1846 1847 1848 1849
		if (test_bit(RFCOMM_TIMED_OUT, &d->flags)) {
			__rfcomm_dlc_close(d, ETIMEDOUT);
			continue;
		}

1850 1851 1852 1853 1854
		if (test_bit(RFCOMM_ENC_DROP, &d->flags)) {
			__rfcomm_dlc_close(d, ECONNREFUSED);
			continue;
		}

L
Linus Torvalds 已提交
1855 1856
		if (test_and_clear_bit(RFCOMM_AUTH_ACCEPT, &d->flags)) {
			rfcomm_dlc_clear_timer(d);
1857 1858 1859
			if (d->out) {
				rfcomm_send_pn(s, 1, d);
				rfcomm_dlc_set_timer(d, RFCOMM_CONN_TIMEOUT);
1860 1861 1862 1863
			} else {
				if (d->defer_setup) {
					set_bit(RFCOMM_DEFER_SETUP, &d->flags);
					rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
1864 1865 1866 1867 1868

					rfcomm_dlc_lock(d);
					d->state = BT_CONNECT2;
					d->state_change(d, 0);
					rfcomm_dlc_unlock(d);
1869 1870 1871
				} else
					rfcomm_dlc_accept(d);
			}
L
Linus Torvalds 已提交
1872 1873 1874
			continue;
		} else if (test_and_clear_bit(RFCOMM_AUTH_REJECT, &d->flags)) {
			rfcomm_dlc_clear_timer(d);
1875 1876 1877 1878
			if (!d->out)
				rfcomm_send_dm(s, d->dlci);
			else
				d->state = BT_CLOSED;
L
Linus Torvalds 已提交
1879 1880 1881 1882
			__rfcomm_dlc_close(d, ECONNREFUSED);
			continue;
		}

1883 1884 1885
		if (test_bit(RFCOMM_SEC_PENDING, &d->flags))
			continue;

L
Linus Torvalds 已提交
1886 1887 1888 1889
		if (test_bit(RFCOMM_TX_THROTTLED, &s->flags))
			continue;

		if ((d->state == BT_CONNECTED || d->state == BT_DISCONN) &&
1890
						d->mscex == RFCOMM_MSCEX_OK)
L
Linus Torvalds 已提交
1891 1892 1893 1894
			rfcomm_process_tx(d);
	}
}

1895
static struct rfcomm_session *rfcomm_process_rx(struct rfcomm_session *s)
L
Linus Torvalds 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905
{
	struct socket *sock = s->sock;
	struct sock *sk = sock->sk;
	struct sk_buff *skb;

	BT_DBG("session %p state %ld qlen %d", s, s->state, skb_queue_len(&sk->sk_receive_queue));

	/* Get data directly from socket receive queue without copying it. */
	while ((skb = skb_dequeue(&sk->sk_receive_queue))) {
		skb_orphan(skb);
1906
		if (!skb_linearize(skb)) {
1907
			s = rfcomm_recv_frame(s, skb);
1908 1909 1910
			if (!s)
				break;
		} else {
1911
			kfree_skb(skb);
1912
		}
L
Linus Torvalds 已提交
1913 1914
	}

1915 1916
	if (s && (sk->sk_state == BT_CLOSED))
		s = rfcomm_session_close(s, sk->sk_err);
1917 1918

	return s;
L
Linus Torvalds 已提交
1919 1920
}

1921
static void rfcomm_accept_connection(struct rfcomm_session *s)
L
Linus Torvalds 已提交
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932
{
	struct socket *sock = s->sock, *nsock;
	int err;

	/* Fast check for a new connection.
	 * Avoids unnesesary socket allocations. */
	if (list_empty(&bt_sk(sock->sk)->accept_q))
		return;

	BT_DBG("session %p", s);

1933 1934
	err = kernel_accept(sock, &nsock, O_NONBLOCK);
	if (err < 0)
L
Linus Torvalds 已提交
1935 1936 1937 1938 1939 1940 1941 1942
		return;

	/* Set our callbacks */
	nsock->sk->sk_data_ready   = rfcomm_l2data_ready;
	nsock->sk->sk_state_change = rfcomm_l2state_change;

	s = rfcomm_session_add(nsock, BT_OPEN);
	if (s) {
1943 1944
		/* We should adjust MTU on incoming sessions.
		 * L2CAP MTU minus UIH header and FCS. */
1945 1946
		s->mtu = min(l2cap_pi(nsock->sk)->chan->omtu,
				l2cap_pi(nsock->sk)->chan->imtu) - 5;
1947

1948
		rfcomm_schedule();
L
Linus Torvalds 已提交
1949 1950 1951 1952
	} else
		sock_release(nsock);
}

1953
static struct rfcomm_session *rfcomm_check_connection(struct rfcomm_session *s)
L
Linus Torvalds 已提交
1954 1955 1956 1957 1958
{
	struct sock *sk = s->sock->sk;

	BT_DBG("%p state %ld", s, s->state);

1959
	switch (sk->sk_state) {
L
Linus Torvalds 已提交
1960 1961 1962 1963 1964
	case BT_CONNECTED:
		s->state = BT_CONNECT;

		/* We can adjust MTU on outgoing sessions.
		 * L2CAP MTU minus UIH header and FCS. */
1965
		s->mtu = min(l2cap_pi(sk)->chan->omtu, l2cap_pi(sk)->chan->imtu) - 5;
L
Linus Torvalds 已提交
1966 1967 1968 1969 1970

		rfcomm_send_sabm(s, 0);
		break;

	case BT_CLOSED:
1971
		s = rfcomm_session_close(s, sk->sk_err);
L
Linus Torvalds 已提交
1972 1973
		break;
	}
1974
	return s;
L
Linus Torvalds 已提交
1975 1976
}

1977
static void rfcomm_process_sessions(void)
L
Linus Torvalds 已提交
1978
{
G
Geliang Tang 已提交
1979
	struct rfcomm_session *s, *n;
L
Linus Torvalds 已提交
1980 1981 1982

	rfcomm_lock();

G
Geliang Tang 已提交
1983
	list_for_each_entry_safe(s, n, &session_list, list) {
1984 1985 1986 1987 1988 1989
		if (test_and_clear_bit(RFCOMM_TIMED_OUT, &s->flags)) {
			s->state = BT_DISCONN;
			rfcomm_send_disc(s, 0);
			continue;
		}

1990 1991
		switch (s->state) {
		case BT_LISTEN:
L
Linus Torvalds 已提交
1992 1993 1994 1995
			rfcomm_accept_connection(s);
			continue;

		case BT_BOUND:
1996
			s = rfcomm_check_connection(s);
L
Linus Torvalds 已提交
1997 1998 1999
			break;

		default:
2000
			s = rfcomm_process_rx(s);
L
Linus Torvalds 已提交
2001 2002 2003
			break;
		}

2004 2005
		if (s)
			rfcomm_process_dlcs(s);
L
Linus Torvalds 已提交
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
	}

	rfcomm_unlock();
}

static int rfcomm_add_listener(bdaddr_t *ba)
{
	struct sockaddr_l2 addr;
	struct socket *sock;
	struct sock *sk;
	struct rfcomm_session *s;
	int    err = 0;

	/* Create socket */
	err = rfcomm_l2sock_create(&sock);
2021
	if (err < 0) {
L
Linus Torvalds 已提交
2022 2023 2024 2025 2026 2027 2028
		BT_ERR("Create socket failed %d", err);
		return err;
	}

	/* Bind socket */
	bacpy(&addr.l2_bdaddr, ba);
	addr.l2_family = AF_BLUETOOTH;
2029
	addr.l2_psm    = cpu_to_le16(L2CAP_PSM_RFCOMM);
2030
	addr.l2_cid    = 0;
2031
	addr.l2_bdaddr_type = BDADDR_BREDR;
2032
	err = kernel_bind(sock, (struct sockaddr *) &addr, sizeof(addr));
L
Linus Torvalds 已提交
2033 2034 2035 2036 2037 2038 2039 2040
	if (err < 0) {
		BT_ERR("Bind failed %d", err);
		goto failed;
	}

	/* Set L2CAP options */
	sk = sock->sk;
	lock_sock(sk);
2041
	l2cap_pi(sk)->chan->imtu = l2cap_mtu;
L
Linus Torvalds 已提交
2042 2043 2044
	release_sock(sk);

	/* Start listening on the socket */
2045
	err = kernel_listen(sock, 10);
L
Linus Torvalds 已提交
2046 2047 2048 2049 2050 2051 2052
	if (err) {
		BT_ERR("Listen failed %d", err);
		goto failed;
	}

	/* Add listening session */
	s = rfcomm_session_add(sock, BT_LISTEN);
2053 2054
	if (!s) {
		err = -ENOMEM;
L
Linus Torvalds 已提交
2055
		goto failed;
2056
	}
L
Linus Torvalds 已提交
2057 2058 2059 2060 2061 2062 2063 2064 2065

	return 0;
failed:
	sock_release(sock);
	return err;
}

static void rfcomm_kill_listener(void)
{
G
Geliang Tang 已提交
2066
	struct rfcomm_session *s, *n;
L
Linus Torvalds 已提交
2067 2068 2069

	BT_DBG("");

G
Geliang Tang 已提交
2070
	list_for_each_entry_safe(s, n, &session_list, list)
L
Linus Torvalds 已提交
2071 2072 2073 2074 2075
		rfcomm_session_del(s);
}

static int rfcomm_run(void *unused)
{
2076
	DEFINE_WAIT_FUNC(wait, woken_wake_function);
2077
	BT_DBG("");
L
Linus Torvalds 已提交
2078 2079 2080 2081 2082

	set_user_nice(current, -10);

	rfcomm_add_listener(BDADDR_ANY);

2083 2084
	add_wait_queue(&rfcomm_wq, &wait);
	while (!kthread_should_stop()) {
2085 2086 2087

		/* Process stuff */
		rfcomm_process_sessions();
2088

2089
		wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
2090
	}
2091
	remove_wait_queue(&rfcomm_wq, &wait);
L
Linus Torvalds 已提交
2092 2093 2094 2095 2096 2097

	rfcomm_kill_listener();

	return 0;
}

2098
static void rfcomm_security_cfm(struct hci_conn *conn, u8 status, u8 encrypt)
L
Linus Torvalds 已提交
2099 2100
{
	struct rfcomm_session *s;
G
Geliang Tang 已提交
2101
	struct rfcomm_dlc *d, *n;
L
Linus Torvalds 已提交
2102 2103 2104 2105 2106 2107 2108

	BT_DBG("conn %p status 0x%02x encrypt 0x%02x", conn, status, encrypt);

	s = rfcomm_session_get(&conn->hdev->bdaddr, &conn->dst);
	if (!s)
		return;

G
Geliang Tang 已提交
2109
	list_for_each_entry_safe(d, n, &s->dlcs, list) {
2110 2111 2112
		if (test_and_clear_bit(RFCOMM_SEC_PENDING, &d->flags)) {
			rfcomm_dlc_clear_timer(d);
			if (status || encrypt == 0x00) {
2113
				set_bit(RFCOMM_ENC_DROP, &d->flags);
2114 2115 2116 2117 2118 2119 2120 2121 2122
				continue;
			}
		}

		if (d->state == BT_CONNECTED && !status && encrypt == 0x00) {
			if (d->sec_level == BT_SECURITY_MEDIUM) {
				set_bit(RFCOMM_SEC_PENDING, &d->flags);
				rfcomm_dlc_set_timer(d, RFCOMM_AUTH_TIMEOUT);
				continue;
2123 2124
			} else if (d->sec_level == BT_SECURITY_HIGH ||
				   d->sec_level == BT_SECURITY_FIPS) {
2125
				set_bit(RFCOMM_ENC_DROP, &d->flags);
2126 2127
				continue;
			}
2128 2129
		}

L
Linus Torvalds 已提交
2130 2131 2132
		if (!test_and_clear_bit(RFCOMM_AUTH_PENDING, &d->flags))
			continue;

2133
		if (!status && hci_conn_check_secure(conn, d->sec_level))
L
Linus Torvalds 已提交
2134 2135 2136 2137 2138
			set_bit(RFCOMM_AUTH_ACCEPT, &d->flags);
		else
			set_bit(RFCOMM_AUTH_REJECT, &d->flags);
	}

2139
	rfcomm_schedule();
L
Linus Torvalds 已提交
2140 2141 2142 2143
}

static struct hci_cb rfcomm_cb = {
	.name		= "RFCOMM",
2144
	.security_cfm	= rfcomm_security_cfm
L
Linus Torvalds 已提交
2145 2146
};

2147
static int rfcomm_dlc_debugfs_show(struct seq_file *f, void *x)
L
Linus Torvalds 已提交
2148 2149 2150 2151 2152
{
	struct rfcomm_session *s;

	rfcomm_lock();

2153
	list_for_each_entry(s, &session_list, list) {
2154
		struct l2cap_chan *chan = l2cap_pi(s->sock->sk)->chan;
2155 2156
		struct rfcomm_dlc *d;
		list_for_each_entry(d, &s->dlcs, list) {
2157
			seq_printf(f, "%pMR %pMR %ld %d %d %d %d\n",
2158
				   &chan->src, &chan->dst,
2159 2160
				   d->state, d->dlci, d->mtu,
				   d->rx_credits, d->tx_credits);
L
Linus Torvalds 已提交
2161 2162 2163 2164 2165
		}
	}

	rfcomm_unlock();

2166 2167 2168 2169 2170 2171
	return 0;
}

static int rfcomm_dlc_debugfs_open(struct inode *inode, struct file *file)
{
	return single_open(file, rfcomm_dlc_debugfs_show, inode->i_private);
L
Linus Torvalds 已提交
2172 2173
}

2174 2175 2176 2177 2178 2179 2180 2181
static const struct file_operations rfcomm_dlc_debugfs_fops = {
	.open		= rfcomm_dlc_debugfs_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static struct dentry *rfcomm_dlc_debugfs;
L
Linus Torvalds 已提交
2182 2183 2184 2185

/* ---- Initialization ---- */
static int __init rfcomm_init(void)
{
2186
	int err;
D
Dave Young 已提交
2187

L
Linus Torvalds 已提交
2188 2189
	hci_register_cb(&rfcomm_cb);

2190 2191
	rfcomm_thread = kthread_run(rfcomm_run, NULL, "krfcommd");
	if (IS_ERR(rfcomm_thread)) {
2192 2193
		err = PTR_ERR(rfcomm_thread);
		goto unregister;
2194
	}
L
Linus Torvalds 已提交
2195

2196 2197 2198
	err = rfcomm_init_ttys();
	if (err < 0)
		goto stop;
L
Linus Torvalds 已提交
2199

2200 2201 2202
	err = rfcomm_init_sockets();
	if (err < 0)
		goto cleanup;
L
Linus Torvalds 已提交
2203

2204 2205
	BT_INFO("RFCOMM ver %s", VERSION);

2206 2207 2208 2209 2210 2211 2212
	if (IS_ERR_OR_NULL(bt_debugfs))
		return 0;

	rfcomm_dlc_debugfs = debugfs_create_file("rfcomm_dlc", 0444,
						 bt_debugfs, NULL,
						 &rfcomm_dlc_debugfs_fops);

L
Linus Torvalds 已提交
2213
	return 0;
D
Dave Young 已提交
2214

2215
cleanup:
D
Dave Young 已提交
2216
	rfcomm_cleanup_ttys();
2217 2218

stop:
D
Dave Young 已提交
2219
	kthread_stop(rfcomm_thread);
2220 2221

unregister:
D
Dave Young 已提交
2222 2223
	hci_unregister_cb(&rfcomm_cb);

2224
	return err;
L
Linus Torvalds 已提交
2225 2226 2227 2228
}

static void __exit rfcomm_exit(void)
{
2229
	debugfs_remove(rfcomm_dlc_debugfs);
2230

L
Linus Torvalds 已提交
2231 2232
	hci_unregister_cb(&rfcomm_cb);

2233
	kthread_stop(rfcomm_thread);
L
Linus Torvalds 已提交
2234 2235 2236 2237 2238 2239 2240 2241 2242

	rfcomm_cleanup_ttys();

	rfcomm_cleanup_sockets();
}

module_init(rfcomm_init);
module_exit(rfcomm_exit);

2243 2244 2245
module_param(disable_cfc, bool, 0644);
MODULE_PARM_DESC(disable_cfc, "Disable credit based flow control");

2246 2247 2248
module_param(channel_mtu, int, 0644);
MODULE_PARM_DESC(channel_mtu, "Default MTU for the RFCOMM channel");

2249 2250 2251
module_param(l2cap_mtu, uint, 0644);
MODULE_PARM_DESC(l2cap_mtu, "Default MTU for the L2CAP connection");

2252 2253 2254
module_param(l2cap_ertm, bool, 0644);
MODULE_PARM_DESC(l2cap_ertm, "Use L2CAP ERTM mode for connection");

2255
MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
L
Linus Torvalds 已提交
2256 2257 2258 2259
MODULE_DESCRIPTION("Bluetooth RFCOMM ver " VERSION);
MODULE_VERSION(VERSION);
MODULE_LICENSE("GPL");
MODULE_ALIAS("bt-proto-3");