l2cap_core.c 107.8 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2000-2001 Qualcomm Incorporated
4
   Copyright (C) 2009-2010 Gustavo F. Padovan <gustavo@padovan.org>
5
   Copyright (C) 2010 Google Inc.
6
   Copyright (C) 2011 ProFUSION Embedded Systems
L
Linus Torvalds 已提交
7 8 9 10 11 12 13 14 15 16 17

   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>

   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
18 19 20
   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 已提交
21 22
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

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

28
/* Bluetooth L2CAP core. */
L
Linus Torvalds 已提交
29 30 31 32

#include <linux/module.h>

#include <linux/types.h>
33
#include <linux/capability.h>
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43 44
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/poll.h>
#include <linux/fcntl.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/socket.h>
#include <linux/skbuff.h>
#include <linux/list.h>
45
#include <linux/device.h>
46 47
#include <linux/debugfs.h>
#include <linux/seq_file.h>
48
#include <linux/uaccess.h>
49
#include <linux/crc16.h>
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57
#include <net/sock.h>

#include <asm/system.h>
#include <asm/unaligned.h>

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
#include <net/bluetooth/l2cap.h>
58
#include <net/bluetooth/smp.h>
L
Linus Torvalds 已提交
59

60
bool disable_ertm;
61

62
static u32 l2cap_feat_mask = L2CAP_FEAT_FIXED_CHAN;
63
static u8 l2cap_fixed_chan[8] = { L2CAP_FC_L2CAP, };
L
Linus Torvalds 已提交
64

65 66
static LIST_HEAD(chan_list);
static DEFINE_RWLOCK(chan_list_lock);
L
Linus Torvalds 已提交
67 68 69

static struct sk_buff *l2cap_build_cmd(struct l2cap_conn *conn,
				u8 code, u8 ident, u16 dlen, void *data);
70 71
static void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len,
								void *data);
72
static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data);
73 74
static void l2cap_send_disconn_req(struct l2cap_conn *conn,
				struct l2cap_chan *chan, int err);
L
Linus Torvalds 已提交
75

76
/* ---- L2CAP channels ---- */
77

78
static struct l2cap_chan *__l2cap_get_chan_by_dcid(struct l2cap_conn *conn, u16 cid)
79
{
80
	struct l2cap_chan *c;
81

82 83 84
	list_for_each_entry(c, &conn->chan_l, list) {
		if (c->dcid == cid)
			return c;
85
	}
86
	return NULL;
87 88
}

89
static struct l2cap_chan *__l2cap_get_chan_by_scid(struct l2cap_conn *conn, u16 cid)
90
{
91
	struct l2cap_chan *c;
92

93 94 95
	list_for_each_entry(c, &conn->chan_l, list) {
		if (c->scid == cid)
			return c;
96
	}
97
	return NULL;
98 99 100 101
}

/* Find channel with given SCID.
 * Returns locked socket */
102
static struct l2cap_chan *l2cap_get_chan_by_scid(struct l2cap_conn *conn, u16 cid)
103
{
104
	struct l2cap_chan *c;
105

106
	mutex_lock(&conn->chan_lock);
107
	c = __l2cap_get_chan_by_scid(conn, cid);
108 109
	mutex_unlock(&conn->chan_lock);

110
	return c;
111 112
}

113
static struct l2cap_chan *__l2cap_get_chan_by_ident(struct l2cap_conn *conn, u8 ident)
114
{
115
	struct l2cap_chan *c;
116

117 118 119
	list_for_each_entry(c, &conn->chan_l, list) {
		if (c->ident == ident)
			return c;
120
	}
121
	return NULL;
122 123
}

124
static inline struct l2cap_chan *l2cap_get_chan_by_ident(struct l2cap_conn *conn, u8 ident)
125
{
126
	struct l2cap_chan *c;
127

128
	mutex_lock(&conn->chan_lock);
129
	c = __l2cap_get_chan_by_ident(conn, ident);
130 131
	mutex_unlock(&conn->chan_lock);

132
	return c;
133 134
}

135
static struct l2cap_chan *__l2cap_global_chan_by_addr(__le16 psm, bdaddr_t *src)
136
{
137
	struct l2cap_chan *c;
138

139 140
	list_for_each_entry(c, &chan_list, global_l) {
		if (c->sport == psm && !bacmp(&bt_sk(c->sk)->src, src))
141
			return c;
142
	}
143
	return NULL;
144 145 146 147
}

int l2cap_add_psm(struct l2cap_chan *chan, bdaddr_t *src, __le16 psm)
{
148 149
	int err;

150
	write_lock(&chan_list_lock);
151

152
	if (psm && __l2cap_global_chan_by_addr(psm, src)) {
153 154
		err = -EADDRINUSE;
		goto done;
155 156
	}

157 158 159 160 161 162 163 164 165
	if (psm) {
		chan->psm = psm;
		chan->sport = psm;
		err = 0;
	} else {
		u16 p;

		err = -EINVAL;
		for (p = 0x1001; p < 0x1100; p += 2)
166
			if (!__l2cap_global_chan_by_addr(cpu_to_le16(p), src)) {
167 168 169 170 171 172
				chan->psm   = cpu_to_le16(p);
				chan->sport = cpu_to_le16(p);
				err = 0;
				break;
			}
	}
173

174
done:
175
	write_unlock(&chan_list_lock);
176
	return err;
177 178 179 180
}

int l2cap_add_scid(struct l2cap_chan *chan,  __u16 scid)
{
181
	write_lock(&chan_list_lock);
182 183 184

	chan->scid = scid;

185
	write_unlock(&chan_list_lock);
186 187 188 189

	return 0;
}

190
static u16 l2cap_alloc_cid(struct l2cap_conn *conn)
191
{
192
	u16 cid = L2CAP_CID_DYN_START;
193

194
	for (; cid < L2CAP_CID_DYN_END; cid++) {
195
		if (!__l2cap_get_chan_by_scid(conn, cid))
196 197 198 199 200 201
			return cid;
	}

	return 0;
}

202
static void __l2cap_state_change(struct l2cap_chan *chan, int state)
203
{
204
	BT_DBG("chan %p %s -> %s", chan, state_to_string(chan->state),
205 206
						state_to_string(state));

207 208 209 210
	chan->state = state;
	chan->ops->state_change(chan->data, state);
}

211 212 213 214 215 216 217 218 219
static void l2cap_state_change(struct l2cap_chan *chan, int state)
{
	struct sock *sk = chan->sk;

	lock_sock(sk);
	__l2cap_state_change(chan, state);
	release_sock(sk);
}

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
static inline void __l2cap_chan_set_err(struct l2cap_chan *chan, int err)
{
	struct sock *sk = chan->sk;

	sk->sk_err = err;
}

static inline void l2cap_chan_set_err(struct l2cap_chan *chan, int err)
{
	struct sock *sk = chan->sk;

	lock_sock(sk);
	__l2cap_chan_set_err(chan, err);
	release_sock(sk);
}

236
static void l2cap_chan_timeout(struct work_struct *work)
237
{
238 239
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
							chan_timer.work);
240
	struct l2cap_conn *conn = chan->conn;
241 242
	int reason;

243
	BT_DBG("chan %p state %s", chan, state_to_string(chan->state));
244

245
	mutex_lock(&conn->chan_lock);
246
	l2cap_chan_lock(chan);
247

248
	if (chan->state == BT_CONNECTED || chan->state == BT_CONFIG)
249
		reason = ECONNREFUSED;
250
	else if (chan->state == BT_CONNECT &&
251 252 253 254 255
					chan->sec_level != BT_SECURITY_SDP)
		reason = ECONNREFUSED;
	else
		reason = ETIMEDOUT;

256
	l2cap_chan_close(chan, reason);
257

258
	l2cap_chan_unlock(chan);
259

260
	chan->ops->close(chan->data);
261 262
	mutex_unlock(&conn->chan_lock);

263
	l2cap_chan_put(chan);
264 265
}

266
struct l2cap_chan *l2cap_chan_create(struct sock *sk)
267 268 269 270 271 272 273
{
	struct l2cap_chan *chan;

	chan = kzalloc(sizeof(*chan), GFP_ATOMIC);
	if (!chan)
		return NULL;

274 275
	mutex_init(&chan->lock);

276 277
	chan->sk = sk;

278
	write_lock(&chan_list_lock);
279
	list_add(&chan->global_l, &chan_list);
280
	write_unlock(&chan_list_lock);
281

282
	INIT_DELAYED_WORK(&chan->chan_timer, l2cap_chan_timeout);
283

284 285
	chan->state = BT_OPEN;

286 287
	atomic_set(&chan->refcnt, 1);

288 289
	BT_DBG("sk %p chan %p", sk, chan);

290 291 292
	return chan;
}

293
void l2cap_chan_destroy(struct l2cap_chan *chan)
294
{
295
	write_lock(&chan_list_lock);
296
	list_del(&chan->global_l);
297
	write_unlock(&chan_list_lock);
298

299
	l2cap_chan_put(chan);
300 301
}

302
void __l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan)
303
{
304
	BT_DBG("conn %p, psm 0x%2.2x, dcid 0x%4.4x", conn,
305
			chan->psm, chan->dcid);
306

307
	conn->disc_reason = HCI_ERROR_REMOTE_USER_TERM;
308

309
	chan->conn = conn;
310

311 312
	switch (chan->chan_type) {
	case L2CAP_CHAN_CONN_ORIENTED:
313 314
		if (conn->hcon->type == LE_LINK) {
			/* LE connection */
315
			chan->omtu = L2CAP_LE_DEFAULT_MTU;
316 317
			chan->scid = L2CAP_CID_LE_DATA;
			chan->dcid = L2CAP_CID_LE_DATA;
318 319
		} else {
			/* Alloc CID for connection-oriented socket */
320
			chan->scid = l2cap_alloc_cid(conn);
321
			chan->omtu = L2CAP_DEFAULT_MTU;
322
		}
323 324 325
		break;

	case L2CAP_CHAN_CONN_LESS:
326
		/* Connectionless socket */
327 328
		chan->scid = L2CAP_CID_CONN_LESS;
		chan->dcid = L2CAP_CID_CONN_LESS;
329
		chan->omtu = L2CAP_DEFAULT_MTU;
330 331 332
		break;

	default:
333
		/* Raw socket can send/recv signalling messages only */
334 335
		chan->scid = L2CAP_CID_SIGNALING;
		chan->dcid = L2CAP_CID_SIGNALING;
336
		chan->omtu = L2CAP_DEFAULT_MTU;
337 338
	}

339 340 341 342 343 344 345
	chan->local_id		= L2CAP_BESTEFFORT_ID;
	chan->local_stype	= L2CAP_SERV_BESTEFFORT;
	chan->local_msdu	= L2CAP_DEFAULT_MAX_SDU_SIZE;
	chan->local_sdu_itime	= L2CAP_DEFAULT_SDU_ITIME;
	chan->local_acc_lat	= L2CAP_DEFAULT_ACC_LAT;
	chan->local_flush_to	= L2CAP_DEFAULT_FLUSH_TO;

346
	l2cap_chan_hold(chan);
347

348
	list_add(&chan->list, &conn->chan_l);
349 350 351 352 353 354
}

void l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan)
{
	mutex_lock(&conn->chan_lock);
	__l2cap_chan_add(conn, chan);
355
	mutex_unlock(&conn->chan_lock);
356 357
}

358
static void l2cap_chan_del(struct l2cap_chan *chan, int err)
359
{
360
	struct sock *sk = chan->sk;
361
	struct l2cap_conn *conn = chan->conn;
362 363
	struct sock *parent = bt_sk(sk)->parent;

364
	__clear_chan_timer(chan);
365

366
	BT_DBG("chan %p, conn %p, err %d", chan, conn, err);
367

368
	if (conn) {
369
		/* Delete from channel list */
370
		list_del(&chan->list);
371

372
		l2cap_chan_put(chan);
373

374
		chan->conn = NULL;
375 376 377
		hci_conn_put(conn->hcon);
	}

378 379
	lock_sock(sk);

380
	__l2cap_state_change(chan, BT_CLOSED);
381 382 383
	sock_set_flag(sk, SOCK_ZAPPED);

	if (err)
384
		__l2cap_chan_set_err(chan, err);
385 386 387 388 389 390

	if (parent) {
		bt_accept_unlink(sk);
		parent->sk_data_ready(parent, 0);
	} else
		sk->sk_state_change(sk);
391

392 393
	release_sock(sk);

394 395
	if (!(test_bit(CONF_OUTPUT_DONE, &chan->conf_state) &&
			test_bit(CONF_INPUT_DONE, &chan->conf_state)))
396
		return;
397

398
	skb_queue_purge(&chan->tx_q);
399

400
	if (chan->mode == L2CAP_MODE_ERTM) {
401 402
		struct srej_list *l, *tmp;

403 404 405
		__clear_retrans_timer(chan);
		__clear_monitor_timer(chan);
		__clear_ack_timer(chan);
406

407
		skb_queue_purge(&chan->srej_q);
408

409
		list_for_each_entry_safe(l, tmp, &chan->srej_l, list) {
410 411 412 413
			list_del(&l->list);
			kfree(l);
		}
	}
414 415
}

416 417 418 419 420 421 422
static void l2cap_chan_cleanup_listen(struct sock *parent)
{
	struct sock *sk;

	BT_DBG("parent %p", parent);

	/* Close not yet accepted channels */
423
	while ((sk = bt_accept_dequeue(parent, NULL))) {
424
		struct l2cap_chan *chan = l2cap_pi(sk)->chan;
425

426
		l2cap_chan_lock(chan);
427
		__clear_chan_timer(chan);
428
		l2cap_chan_close(chan, ECONNRESET);
429
		l2cap_chan_unlock(chan);
430

431
		chan->ops->close(chan->data);
432
	}
433 434
}

435
void l2cap_chan_close(struct l2cap_chan *chan, int reason)
436 437 438 439
{
	struct l2cap_conn *conn = chan->conn;
	struct sock *sk = chan->sk;

440 441
	BT_DBG("chan %p state %s sk %p", chan,
					state_to_string(chan->state), sk);
442

443
	switch (chan->state) {
444
	case BT_LISTEN:
445
		lock_sock(sk);
446
		l2cap_chan_cleanup_listen(sk);
447

448
		__l2cap_state_change(chan, BT_CLOSED);
449
		sock_set_flag(sk, SOCK_ZAPPED);
450
		release_sock(sk);
451 452 453 454
		break;

	case BT_CONNECTED:
	case BT_CONFIG:
455
		if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED &&
456
					conn->hcon->type == ACL_LINK) {
457 458
			__clear_chan_timer(chan);
			__set_chan_timer(chan, sk->sk_sndtimeo);
459 460 461 462 463 464
			l2cap_send_disconn_req(conn, chan, reason);
		} else
			l2cap_chan_del(chan, reason);
		break;

	case BT_CONNECT2:
465
		if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED &&
466 467 468 469 470 471 472 473
					conn->hcon->type == ACL_LINK) {
			struct l2cap_conn_rsp rsp;
			__u16 result;

			if (bt_sk(sk)->defer_setup)
				result = L2CAP_CR_SEC_BLOCK;
			else
				result = L2CAP_CR_BAD_PSM;
474
			l2cap_state_change(chan, BT_DISCONN);
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492

			rsp.scid   = cpu_to_le16(chan->dcid);
			rsp.dcid   = cpu_to_le16(chan->scid);
			rsp.result = cpu_to_le16(result);
			rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
			l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_RSP,
							sizeof(rsp), &rsp);
		}

		l2cap_chan_del(chan, reason);
		break;

	case BT_CONNECT:
	case BT_DISCONN:
		l2cap_chan_del(chan, reason);
		break;

	default:
493
		lock_sock(sk);
494
		sock_set_flag(sk, SOCK_ZAPPED);
495
		release_sock(sk);
496 497 498 499
		break;
	}
}

500
static inline u8 l2cap_get_auth_type(struct l2cap_chan *chan)
501
{
502
	if (chan->chan_type == L2CAP_CHAN_RAW) {
503
		switch (chan->sec_level) {
504 505 506 507 508 509 510
		case BT_SECURITY_HIGH:
			return HCI_AT_DEDICATED_BONDING_MITM;
		case BT_SECURITY_MEDIUM:
			return HCI_AT_DEDICATED_BONDING;
		default:
			return HCI_AT_NO_BONDING;
		}
511
	} else if (chan->psm == cpu_to_le16(0x0001)) {
512 513
		if (chan->sec_level == BT_SECURITY_LOW)
			chan->sec_level = BT_SECURITY_SDP;
514

515
		if (chan->sec_level == BT_SECURITY_HIGH)
516
			return HCI_AT_NO_BONDING_MITM;
517
		else
518
			return HCI_AT_NO_BONDING;
519
	} else {
520
		switch (chan->sec_level) {
521
		case BT_SECURITY_HIGH:
522
			return HCI_AT_GENERAL_BONDING_MITM;
523
		case BT_SECURITY_MEDIUM:
524
			return HCI_AT_GENERAL_BONDING;
525
		default:
526
			return HCI_AT_NO_BONDING;
527
		}
528
	}
529 530 531
}

/* Service level security */
532
int l2cap_chan_check_security(struct l2cap_chan *chan)
533
{
534
	struct l2cap_conn *conn = chan->conn;
535 536
	__u8 auth_type;

537
	auth_type = l2cap_get_auth_type(chan);
538

539
	return hci_conn_security(conn->hcon, chan->sec_level, auth_type);
540 541
}

542
static u8 l2cap_get_ident(struct l2cap_conn *conn)
543 544 545 546 547 548 549 550 551
{
	u8 id;

	/* Get next available identificator.
	 *    1 - 128 are used by kernel.
	 *  129 - 199 are reserved.
	 *  200 - 254 are used by utilities like l2ping, etc.
	 */

552
	spin_lock(&conn->lock);
553 554 555 556 557 558

	if (++conn->tx_ident > 128)
		conn->tx_ident = 1;

	id = conn->tx_ident;

559
	spin_unlock(&conn->lock);
560 561 562 563

	return id;
}

564
static void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len, void *data)
565 566
{
	struct sk_buff *skb = l2cap_build_cmd(conn, code, ident, len, data);
567
	u8 flags;
568 569 570 571

	BT_DBG("code 0x%2.2x", code);

	if (!skb)
572
		return;
573

574 575 576 577 578
	if (lmp_no_flush_capable(conn->hcon->hdev))
		flags = ACL_START_NO_FLUSH;
	else
		flags = ACL_START;

579
	bt_cb(skb)->force_active = BT_POWER_FORCE_ACTIVE_ON;
580
	skb->priority = HCI_PRIO_MAX;
581

582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
	hci_send_acl(conn->hchan, skb, flags);
}

static void l2cap_do_send(struct l2cap_chan *chan, struct sk_buff *skb)
{
	struct hci_conn *hcon = chan->conn->hcon;
	u16 flags;

	BT_DBG("chan %p, skb %p len %d priority %u", chan, skb, skb->len,
							skb->priority);

	if (!test_bit(FLAG_FLUSHABLE, &chan->flags) &&
					lmp_no_flush_capable(hcon->hdev))
		flags = ACL_START_NO_FLUSH;
	else
		flags = ACL_START;
598

599 600
	bt_cb(skb)->force_active = test_bit(FLAG_FORCE_ACTIVE, &chan->flags);
	hci_send_acl(chan->conn->hchan, skb, flags);
601 602
}

603
static inline void l2cap_send_sframe(struct l2cap_chan *chan, u32 control)
604 605 606
{
	struct sk_buff *skb;
	struct l2cap_hdr *lh;
607
	struct l2cap_conn *conn = chan->conn;
608
	int count, hlen;
609

610
	if (chan->state != BT_CONNECTED)
611 612
		return;

613 614 615 616 617
	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		hlen = L2CAP_EXT_HDR_SIZE;
	else
		hlen = L2CAP_ENH_HDR_SIZE;

618
	if (chan->fcs == L2CAP_FCS_CRC16)
619
		hlen += L2CAP_FCS_SIZE;
620

621
	BT_DBG("chan %p, control 0x%8.8x", chan, control);
622

623
	count = min_t(unsigned int, conn->mtu, hlen);
624 625

	control |= __set_sframe(chan);
626

627
	if (test_and_clear_bit(CONN_SEND_FBIT, &chan->conn_state))
628
		control |= __set_ctrl_final(chan);
629

630
	if (test_and_clear_bit(CONN_SEND_PBIT, &chan->conn_state))
631
		control |= __set_ctrl_poll(chan);
632

633 634
	skb = bt_skb_alloc(count, GFP_ATOMIC);
	if (!skb)
635
		return;
636 637

	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
638
	lh->len = cpu_to_le16(hlen - L2CAP_HDR_SIZE);
639
	lh->cid = cpu_to_le16(chan->dcid);
640 641

	__put_control(chan, control, skb_put(skb, __ctrl_size(chan)));
642

643
	if (chan->fcs == L2CAP_FCS_CRC16) {
644 645
		u16 fcs = crc16(0, (u8 *)lh, count - L2CAP_FCS_SIZE);
		put_unaligned_le16(fcs, skb_put(skb, L2CAP_FCS_SIZE));
646 647
	}

648 649
	skb->priority = HCI_PRIO_MAX;
	l2cap_do_send(chan, skb);
650 651
}

652
static inline void l2cap_send_rr_or_rnr(struct l2cap_chan *chan, u32 control)
653
{
654
	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
655
		control |= __set_ctrl_super(chan, L2CAP_SUPER_RNR);
656
		set_bit(CONN_RNR_SENT, &chan->conn_state);
657
	} else
658
		control |= __set_ctrl_super(chan, L2CAP_SUPER_RR);
659

660
	control |= __set_reqseq(chan, chan->buffer_seq);
661

662
	l2cap_send_sframe(chan, control);
663 664
}

665
static inline int __l2cap_no_conn_pending(struct l2cap_chan *chan)
666
{
667
	return !test_bit(CONF_CONNECT_PEND, &chan->conf_state);
668 669
}

670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
static void l2cap_send_conn_req(struct l2cap_chan *chan)
{
	struct l2cap_conn *conn = chan->conn;
	struct l2cap_conn_req req;

	req.scid = cpu_to_le16(chan->scid);
	req.psm  = chan->psm;

	chan->ident = l2cap_get_ident(conn);

	set_bit(CONF_CONNECT_PEND, &chan->conf_state);

	l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_REQ, sizeof(req), &req);
}

685
static void l2cap_do_start(struct l2cap_chan *chan)
686
{
687
	struct l2cap_conn *conn = chan->conn;
688 689

	if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT) {
690 691 692
		if (!(conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE))
			return;

693
		if (l2cap_chan_check_security(chan) &&
694 695
				__l2cap_no_conn_pending(chan))
			l2cap_send_conn_req(chan);
696 697 698 699 700 701 702
	} else {
		struct l2cap_info_req req;
		req.type = cpu_to_le16(L2CAP_IT_FEAT_MASK);

		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_SENT;
		conn->info_ident = l2cap_get_ident(conn);

703
		schedule_delayed_work(&conn->info_timer,
704 705 706 707 708 709 710
					msecs_to_jiffies(L2CAP_INFO_TIMEOUT));

		l2cap_send_cmd(conn, conn->info_ident,
					L2CAP_INFO_REQ, sizeof(req), &req);
	}
}

711 712 713
static inline int l2cap_mode_supported(__u8 mode, __u32 feat_mask)
{
	u32 local_feat_mask = l2cap_feat_mask;
714
	if (!disable_ertm)
715 716 717 718 719 720 721 722 723 724 725 726
		local_feat_mask |= L2CAP_FEAT_ERTM | L2CAP_FEAT_STREAMING;

	switch (mode) {
	case L2CAP_MODE_ERTM:
		return L2CAP_FEAT_ERTM & feat_mask & local_feat_mask;
	case L2CAP_MODE_STREAMING:
		return L2CAP_FEAT_STREAMING & feat_mask & local_feat_mask;
	default:
		return 0x00;
	}
}

727
static void l2cap_send_disconn_req(struct l2cap_conn *conn, struct l2cap_chan *chan, int err)
728
{
729
	struct sock *sk = chan->sk;
730 731
	struct l2cap_disconn_req req;

732 733 734
	if (!conn)
		return;

735
	if (chan->mode == L2CAP_MODE_ERTM) {
736 737 738
		__clear_retrans_timer(chan);
		__clear_monitor_timer(chan);
		__clear_ack_timer(chan);
739 740
	}

741 742
	req.dcid = cpu_to_le16(chan->dcid);
	req.scid = cpu_to_le16(chan->scid);
743 744
	l2cap_send_cmd(conn, l2cap_get_ident(conn),
			L2CAP_DISCONN_REQ, sizeof(req), &req);
745

746
	lock_sock(sk);
747
	__l2cap_state_change(chan, BT_DISCONN);
748
	__l2cap_chan_set_err(chan, err);
749
	release_sock(sk);
750 751
}

L
Linus Torvalds 已提交
752
/* ---- L2CAP connections ---- */
753 754
static void l2cap_conn_start(struct l2cap_conn *conn)
{
755
	struct l2cap_chan *chan, *tmp;
756 757 758

	BT_DBG("conn %p", conn);

759
	mutex_lock(&conn->chan_lock);
760

761
	list_for_each_entry_safe(chan, tmp, &conn->chan_l, list) {
762
		struct sock *sk = chan->sk;
763

764
		l2cap_chan_lock(chan);
765

766
		if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
767
			l2cap_chan_unlock(chan);
768 769 770
			continue;
		}

771
		if (chan->state == BT_CONNECT) {
772
			if (!l2cap_chan_check_security(chan) ||
773
					!__l2cap_no_conn_pending(chan)) {
774
				l2cap_chan_unlock(chan);
775 776
				continue;
			}
777

778 779 780
			if (!l2cap_mode_supported(chan->mode, conn->feat_mask)
					&& test_bit(CONF_STATE2_DEVICE,
					&chan->conf_state)) {
781
				l2cap_chan_close(chan, ECONNRESET);
782
				l2cap_chan_unlock(chan);
783
				continue;
784
			}
785

786
			l2cap_send_conn_req(chan);
787

788
		} else if (chan->state == BT_CONNECT2) {
789
			struct l2cap_conn_rsp rsp;
790
			char buf[128];
791 792
			rsp.scid = cpu_to_le16(chan->dcid);
			rsp.dcid = cpu_to_le16(chan->scid);
793

794
			if (l2cap_chan_check_security(chan)) {
795
				lock_sock(sk);
796 797 798 799
				if (bt_sk(sk)->defer_setup) {
					struct sock *parent = bt_sk(sk)->parent;
					rsp.result = cpu_to_le16(L2CAP_CR_PEND);
					rsp.status = cpu_to_le16(L2CAP_CS_AUTHOR_PEND);
800 801
					if (parent)
						parent->sk_data_ready(parent, 0);
802 803

				} else {
804
					__l2cap_state_change(chan, BT_CONFIG);
805 806 807
					rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
					rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
				}
808
				release_sock(sk);
809 810 811 812 813
			} else {
				rsp.result = cpu_to_le16(L2CAP_CR_PEND);
				rsp.status = cpu_to_le16(L2CAP_CS_AUTHEN_PEND);
			}

814 815
			l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_RSP,
							sizeof(rsp), &rsp);
816

817
			if (test_bit(CONF_REQ_SENT, &chan->conf_state) ||
818
					rsp.result != L2CAP_CR_SUCCESS) {
819
				l2cap_chan_unlock(chan);
820 821 822
				continue;
			}

823
			set_bit(CONF_REQ_SENT, &chan->conf_state);
824
			l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
825 826
						l2cap_build_conf_req(chan, buf), buf);
			chan->num_conf_req++;
827 828
		}

829
		l2cap_chan_unlock(chan);
830 831
	}

832
	mutex_unlock(&conn->chan_lock);
833 834
}

835 836 837
/* Find socket with cid and source bdaddr.
 * Returns closest match, locked.
 */
838
static struct l2cap_chan *l2cap_global_chan_by_scid(int state, __le16 cid, bdaddr_t *src)
839
{
840
	struct l2cap_chan *c, *c1 = NULL;
841

842
	read_lock(&chan_list_lock);
843

844 845
	list_for_each_entry(c, &chan_list, global_l) {
		struct sock *sk = c->sk;
846

847
		if (state && c->state != state)
848 849
			continue;

850
		if (c->scid == cid) {
851
			/* Exact match. */
852 853 854 855
			if (!bacmp(&bt_sk(sk)->src, src)) {
				read_unlock(&chan_list_lock);
				return c;
			}
856 857 858

			/* Closest match */
			if (!bacmp(&bt_sk(sk)->src, BDADDR_ANY))
859
				c1 = c;
860 861
		}
	}
862

863
	read_unlock(&chan_list_lock);
864

865
	return c1;
866 867 868 869
}

static void l2cap_le_conn_ready(struct l2cap_conn *conn)
{
870
	struct sock *parent, *sk;
871
	struct l2cap_chan *chan, *pchan;
872 873 874 875

	BT_DBG("");

	/* Check if we have socket listening on cid */
876
	pchan = l2cap_global_chan_by_scid(BT_LISTEN, L2CAP_CID_LE_DATA,
877
							conn->src);
878
	if (!pchan)
879 880
		return;

881 882
	parent = pchan->sk;

883
	lock_sock(parent);
884

885 886 887 888 889 890
	/* Check for backlog size */
	if (sk_acceptq_is_full(parent)) {
		BT_DBG("backlog full %d", parent->sk_ack_backlog);
		goto clean;
	}

891 892
	chan = pchan->ops->new_connection(pchan->data);
	if (!chan)
893 894
		goto clean;

895
	sk = chan->sk;
896

897 898 899 900 901
	hci_conn_hold(conn->hcon);

	bacpy(&bt_sk(sk)->src, conn->src);
	bacpy(&bt_sk(sk)->dst, conn->dst);

902 903
	bt_accept_enqueue(parent, sk);

904
	l2cap_chan_add(conn, chan);
905

906
	__set_chan_timer(chan, sk->sk_sndtimeo);
907

908
	__l2cap_state_change(chan, BT_CONNECTED);
909 910 911
	parent->sk_data_ready(parent, 0);

clean:
912
	release_sock(parent);
913 914
}

915
static void l2cap_chan_ready(struct l2cap_chan *chan)
916
{
917
	struct sock *sk = chan->sk;
918 919 920 921 922
	struct sock *parent;

	lock_sock(sk);

	parent = bt_sk(sk)->parent;
923 924 925 926 927 928

	BT_DBG("sk %p, parent %p", sk, parent);

	chan->conf_state = 0;
	__clear_chan_timer(chan);

929
	__l2cap_state_change(chan, BT_CONNECTED);
930 931 932 933
	sk->sk_state_change(sk);

	if (parent)
		parent->sk_data_ready(parent, 0);
934 935

	release_sock(sk);
936 937
}

938 939
static void l2cap_conn_ready(struct l2cap_conn *conn)
{
940
	struct l2cap_chan *chan;
941

942
	BT_DBG("conn %p", conn);
943

944 945 946
	if (!conn->hcon->out && conn->hcon->type == LE_LINK)
		l2cap_le_conn_ready(conn);

947 948 949
	if (conn->hcon->out && conn->hcon->type == LE_LINK)
		smp_conn_security(conn, conn->hcon->pending_sec_level);

950
	mutex_lock(&conn->chan_lock);
951

952
	list_for_each_entry(chan, &conn->chan_l, list) {
953

954
		l2cap_chan_lock(chan);
955

956
		if (conn->hcon->type == LE_LINK) {
957
			if (smp_conn_security(conn, chan->sec_level))
958
				l2cap_chan_ready(chan);
959

960
		} else if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
961
			struct sock *sk = chan->sk;
962
			__clear_chan_timer(chan);
963
			lock_sock(sk);
964
			__l2cap_state_change(chan, BT_CONNECTED);
965
			sk->sk_state_change(sk);
966
			release_sock(sk);
967

968
		} else if (chan->state == BT_CONNECT)
969
			l2cap_do_start(chan);
970

971
		l2cap_chan_unlock(chan);
972
	}
973

974
	mutex_unlock(&conn->chan_lock);
975 976 977 978 979
}

/* Notify sockets that we cannot guaranty reliability anymore */
static void l2cap_conn_unreliable(struct l2cap_conn *conn, int err)
{
980
	struct l2cap_chan *chan;
981 982 983

	BT_DBG("conn %p", conn);

984
	mutex_lock(&conn->chan_lock);
985

986
	list_for_each_entry(chan, &conn->chan_l, list) {
987
		if (test_bit(FLAG_FORCE_RELIABLE, &chan->flags))
988
			__l2cap_chan_set_err(chan, err);
989 990
	}

991
	mutex_unlock(&conn->chan_lock);
992 993
}

994
static void l2cap_info_timeout(struct work_struct *work)
995
{
996
	struct l2cap_conn *conn = container_of(work, struct l2cap_conn,
997
							info_timer.work);
998

999
	conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
1000
	conn->info_ident = 0;
1001

1002 1003 1004
	l2cap_conn_start(conn);
}

1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
static void l2cap_conn_del(struct hci_conn *hcon, int err)
{
	struct l2cap_conn *conn = hcon->l2cap_data;
	struct l2cap_chan *chan, *l;

	if (!conn)
		return;

	BT_DBG("hcon %p conn %p, err %d", hcon, conn, err);

	kfree_skb(conn->rx_skb);

1017 1018
	mutex_lock(&conn->chan_lock);

1019 1020
	/* Kill channels */
	list_for_each_entry_safe(chan, l, &conn->chan_l, list) {
1021 1022
		l2cap_chan_lock(chan);

1023
		l2cap_chan_del(chan, err);
1024 1025 1026

		l2cap_chan_unlock(chan);

1027 1028 1029
		chan->ops->close(chan->data);
	}

1030 1031
	mutex_unlock(&conn->chan_lock);

1032 1033
	hci_chan_del(conn->hchan);

1034
	if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT)
1035
		cancel_delayed_work_sync(&conn->info_timer);
1036

1037
	if (test_and_clear_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags)) {
1038
		cancel_delayed_work_sync(&conn->security_timer);
1039
		smp_chan_destroy(conn);
1040
	}
1041 1042 1043 1044 1045

	hcon->l2cap_data = NULL;
	kfree(conn);
}

1046
static void security_timeout(struct work_struct *work)
1047
{
1048 1049
	struct l2cap_conn *conn = container_of(work, struct l2cap_conn,
						security_timer.work);
1050 1051 1052 1053

	l2cap_conn_del(conn->hcon, ETIMEDOUT);
}

L
Linus Torvalds 已提交
1054 1055
static struct l2cap_conn *l2cap_conn_add(struct hci_conn *hcon, u8 status)
{
1056
	struct l2cap_conn *conn = hcon->l2cap_data;
1057
	struct hci_chan *hchan;
L
Linus Torvalds 已提交
1058

1059
	if (conn || status)
L
Linus Torvalds 已提交
1060 1061
		return conn;

1062 1063 1064 1065
	hchan = hci_chan_create(hcon);
	if (!hchan)
		return NULL;

1066
	conn = kzalloc(sizeof(struct l2cap_conn), GFP_ATOMIC);
1067 1068
	if (!conn) {
		hci_chan_del(hchan);
L
Linus Torvalds 已提交
1069
		return NULL;
1070
	}
L
Linus Torvalds 已提交
1071 1072 1073

	hcon->l2cap_data = conn;
	conn->hcon = hcon;
1074
	conn->hchan = hchan;
L
Linus Torvalds 已提交
1075

1076
	BT_DBG("hcon %p conn %p hchan %p", hcon, conn, hchan);
1077

1078 1079 1080 1081 1082
	if (hcon->hdev->le_mtu && hcon->type == LE_LINK)
		conn->mtu = hcon->hdev->le_mtu;
	else
		conn->mtu = hcon->hdev->acl_mtu;

L
Linus Torvalds 已提交
1083 1084 1085
	conn->src = &hcon->hdev->bdaddr;
	conn->dst = &hcon->dst;

1086 1087
	conn->feat_mask = 0;

L
Linus Torvalds 已提交
1088
	spin_lock_init(&conn->lock);
1089
	mutex_init(&conn->chan_lock);
1090 1091

	INIT_LIST_HEAD(&conn->chan_l);
L
Linus Torvalds 已提交
1092

1093
	if (hcon->type == LE_LINK)
1094
		INIT_DELAYED_WORK(&conn->security_timer, security_timeout);
1095
	else
1096
		INIT_DELAYED_WORK(&conn->info_timer, l2cap_info_timeout);
D
Dave Young 已提交
1097

1098
	conn->disc_reason = HCI_ERROR_REMOTE_USER_TERM;
1099

L
Linus Torvalds 已提交
1100 1101 1102 1103 1104 1105 1106 1107
	return conn;
}

/* ---- Socket interface ---- */

/* Find socket with psm and source bdaddr.
 * Returns closest match.
 */
1108
static struct l2cap_chan *l2cap_global_chan_by_psm(int state, __le16 psm, bdaddr_t *src)
L
Linus Torvalds 已提交
1109
{
1110
	struct l2cap_chan *c, *c1 = NULL;
L
Linus Torvalds 已提交
1111

1112
	read_lock(&chan_list_lock);
1113

1114 1115
	list_for_each_entry(c, &chan_list, global_l) {
		struct sock *sk = c->sk;
1116

1117
		if (state && c->state != state)
L
Linus Torvalds 已提交
1118 1119
			continue;

1120
		if (c->psm == psm) {
L
Linus Torvalds 已提交
1121
			/* Exact match. */
1122
			if (!bacmp(&bt_sk(sk)->src, src)) {
1123
				read_unlock(&chan_list_lock);
1124 1125
				return c;
			}
L
Linus Torvalds 已提交
1126 1127 1128

			/* Closest match */
			if (!bacmp(&bt_sk(sk)->src, BDADDR_ANY))
1129
				c1 = c;
L
Linus Torvalds 已提交
1130 1131 1132
		}
	}

1133
	read_unlock(&chan_list_lock);
1134

1135
	return c1;
L
Linus Torvalds 已提交
1136 1137
}

1138
int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, bdaddr_t *dst)
L
Linus Torvalds 已提交
1139
{
1140
	struct sock *sk = chan->sk;
L
Linus Torvalds 已提交
1141 1142 1143 1144
	bdaddr_t *src = &bt_sk(sk)->src;
	struct l2cap_conn *conn;
	struct hci_conn *hcon;
	struct hci_dev *hdev;
1145
	__u8 auth_type;
1146
	int err;
L
Linus Torvalds 已提交
1147

1148
	BT_DBG("%s -> %s psm 0x%2.2x", batostr(src), batostr(dst),
1149
							chan->psm);
L
Linus Torvalds 已提交
1150

1151 1152
	hdev = hci_get_route(dst, src);
	if (!hdev)
L
Linus Torvalds 已提交
1153 1154
		return -EHOSTUNREACH;

1155
	hci_dev_lock(hdev);
L
Linus Torvalds 已提交
1156

1157
	l2cap_chan_lock(chan);
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183

	/* PSM must be odd and lsb of upper byte must be 0 */
	if ((__le16_to_cpu(psm) & 0x0101) != 0x0001 && !cid &&
					chan->chan_type != L2CAP_CHAN_RAW) {
		err = -EINVAL;
		goto done;
	}

	if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED && !(psm || cid)) {
		err = -EINVAL;
		goto done;
	}

	switch (chan->mode) {
	case L2CAP_MODE_BASIC:
		break;
	case L2CAP_MODE_ERTM:
	case L2CAP_MODE_STREAMING:
		if (!disable_ertm)
			break;
		/* fall through */
	default:
		err = -ENOTSUPP;
		goto done;
	}

1184 1185
	lock_sock(sk);

1186 1187 1188 1189 1190 1191
	switch (sk->sk_state) {
	case BT_CONNECT:
	case BT_CONNECT2:
	case BT_CONFIG:
		/* Already connecting */
		err = 0;
1192
		release_sock(sk);
1193 1194 1195 1196 1197
		goto done;

	case BT_CONNECTED:
		/* Already connected */
		err = -EISCONN;
1198
		release_sock(sk);
1199 1200 1201 1202 1203 1204 1205 1206 1207
		goto done;

	case BT_OPEN:
	case BT_BOUND:
		/* Can connect */
		break;

	default:
		err = -EBADFD;
1208
		release_sock(sk);
1209 1210 1211 1212
		goto done;
	}

	/* Set destination address and psm */
1213
	bacpy(&bt_sk(sk)->dst, dst);
1214 1215 1216

	release_sock(sk);

1217 1218
	chan->psm = psm;
	chan->dcid = cid;
L
Linus Torvalds 已提交
1219

1220
	auth_type = l2cap_get_auth_type(chan);
1221

1222
	if (chan->dcid == L2CAP_CID_LE_DATA)
1223
		hcon = hci_connect(hdev, LE_LINK, dst,
1224
					chan->sec_level, auth_type);
1225 1226
	else
		hcon = hci_connect(hdev, ACL_LINK, dst,
1227
					chan->sec_level, auth_type);
1228

1229 1230
	if (IS_ERR(hcon)) {
		err = PTR_ERR(hcon);
L
Linus Torvalds 已提交
1231
		goto done;
1232
	}
L
Linus Torvalds 已提交
1233 1234 1235 1236

	conn = l2cap_conn_add(hcon, 0);
	if (!conn) {
		hci_conn_put(hcon);
1237
		err = -ENOMEM;
L
Linus Torvalds 已提交
1238 1239 1240 1241 1242 1243
		goto done;
	}

	/* Update source addr of the socket */
	bacpy(src, conn->src);

1244
	l2cap_chan_unlock(chan);
1245
	l2cap_chan_add(conn, chan);
1246
	l2cap_chan_lock(chan);
1247

1248
	l2cap_state_change(chan, BT_CONNECT);
1249
	__set_chan_timer(chan, sk->sk_sndtimeo);
L
Linus Torvalds 已提交
1250 1251

	if (hcon->state == BT_CONNECTED) {
1252
		if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
1253
			__clear_chan_timer(chan);
1254
			if (l2cap_chan_check_security(chan))
1255
				l2cap_state_change(chan, BT_CONNECTED);
1256
		} else
1257
			l2cap_do_start(chan);
L
Linus Torvalds 已提交
1258 1259
	}

1260 1261
	err = 0;

L
Linus Torvalds 已提交
1262
done:
1263
	l2cap_chan_unlock(chan);
1264
	hci_dev_unlock(hdev);
L
Linus Torvalds 已提交
1265 1266 1267 1268
	hci_dev_put(hdev);
	return err;
}

1269
int __l2cap_wait_ack(struct sock *sk)
1270
{
1271
	struct l2cap_chan *chan = l2cap_pi(sk)->chan;
1272 1273 1274 1275
	DECLARE_WAITQUEUE(wait, current);
	int err = 0;
	int timeo = HZ/5;

1276
	add_wait_queue(sk_sleep(sk), &wait);
1277 1278
	set_current_state(TASK_INTERRUPTIBLE);
	while (chan->unacked_frames > 0 && chan->conn) {
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
		if (!timeo)
			timeo = HZ/5;

		if (signal_pending(current)) {
			err = sock_intr_errno(timeo);
			break;
		}

		release_sock(sk);
		timeo = schedule_timeout(timeo);
		lock_sock(sk);
1290
		set_current_state(TASK_INTERRUPTIBLE);
1291 1292 1293 1294 1295 1296

		err = sock_error(sk);
		if (err)
			break;
	}
	set_current_state(TASK_RUNNING);
1297
	remove_wait_queue(sk_sleep(sk), &wait);
1298 1299 1300
	return err;
}

1301
static void l2cap_monitor_timeout(struct work_struct *work)
1302
{
1303 1304
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
							monitor_timer.work);
1305

1306
	BT_DBG("chan %p", chan);
1307

1308 1309
	l2cap_chan_lock(chan);

1310
	if (chan->retry_count >= chan->remote_max_tx) {
1311
		l2cap_send_disconn_req(chan->conn, chan, ECONNABORTED);
1312
		l2cap_chan_unlock(chan);
1313 1314 1315
		return;
	}

1316
	chan->retry_count++;
1317
	__set_monitor_timer(chan);
1318

1319
	l2cap_send_rr_or_rnr(chan, L2CAP_CTRL_POLL);
1320
	l2cap_chan_unlock(chan);
1321 1322
}

1323
static void l2cap_retrans_timeout(struct work_struct *work)
1324
{
1325 1326
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
							retrans_timer.work);
1327

1328
	BT_DBG("chan %p", chan);
1329

1330 1331
	l2cap_chan_lock(chan);

1332
	chan->retry_count = 1;
1333
	__set_monitor_timer(chan);
1334

1335
	set_bit(CONN_WAIT_F, &chan->conn_state);
1336

1337
	l2cap_send_rr_or_rnr(chan, L2CAP_CTRL_POLL);
1338 1339

	l2cap_chan_unlock(chan);
1340 1341
}

1342
static void l2cap_drop_acked_frames(struct l2cap_chan *chan)
L
Linus Torvalds 已提交
1343
{
1344
	struct sk_buff *skb;
L
Linus Torvalds 已提交
1345

1346
	while ((skb = skb_peek(&chan->tx_q)) &&
1347
			chan->unacked_frames) {
1348
		if (bt_cb(skb)->tx_seq == chan->expected_ack_seq)
1349
			break;
L
Linus Torvalds 已提交
1350

1351
		skb = skb_dequeue(&chan->tx_q);
1352
		kfree_skb(skb);
L
Linus Torvalds 已提交
1353

1354
		chan->unacked_frames--;
1355
	}
L
Linus Torvalds 已提交
1356

1357
	if (!chan->unacked_frames)
1358
		__clear_retrans_timer(chan);
1359
}
L
Linus Torvalds 已提交
1360

1361
static void l2cap_streaming_send(struct l2cap_chan *chan)
1362
{
1363
	struct sk_buff *skb;
1364 1365
	u32 control;
	u16 fcs;
1366

1367
	while ((skb = skb_dequeue(&chan->tx_q))) {
1368
		control = __get_control(chan, skb->data + L2CAP_HDR_SIZE);
1369
		control |= __set_txseq(chan, chan->next_tx_seq);
1370
		__put_control(chan, control, skb->data + L2CAP_HDR_SIZE);
1371

1372
		if (chan->fcs == L2CAP_FCS_CRC16) {
1373 1374 1375 1376
			fcs = crc16(0, (u8 *)skb->data,
						skb->len - L2CAP_FCS_SIZE);
			put_unaligned_le16(fcs,
					skb->data + skb->len - L2CAP_FCS_SIZE);
1377 1378
		}

1379
		l2cap_do_send(chan, skb);
1380

1381
		chan->next_tx_seq = __next_seq(chan, chan->next_tx_seq);
1382 1383 1384
	}
}

1385
static void l2cap_retransmit_one_frame(struct l2cap_chan *chan, u16 tx_seq)
1386 1387
{
	struct sk_buff *skb, *tx_skb;
1388 1389
	u16 fcs;
	u32 control;
1390

1391
	skb = skb_peek(&chan->tx_q);
1392 1393
	if (!skb)
		return;
1394

1395
	while (bt_cb(skb)->tx_seq != tx_seq) {
1396
		if (skb_queue_is_last(&chan->tx_q, skb))
1397
			return;
1398

1399 1400
		skb = skb_queue_next(&chan->tx_q, skb);
	}
1401

1402 1403
	if (chan->remote_max_tx &&
			bt_cb(skb)->retries == chan->remote_max_tx) {
1404
		l2cap_send_disconn_req(chan->conn, chan, ECONNABORTED);
1405 1406 1407 1408 1409
		return;
	}

	tx_skb = skb_clone(skb, GFP_ATOMIC);
	bt_cb(skb)->retries++;
1410 1411

	control = __get_control(chan, tx_skb->data + L2CAP_HDR_SIZE);
1412
	control &= __get_sar_mask(chan);
1413

1414
	if (test_and_clear_bit(CONN_SEND_FBIT, &chan->conn_state))
1415
		control |= __set_ctrl_final(chan);
1416

1417
	control |= __set_reqseq(chan, chan->buffer_seq);
1418
	control |= __set_txseq(chan, tx_seq);
1419

1420
	__put_control(chan, control, tx_skb->data + L2CAP_HDR_SIZE);
1421

1422
	if (chan->fcs == L2CAP_FCS_CRC16) {
1423 1424 1425 1426
		fcs = crc16(0, (u8 *)tx_skb->data,
						tx_skb->len - L2CAP_FCS_SIZE);
		put_unaligned_le16(fcs,
				tx_skb->data + tx_skb->len - L2CAP_FCS_SIZE);
1427 1428
	}

1429
	l2cap_do_send(chan, tx_skb);
1430 1431
}

1432
static int l2cap_ertm_send(struct l2cap_chan *chan)
1433 1434
{
	struct sk_buff *skb, *tx_skb;
1435 1436
	u16 fcs;
	u32 control;
1437
	int nsent = 0;
1438

1439
	if (chan->state != BT_CONNECTED)
1440
		return -ENOTCONN;
1441

1442
	while ((skb = chan->tx_send_head) && (!l2cap_tx_window_full(chan))) {
1443

1444 1445
		if (chan->remote_max_tx &&
				bt_cb(skb)->retries == chan->remote_max_tx) {
1446
			l2cap_send_disconn_req(chan->conn, chan, ECONNABORTED);
1447 1448 1449
			break;
		}

1450 1451
		tx_skb = skb_clone(skb, GFP_ATOMIC);

1452 1453
		bt_cb(skb)->retries++;

1454
		control = __get_control(chan, tx_skb->data + L2CAP_HDR_SIZE);
1455
		control &= __get_sar_mask(chan);
1456

1457
		if (test_and_clear_bit(CONN_SEND_FBIT, &chan->conn_state))
1458
			control |= __set_ctrl_final(chan);
1459

1460
		control |= __set_reqseq(chan, chan->buffer_seq);
1461
		control |= __set_txseq(chan, chan->next_tx_seq);
1462

1463
		__put_control(chan, control, tx_skb->data + L2CAP_HDR_SIZE);
1464

1465
		if (chan->fcs == L2CAP_FCS_CRC16) {
1466 1467 1468 1469
			fcs = crc16(0, (u8 *)skb->data,
						tx_skb->len - L2CAP_FCS_SIZE);
			put_unaligned_le16(fcs, skb->data +
						tx_skb->len - L2CAP_FCS_SIZE);
1470 1471
		}

1472
		l2cap_do_send(chan, tx_skb);
1473

1474
		__set_retrans_timer(chan);
1475

1476
		bt_cb(skb)->tx_seq = chan->next_tx_seq;
1477 1478

		chan->next_tx_seq = __next_seq(chan, chan->next_tx_seq);
1479

1480
		if (bt_cb(skb)->retries == 1) {
1481
			chan->unacked_frames++;
1482 1483 1484

			if (!nsent++)
				__clear_ack_timer(chan);
1485
		}
1486

1487
		chan->frames_sent++;
1488

1489 1490
		if (skb_queue_is_last(&chan->tx_q, skb))
			chan->tx_send_head = NULL;
1491
		else
1492
			chan->tx_send_head = skb_queue_next(&chan->tx_q, skb);
1493 1494
	}

1495 1496 1497
	return nsent;
}

1498
static int l2cap_retransmit_frames(struct l2cap_chan *chan)
1499 1500 1501
{
	int ret;

1502 1503
	if (!skb_queue_empty(&chan->tx_q))
		chan->tx_send_head = chan->tx_q.next;
1504

1505
	chan->next_tx_seq = chan->expected_ack_seq;
1506
	ret = l2cap_ertm_send(chan);
1507 1508 1509
	return ret;
}

1510
static void __l2cap_send_ack(struct l2cap_chan *chan)
1511
{
1512
	u32 control = 0;
1513

1514
	control |= __set_reqseq(chan, chan->buffer_seq);
1515

1516
	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
1517
		control |= __set_ctrl_super(chan, L2CAP_SUPER_RNR);
1518
		set_bit(CONN_RNR_SENT, &chan->conn_state);
1519
		l2cap_send_sframe(chan, control);
1520
		return;
1521
	}
1522

1523
	if (l2cap_ertm_send(chan) > 0)
1524 1525
		return;

1526
	control |= __set_ctrl_super(chan, L2CAP_SUPER_RR);
1527
	l2cap_send_sframe(chan, control);
1528 1529
}

1530 1531 1532 1533 1534 1535
static void l2cap_send_ack(struct l2cap_chan *chan)
{
	__clear_ack_timer(chan);
	__l2cap_send_ack(chan);
}

1536
static void l2cap_send_srejtail(struct l2cap_chan *chan)
1537 1538
{
	struct srej_list *tail;
1539
	u32 control;
1540

1541
	control = __set_ctrl_super(chan, L2CAP_SUPER_SREJ);
1542
	control |= __set_ctrl_final(chan);
1543

1544
	tail = list_entry((&chan->srej_l)->prev, struct srej_list, list);
1545
	control |= __set_reqseq(chan, tail->tx_seq);
1546

1547
	l2cap_send_sframe(chan, control);
1548 1549
}

1550
static inline int l2cap_skbuff_fromiovec(struct l2cap_chan *chan, struct msghdr *msg, int len, int count, struct sk_buff *skb)
1551
{
1552
	struct l2cap_conn *conn = chan->conn;
1553 1554
	struct sk_buff **frag;
	int err, sent = 0;
L
Linus Torvalds 已提交
1555

1556
	if (memcpy_fromiovec(skb_put(skb, count), msg->msg_iov, count))
1557
		return -EFAULT;
L
Linus Torvalds 已提交
1558 1559 1560 1561 1562 1563 1564 1565 1566

	sent += count;
	len  -= count;

	/* Continuation fragments (no L2CAP header) */
	frag = &skb_shinfo(skb)->frag_list;
	while (len) {
		count = min_t(unsigned int, conn->mtu, len);

1567 1568 1569
		*frag = chan->ops->alloc_skb(chan, count,
					msg->msg_flags & MSG_DONTWAIT, &err);

L
Linus Torvalds 已提交
1570
		if (!*frag)
1571
			return err;
1572 1573
		if (memcpy_fromiovec(skb_put(*frag, count), msg->msg_iov, count))
			return -EFAULT;
L
Linus Torvalds 已提交
1574

1575 1576
		(*frag)->priority = skb->priority;

L
Linus Torvalds 已提交
1577 1578 1579 1580 1581 1582 1583
		sent += count;
		len  -= count;

		frag = &(*frag)->next;
	}

	return sent;
1584
}
L
Linus Torvalds 已提交
1585

1586 1587 1588
static struct sk_buff *l2cap_create_connless_pdu(struct l2cap_chan *chan,
						struct msghdr *msg, size_t len,
						u32 priority)
1589
{
1590
	struct l2cap_conn *conn = chan->conn;
1591
	struct sk_buff *skb;
1592
	int err, count, hlen = L2CAP_HDR_SIZE + L2CAP_PSMLEN_SIZE;
1593 1594
	struct l2cap_hdr *lh;

1595
	BT_DBG("chan %p len %d priority %u", chan, (int)len, priority);
1596 1597

	count = min_t(unsigned int, (conn->mtu - hlen), len);
1598 1599 1600 1601

	skb = chan->ops->alloc_skb(chan, count + hlen,
					msg->msg_flags & MSG_DONTWAIT, &err);

1602
	if (!skb)
1603
		return ERR_PTR(err);
1604

1605 1606
	skb->priority = priority;

1607 1608
	/* Create L2CAP header */
	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
1609
	lh->cid = cpu_to_le16(chan->dcid);
1610
	lh->len = cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE));
1611
	put_unaligned_le16(chan->psm, skb_put(skb, 2));
1612

1613
	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
1614 1615 1616 1617 1618 1619 1620
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}
	return skb;
}

1621 1622 1623
static struct sk_buff *l2cap_create_basic_pdu(struct l2cap_chan *chan,
						struct msghdr *msg, size_t len,
						u32 priority)
1624
{
1625
	struct l2cap_conn *conn = chan->conn;
1626 1627 1628 1629
	struct sk_buff *skb;
	int err, count, hlen = L2CAP_HDR_SIZE;
	struct l2cap_hdr *lh;

1630
	BT_DBG("chan %p len %d", chan, (int)len);
1631 1632

	count = min_t(unsigned int, (conn->mtu - hlen), len);
1633 1634 1635 1636

	skb = chan->ops->alloc_skb(chan, count + hlen,
					msg->msg_flags & MSG_DONTWAIT, &err);

1637
	if (!skb)
1638
		return ERR_PTR(err);
1639

1640 1641
	skb->priority = priority;

1642 1643
	/* Create L2CAP header */
	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
1644
	lh->cid = cpu_to_le16(chan->dcid);
1645 1646
	lh->len = cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE));

1647
	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
1648 1649 1650 1651 1652 1653 1654
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}
	return skb;
}

1655 1656
static struct sk_buff *l2cap_create_iframe_pdu(struct l2cap_chan *chan,
						struct msghdr *msg, size_t len,
1657
						u32 control, u16 sdulen)
1658
{
1659
	struct l2cap_conn *conn = chan->conn;
1660
	struct sk_buff *skb;
1661
	int err, count, hlen;
1662 1663
	struct l2cap_hdr *lh;

1664
	BT_DBG("chan %p len %d", chan, (int)len);
1665

1666 1667 1668
	if (!conn)
		return ERR_PTR(-ENOTCONN);

1669 1670 1671 1672 1673
	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		hlen = L2CAP_EXT_HDR_SIZE;
	else
		hlen = L2CAP_ENH_HDR_SIZE;

1674
	if (sdulen)
1675
		hlen += L2CAP_SDULEN_SIZE;
1676

1677
	if (chan->fcs == L2CAP_FCS_CRC16)
1678
		hlen += L2CAP_FCS_SIZE;
1679

1680
	count = min_t(unsigned int, (conn->mtu - hlen), len);
1681 1682 1683 1684

	skb = chan->ops->alloc_skb(chan, count + hlen,
					msg->msg_flags & MSG_DONTWAIT, &err);

1685
	if (!skb)
1686
		return ERR_PTR(err);
1687 1688 1689

	/* Create L2CAP header */
	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
1690
	lh->cid = cpu_to_le16(chan->dcid);
1691
	lh->len = cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE));
1692 1693 1694

	__put_control(chan, control, skb_put(skb, __ctrl_size(chan)));

1695
	if (sdulen)
1696
		put_unaligned_le16(sdulen, skb_put(skb, L2CAP_SDULEN_SIZE));
1697

1698
	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
1699 1700 1701 1702
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}
1703

1704
	if (chan->fcs == L2CAP_FCS_CRC16)
1705
		put_unaligned_le16(0, skb_put(skb, L2CAP_FCS_SIZE));
1706

1707
	bt_cb(skb)->retries = 0;
1708
	return skb;
L
Linus Torvalds 已提交
1709 1710
}

1711
static int l2cap_sar_segment_sdu(struct l2cap_chan *chan, struct msghdr *msg, size_t len)
1712 1713 1714
{
	struct sk_buff *skb;
	struct sk_buff_head sar_queue;
1715
	u32 control;
1716 1717
	size_t size = 0;

1718
	skb_queue_head_init(&sar_queue);
1719
	control = __set_ctrl_sar(chan, L2CAP_SAR_START);
1720
	skb = l2cap_create_iframe_pdu(chan, msg, chan->remote_mps, control, len);
1721 1722 1723 1724
	if (IS_ERR(skb))
		return PTR_ERR(skb);

	__skb_queue_tail(&sar_queue, skb);
1725 1726
	len -= chan->remote_mps;
	size += chan->remote_mps;
1727 1728 1729 1730

	while (len > 0) {
		size_t buflen;

1731
		if (len > chan->remote_mps) {
1732
			control = __set_ctrl_sar(chan, L2CAP_SAR_CONTINUE);
1733
			buflen = chan->remote_mps;
1734
		} else {
1735
			control = __set_ctrl_sar(chan, L2CAP_SAR_END);
1736 1737 1738
			buflen = len;
		}

1739
		skb = l2cap_create_iframe_pdu(chan, msg, buflen, control, 0);
1740 1741 1742 1743 1744 1745 1746 1747 1748
		if (IS_ERR(skb)) {
			skb_queue_purge(&sar_queue);
			return PTR_ERR(skb);
		}

		__skb_queue_tail(&sar_queue, skb);
		len -= buflen;
		size += buflen;
	}
1749 1750 1751
	skb_queue_splice_tail(&sar_queue, &chan->tx_q);
	if (chan->tx_send_head == NULL)
		chan->tx_send_head = sar_queue.next;
1752 1753 1754 1755

	return size;
}

1756 1757
int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len,
								u32 priority)
1758 1759
{
	struct sk_buff *skb;
1760
	u32 control;
1761 1762 1763
	int err;

	/* Connectionless channel */
1764
	if (chan->chan_type == L2CAP_CHAN_CONN_LESS) {
1765
		skb = l2cap_create_connless_pdu(chan, msg, len, priority);
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
		if (IS_ERR(skb))
			return PTR_ERR(skb);

		l2cap_do_send(chan, skb);
		return len;
	}

	switch (chan->mode) {
	case L2CAP_MODE_BASIC:
		/* Check outgoing MTU */
		if (len > chan->omtu)
			return -EMSGSIZE;

		/* Create a basic PDU */
1780
		skb = l2cap_create_basic_pdu(chan, msg, len, priority);
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
		if (IS_ERR(skb))
			return PTR_ERR(skb);

		l2cap_do_send(chan, skb);
		err = len;
		break;

	case L2CAP_MODE_ERTM:
	case L2CAP_MODE_STREAMING:
		/* Entire SDU fits into one PDU */
		if (len <= chan->remote_mps) {
1792
			control = __set_ctrl_sar(chan, L2CAP_SAR_UNSEGMENTED);
1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815
			skb = l2cap_create_iframe_pdu(chan, msg, len, control,
									0);
			if (IS_ERR(skb))
				return PTR_ERR(skb);

			__skb_queue_tail(&chan->tx_q, skb);

			if (chan->tx_send_head == NULL)
				chan->tx_send_head = skb;

		} else {
			/* Segment SDU into multiples PDUs */
			err = l2cap_sar_segment_sdu(chan, msg, len);
			if (err < 0)
				return err;
		}

		if (chan->mode == L2CAP_MODE_STREAMING) {
			l2cap_streaming_send(chan);
			err = len;
			break;
		}

1816 1817
		if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state) &&
				test_bit(CONN_WAIT_F, &chan->conn_state)) {
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
			err = len;
			break;
		}

		err = l2cap_ertm_send(chan);
		if (err >= 0)
			err = len;

		break;

	default:
		BT_DBG("bad state %1.1x", chan->mode);
		err = -EBADFD;
	}

	return err;
}

L
Linus Torvalds 已提交
1836 1837 1838 1839
/* Copy frame to all raw sockets on that connection */
static void l2cap_raw_recv(struct l2cap_conn *conn, struct sk_buff *skb)
{
	struct sk_buff *nskb;
1840
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
1841 1842 1843

	BT_DBG("conn %p", conn);

1844
	mutex_lock(&conn->chan_lock);
1845

1846
	list_for_each_entry(chan, &conn->chan_l, list) {
1847
		struct sock *sk = chan->sk;
1848
		if (chan->chan_type != L2CAP_CHAN_RAW)
L
Linus Torvalds 已提交
1849 1850 1851 1852 1853
			continue;

		/* Don't send frame to the socket it came from */
		if (skb->sk == sk)
			continue;
1854 1855
		nskb = skb_clone(skb, GFP_ATOMIC);
		if (!nskb)
L
Linus Torvalds 已提交
1856 1857
			continue;

1858
		if (chan->ops->recv(chan->data, nskb))
L
Linus Torvalds 已提交
1859 1860
			kfree_skb(nskb);
	}
1861

1862
	mutex_unlock(&conn->chan_lock);
L
Linus Torvalds 已提交
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
}

/* ---- L2CAP signalling commands ---- */
static struct sk_buff *l2cap_build_cmd(struct l2cap_conn *conn,
				u8 code, u8 ident, u16 dlen, void *data)
{
	struct sk_buff *skb, **frag;
	struct l2cap_cmd_hdr *cmd;
	struct l2cap_hdr *lh;
	int len, count;

1874 1875
	BT_DBG("conn %p, code 0x%2.2x, ident 0x%2.2x, len %d",
			conn, code, ident, dlen);
L
Linus Torvalds 已提交
1876 1877 1878 1879 1880 1881 1882 1883 1884

	len = L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE + dlen;
	count = min_t(unsigned int, conn->mtu, len);

	skb = bt_skb_alloc(count, GFP_ATOMIC);
	if (!skb)
		return NULL;

	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
1885
	lh->len = cpu_to_le16(L2CAP_CMD_HDR_SIZE + dlen);
1886 1887 1888 1889 1890

	if (conn->hcon->type == LE_LINK)
		lh->cid = cpu_to_le16(L2CAP_CID_LE_SIGNALING);
	else
		lh->cid = cpu_to_le16(L2CAP_CID_SIGNALING);
L
Linus Torvalds 已提交
1891 1892 1893 1894

	cmd = (struct l2cap_cmd_hdr *) skb_put(skb, L2CAP_CMD_HDR_SIZE);
	cmd->code  = code;
	cmd->ident = ident;
1895
	cmd->len   = cpu_to_le16(dlen);
L
Linus Torvalds 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945

	if (dlen) {
		count -= L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE;
		memcpy(skb_put(skb, count), data, count);
		data += count;
	}

	len -= skb->len;

	/* Continuation fragments (no L2CAP header) */
	frag = &skb_shinfo(skb)->frag_list;
	while (len) {
		count = min_t(unsigned int, conn->mtu, len);

		*frag = bt_skb_alloc(count, GFP_ATOMIC);
		if (!*frag)
			goto fail;

		memcpy(skb_put(*frag, count), data, count);

		len  -= count;
		data += count;

		frag = &(*frag)->next;
	}

	return skb;

fail:
	kfree_skb(skb);
	return NULL;
}

static inline int l2cap_get_conf_opt(void **ptr, int *type, int *olen, unsigned long *val)
{
	struct l2cap_conf_opt *opt = *ptr;
	int len;

	len = L2CAP_CONF_OPT_SIZE + opt->len;
	*ptr += len;

	*type = opt->type;
	*olen = opt->len;

	switch (opt->len) {
	case 1:
		*val = *((u8 *) opt->val);
		break;

	case 2:
1946
		*val = get_unaligned_le16(opt->val);
L
Linus Torvalds 已提交
1947 1948 1949
		break;

	case 4:
1950
		*val = get_unaligned_le32(opt->val);
L
Linus Torvalds 已提交
1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976
		break;

	default:
		*val = (unsigned long) opt->val;
		break;
	}

	BT_DBG("type 0x%2.2x len %d val 0x%lx", *type, opt->len, *val);
	return len;
}

static void l2cap_add_conf_opt(void **ptr, u8 type, u8 len, unsigned long val)
{
	struct l2cap_conf_opt *opt = *ptr;

	BT_DBG("type 0x%2.2x len %d val 0x%lx", type, len, val);

	opt->type = type;
	opt->len  = len;

	switch (len) {
	case 1:
		*((u8 *) opt->val)  = val;
		break;

	case 2:
1977
		put_unaligned_le16(val, opt->val);
L
Linus Torvalds 已提交
1978 1979 1980
		break;

	case 4:
1981
		put_unaligned_le32(val, opt->val);
L
Linus Torvalds 已提交
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
		break;

	default:
		memcpy(opt->val, (void *) val, len);
		break;
	}

	*ptr += L2CAP_CONF_OPT_SIZE + len;
}

1992 1993 1994 1995
static void l2cap_add_opt_efs(void **ptr, struct l2cap_chan *chan)
{
	struct l2cap_conf_efs efs;

1996
	switch (chan->mode) {
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022
	case L2CAP_MODE_ERTM:
		efs.id		= chan->local_id;
		efs.stype	= chan->local_stype;
		efs.msdu	= cpu_to_le16(chan->local_msdu);
		efs.sdu_itime	= cpu_to_le32(chan->local_sdu_itime);
		efs.acc_lat	= cpu_to_le32(L2CAP_DEFAULT_ACC_LAT);
		efs.flush_to	= cpu_to_le32(L2CAP_DEFAULT_FLUSH_TO);
		break;

	case L2CAP_MODE_STREAMING:
		efs.id		= 1;
		efs.stype	= L2CAP_SERV_BESTEFFORT;
		efs.msdu	= cpu_to_le16(chan->local_msdu);
		efs.sdu_itime	= cpu_to_le32(chan->local_sdu_itime);
		efs.acc_lat	= 0;
		efs.flush_to	= 0;
		break;

	default:
		return;
	}

	l2cap_add_conf_opt(ptr, L2CAP_CONF_EFS, sizeof(efs),
							(unsigned long) &efs);
}

2023
static void l2cap_ack_timeout(struct work_struct *work)
2024
{
2025 2026
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
							ack_timer.work);
2027

2028 2029
	BT_DBG("chan %p", chan);

2030 2031
	l2cap_chan_lock(chan);

2032
	__l2cap_send_ack(chan);
2033 2034

	l2cap_chan_unlock(chan);
2035 2036

	l2cap_chan_put(chan);
2037 2038
}

2039
static inline void l2cap_ertm_init(struct l2cap_chan *chan)
2040
{
2041
	chan->expected_ack_seq = 0;
2042
	chan->unacked_frames = 0;
2043
	chan->buffer_seq = 0;
2044 2045
	chan->num_acked = 0;
	chan->frames_sent = 0;
2046

2047 2048 2049
	INIT_DELAYED_WORK(&chan->retrans_timer, l2cap_retrans_timeout);
	INIT_DELAYED_WORK(&chan->monitor_timer, l2cap_monitor_timeout);
	INIT_DELAYED_WORK(&chan->ack_timer, l2cap_ack_timeout);
2050

2051
	skb_queue_head_init(&chan->srej_q);
2052

2053
	INIT_LIST_HEAD(&chan->srej_l);
2054 2055
}

2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068
static inline __u8 l2cap_select_mode(__u8 mode, __u16 remote_feat_mask)
{
	switch (mode) {
	case L2CAP_MODE_STREAMING:
	case L2CAP_MODE_ERTM:
		if (l2cap_mode_supported(mode, remote_feat_mask))
			return mode;
		/* fall through */
	default:
		return L2CAP_MODE_BASIC;
	}
}

2069 2070 2071 2072 2073
static inline bool __l2cap_ews_supported(struct l2cap_chan *chan)
{
	return enable_hs && chan->conn->feat_mask & L2CAP_FEAT_EXT_WINDOW;
}

2074 2075 2076 2077 2078
static inline bool __l2cap_efs_supported(struct l2cap_chan *chan)
{
	return enable_hs && chan->conn->feat_mask & L2CAP_FEAT_EXT_FLOW;
}

2079 2080 2081
static inline void l2cap_txwin_setup(struct l2cap_chan *chan)
{
	if (chan->tx_win > L2CAP_DEFAULT_TX_WINDOW &&
2082
						__l2cap_ews_supported(chan)) {
2083 2084
		/* use extended control field */
		set_bit(FLAG_EXT_CTRL, &chan->flags);
2085 2086
		chan->tx_win_max = L2CAP_DEFAULT_EXT_WINDOW;
	} else {
2087 2088
		chan->tx_win = min_t(u16, chan->tx_win,
						L2CAP_DEFAULT_TX_WINDOW);
2089 2090
		chan->tx_win_max = L2CAP_DEFAULT_TX_WINDOW;
	}
2091 2092
}

2093
static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data)
L
Linus Torvalds 已提交
2094 2095
{
	struct l2cap_conf_req *req = data;
2096
	struct l2cap_conf_rfc rfc = { .mode = chan->mode };
L
Linus Torvalds 已提交
2097
	void *ptr = req->data;
2098
	u16 size;
L
Linus Torvalds 已提交
2099

2100
	BT_DBG("chan %p", chan);
L
Linus Torvalds 已提交
2101

2102
	if (chan->num_conf_req || chan->num_conf_rsp)
2103 2104
		goto done;

2105
	switch (chan->mode) {
2106 2107
	case L2CAP_MODE_STREAMING:
	case L2CAP_MODE_ERTM:
2108
		if (test_bit(CONF_STATE2_DEVICE, &chan->conf_state))
2109 2110
			break;

2111 2112 2113
		if (__l2cap_efs_supported(chan))
			set_bit(FLAG_EFS_ENABLE, &chan->flags);

2114
		/* fall through */
2115
	default:
2116
		chan->mode = l2cap_select_mode(rfc.mode, chan->conn->feat_mask);
2117 2118 2119 2120
		break;
	}

done:
2121 2122
	if (chan->imtu != L2CAP_DEFAULT_MTU)
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu);
2123

2124
	switch (chan->mode) {
2125
	case L2CAP_MODE_BASIC:
2126 2127
		if (!(chan->conn->feat_mask & L2CAP_FEAT_ERTM) &&
				!(chan->conn->feat_mask & L2CAP_FEAT_STREAMING))
2128 2129
			break;

2130 2131 2132 2133 2134 2135 2136
		rfc.mode            = L2CAP_MODE_BASIC;
		rfc.txwin_size      = 0;
		rfc.max_transmit    = 0;
		rfc.retrans_timeout = 0;
		rfc.monitor_timeout = 0;
		rfc.max_pdu_size    = 0;

2137 2138
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc),
							(unsigned long) &rfc);
2139 2140 2141 2142
		break;

	case L2CAP_MODE_ERTM:
		rfc.mode            = L2CAP_MODE_ERTM;
2143
		rfc.max_transmit    = chan->max_tx;
2144 2145
		rfc.retrans_timeout = 0;
		rfc.monitor_timeout = 0;
2146 2147 2148 2149 2150 2151

		size = min_t(u16, L2CAP_DEFAULT_MAX_PDU_SIZE, chan->conn->mtu -
						L2CAP_EXT_HDR_SIZE -
						L2CAP_SDULEN_SIZE -
						L2CAP_FCS_SIZE);
		rfc.max_pdu_size = cpu_to_le16(size);
2152

2153 2154 2155 2156
		l2cap_txwin_setup(chan);

		rfc.txwin_size = min_t(u16, chan->tx_win,
						L2CAP_DEFAULT_TX_WINDOW);
2157

2158 2159 2160
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc),
							(unsigned long) &rfc);

2161 2162 2163
		if (test_bit(FLAG_EFS_ENABLE, &chan->flags))
			l2cap_add_opt_efs(&ptr, chan);

2164
		if (!(chan->conn->feat_mask & L2CAP_FEAT_FCS))
2165 2166
			break;

2167
		if (chan->fcs == L2CAP_FCS_NONE ||
2168
				test_bit(CONF_NO_FCS_RECV, &chan->conf_state)) {
2169 2170
			chan->fcs = L2CAP_FCS_NONE;
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1, chan->fcs);
2171
		}
2172 2173 2174 2175

		if (test_bit(FLAG_EXT_CTRL, &chan->flags))
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2,
								chan->tx_win);
2176 2177 2178 2179 2180 2181 2182 2183
		break;

	case L2CAP_MODE_STREAMING:
		rfc.mode            = L2CAP_MODE_STREAMING;
		rfc.txwin_size      = 0;
		rfc.max_transmit    = 0;
		rfc.retrans_timeout = 0;
		rfc.monitor_timeout = 0;
2184 2185 2186 2187 2188 2189

		size = min_t(u16, L2CAP_DEFAULT_MAX_PDU_SIZE, chan->conn->mtu -
						L2CAP_EXT_HDR_SIZE -
						L2CAP_SDULEN_SIZE -
						L2CAP_FCS_SIZE);
		rfc.max_pdu_size = cpu_to_le16(size);
2190

2191 2192 2193
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc),
							(unsigned long) &rfc);

2194 2195 2196
		if (test_bit(FLAG_EFS_ENABLE, &chan->flags))
			l2cap_add_opt_efs(&ptr, chan);

2197
		if (!(chan->conn->feat_mask & L2CAP_FEAT_FCS))
2198 2199
			break;

2200
		if (chan->fcs == L2CAP_FCS_NONE ||
2201
				test_bit(CONF_NO_FCS_RECV, &chan->conf_state)) {
2202 2203
			chan->fcs = L2CAP_FCS_NONE;
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1, chan->fcs);
2204
		}
2205 2206
		break;
	}
L
Linus Torvalds 已提交
2207

2208
	req->dcid  = cpu_to_le16(chan->dcid);
2209
	req->flags = cpu_to_le16(0);
L
Linus Torvalds 已提交
2210 2211 2212 2213

	return ptr - data;
}

2214
static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data)
L
Linus Torvalds 已提交
2215
{
2216 2217
	struct l2cap_conf_rsp *rsp = data;
	void *ptr = rsp->data;
2218 2219
	void *req = chan->conf_req;
	int len = chan->conf_len;
2220 2221
	int type, hint, olen;
	unsigned long val;
2222
	struct l2cap_conf_rfc rfc = { .mode = L2CAP_MODE_BASIC };
2223 2224
	struct l2cap_conf_efs efs;
	u8 remote_efs = 0;
2225
	u16 mtu = L2CAP_DEFAULT_MTU;
2226
	u16 result = L2CAP_CONF_SUCCESS;
2227
	u16 size;
L
Linus Torvalds 已提交
2228

2229
	BT_DBG("chan %p", chan);
2230

2231 2232
	while (len >= L2CAP_CONF_OPT_SIZE) {
		len -= l2cap_get_conf_opt(&req, &type, &olen, &val);
L
Linus Torvalds 已提交
2233

2234
		hint  = type & L2CAP_CONF_HINT;
2235
		type &= L2CAP_CONF_MASK;
2236 2237 2238

		switch (type) {
		case L2CAP_CONF_MTU:
2239
			mtu = val;
2240 2241 2242
			break;

		case L2CAP_CONF_FLUSH_TO:
2243
			chan->flush_to = val;
2244 2245 2246 2247 2248
			break;

		case L2CAP_CONF_QOS:
			break;

2249 2250 2251 2252 2253
		case L2CAP_CONF_RFC:
			if (olen == sizeof(rfc))
				memcpy(&rfc, (void *) val, olen);
			break;

2254 2255
		case L2CAP_CONF_FCS:
			if (val == L2CAP_FCS_NONE)
2256
				set_bit(CONF_NO_FCS_RECV, &chan->conf_state);
2257
			break;
2258

2259 2260 2261 2262
		case L2CAP_CONF_EFS:
			remote_efs = 1;
			if (olen == sizeof(efs))
				memcpy(&efs, (void *) val, olen);
2263 2264
			break;

2265 2266 2267
		case L2CAP_CONF_EWS:
			if (!enable_hs)
				return -ECONNREFUSED;
2268

2269 2270
			set_bit(FLAG_EXT_CTRL, &chan->flags);
			set_bit(CONF_EWS_RECV, &chan->conf_state);
2271
			chan->tx_win_max = L2CAP_DEFAULT_EXT_WINDOW;
2272
			chan->remote_tx_win = val;
2273 2274
			break;

2275 2276 2277 2278 2279 2280 2281 2282 2283 2284
		default:
			if (hint)
				break;

			result = L2CAP_CONF_UNKNOWN;
			*((u8 *) ptr++) = type;
			break;
		}
	}

2285
	if (chan->num_conf_rsp || chan->num_conf_req > 1)
2286 2287
		goto done;

2288
	switch (chan->mode) {
2289 2290
	case L2CAP_MODE_STREAMING:
	case L2CAP_MODE_ERTM:
2291
		if (!test_bit(CONF_STATE2_DEVICE, &chan->conf_state)) {
2292
			chan->mode = l2cap_select_mode(rfc.mode,
2293
					chan->conn->feat_mask);
2294 2295 2296
			break;
		}

2297 2298 2299 2300 2301 2302 2303
		if (remote_efs) {
			if (__l2cap_efs_supported(chan))
				set_bit(FLAG_EFS_ENABLE, &chan->flags);
			else
				return -ECONNREFUSED;
		}

2304
		if (chan->mode != rfc.mode)
2305
			return -ECONNREFUSED;
2306

2307 2308 2309 2310
		break;
	}

done:
2311
	if (chan->mode != rfc.mode) {
2312
		result = L2CAP_CONF_UNACCEPT;
2313
		rfc.mode = chan->mode;
2314

2315
		if (chan->num_conf_rsp == 1)
2316 2317 2318 2319 2320 2321
			return -ECONNREFUSED;

		l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC,
					sizeof(rfc), (unsigned long) &rfc);
	}

2322 2323 2324 2325
	if (result == L2CAP_CONF_SUCCESS) {
		/* Configure output options and let the other side know
		 * which ones we don't like. */

2326 2327 2328
		if (mtu < L2CAP_DEFAULT_MIN_MTU)
			result = L2CAP_CONF_UNACCEPT;
		else {
2329
			chan->omtu = mtu;
2330
			set_bit(CONF_MTU_DONE, &chan->conf_state);
2331
		}
2332
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->omtu);
2333

2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344
		if (remote_efs) {
			if (chan->local_stype != L2CAP_SERV_NOTRAFIC &&
					efs.stype != L2CAP_SERV_NOTRAFIC &&
					efs.stype != chan->local_stype) {

				result = L2CAP_CONF_UNACCEPT;

				if (chan->num_conf_req >= 1)
					return -ECONNREFUSED;

				l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS,
2345
							sizeof(efs),
2346
							(unsigned long) &efs);
2347
			} else {
2348
				/* Send PENDING Conf Rsp */
2349 2350
				result = L2CAP_CONF_PENDING;
				set_bit(CONF_LOC_CONF_PEND, &chan->conf_state);
2351 2352 2353
			}
		}

2354 2355
		switch (rfc.mode) {
		case L2CAP_MODE_BASIC:
2356
			chan->fcs = L2CAP_FCS_NONE;
2357
			set_bit(CONF_MODE_DONE, &chan->conf_state);
2358 2359 2360
			break;

		case L2CAP_MODE_ERTM:
2361 2362 2363 2364
			if (!test_bit(CONF_EWS_RECV, &chan->conf_state))
				chan->remote_tx_win = rfc.txwin_size;
			else
				rfc.txwin_size = L2CAP_DEFAULT_TX_WINDOW;
2365

2366
			chan->remote_max_tx = rfc.max_transmit;
2367

2368 2369 2370 2371 2372 2373 2374
			size = min_t(u16, le16_to_cpu(rfc.max_pdu_size),
						chan->conn->mtu -
						L2CAP_EXT_HDR_SIZE -
						L2CAP_SDULEN_SIZE -
						L2CAP_FCS_SIZE);
			rfc.max_pdu_size = cpu_to_le16(size);
			chan->remote_mps = size;
2375

2376 2377 2378 2379
			rfc.retrans_timeout =
				le16_to_cpu(L2CAP_DEFAULT_RETRANS_TO);
			rfc.monitor_timeout =
				le16_to_cpu(L2CAP_DEFAULT_MONITOR_TO);
2380

2381
			set_bit(CONF_MODE_DONE, &chan->conf_state);
2382 2383 2384 2385

			l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC,
					sizeof(rfc), (unsigned long) &rfc);

2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398
			if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) {
				chan->remote_id = efs.id;
				chan->remote_stype = efs.stype;
				chan->remote_msdu = le16_to_cpu(efs.msdu);
				chan->remote_flush_to =
						le32_to_cpu(efs.flush_to);
				chan->remote_acc_lat =
						le32_to_cpu(efs.acc_lat);
				chan->remote_sdu_itime =
					le32_to_cpu(efs.sdu_itime);
				l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS,
					sizeof(efs), (unsigned long) &efs);
			}
2399 2400 2401
			break;

		case L2CAP_MODE_STREAMING:
2402 2403 2404 2405 2406 2407 2408
			size = min_t(u16, le16_to_cpu(rfc.max_pdu_size),
						chan->conn->mtu -
						L2CAP_EXT_HDR_SIZE -
						L2CAP_SDULEN_SIZE -
						L2CAP_FCS_SIZE);
			rfc.max_pdu_size = cpu_to_le16(size);
			chan->remote_mps = size;
2409

2410
			set_bit(CONF_MODE_DONE, &chan->conf_state);
2411 2412 2413 2414

			l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC,
					sizeof(rfc), (unsigned long) &rfc);

2415 2416 2417
			break;

		default:
2418 2419
			result = L2CAP_CONF_UNACCEPT;

2420
			memset(&rfc, 0, sizeof(rfc));
2421
			rfc.mode = chan->mode;
2422
		}
2423

2424
		if (result == L2CAP_CONF_SUCCESS)
2425
			set_bit(CONF_OUTPUT_DONE, &chan->conf_state);
2426
	}
2427
	rsp->scid   = cpu_to_le16(chan->dcid);
2428 2429 2430 2431
	rsp->result = cpu_to_le16(result);
	rsp->flags  = cpu_to_le16(0x0000);

	return ptr - data;
L
Linus Torvalds 已提交
2432 2433
}

2434
static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len, void *data, u16 *result)
2435 2436 2437 2438 2439
{
	struct l2cap_conf_req *req = data;
	void *ptr = req->data;
	int type, olen;
	unsigned long val;
2440
	struct l2cap_conf_rfc rfc = { .mode = L2CAP_MODE_BASIC };
2441
	struct l2cap_conf_efs efs;
2442

2443
	BT_DBG("chan %p, rsp %p, len %d, req %p", chan, rsp, len, data);
2444 2445 2446 2447 2448 2449 2450 2451

	while (len >= L2CAP_CONF_OPT_SIZE) {
		len -= l2cap_get_conf_opt(&rsp, &type, &olen, &val);

		switch (type) {
		case L2CAP_CONF_MTU:
			if (val < L2CAP_DEFAULT_MIN_MTU) {
				*result = L2CAP_CONF_UNACCEPT;
2452
				chan->imtu = L2CAP_DEFAULT_MIN_MTU;
2453
			} else
2454 2455
				chan->imtu = val;
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu);
2456 2457 2458
			break;

		case L2CAP_CONF_FLUSH_TO:
2459
			chan->flush_to = val;
2460
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_FLUSH_TO,
2461
							2, chan->flush_to);
2462 2463 2464 2465 2466 2467
			break;

		case L2CAP_CONF_RFC:
			if (olen == sizeof(rfc))
				memcpy(&rfc, (void *)val, olen);

2468
			if (test_bit(CONF_STATE2_DEVICE, &chan->conf_state) &&
2469
							rfc.mode != chan->mode)
2470 2471
				return -ECONNREFUSED;

2472
			chan->fcs = 0;
2473 2474 2475 2476

			l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC,
					sizeof(rfc), (unsigned long) &rfc);
			break;
2477 2478 2479 2480

		case L2CAP_CONF_EWS:
			chan->tx_win = min_t(u16, val,
						L2CAP_DEFAULT_EXT_WINDOW);
2481 2482
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2,
							chan->tx_win);
2483
			break;
2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496

		case L2CAP_CONF_EFS:
			if (olen == sizeof(efs))
				memcpy(&efs, (void *)val, olen);

			if (chan->local_stype != L2CAP_SERV_NOTRAFIC &&
					efs.stype != L2CAP_SERV_NOTRAFIC &&
					efs.stype != chan->local_stype)
				return -ECONNREFUSED;

			l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS,
					sizeof(efs), (unsigned long) &efs);
			break;
2497 2498 2499
		}
	}

2500
	if (chan->mode == L2CAP_MODE_BASIC && chan->mode != rfc.mode)
2501 2502
		return -ECONNREFUSED;

2503
	chan->mode = rfc.mode;
2504

2505
	if (*result == L2CAP_CONF_SUCCESS || *result == L2CAP_CONF_PENDING) {
2506 2507
		switch (rfc.mode) {
		case L2CAP_MODE_ERTM:
2508 2509 2510
			chan->retrans_timeout = le16_to_cpu(rfc.retrans_timeout);
			chan->monitor_timeout = le16_to_cpu(rfc.monitor_timeout);
			chan->mps    = le16_to_cpu(rfc.max_pdu_size);
2511 2512 2513 2514 2515 2516 2517 2518 2519

			if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) {
				chan->local_msdu = le16_to_cpu(efs.msdu);
				chan->local_sdu_itime =
						le32_to_cpu(efs.sdu_itime);
				chan->local_acc_lat = le32_to_cpu(efs.acc_lat);
				chan->local_flush_to =
						le32_to_cpu(efs.flush_to);
			}
2520
			break;
2521

2522
		case L2CAP_MODE_STREAMING:
2523
			chan->mps    = le16_to_cpu(rfc.max_pdu_size);
2524 2525 2526
		}
	}

2527
	req->dcid   = cpu_to_le16(chan->dcid);
2528 2529 2530 2531 2532
	req->flags  = cpu_to_le16(0x0000);

	return ptr - data;
}

2533
static int l2cap_build_conf_rsp(struct l2cap_chan *chan, void *data, u16 result, u16 flags)
L
Linus Torvalds 已提交
2534 2535 2536 2537
{
	struct l2cap_conf_rsp *rsp = data;
	void *ptr = rsp->data;

2538
	BT_DBG("chan %p", chan);
L
Linus Torvalds 已提交
2539

2540
	rsp->scid   = cpu_to_le16(chan->dcid);
2541
	rsp->result = cpu_to_le16(result);
2542
	rsp->flags  = cpu_to_le16(flags);
L
Linus Torvalds 已提交
2543 2544 2545 2546

	return ptr - data;
}

2547
void __l2cap_connect_rsp_defer(struct l2cap_chan *chan)
2548 2549
{
	struct l2cap_conn_rsp rsp;
2550
	struct l2cap_conn *conn = chan->conn;
2551 2552
	u8 buf[128];

2553 2554
	rsp.scid   = cpu_to_le16(chan->dcid);
	rsp.dcid   = cpu_to_le16(chan->scid);
2555 2556 2557 2558 2559
	rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
	rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
	l2cap_send_cmd(conn, chan->ident,
				L2CAP_CONN_RSP, sizeof(rsp), &rsp);

2560
	if (test_and_set_bit(CONF_REQ_SENT, &chan->conf_state))
2561 2562 2563 2564 2565 2566 2567
		return;

	l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
			l2cap_build_conf_req(chan, buf), buf);
	chan->num_conf_req++;
}

2568
static void l2cap_conf_rfc_get(struct l2cap_chan *chan, void *rsp, int len)
2569 2570 2571 2572 2573
{
	int type, olen;
	unsigned long val;
	struct l2cap_conf_rfc rfc;

2574
	BT_DBG("chan %p, rsp %p, len %d", chan, rsp, len);
2575

2576
	if ((chan->mode != L2CAP_MODE_ERTM) && (chan->mode != L2CAP_MODE_STREAMING))
2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589
		return;

	while (len >= L2CAP_CONF_OPT_SIZE) {
		len -= l2cap_get_conf_opt(&rsp, &type, &olen, &val);

		switch (type) {
		case L2CAP_CONF_RFC:
			if (olen == sizeof(rfc))
				memcpy(&rfc, (void *)val, olen);
			goto done;
		}
	}

2590 2591 2592 2593 2594 2595 2596 2597 2598 2599
	/* Use sane default values in case a misbehaving remote device
	 * did not send an RFC option.
	 */
	rfc.mode = chan->mode;
	rfc.retrans_timeout = cpu_to_le16(L2CAP_DEFAULT_RETRANS_TO);
	rfc.monitor_timeout = cpu_to_le16(L2CAP_DEFAULT_MONITOR_TO);
	rfc.max_pdu_size = cpu_to_le16(chan->imtu);

	BT_ERR("Expected RFC option was not found, using defaults");

2600 2601 2602
done:
	switch (rfc.mode) {
	case L2CAP_MODE_ERTM:
2603 2604 2605
		chan->retrans_timeout = le16_to_cpu(rfc.retrans_timeout);
		chan->monitor_timeout = le16_to_cpu(rfc.monitor_timeout);
		chan->mps    = le16_to_cpu(rfc.max_pdu_size);
2606 2607
		break;
	case L2CAP_MODE_STREAMING:
2608
		chan->mps    = le16_to_cpu(rfc.max_pdu_size);
2609 2610 2611
	}
}

2612 2613
static inline int l2cap_command_rej(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
2614
	struct l2cap_cmd_rej_unk *rej = (struct l2cap_cmd_rej_unk *) data;
2615

2616
	if (rej->reason != L2CAP_REJ_NOT_UNDERSTOOD)
2617 2618 2619 2620
		return 0;

	if ((conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT) &&
					cmd->ident == conn->info_ident) {
2621
		cancel_delayed_work(&conn->info_timer);
2622 2623

		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
2624
		conn->info_ident = 0;
2625

2626 2627 2628 2629 2630 2631
		l2cap_conn_start(conn);
	}

	return 0;
}

L
Linus Torvalds 已提交
2632 2633 2634 2635
static inline int l2cap_connect_req(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_conn_req *req = (struct l2cap_conn_req *) data;
	struct l2cap_conn_rsp rsp;
2636
	struct l2cap_chan *chan = NULL, *pchan;
2637
	struct sock *parent, *sk = NULL;
2638
	int result, status = L2CAP_CS_NO_INFO;
L
Linus Torvalds 已提交
2639 2640

	u16 dcid = 0, scid = __le16_to_cpu(req->scid);
2641
	__le16 psm = req->psm;
L
Linus Torvalds 已提交
2642 2643 2644 2645

	BT_DBG("psm 0x%2.2x scid 0x%4.4x", psm, scid);

	/* Check if we have socket listening on psm */
2646 2647
	pchan = l2cap_global_chan_by_psm(BT_LISTEN, psm, conn->src);
	if (!pchan) {
L
Linus Torvalds 已提交
2648 2649 2650 2651
		result = L2CAP_CR_BAD_PSM;
		goto sendresp;
	}

2652 2653
	parent = pchan->sk;

2654
	mutex_lock(&conn->chan_lock);
2655
	lock_sock(parent);
2656

2657 2658 2659
	/* Check if the ACL is secure enough (if not SDP) */
	if (psm != cpu_to_le16(0x0001) &&
				!hci_conn_check_link_mode(conn->hcon)) {
2660
		conn->disc_reason = HCI_ERROR_AUTH_FAILURE;
2661 2662 2663 2664
		result = L2CAP_CR_SEC_BLOCK;
		goto response;
	}

L
Linus Torvalds 已提交
2665 2666 2667 2668
	result = L2CAP_CR_NO_MEM;

	/* Check for backlog size */
	if (sk_acceptq_is_full(parent)) {
2669
		BT_DBG("backlog full %d", parent->sk_ack_backlog);
L
Linus Torvalds 已提交
2670 2671 2672
		goto response;
	}

2673 2674
	chan = pchan->ops->new_connection(pchan->data);
	if (!chan)
L
Linus Torvalds 已提交
2675 2676
		goto response;

2677 2678
	sk = chan->sk;

L
Linus Torvalds 已提交
2679
	/* Check if we already have channel with that dcid */
2680
	if (__l2cap_get_chan_by_dcid(conn, scid)) {
L
Linus Torvalds 已提交
2681
		sock_set_flag(sk, SOCK_ZAPPED);
2682
		chan->ops->close(chan->data);
L
Linus Torvalds 已提交
2683 2684 2685 2686 2687 2688 2689
		goto response;
	}

	hci_conn_hold(conn->hcon);

	bacpy(&bt_sk(sk)->src, conn->src);
	bacpy(&bt_sk(sk)->dst, conn->dst);
2690 2691
	chan->psm  = psm;
	chan->dcid = scid;
L
Linus Torvalds 已提交
2692

2693 2694
	bt_accept_enqueue(parent, sk);

2695
	__l2cap_chan_add(conn, chan);
2696

2697
	dcid = chan->scid;
L
Linus Torvalds 已提交
2698

2699
	__set_chan_timer(chan, sk->sk_sndtimeo);
L
Linus Torvalds 已提交
2700

2701
	chan->ident = cmd->ident;
L
Linus Torvalds 已提交
2702

2703
	if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE) {
2704
		if (l2cap_chan_check_security(chan)) {
2705
			if (bt_sk(sk)->defer_setup) {
2706
				__l2cap_state_change(chan, BT_CONNECT2);
2707 2708 2709 2710
				result = L2CAP_CR_PEND;
				status = L2CAP_CS_AUTHOR_PEND;
				parent->sk_data_ready(parent, 0);
			} else {
2711
				__l2cap_state_change(chan, BT_CONFIG);
2712 2713 2714
				result = L2CAP_CR_SUCCESS;
				status = L2CAP_CS_NO_INFO;
			}
2715
		} else {
2716
			__l2cap_state_change(chan, BT_CONNECT2);
2717 2718 2719 2720
			result = L2CAP_CR_PEND;
			status = L2CAP_CS_AUTHEN_PEND;
		}
	} else {
2721
		__l2cap_state_change(chan, BT_CONNECT2);
2722 2723
		result = L2CAP_CR_PEND;
		status = L2CAP_CS_NO_INFO;
L
Linus Torvalds 已提交
2724 2725 2726
	}

response:
2727
	release_sock(parent);
2728
	mutex_unlock(&conn->chan_lock);
L
Linus Torvalds 已提交
2729 2730

sendresp:
2731 2732 2733 2734
	rsp.scid   = cpu_to_le16(scid);
	rsp.dcid   = cpu_to_le16(dcid);
	rsp.result = cpu_to_le16(result);
	rsp.status = cpu_to_le16(status);
L
Linus Torvalds 已提交
2735
	l2cap_send_cmd(conn, cmd->ident, L2CAP_CONN_RSP, sizeof(rsp), &rsp);
2736 2737 2738 2739 2740 2741 2742 2743

	if (result == L2CAP_CR_PEND && status == L2CAP_CS_NO_INFO) {
		struct l2cap_info_req info;
		info.type = cpu_to_le16(L2CAP_IT_FEAT_MASK);

		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_SENT;
		conn->info_ident = l2cap_get_ident(conn);

2744
		schedule_delayed_work(&conn->info_timer,
2745 2746 2747 2748 2749 2750
					msecs_to_jiffies(L2CAP_INFO_TIMEOUT));

		l2cap_send_cmd(conn, conn->info_ident,
					L2CAP_INFO_REQ, sizeof(info), &info);
	}

2751
	if (chan && !test_bit(CONF_REQ_SENT, &chan->conf_state) &&
2752 2753
				result == L2CAP_CR_SUCCESS) {
		u8 buf[128];
2754
		set_bit(CONF_REQ_SENT, &chan->conf_state);
2755
		l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
2756 2757
					l2cap_build_conf_req(chan, buf), buf);
		chan->num_conf_req++;
2758 2759
	}

L
Linus Torvalds 已提交
2760 2761 2762 2763 2764 2765 2766
	return 0;
}

static inline int l2cap_connect_rsp(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_conn_rsp *rsp = (struct l2cap_conn_rsp *) data;
	u16 scid, dcid, result, status;
2767
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
2768
	u8 req[128];
2769
	int err;
L
Linus Torvalds 已提交
2770 2771 2772 2773 2774 2775

	scid   = __le16_to_cpu(rsp->scid);
	dcid   = __le16_to_cpu(rsp->dcid);
	result = __le16_to_cpu(rsp->result);
	status = __le16_to_cpu(rsp->status);

2776 2777
	BT_DBG("dcid 0x%4.4x scid 0x%4.4x result 0x%2.2x status 0x%2.2x",
						dcid, scid, result, status);
L
Linus Torvalds 已提交
2778

2779 2780
	mutex_lock(&conn->chan_lock);

L
Linus Torvalds 已提交
2781
	if (scid) {
2782 2783 2784 2785 2786
		chan = __l2cap_get_chan_by_scid(conn, scid);
		if (!chan) {
			err = -EFAULT;
			goto unlock;
		}
L
Linus Torvalds 已提交
2787
	} else {
2788 2789 2790 2791 2792
		chan = __l2cap_get_chan_by_ident(conn, cmd->ident);
		if (!chan) {
			err = -EFAULT;
			goto unlock;
		}
L
Linus Torvalds 已提交
2793 2794
	}

2795 2796
	err = 0;

2797
	l2cap_chan_lock(chan);
2798

L
Linus Torvalds 已提交
2799 2800
	switch (result) {
	case L2CAP_CR_SUCCESS:
2801
		l2cap_state_change(chan, BT_CONFIG);
2802
		chan->ident = 0;
2803
		chan->dcid = dcid;
2804
		clear_bit(CONF_CONNECT_PEND, &chan->conf_state);
2805

2806
		if (test_and_set_bit(CONF_REQ_SENT, &chan->conf_state))
2807 2808
			break;

L
Linus Torvalds 已提交
2809
		l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
2810 2811
					l2cap_build_conf_req(chan, req), req);
		chan->num_conf_req++;
L
Linus Torvalds 已提交
2812 2813 2814
		break;

	case L2CAP_CR_PEND:
2815
		set_bit(CONF_CONNECT_PEND, &chan->conf_state);
L
Linus Torvalds 已提交
2816 2817 2818
		break;

	default:
2819
		l2cap_chan_del(chan, ECONNREFUSED);
L
Linus Torvalds 已提交
2820 2821 2822
		break;
	}

2823
	l2cap_chan_unlock(chan);
2824 2825 2826 2827 2828

unlock:
	mutex_unlock(&conn->chan_lock);

	return err;
L
Linus Torvalds 已提交
2829 2830
}

2831
static inline void set_default_fcs(struct l2cap_chan *chan)
2832 2833 2834 2835
{
	/* FCS is enabled only in ERTM or streaming mode, if one or both
	 * sides request it.
	 */
2836
	if (chan->mode != L2CAP_MODE_ERTM && chan->mode != L2CAP_MODE_STREAMING)
2837
		chan->fcs = L2CAP_FCS_NONE;
2838
	else if (!test_bit(CONF_NO_FCS_RECV, &chan->conf_state))
2839
		chan->fcs = L2CAP_FCS_CRC16;
2840 2841
}

2842
static inline int l2cap_config_req(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u16 cmd_len, u8 *data)
L
Linus Torvalds 已提交
2843 2844 2845 2846
{
	struct l2cap_conf_req *req = (struct l2cap_conf_req *) data;
	u16 dcid, flags;
	u8 rsp[64];
2847
	struct l2cap_chan *chan;
2848
	int len;
L
Linus Torvalds 已提交
2849 2850 2851 2852 2853 2854

	dcid  = __le16_to_cpu(req->dcid);
	flags = __le16_to_cpu(req->flags);

	BT_DBG("dcid 0x%4.4x flags 0x%2.2x", dcid, flags);

2855
	chan = l2cap_get_chan_by_scid(conn, dcid);
2856
	if (!chan)
L
Linus Torvalds 已提交
2857 2858
		return -ENOENT;

2859
	l2cap_chan_lock(chan);
2860

2861
	if (chan->state != BT_CONFIG && chan->state != BT_CONNECT2) {
2862 2863 2864 2865 2866
		struct l2cap_cmd_rej_cid rej;

		rej.reason = cpu_to_le16(L2CAP_REJ_INVALID_CID);
		rej.scid = cpu_to_le16(chan->scid);
		rej.dcid = cpu_to_le16(chan->dcid);
2867 2868 2869

		l2cap_send_cmd(conn, cmd->ident, L2CAP_COMMAND_REJ,
				sizeof(rej), &rej);
2870
		goto unlock;
2871
	}
2872

2873
	/* Reject if config buffer is too small. */
2874
	len = cmd_len - sizeof(*req);
2875
	if (len < 0 || chan->conf_len + len > sizeof(chan->conf_req)) {
2876
		l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP,
2877
				l2cap_build_conf_rsp(chan, rsp,
2878 2879 2880 2881 2882
					L2CAP_CONF_REJECT, flags), rsp);
		goto unlock;
	}

	/* Store config. */
2883 2884
	memcpy(chan->conf_req + chan->conf_len, req->data, len);
	chan->conf_len += len;
L
Linus Torvalds 已提交
2885 2886 2887 2888

	if (flags & 0x0001) {
		/* Incomplete config. Send empty response. */
		l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP,
2889
				l2cap_build_conf_rsp(chan, rsp,
2890
					L2CAP_CONF_SUCCESS, 0x0001), rsp);
L
Linus Torvalds 已提交
2891 2892 2893 2894
		goto unlock;
	}

	/* Complete config. */
2895
	len = l2cap_parse_conf_req(chan, rsp);
2896
	if (len < 0) {
2897
		l2cap_send_disconn_req(conn, chan, ECONNRESET);
L
Linus Torvalds 已提交
2898
		goto unlock;
2899
	}
L
Linus Torvalds 已提交
2900

2901
	l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP, len, rsp);
2902
	chan->num_conf_rsp++;
2903 2904

	/* Reset config buffer. */
2905
	chan->conf_len = 0;
2906

2907
	if (!test_bit(CONF_OUTPUT_DONE, &chan->conf_state))
2908 2909
		goto unlock;

2910
	if (test_bit(CONF_INPUT_DONE, &chan->conf_state)) {
2911
		set_default_fcs(chan);
2912

2913
		l2cap_state_change(chan, BT_CONNECTED);
2914

2915 2916
		chan->next_tx_seq = 0;
		chan->expected_tx_seq = 0;
2917
		skb_queue_head_init(&chan->tx_q);
2918
		if (chan->mode == L2CAP_MODE_ERTM)
2919
			l2cap_ertm_init(chan);
2920

2921
		l2cap_chan_ready(chan);
2922 2923 2924
		goto unlock;
	}

2925
	if (!test_and_set_bit(CONF_REQ_SENT, &chan->conf_state)) {
2926
		u8 buf[64];
L
Linus Torvalds 已提交
2927
		l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
2928 2929
					l2cap_build_conf_req(chan, buf), buf);
		chan->num_conf_req++;
L
Linus Torvalds 已提交
2930 2931
	}

2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942
	/* Got Conf Rsp PENDING from remote side and asume we sent
	   Conf Rsp PENDING in the code above */
	if (test_bit(CONF_REM_CONF_PEND, &chan->conf_state) &&
			test_bit(CONF_LOC_CONF_PEND, &chan->conf_state)) {

		/* check compatibility */

		clear_bit(CONF_LOC_CONF_PEND, &chan->conf_state);
		set_bit(CONF_OUTPUT_DONE, &chan->conf_state);

		l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP,
2943
					l2cap_build_conf_rsp(chan, rsp,
2944 2945 2946
					L2CAP_CONF_SUCCESS, 0x0000), rsp);
	}

L
Linus Torvalds 已提交
2947
unlock:
2948
	l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
2949 2950 2951 2952 2953 2954 2955
	return 0;
}

static inline int l2cap_config_rsp(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_conf_rsp *rsp = (struct l2cap_conf_rsp *)data;
	u16 scid, flags, result;
2956
	struct l2cap_chan *chan;
2957
	int len = cmd->len - sizeof(*rsp);
L
Linus Torvalds 已提交
2958 2959 2960 2961 2962

	scid   = __le16_to_cpu(rsp->scid);
	flags  = __le16_to_cpu(rsp->flags);
	result = __le16_to_cpu(rsp->result);

2963 2964
	BT_DBG("scid 0x%4.4x flags 0x%2.2x result 0x%2.2x",
			scid, flags, result);
L
Linus Torvalds 已提交
2965

2966
	chan = l2cap_get_chan_by_scid(conn, scid);
2967
	if (!chan)
L
Linus Torvalds 已提交
2968 2969
		return 0;

2970
	l2cap_chan_lock(chan);
2971

L
Linus Torvalds 已提交
2972 2973
	switch (result) {
	case L2CAP_CONF_SUCCESS:
2974
		l2cap_conf_rfc_get(chan, rsp->data, len);
2975
		clear_bit(CONF_REM_CONF_PEND, &chan->conf_state);
L
Linus Torvalds 已提交
2976 2977
		break;

2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996
	case L2CAP_CONF_PENDING:
		set_bit(CONF_REM_CONF_PEND, &chan->conf_state);

		if (test_bit(CONF_LOC_CONF_PEND, &chan->conf_state)) {
			char buf[64];

			len = l2cap_parse_conf_rsp(chan, rsp->data, len,
								buf, &result);
			if (len < 0) {
				l2cap_send_disconn_req(conn, chan, ECONNRESET);
				goto done;
			}

			/* check compatibility */

			clear_bit(CONF_LOC_CONF_PEND, &chan->conf_state);
			set_bit(CONF_OUTPUT_DONE, &chan->conf_state);

			l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP,
2997
						l2cap_build_conf_rsp(chan, buf,
2998 2999 3000 3001
						L2CAP_CONF_SUCCESS, 0x0000), buf);
		}
		goto done;

L
Linus Torvalds 已提交
3002
	case L2CAP_CONF_UNACCEPT:
3003
		if (chan->num_conf_rsp <= L2CAP_CONF_MAX_CONF_RSP) {
3004 3005
			char req[64];

3006
			if (len > sizeof(req) - sizeof(struct l2cap_conf_req)) {
3007
				l2cap_send_disconn_req(conn, chan, ECONNRESET);
3008 3009 3010
				goto done;
			}

3011 3012
			/* throw out any old stored conf requests */
			result = L2CAP_CONF_SUCCESS;
3013 3014
			len = l2cap_parse_conf_rsp(chan, rsp->data, len,
								req, &result);
3015
			if (len < 0) {
3016
				l2cap_send_disconn_req(conn, chan, ECONNRESET);
3017 3018 3019 3020 3021
				goto done;
			}

			l2cap_send_cmd(conn, l2cap_get_ident(conn),
						L2CAP_CONF_REQ, len, req);
3022
			chan->num_conf_req++;
3023 3024 3025
			if (result != L2CAP_CONF_SUCCESS)
				goto done;
			break;
L
Linus Torvalds 已提交
3026 3027
		}

3028
	default:
3029
		l2cap_chan_set_err(chan, ECONNRESET);
3030

3031 3032
		__set_chan_timer(chan,
				msecs_to_jiffies(L2CAP_DISC_REJ_TIMEOUT));
3033
		l2cap_send_disconn_req(conn, chan, ECONNRESET);
L
Linus Torvalds 已提交
3034 3035 3036 3037 3038 3039
		goto done;
	}

	if (flags & 0x01)
		goto done;

3040
	set_bit(CONF_INPUT_DONE, &chan->conf_state);
L
Linus Torvalds 已提交
3041

3042
	if (test_bit(CONF_OUTPUT_DONE, &chan->conf_state)) {
3043
		set_default_fcs(chan);
3044

3045
		l2cap_state_change(chan, BT_CONNECTED);
3046 3047
		chan->next_tx_seq = 0;
		chan->expected_tx_seq = 0;
3048
		skb_queue_head_init(&chan->tx_q);
3049
		if (chan->mode ==  L2CAP_MODE_ERTM)
3050
			l2cap_ertm_init(chan);
3051

3052
		l2cap_chan_ready(chan);
L
Linus Torvalds 已提交
3053 3054 3055
	}

done:
3056
	l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
3057 3058 3059 3060 3061 3062 3063 3064
	return 0;
}

static inline int l2cap_disconnect_req(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_disconn_req *req = (struct l2cap_disconn_req *) data;
	struct l2cap_disconn_rsp rsp;
	u16 dcid, scid;
3065
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
3066 3067 3068 3069 3070 3071 3072
	struct sock *sk;

	scid = __le16_to_cpu(req->scid);
	dcid = __le16_to_cpu(req->dcid);

	BT_DBG("scid 0x%4.4x dcid 0x%4.4x", scid, dcid);

3073 3074 3075 3076 3077
	mutex_lock(&conn->chan_lock);

	chan = __l2cap_get_chan_by_scid(conn, dcid);
	if (!chan) {
		mutex_unlock(&conn->chan_lock);
L
Linus Torvalds 已提交
3078
		return 0;
3079
	}
L
Linus Torvalds 已提交
3080

3081 3082
	l2cap_chan_lock(chan);

3083 3084
	sk = chan->sk;

3085 3086
	rsp.dcid = cpu_to_le16(chan->scid);
	rsp.scid = cpu_to_le16(chan->dcid);
L
Linus Torvalds 已提交
3087 3088
	l2cap_send_cmd(conn, cmd->ident, L2CAP_DISCONN_RSP, sizeof(rsp), &rsp);

3089
	lock_sock(sk);
L
Linus Torvalds 已提交
3090
	sk->sk_shutdown = SHUTDOWN_MASK;
3091
	release_sock(sk);
L
Linus Torvalds 已提交
3092

3093
	l2cap_chan_del(chan, ECONNRESET);
3094 3095

	l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
3096

3097
	chan->ops->close(chan->data);
3098 3099 3100

	mutex_unlock(&conn->chan_lock);

L
Linus Torvalds 已提交
3101 3102 3103 3104 3105 3106 3107
	return 0;
}

static inline int l2cap_disconnect_rsp(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_disconn_rsp *rsp = (struct l2cap_disconn_rsp *) data;
	u16 dcid, scid;
3108
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
3109 3110 3111 3112 3113 3114

	scid = __le16_to_cpu(rsp->scid);
	dcid = __le16_to_cpu(rsp->dcid);

	BT_DBG("dcid 0x%4.4x scid 0x%4.4x", dcid, scid);

3115 3116 3117 3118 3119
	mutex_lock(&conn->chan_lock);

	chan = __l2cap_get_chan_by_scid(conn, scid);
	if (!chan) {
		mutex_unlock(&conn->chan_lock);
L
Linus Torvalds 已提交
3120
		return 0;
3121
	}
L
Linus Torvalds 已提交
3122

3123
	l2cap_chan_lock(chan);
3124 3125

	l2cap_chan_del(chan, 0);
3126 3127

	l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
3128

3129
	chan->ops->close(chan->data);
3130 3131 3132

	mutex_unlock(&conn->chan_lock);

L
Linus Torvalds 已提交
3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144
	return 0;
}

static inline int l2cap_information_req(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_info_req *req = (struct l2cap_info_req *) data;
	u16 type;

	type = __le16_to_cpu(req->type);

	BT_DBG("type 0x%4.4x", type);

3145 3146
	if (type == L2CAP_IT_FEAT_MASK) {
		u8 buf[8];
3147
		u32 feat_mask = l2cap_feat_mask;
3148 3149 3150
		struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) buf;
		rsp->type   = cpu_to_le16(L2CAP_IT_FEAT_MASK);
		rsp->result = cpu_to_le16(L2CAP_IR_SUCCESS);
3151
		if (!disable_ertm)
3152 3153
			feat_mask |= L2CAP_FEAT_ERTM | L2CAP_FEAT_STREAMING
							 | L2CAP_FEAT_FCS;
3154
		if (enable_hs)
3155 3156
			feat_mask |= L2CAP_FEAT_EXT_FLOW
						| L2CAP_FEAT_EXT_WINDOW;
3157

3158
		put_unaligned_le32(feat_mask, rsp->data);
3159 3160
		l2cap_send_cmd(conn, cmd->ident,
					L2CAP_INFO_RSP, sizeof(buf), buf);
3161 3162 3163
	} else if (type == L2CAP_IT_FIXED_CHAN) {
		u8 buf[12];
		struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) buf;
3164 3165 3166 3167 3168 3169

		if (enable_hs)
			l2cap_fixed_chan[0] |= L2CAP_FC_A2MP;
		else
			l2cap_fixed_chan[0] &= ~L2CAP_FC_A2MP;

3170 3171
		rsp->type   = cpu_to_le16(L2CAP_IT_FIXED_CHAN);
		rsp->result = cpu_to_le16(L2CAP_IR_SUCCESS);
3172
		memcpy(rsp->data, l2cap_fixed_chan, sizeof(l2cap_fixed_chan));
3173 3174
		l2cap_send_cmd(conn, cmd->ident,
					L2CAP_INFO_RSP, sizeof(buf), buf);
3175 3176 3177 3178 3179 3180 3181
	} else {
		struct l2cap_info_rsp rsp;
		rsp.type   = cpu_to_le16(type);
		rsp.result = cpu_to_le16(L2CAP_IR_NOTSUPP);
		l2cap_send_cmd(conn, cmd->ident,
					L2CAP_INFO_RSP, sizeof(rsp), &rsp);
	}
L
Linus Torvalds 已提交
3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195

	return 0;
}

static inline int l2cap_information_rsp(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) data;
	u16 type, result;

	type   = __le16_to_cpu(rsp->type);
	result = __le16_to_cpu(rsp->result);

	BT_DBG("type 0x%4.4x result 0x%2.2x", type, result);

3196 3197 3198 3199 3200
	/* L2CAP Info req/rsp are unbound to channels, add extra checks */
	if (cmd->ident != conn->info_ident ||
			conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE)
		return 0;

3201
	cancel_delayed_work(&conn->info_timer);
3202

3203 3204 3205 3206 3207 3208 3209 3210 3211
	if (result != L2CAP_IR_SUCCESS) {
		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
		conn->info_ident = 0;

		l2cap_conn_start(conn);

		return 0;
	}

3212 3213
	switch (type) {
	case L2CAP_IT_FEAT_MASK:
3214
		conn->feat_mask = get_unaligned_le32(rsp->data);
3215

3216
		if (conn->feat_mask & L2CAP_FEAT_FIXED_CHAN) {
3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229
			struct l2cap_info_req req;
			req.type = cpu_to_le16(L2CAP_IT_FIXED_CHAN);

			conn->info_ident = l2cap_get_ident(conn);

			l2cap_send_cmd(conn, conn->info_ident,
					L2CAP_INFO_REQ, sizeof(req), &req);
		} else {
			conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
			conn->info_ident = 0;

			l2cap_conn_start(conn);
		}
3230 3231 3232 3233
		break;

	case L2CAP_IT_FIXED_CHAN:
		conn->fixed_chan_mask = rsp->data[0];
3234
		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
3235
		conn->info_ident = 0;
3236 3237

		l2cap_conn_start(conn);
3238
		break;
3239
	}
3240

L
Linus Torvalds 已提交
3241 3242 3243
	return 0;
}

3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282
static inline int l2cap_create_channel_req(struct l2cap_conn *conn,
					struct l2cap_cmd_hdr *cmd, u16 cmd_len,
					void *data)
{
	struct l2cap_create_chan_req *req = data;
	struct l2cap_create_chan_rsp rsp;
	u16 psm, scid;

	if (cmd_len != sizeof(*req))
		return -EPROTO;

	if (!enable_hs)
		return -EINVAL;

	psm = le16_to_cpu(req->psm);
	scid = le16_to_cpu(req->scid);

	BT_DBG("psm %d, scid %d, amp_id %d", psm, scid, req->amp_id);

	/* Placeholder: Always reject */
	rsp.dcid = 0;
	rsp.scid = cpu_to_le16(scid);
	rsp.result = L2CAP_CR_NO_MEM;
	rsp.status = L2CAP_CS_NO_INFO;

	l2cap_send_cmd(conn, cmd->ident, L2CAP_CREATE_CHAN_RSP,
		       sizeof(rsp), &rsp);

	return 0;
}

static inline int l2cap_create_channel_rsp(struct l2cap_conn *conn,
					struct l2cap_cmd_hdr *cmd, void *data)
{
	BT_DBG("conn %p", conn);

	return l2cap_connect_rsp(conn, cmd, data);
}

3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402
static void l2cap_send_move_chan_rsp(struct l2cap_conn *conn, u8 ident,
							u16 icid, u16 result)
{
	struct l2cap_move_chan_rsp rsp;

	BT_DBG("icid %d, result %d", icid, result);

	rsp.icid = cpu_to_le16(icid);
	rsp.result = cpu_to_le16(result);

	l2cap_send_cmd(conn, ident, L2CAP_MOVE_CHAN_RSP, sizeof(rsp), &rsp);
}

static void l2cap_send_move_chan_cfm(struct l2cap_conn *conn,
				struct l2cap_chan *chan, u16 icid, u16 result)
{
	struct l2cap_move_chan_cfm cfm;
	u8 ident;

	BT_DBG("icid %d, result %d", icid, result);

	ident = l2cap_get_ident(conn);
	if (chan)
		chan->ident = ident;

	cfm.icid = cpu_to_le16(icid);
	cfm.result = cpu_to_le16(result);

	l2cap_send_cmd(conn, ident, L2CAP_MOVE_CHAN_CFM, sizeof(cfm), &cfm);
}

static void l2cap_send_move_chan_cfm_rsp(struct l2cap_conn *conn, u8 ident,
								u16 icid)
{
	struct l2cap_move_chan_cfm_rsp rsp;

	BT_DBG("icid %d", icid);

	rsp.icid = cpu_to_le16(icid);
	l2cap_send_cmd(conn, ident, L2CAP_MOVE_CHAN_CFM_RSP, sizeof(rsp), &rsp);
}

static inline int l2cap_move_channel_req(struct l2cap_conn *conn,
			struct l2cap_cmd_hdr *cmd, u16 cmd_len, void *data)
{
	struct l2cap_move_chan_req *req = data;
	u16 icid = 0;
	u16 result = L2CAP_MR_NOT_ALLOWED;

	if (cmd_len != sizeof(*req))
		return -EPROTO;

	icid = le16_to_cpu(req->icid);

	BT_DBG("icid %d, dest_amp_id %d", icid, req->dest_amp_id);

	if (!enable_hs)
		return -EINVAL;

	/* Placeholder: Always refuse */
	l2cap_send_move_chan_rsp(conn, cmd->ident, icid, result);

	return 0;
}

static inline int l2cap_move_channel_rsp(struct l2cap_conn *conn,
			struct l2cap_cmd_hdr *cmd, u16 cmd_len, void *data)
{
	struct l2cap_move_chan_rsp *rsp = data;
	u16 icid, result;

	if (cmd_len != sizeof(*rsp))
		return -EPROTO;

	icid = le16_to_cpu(rsp->icid);
	result = le16_to_cpu(rsp->result);

	BT_DBG("icid %d, result %d", icid, result);

	/* Placeholder: Always unconfirmed */
	l2cap_send_move_chan_cfm(conn, NULL, icid, L2CAP_MC_UNCONFIRMED);

	return 0;
}

static inline int l2cap_move_channel_confirm(struct l2cap_conn *conn,
			struct l2cap_cmd_hdr *cmd, u16 cmd_len, void *data)
{
	struct l2cap_move_chan_cfm *cfm = data;
	u16 icid, result;

	if (cmd_len != sizeof(*cfm))
		return -EPROTO;

	icid = le16_to_cpu(cfm->icid);
	result = le16_to_cpu(cfm->result);

	BT_DBG("icid %d, result %d", icid, result);

	l2cap_send_move_chan_cfm_rsp(conn, cmd->ident, icid);

	return 0;
}

static inline int l2cap_move_channel_confirm_rsp(struct l2cap_conn *conn,
			struct l2cap_cmd_hdr *cmd, u16 cmd_len, void *data)
{
	struct l2cap_move_chan_cfm_rsp *rsp = data;
	u16 icid;

	if (cmd_len != sizeof(*rsp))
		return -EPROTO;

	icid = le16_to_cpu(rsp->icid);

	BT_DBG("icid %d", icid);

	return 0;
}

3403
static inline int l2cap_check_conn_param(u16 min, u16 max, u16 latency,
3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430
							u16 to_multiplier)
{
	u16 max_latency;

	if (min > max || min < 6 || max > 3200)
		return -EINVAL;

	if (to_multiplier < 10 || to_multiplier > 3200)
		return -EINVAL;

	if (max >= to_multiplier * 8)
		return -EINVAL;

	max_latency = (to_multiplier * 8 / max) - 1;
	if (latency > 499 || latency > max_latency)
		return -EINVAL;

	return 0;
}

static inline int l2cap_conn_param_update_req(struct l2cap_conn *conn,
					struct l2cap_cmd_hdr *cmd, u8 *data)
{
	struct hci_conn *hcon = conn->hcon;
	struct l2cap_conn_param_update_req *req;
	struct l2cap_conn_param_update_rsp rsp;
	u16 min, max, latency, to_multiplier, cmd_len;
3431
	int err;
3432 3433 3434 3435 3436 3437 3438 3439 3440

	if (!(hcon->link_mode & HCI_LM_MASTER))
		return -EINVAL;

	cmd_len = __le16_to_cpu(cmd->len);
	if (cmd_len != sizeof(struct l2cap_conn_param_update_req))
		return -EPROTO;

	req = (struct l2cap_conn_param_update_req *) data;
3441 3442
	min		= __le16_to_cpu(req->min);
	max		= __le16_to_cpu(req->max);
3443 3444 3445 3446 3447 3448 3449
	latency		= __le16_to_cpu(req->latency);
	to_multiplier	= __le16_to_cpu(req->to_multiplier);

	BT_DBG("min 0x%4.4x max 0x%4.4x latency: 0x%4.4x Timeout: 0x%4.4x",
						min, max, latency, to_multiplier);

	memset(&rsp, 0, sizeof(rsp));
3450 3451 3452

	err = l2cap_check_conn_param(min, max, latency, to_multiplier);
	if (err)
3453 3454 3455 3456 3457 3458 3459
		rsp.result = cpu_to_le16(L2CAP_CONN_PARAM_REJECTED);
	else
		rsp.result = cpu_to_le16(L2CAP_CONN_PARAM_ACCEPTED);

	l2cap_send_cmd(conn, cmd->ident, L2CAP_CONN_PARAM_UPDATE_RSP,
							sizeof(rsp), &rsp);

3460 3461 3462
	if (!err)
		hci_le_conn_update(hcon, min, max, latency, to_multiplier);

3463 3464 3465
	return 0;
}

3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514
static inline int l2cap_bredr_sig_cmd(struct l2cap_conn *conn,
			struct l2cap_cmd_hdr *cmd, u16 cmd_len, u8 *data)
{
	int err = 0;

	switch (cmd->code) {
	case L2CAP_COMMAND_REJ:
		l2cap_command_rej(conn, cmd, data);
		break;

	case L2CAP_CONN_REQ:
		err = l2cap_connect_req(conn, cmd, data);
		break;

	case L2CAP_CONN_RSP:
		err = l2cap_connect_rsp(conn, cmd, data);
		break;

	case L2CAP_CONF_REQ:
		err = l2cap_config_req(conn, cmd, cmd_len, data);
		break;

	case L2CAP_CONF_RSP:
		err = l2cap_config_rsp(conn, cmd, data);
		break;

	case L2CAP_DISCONN_REQ:
		err = l2cap_disconnect_req(conn, cmd, data);
		break;

	case L2CAP_DISCONN_RSP:
		err = l2cap_disconnect_rsp(conn, cmd, data);
		break;

	case L2CAP_ECHO_REQ:
		l2cap_send_cmd(conn, cmd->ident, L2CAP_ECHO_RSP, cmd_len, data);
		break;

	case L2CAP_ECHO_RSP:
		break;

	case L2CAP_INFO_REQ:
		err = l2cap_information_req(conn, cmd, data);
		break;

	case L2CAP_INFO_RSP:
		err = l2cap_information_rsp(conn, cmd, data);
		break;

3515 3516 3517 3518 3519 3520 3521 3522
	case L2CAP_CREATE_CHAN_REQ:
		err = l2cap_create_channel_req(conn, cmd, cmd_len, data);
		break;

	case L2CAP_CREATE_CHAN_RSP:
		err = l2cap_create_channel_rsp(conn, cmd, data);
		break;

3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538
	case L2CAP_MOVE_CHAN_REQ:
		err = l2cap_move_channel_req(conn, cmd, cmd_len, data);
		break;

	case L2CAP_MOVE_CHAN_RSP:
		err = l2cap_move_channel_rsp(conn, cmd, cmd_len, data);
		break;

	case L2CAP_MOVE_CHAN_CFM:
		err = l2cap_move_channel_confirm(conn, cmd, cmd_len, data);
		break;

	case L2CAP_MOVE_CHAN_CFM_RSP:
		err = l2cap_move_channel_confirm_rsp(conn, cmd, cmd_len, data);
		break;

3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555
	default:
		BT_ERR("Unknown BR/EDR signaling command 0x%2.2x", cmd->code);
		err = -EINVAL;
		break;
	}

	return err;
}

static inline int l2cap_le_sig_cmd(struct l2cap_conn *conn,
					struct l2cap_cmd_hdr *cmd, u8 *data)
{
	switch (cmd->code) {
	case L2CAP_COMMAND_REJ:
		return 0;

	case L2CAP_CONN_PARAM_UPDATE_REQ:
3556
		return l2cap_conn_param_update_req(conn, cmd, data);
3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568

	case L2CAP_CONN_PARAM_UPDATE_RSP:
		return 0;

	default:
		BT_ERR("Unknown LE signaling command 0x%2.2x", cmd->code);
		return -EINVAL;
	}
}

static inline void l2cap_sig_channel(struct l2cap_conn *conn,
							struct sk_buff *skb)
L
Linus Torvalds 已提交
3569 3570 3571 3572
{
	u8 *data = skb->data;
	int len = skb->len;
	struct l2cap_cmd_hdr cmd;
3573
	int err;
L
Linus Torvalds 已提交
3574 3575 3576 3577

	l2cap_raw_recv(conn, skb);

	while (len >= L2CAP_CMD_HDR_SIZE) {
3578
		u16 cmd_len;
L
Linus Torvalds 已提交
3579 3580 3581 3582
		memcpy(&cmd, data, L2CAP_CMD_HDR_SIZE);
		data += L2CAP_CMD_HDR_SIZE;
		len  -= L2CAP_CMD_HDR_SIZE;

3583
		cmd_len = le16_to_cpu(cmd.len);
L
Linus Torvalds 已提交
3584

3585
		BT_DBG("code 0x%2.2x len %d id 0x%2.2x", cmd.code, cmd_len, cmd.ident);
L
Linus Torvalds 已提交
3586

3587
		if (cmd_len > len || !cmd.ident) {
L
Linus Torvalds 已提交
3588 3589 3590 3591
			BT_DBG("corrupted command");
			break;
		}

3592 3593 3594 3595
		if (conn->hcon->type == LE_LINK)
			err = l2cap_le_sig_cmd(conn, &cmd, data);
		else
			err = l2cap_bredr_sig_cmd(conn, &cmd, cmd_len, data);
L
Linus Torvalds 已提交
3596 3597

		if (err) {
3598
			struct l2cap_cmd_rej_unk rej;
3599 3600

			BT_ERR("Wrong link type (%d)", err);
L
Linus Torvalds 已提交
3601 3602

			/* FIXME: Map err to a valid reason */
3603
			rej.reason = cpu_to_le16(L2CAP_REJ_NOT_UNDERSTOOD);
L
Linus Torvalds 已提交
3604 3605 3606
			l2cap_send_cmd(conn, cmd.ident, L2CAP_COMMAND_REJ, sizeof(rej), &rej);
		}

3607 3608
		data += cmd_len;
		len  -= cmd_len;
L
Linus Torvalds 已提交
3609 3610 3611 3612 3613
	}

	kfree_skb(skb);
}

3614
static int l2cap_check_fcs(struct l2cap_chan *chan,  struct sk_buff *skb)
3615 3616
{
	u16 our_fcs, rcv_fcs;
3617 3618 3619 3620 3621 3622
	int hdr_size;

	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		hdr_size = L2CAP_EXT_HDR_SIZE;
	else
		hdr_size = L2CAP_ENH_HDR_SIZE;
3623

3624
	if (chan->fcs == L2CAP_FCS_CRC16) {
3625
		skb_trim(skb, skb->len - L2CAP_FCS_SIZE);
3626 3627 3628 3629
		rcv_fcs = get_unaligned_le16(skb->data + skb->len);
		our_fcs = crc16(0, skb->data - hdr_size, skb->len + hdr_size);

		if (our_fcs != rcv_fcs)
3630
			return -EBADMSG;
3631 3632 3633 3634
	}
	return 0;
}

3635
static inline void l2cap_send_i_or_rr_or_rnr(struct l2cap_chan *chan)
3636
{
3637
	u32 control = 0;
3638

3639
	chan->frames_sent = 0;
3640

3641
	control |= __set_reqseq(chan, chan->buffer_seq);
3642

3643
	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
3644
		control |= __set_ctrl_super(chan, L2CAP_SUPER_RNR);
3645
		l2cap_send_sframe(chan, control);
3646
		set_bit(CONN_RNR_SENT, &chan->conn_state);
3647 3648
	}

3649
	if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state))
3650
		l2cap_retransmit_frames(chan);
3651

3652
	l2cap_ertm_send(chan);
3653

3654
	if (!test_bit(CONN_LOCAL_BUSY, &chan->conn_state) &&
3655
			chan->frames_sent == 0) {
3656
		control |= __set_ctrl_super(chan, L2CAP_SUPER_RR);
3657
		l2cap_send_sframe(chan, control);
3658 3659 3660
	}
}

3661
static int l2cap_add_to_srej_queue(struct l2cap_chan *chan, struct sk_buff *skb, u16 tx_seq, u8 sar)
3662 3663
{
	struct sk_buff *next_skb;
3664
	int tx_seq_offset, next_tx_seq_offset;
3665 3666 3667 3668

	bt_cb(skb)->tx_seq = tx_seq;
	bt_cb(skb)->sar = sar;

3669
	next_skb = skb_peek(&chan->srej_q);
3670

3671
	tx_seq_offset = __seq_offset(chan, tx_seq, chan->buffer_seq);
3672

3673
	while (next_skb) {
3674 3675 3676
		if (bt_cb(next_skb)->tx_seq == tx_seq)
			return -EINVAL;

3677 3678
		next_tx_seq_offset = __seq_offset(chan,
				bt_cb(next_skb)->tx_seq, chan->buffer_seq);
3679 3680

		if (next_tx_seq_offset > tx_seq_offset) {
3681
			__skb_queue_before(&chan->srej_q, next_skb, skb);
3682
			return 0;
3683 3684
		}

3685
		if (skb_queue_is_last(&chan->srej_q, next_skb))
3686 3687 3688 3689
			next_skb = NULL;
		else
			next_skb = skb_queue_next(&chan->srej_q, next_skb);
	}
3690

3691
	__skb_queue_tail(&chan->srej_q, skb);
3692 3693

	return 0;
3694 3695
}

3696 3697
static void append_skb_frag(struct sk_buff *skb,
			struct sk_buff *new_frag, struct sk_buff **last_frag)
3698
{
3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714
	/* skb->len reflects data in skb as well as all fragments
	 * skb->data_len reflects only data in fragments
	 */
	if (!skb_has_frag_list(skb))
		skb_shinfo(skb)->frag_list = new_frag;

	new_frag->next = NULL;

	(*last_frag)->next = new_frag;
	*last_frag = new_frag;

	skb->len += new_frag->len;
	skb->data_len += new_frag->len;
	skb->truesize += new_frag->truesize;
}

3715
static int l2cap_reassemble_sdu(struct l2cap_chan *chan, struct sk_buff *skb, u32 control)
3716 3717
{
	int err = -EINVAL;
3718

3719 3720
	switch (__get_ctrl_sar(chan, control)) {
	case L2CAP_SAR_UNSEGMENTED:
3721 3722
		if (chan->sdu)
			break;
3723

3724 3725
		err = chan->ops->recv(chan->data, skb);
		break;
3726

3727
	case L2CAP_SAR_START:
3728 3729
		if (chan->sdu)
			break;
3730

3731
		chan->sdu_len = get_unaligned_le16(skb->data);
3732
		skb_pull(skb, L2CAP_SDULEN_SIZE);
3733

3734 3735 3736 3737
		if (chan->sdu_len > chan->imtu) {
			err = -EMSGSIZE;
			break;
		}
3738

3739 3740
		if (skb->len >= chan->sdu_len)
			break;
3741

3742 3743
		chan->sdu = skb;
		chan->sdu_last_frag = skb;
3744

3745 3746
		skb = NULL;
		err = 0;
3747 3748
		break;

3749
	case L2CAP_SAR_CONTINUE:
3750
		if (!chan->sdu)
3751
			break;
3752

3753 3754 3755
		append_skb_frag(chan->sdu, skb,
				&chan->sdu_last_frag);
		skb = NULL;
3756

3757 3758
		if (chan->sdu->len >= chan->sdu_len)
			break;
3759

3760
		err = 0;
3761 3762
		break;

3763
	case L2CAP_SAR_END:
3764
		if (!chan->sdu)
3765
			break;
3766

3767 3768 3769
		append_skb_frag(chan->sdu, skb,
				&chan->sdu_last_frag);
		skb = NULL;
3770

3771 3772
		if (chan->sdu->len != chan->sdu_len)
			break;
3773

3774
		err = chan->ops->recv(chan->data, chan->sdu);
3775

3776 3777 3778 3779 3780
		if (!err) {
			/* Reassembly complete */
			chan->sdu = NULL;
			chan->sdu_last_frag = NULL;
			chan->sdu_len = 0;
3781
		}
3782 3783 3784
		break;
	}

3785 3786 3787 3788 3789 3790 3791
	if (err) {
		kfree_skb(skb);
		kfree_skb(chan->sdu);
		chan->sdu = NULL;
		chan->sdu_last_frag = NULL;
		chan->sdu_len = 0;
	}
3792

3793
	return err;
3794 3795
}

3796
static void l2cap_ertm_enter_local_busy(struct l2cap_chan *chan)
3797
{
3798
	BT_DBG("chan %p, Enter local busy", chan);
3799

3800 3801
	set_bit(CONN_LOCAL_BUSY, &chan->conn_state);

3802
	__set_ack_timer(chan);
3803 3804 3805 3806
}

static void l2cap_ertm_exit_local_busy(struct l2cap_chan *chan)
{
3807
	u32 control;
3808

3809
	if (!test_bit(CONN_RNR_SENT, &chan->conn_state))
3810 3811
		goto done;

3812
	control = __set_reqseq(chan, chan->buffer_seq);
3813
	control |= __set_ctrl_poll(chan);
3814
	control |= __set_ctrl_super(chan, L2CAP_SUPER_RR);
3815
	l2cap_send_sframe(chan, control);
3816
	chan->retry_count = 1;
3817

3818 3819
	__clear_retrans_timer(chan);
	__set_monitor_timer(chan);
3820

3821
	set_bit(CONN_WAIT_F, &chan->conn_state);
3822 3823

done:
3824 3825
	clear_bit(CONN_LOCAL_BUSY, &chan->conn_state);
	clear_bit(CONN_RNR_SENT, &chan->conn_state);
3826

3827
	BT_DBG("chan %p, Exit local busy", chan);
3828 3829
}

3830
void l2cap_chan_busy(struct l2cap_chan *chan, int busy)
3831
{
3832 3833 3834 3835 3836
	if (chan->mode == L2CAP_MODE_ERTM) {
		if (busy)
			l2cap_ertm_enter_local_busy(chan);
		else
			l2cap_ertm_exit_local_busy(chan);
3837 3838 3839
	}
}

3840
static void l2cap_check_srej_gap(struct l2cap_chan *chan, u16 tx_seq)
3841 3842
{
	struct sk_buff *skb;
3843
	u32 control;
3844

3845 3846 3847 3848
	while ((skb = skb_peek(&chan->srej_q)) &&
			!test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
		int err;

3849 3850 3851
		if (bt_cb(skb)->tx_seq != tx_seq)
			break;

3852
		skb = skb_dequeue(&chan->srej_q);
3853
		control = __set_ctrl_sar(chan, bt_cb(skb)->sar);
3854
		err = l2cap_reassemble_sdu(chan, skb, control);
3855 3856 3857 3858 3859 3860

		if (err < 0) {
			l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
			break;
		}

3861 3862
		chan->buffer_seq_srej = __next_seq(chan, chan->buffer_seq_srej);
		tx_seq = __next_seq(chan, tx_seq);
3863 3864 3865
	}
}

3866
static void l2cap_resend_srejframe(struct l2cap_chan *chan, u16 tx_seq)
3867 3868
{
	struct srej_list *l, *tmp;
3869
	u32 control;
3870

3871
	list_for_each_entry_safe(l, tmp, &chan->srej_l, list) {
3872 3873 3874 3875 3876
		if (l->tx_seq == tx_seq) {
			list_del(&l->list);
			kfree(l);
			return;
		}
3877
		control = __set_ctrl_super(chan, L2CAP_SUPER_SREJ);
3878
		control |= __set_reqseq(chan, l->tx_seq);
3879
		l2cap_send_sframe(chan, control);
3880
		list_del(&l->list);
3881
		list_add_tail(&l->list, &chan->srej_l);
3882 3883 3884
	}
}

3885
static int l2cap_send_srejframe(struct l2cap_chan *chan, u16 tx_seq)
3886 3887
{
	struct srej_list *new;
3888
	u32 control;
3889

3890
	while (tx_seq != chan->expected_tx_seq) {
3891
		control = __set_ctrl_super(chan, L2CAP_SUPER_SREJ);
3892
		control |= __set_reqseq(chan, chan->expected_tx_seq);
3893
		l2cap_send_sframe(chan, control);
3894 3895

		new = kzalloc(sizeof(struct srej_list), GFP_ATOMIC);
3896 3897 3898
		if (!new)
			return -ENOMEM;

3899
		new->tx_seq = chan->expected_tx_seq;
3900 3901 3902

		chan->expected_tx_seq = __next_seq(chan, chan->expected_tx_seq);

3903
		list_add_tail(&new->list, &chan->srej_l);
3904
	}
3905 3906

	chan->expected_tx_seq = __next_seq(chan, chan->expected_tx_seq);
3907 3908

	return 0;
3909 3910
}

3911
static inline int l2cap_data_channel_iframe(struct l2cap_chan *chan, u32 rx_control, struct sk_buff *skb)
3912
{
3913
	u16 tx_seq = __get_txseq(chan, rx_control);
3914
	u16 req_seq = __get_reqseq(chan, rx_control);
3915
	u8 sar = __get_ctrl_sar(chan, rx_control);
3916
	int tx_seq_offset, expected_tx_seq_offset;
3917
	int num_to_ack = (chan->tx_win/6) + 1;
3918 3919
	int err = 0;

3920
	BT_DBG("chan %p len %d tx_seq %d rx_control 0x%8.8x", chan, skb->len,
3921
							tx_seq, rx_control);
3922

3923
	if (__is_ctrl_final(chan, rx_control) &&
3924
			test_bit(CONN_WAIT_F, &chan->conn_state)) {
3925
		__clear_monitor_timer(chan);
3926
		if (chan->unacked_frames > 0)
3927
			__set_retrans_timer(chan);
3928
		clear_bit(CONN_WAIT_F, &chan->conn_state);
3929 3930
	}

3931 3932
	chan->expected_ack_seq = req_seq;
	l2cap_drop_acked_frames(chan);
3933

3934
	tx_seq_offset = __seq_offset(chan, tx_seq, chan->buffer_seq);
3935 3936

	/* invalid tx_seq */
3937
	if (tx_seq_offset >= chan->tx_win) {
3938
		l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
3939 3940 3941
		goto drop;
	}

3942 3943 3944
	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
		if (!test_bit(CONN_RNR_SENT, &chan->conn_state))
			l2cap_send_ack(chan);
3945
		goto drop;
3946
	}
3947

3948 3949 3950
	if (tx_seq == chan->expected_tx_seq)
		goto expected;

3951
	if (test_bit(CONN_SREJ_SENT, &chan->conn_state)) {
3952
		struct srej_list *first;
3953

3954
		first = list_first_entry(&chan->srej_l,
3955 3956
				struct srej_list, list);
		if (tx_seq == first->tx_seq) {
3957
			l2cap_add_to_srej_queue(chan, skb, tx_seq, sar);
3958
			l2cap_check_srej_gap(chan, tx_seq);
3959 3960 3961 3962

			list_del(&first->list);
			kfree(first);

3963
			if (list_empty(&chan->srej_l)) {
3964
				chan->buffer_seq = chan->buffer_seq_srej;
3965
				clear_bit(CONN_SREJ_SENT, &chan->conn_state);
3966
				l2cap_send_ack(chan);
3967
				BT_DBG("chan %p, Exit SREJ_SENT", chan);
3968 3969 3970
			}
		} else {
			struct srej_list *l;
3971 3972

			/* duplicated tx_seq */
3973
			if (l2cap_add_to_srej_queue(chan, skb, tx_seq, sar) < 0)
3974
				goto drop;
3975

3976
			list_for_each_entry(l, &chan->srej_l, list) {
3977
				if (l->tx_seq == tx_seq) {
3978
					l2cap_resend_srejframe(chan, tx_seq);
3979 3980 3981
					return 0;
				}
			}
3982 3983 3984 3985 3986 3987

			err = l2cap_send_srejframe(chan, tx_seq);
			if (err < 0) {
				l2cap_send_disconn_req(chan->conn, chan, -err);
				return err;
			}
3988 3989
		}
	} else {
3990 3991
		expected_tx_seq_offset = __seq_offset(chan,
				chan->expected_tx_seq, chan->buffer_seq);
3992 3993 3994 3995 3996

		/* duplicated tx_seq */
		if (tx_seq_offset < expected_tx_seq_offset)
			goto drop;

3997
		set_bit(CONN_SREJ_SENT, &chan->conn_state);
3998

3999
		BT_DBG("chan %p, Enter SREJ", chan);
4000

4001
		INIT_LIST_HEAD(&chan->srej_l);
4002
		chan->buffer_seq_srej = chan->buffer_seq;
4003

4004
		__skb_queue_head_init(&chan->srej_q);
4005
		l2cap_add_to_srej_queue(chan, skb, tx_seq, sar);
4006

4007 4008 4009
		/* Set P-bit only if there are some I-frames to ack. */
		if (__clear_ack_timer(chan))
			set_bit(CONN_SEND_PBIT, &chan->conn_state);
4010

4011 4012 4013 4014 4015
		err = l2cap_send_srejframe(chan, tx_seq);
		if (err < 0) {
			l2cap_send_disconn_req(chan->conn, chan, -err);
			return err;
		}
4016
	}
4017 4018
	return 0;

4019
expected:
4020
	chan->expected_tx_seq = __next_seq(chan, chan->expected_tx_seq);
4021

4022
	if (test_bit(CONN_SREJ_SENT, &chan->conn_state)) {
4023 4024
		bt_cb(skb)->tx_seq = tx_seq;
		bt_cb(skb)->sar = sar;
4025
		__skb_queue_tail(&chan->srej_q, skb);
4026 4027 4028
		return 0;
	}

4029
	err = l2cap_reassemble_sdu(chan, skb, rx_control);
4030 4031
	chan->buffer_seq = __next_seq(chan, chan->buffer_seq);

4032 4033 4034 4035
	if (err < 0) {
		l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
		return err;
	}
4036

4037
	if (__is_ctrl_final(chan, rx_control)) {
4038
		if (!test_and_clear_bit(CONN_REJ_ACT, &chan->conn_state))
4039
			l2cap_retransmit_frames(chan);
4040 4041
	}

4042

4043 4044
	chan->num_acked = (chan->num_acked + 1) % num_to_ack;
	if (chan->num_acked == num_to_ack - 1)
4045
		l2cap_send_ack(chan);
4046 4047
	else
		__set_ack_timer(chan);
4048

4049
	return 0;
4050 4051 4052 4053

drop:
	kfree_skb(skb);
	return 0;
4054 4055
}

4056
static inline void l2cap_data_channel_rrframe(struct l2cap_chan *chan, u32 rx_control)
4057
{
4058
	BT_DBG("chan %p, req_seq %d ctrl 0x%8.8x", chan,
4059
				__get_reqseq(chan, rx_control), rx_control);
4060

4061
	chan->expected_ack_seq = __get_reqseq(chan, rx_control);
4062
	l2cap_drop_acked_frames(chan);
4063

4064
	if (__is_ctrl_poll(chan, rx_control)) {
4065 4066 4067
		set_bit(CONN_SEND_FBIT, &chan->conn_state);
		if (test_bit(CONN_SREJ_SENT, &chan->conn_state)) {
			if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state) &&
4068
					(chan->unacked_frames > 0))
4069
				__set_retrans_timer(chan);
4070

4071
			clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);
4072
			l2cap_send_srejtail(chan);
4073
		} else {
4074
			l2cap_send_i_or_rr_or_rnr(chan);
4075
		}
4076

4077
	} else if (__is_ctrl_final(chan, rx_control)) {
4078
		clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);
4079

4080
		if (!test_and_clear_bit(CONN_REJ_ACT, &chan->conn_state))
4081
			l2cap_retransmit_frames(chan);
4082

4083
	} else {
4084
		if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state) &&
4085
				(chan->unacked_frames > 0))
4086
			__set_retrans_timer(chan);
4087

4088 4089
		clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);
		if (test_bit(CONN_SREJ_SENT, &chan->conn_state))
4090
			l2cap_send_ack(chan);
4091
		else
4092
			l2cap_ertm_send(chan);
4093 4094
	}
}
4095

4096
static inline void l2cap_data_channel_rejframe(struct l2cap_chan *chan, u32 rx_control)
4097
{
4098
	u16 tx_seq = __get_reqseq(chan, rx_control);
4099

4100
	BT_DBG("chan %p, req_seq %d ctrl 0x%8.8x", chan, tx_seq, rx_control);
4101

4102
	clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);
4103

4104 4105
	chan->expected_ack_seq = tx_seq;
	l2cap_drop_acked_frames(chan);
4106

4107
	if (__is_ctrl_final(chan, rx_control)) {
4108
		if (!test_and_clear_bit(CONN_REJ_ACT, &chan->conn_state))
4109
			l2cap_retransmit_frames(chan);
4110
	} else {
4111
		l2cap_retransmit_frames(chan);
4112

4113 4114
		if (test_bit(CONN_WAIT_F, &chan->conn_state))
			set_bit(CONN_REJ_ACT, &chan->conn_state);
4115 4116
	}
}
4117
static inline void l2cap_data_channel_srejframe(struct l2cap_chan *chan, u32 rx_control)
4118
{
4119
	u16 tx_seq = __get_reqseq(chan, rx_control);
4120

4121
	BT_DBG("chan %p, req_seq %d ctrl 0x%8.8x", chan, tx_seq, rx_control);
4122

4123
	clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);
4124

4125
	if (__is_ctrl_poll(chan, rx_control)) {
4126 4127
		chan->expected_ack_seq = tx_seq;
		l2cap_drop_acked_frames(chan);
4128

4129
		set_bit(CONN_SEND_FBIT, &chan->conn_state);
4130
		l2cap_retransmit_one_frame(chan, tx_seq);
4131

4132
		l2cap_ertm_send(chan);
4133

4134
		if (test_bit(CONN_WAIT_F, &chan->conn_state)) {
4135
			chan->srej_save_reqseq = tx_seq;
4136
			set_bit(CONN_SREJ_ACT, &chan->conn_state);
4137
		}
4138
	} else if (__is_ctrl_final(chan, rx_control)) {
4139
		if (test_bit(CONN_SREJ_ACT, &chan->conn_state) &&
4140
				chan->srej_save_reqseq == tx_seq)
4141
			clear_bit(CONN_SREJ_ACT, &chan->conn_state);
4142
		else
4143
			l2cap_retransmit_one_frame(chan, tx_seq);
4144
	} else {
4145
		l2cap_retransmit_one_frame(chan, tx_seq);
4146
		if (test_bit(CONN_WAIT_F, &chan->conn_state)) {
4147
			chan->srej_save_reqseq = tx_seq;
4148
			set_bit(CONN_SREJ_ACT, &chan->conn_state);
4149
		}
4150 4151 4152
	}
}

4153
static inline void l2cap_data_channel_rnrframe(struct l2cap_chan *chan, u32 rx_control)
4154
{
4155
	u16 tx_seq = __get_reqseq(chan, rx_control);
4156

4157
	BT_DBG("chan %p, req_seq %d ctrl 0x%8.8x", chan, tx_seq, rx_control);
4158

4159
	set_bit(CONN_REMOTE_BUSY, &chan->conn_state);
4160 4161
	chan->expected_ack_seq = tx_seq;
	l2cap_drop_acked_frames(chan);
4162

4163
	if (__is_ctrl_poll(chan, rx_control))
4164
		set_bit(CONN_SEND_FBIT, &chan->conn_state);
4165

4166
	if (!test_bit(CONN_SREJ_SENT, &chan->conn_state)) {
4167
		__clear_retrans_timer(chan);
4168
		if (__is_ctrl_poll(chan, rx_control))
4169
			l2cap_send_rr_or_rnr(chan, L2CAP_CTRL_FINAL);
4170
		return;
4171
	}
4172

4173
	if (__is_ctrl_poll(chan, rx_control)) {
4174
		l2cap_send_srejtail(chan);
4175 4176 4177 4178
	} else {
		rx_control = __set_ctrl_super(chan, L2CAP_SUPER_RR);
		l2cap_send_sframe(chan, rx_control);
	}
4179 4180
}

4181
static inline int l2cap_data_channel_sframe(struct l2cap_chan *chan, u32 rx_control, struct sk_buff *skb)
4182
{
4183
	BT_DBG("chan %p rx_control 0x%8.8x len %d", chan, rx_control, skb->len);
4184

4185
	if (__is_ctrl_final(chan, rx_control) &&
4186
			test_bit(CONN_WAIT_F, &chan->conn_state)) {
4187
		__clear_monitor_timer(chan);
4188
		if (chan->unacked_frames > 0)
4189
			__set_retrans_timer(chan);
4190
		clear_bit(CONN_WAIT_F, &chan->conn_state);
4191 4192
	}

4193 4194
	switch (__get_ctrl_super(chan, rx_control)) {
	case L2CAP_SUPER_RR:
4195
		l2cap_data_channel_rrframe(chan, rx_control);
4196 4197
		break;

4198
	case L2CAP_SUPER_REJ:
4199
		l2cap_data_channel_rejframe(chan, rx_control);
4200
		break;
4201

4202
	case L2CAP_SUPER_SREJ:
4203
		l2cap_data_channel_srejframe(chan, rx_control);
4204 4205
		break;

4206
	case L2CAP_SUPER_RNR:
4207
		l2cap_data_channel_rnrframe(chan, rx_control);
4208 4209 4210
		break;
	}

4211
	kfree_skb(skb);
4212 4213 4214
	return 0;
}

4215
static int l2cap_ertm_data_rcv(struct l2cap_chan *chan, struct sk_buff *skb)
4216
{
4217
	u32 control;
4218
	u16 req_seq;
4219 4220
	int len, next_tx_seq_offset, req_seq_offset;

4221 4222
	control = __get_control(chan, skb->data);
	skb_pull(skb, __ctrl_size(chan));
4223 4224 4225 4226 4227 4228 4229
	len = skb->len;

	/*
	 * We can just drop the corrupted I-frame here.
	 * Receiver will miss it and start proper recovery
	 * procedures and ask retransmission.
	 */
4230
	if (l2cap_check_fcs(chan, skb))
4231 4232
		goto drop;

4233
	if (__is_sar_start(chan, control) && !__is_sframe(chan, control))
4234
		len -= L2CAP_SDULEN_SIZE;
4235

4236
	if (chan->fcs == L2CAP_FCS_CRC16)
4237
		len -= L2CAP_FCS_SIZE;
4238

4239
	if (len > chan->mps) {
4240
		l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
4241 4242 4243
		goto drop;
	}

4244
	req_seq = __get_reqseq(chan, control);
4245

4246 4247 4248 4249
	req_seq_offset = __seq_offset(chan, req_seq, chan->expected_ack_seq);

	next_tx_seq_offset = __seq_offset(chan, chan->next_tx_seq,
						chan->expected_ack_seq);
4250 4251 4252

	/* check for invalid req-seq */
	if (req_seq_offset > next_tx_seq_offset) {
4253
		l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
4254 4255 4256
		goto drop;
	}

4257
	if (!__is_sframe(chan, control)) {
4258
		if (len < 0) {
4259
			l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
4260 4261 4262
			goto drop;
		}

4263
		l2cap_data_channel_iframe(chan, control, skb);
4264 4265 4266
	} else {
		if (len != 0) {
			BT_ERR("%d", len);
4267
			l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
4268 4269 4270
			goto drop;
		}

4271
		l2cap_data_channel_sframe(chan, control, skb);
4272 4273 4274 4275 4276 4277 4278 4279 4280
	}

	return 0;

drop:
	kfree_skb(skb);
	return 0;
}

L
Linus Torvalds 已提交
4281 4282
static inline int l2cap_data_channel(struct l2cap_conn *conn, u16 cid, struct sk_buff *skb)
{
4283
	struct l2cap_chan *chan;
4284
	u32 control;
4285
	u16 tx_seq;
4286
	int len;
L
Linus Torvalds 已提交
4287

4288
	chan = l2cap_get_chan_by_scid(conn, cid);
4289
	if (!chan) {
L
Linus Torvalds 已提交
4290
		BT_DBG("unknown cid 0x%4.4x", cid);
4291
		/* Drop packet and return */
4292
		kfree_skb(skb);
4293
		return 0;
L
Linus Torvalds 已提交
4294 4295
	}

4296
	l2cap_chan_lock(chan);
4297

4298
	BT_DBG("chan %p, len %d", chan, skb->len);
L
Linus Torvalds 已提交
4299

4300
	if (chan->state != BT_CONNECTED)
L
Linus Torvalds 已提交
4301 4302
		goto drop;

4303
	switch (chan->mode) {
4304 4305 4306 4307 4308
	case L2CAP_MODE_BASIC:
		/* If socket recv buffers overflows we drop data here
		 * which is *bad* because L2CAP has to be reliable.
		 * But we don't have any other choice. L2CAP doesn't
		 * provide flow control mechanism. */
L
Linus Torvalds 已提交
4309

4310
		if (chan->imtu < skb->len)
4311
			goto drop;
L
Linus Torvalds 已提交
4312

4313
		if (!chan->ops->recv(chan->data, skb))
4314 4315 4316 4317
			goto done;
		break;

	case L2CAP_MODE_ERTM:
4318
		l2cap_ertm_data_rcv(chan, skb);
4319

4320
		goto done;
4321

4322
	case L2CAP_MODE_STREAMING:
4323 4324
		control = __get_control(chan, skb->data);
		skb_pull(skb, __ctrl_size(chan));
4325 4326
		len = skb->len;

4327
		if (l2cap_check_fcs(chan, skb))
4328 4329
			goto drop;

4330
		if (__is_sar_start(chan, control))
4331
			len -= L2CAP_SDULEN_SIZE;
4332

4333
		if (chan->fcs == L2CAP_FCS_CRC16)
4334
			len -= L2CAP_FCS_SIZE;
4335

4336
		if (len > chan->mps || len < 0 || __is_sframe(chan, control))
4337 4338
			goto drop;

4339
		tx_seq = __get_txseq(chan, control);
4340

4341 4342 4343 4344 4345 4346
		if (chan->expected_tx_seq != tx_seq) {
			/* Frame(s) missing - must discard partial SDU */
			kfree_skb(chan->sdu);
			chan->sdu = NULL;
			chan->sdu_last_frag = NULL;
			chan->sdu_len = 0;
4347

4348 4349 4350
			/* TODO: Notify userland of missing data */
		}

4351
		chan->expected_tx_seq = __next_seq(chan, tx_seq);
4352 4353 4354

		if (l2cap_reassemble_sdu(chan, skb, control) == -EMSGSIZE)
			l2cap_send_disconn_req(chan->conn, chan, ECONNRESET);
4355 4356 4357

		goto done;

4358
	default:
4359
		BT_DBG("chan %p: bad mode 0x%2.2x", chan, chan->mode);
4360 4361
		break;
	}
L
Linus Torvalds 已提交
4362 4363 4364 4365 4366

drop:
	kfree_skb(skb);

done:
4367
	l2cap_chan_unlock(chan);
4368

L
Linus Torvalds 已提交
4369 4370 4371
	return 0;
}

4372
static inline int l2cap_conless_channel(struct l2cap_conn *conn, __le16 psm, struct sk_buff *skb)
L
Linus Torvalds 已提交
4373
{
4374
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
4375

4376 4377
	chan = l2cap_global_chan_by_psm(0, psm, conn->src);
	if (!chan)
L
Linus Torvalds 已提交
4378 4379
		goto drop;

4380
	BT_DBG("chan %p, len %d", chan, skb->len);
L
Linus Torvalds 已提交
4381

4382
	if (chan->state != BT_BOUND && chan->state != BT_CONNECTED)
L
Linus Torvalds 已提交
4383 4384
		goto drop;

4385
	if (chan->imtu < skb->len)
L
Linus Torvalds 已提交
4386 4387
		goto drop;

4388
	if (!chan->ops->recv(chan->data, skb))
4389
		return 0;
L
Linus Torvalds 已提交
4390 4391 4392 4393 4394 4395 4396

drop:
	kfree_skb(skb);

	return 0;
}

4397 4398
static inline int l2cap_att_channel(struct l2cap_conn *conn, __le16 cid, struct sk_buff *skb)
{
4399
	struct l2cap_chan *chan;
4400

4401 4402
	chan = l2cap_global_chan_by_scid(0, cid, conn->src);
	if (!chan)
4403 4404
		goto drop;

4405
	BT_DBG("chan %p, len %d", chan, skb->len);
4406

4407
	if (chan->state != BT_BOUND && chan->state != BT_CONNECTED)
4408 4409
		goto drop;

4410
	if (chan->imtu < skb->len)
4411 4412
		goto drop;

4413
	if (!chan->ops->recv(chan->data, skb))
4414
		return 0;
4415 4416 4417 4418 4419 4420 4421

drop:
	kfree_skb(skb);

	return 0;
}

L
Linus Torvalds 已提交
4422 4423 4424
static void l2cap_recv_frame(struct l2cap_conn *conn, struct sk_buff *skb)
{
	struct l2cap_hdr *lh = (void *) skb->data;
4425 4426
	u16 cid, len;
	__le16 psm;
L
Linus Torvalds 已提交
4427 4428 4429 4430 4431

	skb_pull(skb, L2CAP_HDR_SIZE);
	cid = __le16_to_cpu(lh->cid);
	len = __le16_to_cpu(lh->len);

4432 4433 4434 4435 4436
	if (len != skb->len) {
		kfree_skb(skb);
		return;
	}

L
Linus Torvalds 已提交
4437 4438 4439
	BT_DBG("len %d, cid 0x%4.4x", len, cid);

	switch (cid) {
4440
	case L2CAP_CID_LE_SIGNALING:
4441
	case L2CAP_CID_SIGNALING:
L
Linus Torvalds 已提交
4442 4443 4444
		l2cap_sig_channel(conn, skb);
		break;

4445
	case L2CAP_CID_CONN_LESS:
4446
		psm = get_unaligned_le16(skb->data);
L
Linus Torvalds 已提交
4447 4448 4449 4450
		skb_pull(skb, 2);
		l2cap_conless_channel(conn, psm, skb);
		break;

4451 4452 4453 4454
	case L2CAP_CID_LE_DATA:
		l2cap_att_channel(conn, cid, skb);
		break;

4455 4456 4457 4458 4459
	case L2CAP_CID_SMP:
		if (smp_sig_channel(conn, skb))
			l2cap_conn_del(conn->hcon, EACCES);
		break;

L
Linus Torvalds 已提交
4460 4461 4462 4463 4464 4465 4466 4467
	default:
		l2cap_data_channel(conn, cid, skb);
		break;
	}
}

/* ---- L2CAP interface with lower layer (HCI) ---- */

4468
int l2cap_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr)
L
Linus Torvalds 已提交
4469 4470
{
	int exact = 0, lm1 = 0, lm2 = 0;
4471
	struct l2cap_chan *c;
L
Linus Torvalds 已提交
4472 4473 4474 4475

	BT_DBG("hdev %s, bdaddr %s", hdev->name, batostr(bdaddr));

	/* Find listening sockets and check their link_mode */
4476 4477 4478
	read_lock(&chan_list_lock);
	list_for_each_entry(c, &chan_list, global_l) {
		struct sock *sk = c->sk;
4479

4480
		if (c->state != BT_LISTEN)
L
Linus Torvalds 已提交
4481 4482 4483
			continue;

		if (!bacmp(&bt_sk(sk)->src, &hdev->bdaddr)) {
4484
			lm1 |= HCI_LM_ACCEPT;
4485
			if (test_bit(FLAG_ROLE_SWITCH, &c->flags))
4486
				lm1 |= HCI_LM_MASTER;
L
Linus Torvalds 已提交
4487
			exact++;
4488 4489
		} else if (!bacmp(&bt_sk(sk)->src, BDADDR_ANY)) {
			lm2 |= HCI_LM_ACCEPT;
4490
			if (test_bit(FLAG_ROLE_SWITCH, &c->flags))
4491 4492
				lm2 |= HCI_LM_MASTER;
		}
L
Linus Torvalds 已提交
4493
	}
4494
	read_unlock(&chan_list_lock);
L
Linus Torvalds 已提交
4495 4496 4497 4498

	return exact ? lm1 : lm2;
}

4499
int l2cap_connect_cfm(struct hci_conn *hcon, u8 status)
L
Linus Torvalds 已提交
4500
{
4501 4502
	struct l2cap_conn *conn;

L
Linus Torvalds 已提交
4503 4504 4505 4506 4507 4508
	BT_DBG("hcon %p bdaddr %s status %d", hcon, batostr(&hcon->dst), status);

	if (!status) {
		conn = l2cap_conn_add(hcon, status);
		if (conn)
			l2cap_conn_ready(conn);
4509
	} else
4510
		l2cap_conn_del(hcon, bt_to_errno(status));
L
Linus Torvalds 已提交
4511 4512 4513 4514

	return 0;
}

4515
int l2cap_disconn_ind(struct hci_conn *hcon)
4516 4517 4518 4519 4520
{
	struct l2cap_conn *conn = hcon->l2cap_data;

	BT_DBG("hcon %p", hcon);

4521
	if (!conn)
4522
		return HCI_ERROR_REMOTE_USER_TERM;
4523 4524 4525
	return conn->disc_reason;
}

4526
int l2cap_disconn_cfm(struct hci_conn *hcon, u8 reason)
L
Linus Torvalds 已提交
4527 4528 4529
{
	BT_DBG("hcon %p reason %d", hcon, reason);

4530
	l2cap_conn_del(hcon, bt_to_errno(reason));
L
Linus Torvalds 已提交
4531 4532 4533
	return 0;
}

4534
static inline void l2cap_check_encryption(struct l2cap_chan *chan, u8 encrypt)
4535
{
4536
	if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED)
4537 4538
		return;

4539
	if (encrypt == 0x00) {
4540
		if (chan->sec_level == BT_SECURITY_MEDIUM) {
4541
			__clear_chan_timer(chan);
4542 4543
			__set_chan_timer(chan,
					msecs_to_jiffies(L2CAP_ENC_TIMEOUT));
4544
		} else if (chan->sec_level == BT_SECURITY_HIGH)
4545
			l2cap_chan_close(chan, ECONNREFUSED);
4546
	} else {
4547
		if (chan->sec_level == BT_SECURITY_MEDIUM)
4548
			__clear_chan_timer(chan);
4549 4550 4551
	}
}

4552
int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt)
L
Linus Torvalds 已提交
4553
{
4554
	struct l2cap_conn *conn = hcon->l2cap_data;
4555
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
4556

4557
	if (!conn)
L
Linus Torvalds 已提交
4558
		return 0;
4559

L
Linus Torvalds 已提交
4560 4561
	BT_DBG("conn %p", conn);

4562 4563
	if (hcon->type == LE_LINK) {
		smp_distribute_keys(conn, 0);
4564
		cancel_delayed_work(&conn->security_timer);
4565 4566
	}

4567
	mutex_lock(&conn->chan_lock);
L
Linus Torvalds 已提交
4568

4569
	list_for_each_entry(chan, &conn->chan_l, list) {
4570
		l2cap_chan_lock(chan);
L
Linus Torvalds 已提交
4571

4572 4573 4574 4575 4576
		BT_DBG("chan->scid %d", chan->scid);

		if (chan->scid == L2CAP_CID_LE_DATA) {
			if (!status && encrypt) {
				chan->sec_level = hcon->sec_level;
4577
				l2cap_chan_ready(chan);
4578 4579
			}

4580
			l2cap_chan_unlock(chan);
4581 4582 4583
			continue;
		}

4584
		if (test_bit(CONF_CONNECT_PEND, &chan->conf_state)) {
4585
			l2cap_chan_unlock(chan);
4586 4587 4588
			continue;
		}

4589 4590
		if (!status && (chan->state == BT_CONNECTED ||
						chan->state == BT_CONFIG)) {
4591
			l2cap_check_encryption(chan, encrypt);
4592
			l2cap_chan_unlock(chan);
4593 4594 4595
			continue;
		}

4596
		if (chan->state == BT_CONNECT) {
4597
			if (!status) {
4598
				l2cap_send_conn_req(chan);
4599
			} else {
4600
				__clear_chan_timer(chan);
4601 4602
				__set_chan_timer(chan,
					msecs_to_jiffies(L2CAP_DISC_TIMEOUT));
4603
			}
4604
		} else if (chan->state == BT_CONNECT2) {
4605
			struct sock *sk = chan->sk;
4606
			struct l2cap_conn_rsp rsp;
4607
			__u16 res, stat;
L
Linus Torvalds 已提交
4608

4609 4610
			lock_sock(sk);

4611
			if (!status) {
4612 4613 4614 4615
				if (bt_sk(sk)->defer_setup) {
					struct sock *parent = bt_sk(sk)->parent;
					res = L2CAP_CR_PEND;
					stat = L2CAP_CS_AUTHOR_PEND;
4616 4617
					if (parent)
						parent->sk_data_ready(parent, 0);
4618
				} else {
4619
					__l2cap_state_change(chan, BT_CONFIG);
4620 4621 4622
					res = L2CAP_CR_SUCCESS;
					stat = L2CAP_CS_NO_INFO;
				}
4623
			} else {
4624
				__l2cap_state_change(chan, BT_DISCONN);
4625 4626
				__set_chan_timer(chan,
					msecs_to_jiffies(L2CAP_DISC_TIMEOUT));
4627 4628
				res = L2CAP_CR_SEC_BLOCK;
				stat = L2CAP_CS_NO_INFO;
4629 4630
			}

4631 4632
			release_sock(sk);

4633 4634
			rsp.scid   = cpu_to_le16(chan->dcid);
			rsp.dcid   = cpu_to_le16(chan->scid);
4635 4636
			rsp.result = cpu_to_le16(res);
			rsp.status = cpu_to_le16(stat);
4637 4638
			l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_RSP,
							sizeof(rsp), &rsp);
4639
		}
L
Linus Torvalds 已提交
4640

4641
		l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
4642 4643
	}

4644
	mutex_unlock(&conn->chan_lock);
4645

L
Linus Torvalds 已提交
4646 4647 4648
	return 0;
}

4649
int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags)
L
Linus Torvalds 已提交
4650 4651 4652
{
	struct l2cap_conn *conn = hcon->l2cap_data;

4653 4654 4655 4656
	if (!conn)
		conn = l2cap_conn_add(hcon, 0);

	if (!conn)
L
Linus Torvalds 已提交
4657 4658 4659 4660
		goto drop;

	BT_DBG("conn %p len %d flags 0x%x", conn, skb->len, flags);

4661
	if (!(flags & ACL_CONT)) {
L
Linus Torvalds 已提交
4662
		struct l2cap_hdr *hdr;
4663
		struct l2cap_chan *chan;
4664
		u16 cid;
L
Linus Torvalds 已提交
4665 4666 4667 4668 4669 4670 4671 4672 4673 4674
		int len;

		if (conn->rx_len) {
			BT_ERR("Unexpected start frame (len %d)", skb->len);
			kfree_skb(conn->rx_skb);
			conn->rx_skb = NULL;
			conn->rx_len = 0;
			l2cap_conn_unreliable(conn, ECOMM);
		}

4675 4676
		/* Start fragment always begin with Basic L2CAP header */
		if (skb->len < L2CAP_HDR_SIZE) {
L
Linus Torvalds 已提交
4677 4678 4679 4680 4681 4682 4683
			BT_ERR("Frame is too short (len %d)", skb->len);
			l2cap_conn_unreliable(conn, ECOMM);
			goto drop;
		}

		hdr = (struct l2cap_hdr *) skb->data;
		len = __le16_to_cpu(hdr->len) + L2CAP_HDR_SIZE;
4684
		cid = __le16_to_cpu(hdr->cid);
L
Linus Torvalds 已提交
4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700

		if (len == skb->len) {
			/* Complete frame received */
			l2cap_recv_frame(conn, skb);
			return 0;
		}

		BT_DBG("Start: total len %d, frag len %d", len, skb->len);

		if (skb->len > len) {
			BT_ERR("Frame is too long (len %d, expected len %d)",
				skb->len, len);
			l2cap_conn_unreliable(conn, ECOMM);
			goto drop;
		}

4701
		chan = l2cap_get_chan_by_scid(conn, cid);
4702

4703 4704
		if (chan && chan->sk) {
			struct sock *sk = chan->sk;
4705
			lock_sock(sk);
4706

4707
			if (chan->imtu < len - L2CAP_HDR_SIZE) {
4708 4709
				BT_ERR("Frame exceeding recv MTU (len %d, "
							"MTU %d)", len,
4710
							chan->imtu);
4711
				release_sock(sk);
4712 4713 4714
				l2cap_conn_unreliable(conn, ECOMM);
				goto drop;
			}
4715
			release_sock(sk);
4716
		}
4717

L
Linus Torvalds 已提交
4718
		/* Allocate skb for the complete frame (with header) */
4719 4720
		conn->rx_skb = bt_skb_alloc(len, GFP_ATOMIC);
		if (!conn->rx_skb)
L
Linus Torvalds 已提交
4721 4722
			goto drop;

4723
		skb_copy_from_linear_data(skb, skb_put(conn->rx_skb, skb->len),
4724
								skb->len);
L
Linus Torvalds 已提交
4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744
		conn->rx_len = len - skb->len;
	} else {
		BT_DBG("Cont: frag len %d (expecting %d)", skb->len, conn->rx_len);

		if (!conn->rx_len) {
			BT_ERR("Unexpected continuation frame (len %d)", skb->len);
			l2cap_conn_unreliable(conn, ECOMM);
			goto drop;
		}

		if (skb->len > conn->rx_len) {
			BT_ERR("Fragment is too long (len %d, expected %d)",
					skb->len, conn->rx_len);
			kfree_skb(conn->rx_skb);
			conn->rx_skb = NULL;
			conn->rx_len = 0;
			l2cap_conn_unreliable(conn, ECOMM);
			goto drop;
		}

4745
		skb_copy_from_linear_data(skb, skb_put(conn->rx_skb, skb->len),
4746
								skb->len);
L
Linus Torvalds 已提交
4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760
		conn->rx_len -= skb->len;

		if (!conn->rx_len) {
			/* Complete frame received */
			l2cap_recv_frame(conn, conn->rx_skb);
			conn->rx_skb = NULL;
		}
	}

drop:
	kfree_skb(skb);
	return 0;
}

4761
static int l2cap_debugfs_show(struct seq_file *f, void *p)
L
Linus Torvalds 已提交
4762
{
4763
	struct l2cap_chan *c;
L
Linus Torvalds 已提交
4764

4765
	read_lock(&chan_list_lock);
L
Linus Torvalds 已提交
4766

4767 4768
	list_for_each_entry(c, &chan_list, global_l) {
		struct sock *sk = c->sk;
4769

4770
		seq_printf(f, "%s %s %d %d 0x%4.4x 0x%4.4x %d %d %d %d\n",
4771 4772
					batostr(&bt_sk(sk)->src),
					batostr(&bt_sk(sk)->dst),
4773
					c->state, __le16_to_cpu(c->psm),
4774 4775
					c->scid, c->dcid, c->imtu, c->omtu,
					c->sec_level, c->mode);
4776
	}
L
Linus Torvalds 已提交
4777

4778
	read_unlock(&chan_list_lock);
L
Linus Torvalds 已提交
4779

4780
	return 0;
L
Linus Torvalds 已提交
4781 4782
}

4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795
static int l2cap_debugfs_open(struct inode *inode, struct file *file)
{
	return single_open(file, l2cap_debugfs_show, inode->i_private);
}

static const struct file_operations l2cap_debugfs_fops = {
	.open		= l2cap_debugfs_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static struct dentry *l2cap_debugfs;
L
Linus Torvalds 已提交
4796

4797
int __init l2cap_init(void)
L
Linus Torvalds 已提交
4798 4799
{
	int err;
4800

4801
	err = l2cap_init_sockets();
L
Linus Torvalds 已提交
4802 4803 4804
	if (err < 0)
		return err;

4805 4806 4807 4808 4809 4810
	if (bt_debugfs) {
		l2cap_debugfs = debugfs_create_file("l2cap", 0444,
					bt_debugfs, NULL, &l2cap_debugfs_fops);
		if (!l2cap_debugfs)
			BT_ERR("Failed to create L2CAP debug file");
	}
L
Linus Torvalds 已提交
4811 4812 4813 4814

	return 0;
}

4815
void l2cap_exit(void)
L
Linus Torvalds 已提交
4816
{
4817
	debugfs_remove(l2cap_debugfs);
4818
	l2cap_cleanup_sockets();
L
Linus Torvalds 已提交
4819 4820
}

4821 4822
module_param(disable_ertm, bool, 0644);
MODULE_PARM_DESC(disable_ertm, "Disable enhanced retransmission mode");