/* BlueZ - Bluetooth protocol stack for Linux Copyright (C) 2000-2001 Qualcomm Incorporated Written 2000,2001 by Maxim Krasnyansky 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 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 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS SOFTWARE IS DISCLAIMED. */ /* * BlueZ Bluetooth address family and sockets. * * $Id: af_bluetooth.c,v 1.8 2002/07/22 20:32:54 maxk Exp $ */ #define VERSION "2.4" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(CONFIG_KMOD) #include #endif #include #ifndef AF_BLUETOOTH_DEBUG #undef BT_DBG #define BT_DBG( A... ) #endif /* Bluetooth sockets */ #define BLUEZ_MAX_PROTO 7 static struct net_proto_family *bluez_proto[BLUEZ_MAX_PROTO]; int bluez_sock_register(int proto, struct net_proto_family *ops) { if (proto >= BLUEZ_MAX_PROTO) return -EINVAL; if (bluez_proto[proto]) return -EEXIST; bluez_proto[proto] = ops; return 0; } int bluez_sock_unregister(int proto) { if (proto >= BLUEZ_MAX_PROTO) return -EINVAL; if (!bluez_proto[proto]) return -ENOENT; bluez_proto[proto] = NULL; return 0; } static int bluez_sock_create(struct socket *sock, int proto) { if (proto >= BLUEZ_MAX_PROTO) return -EINVAL; #if defined(CONFIG_KMOD) if (!bluez_proto[proto]) { char module_name[30]; sprintf(module_name, "bt-proto-%d", proto); request_module(module_name); } #endif if (!bluez_proto[proto]) return -ENOENT; return bluez_proto[proto]->create(sock, proto); } void bluez_sock_init(struct socket *sock, struct sock *sk) { sock_init_data(sock, sk); INIT_LIST_HEAD(&bluez_pi(sk)->accept_q); } void bluez_sock_link(struct bluez_sock_list *l, struct sock *sk) { write_lock_bh(&l->lock); sk->next = l->head; l->head = sk; sock_hold(sk); write_unlock_bh(&l->lock); } void bluez_sock_unlink(struct bluez_sock_list *l, struct sock *sk) { struct sock **skp; write_lock_bh(&l->lock); for (skp = &l->head; *skp; skp = &((*skp)->next)) { if (*skp == sk) { *skp = sk->next; __sock_put(sk); break; } } write_unlock_bh(&l->lock); } void bluez_accept_enqueue(struct sock *parent, struct sock *sk) { BT_DBG("parent %p, sk %p", parent, sk); sock_hold(sk); list_add_tail(&bluez_pi(sk)->accept_q, &bluez_pi(parent)->accept_q); bluez_pi(sk)->parent = parent; parent->ack_backlog++; } static void bluez_accept_unlink(struct sock *sk) { BT_DBG("sk %p state %d", sk, sk->state); list_del_init(&bluez_pi(sk)->accept_q); bluez_pi(sk)->parent->ack_backlog--; bluez_pi(sk)->parent = NULL; sock_put(sk); } struct sock *bluez_accept_dequeue(struct sock *parent, struct socket *newsock) { struct list_head *p, *n; struct bluez_pinfo *pi; struct sock *sk; BT_DBG("parent %p", parent); list_for_each_safe(p, n, &bluez_pi(parent)->accept_q) { pi = list_entry(p, struct bluez_pinfo, accept_q); sk = bluez_sk(pi); lock_sock(sk); if (sk->state == BT_CLOSED) { release_sock(sk); bluez_accept_unlink(sk); continue; } if (sk->state == BT_CONNECTED || !newsock) { bluez_accept_unlink(sk); if (newsock) sock_graft(sk, newsock); release_sock(sk); return sk; } release_sock(sk); } return NULL; } int bluez_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, int flags, struct scm_cookie *scm) { int noblock = flags & MSG_DONTWAIT; struct sock *sk = sock->sk; struct sk_buff *skb; int copied, err; BT_DBG("sock %p sk %p len %d", sock, sk, len); if (flags & (MSG_OOB)) return -EOPNOTSUPP; if (!(skb = skb_recv_datagram(sk, flags, noblock, &err))) { if (sk->shutdown & RCV_SHUTDOWN) return 0; return err; } msg->msg_namelen = 0; copied = skb->len; if (len < copied) { msg->msg_flags |= MSG_TRUNC; copied = len; } skb->h.raw = skb->data; err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied); skb_free_datagram(sk, skb); return err ? : copied; } unsigned int bluez_sock_poll(struct file * file, struct socket *sock, poll_table *wait) { struct sock *sk = sock->sk; unsigned int mask = 0; BT_DBG("sock %p, sk %p", sock, sk); poll_wait(file, sk->sleep, wait); if (sk->err || !skb_queue_empty(&sk->error_queue)) mask |= POLLERR; if (sk->shutdown == SHUTDOWN_MASK) mask |= POLLHUP; if (!skb_queue_empty(&sk->receive_queue) || !list_empty(&bluez_pi(sk)->accept_q) || (sk->shutdown & RCV_SHUTDOWN)) mask |= POLLIN | POLLRDNORM; if (sk->state == BT_CLOSED) mask |= POLLHUP; if (sk->state == BT_CONNECT || sk->state == BT_CONNECT2 || sk->state == BT_CONFIG) return mask; if (sock_writeable(sk)) mask |= POLLOUT | POLLWRNORM | POLLWRBAND; else set_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags); return mask; } int bluez_sock_wait_state(struct sock *sk, int state, unsigned long timeo) { DECLARE_WAITQUEUE(wait, current); int err = 0; BT_DBG("sk %p", sk); add_wait_queue(sk->sleep, &wait); while (sk->state != state) { set_current_state(TASK_INTERRUPTIBLE); if (!timeo) { err = -EAGAIN; break; } if (signal_pending(current)) { err = sock_intr_errno(timeo); break; } release_sock(sk); timeo = schedule_timeout(timeo); lock_sock(sk); if (sk->err) { err = sock_error(sk); break; } } set_current_state(TASK_RUNNING); remove_wait_queue(sk->sleep, &wait); return err; } struct net_proto_family bluez_sock_family_ops = { PF_BLUETOOTH, bluez_sock_create }; int bluez_init(void) { BT_INFO("BlueZ Core ver %s Copyright (C) 2000,2001 Qualcomm Inc", VERSION); BT_INFO("Written 2000,2001 by Maxim Krasnyansky "); proc_mkdir("bluetooth", NULL); sock_register(&bluez_sock_family_ops); /* Init HCI Core */ hci_core_init(); /* Init sockets */ hci_sock_init(); return 0; } void bluez_cleanup(void) { /* Release socket */ hci_sock_cleanup(); /* Release core */ hci_core_cleanup(); sock_unregister(PF_BLUETOOTH); remove_proc_entry("bluetooth", NULL); } #ifdef MODULE module_init(bluez_init); module_exit(bluez_cleanup); MODULE_AUTHOR("Maxim Krasnyansky "); MODULE_DESCRIPTION("BlueZ Core ver " VERSION); MODULE_LICENSE("GPL"); #endif