sco.c 24.5 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2000-2001 Qualcomm Incorporated

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

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

/* Bluetooth SCO sockets. */

#include <linux/module.h>
28 29
#include <linux/debugfs.h>
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
30 31 32 33 34

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
#include <net/bluetooth/sco.h>

35
static bool disable_esco;
L
Linus Torvalds 已提交
36

37
static const struct proto_ops sco_sock_ops;
L
Linus Torvalds 已提交
38 39

static struct bt_sock_list sco_sk_list = {
40
	.lock = __RW_LOCK_UNLOCKED(sco_sk_list.lock)
L
Linus Torvalds 已提交
41 42
};

43 44 45 46 47 48 49 50 51 52 53 54 55
/* ---- SCO connections ---- */
struct sco_conn {
	struct hci_conn	*hcon;

	spinlock_t	lock;
	struct sock	*sk;

	unsigned int    mtu;
};

#define sco_conn_lock(c)	spin_lock(&c->lock);
#define sco_conn_unlock(c)	spin_unlock(&c->lock);

L
Linus Torvalds 已提交
56 57 58
static void sco_sock_close(struct sock *sk);
static void sco_sock_kill(struct sock *sk);

59 60 61 62 63 64 65 66 67 68 69 70
/* ----- SCO socket info ----- */
#define sco_pi(sk) ((struct sco_pinfo *) sk)

struct sco_pinfo {
	struct bt_sock	bt;
	bdaddr_t	src;
	bdaddr_t	dst;
	__u32		flags;
	__u16		setting;
	struct sco_conn	*conn;
};

L
Linus Torvalds 已提交
71
/* ---- SCO timers ---- */
72 73 74
#define SCO_CONN_TIMEOUT	(HZ * 40)
#define SCO_DISCONN_TIMEOUT	(HZ * 2)

L
Linus Torvalds 已提交
75 76
static void sco_sock_timeout(unsigned long arg)
{
77
	struct sock *sk = (struct sock *)arg;
L
Linus Torvalds 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

	BT_DBG("sock %p state %d", sk, sk->sk_state);

	bh_lock_sock(sk);
	sk->sk_err = ETIMEDOUT;
	sk->sk_state_change(sk);
	bh_unlock_sock(sk);

	sco_sock_kill(sk);
	sock_put(sk);
}

static void sco_sock_set_timer(struct sock *sk, long timeout)
{
	BT_DBG("sock %p state %d timeout %ld", sk, sk->sk_state, timeout);
	sk_reset_timer(sk, &sk->sk_timer, jiffies + timeout);
}

static void sco_sock_clear_timer(struct sock *sk)
{
	BT_DBG("sock %p state %d", sk, sk->sk_state);
	sk_stop_timer(sk, &sk->sk_timer);
}

/* ---- SCO connections ---- */
103
static struct sco_conn *sco_conn_add(struct hci_conn *hcon)
L
Linus Torvalds 已提交
104 105
{
	struct hci_dev *hdev = hcon->hdev;
106
	struct sco_conn *conn = hcon->sco_data;
L
Linus Torvalds 已提交
107

108
	if (conn)
L
Linus Torvalds 已提交
109 110
		return conn;

111
	conn = kzalloc(sizeof(struct sco_conn), GFP_KERNEL);
112
	if (!conn)
L
Linus Torvalds 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125
		return NULL;

	spin_lock_init(&conn->lock);

	hcon->sco_data = conn;
	conn->hcon = hcon;

	if (hdev->sco_mtu > 0)
		conn->mtu = hdev->sco_mtu;
	else
		conn->mtu = 60;

	BT_DBG("hcon %p conn %p", hcon, conn);
126

L
Linus Torvalds 已提交
127 128 129
	return conn;
}

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
/* Delete channel.
 * Must be called on the locked socket. */
static void sco_chan_del(struct sock *sk, int err)
{
	struct sco_conn *conn;

	conn = sco_pi(sk)->conn;

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

	if (conn) {
		sco_conn_lock(conn);
		conn->sk = NULL;
		sco_pi(sk)->conn = NULL;
		sco_conn_unlock(conn);

		if (conn->hcon)
			hci_conn_drop(conn->hcon);
	}

	sk->sk_state = BT_CLOSED;
	sk->sk_err   = err;
	sk->sk_state_change(sk);

	sock_set_flag(sk, SOCK_ZAPPED);
}

157
static void sco_conn_del(struct hci_conn *hcon, int err)
L
Linus Torvalds 已提交
158
{
A
Andrei Emeltchenko 已提交
159
	struct sco_conn *conn = hcon->sco_data;
L
Linus Torvalds 已提交
160 161
	struct sock *sk;

A
Andrei Emeltchenko 已提交
162
	if (!conn)
163
		return;
L
Linus Torvalds 已提交
164 165 166 167

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

	/* Kill socket */
168 169 170 171
	sco_conn_lock(conn);
	sk = conn->sk;
	sco_conn_unlock(conn);

A
Andrei Emeltchenko 已提交
172
	if (sk) {
173
		sock_hold(sk);
L
Linus Torvalds 已提交
174 175 176 177 178
		bh_lock_sock(sk);
		sco_sock_clear_timer(sk);
		sco_chan_del(sk, err);
		bh_unlock_sock(sk);
		sco_sock_kill(sk);
179
		sock_put(sk);
L
Linus Torvalds 已提交
180 181 182 183 184 185
	}

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

186 187
static void __sco_chan_add(struct sco_conn *conn, struct sock *sk,
			   struct sock *parent)
188 189 190 191 192 193 194 195 196 197
{
	BT_DBG("conn %p", conn);

	sco_pi(sk)->conn = conn;
	conn->sk = sk;

	if (parent)
		bt_accept_enqueue(parent, sk);
}

198 199
static int sco_chan_add(struct sco_conn *conn, struct sock *sk,
			struct sock *parent)
L
Linus Torvalds 已提交
200 201 202 203
{
	int err = 0;

	sco_conn_lock(conn);
204
	if (conn->sk)
L
Linus Torvalds 已提交
205
		err = -EBUSY;
206
	else
L
Linus Torvalds 已提交
207
		__sco_chan_add(conn, sk, parent);
208

L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217
	sco_conn_unlock(conn);
	return err;
}

static int sco_connect(struct sock *sk)
{
	struct sco_conn *conn;
	struct hci_conn *hcon;
	struct hci_dev  *hdev;
218
	int err, type;
L
Linus Torvalds 已提交
219

220
	BT_DBG("%pMR -> %pMR", &sco_pi(sk)->src, &sco_pi(sk)->dst);
L
Linus Torvalds 已提交
221

222
	hdev = hci_get_route(&sco_pi(sk)->dst, &sco_pi(sk)->src);
A
Andrei Emeltchenko 已提交
223
	if (!hdev)
L
Linus Torvalds 已提交
224 225
		return -EHOSTUNREACH;

226
	hci_dev_lock(hdev);
L
Linus Torvalds 已提交
227

228 229 230 231
	if (lmp_esco_capable(hdev) && !disable_esco)
		type = ESCO_LINK;
	else
		type = SCO_LINK;
232

233 234 235 236 237 238
	if (sco_pi(sk)->setting == BT_VOICE_TRANSPARENT &&
	    (!lmp_transp_capable(hdev) || !lmp_esco_capable(hdev))) {
		err = -EOPNOTSUPP;
		goto done;
	}

239
	hcon = hci_connect_sco(hdev, type, &sco_pi(sk)->dst,
240
			       sco_pi(sk)->setting);
241 242
	if (IS_ERR(hcon)) {
		err = PTR_ERR(hcon);
L
Linus Torvalds 已提交
243
		goto done;
244
	}
L
Linus Torvalds 已提交
245

246
	conn = sco_conn_add(hcon);
L
Linus Torvalds 已提交
247
	if (!conn) {
248
		hci_conn_drop(hcon);
249
		err = -ENOMEM;
L
Linus Torvalds 已提交
250 251 252 253
		goto done;
	}

	/* Update source addr of the socket */
254
	bacpy(&sco_pi(sk)->src, &hcon->src);
L
Linus Torvalds 已提交
255 256 257 258 259 260 261 262 263 264 265 266

	err = sco_chan_add(conn, sk, NULL);
	if (err)
		goto done;

	if (hcon->state == BT_CONNECTED) {
		sco_sock_clear_timer(sk);
		sk->sk_state = BT_CONNECTED;
	} else {
		sk->sk_state = BT_CONNECT;
		sco_sock_set_timer(sk, sk->sk_sndtimeo);
	}
267

L
Linus Torvalds 已提交
268
done:
269
	hci_dev_unlock(hdev);
L
Linus Torvalds 已提交
270 271 272 273
	hci_dev_put(hdev);
	return err;
}

274
static int sco_send_frame(struct sock *sk, struct msghdr *msg, int len)
L
Linus Torvalds 已提交
275 276 277
{
	struct sco_conn *conn = sco_pi(sk)->conn;
	struct sk_buff *skb;
278
	int err;
L
Linus Torvalds 已提交
279 280 281 282 283 284 285

	/* Check outgoing MTU */
	if (len > conn->mtu)
		return -EINVAL;

	BT_DBG("sk %p len %d", sk, len);

286
	skb = bt_skb_send_alloc(sk, len, msg->msg_flags & MSG_DONTWAIT, &err);
287
	if (!skb)
L
Linus Torvalds 已提交
288 289
		return err;

A
Al Viro 已提交
290
	if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
291 292
		kfree_skb(skb);
		return -EFAULT;
L
Linus Torvalds 已提交
293 294
	}

295
	hci_send_sco(conn->hcon, skb);
L
Linus Torvalds 已提交
296

297
	return len;
L
Linus Torvalds 已提交
298 299
}

300
static void sco_recv_frame(struct sco_conn *conn, struct sk_buff *skb)
L
Linus Torvalds 已提交
301
{
302 303 304 305 306
	struct sock *sk;

	sco_conn_lock(conn);
	sk = conn->sk;
	sco_conn_unlock(conn);
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323

	if (!sk)
		goto drop;

	BT_DBG("sk %p len %d", sk, skb->len);

	if (sk->sk_state != BT_CONNECTED)
		goto drop;

	if (!sock_queue_rcv_skb(sk, skb))
		return;

drop:
	kfree_skb(skb);
}

/* -------- Socket interface ---------- */
324
static struct sock *__sco_get_sock_listen_by_addr(bdaddr_t *ba)
L
Linus Torvalds 已提交
325
{
326 327
	struct sock *sk;

328
	sk_for_each(sk, &sco_sk_list.head) {
329 330
		if (sk->sk_state != BT_LISTEN)
			continue;
L
Linus Torvalds 已提交
331

332
		if (!bacmp(&sco_pi(sk)->src, ba))
333 334 335 336
			return sk;
	}

	return NULL;
L
Linus Torvalds 已提交
337 338 339 340 341 342 343 344 345 346 347
}

/* Find socket listening on source bdaddr.
 * Returns closest match.
 */
static struct sock *sco_get_sock_listen(bdaddr_t *src)
{
	struct sock *sk = NULL, *sk1 = NULL;

	read_lock(&sco_sk_list.lock);

348
	sk_for_each(sk, &sco_sk_list.head) {
L
Linus Torvalds 已提交
349 350 351 352
		if (sk->sk_state != BT_LISTEN)
			continue;

		/* Exact match. */
353
		if (!bacmp(&sco_pi(sk)->src, src))
L
Linus Torvalds 已提交
354 355 356
			break;

		/* Closest match */
357
		if (!bacmp(&sco_pi(sk)->src, BDADDR_ANY))
L
Linus Torvalds 已提交
358 359 360 361 362
			sk1 = sk;
	}

	read_unlock(&sco_sk_list.lock);

363
	return sk ? sk : sk1;
L
Linus Torvalds 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
}

static void sco_sock_destruct(struct sock *sk)
{
	BT_DBG("sk %p", sk);

	skb_queue_purge(&sk->sk_receive_queue);
	skb_queue_purge(&sk->sk_write_queue);
}

static void sco_sock_cleanup_listen(struct sock *parent)
{
	struct sock *sk;

	BT_DBG("parent %p", parent);

	/* Close not yet accepted channels */
	while ((sk = bt_accept_dequeue(parent, NULL))) {
		sco_sock_close(sk);
		sco_sock_kill(sk);
	}

	parent->sk_state  = BT_CLOSED;
	sock_set_flag(parent, SOCK_ZAPPED);
}

/* Kill socket (only if zapped and orphan)
 * Must be called on unlocked socket.
 */
static void sco_sock_kill(struct sock *sk)
{
	if (!sock_flag(sk, SOCK_ZAPPED) || sk->sk_socket)
		return;

	BT_DBG("sk %p state %d", sk, sk->sk_state);

	/* Kill poor orphan */
	bt_sock_unlink(&sco_sk_list, sk);
	sock_set_flag(sk, SOCK_DEAD);
	sock_put(sk);
}

406
static void __sco_sock_close(struct sock *sk)
L
Linus Torvalds 已提交
407
{
408
	BT_DBG("sk %p state %d socket %p", sk, sk->sk_state, sk->sk_socket);
L
Linus Torvalds 已提交
409 410 411 412 413 414 415 416

	switch (sk->sk_state) {
	case BT_LISTEN:
		sco_sock_cleanup_listen(sk);
		break;

	case BT_CONNECTED:
	case BT_CONFIG:
417
		if (sco_pi(sk)->conn->hcon) {
418 419
			sk->sk_state = BT_DISCONN;
			sco_sock_set_timer(sk, SCO_DISCONN_TIMEOUT);
420
			sco_conn_lock(sco_pi(sk)->conn);
421
			hci_conn_drop(sco_pi(sk)->conn->hcon);
422
			sco_pi(sk)->conn->hcon = NULL;
423
			sco_conn_unlock(sco_pi(sk)->conn);
424 425 426 427
		} else
			sco_chan_del(sk, ECONNRESET);
		break;

428
	case BT_CONNECT2:
L
Linus Torvalds 已提交
429 430 431 432 433 434 435 436
	case BT_CONNECT:
	case BT_DISCONN:
		sco_chan_del(sk, ECONNRESET);
		break;

	default:
		sock_set_flag(sk, SOCK_ZAPPED);
		break;
437
	}
438
}
L
Linus Torvalds 已提交
439

440 441 442 443 444 445
/* Must be called on unlocked socket. */
static void sco_sock_close(struct sock *sk)
{
	sco_sock_clear_timer(sk);
	lock_sock(sk);
	__sco_sock_close(sk);
L
Linus Torvalds 已提交
446 447 448 449 450 451 452 453
	release_sock(sk);
	sco_sock_kill(sk);
}

static void sco_sock_init(struct sock *sk, struct sock *parent)
{
	BT_DBG("sk %p", sk);

454
	if (parent) {
L
Linus Torvalds 已提交
455
		sk->sk_type = parent->sk_type;
456
		bt_sk(sk)->flags = bt_sk(parent)->flags;
457 458
		security_sk_clone(parent, sk);
	}
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466
}

static struct proto sco_proto = {
	.name		= "SCO",
	.owner		= THIS_MODULE,
	.obj_size	= sizeof(struct sco_pinfo)
};

467 468
static struct sock *sco_sock_alloc(struct net *net, struct socket *sock,
				   int proto, gfp_t prio, int kern)
L
Linus Torvalds 已提交
469 470 471
{
	struct sock *sk;

472
	sk = sk_alloc(net, PF_BLUETOOTH, prio, &sco_proto, kern);
L
Linus Torvalds 已提交
473 474 475 476 477 478 479 480 481 482 483 484 485 486
	if (!sk)
		return NULL;

	sock_init_data(sock, sk);
	INIT_LIST_HEAD(&bt_sk(sk)->accept_q);

	sk->sk_destruct = sco_sock_destruct;
	sk->sk_sndtimeo = SCO_CONN_TIMEOUT;

	sock_reset_flag(sk, SOCK_ZAPPED);

	sk->sk_protocol = proto;
	sk->sk_state    = BT_OPEN;

487 488
	sco_pi(sk)->setting = BT_VOICE_CVSD_16BIT;

489
	setup_timer(&sk->sk_timer, sco_sock_timeout, (unsigned long)sk);
L
Linus Torvalds 已提交
490 491 492 493 494

	bt_sock_link(&sco_sk_list, sk);
	return sk;
}

495 496
static int sco_sock_create(struct net *net, struct socket *sock, int protocol,
			   int kern)
L
Linus Torvalds 已提交
497 498 499 500 501 502 503 504 505 506 507 508
{
	struct sock *sk;

	BT_DBG("sock %p", sock);

	sock->state = SS_UNCONNECTED;

	if (sock->type != SOCK_SEQPACKET)
		return -ESOCKTNOSUPPORT;

	sock->ops = &sco_sock_ops;

509
	sk = sco_sock_alloc(net, sock, protocol, GFP_ATOMIC, kern);
510
	if (!sk)
L
Linus Torvalds 已提交
511 512 513 514 515 516
		return -ENOMEM;

	sco_sock_init(sk, NULL);
	return 0;
}

517 518
static int sco_sock_bind(struct socket *sock, struct sockaddr *addr,
			 int addr_len)
L
Linus Torvalds 已提交
519 520 521 522 523
{
	struct sockaddr_sco *sa = (struct sockaddr_sco *) addr;
	struct sock *sk = sock->sk;
	int err = 0;

524
	BT_DBG("sk %p %pMR", sk, &sa->sco_bdaddr);
L
Linus Torvalds 已提交
525 526 527 528 529 530 531 532 533 534 535

	if (!addr || addr->sa_family != AF_BLUETOOTH)
		return -EINVAL;

	lock_sock(sk);

	if (sk->sk_state != BT_OPEN) {
		err = -EBADFD;
		goto done;
	}

536 537 538
	if (sk->sk_type != SOCK_SEQPACKET) {
		err = -EINVAL;
		goto done;
L
Linus Torvalds 已提交
539 540
	}

541
	bacpy(&sco_pi(sk)->src, &sa->sco_bdaddr);
542 543

	sk->sk_state = BT_BOUND;
L
Linus Torvalds 已提交
544 545 546 547 548 549 550 551 552 553

done:
	release_sock(sk);
	return err;
}

static int sco_sock_connect(struct socket *sock, struct sockaddr *addr, int alen, int flags)
{
	struct sockaddr_sco *sa = (struct sockaddr_sco *) addr;
	struct sock *sk = sock->sk;
554
	int err;
L
Linus Torvalds 已提交
555 556 557

	BT_DBG("sk %p", sk);

558 559
	if (alen < sizeof(struct sockaddr_sco) ||
	    addr->sa_family != AF_BLUETOOTH)
L
Linus Torvalds 已提交
560 561 562 563 564 565 566 567 568 569 570
		return -EINVAL;

	if (sk->sk_state != BT_OPEN && sk->sk_state != BT_BOUND)
		return -EBADFD;

	if (sk->sk_type != SOCK_SEQPACKET)
		return -EINVAL;

	lock_sock(sk);

	/* Set destination address and psm */
571
	bacpy(&sco_pi(sk)->dst, &sa->sco_bdaddr);
L
Linus Torvalds 已提交
572

A
Andrei Emeltchenko 已提交
573 574
	err = sco_connect(sk);
	if (err)
L
Linus Torvalds 已提交
575 576
		goto done;

577
	err = bt_sock_wait_state(sk, BT_CONNECTED,
578
				 sock_sndtimeo(sk, flags & O_NONBLOCK));
L
Linus Torvalds 已提交
579 580 581 582 583 584 585 586 587

done:
	release_sock(sk);
	return err;
}

static int sco_sock_listen(struct socket *sock, int backlog)
{
	struct sock *sk = sock->sk;
588
	bdaddr_t *src = &sco_pi(sk)->src;
L
Linus Torvalds 已提交
589 590 591 592 593 594
	int err = 0;

	BT_DBG("sk %p backlog %d", sk, backlog);

	lock_sock(sk);

595
	if (sk->sk_state != BT_BOUND) {
L
Linus Torvalds 已提交
596 597 598 599
		err = -EBADFD;
		goto done;
	}

600 601 602 603 604
	if (sk->sk_type != SOCK_SEQPACKET) {
		err = -EINVAL;
		goto done;
	}

605 606 607 608 609 610 611
	write_lock(&sco_sk_list.lock);

	if (__sco_get_sock_listen_by_addr(src)) {
		err = -EADDRINUSE;
		goto unlock;
	}

L
Linus Torvalds 已提交
612 613
	sk->sk_max_ack_backlog = backlog;
	sk->sk_ack_backlog = 0;
614

L
Linus Torvalds 已提交
615 616
	sk->sk_state = BT_LISTEN;

617 618 619
unlock:
	write_unlock(&sco_sk_list.lock);

L
Linus Torvalds 已提交
620 621 622 623 624
done:
	release_sock(sk);
	return err;
}

625 626
static int sco_sock_accept(struct socket *sock, struct socket *newsock,
			   int flags)
L
Linus Torvalds 已提交
627
{
P
Peter Hurley 已提交
628
	DEFINE_WAIT_FUNC(wait, woken_wake_function);
L
Linus Torvalds 已提交
629 630 631 632 633 634 635 636 637 638 639
	struct sock *sk = sock->sk, *ch;
	long timeo;
	int err = 0;

	lock_sock(sk);

	timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);

	BT_DBG("sk %p timeo %ld", sk, timeo);

	/* Wait for an incoming connection. (wake-one). */
E
Eric Dumazet 已提交
640
	add_wait_queue_exclusive(sk_sleep(sk), &wait);
641 642 643
	while (1) {
		if (sk->sk_state != BT_LISTEN) {
			err = -EBADFD;
L
Linus Torvalds 已提交
644 645 646
			break;
		}

647 648 649
		ch = bt_accept_dequeue(sk, newsock);
		if (ch)
			break;
L
Linus Torvalds 已提交
650

651 652
		if (!timeo) {
			err = -EAGAIN;
L
Linus Torvalds 已提交
653 654 655 656 657 658 659
			break;
		}

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

		release_sock(sk);
P
Peter Hurley 已提交
662 663

		timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo);
664
		lock_sock(sk);
L
Linus Torvalds 已提交
665
	}
E
Eric Dumazet 已提交
666
	remove_wait_queue(sk_sleep(sk), &wait);
L
Linus Torvalds 已提交
667 668 669 670 671 672 673 674 675 676 677 678 679

	if (err)
		goto done;

	newsock->state = SS_CONNECTED;

	BT_DBG("new socket %p", ch);

done:
	release_sock(sk);
	return err;
}

680 681
static int sco_sock_getname(struct socket *sock, struct sockaddr *addr,
			    int *len, int peer)
L
Linus Torvalds 已提交
682 683 684 685 686 687 688 689 690 691
{
	struct sockaddr_sco *sa = (struct sockaddr_sco *) addr;
	struct sock *sk = sock->sk;

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

	addr->sa_family = AF_BLUETOOTH;
	*len = sizeof(struct sockaddr_sco);

	if (peer)
692
		bacpy(&sa->sco_bdaddr, &sco_pi(sk)->dst);
L
Linus Torvalds 已提交
693
	else
694
		bacpy(&sa->sco_bdaddr, &sco_pi(sk)->src);
L
Linus Torvalds 已提交
695 696 697 698

	return 0;
}

699 700
static int sco_sock_sendmsg(struct socket *sock, struct msghdr *msg,
			    size_t len)
L
Linus Torvalds 已提交
701 702
{
	struct sock *sk = sock->sk;
703
	int err;
L
Linus Torvalds 已提交
704 705 706

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

707 708 709
	err = sock_error(sk);
	if (err)
		return err;
L
Linus Torvalds 已提交
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724

	if (msg->msg_flags & MSG_OOB)
		return -EOPNOTSUPP;

	lock_sock(sk);

	if (sk->sk_state == BT_CONNECTED)
		err = sco_send_frame(sk, msg, len);
	else
		err = -ENOTCONN;

	release_sock(sk);
	return err;
}

725
static void sco_conn_defer_accept(struct hci_conn *conn, u16 setting)
726 727 728 729 730 731 732 733 734 735 736
{
	struct hci_dev *hdev = conn->hdev;

	BT_DBG("conn %p", conn);

	conn->state = BT_CONFIG;

	if (!lmp_esco_capable(hdev)) {
		struct hci_cp_accept_conn_req cp;

		bacpy(&cp.bdaddr, &conn->dst);
737
		cp.role = 0x00; /* Ignored */
738 739 740 741 742 743 744 745

		hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp), &cp);
	} else {
		struct hci_cp_accept_sync_conn_req cp;

		bacpy(&cp.bdaddr, &conn->dst);
		cp.pkt_type = cpu_to_le16(conn->pkt_type);

746 747
		cp.tx_bandwidth   = cpu_to_le32(0x00001f40);
		cp.rx_bandwidth   = cpu_to_le32(0x00001f40);
748 749 750 751 752
		cp.content_format = cpu_to_le16(setting);

		switch (setting & SCO_AIRMODE_MASK) {
		case SCO_AIRMODE_TRANSP:
			if (conn->pkt_type & ESCO_2EV3)
753
				cp.max_latency = cpu_to_le16(0x0008);
754
			else
755
				cp.max_latency = cpu_to_le16(0x000D);
756 757 758
			cp.retrans_effort = 0x02;
			break;
		case SCO_AIRMODE_CVSD:
759
			cp.max_latency = cpu_to_le16(0xffff);
760 761 762
			cp.retrans_effort = 0xff;
			break;
		}
763 764 765 766 767 768

		hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
			     sizeof(cp), &cp);
	}
}

769 770
static int sco_sock_recvmsg(struct socket *sock, struct msghdr *msg,
			    size_t len, int flags)
771 772 773 774 775 776 777 778
{
	struct sock *sk = sock->sk;
	struct sco_pinfo *pi = sco_pi(sk);

	lock_sock(sk);

	if (sk->sk_state == BT_CONNECT2 &&
	    test_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags)) {
779
		sco_conn_defer_accept(pi->conn->hcon, pi->setting);
780 781 782 783 784 785 786 787
		sk->sk_state = BT_CONFIG;

		release_sock(sk);
		return 0;
	}

	release_sock(sk);

788
	return bt_sock_recvmsg(sock, msg, len, flags);
789 790
}

791 792
static int sco_sock_setsockopt(struct socket *sock, int level, int optname,
			       char __user *optval, unsigned int optlen)
L
Linus Torvalds 已提交
793 794
{
	struct sock *sk = sock->sk;
795 796
	int len, err = 0;
	struct bt_voice voice;
797
	u32 opt;
L
Linus Torvalds 已提交
798 799 800 801 802 803

	BT_DBG("sk %p", sk);

	lock_sock(sk);

	switch (optname) {
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821

	case BT_DEFER_SETUP:
		if (sk->sk_state != BT_BOUND && sk->sk_state != BT_LISTEN) {
			err = -EINVAL;
			break;
		}

		if (get_user(opt, (u32 __user *) optval)) {
			err = -EFAULT;
			break;
		}

		if (opt)
			set_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags);
		else
			clear_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags);
		break;

822 823 824 825 826 827 828 829 830 831
	case BT_VOICE:
		if (sk->sk_state != BT_OPEN && sk->sk_state != BT_BOUND &&
		    sk->sk_state != BT_CONNECT2) {
			err = -EINVAL;
			break;
		}

		voice.setting = sco_pi(sk)->setting;

		len = min_t(unsigned int, sizeof(voice), optlen);
832
		if (copy_from_user((char *)&voice, optval, len)) {
833 834 835 836 837 838 839 840 841 842 843 844 845 846
			err = -EFAULT;
			break;
		}

		/* Explicitly check for these values */
		if (voice.setting != BT_VOICE_TRANSPARENT &&
		    voice.setting != BT_VOICE_CVSD_16BIT) {
			err = -EINVAL;
			break;
		}

		sco_pi(sk)->setting = voice.setting;
		break;

L
Linus Torvalds 已提交
847 848 849 850 851 852 853 854 855
	default:
		err = -ENOPROTOOPT;
		break;
	}

	release_sock(sk);
	return err;
}

856 857
static int sco_sock_getsockopt_old(struct socket *sock, int optname,
				   char __user *optval, int __user *optlen)
L
Linus Torvalds 已提交
858 859 860 861
{
	struct sock *sk = sock->sk;
	struct sco_options opts;
	struct sco_conninfo cinfo;
862
	int len, err = 0;
L
Linus Torvalds 已提交
863 864 865 866 867 868 869 870 871 872

	BT_DBG("sk %p", sk);

	if (get_user(len, optlen))
		return -EFAULT;

	lock_sock(sk);

	switch (optname) {
	case SCO_OPTIONS:
873 874 875
		if (sk->sk_state != BT_CONNECTED &&
		    !(sk->sk_state == BT_CONNECT2 &&
		      test_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags))) {
L
Linus Torvalds 已提交
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
			err = -ENOTCONN;
			break;
		}

		opts.mtu = sco_pi(sk)->conn->mtu;

		BT_DBG("mtu %d", opts.mtu);

		len = min_t(unsigned int, len, sizeof(opts));
		if (copy_to_user(optval, (char *)&opts, len))
			err = -EFAULT;

		break;

	case SCO_CONNINFO:
891 892 893
		if (sk->sk_state != BT_CONNECTED &&
		    !(sk->sk_state == BT_CONNECT2 &&
		      test_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags))) {
L
Linus Torvalds 已提交
894 895 896 897
			err = -ENOTCONN;
			break;
		}

898
		memset(&cinfo, 0, sizeof(cinfo));
L
Linus Torvalds 已提交
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
		cinfo.hci_handle = sco_pi(sk)->conn->hcon->handle;
		memcpy(cinfo.dev_class, sco_pi(sk)->conn->hcon->dev_class, 3);

		len = min_t(unsigned int, len, sizeof(cinfo));
		if (copy_to_user(optval, (char *)&cinfo, len))
			err = -EFAULT;

		break;

	default:
		err = -ENOPROTOOPT;
		break;
	}

	release_sock(sk);
	return err;
}

917 918
static int sco_sock_getsockopt(struct socket *sock, int level, int optname,
			       char __user *optval, int __user *optlen)
919 920 921
{
	struct sock *sk = sock->sk;
	int len, err = 0;
922
	struct bt_voice voice;
923 924 925 926 927 928 929 930 931 932 933 934

	BT_DBG("sk %p", sk);

	if (level == SOL_SCO)
		return sco_sock_getsockopt_old(sock, optname, optval, optlen);

	if (get_user(len, optlen))
		return -EFAULT;

	lock_sock(sk);

	switch (optname) {
935 936 937 938 939 940 941 942

	case BT_DEFER_SETUP:
		if (sk->sk_state != BT_BOUND && sk->sk_state != BT_LISTEN) {
			err = -EINVAL;
			break;
		}

		if (put_user(test_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags),
943
			     (u32 __user *)optval))
944 945 946 947
			err = -EFAULT;

		break;

948 949 950 951 952 953 954 955 956
	case BT_VOICE:
		voice.setting = sco_pi(sk)->setting;

		len = min_t(unsigned int, len, sizeof(voice));
		if (copy_to_user(optval, (char *)&voice, len))
			err = -EFAULT;

		break;

957 958 959 960 961 962 963 964 965
	default:
		err = -ENOPROTOOPT;
		break;
	}

	release_sock(sk);
	return err;
}

966 967 968 969 970 971 972 973 974 975
static int sco_sock_shutdown(struct socket *sock, int how)
{
	struct sock *sk = sock->sk;
	int err = 0;

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

	if (!sk)
		return 0;

976
	sock_hold(sk);
977
	lock_sock(sk);
978

979 980 981 982 983
	if (!sk->sk_shutdown) {
		sk->sk_shutdown = SHUTDOWN_MASK;
		sco_sock_clear_timer(sk);
		__sco_sock_close(sk);

984 985
		if (sock_flag(sk, SOCK_LINGER) && sk->sk_lingertime &&
		    !(current->flags & PF_EXITING))
986
			err = bt_sock_wait_state(sk, BT_CLOSED,
987
						 sk->sk_lingertime);
988
	}
989

990
	release_sock(sk);
991 992
	sock_put(sk);

993 994 995
	return err;
}

L
Linus Torvalds 已提交
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
static int sco_sock_release(struct socket *sock)
{
	struct sock *sk = sock->sk;
	int err = 0;

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

	if (!sk)
		return 0;

	sco_sock_close(sk);

1008 1009
	if (sock_flag(sk, SOCK_LINGER) && sk->sk_lingertime &&
	    !(current->flags & PF_EXITING)) {
L
Linus Torvalds 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
		lock_sock(sk);
		err = bt_sock_wait_state(sk, BT_CLOSED, sk->sk_lingertime);
		release_sock(sk);
	}

	sock_orphan(sk);
	sco_sock_kill(sk);
	return err;
}

static void sco_conn_ready(struct sco_conn *conn)
{
A
Andrei Emeltchenko 已提交
1022 1023
	struct sock *parent;
	struct sock *sk = conn->sk;
L
Linus Torvalds 已提交
1024 1025 1026

	BT_DBG("conn %p", conn);

A
Andrei Emeltchenko 已提交
1027
	if (sk) {
L
Linus Torvalds 已提交
1028 1029 1030 1031 1032 1033
		sco_sock_clear_timer(sk);
		bh_lock_sock(sk);
		sk->sk_state = BT_CONNECTED;
		sk->sk_state_change(sk);
		bh_unlock_sock(sk);
	} else {
1034 1035
		sco_conn_lock(conn);

1036
		parent = sco_get_sock_listen(&conn->hcon->src);
1037 1038 1039 1040
		if (!parent) {
			sco_conn_unlock(conn);
			return;
		}
L
Linus Torvalds 已提交
1041 1042 1043

		bh_lock_sock(parent);

1044
		sk = sco_sock_alloc(sock_net(parent), NULL,
1045
				    BTPROTO_SCO, GFP_ATOMIC, 0);
L
Linus Torvalds 已提交
1046 1047
		if (!sk) {
			bh_unlock_sock(parent);
1048 1049
			sco_conn_unlock(conn);
			return;
L
Linus Torvalds 已提交
1050 1051 1052 1053
		}

		sco_sock_init(sk, parent);

1054 1055
		bacpy(&sco_pi(sk)->src, &conn->hcon->src);
		bacpy(&sco_pi(sk)->dst, &conn->hcon->dst);
L
Linus Torvalds 已提交
1056 1057 1058 1059

		hci_conn_hold(conn->hcon);
		__sco_chan_add(conn, sk, parent);

1060 1061 1062 1063
		if (test_bit(BT_SK_DEFER_SETUP, &bt_sk(parent)->flags))
			sk->sk_state = BT_CONNECT2;
		else
			sk->sk_state = BT_CONNECTED;
L
Linus Torvalds 已提交
1064 1065

		/* Wake up parent */
1066
		parent->sk_data_ready(parent);
L
Linus Torvalds 已提交
1067 1068 1069

		bh_unlock_sock(parent);

1070 1071
		sco_conn_unlock(conn);
	}
L
Linus Torvalds 已提交
1072 1073 1074
}

/* ----- SCO interface with lower layer (HCI) ----- */
1075
int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 *flags)
L
Linus Torvalds 已提交
1076
{
1077
	struct sock *sk;
1078 1079
	int lm = 0;

1080
	BT_DBG("hdev %s, bdaddr %pMR", hdev->name, bdaddr);
L
Linus Torvalds 已提交
1081

1082 1083
	/* Find listening sockets */
	read_lock(&sco_sk_list.lock);
1084
	sk_for_each(sk, &sco_sk_list.head) {
1085 1086 1087
		if (sk->sk_state != BT_LISTEN)
			continue;

1088 1089
		if (!bacmp(&sco_pi(sk)->src, &hdev->bdaddr) ||
		    !bacmp(&sco_pi(sk)->src, BDADDR_ANY)) {
1090
			lm |= HCI_LM_ACCEPT;
1091 1092 1093

			if (test_bit(BT_SK_DEFER_SETUP, &bt_sk(sk)->flags))
				*flags |= HCI_PROTO_DEFER;
1094 1095 1096 1097 1098 1099
			break;
		}
	}
	read_unlock(&sco_sk_list.lock);

	return lm;
L
Linus Torvalds 已提交
1100 1101
}

1102
static void sco_connect_cfm(struct hci_conn *hcon, __u8 status)
L
Linus Torvalds 已提交
1103
{
1104 1105 1106
	if (hcon->type != SCO_LINK && hcon->type != ESCO_LINK)
		return;

1107
	BT_DBG("hcon %p bdaddr %pMR status %d", hcon, &hcon->dst, status);
1108

L
Linus Torvalds 已提交
1109 1110 1111
	if (!status) {
		struct sco_conn *conn;

1112
		conn = sco_conn_add(hcon);
L
Linus Torvalds 已提交
1113 1114
		if (conn)
			sco_conn_ready(conn);
1115
	} else
1116
		sco_conn_del(hcon, bt_to_errno(status));
L
Linus Torvalds 已提交
1117 1118
}

1119
static void sco_disconn_cfm(struct hci_conn *hcon, __u8 reason)
L
Linus Torvalds 已提交
1120
{
1121 1122 1123
	if (hcon->type != SCO_LINK && hcon->type != ESCO_LINK)
		return;

L
Linus Torvalds 已提交
1124 1125
	BT_DBG("hcon %p reason %d", hcon, reason);

1126
	sco_conn_del(hcon, bt_to_errno(reason));
L
Linus Torvalds 已提交
1127 1128
}

1129
void sco_recv_scodata(struct hci_conn *hcon, struct sk_buff *skb)
L
Linus Torvalds 已提交
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
{
	struct sco_conn *conn = hcon->sco_data;

	if (!conn)
		goto drop;

	BT_DBG("conn %p len %d", conn, skb->len);

	if (skb->len) {
		sco_recv_frame(conn, skb);
1140
		return;
L
Linus Torvalds 已提交
1141 1142 1143
	}

drop:
1144
	kfree_skb(skb);
L
Linus Torvalds 已提交
1145 1146
}

1147 1148 1149
static struct hci_cb sco_cb = {
	.name		= "SCO",
	.connect_cfm	= sco_connect_cfm,
1150
	.disconn_cfm	= sco_disconn_cfm,
1151 1152
};

1153
static int sco_debugfs_show(struct seq_file *f, void *p)
L
Linus Torvalds 已提交
1154 1155 1156
{
	struct sock *sk;

1157
	read_lock(&sco_sk_list.lock);
L
Linus Torvalds 已提交
1158

1159
	sk_for_each(sk, &sco_sk_list.head) {
1160 1161
		seq_printf(f, "%pMR %pMR %d\n", &sco_pi(sk)->src,
			   &sco_pi(sk)->dst, sk->sk_state);
1162
	}
L
Linus Torvalds 已提交
1163

1164
	read_unlock(&sco_sk_list.lock);
L
Linus Torvalds 已提交
1165

1166
	return 0;
L
Linus Torvalds 已提交
1167 1168
}

1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
static int sco_debugfs_open(struct inode *inode, struct file *file)
{
	return single_open(file, sco_debugfs_show, inode->i_private);
}

static const struct file_operations sco_debugfs_fops = {
	.open		= sco_debugfs_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static struct dentry *sco_debugfs;
L
Linus Torvalds 已提交
1182

1183
static const struct proto_ops sco_sock_ops = {
L
Linus Torvalds 已提交
1184 1185 1186 1187 1188 1189 1190 1191 1192
	.family		= PF_BLUETOOTH,
	.owner		= THIS_MODULE,
	.release	= sco_sock_release,
	.bind		= sco_sock_bind,
	.connect	= sco_sock_connect,
	.listen		= sco_sock_listen,
	.accept		= sco_sock_accept,
	.getname	= sco_sock_getname,
	.sendmsg	= sco_sock_sendmsg,
1193
	.recvmsg	= sco_sock_recvmsg,
L
Linus Torvalds 已提交
1194
	.poll		= bt_sock_poll,
1195
	.ioctl		= bt_sock_ioctl,
L
Linus Torvalds 已提交
1196 1197
	.mmap		= sock_no_mmap,
	.socketpair	= sock_no_socketpair,
1198
	.shutdown	= sco_sock_shutdown,
L
Linus Torvalds 已提交
1199 1200 1201 1202
	.setsockopt	= sco_sock_setsockopt,
	.getsockopt	= sco_sock_getsockopt
};

1203
static const struct net_proto_family sco_sock_family_ops = {
L
Linus Torvalds 已提交
1204 1205 1206 1207 1208
	.family	= PF_BLUETOOTH,
	.owner	= THIS_MODULE,
	.create	= sco_sock_create,
};

1209
int __init sco_init(void)
L
Linus Torvalds 已提交
1210 1211 1212
{
	int err;

1213 1214
	BUILD_BUG_ON(sizeof(struct sockaddr_sco) > sizeof(struct sockaddr));

L
Linus Torvalds 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
	err = proto_register(&sco_proto, 0);
	if (err < 0)
		return err;

	err = bt_sock_register(BTPROTO_SCO, &sco_sock_family_ops);
	if (err < 0) {
		BT_ERR("SCO socket registration failed");
		goto error;
	}

1225
	err = bt_procfs_init(&init_net, "sco", &sco_sk_list, NULL);
1226 1227 1228 1229 1230 1231
	if (err < 0) {
		BT_ERR("Failed to create SCO proc file");
		bt_sock_unregister(BTPROTO_SCO);
		goto error;
	}

L
Linus Torvalds 已提交
1232 1233
	BT_INFO("SCO socket layer initialized");

1234 1235
	hci_register_cb(&sco_cb);

1236 1237 1238 1239 1240 1241
	if (IS_ERR_OR_NULL(bt_debugfs))
		return 0;

	sco_debugfs = debugfs_create_file("sco", 0444, bt_debugfs,
					  NULL, &sco_debugfs_fops);

L
Linus Torvalds 已提交
1242 1243 1244 1245 1246 1247 1248
	return 0;

error:
	proto_unregister(&sco_proto);
	return err;
}

1249
void sco_exit(void)
L
Linus Torvalds 已提交
1250
{
1251 1252
	bt_procfs_cleanup(&init_net, "sco");

1253
	debugfs_remove(sco_debugfs);
L
Linus Torvalds 已提交
1254

1255 1256
	hci_unregister_cb(&sco_cb);

1257
	bt_sock_unregister(BTPROTO_SCO);
L
Linus Torvalds 已提交
1258 1259 1260 1261

	proto_unregister(&sco_proto);
}

1262 1263
module_param(disable_esco, bool, 0644);
MODULE_PARM_DESC(disable_esco, "Disable eSCO connection creation");