l2cap_core.c 176.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
7
   Copyright (c) 2012 Code Aurora Forum.  All rights reserved.
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18

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

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

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

#include <linux/module.h>

33
#include <linux/debugfs.h>
34
#include <linux/crc16.h>
L
Linus Torvalds 已提交
35 36 37 38

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

40
#include "smp.h"
41
#include "a2mp.h"
42
#include "amp.h"
L
Linus Torvalds 已提交
43

44 45
#define LE_FLOWCTL_MAX_CREDITS 65535

46
bool disable_ertm;
47

48
static u32 l2cap_feat_mask = L2CAP_FEAT_FIXED_CHAN | L2CAP_FEAT_UCD;
L
Linus Torvalds 已提交
49

50 51
static LIST_HEAD(chan_list);
static DEFINE_RWLOCK(chan_list_lock);
L
Linus Torvalds 已提交
52

53 54 55
static u16 le_max_credits = L2CAP_LE_MAX_CREDITS;
static u16 le_default_mps = L2CAP_LE_DEFAULT_MPS;

L
Linus Torvalds 已提交
56
static struct sk_buff *l2cap_build_cmd(struct l2cap_conn *conn,
57
				       u8 code, u8 ident, u16 dlen, void *data);
58
static void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len,
59
			   void *data);
60
static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data);
61
static void l2cap_send_disconn_req(struct l2cap_chan *chan, int err);
L
Linus Torvalds 已提交
62

63
static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
64
		     struct sk_buff_head *skbs, u8 event);
65

66 67 68 69 70 71 72 73 74 75 76 77
static inline __u8 bdaddr_type(struct hci_conn *hcon, __u8 type)
{
	if (hcon->type == LE_LINK) {
		if (type == ADDR_LE_DEV_PUBLIC)
			return BDADDR_LE_PUBLIC;
		else
			return BDADDR_LE_RANDOM;
	}

	return BDADDR_BREDR;
}

78
/* ---- L2CAP channels ---- */
79

80 81
static struct l2cap_chan *__l2cap_get_chan_by_dcid(struct l2cap_conn *conn,
						   u16 cid)
82
{
83
	struct l2cap_chan *c;
84

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

92 93
static struct l2cap_chan *__l2cap_get_chan_by_scid(struct l2cap_conn *conn,
						   u16 cid)
94
{
95
	struct l2cap_chan *c;
96

97 98 99
	list_for_each_entry(c, &conn->chan_l, list) {
		if (c->scid == cid)
			return c;
100
	}
101
	return NULL;
102 103 104
}

/* Find channel with given SCID.
105
 * Returns locked channel. */
106 107
static struct l2cap_chan *l2cap_get_chan_by_scid(struct l2cap_conn *conn,
						 u16 cid)
108
{
109
	struct l2cap_chan *c;
110

111
	mutex_lock(&conn->chan_lock);
112
	c = __l2cap_get_chan_by_scid(conn, cid);
113 114
	if (c)
		l2cap_chan_lock(c);
115 116
	mutex_unlock(&conn->chan_lock);

117
	return c;
118 119
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
/* Find channel with given DCID.
 * Returns locked channel.
 */
static struct l2cap_chan *l2cap_get_chan_by_dcid(struct l2cap_conn *conn,
						 u16 cid)
{
	struct l2cap_chan *c;

	mutex_lock(&conn->chan_lock);
	c = __l2cap_get_chan_by_dcid(conn, cid);
	if (c)
		l2cap_chan_lock(c);
	mutex_unlock(&conn->chan_lock);

	return c;
}

137 138
static struct l2cap_chan *__l2cap_get_chan_by_ident(struct l2cap_conn *conn,
						    u8 ident)
139
{
140
	struct l2cap_chan *c;
141

142 143 144
	list_for_each_entry(c, &conn->chan_l, list) {
		if (c->ident == ident)
			return c;
145
	}
146
	return NULL;
147 148
}

M
Mat Martineau 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162
static struct l2cap_chan *l2cap_get_chan_by_ident(struct l2cap_conn *conn,
						  u8 ident)
{
	struct l2cap_chan *c;

	mutex_lock(&conn->chan_lock);
	c = __l2cap_get_chan_by_ident(conn, ident);
	if (c)
		l2cap_chan_lock(c);
	mutex_unlock(&conn->chan_lock);

	return c;
}

163
static struct l2cap_chan *__l2cap_global_chan_by_addr(__le16 psm, bdaddr_t *src)
164
{
165
	struct l2cap_chan *c;
166

167
	list_for_each_entry(c, &chan_list, global_l) {
168
		if (c->sport == psm && !bacmp(&c->src, src))
169
			return c;
170
	}
171
	return NULL;
172 173 174 175
}

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

178
	write_lock(&chan_list_lock);
179

180
	if (psm && __l2cap_global_chan_by_addr(psm, src)) {
181 182
		err = -EADDRINUSE;
		goto done;
183 184
	}

185 186 187 188 189 190 191 192 193
	if (psm) {
		chan->psm = psm;
		chan->sport = psm;
		err = 0;
	} else {
		u16 p;

		err = -EINVAL;
		for (p = 0x1001; p < 0x1100; p += 2)
194
			if (!__l2cap_global_chan_by_addr(cpu_to_le16(p), src)) {
195 196 197 198 199 200
				chan->psm   = cpu_to_le16(p);
				chan->sport = cpu_to_le16(p);
				err = 0;
				break;
			}
	}
201

202
done:
203
	write_unlock(&chan_list_lock);
204
	return err;
205
}
206
EXPORT_SYMBOL_GPL(l2cap_add_psm);
207 208 209

int l2cap_add_scid(struct l2cap_chan *chan,  __u16 scid)
{
210
	write_lock(&chan_list_lock);
211

212 213 214 215
	/* Override the defaults (which are for conn-oriented) */
	chan->omtu = L2CAP_DEFAULT_MTU;
	chan->chan_type = L2CAP_CHAN_FIXED;

216 217
	chan->scid = scid;

218
	write_unlock(&chan_list_lock);
219 220 221 222

	return 0;
}

223
static u16 l2cap_alloc_cid(struct l2cap_conn *conn)
224
{
225
	u16 cid, dyn_end;
226

227 228 229 230 231 232
	if (conn->hcon->type == LE_LINK)
		dyn_end = L2CAP_CID_LE_DYN_END;
	else
		dyn_end = L2CAP_CID_DYN_END;

	for (cid = L2CAP_CID_DYN_START; cid < dyn_end; cid++) {
233
		if (!__l2cap_get_chan_by_scid(conn, cid))
234 235 236 237 238 239
			return cid;
	}

	return 0;
}

240
static void l2cap_state_change(struct l2cap_chan *chan, int state)
241
{
242
	BT_DBG("chan %p %s -> %s", chan, state_to_string(chan->state),
243
	       state_to_string(state));
244

245
	chan->state = state;
246
	chan->ops->state_change(chan, state, 0);
247 248
}

249 250
static inline void l2cap_state_change_and_error(struct l2cap_chan *chan,
						int state, int err)
251
{
252
	chan->state = state;
253
	chan->ops->state_change(chan, chan->state, err);
254 255 256 257
}

static inline void l2cap_chan_set_err(struct l2cap_chan *chan, int err)
{
258
	chan->ops->state_change(chan, chan->state, err);
259 260
}

261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
static void __set_retrans_timer(struct l2cap_chan *chan)
{
	if (!delayed_work_pending(&chan->monitor_timer) &&
	    chan->retrans_timeout) {
		l2cap_set_timer(chan, &chan->retrans_timer,
				msecs_to_jiffies(chan->retrans_timeout));
	}
}

static void __set_monitor_timer(struct l2cap_chan *chan)
{
	__clear_retrans_timer(chan);
	if (chan->monitor_timeout) {
		l2cap_set_timer(chan, &chan->monitor_timer,
				msecs_to_jiffies(chan->monitor_timeout));
	}
}

279 280 281 282 283 284 285 286 287 288 289 290 291
static struct sk_buff *l2cap_ertm_seq_in_queue(struct sk_buff_head *head,
					       u16 seq)
{
	struct sk_buff *skb;

	skb_queue_walk(head, skb) {
		if (bt_cb(skb)->control.txseq == seq)
			return skb;
	}

	return NULL;
}

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
/* ---- L2CAP sequence number lists ---- */

/* For ERTM, ordered lists of sequence numbers must be tracked for
 * SREJ requests that are received and for frames that are to be
 * retransmitted. These seq_list functions implement a singly-linked
 * list in an array, where membership in the list can also be checked
 * in constant time. Items can also be added to the tail of the list
 * and removed from the head in constant time, without further memory
 * allocs or frees.
 */

static int l2cap_seq_list_init(struct l2cap_seq_list *seq_list, u16 size)
{
	size_t alloc_size, i;

	/* Allocated size is a power of 2 to map sequence numbers
	 * (which may be up to 14 bits) in to a smaller array that is
	 * sized for the negotiated ERTM transmit windows.
	 */
	alloc_size = roundup_pow_of_two(size);

	seq_list->list = kmalloc(sizeof(u16) * alloc_size, GFP_KERNEL);
	if (!seq_list->list)
		return -ENOMEM;

	seq_list->mask = alloc_size - 1;
	seq_list->head = L2CAP_SEQ_LIST_CLEAR;
	seq_list->tail = L2CAP_SEQ_LIST_CLEAR;
	for (i = 0; i < alloc_size; i++)
		seq_list->list[i] = L2CAP_SEQ_LIST_CLEAR;

	return 0;
}

static inline void l2cap_seq_list_free(struct l2cap_seq_list *seq_list)
{
	kfree(seq_list->list);
}

static inline bool l2cap_seq_list_contains(struct l2cap_seq_list *seq_list,
					   u16 seq)
{
	/* Constant-time check for list membership */
	return seq_list->list[seq & seq_list->mask] != L2CAP_SEQ_LIST_CLEAR;
}

338
static inline u16 l2cap_seq_list_pop(struct l2cap_seq_list *seq_list)
339
{
340
	u16 seq = seq_list->head;
341 342
	u16 mask = seq_list->mask;

343 344 345 346 347 348
	seq_list->head = seq_list->list[seq & mask];
	seq_list->list[seq & mask] = L2CAP_SEQ_LIST_CLEAR;

	if (seq_list->head == L2CAP_SEQ_LIST_TAIL) {
		seq_list->head = L2CAP_SEQ_LIST_CLEAR;
		seq_list->tail = L2CAP_SEQ_LIST_CLEAR;
349 350
	}

351
	return seq;
352 353 354 355
}

static void l2cap_seq_list_clear(struct l2cap_seq_list *seq_list)
{
356
	u16 i;
357

358 359 360 361 362 363 364 365
	if (seq_list->head == L2CAP_SEQ_LIST_CLEAR)
		return;

	for (i = 0; i <= seq_list->mask; i++)
		seq_list->list[i] = L2CAP_SEQ_LIST_CLEAR;

	seq_list->head = L2CAP_SEQ_LIST_CLEAR;
	seq_list->tail = L2CAP_SEQ_LIST_CLEAR;
366 367 368 369 370 371 372 373
}

static void l2cap_seq_list_append(struct l2cap_seq_list *seq_list, u16 seq)
{
	u16 mask = seq_list->mask;

	/* All appends happen in constant time */

374 375
	if (seq_list->list[seq & mask] != L2CAP_SEQ_LIST_CLEAR)
		return;
376

377 378 379 380 381 382 383
	if (seq_list->tail == L2CAP_SEQ_LIST_CLEAR)
		seq_list->head = seq;
	else
		seq_list->list[seq_list->tail & mask] = seq;

	seq_list->tail = seq;
	seq_list->list[seq & mask] = L2CAP_SEQ_LIST_TAIL;
384 385
}

386
static void l2cap_chan_timeout(struct work_struct *work)
387
{
388
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
389
					       chan_timer.work);
390
	struct l2cap_conn *conn = chan->conn;
391 392
	int reason;

393
	BT_DBG("chan %p state %s", chan, state_to_string(chan->state));
394

395
	mutex_lock(&conn->chan_lock);
396
	l2cap_chan_lock(chan);
397

398
	if (chan->state == BT_CONNECTED || chan->state == BT_CONFIG)
399
		reason = ECONNREFUSED;
400
	else if (chan->state == BT_CONNECT &&
401
		 chan->sec_level != BT_SECURITY_SDP)
402 403 404 405
		reason = ECONNREFUSED;
	else
		reason = ETIMEDOUT;

406
	l2cap_chan_close(chan, reason);
407

408
	l2cap_chan_unlock(chan);
409

410
	chan->ops->close(chan);
411 412
	mutex_unlock(&conn->chan_lock);

413
	l2cap_chan_put(chan);
414 415
}

416
struct l2cap_chan *l2cap_chan_create(void)
417 418 419 420 421 422 423
{
	struct l2cap_chan *chan;

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

424 425
	mutex_init(&chan->lock);

426 427 428
	/* Set default lock nesting level */
	atomic_set(&chan->nesting, L2CAP_NESTING_NORMAL);

429
	write_lock(&chan_list_lock);
430
	list_add(&chan->global_l, &chan_list);
431
	write_unlock(&chan_list_lock);
432

433
	INIT_DELAYED_WORK(&chan->chan_timer, l2cap_chan_timeout);
434

435 436
	chan->state = BT_OPEN;

437
	kref_init(&chan->kref);
438

439 440 441
	/* This flag is cleared in l2cap_chan_ready() */
	set_bit(CONF_NOT_COMPLETE, &chan->conf_state);

442
	BT_DBG("chan %p", chan);
443

444 445
	return chan;
}
446
EXPORT_SYMBOL_GPL(l2cap_chan_create);
447

448
static void l2cap_chan_destroy(struct kref *kref)
449
{
450 451
	struct l2cap_chan *chan = container_of(kref, struct l2cap_chan, kref);

452 453
	BT_DBG("chan %p", chan);

454
	write_lock(&chan_list_lock);
455
	list_del(&chan->global_l);
456
	write_unlock(&chan_list_lock);
457

458
	kfree(chan);
459 460
}

461 462
void l2cap_chan_hold(struct l2cap_chan *c)
{
463
	BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->kref.refcount));
464

465
	kref_get(&c->kref);
466 467 468 469
}

void l2cap_chan_put(struct l2cap_chan *c)
{
470
	BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->kref.refcount));
471

472
	kref_put(&c->kref, l2cap_chan_destroy);
473
}
474
EXPORT_SYMBOL_GPL(l2cap_chan_put);
475

476 477 478 479 480 481
void l2cap_chan_set_defaults(struct l2cap_chan *chan)
{
	chan->fcs  = L2CAP_FCS_CRC16;
	chan->max_tx = L2CAP_DEFAULT_MAX_TX;
	chan->tx_win = L2CAP_DEFAULT_TX_WINDOW;
	chan->tx_win_max = L2CAP_DEFAULT_TX_WINDOW;
482 483
	chan->remote_max_tx = chan->max_tx;
	chan->remote_tx_win = chan->tx_win;
484
	chan->ack_win = L2CAP_DEFAULT_TX_WINDOW;
485
	chan->sec_level = BT_SECURITY_LOW;
486 487 488 489
	chan->flush_to = L2CAP_DEFAULT_FLUSH_TO;
	chan->retrans_timeout = L2CAP_DEFAULT_RETRANS_TO;
	chan->monitor_timeout = L2CAP_DEFAULT_MONITOR_TO;
	chan->conf_state = 0;
490 491 492

	set_bit(FLAG_FORCE_ACTIVE, &chan->flags);
}
493
EXPORT_SYMBOL_GPL(l2cap_chan_set_defaults);
494

495
static void l2cap_le_flowctl_init(struct l2cap_chan *chan)
496
{
497 498 499
	chan->sdu = NULL;
	chan->sdu_last_frag = NULL;
	chan->sdu_len = 0;
500
	chan->tx_credits = 0;
501
	chan->rx_credits = le_max_credits;
502
	chan->mps = min_t(u16, chan->imtu, le_default_mps);
503 504

	skb_queue_head_init(&chan->tx_q);
505 506
}

507
void __l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan)
508
{
509
	BT_DBG("conn %p, psm 0x%2.2x, dcid 0x%4.4x", conn,
510
	       __le16_to_cpu(chan->psm), chan->dcid);
511

512
	conn->disc_reason = HCI_ERROR_REMOTE_USER_TERM;
513

514
	chan->conn = conn;
515

516 517
	switch (chan->chan_type) {
	case L2CAP_CHAN_CONN_ORIENTED:
518 519 520
		/* Alloc CID for connection-oriented socket */
		chan->scid = l2cap_alloc_cid(conn);
		if (conn->hcon->type == ACL_LINK)
521
			chan->omtu = L2CAP_DEFAULT_MTU;
522 523 524
		break;

	case L2CAP_CHAN_CONN_LESS:
525
		/* Connectionless socket */
526 527
		chan->scid = L2CAP_CID_CONN_LESS;
		chan->dcid = L2CAP_CID_CONN_LESS;
528
		chan->omtu = L2CAP_DEFAULT_MTU;
529 530
		break;

531 532
	case L2CAP_CHAN_FIXED:
		/* Caller will set CID and CID specific MTU values */
533 534
		break;

535
	default:
536
		/* Raw socket can send/recv signalling messages only */
537 538
		chan->scid = L2CAP_CID_SIGNALING;
		chan->dcid = L2CAP_CID_SIGNALING;
539
		chan->omtu = L2CAP_DEFAULT_MTU;
540 541
	}

542 543 544 545 546
	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;
547
	chan->local_flush_to	= L2CAP_EFS_DEFAULT_FLUSH_TO;
548

549
	l2cap_chan_hold(chan);
550

551 552 553 554
	/* Only keep a reference for fixed channels if they requested it */
	if (chan->chan_type != L2CAP_CHAN_FIXED ||
	    test_bit(FLAG_HOLD_HCI_CONN, &chan->flags))
		hci_conn_hold(conn->hcon);
555

556
	list_add(&chan->list, &conn->chan_l);
557 558
}

559
void l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan)
560 561 562
{
	mutex_lock(&conn->chan_lock);
	__l2cap_chan_add(conn, chan);
563
	mutex_unlock(&conn->chan_lock);
564 565
}

566
void l2cap_chan_del(struct l2cap_chan *chan, int err)
567
{
568
	struct l2cap_conn *conn = chan->conn;
569

570
	__clear_chan_timer(chan);
571

572 573
	BT_DBG("chan %p, conn %p, err %d, state %s", chan, conn, err,
	       state_to_string(chan->state));
574

575 576
	chan->ops->teardown(chan, err);

577
	if (conn) {
578
		struct amp_mgr *mgr = conn->hcon->amp_mgr;
579
		/* Delete from channel list */
580
		list_del(&chan->list);
581

582
		l2cap_chan_put(chan);
583

584
		chan->conn = NULL;
585

586 587 588 589 590 591
		/* Reference was only held for non-fixed channels or
		 * fixed channels that explicitly requested it using the
		 * FLAG_HOLD_HCI_CONN flag.
		 */
		if (chan->chan_type != L2CAP_CHAN_FIXED ||
		    test_bit(FLAG_HOLD_HCI_CONN, &chan->flags))
592
			hci_conn_drop(conn->hcon);
593 594 595

		if (mgr && mgr->bredr_chan == chan)
			mgr->bredr_chan = NULL;
596 597
	}

598 599 600 601 602 603 604
	if (chan->hs_hchan) {
		struct hci_chan *hs_hchan = chan->hs_hchan;

		BT_DBG("chan %p disconnect hs_hchan %p", chan, hs_hchan);
		amp_disconnect_logical_link(hs_hchan);
	}

605
	if (test_bit(CONF_NOT_COMPLETE, &chan->conf_state))
606
		return;
607

608 609 610
	switch(chan->mode) {
	case L2CAP_MODE_BASIC:
		break;
611

612
	case L2CAP_MODE_LE_FLOWCTL:
613
		skb_queue_purge(&chan->tx_q);
614 615
		break;

616
	case L2CAP_MODE_ERTM:
617 618 619
		__clear_retrans_timer(chan);
		__clear_monitor_timer(chan);
		__clear_ack_timer(chan);
620

621
		skb_queue_purge(&chan->srej_q);
622

623 624
		l2cap_seq_list_free(&chan->srej_list);
		l2cap_seq_list_free(&chan->retrans_list);
625 626 627 628 629 630

		/* fall through */

	case L2CAP_MODE_STREAMING:
		skb_queue_purge(&chan->tx_q);
		break;
631
	}
632 633

	return;
634
}
635
EXPORT_SYMBOL_GPL(l2cap_chan_del);
636

637
static void l2cap_conn_update_id_addr(struct work_struct *work)
638
{
639 640 641
	struct l2cap_conn *conn = container_of(work, struct l2cap_conn,
					       id_addr_update_work);
	struct hci_conn *hcon = conn->hcon;
642 643 644 645 646 647 648 649 650 651 652 653 654 655
	struct l2cap_chan *chan;

	mutex_lock(&conn->chan_lock);

	list_for_each_entry(chan, &conn->chan_l, list) {
		l2cap_chan_lock(chan);
		bacpy(&chan->dst, &hcon->dst);
		chan->dst_type = bdaddr_type(hcon, hcon->dst_type);
		l2cap_chan_unlock(chan);
	}

	mutex_unlock(&conn->chan_lock);
}

656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
static void l2cap_chan_le_connect_reject(struct l2cap_chan *chan)
{
	struct l2cap_conn *conn = chan->conn;
	struct l2cap_le_conn_rsp rsp;
	u16 result;

	if (test_bit(FLAG_DEFER_SETUP, &chan->flags))
		result = L2CAP_CR_AUTHORIZATION;
	else
		result = L2CAP_CR_BAD_PSM;

	l2cap_state_change(chan, BT_DISCONN);

	rsp.dcid    = cpu_to_le16(chan->scid);
	rsp.mtu     = cpu_to_le16(chan->imtu);
671
	rsp.mps     = cpu_to_le16(chan->mps);
672
	rsp.credits = cpu_to_le16(chan->rx_credits);
673 674 675 676 677 678
	rsp.result  = cpu_to_le16(result);

	l2cap_send_cmd(conn, chan->ident, L2CAP_LE_CONN_RSP, sizeof(rsp),
		       &rsp);
}

679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
static void l2cap_chan_connect_reject(struct l2cap_chan *chan)
{
	struct l2cap_conn *conn = chan->conn;
	struct l2cap_conn_rsp rsp;
	u16 result;

	if (test_bit(FLAG_DEFER_SETUP, &chan->flags))
		result = L2CAP_CR_SEC_BLOCK;
	else
		result = L2CAP_CR_BAD_PSM;

	l2cap_state_change(chan, BT_DISCONN);

	rsp.scid   = cpu_to_le16(chan->dcid);
	rsp.dcid   = cpu_to_le16(chan->scid);
	rsp.result = cpu_to_le16(result);
695
	rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
696 697 698 699

	l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_RSP, sizeof(rsp), &rsp);
}

700
void l2cap_chan_close(struct l2cap_chan *chan, int reason)
701 702 703
{
	struct l2cap_conn *conn = chan->conn;

704
	BT_DBG("chan %p state %s", chan, state_to_string(chan->state));
705

706
	switch (chan->state) {
707
	case BT_LISTEN:
708
		chan->ops->teardown(chan, 0);
709 710 711 712
		break;

	case BT_CONNECTED:
	case BT_CONFIG:
713
		if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED) {
714
			__set_chan_timer(chan, chan->ops->get_sndtimeo(chan));
715
			l2cap_send_disconn_req(chan, reason);
716 717 718 719 720
		} else
			l2cap_chan_del(chan, reason);
		break;

	case BT_CONNECT2:
721 722 723
		if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED) {
			if (conn->hcon->type == ACL_LINK)
				l2cap_chan_connect_reject(chan);
724 725
			else if (conn->hcon->type == LE_LINK)
				l2cap_chan_le_connect_reject(chan);
726 727 728 729 730 731 732 733 734 735 736
		}

		l2cap_chan_del(chan, reason);
		break;

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

	default:
737
		chan->ops->teardown(chan, 0);
738 739 740
		break;
	}
}
741
EXPORT_SYMBOL(l2cap_chan_close);
742

743
static inline u8 l2cap_get_auth_type(struct l2cap_chan *chan)
744
{
745 746
	switch (chan->chan_type) {
	case L2CAP_CHAN_RAW:
747
		switch (chan->sec_level) {
748
		case BT_SECURITY_HIGH:
749
		case BT_SECURITY_FIPS:
750 751 752 753 754 755
			return HCI_AT_DEDICATED_BONDING_MITM;
		case BT_SECURITY_MEDIUM:
			return HCI_AT_DEDICATED_BONDING;
		default:
			return HCI_AT_NO_BONDING;
		}
756
		break;
757
	case L2CAP_CHAN_CONN_LESS:
758
		if (chan->psm == cpu_to_le16(L2CAP_PSM_3DSP)) {
759 760 761
			if (chan->sec_level == BT_SECURITY_LOW)
				chan->sec_level = BT_SECURITY_SDP;
		}
762 763
		if (chan->sec_level == BT_SECURITY_HIGH ||
		    chan->sec_level == BT_SECURITY_FIPS)
764 765 766 767
			return HCI_AT_NO_BONDING_MITM;
		else
			return HCI_AT_NO_BONDING;
		break;
768
	case L2CAP_CHAN_CONN_ORIENTED:
769
		if (chan->psm == cpu_to_le16(L2CAP_PSM_SDP)) {
770 771
			if (chan->sec_level == BT_SECURITY_LOW)
				chan->sec_level = BT_SECURITY_SDP;
772

773 774
			if (chan->sec_level == BT_SECURITY_HIGH ||
			    chan->sec_level == BT_SECURITY_FIPS)
775 776 777 778 779 780
				return HCI_AT_NO_BONDING_MITM;
			else
				return HCI_AT_NO_BONDING;
		}
		/* fall through */
	default:
781
		switch (chan->sec_level) {
782
		case BT_SECURITY_HIGH:
783
		case BT_SECURITY_FIPS:
784
			return HCI_AT_GENERAL_BONDING_MITM;
785
		case BT_SECURITY_MEDIUM:
786
			return HCI_AT_GENERAL_BONDING;
787
		default:
788
			return HCI_AT_NO_BONDING;
789
		}
790
		break;
791
	}
792 793 794
}

/* Service level security */
795
int l2cap_chan_check_security(struct l2cap_chan *chan, bool initiator)
796
{
797
	struct l2cap_conn *conn = chan->conn;
798 799
	__u8 auth_type;

800 801 802
	if (conn->hcon->type == LE_LINK)
		return smp_conn_security(conn->hcon, chan->sec_level);

803
	auth_type = l2cap_get_auth_type(chan);
804

805 806
	return hci_conn_security(conn->hcon, chan->sec_level, auth_type,
				 initiator);
807 808
}

809
static u8 l2cap_get_ident(struct l2cap_conn *conn)
810 811 812 813 814 815 816 817 818
{
	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.
	 */

819
	mutex_lock(&conn->ident_lock);
820 821 822 823 824 825

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

	id = conn->tx_ident;

826
	mutex_unlock(&conn->ident_lock);
827 828 829 830

	return id;
}

831 832
static void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len,
			   void *data)
833 834
{
	struct sk_buff *skb = l2cap_build_cmd(conn, code, ident, len, data);
835
	u8 flags;
836 837 838 839

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

	if (!skb)
840
		return;
841

842 843 844 845
	/* Use NO_FLUSH if supported or we have an LE link (which does
	 * not support auto-flushing packets) */
	if (lmp_no_flush_capable(conn->hcon->hdev) ||
	    conn->hcon->type == LE_LINK)
846 847 848 849
		flags = ACL_START_NO_FLUSH;
	else
		flags = ACL_START;

850
	bt_cb(skb)->force_active = BT_POWER_FORCE_ACTIVE_ON;
851
	skb->priority = HCI_PRIO_MAX;
852

853 854 855
	hci_send_acl(conn->hchan, skb, flags);
}

856 857 858 859 860 861
static bool __chan_is_moving(struct l2cap_chan *chan)
{
	return chan->move_state != L2CAP_MOVE_STABLE &&
	       chan->move_state != L2CAP_MOVE_WAIT_PREPARE;
}

862 863 864 865 866 867
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,
868
	       skb->priority);
869

870 871 872 873 874 875 876 877 878
	if (chan->hs_hcon && !__chan_is_moving(chan)) {
		if (chan->hs_hchan)
			hci_send_acl(chan->hs_hchan, skb, ACL_COMPLETE);
		else
			kfree_skb(skb);

		return;
	}

879 880 881 882 883 884 885
	/* Use NO_FLUSH for LE links (where this is the only option) or
	 * if the BR/EDR link supports it and flushing has not been
	 * explicitly requested (through FLAG_FLUSHABLE).
	 */
	if (hcon->type == LE_LINK ||
	    (!test_bit(FLAG_FLUSHABLE, &chan->flags) &&
	     lmp_no_flush_capable(hcon->hdev)))
886 887 888
		flags = ACL_START_NO_FLUSH;
	else
		flags = ACL_START;
889

890 891
	bt_cb(skb)->force_active = test_bit(FLAG_FORCE_ACTIVE, &chan->flags);
	hci_send_acl(chan->conn->hchan, skb, flags);
892 893
}

894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
static void __unpack_enhanced_control(u16 enh, struct l2cap_ctrl *control)
{
	control->reqseq = (enh & L2CAP_CTRL_REQSEQ) >> L2CAP_CTRL_REQSEQ_SHIFT;
	control->final = (enh & L2CAP_CTRL_FINAL) >> L2CAP_CTRL_FINAL_SHIFT;

	if (enh & L2CAP_CTRL_FRAME_TYPE) {
		/* S-Frame */
		control->sframe = 1;
		control->poll = (enh & L2CAP_CTRL_POLL) >> L2CAP_CTRL_POLL_SHIFT;
		control->super = (enh & L2CAP_CTRL_SUPERVISE) >> L2CAP_CTRL_SUPER_SHIFT;

		control->sar = 0;
		control->txseq = 0;
	} else {
		/* I-Frame */
		control->sframe = 0;
		control->sar = (enh & L2CAP_CTRL_SAR) >> L2CAP_CTRL_SAR_SHIFT;
		control->txseq = (enh & L2CAP_CTRL_TXSEQ) >> L2CAP_CTRL_TXSEQ_SHIFT;

		control->poll = 0;
		control->super = 0;
	}
}

static void __unpack_extended_control(u32 ext, struct l2cap_ctrl *control)
{
	control->reqseq = (ext & L2CAP_EXT_CTRL_REQSEQ) >> L2CAP_EXT_CTRL_REQSEQ_SHIFT;
	control->final = (ext & L2CAP_EXT_CTRL_FINAL) >> L2CAP_EXT_CTRL_FINAL_SHIFT;

	if (ext & L2CAP_EXT_CTRL_FRAME_TYPE) {
		/* S-Frame */
		control->sframe = 1;
		control->poll = (ext & L2CAP_EXT_CTRL_POLL) >> L2CAP_EXT_CTRL_POLL_SHIFT;
		control->super = (ext & L2CAP_EXT_CTRL_SUPERVISE) >> L2CAP_EXT_CTRL_SUPER_SHIFT;

		control->sar = 0;
		control->txseq = 0;
	} else {
		/* I-Frame */
		control->sframe = 0;
		control->sar = (ext & L2CAP_EXT_CTRL_SAR) >> L2CAP_EXT_CTRL_SAR_SHIFT;
		control->txseq = (ext & L2CAP_EXT_CTRL_TXSEQ) >> L2CAP_EXT_CTRL_TXSEQ_SHIFT;

		control->poll = 0;
		control->super = 0;
	}
}

static inline void __unpack_control(struct l2cap_chan *chan,
				    struct sk_buff *skb)
{
	if (test_bit(FLAG_EXT_CTRL, &chan->flags)) {
		__unpack_extended_control(get_unaligned_le32(skb->data),
					  &bt_cb(skb)->control);
948
		skb_pull(skb, L2CAP_EXT_CTRL_SIZE);
949 950 951
	} else {
		__unpack_enhanced_control(get_unaligned_le16(skb->data),
					  &bt_cb(skb)->control);
952
		skb_pull(skb, L2CAP_ENH_CTRL_SIZE);
953 954 955
	}
}

956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
static u32 __pack_extended_control(struct l2cap_ctrl *control)
{
	u32 packed;

	packed = control->reqseq << L2CAP_EXT_CTRL_REQSEQ_SHIFT;
	packed |= control->final << L2CAP_EXT_CTRL_FINAL_SHIFT;

	if (control->sframe) {
		packed |= control->poll << L2CAP_EXT_CTRL_POLL_SHIFT;
		packed |= control->super << L2CAP_EXT_CTRL_SUPER_SHIFT;
		packed |= L2CAP_EXT_CTRL_FRAME_TYPE;
	} else {
		packed |= control->sar << L2CAP_EXT_CTRL_SAR_SHIFT;
		packed |= control->txseq << L2CAP_EXT_CTRL_TXSEQ_SHIFT;
	}

	return packed;
}

static u16 __pack_enhanced_control(struct l2cap_ctrl *control)
{
	u16 packed;

	packed = control->reqseq << L2CAP_CTRL_REQSEQ_SHIFT;
	packed |= control->final << L2CAP_CTRL_FINAL_SHIFT;

	if (control->sframe) {
		packed |= control->poll << L2CAP_CTRL_POLL_SHIFT;
		packed |= control->super << L2CAP_CTRL_SUPER_SHIFT;
		packed |= L2CAP_CTRL_FRAME_TYPE;
	} else {
		packed |= control->sar << L2CAP_CTRL_SAR_SHIFT;
		packed |= control->txseq << L2CAP_CTRL_TXSEQ_SHIFT;
	}

	return packed;
}

994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
static inline void __pack_control(struct l2cap_chan *chan,
				  struct l2cap_ctrl *control,
				  struct sk_buff *skb)
{
	if (test_bit(FLAG_EXT_CTRL, &chan->flags)) {
		put_unaligned_le32(__pack_extended_control(control),
				   skb->data + L2CAP_HDR_SIZE);
	} else {
		put_unaligned_le16(__pack_enhanced_control(control),
				   skb->data + L2CAP_HDR_SIZE);
	}
}

1007 1008 1009 1010 1011 1012 1013 1014
static inline unsigned int __ertm_hdr_size(struct l2cap_chan *chan)
{
	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		return L2CAP_EXT_HDR_SIZE;
	else
		return L2CAP_ENH_HDR_SIZE;
}

1015 1016
static struct sk_buff *l2cap_create_sframe_pdu(struct l2cap_chan *chan,
					       u32 control)
1017 1018 1019
{
	struct sk_buff *skb;
	struct l2cap_hdr *lh;
1020
	int hlen = __ertm_hdr_size(chan);
1021 1022 1023 1024

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

1025
	skb = bt_skb_alloc(hlen, GFP_KERNEL);
1026 1027

	if (!skb)
1028
		return ERR_PTR(-ENOMEM);
1029 1030 1031 1032 1033

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

1034 1035 1036 1037
	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		put_unaligned_le32(control, skb_put(skb, L2CAP_EXT_CTRL_SIZE));
	else
		put_unaligned_le16(control, skb_put(skb, L2CAP_ENH_CTRL_SIZE));
1038 1039

	if (chan->fcs == L2CAP_FCS_CRC16) {
1040
		u16 fcs = crc16(0, (u8 *)skb->data, skb->len);
1041 1042 1043 1044
		put_unaligned_le16(fcs, skb_put(skb, L2CAP_FCS_SIZE));
	}

	skb->priority = HCI_PRIO_MAX;
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
	return skb;
}

static void l2cap_send_sframe(struct l2cap_chan *chan,
			      struct l2cap_ctrl *control)
{
	struct sk_buff *skb;
	u32 control_field;

	BT_DBG("chan %p, control %p", chan, control);

	if (!control->sframe)
		return;

1059 1060 1061
	if (__chan_is_moving(chan))
		return;

1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
	if (test_and_clear_bit(CONN_SEND_FBIT, &chan->conn_state) &&
	    !control->poll)
		control->final = 1;

	if (control->super == L2CAP_SUPER_RR)
		clear_bit(CONN_RNR_SENT, &chan->conn_state);
	else if (control->super == L2CAP_SUPER_RNR)
		set_bit(CONN_RNR_SENT, &chan->conn_state);

	if (control->super != L2CAP_SUPER_SREJ) {
		chan->last_acked_seq = control->reqseq;
		__clear_ack_timer(chan);
	}

	BT_DBG("reqseq %d, final %d, poll %d, super %d", control->reqseq,
	       control->final, control->poll, control->super);

	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		control_field = __pack_extended_control(control);
	else
		control_field = __pack_enhanced_control(control);

	skb = l2cap_create_sframe_pdu(chan, control_field);
	if (!IS_ERR(skb))
		l2cap_do_send(chan, skb);
1087 1088
}

1089
static void l2cap_send_rr_or_rnr(struct l2cap_chan *chan, bool poll)
1090
{
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
	struct l2cap_ctrl control;

	BT_DBG("chan %p, poll %d", chan, poll);

	memset(&control, 0, sizeof(control));
	control.sframe = 1;
	control.poll = poll;

	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state))
		control.super = L2CAP_SUPER_RNR;
	else
		control.super = L2CAP_SUPER_RR;
1103

1104 1105
	control.reqseq = chan->buffer_seq;
	l2cap_send_sframe(chan, &control);
1106 1107
}

1108
static inline int __l2cap_no_conn_pending(struct l2cap_chan *chan)
1109
{
1110 1111 1112
	if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED)
		return true;

1113
	return !test_bit(CONF_CONNECT_PEND, &chan->conf_state);
1114 1115
}

1116
static bool __amp_capable(struct l2cap_chan *chan)
1117
{
1118
	struct l2cap_conn *conn = chan->conn;
1119
	struct hci_dev *hdev;
1120 1121
	bool amp_available = false;

1122
	if (!(conn->local_fixed_chan & L2CAP_FC_A2MP))
1123 1124
		return false;

1125
	if (!(conn->remote_fixed_chan & L2CAP_FC_A2MP))
1126
		return false;
1127 1128

	read_lock(&hci_dev_list_lock);
1129
	list_for_each_entry(hdev, &hci_dev_list, list) {
1130
		if (hdev->amp_type != AMP_TYPE_BREDR &&
1131 1132 1133 1134 1135
		    test_bit(HCI_UP, &hdev->flags)) {
			amp_available = true;
			break;
		}
	}
1136 1137
	read_unlock(&hci_dev_list_lock);

1138 1139
	if (chan->chan_policy == BT_CHANNEL_POLICY_AMP_PREFERRED)
		return amp_available;
1140 1141

	return false;
1142 1143
}

1144 1145 1146 1147 1148 1149
static bool l2cap_check_efs(struct l2cap_chan *chan)
{
	/* Check EFS parameters */
	return true;
}

1150
void l2cap_send_conn_req(struct l2cap_chan *chan)
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
{
	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);
}

1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
static void l2cap_send_create_chan_req(struct l2cap_chan *chan, u8 amp_id)
{
	struct l2cap_create_chan_req req;
	req.scid = cpu_to_le16(chan->scid);
	req.psm  = chan->psm;
	req.amp_id = amp_id;

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

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

1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
static void l2cap_move_setup(struct l2cap_chan *chan)
{
	struct sk_buff *skb;

	BT_DBG("chan %p", chan);

	if (chan->mode != L2CAP_MODE_ERTM)
		return;

	__clear_retrans_timer(chan);
	__clear_monitor_timer(chan);
	__clear_ack_timer(chan);

	chan->retry_count = 0;
	skb_queue_walk(&chan->tx_q, skb) {
		if (bt_cb(skb)->control.retries)
			bt_cb(skb)->control.retries = 1;
		else
			break;
	}

	chan->expected_tx_seq = chan->buffer_seq;

	clear_bit(CONN_REJ_ACT, &chan->conn_state);
	clear_bit(CONN_SREJ_ACT, &chan->conn_state);
	l2cap_seq_list_clear(&chan->retrans_list);
	l2cap_seq_list_clear(&chan->srej_list);
	skb_queue_purge(&chan->srej_q);

	chan->tx_state = L2CAP_TX_STATE_XMIT;
	chan->rx_state = L2CAP_RX_STATE_MOVE;

	set_bit(CONN_REMOTE_BUSY, &chan->conn_state);
}

1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
static void l2cap_move_done(struct l2cap_chan *chan)
{
	u8 move_role = chan->move_role;
	BT_DBG("chan %p", chan);

	chan->move_state = L2CAP_MOVE_STABLE;
	chan->move_role = L2CAP_MOVE_ROLE_NONE;

	if (chan->mode != L2CAP_MODE_ERTM)
		return;

	switch (move_role) {
	case L2CAP_MOVE_ROLE_INITIATOR:
		l2cap_tx(chan, NULL, NULL, L2CAP_EV_EXPLICIT_POLL);
		chan->rx_state = L2CAP_RX_STATE_WAIT_F;
		break;
	case L2CAP_MOVE_ROLE_RESPONDER:
		chan->rx_state = L2CAP_RX_STATE_WAIT_P;
		break;
	}
}

1235 1236
static void l2cap_chan_ready(struct l2cap_chan *chan)
{
1237
	/* This clears all conf flags, including CONF_NOT_COMPLETE */
1238 1239 1240
	chan->conf_state = 0;
	__clear_chan_timer(chan);

1241 1242
	if (chan->mode == L2CAP_MODE_LE_FLOWCTL && !chan->tx_credits)
		chan->ops->suspend(chan);
1243

1244
	chan->state = BT_CONNECTED;
1245

1246
	chan->ops->ready(chan);
1247 1248
}

1249 1250 1251 1252 1253
static void l2cap_le_connect(struct l2cap_chan *chan)
{
	struct l2cap_conn *conn = chan->conn;
	struct l2cap_le_conn_req req;

1254 1255 1256
	if (test_and_set_bit(FLAG_LE_CONN_REQ_SENT, &chan->flags))
		return;

1257 1258 1259
	req.psm     = chan->psm;
	req.scid    = cpu_to_le16(chan->scid);
	req.mtu     = cpu_to_le16(chan->imtu);
1260
	req.mps     = cpu_to_le16(chan->mps);
1261
	req.credits = cpu_to_le16(chan->rx_credits);
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284

	chan->ident = l2cap_get_ident(conn);

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

static void l2cap_le_start(struct l2cap_chan *chan)
{
	struct l2cap_conn *conn = chan->conn;

	if (!smp_conn_security(conn->hcon, chan->sec_level))
		return;

	if (!chan->psm) {
		l2cap_chan_ready(chan);
		return;
	}

	if (chan->state == BT_CONNECT)
		l2cap_le_connect(chan);
}

1285 1286 1287 1288 1289
static void l2cap_start_connection(struct l2cap_chan *chan)
{
	if (__amp_capable(chan)) {
		BT_DBG("chan %p AMP capable: discover AMPs", chan);
		a2mp_discover_amp(chan);
1290 1291
	} else if (chan->conn->hcon->type == LE_LINK) {
		l2cap_le_start(chan);
1292 1293 1294 1295 1296
	} else {
		l2cap_send_conn_req(chan);
	}
}

1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
static void l2cap_request_info(struct l2cap_conn *conn)
{
	struct l2cap_info_req req;

	if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT)
		return;

	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);

	schedule_delayed_work(&conn->info_timer, L2CAP_INFO_TIMEOUT);

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

1315
static void l2cap_do_start(struct l2cap_chan *chan)
1316
{
1317
	struct l2cap_conn *conn = chan->conn;
1318

1319
	if (conn->hcon->type == LE_LINK) {
1320
		l2cap_le_start(chan);
1321 1322 1323
		return;
	}

1324 1325 1326 1327
	if (!(conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT)) {
		l2cap_request_info(conn);
		return;
	}
1328

1329 1330
	if (!(conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE))
		return;
1331

1332 1333 1334
	if (l2cap_chan_check_security(chan, true) &&
	    __l2cap_no_conn_pending(chan))
		l2cap_start_connection(chan);
1335 1336
}

1337 1338 1339
static inline int l2cap_mode_supported(__u8 mode, __u32 feat_mask)
{
	u32 local_feat_mask = l2cap_feat_mask;
1340
	if (!disable_ertm)
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
		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;
	}
}

1353
static void l2cap_send_disconn_req(struct l2cap_chan *chan, int err)
1354
{
1355
	struct l2cap_conn *conn = chan->conn;
1356 1357
	struct l2cap_disconn_req req;

1358 1359 1360
	if (!conn)
		return;

1361
	if (chan->mode == L2CAP_MODE_ERTM && chan->state == BT_CONNECTED) {
1362 1363 1364
		__clear_retrans_timer(chan);
		__clear_monitor_timer(chan);
		__clear_ack_timer(chan);
1365 1366
	}

1367
	if (chan->scid == L2CAP_CID_A2MP) {
1368
		l2cap_state_change(chan, BT_DISCONN);
1369 1370 1371
		return;
	}

1372 1373
	req.dcid = cpu_to_le16(chan->dcid);
	req.scid = cpu_to_le16(chan->scid);
1374 1375
	l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_DISCONN_REQ,
		       sizeof(req), &req);
1376

1377
	l2cap_state_change_and_error(chan, BT_DISCONN, err);
1378 1379
}

L
Linus Torvalds 已提交
1380
/* ---- L2CAP connections ---- */
1381 1382
static void l2cap_conn_start(struct l2cap_conn *conn)
{
1383
	struct l2cap_chan *chan, *tmp;
1384 1385 1386

	BT_DBG("conn %p", conn);

1387
	mutex_lock(&conn->chan_lock);
1388

1389
	list_for_each_entry_safe(chan, tmp, &conn->chan_l, list) {
1390
		l2cap_chan_lock(chan);
1391

1392
		if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
1393
			l2cap_chan_ready(chan);
1394
			l2cap_chan_unlock(chan);
1395 1396 1397
			continue;
		}

1398
		if (chan->state == BT_CONNECT) {
1399
			if (!l2cap_chan_check_security(chan, true) ||
1400
			    !__l2cap_no_conn_pending(chan)) {
1401
				l2cap_chan_unlock(chan);
1402 1403
				continue;
			}
1404

1405
			if (!l2cap_mode_supported(chan->mode, conn->feat_mask)
1406
			    && test_bit(CONF_STATE2_DEVICE,
1407
					&chan->conf_state)) {
1408
				l2cap_chan_close(chan, ECONNRESET);
1409
				l2cap_chan_unlock(chan);
1410
				continue;
1411
			}
1412

1413
			l2cap_start_connection(chan);
1414

1415
		} else if (chan->state == BT_CONNECT2) {
1416
			struct l2cap_conn_rsp rsp;
1417
			char buf[128];
1418 1419
			rsp.scid = cpu_to_le16(chan->dcid);
			rsp.dcid = cpu_to_le16(chan->scid);
1420

1421
			if (l2cap_chan_check_security(chan, false)) {
1422
				if (test_bit(FLAG_DEFER_SETUP, &chan->flags)) {
1423 1424
					rsp.result = cpu_to_le16(L2CAP_CR_PEND);
					rsp.status = cpu_to_le16(L2CAP_CS_AUTHOR_PEND);
1425
					chan->ops->defer(chan);
1426 1427

				} else {
1428
					l2cap_state_change(chan, BT_CONFIG);
1429 1430
					rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
					rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
1431
				}
1432
			} else {
1433 1434
				rsp.result = cpu_to_le16(L2CAP_CR_PEND);
				rsp.status = cpu_to_le16(L2CAP_CS_AUTHEN_PEND);
1435 1436
			}

1437
			l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_RSP,
1438
				       sizeof(rsp), &rsp);
1439

1440
			if (test_bit(CONF_REQ_SENT, &chan->conf_state) ||
1441
			    rsp.result != L2CAP_CR_SUCCESS) {
1442
				l2cap_chan_unlock(chan);
1443 1444 1445
				continue;
			}

1446
			set_bit(CONF_REQ_SENT, &chan->conf_state);
1447
			l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
1448
				       l2cap_build_conf_req(chan, buf), buf);
1449
			chan->num_conf_req++;
1450 1451
		}

1452
		l2cap_chan_unlock(chan);
1453 1454
	}

1455
	mutex_unlock(&conn->chan_lock);
1456 1457
}

1458 1459
static void l2cap_le_conn_ready(struct l2cap_conn *conn)
{
1460
	struct hci_conn *hcon = conn->hcon;
1461
	struct hci_dev *hdev = hcon->hdev;
1462

1463
	BT_DBG("%s conn %p", hdev->name, conn);
1464

1465 1466 1467 1468 1469
	/* For outgoing pairing which doesn't necessarily have an
	 * associated socket (e.g. mgmt_pair_device).
	 */
	if (hcon->out)
		smp_conn_security(hcon, hcon->pending_sec_level);
1470

1471 1472 1473 1474 1475
	/* For LE slave connections, make sure the connection interval
	 * is in the range of the minium and maximum interval that has
	 * been configured for this connection. If not, then trigger
	 * the connection update procedure.
	 */
1476
	if (hcon->role == HCI_ROLE_SLAVE &&
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
	    (hcon->le_conn_interval < hcon->le_conn_min_interval ||
	     hcon->le_conn_interval > hcon->le_conn_max_interval)) {
		struct l2cap_conn_param_update_req req;

		req.min = cpu_to_le16(hcon->le_conn_min_interval);
		req.max = cpu_to_le16(hcon->le_conn_max_interval);
		req.latency = cpu_to_le16(hcon->le_conn_latency);
		req.to_multiplier = cpu_to_le16(hcon->le_supv_timeout);

		l2cap_send_cmd(conn, l2cap_get_ident(conn),
			       L2CAP_CONN_PARAM_UPDATE_REQ, sizeof(req), &req);
	}
1489 1490
}

1491 1492
static void l2cap_conn_ready(struct l2cap_conn *conn)
{
1493
	struct l2cap_chan *chan;
1494
	struct hci_conn *hcon = conn->hcon;
1495

1496
	BT_DBG("conn %p", conn);
1497

1498 1499 1500
	if (hcon->type == ACL_LINK)
		l2cap_request_info(conn);

1501 1502
	mutex_lock(&conn->chan_lock);

1503
	list_for_each_entry(chan, &conn->chan_l, list) {
1504

1505
		l2cap_chan_lock(chan);
1506

1507
		if (chan->scid == L2CAP_CID_A2MP) {
1508 1509 1510 1511
			l2cap_chan_unlock(chan);
			continue;
		}

1512
		if (hcon->type == LE_LINK) {
1513
			l2cap_le_start(chan);
1514
		} else if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
1515 1516
			if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE)
				l2cap_chan_ready(chan);
1517
		} else if (chan->state == BT_CONNECT) {
1518
			l2cap_do_start(chan);
1519
		}
1520

1521
		l2cap_chan_unlock(chan);
1522
	}
1523

1524
	mutex_unlock(&conn->chan_lock);
1525

1526 1527 1528
	if (hcon->type == LE_LINK)
		l2cap_le_conn_ready(conn);

1529
	queue_work(hcon->hdev->workqueue, &conn->pending_rx_work);
1530 1531 1532 1533 1534
}

/* Notify sockets that we cannot guaranty reliability anymore */
static void l2cap_conn_unreliable(struct l2cap_conn *conn, int err)
{
1535
	struct l2cap_chan *chan;
1536 1537 1538

	BT_DBG("conn %p", conn);

1539
	mutex_lock(&conn->chan_lock);
1540

1541
	list_for_each_entry(chan, &conn->chan_l, list) {
1542
		if (test_bit(FLAG_FORCE_RELIABLE, &chan->flags))
1543
			l2cap_chan_set_err(chan, err);
1544 1545
	}

1546
	mutex_unlock(&conn->chan_lock);
1547 1548
}

1549
static void l2cap_info_timeout(struct work_struct *work)
1550
{
1551
	struct l2cap_conn *conn = container_of(work, struct l2cap_conn,
1552
					       info_timer.work);
1553

1554
	conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
1555
	conn->info_ident = 0;
1556

1557 1558 1559
	l2cap_conn_start(conn);
}

1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642
/*
 * l2cap_user
 * External modules can register l2cap_user objects on l2cap_conn. The ->probe
 * callback is called during registration. The ->remove callback is called
 * during unregistration.
 * An l2cap_user object can either be explicitly unregistered or when the
 * underlying l2cap_conn object is deleted. This guarantees that l2cap->hcon,
 * l2cap->hchan, .. are valid as long as the remove callback hasn't been called.
 * External modules must own a reference to the l2cap_conn object if they intend
 * to call l2cap_unregister_user(). The l2cap_conn object might get destroyed at
 * any time if they don't.
 */

int l2cap_register_user(struct l2cap_conn *conn, struct l2cap_user *user)
{
	struct hci_dev *hdev = conn->hcon->hdev;
	int ret;

	/* We need to check whether l2cap_conn is registered. If it is not, we
	 * must not register the l2cap_user. l2cap_conn_del() is unregisters
	 * l2cap_conn objects, but doesn't provide its own locking. Instead, it
	 * relies on the parent hci_conn object to be locked. This itself relies
	 * on the hci_dev object to be locked. So we must lock the hci device
	 * here, too. */

	hci_dev_lock(hdev);

	if (user->list.next || user->list.prev) {
		ret = -EINVAL;
		goto out_unlock;
	}

	/* conn->hchan is NULL after l2cap_conn_del() was called */
	if (!conn->hchan) {
		ret = -ENODEV;
		goto out_unlock;
	}

	ret = user->probe(conn, user);
	if (ret)
		goto out_unlock;

	list_add(&user->list, &conn->users);
	ret = 0;

out_unlock:
	hci_dev_unlock(hdev);
	return ret;
}
EXPORT_SYMBOL(l2cap_register_user);

void l2cap_unregister_user(struct l2cap_conn *conn, struct l2cap_user *user)
{
	struct hci_dev *hdev = conn->hcon->hdev;

	hci_dev_lock(hdev);

	if (!user->list.next || !user->list.prev)
		goto out_unlock;

	list_del(&user->list);
	user->list.next = NULL;
	user->list.prev = NULL;
	user->remove(conn, user);

out_unlock:
	hci_dev_unlock(hdev);
}
EXPORT_SYMBOL(l2cap_unregister_user);

static void l2cap_unregister_all_users(struct l2cap_conn *conn)
{
	struct l2cap_user *user;

	while (!list_empty(&conn->users)) {
		user = list_first_entry(&conn->users, struct l2cap_user, list);
		list_del(&user->list);
		user->list.next = NULL;
		user->list.prev = NULL;
		user->remove(conn, user);
	}
}

1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
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);

1655
	skb_queue_purge(&conn->pending_rx);
1656 1657 1658 1659 1660 1661 1662

	/* We can not call flush_work(&conn->pending_rx_work) here since we
	 * might block if we are running on a worker from the same workqueue
	 * pending_rx_work is waiting on.
	 */
	if (work_pending(&conn->pending_rx_work))
		cancel_work_sync(&conn->pending_rx_work);
1663

1664 1665 1666
	if (work_pending(&conn->id_addr_update_work))
		cancel_work_sync(&conn->id_addr_update_work);

1667 1668
	l2cap_unregister_all_users(conn);

1669 1670 1671
	/* Force the connection to be immediately dropped */
	hcon->disc_timeout = 0;

1672 1673
	mutex_lock(&conn->chan_lock);

1674 1675
	/* Kill channels */
	list_for_each_entry_safe(chan, l, &conn->chan_l, list) {
1676
		l2cap_chan_hold(chan);
1677 1678
		l2cap_chan_lock(chan);

1679
		l2cap_chan_del(chan, err);
1680 1681 1682

		l2cap_chan_unlock(chan);

1683
		chan->ops->close(chan);
1684
		l2cap_chan_put(chan);
1685 1686
	}

1687 1688
	mutex_unlock(&conn->chan_lock);

1689 1690
	hci_chan_del(conn->hchan);

1691
	if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT)
1692
		cancel_delayed_work_sync(&conn->info_timer);
1693 1694

	hcon->l2cap_data = NULL;
1695 1696
	conn->hchan = NULL;
	l2cap_conn_put(conn);
1697 1698
}

1699 1700 1701 1702 1703 1704 1705 1706
static void l2cap_conn_free(struct kref *ref)
{
	struct l2cap_conn *conn = container_of(ref, struct l2cap_conn, ref);

	hci_conn_put(conn->hcon);
	kfree(conn);
}

1707
struct l2cap_conn *l2cap_conn_get(struct l2cap_conn *conn)
1708 1709
{
	kref_get(&conn->ref);
1710
	return conn;
1711 1712 1713 1714 1715 1716 1717 1718 1719
}
EXPORT_SYMBOL(l2cap_conn_get);

void l2cap_conn_put(struct l2cap_conn *conn)
{
	kref_put(&conn->ref, l2cap_conn_free);
}
EXPORT_SYMBOL(l2cap_conn_put);

L
Linus Torvalds 已提交
1720 1721
/* ---- Socket interface ---- */

1722
/* Find socket with psm and source / destination bdaddr.
L
Linus Torvalds 已提交
1723 1724
 * Returns closest match.
 */
1725 1726
static struct l2cap_chan *l2cap_global_chan_by_psm(int state, __le16 psm,
						   bdaddr_t *src,
1727 1728
						   bdaddr_t *dst,
						   u8 link_type)
L
Linus Torvalds 已提交
1729
{
1730
	struct l2cap_chan *c, *c1 = NULL;
L
Linus Torvalds 已提交
1731

1732
	read_lock(&chan_list_lock);
1733

1734
	list_for_each_entry(c, &chan_list, global_l) {
1735
		if (state && c->state != state)
L
Linus Torvalds 已提交
1736 1737
			continue;

1738 1739 1740 1741 1742 1743
		if (link_type == ACL_LINK && c->src_type != BDADDR_BREDR)
			continue;

		if (link_type == LE_LINK && c->src_type == BDADDR_BREDR)
			continue;

1744
		if (c->psm == psm) {
1745 1746 1747
			int src_match, dst_match;
			int src_any, dst_any;

L
Linus Torvalds 已提交
1748
			/* Exact match. */
1749 1750
			src_match = !bacmp(&c->src, src);
			dst_match = !bacmp(&c->dst, dst);
1751
			if (src_match && dst_match) {
1752
				l2cap_chan_hold(c);
1753
				read_unlock(&chan_list_lock);
1754 1755
				return c;
			}
L
Linus Torvalds 已提交
1756 1757

			/* Closest match */
1758 1759
			src_any = !bacmp(&c->src, BDADDR_ANY);
			dst_any = !bacmp(&c->dst, BDADDR_ANY);
1760 1761
			if ((src_match && dst_any) || (src_any && dst_match) ||
			    (src_any && dst_any))
1762
				c1 = c;
L
Linus Torvalds 已提交
1763 1764 1765
		}
	}

1766 1767 1768
	if (c1)
		l2cap_chan_hold(c1);

1769
	read_unlock(&chan_list_lock);
1770

1771
	return c1;
L
Linus Torvalds 已提交
1772 1773
}

1774
static void l2cap_monitor_timeout(struct work_struct *work)
1775
{
1776
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
1777
					       monitor_timer.work);
1778

1779
	BT_DBG("chan %p", chan);
1780

1781 1782
	l2cap_chan_lock(chan);

1783
	if (!chan->conn) {
1784
		l2cap_chan_unlock(chan);
1785
		l2cap_chan_put(chan);
1786 1787 1788
		return;
	}

1789
	l2cap_tx(chan, NULL, NULL, L2CAP_EV_MONITOR_TO);
1790

1791
	l2cap_chan_unlock(chan);
1792
	l2cap_chan_put(chan);
1793 1794
}

1795
static void l2cap_retrans_timeout(struct work_struct *work)
1796
{
1797
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
1798
					       retrans_timer.work);
1799

1800
	BT_DBG("chan %p", chan);
1801

1802 1803
	l2cap_chan_lock(chan);

1804 1805 1806 1807 1808
	if (!chan->conn) {
		l2cap_chan_unlock(chan);
		l2cap_chan_put(chan);
		return;
	}
1809

1810
	l2cap_tx(chan, NULL, NULL, L2CAP_EV_RETRANS_TO);
1811
	l2cap_chan_unlock(chan);
1812
	l2cap_chan_put(chan);
1813 1814
}

1815 1816
static void l2cap_streaming_send(struct l2cap_chan *chan,
				 struct sk_buff_head *skbs)
1817
{
1818
	struct sk_buff *skb;
1819
	struct l2cap_ctrl *control;
1820

1821 1822
	BT_DBG("chan %p, skbs %p", chan, skbs);

1823 1824 1825
	if (__chan_is_moving(chan))
		return;

1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
	skb_queue_splice_tail_init(skbs, &chan->tx_q);

	while (!skb_queue_empty(&chan->tx_q)) {

		skb = skb_dequeue(&chan->tx_q);

		bt_cb(skb)->control.retries = 1;
		control = &bt_cb(skb)->control;

		control->reqseq = 0;
		control->txseq = chan->next_tx_seq;

		__pack_control(chan, control, skb);
1839

1840
		if (chan->fcs == L2CAP_FCS_CRC16) {
1841 1842
			u16 fcs = crc16(0, (u8 *) skb->data, skb->len);
			put_unaligned_le16(fcs, skb_put(skb, L2CAP_FCS_SIZE));
1843 1844
		}

1845
		l2cap_do_send(chan, skb);
1846

1847
		BT_DBG("Sent txseq %u", control->txseq);
1848

1849
		chan->next_tx_seq = __next_seq(chan, chan->next_tx_seq);
1850
		chan->frames_sent++;
1851 1852 1853
	}
}

1854
static int l2cap_ertm_send(struct l2cap_chan *chan)
1855 1856
{
	struct sk_buff *skb, *tx_skb;
1857 1858 1859 1860
	struct l2cap_ctrl *control;
	int sent = 0;

	BT_DBG("chan %p", chan);
1861

1862
	if (chan->state != BT_CONNECTED)
1863
		return -ENOTCONN;
1864

1865 1866 1867
	if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state))
		return 0;

1868 1869 1870
	if (__chan_is_moving(chan))
		return 0;

1871 1872 1873
	while (chan->tx_send_head &&
	       chan->unacked_frames < chan->remote_tx_win &&
	       chan->tx_state == L2CAP_TX_STATE_XMIT) {
1874

1875
		skb = chan->tx_send_head;
1876

1877 1878
		bt_cb(skb)->control.retries = 1;
		control = &bt_cb(skb)->control;
1879

1880
		if (test_and_clear_bit(CONN_SEND_FBIT, &chan->conn_state))
1881
			control->final = 1;
1882

1883 1884 1885
		control->reqseq = chan->buffer_seq;
		chan->last_acked_seq = chan->buffer_seq;
		control->txseq = chan->next_tx_seq;
1886

1887
		__pack_control(chan, control, skb);
1888

1889
		if (chan->fcs == L2CAP_FCS_CRC16) {
1890 1891
			u16 fcs = crc16(0, (u8 *) skb->data, skb->len);
			put_unaligned_le16(fcs, skb_put(skb, L2CAP_FCS_SIZE));
1892 1893
		}

1894 1895 1896 1897
		/* Clone after data has been modified. Data is assumed to be
		   read-only (for locking purposes) on cloned sk_buffs.
		 */
		tx_skb = skb_clone(skb, GFP_KERNEL);
1898

1899 1900
		if (!tx_skb)
			break;
1901

1902
		__set_retrans_timer(chan);
1903 1904

		chan->next_tx_seq = __next_seq(chan, chan->next_tx_seq);
1905
		chan->unacked_frames++;
1906
		chan->frames_sent++;
1907
		sent++;
1908

1909 1910
		if (skb_queue_is_last(&chan->tx_q, skb))
			chan->tx_send_head = NULL;
1911
		else
1912
			chan->tx_send_head = skb_queue_next(&chan->tx_q, skb);
1913 1914

		l2cap_do_send(chan, tx_skb);
1915
		BT_DBG("Sent txseq %u", control->txseq);
1916 1917
	}

1918 1919
	BT_DBG("Sent %d, %u unacked, %u in ERTM queue", sent,
	       chan->unacked_frames, skb_queue_len(&chan->tx_q));
1920 1921

	return sent;
1922 1923
}

1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
static void l2cap_ertm_resend(struct l2cap_chan *chan)
{
	struct l2cap_ctrl control;
	struct sk_buff *skb;
	struct sk_buff *tx_skb;
	u16 seq;

	BT_DBG("chan %p", chan);

	if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state))
		return;

1936 1937 1938
	if (__chan_is_moving(chan))
		return;

1939 1940 1941 1942 1943 1944
	while (chan->retrans_list.head != L2CAP_SEQ_LIST_CLEAR) {
		seq = l2cap_seq_list_pop(&chan->retrans_list);

		skb = l2cap_ertm_seq_in_queue(&chan->tx_q, seq);
		if (!skb) {
			BT_DBG("Error: Can't retransmit seq %d, frame missing",
1945
			       seq);
1946 1947 1948 1949 1950 1951 1952 1953 1954
			continue;
		}

		bt_cb(skb)->control.retries++;
		control = bt_cb(skb)->control;

		if (chan->max_tx != 0 &&
		    bt_cb(skb)->control.retries > chan->max_tx) {
			BT_DBG("Retry limit exceeded (%d)", chan->max_tx);
1955
			l2cap_send_disconn_req(chan, ECONNRESET);
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
			l2cap_seq_list_clear(&chan->retrans_list);
			break;
		}

		control.reqseq = chan->buffer_seq;
		if (test_and_clear_bit(CONN_SEND_FBIT, &chan->conn_state))
			control.final = 1;
		else
			control.final = 0;

		if (skb_cloned(skb)) {
			/* Cloned sk_buffs are read-only, so we need a
			 * writeable copy
			 */
1970
			tx_skb = skb_copy(skb, GFP_KERNEL);
1971
		} else {
1972
			tx_skb = skb_clone(skb, GFP_KERNEL);
1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988
		}

		if (!tx_skb) {
			l2cap_seq_list_clear(&chan->retrans_list);
			break;
		}

		/* Update skb contents */
		if (test_bit(FLAG_EXT_CTRL, &chan->flags)) {
			put_unaligned_le32(__pack_extended_control(&control),
					   tx_skb->data + L2CAP_HDR_SIZE);
		} else {
			put_unaligned_le16(__pack_enhanced_control(&control),
					   tx_skb->data + L2CAP_HDR_SIZE);
		}

1989
		/* Update FCS */
1990
		if (chan->fcs == L2CAP_FCS_CRC16) {
1991 1992 1993 1994
			u16 fcs = crc16(0, (u8 *) tx_skb->data,
					tx_skb->len - L2CAP_FCS_SIZE);
			put_unaligned_le16(fcs, skb_tail_pointer(tx_skb) -
						L2CAP_FCS_SIZE);
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
		}

		l2cap_do_send(chan, tx_skb);

		BT_DBG("Resent txseq %d", control.txseq);

		chan->last_acked_seq = chan->buffer_seq;
	}
}

2005 2006 2007 2008 2009 2010 2011 2012 2013
static void l2cap_retransmit(struct l2cap_chan *chan,
			     struct l2cap_ctrl *control)
{
	BT_DBG("chan %p, control %p", chan, control);

	l2cap_seq_list_append(&chan->retrans_list, control->reqseq);
	l2cap_ertm_resend(chan);
}

2014 2015 2016
static void l2cap_retransmit_all(struct l2cap_chan *chan,
				 struct l2cap_ctrl *control)
{
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
	struct sk_buff *skb;

	BT_DBG("chan %p, control %p", chan, control);

	if (control->poll)
		set_bit(CONN_SEND_FBIT, &chan->conn_state);

	l2cap_seq_list_clear(&chan->retrans_list);

	if (test_bit(CONN_REMOTE_BUSY, &chan->conn_state))
		return;

	if (chan->unacked_frames) {
		skb_queue_walk(&chan->tx_q, skb) {
			if (bt_cb(skb)->control.txseq == control->reqseq ||
2032
			    skb == chan->tx_send_head)
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
				break;
		}

		skb_queue_walk_from(&chan->tx_q, skb) {
			if (skb == chan->tx_send_head)
				break;

			l2cap_seq_list_append(&chan->retrans_list,
					      bt_cb(skb)->control.txseq);
		}

		l2cap_ertm_resend(chan);
	}
2046 2047
}

2048
static void l2cap_send_ack(struct l2cap_chan *chan)
2049
{
2050 2051 2052 2053
	struct l2cap_ctrl control;
	u16 frames_to_ack = __seq_offset(chan, chan->buffer_seq,
					 chan->last_acked_seq);
	int threshold;
2054

2055 2056
	BT_DBG("chan %p last_acked_seq %d buffer_seq %d",
	       chan, chan->last_acked_seq, chan->buffer_seq);
2057

2058 2059
	memset(&control, 0, sizeof(control));
	control.sframe = 1;
2060

2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073
	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state) &&
	    chan->rx_state == L2CAP_RX_STATE_RECV) {
		__clear_ack_timer(chan);
		control.super = L2CAP_SUPER_RNR;
		control.reqseq = chan->buffer_seq;
		l2cap_send_sframe(chan, &control);
	} else {
		if (!test_bit(CONN_REMOTE_BUSY, &chan->conn_state)) {
			l2cap_ertm_send(chan);
			/* If any i-frames were sent, they included an ack */
			if (chan->buffer_seq == chan->last_acked_seq)
				frames_to_ack = 0;
		}
2074

2075
		/* Ack now if the window is 3/4ths full.
2076 2077
		 * Calculate without mul or div
		 */
2078
		threshold = chan->ack_win;
2079 2080 2081
		threshold += threshold << 1;
		threshold >>= 2;

2082
		BT_DBG("frames_to_ack %u, threshold %d", frames_to_ack,
2083 2084 2085 2086 2087 2088 2089 2090 2091
		       threshold);

		if (frames_to_ack >= threshold) {
			__clear_ack_timer(chan);
			control.super = L2CAP_SUPER_RR;
			control.reqseq = chan->buffer_seq;
			l2cap_send_sframe(chan, &control);
			frames_to_ack = 0;
		}
2092

2093 2094 2095
		if (frames_to_ack)
			__set_ack_timer(chan);
	}
2096 2097
}

2098 2099 2100
static inline int l2cap_skbuff_fromiovec(struct l2cap_chan *chan,
					 struct msghdr *msg, int len,
					 int count, struct sk_buff *skb)
2101
{
2102
	struct l2cap_conn *conn = chan->conn;
2103
	struct sk_buff **frag;
2104
	int sent = 0;
L
Linus Torvalds 已提交
2105

2106 2107
	if (chan->ops->memcpy_fromiovec(chan, skb_put(skb, count),
					msg->msg_iov, count))
2108
		return -EFAULT;
L
Linus Torvalds 已提交
2109 2110 2111 2112 2113 2114 2115

	sent += count;
	len  -= count;

	/* Continuation fragments (no L2CAP header) */
	frag = &skb_shinfo(skb)->frag_list;
	while (len) {
2116 2117
		struct sk_buff *tmp;

L
Linus Torvalds 已提交
2118 2119
		count = min_t(unsigned int, conn->mtu, len);

2120
		tmp = chan->ops->alloc_skb(chan, 0, count,
2121 2122 2123 2124 2125
					   msg->msg_flags & MSG_DONTWAIT);
		if (IS_ERR(tmp))
			return PTR_ERR(tmp);

		*frag = tmp;
2126

2127 2128
		if (chan->ops->memcpy_fromiovec(chan, skb_put(*frag, count),
						msg->msg_iov, count))
2129
			return -EFAULT;
L
Linus Torvalds 已提交
2130 2131 2132 2133

		sent += count;
		len  -= count;

2134 2135 2136
		skb->len += (*frag)->len;
		skb->data_len += (*frag)->len;

L
Linus Torvalds 已提交
2137 2138 2139 2140
		frag = &(*frag)->next;
	}

	return sent;
2141
}
L
Linus Torvalds 已提交
2142

2143
static struct sk_buff *l2cap_create_connless_pdu(struct l2cap_chan *chan,
2144
						 struct msghdr *msg, size_t len)
2145
{
2146
	struct l2cap_conn *conn = chan->conn;
2147
	struct sk_buff *skb;
2148
	int err, count, hlen = L2CAP_HDR_SIZE + L2CAP_PSMLEN_SIZE;
2149 2150
	struct l2cap_hdr *lh;

2151 2152
	BT_DBG("chan %p psm 0x%2.2x len %zu", chan,
	       __le16_to_cpu(chan->psm), len);
2153 2154

	count = min_t(unsigned int, (conn->mtu - hlen), len);
2155

2156
	skb = chan->ops->alloc_skb(chan, hlen, count,
2157 2158 2159
				   msg->msg_flags & MSG_DONTWAIT);
	if (IS_ERR(skb))
		return skb;
2160 2161 2162

	/* Create L2CAP header */
	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
2163
	lh->cid = cpu_to_le16(chan->dcid);
2164
	lh->len = cpu_to_le16(len + L2CAP_PSMLEN_SIZE);
2165
	put_unaligned(chan->psm, (__le16 *) skb_put(skb, L2CAP_PSMLEN_SIZE));
2166

2167
	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
2168 2169 2170 2171 2172 2173 2174
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}
	return skb;
}

2175
static struct sk_buff *l2cap_create_basic_pdu(struct l2cap_chan *chan,
2176
					      struct msghdr *msg, size_t len)
2177
{
2178
	struct l2cap_conn *conn = chan->conn;
2179
	struct sk_buff *skb;
2180
	int err, count;
2181 2182
	struct l2cap_hdr *lh;

2183
	BT_DBG("chan %p len %zu", chan, len);
2184

2185
	count = min_t(unsigned int, (conn->mtu - L2CAP_HDR_SIZE), len);
2186

2187
	skb = chan->ops->alloc_skb(chan, L2CAP_HDR_SIZE, count,
2188 2189 2190
				   msg->msg_flags & MSG_DONTWAIT);
	if (IS_ERR(skb))
		return skb;
2191 2192 2193

	/* Create L2CAP header */
	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
2194
	lh->cid = cpu_to_le16(chan->dcid);
2195
	lh->len = cpu_to_le16(len);
2196

2197
	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
2198 2199 2200 2201 2202 2203 2204
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}
	return skb;
}

2205
static struct sk_buff *l2cap_create_iframe_pdu(struct l2cap_chan *chan,
2206 2207
					       struct msghdr *msg, size_t len,
					       u16 sdulen)
2208
{
2209
	struct l2cap_conn *conn = chan->conn;
2210
	struct sk_buff *skb;
2211
	int err, count, hlen;
2212 2213
	struct l2cap_hdr *lh;

2214
	BT_DBG("chan %p len %zu", chan, len);
2215

2216 2217 2218
	if (!conn)
		return ERR_PTR(-ENOTCONN);

2219
	hlen = __ertm_hdr_size(chan);
2220

2221
	if (sdulen)
2222
		hlen += L2CAP_SDULEN_SIZE;
2223

2224
	if (chan->fcs == L2CAP_FCS_CRC16)
2225
		hlen += L2CAP_FCS_SIZE;
2226

2227
	count = min_t(unsigned int, (conn->mtu - hlen), len);
2228

2229
	skb = chan->ops->alloc_skb(chan, hlen, count,
2230 2231 2232
				   msg->msg_flags & MSG_DONTWAIT);
	if (IS_ERR(skb))
		return skb;
2233 2234 2235

	/* Create L2CAP header */
	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
2236
	lh->cid = cpu_to_le16(chan->dcid);
2237
	lh->len = cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE));
2238

2239 2240 2241 2242 2243
	/* Control header is populated later */
	if (test_bit(FLAG_EXT_CTRL, &chan->flags))
		put_unaligned_le32(0, skb_put(skb, L2CAP_EXT_CTRL_SIZE));
	else
		put_unaligned_le16(0, skb_put(skb, L2CAP_ENH_CTRL_SIZE));
2244

2245
	if (sdulen)
2246
		put_unaligned_le16(sdulen, skb_put(skb, L2CAP_SDULEN_SIZE));
2247

2248
	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
2249 2250 2251 2252
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}
2253

2254
	bt_cb(skb)->control.fcs = chan->fcs;
2255
	bt_cb(skb)->control.retries = 0;
2256
	return skb;
L
Linus Torvalds 已提交
2257 2258
}

2259 2260 2261
static int l2cap_segment_sdu(struct l2cap_chan *chan,
			     struct sk_buff_head *seg_queue,
			     struct msghdr *msg, size_t len)
2262 2263
{
	struct sk_buff *skb;
2264 2265 2266
	u16 sdu_len;
	size_t pdu_len;
	u8 sar;
2267

2268
	BT_DBG("chan %p, msg %p, len %zu", chan, msg, len);
2269

2270 2271 2272 2273
	/* It is critical that ERTM PDUs fit in a single HCI fragment,
	 * so fragmented skbs are not used.  The HCI layer's handling
	 * of fragmented skbs is not compatible with ERTM's queueing.
	 */
2274

2275 2276
	/* PDU size is derived from the HCI MTU */
	pdu_len = chan->conn->mtu;
2277

2278 2279 2280
	/* Constrain PDU size for BR/EDR connections */
	if (!chan->hs_hcon)
		pdu_len = min_t(size_t, pdu_len, L2CAP_BREDR_MAX_PAYLOAD);
2281 2282

	/* Adjust for largest possible L2CAP overhead. */
2283 2284 2285
	if (chan->fcs)
		pdu_len -= L2CAP_FCS_SIZE;

2286
	pdu_len -= __ertm_hdr_size(chan);
2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301

	/* Remote device may have requested smaller PDUs */
	pdu_len = min_t(size_t, pdu_len, chan->remote_mps);

	if (len <= pdu_len) {
		sar = L2CAP_SAR_UNSEGMENTED;
		sdu_len = 0;
		pdu_len = len;
	} else {
		sar = L2CAP_SAR_START;
		sdu_len = len;
	}

	while (len > 0) {
		skb = l2cap_create_iframe_pdu(chan, msg, pdu_len, sdu_len);
2302 2303

		if (IS_ERR(skb)) {
2304
			__skb_queue_purge(seg_queue);
2305 2306 2307
			return PTR_ERR(skb);
		}

2308 2309 2310 2311
		bt_cb(skb)->control.sar = sar;
		__skb_queue_tail(seg_queue, skb);

		len -= pdu_len;
2312
		if (sdu_len)
2313 2314 2315 2316 2317 2318 2319 2320
			sdu_len = 0;

		if (len <= pdu_len) {
			sar = L2CAP_SAR_END;
			pdu_len = len;
		} else {
			sar = L2CAP_SAR_CONTINUE;
		}
2321 2322
	}

2323
	return 0;
2324 2325
}

2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346
static struct sk_buff *l2cap_create_le_flowctl_pdu(struct l2cap_chan *chan,
						   struct msghdr *msg,
						   size_t len, u16 sdulen)
{
	struct l2cap_conn *conn = chan->conn;
	struct sk_buff *skb;
	int err, count, hlen;
	struct l2cap_hdr *lh;

	BT_DBG("chan %p len %zu", chan, len);

	if (!conn)
		return ERR_PTR(-ENOTCONN);

	hlen = L2CAP_HDR_SIZE;

	if (sdulen)
		hlen += L2CAP_SDULEN_SIZE;

	count = min_t(unsigned int, (conn->mtu - hlen), len);

2347
	skb = chan->ops->alloc_skb(chan, hlen, count,
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
				   msg->msg_flags & MSG_DONTWAIT);
	if (IS_ERR(skb))
		return skb;

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

	if (sdulen)
		put_unaligned_le16(sdulen, skb_put(skb, L2CAP_SDULEN_SIZE));

	err = l2cap_skbuff_fromiovec(chan, msg, len, count, skb);
	if (unlikely(err < 0)) {
		kfree_skb(skb);
		return ERR_PTR(err);
	}

	return skb;
}

static int l2cap_segment_le_sdu(struct l2cap_chan *chan,
				struct sk_buff_head *seg_queue,
				struct msghdr *msg, size_t len)
{
	struct sk_buff *skb;
	size_t pdu_len;
	u16 sdu_len;

	BT_DBG("chan %p, msg %p, len %zu", chan, msg, len);

	sdu_len = len;
2380
	pdu_len = chan->remote_mps - L2CAP_SDULEN_SIZE;
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404

	while (len > 0) {
		if (len <= pdu_len)
			pdu_len = len;

		skb = l2cap_create_le_flowctl_pdu(chan, msg, pdu_len, sdu_len);
		if (IS_ERR(skb)) {
			__skb_queue_purge(seg_queue);
			return PTR_ERR(skb);
		}

		__skb_queue_tail(seg_queue, skb);

		len -= pdu_len;

		if (sdu_len) {
			sdu_len = 0;
			pdu_len += L2CAP_SDULEN_SIZE;
		}
	}

	return 0;
}

2405
int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len)
2406 2407 2408
{
	struct sk_buff *skb;
	int err;
2409
	struct sk_buff_head seg_queue;
2410

2411 2412 2413
	if (!chan->conn)
		return -ENOTCONN;

2414
	/* Connectionless channel */
2415
	if (chan->chan_type == L2CAP_CHAN_CONN_LESS) {
2416
		skb = l2cap_create_connless_pdu(chan, msg, len);
2417 2418 2419
		if (IS_ERR(skb))
			return PTR_ERR(skb);

2420 2421 2422 2423 2424 2425 2426 2427
		/* Channel lock is released before requesting new skb and then
		 * reacquired thus we need to recheck channel state.
		 */
		if (chan->state != BT_CONNECTED) {
			kfree_skb(skb);
			return -ENOTCONN;
		}

2428 2429 2430 2431 2432
		l2cap_do_send(chan, skb);
		return len;
	}

	switch (chan->mode) {
2433
	case L2CAP_MODE_LE_FLOWCTL:
2434 2435 2436 2437
		/* Check outgoing MTU */
		if (len > chan->omtu)
			return -EMSGSIZE;

2438 2439 2440
		if (!chan->tx_credits)
			return -EAGAIN;

2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466
		__skb_queue_head_init(&seg_queue);

		err = l2cap_segment_le_sdu(chan, &seg_queue, msg, len);

		if (chan->state != BT_CONNECTED) {
			__skb_queue_purge(&seg_queue);
			err = -ENOTCONN;
		}

		if (err)
			return err;

		skb_queue_splice_tail_init(&seg_queue, &chan->tx_q);

		while (chan->tx_credits && !skb_queue_empty(&chan->tx_q)) {
			l2cap_do_send(chan, skb_dequeue(&chan->tx_q));
			chan->tx_credits--;
		}

		if (!chan->tx_credits)
			chan->ops->suspend(chan);

		err = len;

		break;

2467
	case L2CAP_MODE_BASIC:
2468 2469 2470 2471 2472
		/* Check outgoing MTU */
		if (len > chan->omtu)
			return -EMSGSIZE;

		/* Create a basic PDU */
2473
		skb = l2cap_create_basic_pdu(chan, msg, len);
2474 2475 2476
		if (IS_ERR(skb))
			return PTR_ERR(skb);

2477 2478 2479 2480 2481 2482 2483 2484
		/* Channel lock is released before requesting new skb and then
		 * reacquired thus we need to recheck channel state.
		 */
		if (chan->state != BT_CONNECTED) {
			kfree_skb(skb);
			return -ENOTCONN;
		}

2485 2486 2487 2488 2489 2490
		l2cap_do_send(chan, skb);
		err = len;
		break;

	case L2CAP_MODE_ERTM:
	case L2CAP_MODE_STREAMING:
2491 2492 2493 2494 2495
		/* Check outgoing MTU */
		if (len > chan->omtu) {
			err = -EMSGSIZE;
			break;
		}
2496

2497
		__skb_queue_head_init(&seg_queue);
2498

2499 2500 2501 2502 2503
		/* Do segmentation before calling in to the state machine,
		 * since it's possible to block while waiting for memory
		 * allocation.
		 */
		err = l2cap_segment_sdu(chan, &seg_queue, msg, len);
2504

2505 2506 2507 2508 2509 2510
		/* The channel could have been closed while segmenting,
		 * check that it is still connected.
		 */
		if (chan->state != BT_CONNECTED) {
			__skb_queue_purge(&seg_queue);
			err = -ENOTCONN;
2511 2512
		}

2513
		if (err)
2514 2515
			break;

2516
		if (chan->mode == L2CAP_MODE_ERTM)
2517
			l2cap_tx(chan, NULL, &seg_queue, L2CAP_EV_DATA_REQUEST);
2518
		else
2519
			l2cap_streaming_send(chan, &seg_queue);
2520

2521
		err = len;
2522

2523 2524 2525 2526
		/* If the skbs were not queued for sending, they'll still be in
		 * seg_queue and need to be purged.
		 */
		__skb_queue_purge(&seg_queue);
2527 2528 2529 2530 2531 2532 2533 2534 2535
		break;

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

	return err;
}
2536
EXPORT_SYMBOL_GPL(l2cap_chan_send);
2537

2538 2539
static void l2cap_send_srej(struct l2cap_chan *chan, u16 txseq)
{
2540 2541 2542
	struct l2cap_ctrl control;
	u16 seq;

2543
	BT_DBG("chan %p, txseq %u", chan, txseq);
2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558

	memset(&control, 0, sizeof(control));
	control.sframe = 1;
	control.super = L2CAP_SUPER_SREJ;

	for (seq = chan->expected_tx_seq; seq != txseq;
	     seq = __next_seq(chan, seq)) {
		if (!l2cap_ertm_seq_in_queue(&chan->srej_q, seq)) {
			control.reqseq = seq;
			l2cap_send_sframe(chan, &control);
			l2cap_seq_list_append(&chan->srej_list, seq);
		}
	}

	chan->expected_tx_seq = __next_seq(chan, txseq);
2559 2560 2561 2562
}

static void l2cap_send_srej_tail(struct l2cap_chan *chan)
{
2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574
	struct l2cap_ctrl control;

	BT_DBG("chan %p", chan);

	if (chan->srej_list.tail == L2CAP_SEQ_LIST_CLEAR)
		return;

	memset(&control, 0, sizeof(control));
	control.sframe = 1;
	control.super = L2CAP_SUPER_SREJ;
	control.reqseq = chan->srej_list.tail;
	l2cap_send_sframe(chan, &control);
2575 2576 2577 2578
}

static void l2cap_send_srej_list(struct l2cap_chan *chan, u16 txseq)
{
2579 2580 2581 2582
	struct l2cap_ctrl control;
	u16 initial_head;
	u16 seq;

2583
	BT_DBG("chan %p, txseq %u", chan, txseq);
2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600

	memset(&control, 0, sizeof(control));
	control.sframe = 1;
	control.super = L2CAP_SUPER_SREJ;

	/* Capture initial list head to allow only one pass through the list. */
	initial_head = chan->srej_list.head;

	do {
		seq = l2cap_seq_list_pop(&chan->srej_list);
		if (seq == txseq || seq == L2CAP_SEQ_LIST_CLEAR)
			break;

		control.reqseq = seq;
		l2cap_send_sframe(chan, &control);
		l2cap_seq_list_append(&chan->srej_list, seq);
	} while (chan->srej_list.head != initial_head);
2601 2602
}

2603 2604 2605 2606 2607
static void l2cap_process_reqseq(struct l2cap_chan *chan, u16 reqseq)
{
	struct sk_buff *acked_skb;
	u16 ackseq;

2608
	BT_DBG("chan %p, reqseq %u", chan, reqseq);
2609 2610 2611 2612

	if (chan->unacked_frames == 0 || reqseq == chan->expected_ack_seq)
		return;

2613
	BT_DBG("expected_ack_seq %u, unacked_frames %u",
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631
	       chan->expected_ack_seq, chan->unacked_frames);

	for (ackseq = chan->expected_ack_seq; ackseq != reqseq;
	     ackseq = __next_seq(chan, ackseq)) {

		acked_skb = l2cap_ertm_seq_in_queue(&chan->tx_q, ackseq);
		if (acked_skb) {
			skb_unlink(acked_skb, &chan->tx_q);
			kfree_skb(acked_skb);
			chan->unacked_frames--;
		}
	}

	chan->expected_ack_seq = reqseq;

	if (chan->unacked_frames == 0)
		__clear_retrans_timer(chan);

2632
	BT_DBG("unacked_frames %u", chan->unacked_frames);
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644
}

static void l2cap_abort_rx_srej_sent(struct l2cap_chan *chan)
{
	BT_DBG("chan %p", chan);

	chan->expected_tx_seq = chan->buffer_seq;
	l2cap_seq_list_clear(&chan->srej_list);
	skb_queue_purge(&chan->srej_q);
	chan->rx_state = L2CAP_RX_STATE_RECV;
}

2645 2646 2647
static void l2cap_tx_state_xmit(struct l2cap_chan *chan,
				struct l2cap_ctrl *control,
				struct sk_buff_head *skbs, u8 event)
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
{
	BT_DBG("chan %p, control %p, skbs %p, event %d", chan, control, skbs,
	       event);

	switch (event) {
	case L2CAP_EV_DATA_REQUEST:
		if (chan->tx_send_head == NULL)
			chan->tx_send_head = skb_peek(skbs);

		skb_queue_splice_tail_init(skbs, &chan->tx_q);
		l2cap_ertm_send(chan);
		break;
	case L2CAP_EV_LOCAL_BUSY_DETECTED:
		BT_DBG("Enter LOCAL_BUSY");
		set_bit(CONN_LOCAL_BUSY, &chan->conn_state);

		if (chan->rx_state == L2CAP_RX_STATE_SREJ_SENT) {
			/* The SREJ_SENT state must be aborted if we are to
			 * enter the LOCAL_BUSY state.
			 */
			l2cap_abort_rx_srej_sent(chan);
		}

		l2cap_send_ack(chan);

		break;
	case L2CAP_EV_LOCAL_BUSY_CLEAR:
		BT_DBG("Exit LOCAL_BUSY");
		clear_bit(CONN_LOCAL_BUSY, &chan->conn_state);

		if (test_bit(CONN_RNR_SENT, &chan->conn_state)) {
			struct l2cap_ctrl local_control;

			memset(&local_control, 0, sizeof(local_control));
			local_control.sframe = 1;
			local_control.super = L2CAP_SUPER_RR;
			local_control.poll = 1;
			local_control.reqseq = chan->buffer_seq;
2686
			l2cap_send_sframe(chan, &local_control);
2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716

			chan->retry_count = 1;
			__set_monitor_timer(chan);
			chan->tx_state = L2CAP_TX_STATE_WAIT_F;
		}
		break;
	case L2CAP_EV_RECV_REQSEQ_AND_FBIT:
		l2cap_process_reqseq(chan, control->reqseq);
		break;
	case L2CAP_EV_EXPLICIT_POLL:
		l2cap_send_rr_or_rnr(chan, 1);
		chan->retry_count = 1;
		__set_monitor_timer(chan);
		__clear_ack_timer(chan);
		chan->tx_state = L2CAP_TX_STATE_WAIT_F;
		break;
	case L2CAP_EV_RETRANS_TO:
		l2cap_send_rr_or_rnr(chan, 1);
		chan->retry_count = 1;
		__set_monitor_timer(chan);
		chan->tx_state = L2CAP_TX_STATE_WAIT_F;
		break;
	case L2CAP_EV_RECV_FBIT:
		/* Nothing to process */
		break;
	default:
		break;
	}
}

2717 2718 2719
static void l2cap_tx_state_wait_f(struct l2cap_chan *chan,
				  struct l2cap_ctrl *control,
				  struct sk_buff_head *skbs, u8 event)
2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755
{
	BT_DBG("chan %p, control %p, skbs %p, event %d", chan, control, skbs,
	       event);

	switch (event) {
	case L2CAP_EV_DATA_REQUEST:
		if (chan->tx_send_head == NULL)
			chan->tx_send_head = skb_peek(skbs);
		/* Queue data, but don't send. */
		skb_queue_splice_tail_init(skbs, &chan->tx_q);
		break;
	case L2CAP_EV_LOCAL_BUSY_DETECTED:
		BT_DBG("Enter LOCAL_BUSY");
		set_bit(CONN_LOCAL_BUSY, &chan->conn_state);

		if (chan->rx_state == L2CAP_RX_STATE_SREJ_SENT) {
			/* The SREJ_SENT state must be aborted if we are to
			 * enter the LOCAL_BUSY state.
			 */
			l2cap_abort_rx_srej_sent(chan);
		}

		l2cap_send_ack(chan);

		break;
	case L2CAP_EV_LOCAL_BUSY_CLEAR:
		BT_DBG("Exit LOCAL_BUSY");
		clear_bit(CONN_LOCAL_BUSY, &chan->conn_state);

		if (test_bit(CONN_RNR_SENT, &chan->conn_state)) {
			struct l2cap_ctrl local_control;
			memset(&local_control, 0, sizeof(local_control));
			local_control.sframe = 1;
			local_control.super = L2CAP_SUPER_RR;
			local_control.poll = 1;
			local_control.reqseq = chan->buffer_seq;
2756
			l2cap_send_sframe(chan, &local_control);
2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786

			chan->retry_count = 1;
			__set_monitor_timer(chan);
			chan->tx_state = L2CAP_TX_STATE_WAIT_F;
		}
		break;
	case L2CAP_EV_RECV_REQSEQ_AND_FBIT:
		l2cap_process_reqseq(chan, control->reqseq);

		/* Fall through */

	case L2CAP_EV_RECV_FBIT:
		if (control && control->final) {
			__clear_monitor_timer(chan);
			if (chan->unacked_frames > 0)
				__set_retrans_timer(chan);
			chan->retry_count = 0;
			chan->tx_state = L2CAP_TX_STATE_XMIT;
			BT_DBG("recv fbit tx_state 0x2.2%x", chan->tx_state);
		}
		break;
	case L2CAP_EV_EXPLICIT_POLL:
		/* Ignore */
		break;
	case L2CAP_EV_MONITOR_TO:
		if (chan->max_tx == 0 || chan->retry_count < chan->max_tx) {
			l2cap_send_rr_or_rnr(chan, 1);
			__set_monitor_timer(chan);
			chan->retry_count++;
		} else {
2787
			l2cap_send_disconn_req(chan, ECONNABORTED);
2788 2789 2790 2791 2792 2793 2794
		}
		break;
	default:
		break;
	}
}

2795 2796
static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
		     struct sk_buff_head *skbs, u8 event)
2797 2798 2799 2800 2801 2802
{
	BT_DBG("chan %p, control %p, skbs %p, event %d, state %d",
	       chan, control, skbs, event, chan->tx_state);

	switch (chan->tx_state) {
	case L2CAP_TX_STATE_XMIT:
2803
		l2cap_tx_state_xmit(chan, control, skbs, event);
2804 2805
		break;
	case L2CAP_TX_STATE_WAIT_F:
2806
		l2cap_tx_state_wait_f(chan, control, skbs, event);
2807 2808 2809 2810 2811 2812 2813
		break;
	default:
		/* Ignore event */
		break;
	}
}

2814 2815 2816 2817
static void l2cap_pass_to_tx(struct l2cap_chan *chan,
			     struct l2cap_ctrl *control)
{
	BT_DBG("chan %p, control %p", chan, control);
2818
	l2cap_tx(chan, control, NULL, L2CAP_EV_RECV_REQSEQ_AND_FBIT);
2819 2820
}

2821 2822 2823 2824
static void l2cap_pass_to_tx_fbit(struct l2cap_chan *chan,
				  struct l2cap_ctrl *control)
{
	BT_DBG("chan %p, control %p", chan, control);
2825
	l2cap_tx(chan, control, NULL, L2CAP_EV_RECV_FBIT);
2826 2827
}

L
Linus Torvalds 已提交
2828 2829 2830 2831
/* 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;
2832
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
2833 2834 2835

	BT_DBG("conn %p", conn);

2836
	mutex_lock(&conn->chan_lock);
2837

2838
	list_for_each_entry(chan, &conn->chan_l, list) {
2839
		if (chan->chan_type != L2CAP_CHAN_RAW)
L
Linus Torvalds 已提交
2840 2841
			continue;

2842 2843
		/* Don't send frame to the channel it came from */
		if (bt_cb(skb)->chan == chan)
L
Linus Torvalds 已提交
2844
			continue;
2845

2846
		nskb = skb_clone(skb, GFP_KERNEL);
2847
		if (!nskb)
L
Linus Torvalds 已提交
2848
			continue;
2849
		if (chan->ops->recv(chan, nskb))
L
Linus Torvalds 已提交
2850 2851
			kfree_skb(nskb);
	}
2852

2853
	mutex_unlock(&conn->chan_lock);
L
Linus Torvalds 已提交
2854 2855 2856
}

/* ---- L2CAP signalling commands ---- */
2857 2858
static struct sk_buff *l2cap_build_cmd(struct l2cap_conn *conn, u8 code,
				       u8 ident, u16 dlen, void *data)
L
Linus Torvalds 已提交
2859 2860 2861 2862 2863 2864
{
	struct sk_buff *skb, **frag;
	struct l2cap_cmd_hdr *cmd;
	struct l2cap_hdr *lh;
	int len, count;

2865 2866
	BT_DBG("conn %p, code 0x%2.2x, ident 0x%2.2x, len %u",
	       conn, code, ident, dlen);
L
Linus Torvalds 已提交
2867

2868 2869 2870
	if (conn->mtu < L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE)
		return NULL;

L
Linus Torvalds 已提交
2871 2872 2873
	len = L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE + dlen;
	count = min_t(unsigned int, conn->mtu, len);

2874
	skb = bt_skb_alloc(count, GFP_KERNEL);
L
Linus Torvalds 已提交
2875 2876 2877 2878
	if (!skb)
		return NULL;

	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
2879
	lh->len = cpu_to_le16(L2CAP_CMD_HDR_SIZE + dlen);
2880 2881

	if (conn->hcon->type == LE_LINK)
2882
		lh->cid = cpu_to_le16(L2CAP_CID_LE_SIGNALING);
2883
	else
2884
		lh->cid = cpu_to_le16(L2CAP_CID_SIGNALING);
L
Linus Torvalds 已提交
2885 2886 2887 2888

	cmd = (struct l2cap_cmd_hdr *) skb_put(skb, L2CAP_CMD_HDR_SIZE);
	cmd->code  = code;
	cmd->ident = ident;
2889
	cmd->len   = cpu_to_le16(dlen);
L
Linus Torvalds 已提交
2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903

	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);

2904
		*frag = bt_skb_alloc(count, GFP_KERNEL);
L
Linus Torvalds 已提交
2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922
		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;
}

2923 2924
static inline int l2cap_get_conf_opt(void **ptr, int *type, int *olen,
				     unsigned long *val)
L
Linus Torvalds 已提交
2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940
{
	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:
2941
		*val = get_unaligned_le16(opt->val);
L
Linus Torvalds 已提交
2942 2943 2944
		break;

	case 4:
2945
		*val = get_unaligned_le32(opt->val);
L
Linus Torvalds 已提交
2946 2947 2948 2949 2950 2951 2952
		break;

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

2953
	BT_DBG("type 0x%2.2x len %u val 0x%lx", *type, opt->len, *val);
L
Linus Torvalds 已提交
2954 2955 2956 2957 2958 2959 2960
	return len;
}

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

2961
	BT_DBG("type 0x%2.2x len %u val 0x%lx", type, len, val);
L
Linus Torvalds 已提交
2962 2963 2964 2965 2966 2967 2968 2969 2970 2971

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

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

	case 2:
2972
		put_unaligned_le16(val, opt->val);
L
Linus Torvalds 已提交
2973 2974 2975
		break;

	case 4:
2976
		put_unaligned_le32(val, opt->val);
L
Linus Torvalds 已提交
2977 2978 2979 2980 2981 2982 2983 2984 2985 2986
		break;

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

	*ptr += L2CAP_CONF_OPT_SIZE + len;
}

2987 2988 2989 2990
static void l2cap_add_opt_efs(void **ptr, struct l2cap_chan *chan)
{
	struct l2cap_conf_efs efs;

2991
	switch (chan->mode) {
2992 2993 2994 2995 2996
	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);
2997 2998
		efs.acc_lat	= cpu_to_le32(L2CAP_DEFAULT_ACC_LAT);
		efs.flush_to	= cpu_to_le32(L2CAP_EFS_DEFAULT_FLUSH_TO);
2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014
		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),
3015
			   (unsigned long) &efs);
3016 3017
}

3018
static void l2cap_ack_timeout(struct work_struct *work)
3019
{
3020
	struct l2cap_chan *chan = container_of(work, struct l2cap_chan,
3021 3022
					       ack_timer.work);
	u16 frames_to_ack;
3023

3024 3025
	BT_DBG("chan %p", chan);

3026 3027
	l2cap_chan_lock(chan);

3028 3029
	frames_to_ack = __seq_offset(chan, chan->buffer_seq,
				     chan->last_acked_seq);
3030

3031 3032
	if (frames_to_ack)
		l2cap_send_rr_or_rnr(chan, 0);
3033

3034
	l2cap_chan_unlock(chan);
3035
	l2cap_chan_put(chan);
3036 3037
}

3038
int l2cap_ertm_init(struct l2cap_chan *chan)
3039
{
3040 3041
	int err;

3042 3043
	chan->next_tx_seq = 0;
	chan->expected_tx_seq = 0;
3044
	chan->expected_ack_seq = 0;
3045
	chan->unacked_frames = 0;
3046
	chan->buffer_seq = 0;
3047
	chan->frames_sent = 0;
3048 3049 3050 3051 3052
	chan->last_acked_seq = 0;
	chan->sdu = NULL;
	chan->sdu_last_frag = NULL;
	chan->sdu_len = 0;

3053 3054
	skb_queue_head_init(&chan->tx_q);

3055 3056
	chan->local_amp_id = AMP_ID_BREDR;
	chan->move_id = AMP_ID_BREDR;
3057 3058 3059
	chan->move_state = L2CAP_MOVE_STABLE;
	chan->move_role = L2CAP_MOVE_ROLE_NONE;

3060 3061 3062 3063 3064
	if (chan->mode != L2CAP_MODE_ERTM)
		return 0;

	chan->rx_state = L2CAP_RX_STATE_RECV;
	chan->tx_state = L2CAP_TX_STATE_XMIT;
3065

3066 3067 3068
	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);
3069

3070
	skb_queue_head_init(&chan->srej_q);
3071

3072 3073 3074 3075
	err = l2cap_seq_list_init(&chan->srej_list, chan->tx_win);
	if (err < 0)
		return err;

3076 3077 3078 3079 3080
	err = l2cap_seq_list_init(&chan->retrans_list, chan->remote_tx_win);
	if (err < 0)
		l2cap_seq_list_free(&chan->srej_list);

	return err;
3081 3082
}

3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095
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;
	}
}

3096
static inline bool __l2cap_ews_supported(struct l2cap_conn *conn)
3097
{
3098 3099
	return ((conn->local_fixed_chan & L2CAP_FC_A2MP) &&
		(conn->feat_mask & L2CAP_FEAT_EXT_WINDOW));
3100 3101
}

3102
static inline bool __l2cap_efs_supported(struct l2cap_conn *conn)
3103
{
3104 3105
	return ((conn->local_fixed_chan & L2CAP_FC_A2MP) &&
		(conn->feat_mask & L2CAP_FEAT_EXT_FLOW));
3106 3107
}

3108 3109 3110
static void __l2cap_set_ertm_timeouts(struct l2cap_chan *chan,
				      struct l2cap_conf_rfc *rfc)
{
3111
	if (chan->local_amp_id != AMP_ID_BREDR && chan->hs_hcon) {
3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140
		u64 ertm_to = chan->hs_hcon->hdev->amp_be_flush_to;

		/* Class 1 devices have must have ERTM timeouts
		 * exceeding the Link Supervision Timeout.  The
		 * default Link Supervision Timeout for AMP
		 * controllers is 10 seconds.
		 *
		 * Class 1 devices use 0xffffffff for their
		 * best-effort flush timeout, so the clamping logic
		 * will result in a timeout that meets the above
		 * requirement.  ERTM timeouts are 16-bit values, so
		 * the maximum timeout is 65.535 seconds.
		 */

		/* Convert timeout to milliseconds and round */
		ertm_to = DIV_ROUND_UP_ULL(ertm_to, 1000);

		/* This is the recommended formula for class 2 devices
		 * that start ERTM timers when packets are sent to the
		 * controller.
		 */
		ertm_to = 3 * ertm_to + 500;

		if (ertm_to > 0xffff)
			ertm_to = 0xffff;

		rfc->retrans_timeout = cpu_to_le16((u16) ertm_to);
		rfc->monitor_timeout = rfc->retrans_timeout;
	} else {
3141 3142
		rfc->retrans_timeout = cpu_to_le16(L2CAP_DEFAULT_RETRANS_TO);
		rfc->monitor_timeout = cpu_to_le16(L2CAP_DEFAULT_MONITOR_TO);
3143 3144 3145
	}
}

3146 3147 3148
static inline void l2cap_txwin_setup(struct l2cap_chan *chan)
{
	if (chan->tx_win > L2CAP_DEFAULT_TX_WINDOW &&
3149
	    __l2cap_ews_supported(chan->conn)) {
3150 3151
		/* use extended control field */
		set_bit(FLAG_EXT_CTRL, &chan->flags);
3152 3153
		chan->tx_win_max = L2CAP_DEFAULT_EXT_WINDOW;
	} else {
3154
		chan->tx_win = min_t(u16, chan->tx_win,
3155
				     L2CAP_DEFAULT_TX_WINDOW);
3156 3157
		chan->tx_win_max = L2CAP_DEFAULT_TX_WINDOW;
	}
3158
	chan->ack_win = chan->tx_win;
3159 3160
}

3161
static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data)
L
Linus Torvalds 已提交
3162 3163
{
	struct l2cap_conf_req *req = data;
3164
	struct l2cap_conf_rfc rfc = { .mode = chan->mode };
L
Linus Torvalds 已提交
3165
	void *ptr = req->data;
3166
	u16 size;
L
Linus Torvalds 已提交
3167

3168
	BT_DBG("chan %p", chan);
L
Linus Torvalds 已提交
3169

3170
	if (chan->num_conf_req || chan->num_conf_rsp)
3171 3172
		goto done;

3173
	switch (chan->mode) {
3174 3175
	case L2CAP_MODE_STREAMING:
	case L2CAP_MODE_ERTM:
3176
		if (test_bit(CONF_STATE2_DEVICE, &chan->conf_state))
3177 3178
			break;

3179
		if (__l2cap_efs_supported(chan->conn))
3180 3181
			set_bit(FLAG_EFS_ENABLE, &chan->flags);

3182
		/* fall through */
3183
	default:
3184
		chan->mode = l2cap_select_mode(rfc.mode, chan->conn->feat_mask);
3185 3186 3187 3188
		break;
	}

done:
3189 3190
	if (chan->imtu != L2CAP_DEFAULT_MTU)
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu);
3191

3192
	switch (chan->mode) {
3193
	case L2CAP_MODE_BASIC:
3194 3195 3196
		if (disable_ertm)
			break;

3197
		if (!(chan->conn->feat_mask & L2CAP_FEAT_ERTM) &&
3198
		    !(chan->conn->feat_mask & L2CAP_FEAT_STREAMING))
3199 3200
			break;

3201 3202 3203 3204 3205 3206 3207
		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;

3208
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc),
3209
				   (unsigned long) &rfc);
3210 3211 3212 3213
		break;

	case L2CAP_MODE_ERTM:
		rfc.mode            = L2CAP_MODE_ERTM;
3214
		rfc.max_transmit    = chan->max_tx;
3215 3216

		__l2cap_set_ertm_timeouts(chan, &rfc);
3217 3218

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

3223 3224 3225
		l2cap_txwin_setup(chan);

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

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

3231 3232 3233
		if (test_bit(FLAG_EFS_ENABLE, &chan->flags))
			l2cap_add_opt_efs(&ptr, chan);

3234 3235
		if (test_bit(FLAG_EXT_CTRL, &chan->flags))
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2,
3236
					   chan->tx_win);
3237 3238 3239

		if (chan->conn->feat_mask & L2CAP_FEAT_FCS)
			if (chan->fcs == L2CAP_FCS_NONE ||
3240
			    test_bit(CONF_RECV_NO_FCS, &chan->conf_state)) {
3241 3242 3243 3244
				chan->fcs = L2CAP_FCS_NONE;
				l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1,
						   chan->fcs);
			}
3245 3246 3247
		break;

	case L2CAP_MODE_STREAMING:
3248
		l2cap_txwin_setup(chan);
3249 3250 3251 3252 3253
		rfc.mode            = L2CAP_MODE_STREAMING;
		rfc.txwin_size      = 0;
		rfc.max_transmit    = 0;
		rfc.retrans_timeout = 0;
		rfc.monitor_timeout = 0;
3254 3255

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

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

3263 3264 3265
		if (test_bit(FLAG_EFS_ENABLE, &chan->flags))
			l2cap_add_opt_efs(&ptr, chan);

3266 3267
		if (chan->conn->feat_mask & L2CAP_FEAT_FCS)
			if (chan->fcs == L2CAP_FCS_NONE ||
3268
			    test_bit(CONF_RECV_NO_FCS, &chan->conf_state)) {
3269 3270 3271 3272
				chan->fcs = L2CAP_FCS_NONE;
				l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1,
						   chan->fcs);
			}
3273 3274
		break;
	}
L
Linus Torvalds 已提交
3275

3276
	req->dcid  = cpu_to_le16(chan->dcid);
3277
	req->flags = cpu_to_le16(0);
L
Linus Torvalds 已提交
3278 3279 3280 3281

	return ptr - data;
}

3282
static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data)
L
Linus Torvalds 已提交
3283
{
3284 3285
	struct l2cap_conf_rsp *rsp = data;
	void *ptr = rsp->data;
3286 3287
	void *req = chan->conf_req;
	int len = chan->conf_len;
3288 3289
	int type, hint, olen;
	unsigned long val;
3290
	struct l2cap_conf_rfc rfc = { .mode = L2CAP_MODE_BASIC };
3291 3292
	struct l2cap_conf_efs efs;
	u8 remote_efs = 0;
3293
	u16 mtu = L2CAP_DEFAULT_MTU;
3294
	u16 result = L2CAP_CONF_SUCCESS;
3295
	u16 size;
L
Linus Torvalds 已提交
3296

3297
	BT_DBG("chan %p", chan);
3298

3299 3300
	while (len >= L2CAP_CONF_OPT_SIZE) {
		len -= l2cap_get_conf_opt(&req, &type, &olen, &val);
L
Linus Torvalds 已提交
3301

3302
		hint  = type & L2CAP_CONF_HINT;
3303
		type &= L2CAP_CONF_MASK;
3304 3305 3306

		switch (type) {
		case L2CAP_CONF_MTU:
3307
			mtu = val;
3308 3309 3310
			break;

		case L2CAP_CONF_FLUSH_TO:
3311
			chan->flush_to = val;
3312 3313 3314 3315 3316
			break;

		case L2CAP_CONF_QOS:
			break;

3317 3318 3319 3320 3321
		case L2CAP_CONF_RFC:
			if (olen == sizeof(rfc))
				memcpy(&rfc, (void *) val, olen);
			break;

3322 3323
		case L2CAP_CONF_FCS:
			if (val == L2CAP_FCS_NONE)
3324
				set_bit(CONF_RECV_NO_FCS, &chan->conf_state);
3325
			break;
3326

3327 3328 3329 3330
		case L2CAP_CONF_EFS:
			remote_efs = 1;
			if (olen == sizeof(efs))
				memcpy(&efs, (void *) val, olen);
3331 3332
			break;

3333
		case L2CAP_CONF_EWS:
3334
			if (!(chan->conn->local_fixed_chan & L2CAP_FC_A2MP))
3335
				return -ECONNREFUSED;
3336

3337 3338
			set_bit(FLAG_EXT_CTRL, &chan->flags);
			set_bit(CONF_EWS_RECV, &chan->conf_state);
3339
			chan->tx_win_max = L2CAP_DEFAULT_EXT_WINDOW;
3340
			chan->remote_tx_win = val;
3341 3342
			break;

3343 3344 3345 3346 3347 3348 3349 3350 3351 3352
		default:
			if (hint)
				break;

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

3353
	if (chan->num_conf_rsp || chan->num_conf_req > 1)
3354 3355
		goto done;

3356
	switch (chan->mode) {
3357 3358
	case L2CAP_MODE_STREAMING:
	case L2CAP_MODE_ERTM:
3359
		if (!test_bit(CONF_STATE2_DEVICE, &chan->conf_state)) {
3360
			chan->mode = l2cap_select_mode(rfc.mode,
3361
						       chan->conn->feat_mask);
3362 3363 3364
			break;
		}

3365
		if (remote_efs) {
3366
			if (__l2cap_efs_supported(chan->conn))
3367 3368 3369 3370 3371
				set_bit(FLAG_EFS_ENABLE, &chan->flags);
			else
				return -ECONNREFUSED;
		}

3372
		if (chan->mode != rfc.mode)
3373
			return -ECONNREFUSED;
3374

3375 3376 3377 3378
		break;
	}

done:
3379
	if (chan->mode != rfc.mode) {
3380
		result = L2CAP_CONF_UNACCEPT;
3381
		rfc.mode = chan->mode;
3382

3383
		if (chan->num_conf_rsp == 1)
3384 3385
			return -ECONNREFUSED;

3386 3387
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc),
				   (unsigned long) &rfc);
3388 3389
	}

3390 3391 3392 3393
	if (result == L2CAP_CONF_SUCCESS) {
		/* Configure output options and let the other side know
		 * which ones we don't like. */

3394 3395 3396
		if (mtu < L2CAP_DEFAULT_MIN_MTU)
			result = L2CAP_CONF_UNACCEPT;
		else {
3397
			chan->omtu = mtu;
3398
			set_bit(CONF_MTU_DONE, &chan->conf_state);
3399
		}
3400
		l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->omtu);
3401

3402 3403
		if (remote_efs) {
			if (chan->local_stype != L2CAP_SERV_NOTRAFIC &&
3404 3405
			    efs.stype != L2CAP_SERV_NOTRAFIC &&
			    efs.stype != chan->local_stype) {
3406 3407 3408 3409 3410 3411 3412

				result = L2CAP_CONF_UNACCEPT;

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

				l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS,
3413 3414
						   sizeof(efs),
						   (unsigned long) &efs);
3415
			} else {
3416
				/* Send PENDING Conf Rsp */
3417 3418
				result = L2CAP_CONF_PENDING;
				set_bit(CONF_LOC_CONF_PEND, &chan->conf_state);
3419 3420 3421
			}
		}

3422 3423
		switch (rfc.mode) {
		case L2CAP_MODE_BASIC:
3424
			chan->fcs = L2CAP_FCS_NONE;
3425
			set_bit(CONF_MODE_DONE, &chan->conf_state);
3426 3427 3428
			break;

		case L2CAP_MODE_ERTM:
3429 3430 3431 3432
			if (!test_bit(CONF_EWS_RECV, &chan->conf_state))
				chan->remote_tx_win = rfc.txwin_size;
			else
				rfc.txwin_size = L2CAP_DEFAULT_TX_WINDOW;
3433

3434
			chan->remote_max_tx = rfc.max_transmit;
3435

3436
			size = min_t(u16, le16_to_cpu(rfc.max_pdu_size),
3437 3438
				     chan->conn->mtu - L2CAP_EXT_HDR_SIZE -
				     L2CAP_SDULEN_SIZE - L2CAP_FCS_SIZE);
3439 3440
			rfc.max_pdu_size = cpu_to_le16(size);
			chan->remote_mps = size;
3441

3442
			__l2cap_set_ertm_timeouts(chan, &rfc);
3443

3444
			set_bit(CONF_MODE_DONE, &chan->conf_state);
3445 3446

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

3449 3450 3451 3452 3453
			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 =
3454
					le32_to_cpu(efs.flush_to);
3455
				chan->remote_acc_lat =
3456
					le32_to_cpu(efs.acc_lat);
3457 3458 3459
				chan->remote_sdu_itime =
					le32_to_cpu(efs.sdu_itime);
				l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS,
3460 3461
						   sizeof(efs),
						   (unsigned long) &efs);
3462
			}
3463 3464 3465
			break;

		case L2CAP_MODE_STREAMING:
3466
			size = min_t(u16, le16_to_cpu(rfc.max_pdu_size),
3467 3468
				     chan->conn->mtu - L2CAP_EXT_HDR_SIZE -
				     L2CAP_SDULEN_SIZE - L2CAP_FCS_SIZE);
3469 3470
			rfc.max_pdu_size = cpu_to_le16(size);
			chan->remote_mps = size;
3471

3472
			set_bit(CONF_MODE_DONE, &chan->conf_state);
3473

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

3477 3478 3479
			break;

		default:
3480 3481
			result = L2CAP_CONF_UNACCEPT;

3482
			memset(&rfc, 0, sizeof(rfc));
3483
			rfc.mode = chan->mode;
3484
		}
3485

3486
		if (result == L2CAP_CONF_SUCCESS)
3487
			set_bit(CONF_OUTPUT_DONE, &chan->conf_state);
3488
	}
3489
	rsp->scid   = cpu_to_le16(chan->dcid);
3490
	rsp->result = cpu_to_le16(result);
3491
	rsp->flags  = cpu_to_le16(0);
3492 3493

	return ptr - data;
L
Linus Torvalds 已提交
3494 3495
}

3496 3497
static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len,
				void *data, u16 *result)
3498 3499 3500 3501 3502
{
	struct l2cap_conf_req *req = data;
	void *ptr = req->data;
	int type, olen;
	unsigned long val;
3503
	struct l2cap_conf_rfc rfc = { .mode = L2CAP_MODE_BASIC };
3504
	struct l2cap_conf_efs efs;
3505

3506
	BT_DBG("chan %p, rsp %p, len %d, req %p", chan, rsp, len, data);
3507 3508 3509 3510 3511 3512 3513 3514

	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;
3515
				chan->imtu = L2CAP_DEFAULT_MIN_MTU;
3516
			} else
3517 3518
				chan->imtu = val;
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu);
3519 3520 3521
			break;

		case L2CAP_CONF_FLUSH_TO:
3522
			chan->flush_to = val;
3523
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_FLUSH_TO,
3524
					   2, chan->flush_to);
3525 3526 3527 3528 3529 3530
			break;

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

3531
			if (test_bit(CONF_STATE2_DEVICE, &chan->conf_state) &&
3532
			    rfc.mode != chan->mode)
3533 3534
				return -ECONNREFUSED;

3535
			chan->fcs = 0;
3536 3537

			l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC,
3538
					   sizeof(rfc), (unsigned long) &rfc);
3539
			break;
3540 3541

		case L2CAP_CONF_EWS:
3542
			chan->ack_win = min_t(u16, val, chan->ack_win);
3543
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2,
3544
					   chan->tx_win);
3545
			break;
3546 3547 3548 3549 3550 3551

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

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

3556 3557
			l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs),
					   (unsigned long) &efs);
3558
			break;
3559 3560 3561 3562

		case L2CAP_CONF_FCS:
			if (*result == L2CAP_CONF_PENDING)
				if (val == L2CAP_FCS_NONE)
3563
					set_bit(CONF_RECV_NO_FCS,
3564 3565
						&chan->conf_state);
			break;
3566 3567 3568
		}
	}

3569
	if (chan->mode == L2CAP_MODE_BASIC && chan->mode != rfc.mode)
3570 3571
		return -ECONNREFUSED;

3572
	chan->mode = rfc.mode;
3573

3574
	if (*result == L2CAP_CONF_SUCCESS || *result == L2CAP_CONF_PENDING) {
3575 3576
		switch (rfc.mode) {
		case L2CAP_MODE_ERTM:
3577 3578 3579
			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);
3580 3581 3582
			if (!test_bit(FLAG_EXT_CTRL, &chan->flags))
				chan->ack_win = min_t(u16, chan->ack_win,
						      rfc.txwin_size);
3583 3584 3585 3586

			if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) {
				chan->local_msdu = le16_to_cpu(efs.msdu);
				chan->local_sdu_itime =
3587
					le32_to_cpu(efs.sdu_itime);
3588 3589
				chan->local_acc_lat = le32_to_cpu(efs.acc_lat);
				chan->local_flush_to =
3590
					le32_to_cpu(efs.flush_to);
3591
			}
3592
			break;
3593

3594
		case L2CAP_MODE_STREAMING:
3595
			chan->mps    = le16_to_cpu(rfc.max_pdu_size);
3596 3597 3598
		}
	}

3599
	req->dcid   = cpu_to_le16(chan->dcid);
3600
	req->flags  = cpu_to_le16(0);
3601 3602 3603 3604

	return ptr - data;
}

3605 3606
static int l2cap_build_conf_rsp(struct l2cap_chan *chan, void *data,
				u16 result, u16 flags)
L
Linus Torvalds 已提交
3607 3608 3609 3610
{
	struct l2cap_conf_rsp *rsp = data;
	void *ptr = rsp->data;

3611
	BT_DBG("chan %p", chan);
L
Linus Torvalds 已提交
3612

3613
	rsp->scid   = cpu_to_le16(chan->dcid);
3614
	rsp->result = cpu_to_le16(result);
3615
	rsp->flags  = cpu_to_le16(flags);
L
Linus Torvalds 已提交
3616 3617 3618 3619

	return ptr - data;
}

3620 3621 3622 3623 3624 3625 3626 3627 3628
void __l2cap_le_connect_rsp_defer(struct l2cap_chan *chan)
{
	struct l2cap_le_conn_rsp rsp;
	struct l2cap_conn *conn = chan->conn;

	BT_DBG("chan %p", chan);

	rsp.dcid    = cpu_to_le16(chan->scid);
	rsp.mtu     = cpu_to_le16(chan->imtu);
3629
	rsp.mps     = cpu_to_le16(chan->mps);
3630
	rsp.credits = cpu_to_le16(chan->rx_credits);
3631
	rsp.result  = cpu_to_le16(L2CAP_CR_SUCCESS);
3632 3633 3634 3635 3636

	l2cap_send_cmd(conn, chan->ident, L2CAP_LE_CONN_RSP, sizeof(rsp),
		       &rsp);
}

3637
void __l2cap_connect_rsp_defer(struct l2cap_chan *chan)
3638 3639
{
	struct l2cap_conn_rsp rsp;
3640
	struct l2cap_conn *conn = chan->conn;
3641
	u8 buf[128];
3642
	u8 rsp_code;
3643

3644 3645
	rsp.scid   = cpu_to_le16(chan->dcid);
	rsp.dcid   = cpu_to_le16(chan->scid);
3646 3647
	rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
	rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
3648 3649 3650 3651 3652 3653 3654 3655 3656

	if (chan->hs_hcon)
		rsp_code = L2CAP_CREATE_CHAN_RSP;
	else
		rsp_code = L2CAP_CONN_RSP;

	BT_DBG("chan %p rsp_code %u", chan, rsp_code);

	l2cap_send_cmd(conn, chan->ident, rsp_code, sizeof(rsp), &rsp);
3657

3658
	if (test_and_set_bit(CONF_REQ_SENT, &chan->conf_state))
3659 3660 3661
		return;

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

3666
static void l2cap_conf_rfc_get(struct l2cap_chan *chan, void *rsp, int len)
3667 3668 3669
{
	int type, olen;
	unsigned long val;
3670 3671 3672 3673 3674 3675
	/* Use sane default values in case a misbehaving remote device
	 * did not send an RFC or extended window size option.
	 */
	u16 txwin_ext = chan->ack_win;
	struct l2cap_conf_rfc rfc = {
		.mode = chan->mode,
3676 3677
		.retrans_timeout = cpu_to_le16(L2CAP_DEFAULT_RETRANS_TO),
		.monitor_timeout = cpu_to_le16(L2CAP_DEFAULT_MONITOR_TO),
3678 3679 3680
		.max_pdu_size = cpu_to_le16(chan->imtu),
		.txwin_size = min_t(u16, chan->ack_win, L2CAP_DEFAULT_TX_WINDOW),
	};
3681

3682
	BT_DBG("chan %p, rsp %p, len %d", chan, rsp, len);
3683

3684
	if ((chan->mode != L2CAP_MODE_ERTM) && (chan->mode != L2CAP_MODE_STREAMING))
3685 3686 3687 3688 3689
		return;

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

3690 3691 3692 3693
		switch (type) {
		case L2CAP_CONF_RFC:
			if (olen == sizeof(rfc))
				memcpy(&rfc, (void *)val, olen);
3694
			break;
3695 3696 3697 3698
		case L2CAP_CONF_EWS:
			txwin_ext = val;
			break;
		}
3699 3700 3701 3702
	}

	switch (rfc.mode) {
	case L2CAP_MODE_ERTM:
3703 3704
		chan->retrans_timeout = le16_to_cpu(rfc.retrans_timeout);
		chan->monitor_timeout = le16_to_cpu(rfc.monitor_timeout);
3705 3706 3707 3708 3709 3710
		chan->mps = le16_to_cpu(rfc.max_pdu_size);
		if (test_bit(FLAG_EXT_CTRL, &chan->flags))
			chan->ack_win = min_t(u16, chan->ack_win, txwin_ext);
		else
			chan->ack_win = min_t(u16, chan->ack_win,
					      rfc.txwin_size);
3711 3712
		break;
	case L2CAP_MODE_STREAMING:
3713
		chan->mps    = le16_to_cpu(rfc.max_pdu_size);
3714 3715 3716
	}
}

3717
static inline int l2cap_command_rej(struct l2cap_conn *conn,
3718 3719
				    struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				    u8 *data)
3720
{
3721
	struct l2cap_cmd_rej_unk *rej = (struct l2cap_cmd_rej_unk *) data;
3722

3723 3724 3725
	if (cmd_len < sizeof(*rej))
		return -EPROTO;

3726
	if (rej->reason != L2CAP_REJ_NOT_UNDERSTOOD)
3727 3728 3729
		return 0;

	if ((conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT) &&
3730
	    cmd->ident == conn->info_ident) {
3731
		cancel_delayed_work(&conn->info_timer);
3732 3733

		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
3734
		conn->info_ident = 0;
3735

3736 3737 3738 3739 3740 3741
		l2cap_conn_start(conn);
	}

	return 0;
}

3742 3743 3744
static struct l2cap_chan *l2cap_connect(struct l2cap_conn *conn,
					struct l2cap_cmd_hdr *cmd,
					u8 *data, u8 rsp_code, u8 amp_id)
L
Linus Torvalds 已提交
3745 3746 3747
{
	struct l2cap_conn_req *req = (struct l2cap_conn_req *) data;
	struct l2cap_conn_rsp rsp;
3748
	struct l2cap_chan *chan = NULL, *pchan;
3749
	int result, status = L2CAP_CS_NO_INFO;
L
Linus Torvalds 已提交
3750 3751

	u16 dcid = 0, scid = __le16_to_cpu(req->scid);
3752
	__le16 psm = req->psm;
L
Linus Torvalds 已提交
3753

3754
	BT_DBG("psm 0x%2.2x scid 0x%4.4x", __le16_to_cpu(psm), scid);
L
Linus Torvalds 已提交
3755 3756

	/* Check if we have socket listening on psm */
3757
	pchan = l2cap_global_chan_by_psm(BT_LISTEN, psm, &conn->hcon->src,
3758
					 &conn->hcon->dst, ACL_LINK);
3759
	if (!pchan) {
L
Linus Torvalds 已提交
3760 3761 3762 3763
		result = L2CAP_CR_BAD_PSM;
		goto sendresp;
	}

3764
	mutex_lock(&conn->chan_lock);
3765
	l2cap_chan_lock(pchan);
3766

3767
	/* Check if the ACL is secure enough (if not SDP) */
3768
	if (psm != cpu_to_le16(L2CAP_PSM_SDP) &&
3769
	    !hci_conn_check_link_mode(conn->hcon)) {
3770
		conn->disc_reason = HCI_ERROR_AUTH_FAILURE;
3771 3772 3773 3774
		result = L2CAP_CR_SEC_BLOCK;
		goto response;
	}

L
Linus Torvalds 已提交
3775 3776
	result = L2CAP_CR_NO_MEM;

3777 3778 3779 3780
	/* Check if we already have channel with that dcid */
	if (__l2cap_get_chan_by_dcid(conn, scid))
		goto response;

3781
	chan = pchan->ops->new_connection(pchan);
3782
	if (!chan)
L
Linus Torvalds 已提交
3783 3784
		goto response;

3785 3786 3787 3788 3789 3790 3791
	/* For certain devices (ex: HID mouse), support for authentication,
	 * pairing and bonding is optional. For such devices, inorder to avoid
	 * the ACL alive for too long after L2CAP disconnection, reset the ACL
	 * disc_timeout back to HCI_DISCONN_TIMEOUT during L2CAP connect.
	 */
	conn->hcon->disc_timeout = HCI_DISCONN_TIMEOUT;

3792 3793
	bacpy(&chan->src, &conn->hcon->src);
	bacpy(&chan->dst, &conn->hcon->dst);
3794 3795
	chan->src_type = bdaddr_type(conn->hcon, conn->hcon->src_type);
	chan->dst_type = bdaddr_type(conn->hcon, conn->hcon->dst_type);
3796 3797
	chan->psm  = psm;
	chan->dcid = scid;
3798
	chan->local_amp_id = amp_id;
L
Linus Torvalds 已提交
3799

3800
	__l2cap_chan_add(conn, chan);
3801

3802
	dcid = chan->scid;
L
Linus Torvalds 已提交
3803

3804
	__set_chan_timer(chan, chan->ops->get_sndtimeo(chan));
L
Linus Torvalds 已提交
3805

3806
	chan->ident = cmd->ident;
L
Linus Torvalds 已提交
3807

3808
	if (conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE) {
3809
		if (l2cap_chan_check_security(chan, false)) {
3810
			if (test_bit(FLAG_DEFER_SETUP, &chan->flags)) {
3811
				l2cap_state_change(chan, BT_CONNECT2);
3812 3813
				result = L2CAP_CR_PEND;
				status = L2CAP_CS_AUTHOR_PEND;
3814
				chan->ops->defer(chan);
3815
			} else {
3816 3817 3818 3819
				/* Force pending result for AMP controllers.
				 * The connection will succeed after the
				 * physical link is up.
				 */
3820
				if (amp_id == AMP_ID_BREDR) {
3821
					l2cap_state_change(chan, BT_CONFIG);
3822
					result = L2CAP_CR_SUCCESS;
3823
				} else {
3824
					l2cap_state_change(chan, BT_CONNECT2);
3825
					result = L2CAP_CR_PEND;
3826
				}
3827 3828
				status = L2CAP_CS_NO_INFO;
			}
3829
		} else {
3830
			l2cap_state_change(chan, BT_CONNECT2);
3831 3832 3833 3834
			result = L2CAP_CR_PEND;
			status = L2CAP_CS_AUTHEN_PEND;
		}
	} else {
3835
		l2cap_state_change(chan, BT_CONNECT2);
3836 3837
		result = L2CAP_CR_PEND;
		status = L2CAP_CS_NO_INFO;
L
Linus Torvalds 已提交
3838 3839 3840
	}

response:
3841
	l2cap_chan_unlock(pchan);
3842
	mutex_unlock(&conn->chan_lock);
3843
	l2cap_chan_put(pchan);
L
Linus Torvalds 已提交
3844 3845

sendresp:
3846 3847 3848 3849
	rsp.scid   = cpu_to_le16(scid);
	rsp.dcid   = cpu_to_le16(dcid);
	rsp.result = cpu_to_le16(result);
	rsp.status = cpu_to_le16(status);
3850
	l2cap_send_cmd(conn, cmd->ident, rsp_code, sizeof(rsp), &rsp);
3851 3852 3853

	if (result == L2CAP_CR_PEND && status == L2CAP_CS_NO_INFO) {
		struct l2cap_info_req info;
3854
		info.type = cpu_to_le16(L2CAP_IT_FEAT_MASK);
3855 3856 3857 3858

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

3859
		schedule_delayed_work(&conn->info_timer, L2CAP_INFO_TIMEOUT);
3860

3861 3862
		l2cap_send_cmd(conn, conn->info_ident, L2CAP_INFO_REQ,
			       sizeof(info), &info);
3863 3864
	}

3865
	if (chan && !test_bit(CONF_REQ_SENT, &chan->conf_state) &&
3866
	    result == L2CAP_CR_SUCCESS) {
3867
		u8 buf[128];
3868
		set_bit(CONF_REQ_SENT, &chan->conf_state);
3869
		l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
3870
			       l2cap_build_conf_req(chan, buf), buf);
3871
		chan->num_conf_req++;
3872
	}
3873 3874

	return chan;
3875
}
3876

3877
static int l2cap_connect_req(struct l2cap_conn *conn,
3878
			     struct l2cap_cmd_hdr *cmd, u16 cmd_len, u8 *data)
3879
{
3880 3881 3882
	struct hci_dev *hdev = conn->hcon->hdev;
	struct hci_conn *hcon = conn->hcon;

3883 3884 3885
	if (cmd_len < sizeof(struct l2cap_conn_req))
		return -EPROTO;

3886 3887 3888
	hci_dev_lock(hdev);
	if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
	    !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &hcon->flags))
3889
		mgmt_device_connected(hdev, hcon, 0, NULL, 0);
3890 3891
	hci_dev_unlock(hdev);

3892
	l2cap_connect(conn, cmd, data, L2CAP_CONN_RSP, 0);
L
Linus Torvalds 已提交
3893 3894 3895
	return 0;
}

3896
static int l2cap_connect_create_rsp(struct l2cap_conn *conn,
3897 3898
				    struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				    u8 *data)
L
Linus Torvalds 已提交
3899 3900 3901
{
	struct l2cap_conn_rsp *rsp = (struct l2cap_conn_rsp *) data;
	u16 scid, dcid, result, status;
3902
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
3903
	u8 req[128];
3904
	int err;
L
Linus Torvalds 已提交
3905

3906 3907 3908
	if (cmd_len < sizeof(*rsp))
		return -EPROTO;

L
Linus Torvalds 已提交
3909 3910 3911 3912 3913
	scid   = __le16_to_cpu(rsp->scid);
	dcid   = __le16_to_cpu(rsp->dcid);
	result = __le16_to_cpu(rsp->result);
	status = __le16_to_cpu(rsp->status);

3914
	BT_DBG("dcid 0x%4.4x scid 0x%4.4x result 0x%2.2x status 0x%2.2x",
3915
	       dcid, scid, result, status);
L
Linus Torvalds 已提交
3916

3917 3918
	mutex_lock(&conn->chan_lock);

L
Linus Torvalds 已提交
3919
	if (scid) {
3920 3921
		chan = __l2cap_get_chan_by_scid(conn, scid);
		if (!chan) {
3922
			err = -EBADSLT;
3923 3924
			goto unlock;
		}
L
Linus Torvalds 已提交
3925
	} else {
3926 3927
		chan = __l2cap_get_chan_by_ident(conn, cmd->ident);
		if (!chan) {
3928
			err = -EBADSLT;
3929 3930
			goto unlock;
		}
L
Linus Torvalds 已提交
3931 3932
	}

3933 3934
	err = 0;

3935
	l2cap_chan_lock(chan);
3936

L
Linus Torvalds 已提交
3937 3938
	switch (result) {
	case L2CAP_CR_SUCCESS:
3939
		l2cap_state_change(chan, BT_CONFIG);
3940
		chan->ident = 0;
3941
		chan->dcid = dcid;
3942
		clear_bit(CONF_CONNECT_PEND, &chan->conf_state);
3943

3944
		if (test_and_set_bit(CONF_REQ_SENT, &chan->conf_state))
3945 3946
			break;

L
Linus Torvalds 已提交
3947
		l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
3948
			       l2cap_build_conf_req(chan, req), req);
3949
		chan->num_conf_req++;
L
Linus Torvalds 已提交
3950 3951 3952
		break;

	case L2CAP_CR_PEND:
3953
		set_bit(CONF_CONNECT_PEND, &chan->conf_state);
L
Linus Torvalds 已提交
3954 3955 3956
		break;

	default:
3957
		l2cap_chan_del(chan, ECONNREFUSED);
L
Linus Torvalds 已提交
3958 3959 3960
		break;
	}

3961
	l2cap_chan_unlock(chan);
3962 3963 3964 3965 3966

unlock:
	mutex_unlock(&conn->chan_lock);

	return err;
L
Linus Torvalds 已提交
3967 3968
}

3969
static inline void set_default_fcs(struct l2cap_chan *chan)
3970 3971 3972 3973
{
	/* FCS is enabled only in ERTM or streaming mode, if one or both
	 * sides request it.
	 */
3974
	if (chan->mode != L2CAP_MODE_ERTM && chan->mode != L2CAP_MODE_STREAMING)
3975
		chan->fcs = L2CAP_FCS_NONE;
3976
	else if (!test_bit(CONF_RECV_NO_FCS, &chan->conf_state))
3977
		chan->fcs = L2CAP_FCS_CRC16;
3978 3979
}

3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995
static void l2cap_send_efs_conf_rsp(struct l2cap_chan *chan, void *data,
				    u8 ident, u16 flags)
{
	struct l2cap_conn *conn = chan->conn;

	BT_DBG("conn %p chan %p ident %d flags 0x%4.4x", conn, chan, ident,
	       flags);

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

	l2cap_send_cmd(conn, ident, L2CAP_CONF_RSP,
		       l2cap_build_conf_rsp(chan, data,
					    L2CAP_CONF_SUCCESS, flags), data);
}

3996 3997 3998 3999 4000
static void cmd_reject_invalid_cid(struct l2cap_conn *conn, u8 ident,
				   u16 scid, u16 dcid)
{
	struct l2cap_cmd_rej_cid rej;

4001
	rej.reason = cpu_to_le16(L2CAP_REJ_INVALID_CID);
4002 4003 4004 4005 4006 4007
	rej.scid = __cpu_to_le16(scid);
	rej.dcid = __cpu_to_le16(dcid);

	l2cap_send_cmd(conn, ident, L2CAP_COMMAND_REJ, sizeof(rej), &rej);
}

4008 4009 4010
static inline int l2cap_config_req(struct l2cap_conn *conn,
				   struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				   u8 *data)
L
Linus Torvalds 已提交
4011 4012 4013 4014
{
	struct l2cap_conf_req *req = (struct l2cap_conf_req *) data;
	u16 dcid, flags;
	u8 rsp[64];
4015
	struct l2cap_chan *chan;
4016
	int len, err = 0;
L
Linus Torvalds 已提交
4017

4018 4019 4020
	if (cmd_len < sizeof(*req))
		return -EPROTO;

L
Linus Torvalds 已提交
4021 4022 4023 4024 4025
	dcid  = __le16_to_cpu(req->dcid);
	flags = __le16_to_cpu(req->flags);

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

4026
	chan = l2cap_get_chan_by_scid(conn, dcid);
4027 4028 4029 4030
	if (!chan) {
		cmd_reject_invalid_cid(conn, cmd->ident, dcid, 0);
		return 0;
	}
L
Linus Torvalds 已提交
4031

4032
	if (chan->state != BT_CONFIG && chan->state != BT_CONNECT2) {
4033 4034
		cmd_reject_invalid_cid(conn, cmd->ident, chan->scid,
				       chan->dcid);
4035
		goto unlock;
4036
	}
4037

4038
	/* Reject if config buffer is too small. */
4039
	len = cmd_len - sizeof(*req);
4040
	if (chan->conf_len + len > sizeof(chan->conf_req)) {
4041
		l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP,
4042 4043
			       l2cap_build_conf_rsp(chan, rsp,
			       L2CAP_CONF_REJECT, flags), rsp);
4044 4045 4046 4047
		goto unlock;
	}

	/* Store config. */
4048 4049
	memcpy(chan->conf_req + chan->conf_len, req->data, len);
	chan->conf_len += len;
L
Linus Torvalds 已提交
4050

4051
	if (flags & L2CAP_CONF_FLAG_CONTINUATION) {
L
Linus Torvalds 已提交
4052 4053
		/* Incomplete config. Send empty response. */
		l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP,
4054 4055
			       l2cap_build_conf_rsp(chan, rsp,
			       L2CAP_CONF_SUCCESS, flags), rsp);
L
Linus Torvalds 已提交
4056 4057 4058 4059
		goto unlock;
	}

	/* Complete config. */
4060
	len = l2cap_parse_conf_req(chan, rsp);
4061
	if (len < 0) {
4062
		l2cap_send_disconn_req(chan, ECONNRESET);
L
Linus Torvalds 已提交
4063
		goto unlock;
4064
	}
L
Linus Torvalds 已提交
4065

4066
	chan->ident = cmd->ident;
4067
	l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP, len, rsp);
4068
	chan->num_conf_rsp++;
4069 4070

	/* Reset config buffer. */
4071
	chan->conf_len = 0;
4072

4073
	if (!test_bit(CONF_OUTPUT_DONE, &chan->conf_state))
4074 4075
		goto unlock;

4076
	if (test_bit(CONF_INPUT_DONE, &chan->conf_state)) {
4077
		set_default_fcs(chan);
4078

4079 4080
		if (chan->mode == L2CAP_MODE_ERTM ||
		    chan->mode == L2CAP_MODE_STREAMING)
4081 4082 4083
			err = l2cap_ertm_init(chan);

		if (err < 0)
4084
			l2cap_send_disconn_req(chan, -err);
4085 4086
		else
			l2cap_chan_ready(chan);
4087

4088 4089 4090
		goto unlock;
	}

4091
	if (!test_and_set_bit(CONF_REQ_SENT, &chan->conf_state)) {
4092
		u8 buf[64];
L
Linus Torvalds 已提交
4093
		l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
4094
			       l2cap_build_conf_req(chan, buf), buf);
4095
		chan->num_conf_req++;
L
Linus Torvalds 已提交
4096 4097
	}

S
Stephen Hemminger 已提交
4098
	/* Got Conf Rsp PENDING from remote side and assume we sent
4099 4100
	   Conf Rsp PENDING in the code above */
	if (test_bit(CONF_REM_CONF_PEND, &chan->conf_state) &&
4101
	    test_bit(CONF_LOC_CONF_PEND, &chan->conf_state)) {
4102 4103 4104

		/* check compatibility */

4105
		/* Send rsp for BR/EDR channel */
4106
		if (!chan->hs_hcon)
4107 4108 4109
			l2cap_send_efs_conf_rsp(chan, rsp, cmd->ident, flags);
		else
			chan->ident = cmd->ident;
4110 4111
	}

L
Linus Torvalds 已提交
4112
unlock:
4113
	l2cap_chan_unlock(chan);
4114
	return err;
L
Linus Torvalds 已提交
4115 4116
}

4117
static inline int l2cap_config_rsp(struct l2cap_conn *conn,
4118 4119
				   struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				   u8 *data)
L
Linus Torvalds 已提交
4120 4121 4122
{
	struct l2cap_conf_rsp *rsp = (struct l2cap_conf_rsp *)data;
	u16 scid, flags, result;
4123
	struct l2cap_chan *chan;
4124
	int len = cmd_len - sizeof(*rsp);
4125
	int err = 0;
L
Linus Torvalds 已提交
4126

4127 4128 4129
	if (cmd_len < sizeof(*rsp))
		return -EPROTO;

L
Linus Torvalds 已提交
4130 4131 4132 4133
	scid   = __le16_to_cpu(rsp->scid);
	flags  = __le16_to_cpu(rsp->flags);
	result = __le16_to_cpu(rsp->result);

4134 4135
	BT_DBG("scid 0x%4.4x flags 0x%2.2x result 0x%2.2x len %d", scid, flags,
	       result, len);
L
Linus Torvalds 已提交
4136

4137
	chan = l2cap_get_chan_by_scid(conn, scid);
4138
	if (!chan)
L
Linus Torvalds 已提交
4139 4140 4141 4142
		return 0;

	switch (result) {
	case L2CAP_CONF_SUCCESS:
4143
		l2cap_conf_rfc_get(chan, rsp->data, len);
4144
		clear_bit(CONF_REM_CONF_PEND, &chan->conf_state);
L
Linus Torvalds 已提交
4145 4146
		break;

4147 4148 4149 4150 4151 4152 4153
	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,
4154
						   buf, &result);
4155
			if (len < 0) {
4156
				l2cap_send_disconn_req(chan, ECONNRESET);
4157 4158 4159
				goto done;
			}

4160
			if (!chan->hs_hcon) {
4161 4162
				l2cap_send_efs_conf_rsp(chan, buf, cmd->ident,
							0);
4163 4164 4165 4166 4167 4168
			} else {
				if (l2cap_check_efs(chan)) {
					amp_create_logical_link(chan);
					chan->ident = cmd->ident;
				}
			}
4169 4170 4171
		}
		goto done;

L
Linus Torvalds 已提交
4172
	case L2CAP_CONF_UNACCEPT:
4173
		if (chan->num_conf_rsp <= L2CAP_CONF_MAX_CONF_RSP) {
4174 4175
			char req[64];

4176
			if (len > sizeof(req) - sizeof(struct l2cap_conf_req)) {
4177
				l2cap_send_disconn_req(chan, ECONNRESET);
4178 4179 4180
				goto done;
			}

4181 4182
			/* throw out any old stored conf requests */
			result = L2CAP_CONF_SUCCESS;
4183
			len = l2cap_parse_conf_rsp(chan, rsp->data, len,
4184
						   req, &result);
4185
			if (len < 0) {
4186
				l2cap_send_disconn_req(chan, ECONNRESET);
4187 4188 4189 4190
				goto done;
			}

			l2cap_send_cmd(conn, l2cap_get_ident(conn),
4191
				       L2CAP_CONF_REQ, len, req);
4192
			chan->num_conf_req++;
4193 4194 4195
			if (result != L2CAP_CONF_SUCCESS)
				goto done;
			break;
L
Linus Torvalds 已提交
4196 4197
		}

4198
	default:
4199
		l2cap_chan_set_err(chan, ECONNRESET);
4200

4201
		__set_chan_timer(chan, L2CAP_DISC_REJ_TIMEOUT);
4202
		l2cap_send_disconn_req(chan, ECONNRESET);
L
Linus Torvalds 已提交
4203 4204 4205
		goto done;
	}

4206
	if (flags & L2CAP_CONF_FLAG_CONTINUATION)
L
Linus Torvalds 已提交
4207 4208
		goto done;

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

4211
	if (test_bit(CONF_OUTPUT_DONE, &chan->conf_state)) {
4212
		set_default_fcs(chan);
4213

4214 4215
		if (chan->mode == L2CAP_MODE_ERTM ||
		    chan->mode == L2CAP_MODE_STREAMING)
4216
			err = l2cap_ertm_init(chan);
4217

4218
		if (err < 0)
4219
			l2cap_send_disconn_req(chan, -err);
4220 4221
		else
			l2cap_chan_ready(chan);
L
Linus Torvalds 已提交
4222 4223 4224
	}

done:
4225
	l2cap_chan_unlock(chan);
4226
	return err;
L
Linus Torvalds 已提交
4227 4228
}

4229
static inline int l2cap_disconnect_req(struct l2cap_conn *conn,
4230 4231
				       struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				       u8 *data)
L
Linus Torvalds 已提交
4232 4233 4234 4235
{
	struct l2cap_disconn_req *req = (struct l2cap_disconn_req *) data;
	struct l2cap_disconn_rsp rsp;
	u16 dcid, scid;
4236
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
4237

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

L
Linus Torvalds 已提交
4241 4242 4243 4244 4245
	scid = __le16_to_cpu(req->scid);
	dcid = __le16_to_cpu(req->dcid);

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

4246 4247 4248 4249 4250
	mutex_lock(&conn->chan_lock);

	chan = __l2cap_get_chan_by_scid(conn, dcid);
	if (!chan) {
		mutex_unlock(&conn->chan_lock);
4251 4252
		cmd_reject_invalid_cid(conn, cmd->ident, dcid, scid);
		return 0;
4253
	}
L
Linus Torvalds 已提交
4254

4255 4256
	l2cap_chan_lock(chan);

4257 4258
	rsp.dcid = cpu_to_le16(chan->scid);
	rsp.scid = cpu_to_le16(chan->dcid);
L
Linus Torvalds 已提交
4259 4260
	l2cap_send_cmd(conn, cmd->ident, L2CAP_DISCONN_RSP, sizeof(rsp), &rsp);

4261
	chan->ops->set_shutdown(chan);
L
Linus Torvalds 已提交
4262

4263
	l2cap_chan_hold(chan);
4264
	l2cap_chan_del(chan, ECONNRESET);
4265 4266

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

4268
	chan->ops->close(chan);
4269
	l2cap_chan_put(chan);
4270 4271 4272

	mutex_unlock(&conn->chan_lock);

L
Linus Torvalds 已提交
4273 4274 4275
	return 0;
}

4276
static inline int l2cap_disconnect_rsp(struct l2cap_conn *conn,
4277 4278
				       struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				       u8 *data)
L
Linus Torvalds 已提交
4279 4280 4281
{
	struct l2cap_disconn_rsp *rsp = (struct l2cap_disconn_rsp *) data;
	u16 dcid, scid;
4282
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
4283

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

L
Linus Torvalds 已提交
4287 4288 4289 4290 4291
	scid = __le16_to_cpu(rsp->scid);
	dcid = __le16_to_cpu(rsp->dcid);

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

4292 4293 4294 4295 4296
	mutex_lock(&conn->chan_lock);

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

4300
	l2cap_chan_lock(chan);
4301

4302
	l2cap_chan_hold(chan);
4303
	l2cap_chan_del(chan, 0);
4304 4305

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

4307
	chan->ops->close(chan);
4308
	l2cap_chan_put(chan);
4309 4310 4311

	mutex_unlock(&conn->chan_lock);

L
Linus Torvalds 已提交
4312 4313 4314
	return 0;
}

4315
static inline int l2cap_information_req(struct l2cap_conn *conn,
4316 4317
					struct l2cap_cmd_hdr *cmd, u16 cmd_len,
					u8 *data)
L
Linus Torvalds 已提交
4318 4319 4320 4321
{
	struct l2cap_info_req *req = (struct l2cap_info_req *) data;
	u16 type;

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

L
Linus Torvalds 已提交
4325 4326 4327 4328
	type = __le16_to_cpu(req->type);

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

4329 4330
	if (type == L2CAP_IT_FEAT_MASK) {
		u8 buf[8];
4331
		u32 feat_mask = l2cap_feat_mask;
4332
		struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) buf;
4333 4334
		rsp->type   = cpu_to_le16(L2CAP_IT_FEAT_MASK);
		rsp->result = cpu_to_le16(L2CAP_IR_SUCCESS);
4335
		if (!disable_ertm)
4336
			feat_mask |= L2CAP_FEAT_ERTM | L2CAP_FEAT_STREAMING
4337
				| L2CAP_FEAT_FCS;
4338
		if (conn->local_fixed_chan & L2CAP_FC_A2MP)
4339
			feat_mask |= L2CAP_FEAT_EXT_FLOW
4340
				| L2CAP_FEAT_EXT_WINDOW;
4341

4342
		put_unaligned_le32(feat_mask, rsp->data);
4343 4344
		l2cap_send_cmd(conn, cmd->ident, L2CAP_INFO_RSP, sizeof(buf),
			       buf);
4345 4346 4347
	} else if (type == L2CAP_IT_FIXED_CHAN) {
		u8 buf[12];
		struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) buf;
4348

4349 4350
		rsp->type   = cpu_to_le16(L2CAP_IT_FIXED_CHAN);
		rsp->result = cpu_to_le16(L2CAP_IR_SUCCESS);
4351 4352
		rsp->data[0] = conn->local_fixed_chan;
		memset(rsp->data + 1, 0, 7);
4353 4354
		l2cap_send_cmd(conn, cmd->ident, L2CAP_INFO_RSP, sizeof(buf),
			       buf);
4355 4356 4357
	} else {
		struct l2cap_info_rsp rsp;
		rsp.type   = cpu_to_le16(type);
4358
		rsp.result = cpu_to_le16(L2CAP_IR_NOTSUPP);
4359 4360
		l2cap_send_cmd(conn, cmd->ident, L2CAP_INFO_RSP, sizeof(rsp),
			       &rsp);
4361
	}
L
Linus Torvalds 已提交
4362 4363 4364 4365

	return 0;
}

4366
static inline int l2cap_information_rsp(struct l2cap_conn *conn,
4367 4368
					struct l2cap_cmd_hdr *cmd, u16 cmd_len,
					u8 *data)
L
Linus Torvalds 已提交
4369 4370 4371 4372
{
	struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) data;
	u16 type, result;

4373
	if (cmd_len < sizeof(*rsp))
4374 4375
		return -EPROTO;

L
Linus Torvalds 已提交
4376 4377 4378 4379 4380
	type   = __le16_to_cpu(rsp->type);
	result = __le16_to_cpu(rsp->result);

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

4381 4382
	/* L2CAP Info req/rsp are unbound to channels, add extra checks */
	if (cmd->ident != conn->info_ident ||
4383
	    conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE)
4384 4385
		return 0;

4386
	cancel_delayed_work(&conn->info_timer);
4387

4388 4389 4390 4391 4392 4393 4394 4395 4396
	if (result != L2CAP_IR_SUCCESS) {
		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
		conn->info_ident = 0;

		l2cap_conn_start(conn);

		return 0;
	}

4397 4398
	switch (type) {
	case L2CAP_IT_FEAT_MASK:
4399
		conn->feat_mask = get_unaligned_le32(rsp->data);
4400

4401
		if (conn->feat_mask & L2CAP_FEAT_FIXED_CHAN) {
4402
			struct l2cap_info_req req;
4403
			req.type = cpu_to_le16(L2CAP_IT_FIXED_CHAN);
4404 4405 4406 4407

			conn->info_ident = l2cap_get_ident(conn);

			l2cap_send_cmd(conn, conn->info_ident,
4408
				       L2CAP_INFO_REQ, sizeof(req), &req);
4409 4410 4411 4412 4413 4414
		} else {
			conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
			conn->info_ident = 0;

			l2cap_conn_start(conn);
		}
4415 4416 4417
		break;

	case L2CAP_IT_FIXED_CHAN:
4418
		conn->remote_fixed_chan = rsp->data[0];
4419
		conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
4420
		conn->info_ident = 0;
4421 4422

		l2cap_conn_start(conn);
4423
		break;
4424
	}
4425

L
Linus Torvalds 已提交
4426 4427 4428
	return 0;
}

4429 4430 4431
static int l2cap_create_channel_req(struct l2cap_conn *conn,
				    struct l2cap_cmd_hdr *cmd,
				    u16 cmd_len, void *data)
4432 4433
{
	struct l2cap_create_chan_req *req = data;
4434
	struct l2cap_create_chan_rsp rsp;
4435
	struct l2cap_chan *chan;
4436
	struct hci_dev *hdev;
4437 4438 4439 4440 4441
	u16 psm, scid;

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

4442
	if (!(conn->local_fixed_chan & L2CAP_FC_A2MP))
4443 4444 4445 4446 4447
		return -EINVAL;

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

4448
	BT_DBG("psm 0x%2.2x, scid 0x%4.4x, amp_id %d", psm, scid, req->amp_id);
4449

4450
	/* For controller id 0 make BR/EDR connection */
4451
	if (req->amp_id == AMP_ID_BREDR) {
4452 4453 4454 4455
		l2cap_connect(conn, cmd, data, L2CAP_CREATE_CHAN_RSP,
			      req->amp_id);
		return 0;
	}
4456

4457 4458 4459 4460
	/* Validate AMP controller id */
	hdev = hci_dev_get(req->amp_id);
	if (!hdev)
		goto error;
4461

4462 4463 4464 4465
	if (hdev->dev_type != HCI_AMP || !test_bit(HCI_UP, &hdev->flags)) {
		hci_dev_put(hdev);
		goto error;
	}
4466

4467 4468 4469 4470 4471
	chan = l2cap_connect(conn, cmd, data, L2CAP_CREATE_CHAN_RSP,
			     req->amp_id);
	if (chan) {
		struct amp_mgr *mgr = conn->hcon->amp_mgr;
		struct hci_conn *hs_hcon;
4472

4473 4474
		hs_hcon = hci_conn_hash_lookup_ba(hdev, AMP_LINK,
						  &conn->hcon->dst);
4475 4476
		if (!hs_hcon) {
			hci_dev_put(hdev);
4477 4478 4479
			cmd_reject_invalid_cid(conn, cmd->ident, chan->scid,
					       chan->dcid);
			return 0;
4480 4481
		}

4482 4483 4484 4485
		BT_DBG("mgr %p bredr_chan %p hs_hcon %p", mgr, chan, hs_hcon);

		mgr->bredr_chan = chan;
		chan->hs_hcon = hs_hcon;
4486
		chan->fcs = L2CAP_FCS_NONE;
4487
		conn->mtu = hdev->block_mtu;
4488
	}
4489

4490
	hci_dev_put(hdev);
4491 4492

	return 0;
4493 4494 4495 4496

error:
	rsp.dcid = 0;
	rsp.scid = cpu_to_le16(scid);
4497 4498
	rsp.result = cpu_to_le16(L2CAP_CR_BAD_AMP);
	rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
4499 4500 4501 4502

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

4503
	return 0;
4504 4505
}

4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524
static void l2cap_send_move_chan_req(struct l2cap_chan *chan, u8 dest_amp_id)
{
	struct l2cap_move_chan_req req;
	u8 ident;

	BT_DBG("chan %p, dest_amp_id %d", chan, dest_amp_id);

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

	req.icid = cpu_to_le16(chan->scid);
	req.dest_amp_id = dest_amp_id;

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

	__set_chan_timer(chan, L2CAP_MOVE_TIMEOUT);
}

4525
static void l2cap_send_move_chan_rsp(struct l2cap_chan *chan, u16 result)
4526 4527 4528
{
	struct l2cap_move_chan_rsp rsp;

4529
	BT_DBG("chan %p, result 0x%4.4x", chan, result);
4530

4531
	rsp.icid = cpu_to_le16(chan->dcid);
4532 4533
	rsp.result = cpu_to_le16(result);

4534 4535
	l2cap_send_cmd(chan->conn, chan->ident, L2CAP_MOVE_CHAN_RSP,
		       sizeof(rsp), &rsp);
4536 4537
}

M
Mat Martineau 已提交
4538
static void l2cap_send_move_chan_cfm(struct l2cap_chan *chan, u16 result)
4539 4540 4541
{
	struct l2cap_move_chan_cfm cfm;

M
Mat Martineau 已提交
4542
	BT_DBG("chan %p, result 0x%4.4x", chan, result);
4543

M
Mat Martineau 已提交
4544
	chan->ident = l2cap_get_ident(chan->conn);
4545

M
Mat Martineau 已提交
4546
	cfm.icid = cpu_to_le16(chan->scid);
4547 4548
	cfm.result = cpu_to_le16(result);

M
Mat Martineau 已提交
4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561
	l2cap_send_cmd(chan->conn, chan->ident, L2CAP_MOVE_CHAN_CFM,
		       sizeof(cfm), &cfm);

	__set_chan_timer(chan, L2CAP_MOVE_TIMEOUT);
}

static void l2cap_send_move_chan_cfm_icid(struct l2cap_conn *conn, u16 icid)
{
	struct l2cap_move_chan_cfm cfm;

	BT_DBG("conn %p, icid 0x%4.4x", conn, icid);

	cfm.icid = cpu_to_le16(icid);
4562
	cfm.result = cpu_to_le16(L2CAP_MC_UNCONFIRMED);
M
Mat Martineau 已提交
4563 4564 4565

	l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_MOVE_CHAN_CFM,
		       sizeof(cfm), &cfm);
4566 4567 4568
}

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

4573
	BT_DBG("icid 0x%4.4x", icid);
4574 4575 4576 4577 4578

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

4579 4580 4581 4582 4583 4584 4585 4586
static void __release_logical_link(struct l2cap_chan *chan)
{
	chan->hs_hchan = NULL;
	chan->hs_hcon = NULL;

	/* Placeholder - release the logical link */
}

4587 4588 4589 4590 4591
static void l2cap_logical_fail(struct l2cap_chan *chan)
{
	/* Logical link setup failed */
	if (chan->state != BT_CONNECTED) {
		/* Create channel failure, disconnect */
4592
		l2cap_send_disconn_req(chan, ECONNRESET);
4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622
		return;
	}

	switch (chan->move_role) {
	case L2CAP_MOVE_ROLE_RESPONDER:
		l2cap_move_done(chan);
		l2cap_send_move_chan_rsp(chan, L2CAP_MR_NOT_SUPP);
		break;
	case L2CAP_MOVE_ROLE_INITIATOR:
		if (chan->move_state == L2CAP_MOVE_WAIT_LOGICAL_COMP ||
		    chan->move_state == L2CAP_MOVE_WAIT_LOGICAL_CFM) {
			/* Remote has only sent pending or
			 * success responses, clean up
			 */
			l2cap_move_done(chan);
		}

		/* Other amp move states imply that the move
		 * has already aborted
		 */
		l2cap_send_move_chan_cfm(chan, L2CAP_MC_UNCONFIRMED);
		break;
	}
}

static void l2cap_logical_finish_create(struct l2cap_chan *chan,
					struct hci_chan *hchan)
{
	struct l2cap_conf_rsp rsp;

4623
	chan->hs_hchan = hchan;
4624 4625
	chan->hs_hcon->l2cap_data = chan->conn;

4626
	l2cap_send_efs_conf_rsp(chan, &rsp, chan->ident, 0);
4627 4628

	if (test_bit(CONF_INPUT_DONE, &chan->conf_state)) {
4629
		int err;
4630 4631 4632 4633 4634

		set_default_fcs(chan);

		err = l2cap_ertm_init(chan);
		if (err < 0)
4635
			l2cap_send_disconn_req(chan, -err);
4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675
		else
			l2cap_chan_ready(chan);
	}
}

static void l2cap_logical_finish_move(struct l2cap_chan *chan,
				      struct hci_chan *hchan)
{
	chan->hs_hcon = hchan->conn;
	chan->hs_hcon->l2cap_data = chan->conn;

	BT_DBG("move_state %d", chan->move_state);

	switch (chan->move_state) {
	case L2CAP_MOVE_WAIT_LOGICAL_COMP:
		/* Move confirm will be sent after a success
		 * response is received
		 */
		chan->move_state = L2CAP_MOVE_WAIT_RSP_SUCCESS;
		break;
	case L2CAP_MOVE_WAIT_LOGICAL_CFM:
		if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
			chan->move_state = L2CAP_MOVE_WAIT_LOCAL_BUSY;
		} else if (chan->move_role == L2CAP_MOVE_ROLE_INITIATOR) {
			chan->move_state = L2CAP_MOVE_WAIT_CONFIRM_RSP;
			l2cap_send_move_chan_cfm(chan, L2CAP_MC_CONFIRMED);
		} else if (chan->move_role == L2CAP_MOVE_ROLE_RESPONDER) {
			chan->move_state = L2CAP_MOVE_WAIT_CONFIRM;
			l2cap_send_move_chan_rsp(chan, L2CAP_MR_SUCCESS);
		}
		break;
	default:
		/* Move was not in expected state, free the channel */
		__release_logical_link(chan);

		chan->move_state = L2CAP_MOVE_STABLE;
	}
}

/* Call with chan locked */
4676 4677
void l2cap_logical_cfm(struct l2cap_chan *chan, struct hci_chan *hchan,
		       u8 status)
M
Mat Martineau 已提交
4678
{
4679 4680 4681 4682 4683 4684 4685 4686 4687 4688
	BT_DBG("chan %p, hchan %p, status %d", chan, hchan, status);

	if (status) {
		l2cap_logical_fail(chan);
		__release_logical_link(chan);
		return;
	}

	if (chan->state != BT_CONNECTED) {
		/* Ignore logical link if channel is on BR/EDR */
4689
		if (chan->local_amp_id != AMP_ID_BREDR)
4690 4691 4692 4693
			l2cap_logical_finish_create(chan, hchan);
	} else {
		l2cap_logical_finish_move(chan, hchan);
	}
M
Mat Martineau 已提交
4694 4695
}

4696 4697 4698 4699
void l2cap_move_start(struct l2cap_chan *chan)
{
	BT_DBG("chan %p", chan);

4700
	if (chan->local_amp_id == AMP_ID_BREDR) {
4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714
		if (chan->chan_policy != BT_CHANNEL_POLICY_AMP_PREFERRED)
			return;
		chan->move_role = L2CAP_MOVE_ROLE_INITIATOR;
		chan->move_state = L2CAP_MOVE_WAIT_PREPARE;
		/* Placeholder - start physical link setup */
	} else {
		chan->move_role = L2CAP_MOVE_ROLE_INITIATOR;
		chan->move_state = L2CAP_MOVE_WAIT_RSP_SUCCESS;
		chan->move_id = 0;
		l2cap_move_setup(chan);
		l2cap_send_move_chan_req(chan, 0);
	}
}

4715 4716 4717
static void l2cap_do_create(struct l2cap_chan *chan, int result,
			    u8 local_amp_id, u8 remote_amp_id)
{
4718 4719 4720
	BT_DBG("chan %p state %s %u -> %u", chan, state_to_string(chan->state),
	       local_amp_id, remote_amp_id);

4721 4722
	chan->fcs = L2CAP_FCS_NONE;

4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737
	/* Outgoing channel on AMP */
	if (chan->state == BT_CONNECT) {
		if (result == L2CAP_CR_SUCCESS) {
			chan->local_amp_id = local_amp_id;
			l2cap_send_create_chan_req(chan, remote_amp_id);
		} else {
			/* Revert to BR/EDR connect */
			l2cap_send_conn_req(chan);
		}

		return;
	}

	/* Incoming channel on AMP */
	if (__l2cap_no_conn_pending(chan)) {
4738 4739 4740 4741 4742 4743 4744
		struct l2cap_conn_rsp rsp;
		char buf[128];
		rsp.scid = cpu_to_le16(chan->dcid);
		rsp.dcid = cpu_to_le16(chan->scid);

		if (result == L2CAP_CR_SUCCESS) {
			/* Send successful response */
4745 4746
			rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
			rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
4747 4748
		} else {
			/* Send negative response */
4749 4750
			rsp.result = cpu_to_le16(L2CAP_CR_NO_MEM);
			rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
4751 4752 4753 4754 4755 4756
		}

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

		if (result == L2CAP_CR_SUCCESS) {
4757
			l2cap_state_change(chan, BT_CONFIG);
4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820
			set_bit(CONF_REQ_SENT, &chan->conf_state);
			l2cap_send_cmd(chan->conn, l2cap_get_ident(chan->conn),
				       L2CAP_CONF_REQ,
				       l2cap_build_conf_req(chan, buf), buf);
			chan->num_conf_req++;
		}
	}
}

static void l2cap_do_move_initiate(struct l2cap_chan *chan, u8 local_amp_id,
				   u8 remote_amp_id)
{
	l2cap_move_setup(chan);
	chan->move_id = local_amp_id;
	chan->move_state = L2CAP_MOVE_WAIT_RSP;

	l2cap_send_move_chan_req(chan, remote_amp_id);
}

static void l2cap_do_move_respond(struct l2cap_chan *chan, int result)
{
	struct hci_chan *hchan = NULL;

	/* Placeholder - get hci_chan for logical link */

	if (hchan) {
		if (hchan->state == BT_CONNECTED) {
			/* Logical link is ready to go */
			chan->hs_hcon = hchan->conn;
			chan->hs_hcon->l2cap_data = chan->conn;
			chan->move_state = L2CAP_MOVE_WAIT_CONFIRM;
			l2cap_send_move_chan_rsp(chan, L2CAP_MR_SUCCESS);

			l2cap_logical_cfm(chan, hchan, L2CAP_MR_SUCCESS);
		} else {
			/* Wait for logical link to be ready */
			chan->move_state = L2CAP_MOVE_WAIT_LOGICAL_CFM;
		}
	} else {
		/* Logical link not available */
		l2cap_send_move_chan_rsp(chan, L2CAP_MR_NOT_ALLOWED);
	}
}

static void l2cap_do_move_cancel(struct l2cap_chan *chan, int result)
{
	if (chan->move_role == L2CAP_MOVE_ROLE_RESPONDER) {
		u8 rsp_result;
		if (result == -EINVAL)
			rsp_result = L2CAP_MR_BAD_ID;
		else
			rsp_result = L2CAP_MR_NOT_ALLOWED;

		l2cap_send_move_chan_rsp(chan, rsp_result);
	}

	chan->move_role = L2CAP_MOVE_ROLE_NONE;
	chan->move_state = L2CAP_MOVE_STABLE;

	/* Restart data transmission */
	l2cap_ertm_send(chan);
}

4821 4822
/* Invoke with locked chan */
void __l2cap_physical_cfm(struct l2cap_chan *chan, int result)
4823
{
4824
	u8 local_amp_id = chan->local_amp_id;
4825
	u8 remote_amp_id = chan->remote_amp_id;
4826

4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854
	BT_DBG("chan %p, result %d, local_amp_id %d, remote_amp_id %d",
	       chan, result, local_amp_id, remote_amp_id);

	if (chan->state == BT_DISCONN || chan->state == BT_CLOSED) {
		l2cap_chan_unlock(chan);
		return;
	}

	if (chan->state != BT_CONNECTED) {
		l2cap_do_create(chan, result, local_amp_id, remote_amp_id);
	} else if (result != L2CAP_MR_SUCCESS) {
		l2cap_do_move_cancel(chan, result);
	} else {
		switch (chan->move_role) {
		case L2CAP_MOVE_ROLE_INITIATOR:
			l2cap_do_move_initiate(chan, local_amp_id,
					       remote_amp_id);
			break;
		case L2CAP_MOVE_ROLE_RESPONDER:
			l2cap_do_move_respond(chan, result);
			break;
		default:
			l2cap_do_move_cancel(chan, result);
			break;
		}
	}
}

4855
static inline int l2cap_move_channel_req(struct l2cap_conn *conn,
4856 4857
					 struct l2cap_cmd_hdr *cmd,
					 u16 cmd_len, void *data)
4858 4859
{
	struct l2cap_move_chan_req *req = data;
4860
	struct l2cap_move_chan_rsp rsp;
4861
	struct l2cap_chan *chan;
4862 4863 4864 4865 4866 4867 4868 4869
	u16 icid = 0;
	u16 result = L2CAP_MR_NOT_ALLOWED;

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

	icid = le16_to_cpu(req->icid);

4870
	BT_DBG("icid 0x%4.4x, dest_amp_id %d", icid, req->dest_amp_id);
4871

4872
	if (!(conn->local_fixed_chan & L2CAP_FC_A2MP))
4873 4874
		return -EINVAL;

4875 4876
	chan = l2cap_get_chan_by_dcid(conn, icid);
	if (!chan) {
4877
		rsp.icid = cpu_to_le16(icid);
4878
		rsp.result = cpu_to_le16(L2CAP_MR_NOT_ALLOWED);
4879 4880
		l2cap_send_cmd(conn, cmd->ident, L2CAP_MOVE_CHAN_RSP,
			       sizeof(rsp), &rsp);
4881 4882 4883
		return 0;
	}

4884 4885
	chan->ident = cmd->ident;

4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898
	if (chan->scid < L2CAP_CID_DYN_START ||
	    chan->chan_policy == BT_CHANNEL_POLICY_BREDR_ONLY ||
	    (chan->mode != L2CAP_MODE_ERTM &&
	     chan->mode != L2CAP_MODE_STREAMING)) {
		result = L2CAP_MR_NOT_ALLOWED;
		goto send_move_response;
	}

	if (chan->local_amp_id == req->dest_amp_id) {
		result = L2CAP_MR_SAME_ID;
		goto send_move_response;
	}

4899
	if (req->dest_amp_id != AMP_ID_BREDR) {
4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918
		struct hci_dev *hdev;
		hdev = hci_dev_get(req->dest_amp_id);
		if (!hdev || hdev->dev_type != HCI_AMP ||
		    !test_bit(HCI_UP, &hdev->flags)) {
			if (hdev)
				hci_dev_put(hdev);

			result = L2CAP_MR_BAD_ID;
			goto send_move_response;
		}
		hci_dev_put(hdev);
	}

	/* Detect a move collision.  Only send a collision response
	 * if this side has "lost", otherwise proceed with the move.
	 * The winner has the larger bd_addr.
	 */
	if ((__chan_is_moving(chan) ||
	     chan->move_role != L2CAP_MOVE_ROLE_NONE) &&
4919
	    bacmp(&conn->hcon->src, &conn->hcon->dst) > 0) {
4920 4921 4922 4923 4924 4925 4926 4927 4928
		result = L2CAP_MR_COLLISION;
		goto send_move_response;
	}

	chan->move_role = L2CAP_MOVE_ROLE_RESPONDER;
	l2cap_move_setup(chan);
	chan->move_id = req->dest_amp_id;
	icid = chan->dcid;

4929
	if (req->dest_amp_id == AMP_ID_BREDR) {
4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945
		/* Moving to BR/EDR */
		if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
			chan->move_state = L2CAP_MOVE_WAIT_LOCAL_BUSY;
			result = L2CAP_MR_PEND;
		} else {
			chan->move_state = L2CAP_MOVE_WAIT_CONFIRM;
			result = L2CAP_MR_SUCCESS;
		}
	} else {
		chan->move_state = L2CAP_MOVE_WAIT_PREPARE;
		/* Placeholder - uncomment when amp functions are available */
		/*amp_accept_physical(chan, req->dest_amp_id);*/
		result = L2CAP_MR_PEND;
	}

send_move_response:
4946
	l2cap_send_move_chan_rsp(chan, result);
4947

4948 4949
	l2cap_chan_unlock(chan);

4950 4951 4952
	return 0;
}

M
Mat Martineau 已提交
4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074
static void l2cap_move_continue(struct l2cap_conn *conn, u16 icid, u16 result)
{
	struct l2cap_chan *chan;
	struct hci_chan *hchan = NULL;

	chan = l2cap_get_chan_by_scid(conn, icid);
	if (!chan) {
		l2cap_send_move_chan_cfm_icid(conn, icid);
		return;
	}

	__clear_chan_timer(chan);
	if (result == L2CAP_MR_PEND)
		__set_chan_timer(chan, L2CAP_MOVE_ERTX_TIMEOUT);

	switch (chan->move_state) {
	case L2CAP_MOVE_WAIT_LOGICAL_COMP:
		/* Move confirm will be sent when logical link
		 * is complete.
		 */
		chan->move_state = L2CAP_MOVE_WAIT_LOGICAL_CFM;
		break;
	case L2CAP_MOVE_WAIT_RSP_SUCCESS:
		if (result == L2CAP_MR_PEND) {
			break;
		} else if (test_bit(CONN_LOCAL_BUSY,
				    &chan->conn_state)) {
			chan->move_state = L2CAP_MOVE_WAIT_LOCAL_BUSY;
		} else {
			/* Logical link is up or moving to BR/EDR,
			 * proceed with move
			 */
			chan->move_state = L2CAP_MOVE_WAIT_CONFIRM_RSP;
			l2cap_send_move_chan_cfm(chan, L2CAP_MC_CONFIRMED);
		}
		break;
	case L2CAP_MOVE_WAIT_RSP:
		/* Moving to AMP */
		if (result == L2CAP_MR_SUCCESS) {
			/* Remote is ready, send confirm immediately
			 * after logical link is ready
			 */
			chan->move_state = L2CAP_MOVE_WAIT_LOGICAL_CFM;
		} else {
			/* Both logical link and move success
			 * are required to confirm
			 */
			chan->move_state = L2CAP_MOVE_WAIT_LOGICAL_COMP;
		}

		/* Placeholder - get hci_chan for logical link */
		if (!hchan) {
			/* Logical link not available */
			l2cap_send_move_chan_cfm(chan, L2CAP_MC_UNCONFIRMED);
			break;
		}

		/* If the logical link is not yet connected, do not
		 * send confirmation.
		 */
		if (hchan->state != BT_CONNECTED)
			break;

		/* Logical link is already ready to go */

		chan->hs_hcon = hchan->conn;
		chan->hs_hcon->l2cap_data = chan->conn;

		if (result == L2CAP_MR_SUCCESS) {
			/* Can confirm now */
			l2cap_send_move_chan_cfm(chan, L2CAP_MC_CONFIRMED);
		} else {
			/* Now only need move success
			 * to confirm
			 */
			chan->move_state = L2CAP_MOVE_WAIT_RSP_SUCCESS;
		}

		l2cap_logical_cfm(chan, hchan, L2CAP_MR_SUCCESS);
		break;
	default:
		/* Any other amp move state means the move failed. */
		chan->move_id = chan->local_amp_id;
		l2cap_move_done(chan);
		l2cap_send_move_chan_cfm(chan, L2CAP_MC_UNCONFIRMED);
	}

	l2cap_chan_unlock(chan);
}

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

	chan = l2cap_get_chan_by_ident(conn, ident);
	if (!chan) {
		/* Could not locate channel, icid is best guess */
		l2cap_send_move_chan_cfm_icid(conn, icid);
		return;
	}

	__clear_chan_timer(chan);

	if (chan->move_role == L2CAP_MOVE_ROLE_INITIATOR) {
		if (result == L2CAP_MR_COLLISION) {
			chan->move_role = L2CAP_MOVE_ROLE_RESPONDER;
		} else {
			/* Cleanup - cancel move */
			chan->move_id = chan->local_amp_id;
			l2cap_move_done(chan);
		}
	}

	l2cap_send_move_chan_cfm(chan, L2CAP_MC_UNCONFIRMED);

	l2cap_chan_unlock(chan);
}

static int l2cap_move_channel_rsp(struct l2cap_conn *conn,
				  struct l2cap_cmd_hdr *cmd,
				  u16 cmd_len, void *data)
5075 5076 5077 5078 5079 5080 5081 5082 5083 5084
{
	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);

5085
	BT_DBG("icid 0x%4.4x, result 0x%4.4x", icid, result);
5086

M
Mat Martineau 已提交
5087 5088 5089 5090
	if (result == L2CAP_MR_SUCCESS || result == L2CAP_MR_PEND)
		l2cap_move_continue(conn, icid, result);
	else
		l2cap_move_fail(conn, cmd->ident, icid, result);
5091 5092 5093 5094

	return 0;
}

5095 5096 5097
static int l2cap_move_channel_confirm(struct l2cap_conn *conn,
				      struct l2cap_cmd_hdr *cmd,
				      u16 cmd_len, void *data)
5098 5099
{
	struct l2cap_move_chan_cfm *cfm = data;
5100
	struct l2cap_chan *chan;
5101 5102 5103 5104 5105 5106 5107 5108
	u16 icid, result;

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

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

5109
	BT_DBG("icid 0x%4.4x, result 0x%4.4x", icid, result);
5110

5111 5112 5113 5114 5115 5116 5117 5118 5119 5120
	chan = l2cap_get_chan_by_dcid(conn, icid);
	if (!chan) {
		/* Spec requires a response even if the icid was not found */
		l2cap_send_move_chan_cfm_rsp(conn, cmd->ident, icid);
		return 0;
	}

	if (chan->move_state == L2CAP_MOVE_WAIT_CONFIRM) {
		if (result == L2CAP_MC_CONFIRMED) {
			chan->local_amp_id = chan->move_id;
5121
			if (chan->local_amp_id == AMP_ID_BREDR)
5122 5123 5124 5125 5126 5127 5128 5129
				__release_logical_link(chan);
		} else {
			chan->move_id = chan->local_amp_id;
		}

		l2cap_move_done(chan);
	}

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

5132 5133
	l2cap_chan_unlock(chan);

5134 5135 5136 5137
	return 0;
}

static inline int l2cap_move_channel_confirm_rsp(struct l2cap_conn *conn,
5138 5139
						 struct l2cap_cmd_hdr *cmd,
						 u16 cmd_len, void *data)
5140 5141
{
	struct l2cap_move_chan_cfm_rsp *rsp = data;
5142
	struct l2cap_chan *chan;
5143 5144 5145 5146 5147 5148 5149
	u16 icid;

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

	icid = le16_to_cpu(rsp->icid);

5150
	BT_DBG("icid 0x%4.4x", icid);
5151

5152 5153 5154 5155 5156 5157 5158 5159 5160
	chan = l2cap_get_chan_by_scid(conn, icid);
	if (!chan)
		return 0;

	__clear_chan_timer(chan);

	if (chan->move_state == L2CAP_MOVE_WAIT_CONFIRM_RSP) {
		chan->local_amp_id = chan->move_id;

5161
		if (chan->local_amp_id == AMP_ID_BREDR && chan->hs_hchan)
5162 5163 5164 5165 5166 5167 5168
			__release_logical_link(chan);

		l2cap_move_done(chan);
	}

	l2cap_chan_unlock(chan);

5169 5170 5171
	return 0;
}

5172
static inline int l2cap_conn_param_update_req(struct l2cap_conn *conn,
5173
					      struct l2cap_cmd_hdr *cmd,
5174
					      u16 cmd_len, u8 *data)
5175 5176 5177 5178
{
	struct hci_conn *hcon = conn->hcon;
	struct l2cap_conn_param_update_req *req;
	struct l2cap_conn_param_update_rsp rsp;
5179
	u16 min, max, latency, to_multiplier;
5180
	int err;
5181

5182
	if (hcon->role != HCI_ROLE_MASTER)
5183 5184 5185 5186 5187 5188
		return -EINVAL;

	if (cmd_len != sizeof(struct l2cap_conn_param_update_req))
		return -EPROTO;

	req = (struct l2cap_conn_param_update_req *) data;
5189 5190
	min		= __le16_to_cpu(req->min);
	max		= __le16_to_cpu(req->max);
5191 5192 5193 5194
	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",
5195
	       min, max, latency, to_multiplier);
5196 5197

	memset(&rsp, 0, sizeof(rsp));
5198

5199
	err = hci_check_conn_params(min, max, latency, to_multiplier);
5200
	if (err)
5201
		rsp.result = cpu_to_le16(L2CAP_CONN_PARAM_REJECTED);
5202
	else
5203
		rsp.result = cpu_to_le16(L2CAP_CONN_PARAM_ACCEPTED);
5204 5205

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

5208
	if (!err) {
5209 5210 5211 5212
		u8 store_hint;

		store_hint = hci_le_conn_update(hcon, min, max, latency,
						to_multiplier);
5213
		mgmt_new_conn_param(hcon->hdev, &hcon->dst, hcon->dst_type,
5214 5215
				    store_hint, min, max, latency,
				    to_multiplier);
5216 5217

	}
5218

5219 5220 5221
	return 0;
}

5222 5223 5224 5225 5226
static int l2cap_le_connect_rsp(struct l2cap_conn *conn,
				struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				u8 *data)
{
	struct l2cap_le_conn_rsp *rsp = (struct l2cap_le_conn_rsp *) data;
5227
	struct hci_conn *hcon = conn->hcon;
5228 5229
	u16 dcid, mtu, mps, credits, result;
	struct l2cap_chan *chan;
5230
	int err, sec_level;
5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264

	if (cmd_len < sizeof(*rsp))
		return -EPROTO;

	dcid    = __le16_to_cpu(rsp->dcid);
	mtu     = __le16_to_cpu(rsp->mtu);
	mps     = __le16_to_cpu(rsp->mps);
	credits = __le16_to_cpu(rsp->credits);
	result  = __le16_to_cpu(rsp->result);

	if (result == L2CAP_CR_SUCCESS && (mtu < 23 || mps < 23))
		return -EPROTO;

	BT_DBG("dcid 0x%4.4x mtu %u mps %u credits %u result 0x%2.2x",
	       dcid, mtu, mps, credits, result);

	mutex_lock(&conn->chan_lock);

	chan = __l2cap_get_chan_by_ident(conn, cmd->ident);
	if (!chan) {
		err = -EBADSLT;
		goto unlock;
	}

	err = 0;

	l2cap_chan_lock(chan);

	switch (result) {
	case L2CAP_CR_SUCCESS:
		chan->ident = 0;
		chan->dcid = dcid;
		chan->omtu = mtu;
		chan->remote_mps = mps;
5265
		chan->tx_credits = credits;
5266 5267 5268
		l2cap_chan_ready(chan);
		break;

5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288
	case L2CAP_CR_AUTHENTICATION:
	case L2CAP_CR_ENCRYPTION:
		/* If we already have MITM protection we can't do
		 * anything.
		 */
		if (hcon->sec_level > BT_SECURITY_MEDIUM) {
			l2cap_chan_del(chan, ECONNREFUSED);
			break;
		}

		sec_level = hcon->sec_level + 1;
		if (chan->sec_level < sec_level)
			chan->sec_level = sec_level;

		/* We'll need to send a new Connect Request */
		clear_bit(FLAG_LE_CONN_REQ_SENT, &chan->flags);

		smp_conn_security(hcon, chan->sec_level);
		break;

5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301
	default:
		l2cap_chan_del(chan, ECONNREFUSED);
		break;
	}

	l2cap_chan_unlock(chan);

unlock:
	mutex_unlock(&conn->chan_lock);

	return err;
}

5302
static inline int l2cap_bredr_sig_cmd(struct l2cap_conn *conn,
5303 5304
				      struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				      u8 *data)
5305 5306 5307 5308 5309
{
	int err = 0;

	switch (cmd->code) {
	case L2CAP_COMMAND_REJ:
5310
		l2cap_command_rej(conn, cmd, cmd_len, data);
5311 5312 5313
		break;

	case L2CAP_CONN_REQ:
5314
		err = l2cap_connect_req(conn, cmd, cmd_len, data);
5315 5316 5317
		break;

	case L2CAP_CONN_RSP:
5318
	case L2CAP_CREATE_CHAN_RSP:
5319
		l2cap_connect_create_rsp(conn, cmd, cmd_len, data);
5320 5321 5322 5323 5324 5325 5326
		break;

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

	case L2CAP_CONF_RSP:
5327
		l2cap_config_rsp(conn, cmd, cmd_len, data);
5328 5329 5330
		break;

	case L2CAP_DISCONN_REQ:
5331
		err = l2cap_disconnect_req(conn, cmd, cmd_len, data);
5332 5333 5334
		break;

	case L2CAP_DISCONN_RSP:
5335
		l2cap_disconnect_rsp(conn, cmd, cmd_len, data);
5336 5337 5338 5339 5340 5341 5342 5343 5344 5345
		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:
5346
		err = l2cap_information_req(conn, cmd, cmd_len, data);
5347 5348 5349
		break;

	case L2CAP_INFO_RSP:
5350
		l2cap_information_rsp(conn, cmd, cmd_len, data);
5351 5352
		break;

5353 5354 5355 5356
	case L2CAP_CREATE_CHAN_REQ:
		err = l2cap_create_channel_req(conn, cmd, cmd_len, data);
		break;

5357 5358 5359 5360 5361
	case L2CAP_MOVE_CHAN_REQ:
		err = l2cap_move_channel_req(conn, cmd, cmd_len, data);
		break;

	case L2CAP_MOVE_CHAN_RSP:
5362
		l2cap_move_channel_rsp(conn, cmd, cmd_len, data);
5363 5364 5365 5366 5367 5368 5369
		break;

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

	case L2CAP_MOVE_CHAN_CFM_RSP:
5370
		l2cap_move_channel_confirm_rsp(conn, cmd, cmd_len, data);
5371 5372
		break;

5373 5374 5375 5376 5377 5378 5379 5380 5381
	default:
		BT_ERR("Unknown BR/EDR signaling command 0x%2.2x", cmd->code);
		err = -EINVAL;
		break;
	}

	return err;
}

5382 5383 5384 5385 5386 5387 5388
static int l2cap_le_connect_req(struct l2cap_conn *conn,
				struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				u8 *data)
{
	struct l2cap_le_conn_req *req = (struct l2cap_le_conn_req *) data;
	struct l2cap_le_conn_rsp rsp;
	struct l2cap_chan *chan, *pchan;
5389
	u16 dcid, scid, credits, mtu, mps;
5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400
	__le16 psm;
	u8 result;

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

	scid = __le16_to_cpu(req->scid);
	mtu  = __le16_to_cpu(req->mtu);
	mps  = __le16_to_cpu(req->mps);
	psm  = req->psm;
	dcid = 0;
5401
	credits = 0;
5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420

	if (mtu < 23 || mps < 23)
		return -EPROTO;

	BT_DBG("psm 0x%2.2x scid 0x%4.4x mtu %u mps %u", __le16_to_cpu(psm),
	       scid, mtu, mps);

	/* Check if we have socket listening on psm */
	pchan = l2cap_global_chan_by_psm(BT_LISTEN, psm, &conn->hcon->src,
					 &conn->hcon->dst, LE_LINK);
	if (!pchan) {
		result = L2CAP_CR_BAD_PSM;
		chan = NULL;
		goto response;
	}

	mutex_lock(&conn->chan_lock);
	l2cap_chan_lock(pchan);

5421 5422
	if (!smp_sufficient_security(conn->hcon, pchan->sec_level,
				     SMP_ALLOW_STK)) {
5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440
		result = L2CAP_CR_AUTHENTICATION;
		chan = NULL;
		goto response_unlock;
	}

	/* Check if we already have channel with that dcid */
	if (__l2cap_get_chan_by_dcid(conn, scid)) {
		result = L2CAP_CR_NO_MEM;
		chan = NULL;
		goto response_unlock;
	}

	chan = pchan->ops->new_connection(pchan);
	if (!chan) {
		result = L2CAP_CR_NO_MEM;
		goto response_unlock;
	}

5441 5442
	l2cap_le_flowctl_init(chan);

5443 5444 5445 5446 5447 5448 5449 5450
	bacpy(&chan->src, &conn->hcon->src);
	bacpy(&chan->dst, &conn->hcon->dst);
	chan->src_type = bdaddr_type(conn->hcon, conn->hcon->src_type);
	chan->dst_type = bdaddr_type(conn->hcon, conn->hcon->dst_type);
	chan->psm  = psm;
	chan->dcid = scid;
	chan->omtu = mtu;
	chan->remote_mps = mps;
5451
	chan->tx_credits = __le16_to_cpu(req->credits);
5452 5453 5454

	__l2cap_chan_add(conn, chan);
	dcid = chan->scid;
5455
	credits = chan->rx_credits;
5456 5457 5458 5459 5460 5461 5462

	__set_chan_timer(chan, chan->ops->get_sndtimeo(chan));

	chan->ident = cmd->ident;

	if (test_bit(FLAG_DEFER_SETUP, &chan->flags)) {
		l2cap_state_change(chan, BT_CONNECT2);
5463 5464 5465 5466 5467
		/* The following result value is actually not defined
		 * for LE CoC but we use it to let the function know
		 * that it should bail out after doing its cleanup
		 * instead of sending a response.
		 */
5468 5469 5470 5471 5472 5473 5474 5475 5476 5477
		result = L2CAP_CR_PEND;
		chan->ops->defer(chan);
	} else {
		l2cap_chan_ready(chan);
		result = L2CAP_CR_SUCCESS;
	}

response_unlock:
	l2cap_chan_unlock(pchan);
	mutex_unlock(&conn->chan_lock);
5478
	l2cap_chan_put(pchan);
5479 5480 5481 5482 5483 5484 5485

	if (result == L2CAP_CR_PEND)
		return 0;

response:
	if (chan) {
		rsp.mtu = cpu_to_le16(chan->imtu);
5486
		rsp.mps = cpu_to_le16(chan->mps);
5487 5488 5489 5490 5491 5492
	} else {
		rsp.mtu = 0;
		rsp.mps = 0;
	}

	rsp.dcid    = cpu_to_le16(dcid);
5493
	rsp.credits = cpu_to_le16(credits);
5494 5495 5496 5497 5498 5499 5500
	rsp.result  = cpu_to_le16(result);

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

	return 0;
}

5501 5502 5503 5504 5505 5506
static inline int l2cap_le_credits(struct l2cap_conn *conn,
				   struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				   u8 *data)
{
	struct l2cap_le_credits *pkt;
	struct l2cap_chan *chan;
5507
	u16 cid, credits, max_credits;
5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521

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

	pkt = (struct l2cap_le_credits *) data;
	cid	= __le16_to_cpu(pkt->cid);
	credits	= __le16_to_cpu(pkt->credits);

	BT_DBG("cid 0x%4.4x credits 0x%4.4x", cid, credits);

	chan = l2cap_get_chan_by_dcid(conn, cid);
	if (!chan)
		return -EBADSLT;

5522 5523 5524 5525
	max_credits = LE_FLOWCTL_MAX_CREDITS - chan->tx_credits;
	if (credits > max_credits) {
		BT_ERR("LE credits overflow");
		l2cap_send_disconn_req(chan, ECONNRESET);
5526
		l2cap_chan_unlock(chan);
5527 5528 5529 5530 5531 5532 5533

		/* Return 0 so that we don't trigger an unnecessary
		 * command reject packet.
		 */
		return 0;
	}

5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548
	chan->tx_credits += credits;

	while (chan->tx_credits && !skb_queue_empty(&chan->tx_q)) {
		l2cap_do_send(chan, skb_dequeue(&chan->tx_q));
		chan->tx_credits--;
	}

	if (chan->tx_credits)
		chan->ops->resume(chan);

	l2cap_chan_unlock(chan);

	return 0;
}

5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573
static inline int l2cap_le_command_rej(struct l2cap_conn *conn,
				       struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				       u8 *data)
{
	struct l2cap_cmd_rej_unk *rej = (struct l2cap_cmd_rej_unk *) data;
	struct l2cap_chan *chan;

	if (cmd_len < sizeof(*rej))
		return -EPROTO;

	mutex_lock(&conn->chan_lock);

	chan = __l2cap_get_chan_by_ident(conn, cmd->ident);
	if (!chan)
		goto done;

	l2cap_chan_lock(chan);
	l2cap_chan_del(chan, ECONNREFUSED);
	l2cap_chan_unlock(chan);

done:
	mutex_unlock(&conn->chan_lock);
	return 0;
}

5574
static inline int l2cap_le_sig_cmd(struct l2cap_conn *conn,
5575 5576
				   struct l2cap_cmd_hdr *cmd, u16 cmd_len,
				   u8 *data)
5577
{
5578 5579
	int err = 0;

5580 5581
	switch (cmd->code) {
	case L2CAP_COMMAND_REJ:
5582
		l2cap_le_command_rej(conn, cmd, cmd_len, data);
5583
		break;
5584 5585

	case L2CAP_CONN_PARAM_UPDATE_REQ:
5586 5587
		err = l2cap_conn_param_update_req(conn, cmd, cmd_len, data);
		break;
5588 5589

	case L2CAP_CONN_PARAM_UPDATE_RSP:
5590
		break;
5591

5592 5593
	case L2CAP_LE_CONN_RSP:
		l2cap_le_connect_rsp(conn, cmd, cmd_len, data);
5594
		break;
5595

5596
	case L2CAP_LE_CONN_REQ:
5597 5598
		err = l2cap_le_connect_req(conn, cmd, cmd_len, data);
		break;
5599

5600 5601 5602 5603
	case L2CAP_LE_CREDITS:
		err = l2cap_le_credits(conn, cmd, cmd_len, data);
		break;

5604
	case L2CAP_DISCONN_REQ:
5605 5606
		err = l2cap_disconnect_req(conn, cmd, cmd_len, data);
		break;
5607 5608 5609

	case L2CAP_DISCONN_RSP:
		l2cap_disconnect_rsp(conn, cmd, cmd_len, data);
5610
		break;
5611

5612 5613
	default:
		BT_ERR("Unknown LE signaling command 0x%2.2x", cmd->code);
5614 5615
		err = -EINVAL;
		break;
5616
	}
5617 5618

	return err;
5619 5620
}

5621 5622 5623
static inline void l2cap_le_sig_channel(struct l2cap_conn *conn,
					struct sk_buff *skb)
{
5624
	struct hci_conn *hcon = conn->hcon;
5625 5626
	struct l2cap_cmd_hdr *cmd;
	u16 len;
5627 5628
	int err;

5629
	if (hcon->type != LE_LINK)
5630
		goto drop;
5631

5632 5633
	if (skb->len < L2CAP_CMD_HDR_SIZE)
		goto drop;
5634

5635 5636
	cmd = (void *) skb->data;
	skb_pull(skb, L2CAP_CMD_HDR_SIZE);
5637

5638
	len = le16_to_cpu(cmd->len);
5639

5640
	BT_DBG("code 0x%2.2x len %d id 0x%2.2x", cmd->code, len, cmd->ident);
5641

5642 5643 5644 5645
	if (len != skb->len || !cmd->ident) {
		BT_DBG("corrupted command");
		goto drop;
	}
5646

5647
	err = l2cap_le_sig_cmd(conn, cmd, len, skb->data);
5648 5649
	if (err) {
		struct l2cap_cmd_rej_unk rej;
5650

5651
		BT_ERR("Wrong link type (%d)", err);
5652

5653
		rej.reason = cpu_to_le16(L2CAP_REJ_NOT_UNDERSTOOD);
5654 5655
		l2cap_send_cmd(conn, cmd->ident, L2CAP_COMMAND_REJ,
			       sizeof(rej), &rej);
5656 5657
	}

5658
drop:
5659 5660 5661
	kfree_skb(skb);
}

5662
static inline void l2cap_sig_channel(struct l2cap_conn *conn,
5663
				     struct sk_buff *skb)
L
Linus Torvalds 已提交
5664
{
5665
	struct hci_conn *hcon = conn->hcon;
L
Linus Torvalds 已提交
5666 5667 5668
	u8 *data = skb->data;
	int len = skb->len;
	struct l2cap_cmd_hdr cmd;
5669
	int err;
L
Linus Torvalds 已提交
5670 5671 5672

	l2cap_raw_recv(conn, skb);

5673
	if (hcon->type != ACL_LINK)
5674
		goto drop;
5675

L
Linus Torvalds 已提交
5676
	while (len >= L2CAP_CMD_HDR_SIZE) {
5677
		u16 cmd_len;
L
Linus Torvalds 已提交
5678 5679 5680 5681
		memcpy(&cmd, data, L2CAP_CMD_HDR_SIZE);
		data += L2CAP_CMD_HDR_SIZE;
		len  -= L2CAP_CMD_HDR_SIZE;

5682
		cmd_len = le16_to_cpu(cmd.len);
L
Linus Torvalds 已提交
5683

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

5687
		if (cmd_len > len || !cmd.ident) {
L
Linus Torvalds 已提交
5688 5689 5690 5691
			BT_DBG("corrupted command");
			break;
		}

5692
		err = l2cap_bredr_sig_cmd(conn, &cmd, cmd_len, data);
L
Linus Torvalds 已提交
5693
		if (err) {
5694
			struct l2cap_cmd_rej_unk rej;
5695 5696

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

5698
			rej.reason = cpu_to_le16(L2CAP_REJ_NOT_UNDERSTOOD);
5699 5700
			l2cap_send_cmd(conn, cmd.ident, L2CAP_COMMAND_REJ,
				       sizeof(rej), &rej);
L
Linus Torvalds 已提交
5701 5702
		}

5703 5704
		data += cmd_len;
		len  -= cmd_len;
L
Linus Torvalds 已提交
5705 5706
	}

5707
drop:
L
Linus Torvalds 已提交
5708 5709 5710
	kfree_skb(skb);
}

5711
static int l2cap_check_fcs(struct l2cap_chan *chan,  struct sk_buff *skb)
5712 5713
{
	u16 our_fcs, rcv_fcs;
5714 5715 5716 5717 5718 5719
	int hdr_size;

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

5721
	if (chan->fcs == L2CAP_FCS_CRC16) {
5722
		skb_trim(skb, skb->len - L2CAP_FCS_SIZE);
5723 5724 5725 5726
		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)
5727
			return -EBADMSG;
5728 5729 5730 5731
	}
	return 0;
}

5732
static void l2cap_send_i_or_rr_or_rnr(struct l2cap_chan *chan)
5733
{
5734
	struct l2cap_ctrl control;
5735

5736
	BT_DBG("chan %p", chan);
5737

5738 5739 5740 5741 5742
	memset(&control, 0, sizeof(control));
	control.sframe = 1;
	control.final = 1;
	control.reqseq = chan->buffer_seq;
	set_bit(CONN_SEND_FBIT, &chan->conn_state);
5743

5744
	if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
5745 5746
		control.super = L2CAP_SUPER_RNR;
		l2cap_send_sframe(chan, &control);
5747 5748
	}

5749 5750 5751
	if (test_and_clear_bit(CONN_REMOTE_BUSY, &chan->conn_state) &&
	    chan->unacked_frames > 0)
		__set_retrans_timer(chan);
5752

5753
	/* Send pending iframes */
5754
	l2cap_ertm_send(chan);
5755

5756
	if (!test_bit(CONN_LOCAL_BUSY, &chan->conn_state) &&
5757 5758 5759 5760 5761 5762
	    test_bit(CONN_SEND_FBIT, &chan->conn_state)) {
		/* F-bit wasn't sent in an s-frame or i-frame yet, so
		 * send it now.
		 */
		control.super = L2CAP_SUPER_RR;
		l2cap_send_sframe(chan, &control);
5763 5764 5765
	}
}

5766 5767
static void append_skb_frag(struct sk_buff *skb, struct sk_buff *new_frag,
			    struct sk_buff **last_frag)
5768
{
5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784
	/* 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;
}

5785 5786
static int l2cap_reassemble_sdu(struct l2cap_chan *chan, struct sk_buff *skb,
				struct l2cap_ctrl *control)
5787 5788
{
	int err = -EINVAL;
5789

5790
	switch (control->sar) {
5791
	case L2CAP_SAR_UNSEGMENTED:
5792 5793
		if (chan->sdu)
			break;
5794

5795
		err = chan->ops->recv(chan, skb);
5796
		break;
5797

5798
	case L2CAP_SAR_START:
5799 5800
		if (chan->sdu)
			break;
5801

5802
		chan->sdu_len = get_unaligned_le16(skb->data);
5803
		skb_pull(skb, L2CAP_SDULEN_SIZE);
5804

5805 5806 5807 5808
		if (chan->sdu_len > chan->imtu) {
			err = -EMSGSIZE;
			break;
		}
5809

5810 5811
		if (skb->len >= chan->sdu_len)
			break;
5812

5813 5814
		chan->sdu = skb;
		chan->sdu_last_frag = skb;
5815

5816 5817
		skb = NULL;
		err = 0;
5818 5819
		break;

5820
	case L2CAP_SAR_CONTINUE:
5821
		if (!chan->sdu)
5822
			break;
5823

5824 5825 5826
		append_skb_frag(chan->sdu, skb,
				&chan->sdu_last_frag);
		skb = NULL;
5827

5828 5829
		if (chan->sdu->len >= chan->sdu_len)
			break;
5830

5831
		err = 0;
5832 5833
		break;

5834
	case L2CAP_SAR_END:
5835
		if (!chan->sdu)
5836
			break;
5837

5838 5839 5840
		append_skb_frag(chan->sdu, skb,
				&chan->sdu_last_frag);
		skb = NULL;
5841

5842 5843
		if (chan->sdu->len != chan->sdu_len)
			break;
5844

5845
		err = chan->ops->recv(chan, chan->sdu);
5846

5847 5848 5849 5850 5851
		if (!err) {
			/* Reassembly complete */
			chan->sdu = NULL;
			chan->sdu_last_frag = NULL;
			chan->sdu_len = 0;
5852
		}
5853 5854 5855
		break;
	}

5856 5857 5858 5859 5860 5861 5862
	if (err) {
		kfree_skb(skb);
		kfree_skb(chan->sdu);
		chan->sdu = NULL;
		chan->sdu_last_frag = NULL;
		chan->sdu_len = 0;
	}
5863

5864
	return err;
5865 5866
}

5867 5868 5869 5870 5871 5872
static int l2cap_resegment(struct l2cap_chan *chan)
{
	/* Placeholder */
	return 0;
}

5873
void l2cap_chan_busy(struct l2cap_chan *chan, int busy)
5874
{
5875
	u8 event;
5876

5877 5878
	if (chan->mode != L2CAP_MODE_ERTM)
		return;
5879

5880
	event = busy ? L2CAP_EV_LOCAL_BUSY_DETECTED : L2CAP_EV_LOCAL_BUSY_CLEAR;
5881
	l2cap_tx(chan, NULL, NULL, event);
5882 5883
}

5884 5885
static int l2cap_rx_queued_iframes(struct l2cap_chan *chan)
{
5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915
	int err = 0;
	/* Pass sequential frames to l2cap_reassemble_sdu()
	 * until a gap is encountered.
	 */

	BT_DBG("chan %p", chan);

	while (!test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
		struct sk_buff *skb;
		BT_DBG("Searching for skb with txseq %d (queue len %d)",
		       chan->buffer_seq, skb_queue_len(&chan->srej_q));

		skb = l2cap_ertm_seq_in_queue(&chan->srej_q, chan->buffer_seq);

		if (!skb)
			break;

		skb_unlink(skb, &chan->srej_q);
		chan->buffer_seq = __next_seq(chan, chan->buffer_seq);
		err = l2cap_reassemble_sdu(chan, skb, &bt_cb(skb)->control);
		if (err)
			break;
	}

	if (skb_queue_empty(&chan->srej_q)) {
		chan->rx_state = L2CAP_RX_STATE_RECV;
		l2cap_send_ack(chan);
	}

	return err;
5916 5917 5918 5919 5920
}

static void l2cap_handle_srej(struct l2cap_chan *chan,
			      struct l2cap_ctrl *control)
{
5921 5922 5923 5924 5925 5926
	struct sk_buff *skb;

	BT_DBG("chan %p, control %p", chan, control);

	if (control->reqseq == chan->next_tx_seq) {
		BT_DBG("Invalid reqseq %d, disconnecting", control->reqseq);
5927
		l2cap_send_disconn_req(chan, ECONNRESET);
5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940
		return;
	}

	skb = l2cap_ertm_seq_in_queue(&chan->tx_q, control->reqseq);

	if (skb == NULL) {
		BT_DBG("Seq %d not available for retransmission",
		       control->reqseq);
		return;
	}

	if (chan->max_tx != 0 && bt_cb(skb)->control.retries >= chan->max_tx) {
		BT_DBG("Retry limit exceeded (%d)", chan->max_tx);
5941
		l2cap_send_disconn_req(chan, ECONNRESET);
5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973
		return;
	}

	clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);

	if (control->poll) {
		l2cap_pass_to_tx(chan, control);

		set_bit(CONN_SEND_FBIT, &chan->conn_state);
		l2cap_retransmit(chan, control);
		l2cap_ertm_send(chan);

		if (chan->tx_state == L2CAP_TX_STATE_WAIT_F) {
			set_bit(CONN_SREJ_ACT, &chan->conn_state);
			chan->srej_save_reqseq = control->reqseq;
		}
	} else {
		l2cap_pass_to_tx_fbit(chan, control);

		if (control->final) {
			if (chan->srej_save_reqseq != control->reqseq ||
			    !test_and_clear_bit(CONN_SREJ_ACT,
						&chan->conn_state))
				l2cap_retransmit(chan, control);
		} else {
			l2cap_retransmit(chan, control);
			if (chan->tx_state == L2CAP_TX_STATE_WAIT_F) {
				set_bit(CONN_SREJ_ACT, &chan->conn_state);
				chan->srej_save_reqseq = control->reqseq;
			}
		}
	}
5974 5975 5976 5977 5978
}

static void l2cap_handle_rej(struct l2cap_chan *chan,
			     struct l2cap_ctrl *control)
{
5979 5980 5981 5982 5983 5984
	struct sk_buff *skb;

	BT_DBG("chan %p, control %p", chan, control);

	if (control->reqseq == chan->next_tx_seq) {
		BT_DBG("Invalid reqseq %d, disconnecting", control->reqseq);
5985
		l2cap_send_disconn_req(chan, ECONNRESET);
5986 5987 5988 5989 5990 5991 5992 5993
		return;
	}

	skb = l2cap_ertm_seq_in_queue(&chan->tx_q, control->reqseq);

	if (chan->max_tx && skb &&
	    bt_cb(skb)->control.retries >= chan->max_tx) {
		BT_DBG("Retry limit exceeded (%d)", chan->max_tx);
5994
		l2cap_send_disconn_req(chan, ECONNRESET);
5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010
		return;
	}

	clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);

	l2cap_pass_to_tx(chan, control);

	if (control->final) {
		if (!test_and_clear_bit(CONN_REJ_ACT, &chan->conn_state))
			l2cap_retransmit_all(chan, control);
	} else {
		l2cap_retransmit_all(chan, control);
		l2cap_ertm_send(chan);
		if (chan->tx_state == L2CAP_TX_STATE_WAIT_F)
			set_bit(CONN_REJ_ACT, &chan->conn_state);
	}
6011 6012
}

6013 6014 6015 6016 6017 6018 6019 6020 6021
static u8 l2cap_classify_txseq(struct l2cap_chan *chan, u16 txseq)
{
	BT_DBG("chan %p, txseq %d", chan, txseq);

	BT_DBG("last_acked_seq %d, expected_tx_seq %d", chan->last_acked_seq,
	       chan->expected_tx_seq);

	if (chan->rx_state == L2CAP_RX_STATE_SREJ_SENT) {
		if (__seq_offset(chan, txseq, chan->last_acked_seq) >=
6022
		    chan->tx_win) {
6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062
			/* See notes below regarding "double poll" and
			 * invalid packets.
			 */
			if (chan->tx_win <= ((chan->tx_win_max + 1) >> 1)) {
				BT_DBG("Invalid/Ignore - after SREJ");
				return L2CAP_TXSEQ_INVALID_IGNORE;
			} else {
				BT_DBG("Invalid - in window after SREJ sent");
				return L2CAP_TXSEQ_INVALID;
			}
		}

		if (chan->srej_list.head == txseq) {
			BT_DBG("Expected SREJ");
			return L2CAP_TXSEQ_EXPECTED_SREJ;
		}

		if (l2cap_ertm_seq_in_queue(&chan->srej_q, txseq)) {
			BT_DBG("Duplicate SREJ - txseq already stored");
			return L2CAP_TXSEQ_DUPLICATE_SREJ;
		}

		if (l2cap_seq_list_contains(&chan->srej_list, txseq)) {
			BT_DBG("Unexpected SREJ - not requested");
			return L2CAP_TXSEQ_UNEXPECTED_SREJ;
		}
	}

	if (chan->expected_tx_seq == txseq) {
		if (__seq_offset(chan, txseq, chan->last_acked_seq) >=
		    chan->tx_win) {
			BT_DBG("Invalid - txseq outside tx window");
			return L2CAP_TXSEQ_INVALID;
		} else {
			BT_DBG("Expected");
			return L2CAP_TXSEQ_EXPECTED;
		}
	}

	if (__seq_offset(chan, txseq, chan->last_acked_seq) <
6063
	    __seq_offset(chan, chan->expected_tx_seq, chan->last_acked_seq)) {
6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098
		BT_DBG("Duplicate - expected_tx_seq later than txseq");
		return L2CAP_TXSEQ_DUPLICATE;
	}

	if (__seq_offset(chan, txseq, chan->last_acked_seq) >= chan->tx_win) {
		/* A source of invalid packets is a "double poll" condition,
		 * where delays cause us to send multiple poll packets.  If
		 * the remote stack receives and processes both polls,
		 * sequence numbers can wrap around in such a way that a
		 * resent frame has a sequence number that looks like new data
		 * with a sequence gap.  This would trigger an erroneous SREJ
		 * request.
		 *
		 * Fortunately, this is impossible with a tx window that's
		 * less than half of the maximum sequence number, which allows
		 * invalid frames to be safely ignored.
		 *
		 * With tx window sizes greater than half of the tx window
		 * maximum, the frame is invalid and cannot be ignored.  This
		 * causes a disconnect.
		 */

		if (chan->tx_win <= ((chan->tx_win_max + 1) >> 1)) {
			BT_DBG("Invalid/Ignore - txseq outside tx window");
			return L2CAP_TXSEQ_INVALID_IGNORE;
		} else {
			BT_DBG("Invalid - txseq outside tx window");
			return L2CAP_TXSEQ_INVALID;
		}
	} else {
		BT_DBG("Unexpected - txseq indicates missing frames");
		return L2CAP_TXSEQ_UNEXPECTED;
	}
}

6099 6100 6101 6102 6103
static int l2cap_rx_state_recv(struct l2cap_chan *chan,
			       struct l2cap_ctrl *control,
			       struct sk_buff *skb, u8 event)
{
	int err = 0;
6104
	bool skb_in_use = false;
6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124

	BT_DBG("chan %p, control %p, skb %p, event %d", chan, control, skb,
	       event);

	switch (event) {
	case L2CAP_EV_RECV_IFRAME:
		switch (l2cap_classify_txseq(chan, control->txseq)) {
		case L2CAP_TXSEQ_EXPECTED:
			l2cap_pass_to_tx(chan, control);

			if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
				BT_DBG("Busy, discarding expected seq %d",
				       control->txseq);
				break;
			}

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

			chan->buffer_seq = chan->expected_tx_seq;
6125
			skb_in_use = true;
6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160

			err = l2cap_reassemble_sdu(chan, skb, control);
			if (err)
				break;

			if (control->final) {
				if (!test_and_clear_bit(CONN_REJ_ACT,
							&chan->conn_state)) {
					control->final = 0;
					l2cap_retransmit_all(chan, control);
					l2cap_ertm_send(chan);
				}
			}

			if (!test_bit(CONN_LOCAL_BUSY, &chan->conn_state))
				l2cap_send_ack(chan);
			break;
		case L2CAP_TXSEQ_UNEXPECTED:
			l2cap_pass_to_tx(chan, control);

			/* Can't issue SREJ frames in the local busy state.
			 * Drop this frame, it will be seen as missing
			 * when local busy is exited.
			 */
			if (test_bit(CONN_LOCAL_BUSY, &chan->conn_state)) {
				BT_DBG("Busy, discarding unexpected seq %d",
				       control->txseq);
				break;
			}

			/* There was a gap in the sequence, so an SREJ
			 * must be sent for each missing frame.  The
			 * current frame is stored for later use.
			 */
			skb_queue_tail(&chan->srej_q, skb);
6161
			skb_in_use = true;
6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177
			BT_DBG("Queued %p (queue len %d)", skb,
			       skb_queue_len(&chan->srej_q));

			clear_bit(CONN_SREJ_ACT, &chan->conn_state);
			l2cap_seq_list_clear(&chan->srej_list);
			l2cap_send_srej(chan, control->txseq);

			chan->rx_state = L2CAP_RX_STATE_SREJ_SENT;
			break;
		case L2CAP_TXSEQ_DUPLICATE:
			l2cap_pass_to_tx(chan, control);
			break;
		case L2CAP_TXSEQ_INVALID_IGNORE:
			break;
		case L2CAP_TXSEQ_INVALID:
		default:
6178
			l2cap_send_disconn_req(chan, ECONNRESET);
6179 6180 6181 6182 6183 6184 6185 6186
			break;
		}
		break;
	case L2CAP_EV_RECV_RR:
		l2cap_pass_to_tx(chan, control);
		if (control->final) {
			clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);

6187 6188
			if (!test_and_clear_bit(CONN_REJ_ACT, &chan->conn_state) &&
			    !__chan_is_moving(chan)) {
6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238
				control->final = 0;
				l2cap_retransmit_all(chan, control);
			}

			l2cap_ertm_send(chan);
		} else if (control->poll) {
			l2cap_send_i_or_rr_or_rnr(chan);
		} else {
			if (test_and_clear_bit(CONN_REMOTE_BUSY,
					       &chan->conn_state) &&
			    chan->unacked_frames)
				__set_retrans_timer(chan);

			l2cap_ertm_send(chan);
		}
		break;
	case L2CAP_EV_RECV_RNR:
		set_bit(CONN_REMOTE_BUSY, &chan->conn_state);
		l2cap_pass_to_tx(chan, control);
		if (control && control->poll) {
			set_bit(CONN_SEND_FBIT, &chan->conn_state);
			l2cap_send_rr_or_rnr(chan, 0);
		}
		__clear_retrans_timer(chan);
		l2cap_seq_list_clear(&chan->retrans_list);
		break;
	case L2CAP_EV_RECV_REJ:
		l2cap_handle_rej(chan, control);
		break;
	case L2CAP_EV_RECV_SREJ:
		l2cap_handle_srej(chan, control);
		break;
	default:
		break;
	}

	if (skb && !skb_in_use) {
		BT_DBG("Freeing %p", skb);
		kfree_skb(skb);
	}

	return err;
}

static int l2cap_rx_state_srej_sent(struct l2cap_chan *chan,
				    struct l2cap_ctrl *control,
				    struct sk_buff *skb, u8 event)
{
	int err = 0;
	u16 txseq = control->txseq;
6239
	bool skb_in_use = false;
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250

	BT_DBG("chan %p, control %p, skb %p, event %d", chan, control, skb,
	       event);

	switch (event) {
	case L2CAP_EV_RECV_IFRAME:
		switch (l2cap_classify_txseq(chan, txseq)) {
		case L2CAP_TXSEQ_EXPECTED:
			/* Keep frame for reassembly later */
			l2cap_pass_to_tx(chan, control);
			skb_queue_tail(&chan->srej_q, skb);
6251
			skb_in_use = true;
6252 6253 6254 6255 6256 6257 6258 6259 6260 6261
			BT_DBG("Queued %p (queue len %d)", skb,
			       skb_queue_len(&chan->srej_q));

			chan->expected_tx_seq = __next_seq(chan, txseq);
			break;
		case L2CAP_TXSEQ_EXPECTED_SREJ:
			l2cap_seq_list_pop(&chan->srej_list);

			l2cap_pass_to_tx(chan, control);
			skb_queue_tail(&chan->srej_q, skb);
6262
			skb_in_use = true;
6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276
			BT_DBG("Queued %p (queue len %d)", skb,
			       skb_queue_len(&chan->srej_q));

			err = l2cap_rx_queued_iframes(chan);
			if (err)
				break;

			break;
		case L2CAP_TXSEQ_UNEXPECTED:
			/* Got a frame that can't be reassembled yet.
			 * Save it for later, and send SREJs to cover
			 * the missing frames.
			 */
			skb_queue_tail(&chan->srej_q, skb);
6277
			skb_in_use = true;
6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290
			BT_DBG("Queued %p (queue len %d)", skb,
			       skb_queue_len(&chan->srej_q));

			l2cap_pass_to_tx(chan, control);
			l2cap_send_srej(chan, control->txseq);
			break;
		case L2CAP_TXSEQ_UNEXPECTED_SREJ:
			/* This frame was requested with an SREJ, but
			 * some expected retransmitted frames are
			 * missing.  Request retransmission of missing
			 * SREJ'd frames.
			 */
			skb_queue_tail(&chan->srej_q, skb);
6291
			skb_in_use = true;
6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310
			BT_DBG("Queued %p (queue len %d)", skb,
			       skb_queue_len(&chan->srej_q));

			l2cap_pass_to_tx(chan, control);
			l2cap_send_srej_list(chan, control->txseq);
			break;
		case L2CAP_TXSEQ_DUPLICATE_SREJ:
			/* We've already queued this frame.  Drop this copy. */
			l2cap_pass_to_tx(chan, control);
			break;
		case L2CAP_TXSEQ_DUPLICATE:
			/* Expecting a later sequence number, so this frame
			 * was already received.  Ignore it completely.
			 */
			break;
		case L2CAP_TXSEQ_INVALID_IGNORE:
			break;
		case L2CAP_TXSEQ_INVALID:
		default:
6311
			l2cap_send_disconn_req(chan, ECONNRESET);
6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375
			break;
		}
		break;
	case L2CAP_EV_RECV_RR:
		l2cap_pass_to_tx(chan, control);
		if (control->final) {
			clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);

			if (!test_and_clear_bit(CONN_REJ_ACT,
						&chan->conn_state)) {
				control->final = 0;
				l2cap_retransmit_all(chan, control);
			}

			l2cap_ertm_send(chan);
		} else if (control->poll) {
			if (test_and_clear_bit(CONN_REMOTE_BUSY,
					       &chan->conn_state) &&
			    chan->unacked_frames) {
				__set_retrans_timer(chan);
			}

			set_bit(CONN_SEND_FBIT, &chan->conn_state);
			l2cap_send_srej_tail(chan);
		} else {
			if (test_and_clear_bit(CONN_REMOTE_BUSY,
					       &chan->conn_state) &&
			    chan->unacked_frames)
				__set_retrans_timer(chan);

			l2cap_send_ack(chan);
		}
		break;
	case L2CAP_EV_RECV_RNR:
		set_bit(CONN_REMOTE_BUSY, &chan->conn_state);
		l2cap_pass_to_tx(chan, control);
		if (control->poll) {
			l2cap_send_srej_tail(chan);
		} else {
			struct l2cap_ctrl rr_control;
			memset(&rr_control, 0, sizeof(rr_control));
			rr_control.sframe = 1;
			rr_control.super = L2CAP_SUPER_RR;
			rr_control.reqseq = chan->buffer_seq;
			l2cap_send_sframe(chan, &rr_control);
		}

		break;
	case L2CAP_EV_RECV_REJ:
		l2cap_handle_rej(chan, control);
		break;
	case L2CAP_EV_RECV_SREJ:
		l2cap_handle_srej(chan, control);
		break;
	}

	if (skb && !skb_in_use) {
		BT_DBG("Freeing %p", skb);
		kfree_skb(skb);
	}

	return err;
}

6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465
static int l2cap_finish_move(struct l2cap_chan *chan)
{
	BT_DBG("chan %p", chan);

	chan->rx_state = L2CAP_RX_STATE_RECV;

	if (chan->hs_hcon)
		chan->conn->mtu = chan->hs_hcon->hdev->block_mtu;
	else
		chan->conn->mtu = chan->conn->hcon->hdev->acl_mtu;

	return l2cap_resegment(chan);
}

static int l2cap_rx_state_wait_p(struct l2cap_chan *chan,
				 struct l2cap_ctrl *control,
				 struct sk_buff *skb, u8 event)
{
	int err;

	BT_DBG("chan %p, control %p, skb %p, event %d", chan, control, skb,
	       event);

	if (!control->poll)
		return -EPROTO;

	l2cap_process_reqseq(chan, control->reqseq);

	if (!skb_queue_empty(&chan->tx_q))
		chan->tx_send_head = skb_peek(&chan->tx_q);
	else
		chan->tx_send_head = NULL;

	/* Rewind next_tx_seq to the point expected
	 * by the receiver.
	 */
	chan->next_tx_seq = control->reqseq;
	chan->unacked_frames = 0;

	err = l2cap_finish_move(chan);
	if (err)
		return err;

	set_bit(CONN_SEND_FBIT, &chan->conn_state);
	l2cap_send_i_or_rr_or_rnr(chan);

	if (event == L2CAP_EV_RECV_IFRAME)
		return -EPROTO;

	return l2cap_rx_state_recv(chan, control, NULL, event);
}

static int l2cap_rx_state_wait_f(struct l2cap_chan *chan,
				 struct l2cap_ctrl *control,
				 struct sk_buff *skb, u8 event)
{
	int err;

	if (!control->final)
		return -EPROTO;

	clear_bit(CONN_REMOTE_BUSY, &chan->conn_state);

	chan->rx_state = L2CAP_RX_STATE_RECV;
	l2cap_process_reqseq(chan, control->reqseq);

	if (!skb_queue_empty(&chan->tx_q))
		chan->tx_send_head = skb_peek(&chan->tx_q);
	else
		chan->tx_send_head = NULL;

	/* Rewind next_tx_seq to the point expected
	 * by the receiver.
	 */
	chan->next_tx_seq = control->reqseq;
	chan->unacked_frames = 0;

	if (chan->hs_hcon)
		chan->conn->mtu = chan->hs_hcon->hdev->block_mtu;
	else
		chan->conn->mtu = chan->conn->hcon->hdev->acl_mtu;

	err = l2cap_resegment(chan);

	if (!err)
		err = l2cap_rx_state_recv(chan, control, skb, event);

	return err;
}

6466 6467 6468 6469 6470 6471 6472 6473 6474
static bool __valid_reqseq(struct l2cap_chan *chan, u16 reqseq)
{
	/* Make sure reqseq is for a packet that has been sent but not acked */
	u16 unacked;

	unacked = __seq_offset(chan, chan->next_tx_seq, chan->expected_ack_seq);
	return __seq_offset(chan, chan->next_tx_seq, reqseq) <= unacked;
}

6475 6476
static int l2cap_rx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
		    struct sk_buff *skb, u8 event)
6477
{
6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491
	int err = 0;

	BT_DBG("chan %p, control %p, skb %p, event %d, state %d", chan,
	       control, skb, event, chan->rx_state);

	if (__valid_reqseq(chan, control->reqseq)) {
		switch (chan->rx_state) {
		case L2CAP_RX_STATE_RECV:
			err = l2cap_rx_state_recv(chan, control, skb, event);
			break;
		case L2CAP_RX_STATE_SREJ_SENT:
			err = l2cap_rx_state_srej_sent(chan, control, skb,
						       event);
			break;
6492 6493 6494 6495 6496 6497
		case L2CAP_RX_STATE_WAIT_P:
			err = l2cap_rx_state_wait_p(chan, control, skb, event);
			break;
		case L2CAP_RX_STATE_WAIT_F:
			err = l2cap_rx_state_wait_f(chan, control, skb, event);
			break;
6498 6499 6500 6501 6502 6503 6504 6505
		default:
			/* shut it down */
			break;
		}
	} else {
		BT_DBG("Invalid reqseq %d (next_tx_seq %d, expected_ack_seq %d",
		       control->reqseq, chan->next_tx_seq,
		       chan->expected_ack_seq);
6506
		l2cap_send_disconn_req(chan, ECONNRESET);
6507 6508 6509
	}

	return err;
6510 6511 6512 6513 6514
}

static int l2cap_stream_rx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
			   struct sk_buff *skb)
{
6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547
	int err = 0;

	BT_DBG("chan %p, control %p, skb %p, state %d", chan, control, skb,
	       chan->rx_state);

	if (l2cap_classify_txseq(chan, control->txseq) ==
	    L2CAP_TXSEQ_EXPECTED) {
		l2cap_pass_to_tx(chan, control);

		BT_DBG("buffer_seq %d->%d", chan->buffer_seq,
		       __next_seq(chan, chan->buffer_seq));

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

		l2cap_reassemble_sdu(chan, skb, control);
	} else {
		if (chan->sdu) {
			kfree_skb(chan->sdu);
			chan->sdu = NULL;
		}
		chan->sdu_last_frag = NULL;
		chan->sdu_len = 0;

		if (skb) {
			BT_DBG("Freeing %p", skb);
			kfree_skb(skb);
		}
	}

	chan->last_acked_seq = control->txseq;
	chan->expected_tx_seq = __next_seq(chan, control->txseq);

	return err;
6548 6549 6550 6551 6552 6553 6554
}

static int l2cap_data_rcv(struct l2cap_chan *chan, struct sk_buff *skb)
{
	struct l2cap_ctrl *control = &bt_cb(skb)->control;
	u16 len;
	u8 event;
6555

6556 6557
	__unpack_control(chan, skb);

6558 6559 6560 6561 6562
	len = skb->len;

	/*
	 * We can just drop the corrupted I-frame here.
	 * Receiver will miss it and start proper recovery
6563
	 * procedures and ask for retransmission.
6564
	 */
6565
	if (l2cap_check_fcs(chan, skb))
6566 6567
		goto drop;

6568
	if (!control->sframe && control->sar == L2CAP_SAR_START)
6569
		len -= L2CAP_SDULEN_SIZE;
6570

6571
	if (chan->fcs == L2CAP_FCS_CRC16)
6572
		len -= L2CAP_FCS_SIZE;
6573

6574
	if (len > chan->mps) {
6575
		l2cap_send_disconn_req(chan, ECONNRESET);
6576 6577 6578
		goto drop;
	}

6579 6580
	if (!control->sframe) {
		int err;
6581

6582 6583 6584
		BT_DBG("iframe sar %d, reqseq %d, final %d, txseq %d",
		       control->sar, control->reqseq, control->final,
		       control->txseq);
6585

6586 6587 6588 6589
		/* Validate F-bit - F=0 always valid, F=1 only
		 * valid in TX WAIT_F
		 */
		if (control->final && chan->tx_state != L2CAP_TX_STATE_WAIT_F)
6590
			goto drop;
6591 6592 6593 6594 6595 6596

		if (chan->mode != L2CAP_MODE_STREAMING) {
			event = L2CAP_EV_RECV_IFRAME;
			err = l2cap_rx(chan, control, skb, event);
		} else {
			err = l2cap_stream_rx(chan, control, skb);
6597 6598
		}

6599
		if (err)
6600
			l2cap_send_disconn_req(chan, ECONNRESET);
6601
	} else {
6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614
		const u8 rx_func_to_event[4] = {
			L2CAP_EV_RECV_RR, L2CAP_EV_RECV_REJ,
			L2CAP_EV_RECV_RNR, L2CAP_EV_RECV_SREJ
		};

		/* Only I-frames are expected in streaming mode */
		if (chan->mode == L2CAP_MODE_STREAMING)
			goto drop;

		BT_DBG("sframe reqseq %d, final %d, poll %d, super %d",
		       control->reqseq, control->final, control->poll,
		       control->super);

6615
		if (len != 0) {
6616
			BT_ERR("Trailing bytes: %d in sframe", len);
6617
			l2cap_send_disconn_req(chan, ECONNRESET);
6618 6619 6620
			goto drop;
		}

6621 6622 6623 6624 6625 6626 6627
		/* Validate F and P bits */
		if (control->final && (control->poll ||
				       chan->tx_state != L2CAP_TX_STATE_WAIT_F))
			goto drop;

		event = rx_func_to_event[control->super];
		if (l2cap_rx(chan, control, skb, event))
6628
			l2cap_send_disconn_req(chan, ECONNRESET);
6629 6630 6631 6632 6633 6634 6635 6636 6637
	}

	return 0;

drop:
	kfree_skb(skb);
	return 0;
}

6638 6639 6640 6641 6642 6643 6644 6645 6646
static void l2cap_chan_le_send_credits(struct l2cap_chan *chan)
{
	struct l2cap_conn *conn = chan->conn;
	struct l2cap_le_credits pkt;
	u16 return_credits;

	/* We return more credits to the sender only after the amount of
	 * credits falls below half of the initial amount.
	 */
6647
	if (chan->rx_credits >= (le_max_credits + 1) / 2)
6648 6649
		return;

6650
	return_credits = le_max_credits - chan->rx_credits;
6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663

	BT_DBG("chan %p returning %u credits to sender", chan, return_credits);

	chan->rx_credits += return_credits;

	pkt.cid     = cpu_to_le16(chan->scid);
	pkt.credits = cpu_to_le16(return_credits);

	chan->ident = l2cap_get_ident(conn);

	l2cap_send_cmd(conn, chan->ident, L2CAP_LE_CREDITS, sizeof(pkt), &pkt);
}

6664 6665
static int l2cap_le_data_rcv(struct l2cap_chan *chan, struct sk_buff *skb)
{
6666 6667 6668 6669
	int err;

	if (!chan->rx_credits) {
		BT_ERR("No credits to receive LE L2CAP data");
6670
		l2cap_send_disconn_req(chan, ECONNRESET);
6671
		return -ENOBUFS;
6672
	}
6673

6674 6675
	if (chan->imtu < skb->len) {
		BT_ERR("Too big LE L2CAP PDU");
6676
		return -ENOBUFS;
6677
	}
6678 6679 6680 6681 6682 6683

	chan->rx_credits--;
	BT_DBG("rx_credits %u -> %u", chan->rx_credits + 1, chan->rx_credits);

	l2cap_chan_le_send_credits(chan);

6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751
	err = 0;

	if (!chan->sdu) {
		u16 sdu_len;

		sdu_len = get_unaligned_le16(skb->data);
		skb_pull(skb, L2CAP_SDULEN_SIZE);

		BT_DBG("Start of new SDU. sdu_len %u skb->len %u imtu %u",
		       sdu_len, skb->len, chan->imtu);

		if (sdu_len > chan->imtu) {
			BT_ERR("Too big LE L2CAP SDU length received");
			err = -EMSGSIZE;
			goto failed;
		}

		if (skb->len > sdu_len) {
			BT_ERR("Too much LE L2CAP data received");
			err = -EINVAL;
			goto failed;
		}

		if (skb->len == sdu_len)
			return chan->ops->recv(chan, skb);

		chan->sdu = skb;
		chan->sdu_len = sdu_len;
		chan->sdu_last_frag = skb;

		return 0;
	}

	BT_DBG("SDU fragment. chan->sdu->len %u skb->len %u chan->sdu_len %u",
	       chan->sdu->len, skb->len, chan->sdu_len);

	if (chan->sdu->len + skb->len > chan->sdu_len) {
		BT_ERR("Too much LE L2CAP data received");
		err = -EINVAL;
		goto failed;
	}

	append_skb_frag(chan->sdu, skb, &chan->sdu_last_frag);
	skb = NULL;

	if (chan->sdu->len == chan->sdu_len) {
		err = chan->ops->recv(chan, chan->sdu);
		if (!err) {
			chan->sdu = NULL;
			chan->sdu_last_frag = NULL;
			chan->sdu_len = 0;
		}
	}

failed:
	if (err) {
		kfree_skb(skb);
		kfree_skb(chan->sdu);
		chan->sdu = NULL;
		chan->sdu_last_frag = NULL;
		chan->sdu_len = 0;
	}

	/* We can't return an error here since we took care of the skb
	 * freeing internally. An error return would cause the caller to
	 * do a double-free of the skb.
	 */
	return 0;
6752 6753
}

6754 6755
static void l2cap_data_channel(struct l2cap_conn *conn, u16 cid,
			       struct sk_buff *skb)
L
Linus Torvalds 已提交
6756
{
6757
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
6758

6759
	chan = l2cap_get_chan_by_scid(conn, cid);
6760
	if (!chan) {
6761 6762 6763 6764
		if (cid == L2CAP_CID_A2MP) {
			chan = a2mp_channel_create(conn, skb);
			if (!chan) {
				kfree_skb(skb);
6765
				return;
6766 6767 6768 6769 6770 6771 6772
			}

			l2cap_chan_lock(chan);
		} else {
			BT_DBG("unknown cid 0x%4.4x", cid);
			/* Drop packet and return */
			kfree_skb(skb);
6773
			return;
6774
		}
L
Linus Torvalds 已提交
6775 6776
	}

6777
	BT_DBG("chan %p, len %d", chan, skb->len);
L
Linus Torvalds 已提交
6778

6779
	if (chan->state != BT_CONNECTED)
L
Linus Torvalds 已提交
6780 6781
		goto drop;

6782
	switch (chan->mode) {
6783
	case L2CAP_MODE_LE_FLOWCTL:
6784 6785 6786 6787 6788
		if (l2cap_le_data_rcv(chan, skb) < 0)
			goto drop;

		goto done;

6789 6790 6791 6792 6793
	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 已提交
6794

6795 6796
		if (chan->imtu < skb->len) {
			BT_ERR("Dropping L2CAP data: receive buffer overflow");
6797
			goto drop;
6798
		}
L
Linus Torvalds 已提交
6799

6800
		if (!chan->ops->recv(chan, skb))
6801 6802 6803 6804
			goto done;
		break;

	case L2CAP_MODE_ERTM:
6805
	case L2CAP_MODE_STREAMING:
6806
		l2cap_data_rcv(chan, skb);
6807 6808
		goto done;

6809
	default:
6810
		BT_DBG("chan %p: bad mode 0x%2.2x", chan, chan->mode);
6811 6812
		break;
	}
L
Linus Torvalds 已提交
6813 6814 6815 6816 6817

drop:
	kfree_skb(skb);

done:
6818
	l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
6819 6820
}

6821 6822
static void l2cap_conless_channel(struct l2cap_conn *conn, __le16 psm,
				  struct sk_buff *skb)
L
Linus Torvalds 已提交
6823
{
6824
	struct hci_conn *hcon = conn->hcon;
6825
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
6826

6827
	if (hcon->type != ACL_LINK)
6828
		goto free_skb;
6829

6830 6831
	chan = l2cap_global_chan_by_psm(0, psm, &hcon->src, &hcon->dst,
					ACL_LINK);
6832
	if (!chan)
6833
		goto free_skb;
L
Linus Torvalds 已提交
6834

6835
	BT_DBG("chan %p, len %d", chan, skb->len);
L
Linus Torvalds 已提交
6836

6837
	if (chan->state != BT_BOUND && chan->state != BT_CONNECTED)
L
Linus Torvalds 已提交
6838 6839
		goto drop;

6840
	if (chan->imtu < skb->len)
L
Linus Torvalds 已提交
6841 6842
		goto drop;

6843
	/* Store remote BD_ADDR and PSM for msg_name */
6844
	bacpy(&bt_cb(skb)->bdaddr, &hcon->dst);
6845 6846
	bt_cb(skb)->psm = psm;

6847 6848
	if (!chan->ops->recv(chan, skb)) {
		l2cap_chan_put(chan);
6849
		return;
6850
	}
L
Linus Torvalds 已提交
6851 6852

drop:
6853 6854
	l2cap_chan_put(chan);
free_skb:
L
Linus Torvalds 已提交
6855 6856 6857 6858 6859 6860
	kfree_skb(skb);
}

static void l2cap_recv_frame(struct l2cap_conn *conn, struct sk_buff *skb)
{
	struct l2cap_hdr *lh = (void *) skb->data;
6861
	struct hci_conn *hcon = conn->hcon;
6862 6863
	u16 cid, len;
	__le16 psm;
L
Linus Torvalds 已提交
6864

6865 6866 6867 6868 6869 6870
	if (hcon->state != BT_CONNECTED) {
		BT_DBG("queueing pending rx skb");
		skb_queue_tail(&conn->pending_rx, skb);
		return;
	}

L
Linus Torvalds 已提交
6871 6872 6873 6874
	skb_pull(skb, L2CAP_HDR_SIZE);
	cid = __le16_to_cpu(lh->cid);
	len = __le16_to_cpu(lh->len);

6875 6876 6877 6878 6879
	if (len != skb->len) {
		kfree_skb(skb);
		return;
	}

6880 6881 6882 6883
	/* Since we can't actively block incoming LE connections we must
	 * at least ensure that we ignore incoming data from them.
	 */
	if (hcon->type == LE_LINK &&
6884 6885
	    hci_bdaddr_list_lookup(&hcon->hdev->blacklist, &hcon->dst,
				   bdaddr_type(hcon, hcon->dst_type))) {
6886 6887 6888 6889
		kfree_skb(skb);
		return;
	}

L
Linus Torvalds 已提交
6890 6891 6892
	BT_DBG("len %d, cid 0x%4.4x", len, cid);

	switch (cid) {
6893
	case L2CAP_CID_SIGNALING:
L
Linus Torvalds 已提交
6894 6895 6896
		l2cap_sig_channel(conn, skb);
		break;

6897
	case L2CAP_CID_CONN_LESS:
6898
		psm = get_unaligned((__le16 *) skb->data);
6899
		skb_pull(skb, L2CAP_PSMLEN_SIZE);
L
Linus Torvalds 已提交
6900 6901 6902
		l2cap_conless_channel(conn, psm, skb);
		break;

6903 6904 6905 6906
	case L2CAP_CID_LE_SIGNALING:
		l2cap_le_sig_channel(conn, skb);
		break;

L
Linus Torvalds 已提交
6907 6908 6909 6910 6911 6912
	default:
		l2cap_data_channel(conn, cid, skb);
		break;
	}
}

6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924
static void process_pending_rx(struct work_struct *work)
{
	struct l2cap_conn *conn = container_of(work, struct l2cap_conn,
					       pending_rx_work);
	struct sk_buff *skb;

	BT_DBG("");

	while ((skb = skb_dequeue(&conn->pending_rx)))
		l2cap_recv_frame(conn, skb);
}

6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936
static struct l2cap_conn *l2cap_conn_add(struct hci_conn *hcon)
{
	struct l2cap_conn *conn = hcon->l2cap_data;
	struct hci_chan *hchan;

	if (conn)
		return conn;

	hchan = hci_chan_create(hcon);
	if (!hchan)
		return NULL;

6937
	conn = kzalloc(sizeof(*conn), GFP_KERNEL);
6938 6939 6940 6941 6942 6943 6944
	if (!conn) {
		hci_chan_del(hchan);
		return NULL;
	}

	kref_init(&conn->ref);
	hcon->l2cap_data = conn;
6945
	conn->hcon = hci_conn_get(hcon);
6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963
	conn->hchan = hchan;

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

	switch (hcon->type) {
	case LE_LINK:
		if (hcon->hdev->le_mtu) {
			conn->mtu = hcon->hdev->le_mtu;
			break;
		}
		/* fall through */
	default:
		conn->mtu = hcon->hdev->acl_mtu;
		break;
	}

	conn->feat_mask = 0;

6964 6965 6966 6967 6968
	conn->local_fixed_chan = L2CAP_FC_SIG_BREDR | L2CAP_FC_CONNLESS;

	if (hcon->type == ACL_LINK &&
	    test_bit(HCI_HS_ENABLED, &hcon->hdev->dev_flags))
		conn->local_fixed_chan |= L2CAP_FC_A2MP;
6969

6970
	mutex_init(&conn->ident_lock);
6971 6972 6973 6974 6975
	mutex_init(&conn->chan_lock);

	INIT_LIST_HEAD(&conn->chan_l);
	INIT_LIST_HEAD(&conn->users);

6976
	INIT_DELAYED_WORK(&conn->info_timer, l2cap_info_timeout);
6977

6978 6979
	skb_queue_head_init(&conn->pending_rx);
	INIT_WORK(&conn->pending_rx_work, process_pending_rx);
6980
	INIT_WORK(&conn->id_addr_update_work, l2cap_conn_update_id_addr);
6981

6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020
	conn->disc_reason = HCI_ERROR_REMOTE_USER_TERM;

	return conn;
}

static bool is_valid_psm(u16 psm, u8 dst_type) {
	if (!psm)
		return false;

	if (bdaddr_type_is_le(dst_type))
		return (psm <= 0x00ff);

	/* PSM must be odd and lsb of upper byte must be 0 */
	return ((psm & 0x0101) == 0x0001);
}

int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid,
		       bdaddr_t *dst, u8 dst_type)
{
	struct l2cap_conn *conn;
	struct hci_conn *hcon;
	struct hci_dev *hdev;
	int err;

	BT_DBG("%pMR -> %pMR (type %u) psm 0x%2.2x", &chan->src, dst,
	       dst_type, __le16_to_cpu(psm));

	hdev = hci_get_route(dst, &chan->src);
	if (!hdev)
		return -EHOSTUNREACH;

	hci_dev_lock(hdev);

	if (!is_valid_psm(__le16_to_cpu(psm), dst_type) && !cid &&
	    chan->chan_type != L2CAP_CHAN_RAW) {
		err = -EINVAL;
		goto done;
	}

7021 7022 7023 7024 7025 7026
	if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED && !psm) {
		err = -EINVAL;
		goto done;
	}

	if (chan->chan_type == L2CAP_CHAN_FIXED && !cid) {
7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042
		err = -EINVAL;
		goto done;
	}

	switch (chan->mode) {
	case L2CAP_MODE_BASIC:
		break;
	case L2CAP_MODE_LE_FLOWCTL:
		l2cap_le_flowctl_init(chan);
		break;
	case L2CAP_MODE_ERTM:
	case L2CAP_MODE_STREAMING:
		if (!disable_ertm)
			break;
		/* fall through */
	default:
7043
		err = -EOPNOTSUPP;
7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076
		goto done;
	}

	switch (chan->state) {
	case BT_CONNECT:
	case BT_CONNECT2:
	case BT_CONFIG:
		/* Already connecting */
		err = 0;
		goto done;

	case BT_CONNECTED:
		/* Already connected */
		err = -EISCONN;
		goto done;

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

	default:
		err = -EBADFD;
		goto done;
	}

	/* Set destination address and psm */
	bacpy(&chan->dst, dst);
	chan->dst_type = dst_type;

	chan->psm = psm;
	chan->dcid = cid;

7077
	if (bdaddr_type_is_le(dst_type)) {
7078
		u8 role;
7079

7080 7081 7082 7083 7084 7085 7086
		/* Convert from L2CAP channel address type to HCI address type
		 */
		if (dst_type == BDADDR_LE_PUBLIC)
			dst_type = ADDR_LE_DEV_PUBLIC;
		else
			dst_type = ADDR_LE_DEV_RANDOM;

7087 7088 7089 7090
		if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
			role = HCI_ROLE_SLAVE;
		else
			role = HCI_ROLE_MASTER;
7091

7092
		hcon = hci_connect_le(hdev, dst, dst_type, chan->sec_level,
7093
				      HCI_LE_CONN_TIMEOUT, role);
7094
	} else {
7095
		u8 auth_type = l2cap_get_auth_type(chan);
7096
		hcon = hci_connect_acl(hdev, dst, chan->sec_level, auth_type);
7097
	}
7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110

	if (IS_ERR(hcon)) {
		err = PTR_ERR(hcon);
		goto done;
	}

	conn = l2cap_conn_add(hcon);
	if (!conn) {
		hci_conn_drop(hcon);
		err = -ENOMEM;
		goto done;
	}

7111 7112 7113
	mutex_lock(&conn->chan_lock);
	l2cap_chan_lock(chan);

7114 7115 7116
	if (cid && __l2cap_get_chan_by_dcid(conn, cid)) {
		hci_conn_drop(hcon);
		err = -EBUSY;
7117
		goto chan_unlock;
7118 7119 7120 7121 7122 7123
	}

	/* Update source addr of the socket */
	bacpy(&chan->src, &hcon->src);
	chan->src_type = bdaddr_type(hcon, hcon->src_type);

7124
	__l2cap_chan_add(conn, chan);
7125 7126 7127 7128 7129 7130 7131

	/* l2cap_chan_add takes its own ref so we can drop this one */
	hci_conn_drop(hcon);

	l2cap_state_change(chan, BT_CONNECT);
	__set_chan_timer(chan, chan->ops->get_sndtimeo(chan));

7132 7133 7134 7135 7136 7137 7138
	/* Release chan->sport so that it can be reused by other
	 * sockets (as it's only used for listening sockets).
	 */
	write_lock(&chan_list_lock);
	chan->sport = 0;
	write_unlock(&chan_list_lock);

7139 7140 7141
	if (hcon->state == BT_CONNECTED) {
		if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
			__clear_chan_timer(chan);
7142
			if (l2cap_chan_check_security(chan, true))
7143 7144 7145 7146 7147 7148 7149
				l2cap_state_change(chan, BT_CONNECTED);
		} else
			l2cap_do_start(chan);
	}

	err = 0;

7150
chan_unlock:
7151
	l2cap_chan_unlock(chan);
7152 7153
	mutex_unlock(&conn->chan_lock);
done:
7154 7155 7156 7157
	hci_dev_unlock(hdev);
	hci_dev_put(hdev);
	return err;
}
7158
EXPORT_SYMBOL_GPL(l2cap_chan_connect);
7159

L
Linus Torvalds 已提交
7160 7161
/* ---- L2CAP interface with lower layer (HCI) ---- */

7162
int l2cap_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr)
L
Linus Torvalds 已提交
7163 7164
{
	int exact = 0, lm1 = 0, lm2 = 0;
7165
	struct l2cap_chan *c;
L
Linus Torvalds 已提交
7166

7167
	BT_DBG("hdev %s, bdaddr %pMR", hdev->name, bdaddr);
L
Linus Torvalds 已提交
7168 7169

	/* Find listening sockets and check their link_mode */
7170 7171
	read_lock(&chan_list_lock);
	list_for_each_entry(c, &chan_list, global_l) {
7172
		if (c->state != BT_LISTEN)
L
Linus Torvalds 已提交
7173 7174
			continue;

7175
		if (!bacmp(&c->src, &hdev->bdaddr)) {
7176
			lm1 |= HCI_LM_ACCEPT;
7177
			if (test_bit(FLAG_ROLE_SWITCH, &c->flags))
7178
				lm1 |= HCI_LM_MASTER;
L
Linus Torvalds 已提交
7179
			exact++;
7180
		} else if (!bacmp(&c->src, BDADDR_ANY)) {
7181
			lm2 |= HCI_LM_ACCEPT;
7182
			if (test_bit(FLAG_ROLE_SWITCH, &c->flags))
7183 7184
				lm2 |= HCI_LM_MASTER;
		}
L
Linus Torvalds 已提交
7185
	}
7186
	read_unlock(&chan_list_lock);
L
Linus Torvalds 已提交
7187 7188 7189 7190

	return exact ? lm1 : lm2;
}

7191 7192 7193 7194 7195
/* Find the next fixed channel in BT_LISTEN state, continue iteration
 * from an existing channel in the list or from the beginning of the
 * global list (by passing NULL as first parameter).
 */
static struct l2cap_chan *l2cap_global_fixed_chan(struct l2cap_chan *c,
7196
						  bdaddr_t *src, u8 link_type)
7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211
{
	read_lock(&chan_list_lock);

	if (c)
		c = list_next_entry(c, global_l);
	else
		c = list_entry(chan_list.next, typeof(*c), global_l);

	list_for_each_entry_from(c, &chan_list, global_l) {
		if (c->chan_type != L2CAP_CHAN_FIXED)
			continue;
		if (c->state != BT_LISTEN)
			continue;
		if (bacmp(&c->src, src) && bacmp(&c->src, BDADDR_ANY))
			continue;
7212 7213 7214 7215
		if (link_type == ACL_LINK && c->src_type != BDADDR_BREDR)
			continue;
		if (link_type == LE_LINK && c->src_type == BDADDR_BREDR)
			continue;
7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226

		l2cap_chan_hold(c);
		read_unlock(&chan_list_lock);
		return c;
	}

	read_unlock(&chan_list_lock);

	return NULL;
}

7227
void l2cap_connect_cfm(struct hci_conn *hcon, u8 status)
L
Linus Torvalds 已提交
7228
{
7229
	struct hci_dev *hdev = hcon->hdev;
7230
	struct l2cap_conn *conn;
7231 7232
	struct l2cap_chan *pchan;
	u8 dst_type;
7233

7234
	BT_DBG("hcon %p bdaddr %pMR status %d", hcon, &hcon->dst, status);
L
Linus Torvalds 已提交
7235

7236
	if (status) {
7237
		l2cap_conn_del(hcon, bt_to_errno(status));
7238
		return;
7239
	}
7240 7241 7242 7243 7244

	conn = l2cap_conn_add(hcon);
	if (!conn)
		return;

7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255
	dst_type = bdaddr_type(hcon, hcon->dst_type);

	/* If device is blocked, do not create channels for it */
	if (hci_bdaddr_list_lookup(&hdev->blacklist, &hcon->dst, dst_type))
		return;

	/* Find fixed channels and notify them of the new connection. We
	 * use multiple individual lookups, continuing each time where
	 * we left off, because the list lock would prevent calling the
	 * potentially sleeping l2cap_chan_lock() function.
	 */
7256
	pchan = l2cap_global_fixed_chan(NULL, &hdev->bdaddr, hcon->type);
7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276
	while (pchan) {
		struct l2cap_chan *chan, *next;

		/* Client fixed channels should override server ones */
		if (__l2cap_get_chan_by_dcid(conn, pchan->scid))
			goto next;

		l2cap_chan_lock(pchan);
		chan = pchan->ops->new_connection(pchan);
		if (chan) {
			bacpy(&chan->src, &hcon->src);
			bacpy(&chan->dst, &hcon->dst);
			chan->src_type = bdaddr_type(hcon, hcon->src_type);
			chan->dst_type = dst_type;

			__l2cap_chan_add(conn, chan);
		}

		l2cap_chan_unlock(pchan);
next:
7277 7278
		next = l2cap_global_fixed_chan(pchan, &hdev->bdaddr,
					       hcon->type);
7279 7280 7281 7282
		l2cap_chan_put(pchan);
		pchan = next;
	}

7283
	l2cap_conn_ready(conn);
L
Linus Torvalds 已提交
7284 7285
}

7286
int l2cap_disconn_ind(struct hci_conn *hcon)
7287 7288 7289 7290 7291
{
	struct l2cap_conn *conn = hcon->l2cap_data;

	BT_DBG("hcon %p", hcon);

7292
	if (!conn)
7293
		return HCI_ERROR_REMOTE_USER_TERM;
7294 7295 7296
	return conn->disc_reason;
}

7297
void l2cap_disconn_cfm(struct hci_conn *hcon, u8 reason)
L
Linus Torvalds 已提交
7298 7299 7300
{
	BT_DBG("hcon %p reason %d", hcon, reason);

7301
	l2cap_conn_del(hcon, bt_to_errno(reason));
L
Linus Torvalds 已提交
7302 7303
}

7304
static inline void l2cap_check_encryption(struct l2cap_chan *chan, u8 encrypt)
7305
{
7306
	if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED)
7307 7308
		return;

7309
	if (encrypt == 0x00) {
7310
		if (chan->sec_level == BT_SECURITY_MEDIUM) {
7311
			__set_chan_timer(chan, L2CAP_ENC_TIMEOUT);
7312 7313
		} else if (chan->sec_level == BT_SECURITY_HIGH ||
			   chan->sec_level == BT_SECURITY_FIPS)
7314
			l2cap_chan_close(chan, ECONNREFUSED);
7315
	} else {
7316
		if (chan->sec_level == BT_SECURITY_MEDIUM)
7317
			__clear_chan_timer(chan);
7318 7319 7320
	}
}

7321
int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt)
L
Linus Torvalds 已提交
7322
{
7323
	struct l2cap_conn *conn = hcon->l2cap_data;
7324
	struct l2cap_chan *chan;
L
Linus Torvalds 已提交
7325

7326
	if (!conn)
L
Linus Torvalds 已提交
7327
		return 0;
7328

7329
	BT_DBG("conn %p status 0x%2.2x encrypt %u", conn, status, encrypt);
L
Linus Torvalds 已提交
7330

7331
	mutex_lock(&conn->chan_lock);
L
Linus Torvalds 已提交
7332

7333
	list_for_each_entry(chan, &conn->chan_l, list) {
7334
		l2cap_chan_lock(chan);
L
Linus Torvalds 已提交
7335

7336 7337
		BT_DBG("chan %p scid 0x%4.4x state %s", chan, chan->scid,
		       state_to_string(chan->state));
7338

7339
		if (chan->scid == L2CAP_CID_A2MP) {
7340 7341 7342 7343
			l2cap_chan_unlock(chan);
			continue;
		}

7344 7345
		if (!status && encrypt)
			chan->sec_level = hcon->sec_level;
7346

7347
		if (!__l2cap_no_conn_pending(chan)) {
7348
			l2cap_chan_unlock(chan);
7349 7350 7351
			continue;
		}

7352
		if (!status && (chan->state == BT_CONNECTED ||
7353
				chan->state == BT_CONFIG)) {
7354
			chan->ops->resume(chan);
7355
			l2cap_check_encryption(chan, encrypt);
7356
			l2cap_chan_unlock(chan);
7357 7358 7359
			continue;
		}

7360
		if (chan->state == BT_CONNECT) {
7361
			if (!status)
7362
				l2cap_start_connection(chan);
7363
			else
7364
				__set_chan_timer(chan, L2CAP_DISC_TIMEOUT);
7365 7366
		} else if (chan->state == BT_CONNECT2 &&
			   chan->mode != L2CAP_MODE_LE_FLOWCTL) {
7367
			struct l2cap_conn_rsp rsp;
7368
			__u16 res, stat;
L
Linus Torvalds 已提交
7369

7370
			if (!status) {
7371
				if (test_bit(FLAG_DEFER_SETUP, &chan->flags)) {
7372 7373
					res = L2CAP_CR_PEND;
					stat = L2CAP_CS_AUTHOR_PEND;
7374
					chan->ops->defer(chan);
7375
				} else {
7376
					l2cap_state_change(chan, BT_CONFIG);
7377 7378 7379
					res = L2CAP_CR_SUCCESS;
					stat = L2CAP_CS_NO_INFO;
				}
7380
			} else {
7381
				l2cap_state_change(chan, BT_DISCONN);
7382
				__set_chan_timer(chan, L2CAP_DISC_TIMEOUT);
7383 7384
				res = L2CAP_CR_SEC_BLOCK;
				stat = L2CAP_CS_NO_INFO;
7385 7386
			}

7387 7388
			rsp.scid   = cpu_to_le16(chan->dcid);
			rsp.dcid   = cpu_to_le16(chan->scid);
7389 7390
			rsp.result = cpu_to_le16(res);
			rsp.status = cpu_to_le16(stat);
7391
			l2cap_send_cmd(conn, chan->ident, L2CAP_CONN_RSP,
7392
				       sizeof(rsp), &rsp);
7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403

			if (!test_bit(CONF_REQ_SENT, &chan->conf_state) &&
			    res == L2CAP_CR_SUCCESS) {
				char buf[128];
				set_bit(CONF_REQ_SENT, &chan->conf_state);
				l2cap_send_cmd(conn, l2cap_get_ident(conn),
					       L2CAP_CONF_REQ,
					       l2cap_build_conf_req(chan, buf),
					       buf);
				chan->num_conf_req++;
			}
7404
		}
L
Linus Torvalds 已提交
7405

7406
		l2cap_chan_unlock(chan);
L
Linus Torvalds 已提交
7407 7408
	}

7409
	mutex_unlock(&conn->chan_lock);
7410

L
Linus Torvalds 已提交
7411 7412 7413
	return 0;
}

7414
int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags)
L
Linus Torvalds 已提交
7415 7416
{
	struct l2cap_conn *conn = hcon->l2cap_data;
7417 7418
	struct l2cap_hdr *hdr;
	int len;
L
Linus Torvalds 已提交
7419

7420 7421 7422
	/* For AMP controller do not create l2cap conn */
	if (!conn && hcon->hdev->dev_type != HCI_BREDR)
		goto drop;
L
Linus Torvalds 已提交
7423

7424
	if (!conn)
7425
		conn = l2cap_conn_add(hcon);
7426 7427

	if (!conn)
L
Linus Torvalds 已提交
7428 7429 7430 7431
		goto drop;

	BT_DBG("conn %p len %d flags 0x%x", conn, skb->len, flags);

7432 7433 7434 7435
	switch (flags) {
	case ACL_START:
	case ACL_START_NO_FLUSH:
	case ACL_COMPLETE:
L
Linus Torvalds 已提交
7436 7437 7438 7439 7440 7441 7442 7443
		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);
		}

7444 7445
		/* Start fragment always begin with Basic L2CAP header */
		if (skb->len < L2CAP_HDR_SIZE) {
L
Linus Torvalds 已提交
7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463
			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;

		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)",
7464
			       skb->len, len);
L
Linus Torvalds 已提交
7465 7466 7467 7468 7469
			l2cap_conn_unreliable(conn, ECOMM);
			goto drop;
		}

		/* Allocate skb for the complete frame (with header) */
7470
		conn->rx_skb = bt_skb_alloc(len, GFP_KERNEL);
7471
		if (!conn->rx_skb)
L
Linus Torvalds 已提交
7472 7473
			goto drop;

7474
		skb_copy_from_linear_data(skb, skb_put(conn->rx_skb, skb->len),
7475
					  skb->len);
L
Linus Torvalds 已提交
7476
		conn->rx_len = len - skb->len;
7477 7478 7479
		break;

	case ACL_CONT:
L
Linus Torvalds 已提交
7480 7481 7482 7483 7484 7485 7486 7487 7488 7489
		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)",
7490
			       skb->len, conn->rx_len);
L
Linus Torvalds 已提交
7491 7492 7493 7494 7495 7496 7497
			kfree_skb(conn->rx_skb);
			conn->rx_skb = NULL;
			conn->rx_len = 0;
			l2cap_conn_unreliable(conn, ECOMM);
			goto drop;
		}

7498
		skb_copy_from_linear_data(skb, skb_put(conn->rx_skb, skb->len),
7499
					  skb->len);
L
Linus Torvalds 已提交
7500 7501 7502
		conn->rx_len -= skb->len;

		if (!conn->rx_len) {
7503 7504 7505 7506 7507
			/* Complete frame received. l2cap_recv_frame
			 * takes ownership of the skb so set the global
			 * rx_skb pointer to NULL first.
			 */
			struct sk_buff *rx_skb = conn->rx_skb;
L
Linus Torvalds 已提交
7508
			conn->rx_skb = NULL;
7509
			l2cap_recv_frame(conn, rx_skb);
L
Linus Torvalds 已提交
7510
		}
7511
		break;
L
Linus Torvalds 已提交
7512 7513 7514 7515 7516 7517 7518
	}

drop:
	kfree_skb(skb);
	return 0;
}

7519
static int l2cap_debugfs_show(struct seq_file *f, void *p)
L
Linus Torvalds 已提交
7520
{
7521
	struct l2cap_chan *c;
L
Linus Torvalds 已提交
7522

7523
	read_lock(&chan_list_lock);
L
Linus Torvalds 已提交
7524

7525
	list_for_each_entry(c, &chan_list, global_l) {
7526
		seq_printf(f, "%pMR %pMR %d %d 0x%4.4x 0x%4.4x %d %d %d %d\n",
7527
			   &c->src, &c->dst,
7528 7529 7530
			   c->state, __le16_to_cpu(c->psm),
			   c->scid, c->dcid, c->imtu, c->omtu,
			   c->sec_level, c->mode);
7531
	}
L
Linus Torvalds 已提交
7532

7533
	read_unlock(&chan_list_lock);
L
Linus Torvalds 已提交
7534

7535
	return 0;
L
Linus Torvalds 已提交
7536 7537
}

7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550
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 已提交
7551

7552
int __init l2cap_init(void)
L
Linus Torvalds 已提交
7553 7554
{
	int err;
7555

7556
	err = l2cap_init_sockets();
L
Linus Torvalds 已提交
7557 7558 7559
	if (err < 0)
		return err;

7560 7561 7562 7563 7564
	if (IS_ERR_OR_NULL(bt_debugfs))
		return 0;

	l2cap_debugfs = debugfs_create_file("l2cap", 0444, bt_debugfs,
					    NULL, &l2cap_debugfs_fops);
L
Linus Torvalds 已提交
7565

7566
	debugfs_create_u16("l2cap_le_max_credits", 0644, bt_debugfs,
7567
			   &le_max_credits);
7568
	debugfs_create_u16("l2cap_le_default_mps", 0644, bt_debugfs,
7569 7570
			   &le_default_mps);

L
Linus Torvalds 已提交
7571 7572 7573
	return 0;
}

7574
void l2cap_exit(void)
L
Linus Torvalds 已提交
7575
{
7576
	debugfs_remove(l2cap_debugfs);
7577
	l2cap_cleanup_sockets();
L
Linus Torvalds 已提交
7578 7579
}

7580 7581
module_param(disable_ertm, bool, 0644);
MODULE_PARM_DESC(disable_ertm, "Disable enhanced retransmission mode");