OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [LINUX_2_4_26_OR32/] [linux/] [linux-2.4/] [net/] [bluetooth/] [af_bluetooth.c] - Diff between revs 1279 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1279 Rev 1765
/*
/*
   BlueZ - Bluetooth protocol stack for Linux
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2000-2001 Qualcomm Incorporated
   Copyright (C) 2000-2001 Qualcomm Incorporated
 
 
   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
 
 
   This program is free software; you can redistribute it and/or modify
   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
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;
   published by the Free Software Foundation;
 
 
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   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
   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
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
 
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   SOFTWARE IS DISCLAIMED.
   SOFTWARE IS DISCLAIMED.
*/
*/
 
 
/*
/*
 * BlueZ Bluetooth address family and sockets.
 * BlueZ Bluetooth address family and sockets.
 *
 *
 * $Id: af_bluetooth.c,v 1.1.1.1 2004-04-15 01:17:06 phoenix Exp $
 * $Id: af_bluetooth.c,v 1.1.1.1 2004-04-15 01:17:06 phoenix Exp $
 */
 */
#define VERSION "2.3"
#define VERSION "2.3"
 
 
#include <linux/config.h>
#include <linux/config.h>
#include <linux/module.h>
#include <linux/module.h>
 
 
#include <linux/types.h>
#include <linux/types.h>
#include <linux/list.h>
#include <linux/list.h>
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/major.h>
#include <linux/major.h>
#include <linux/sched.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/slab.h>
#include <linux/skbuff.h>
#include <linux/skbuff.h>
#include <linux/init.h>
#include <linux/init.h>
#include <linux/poll.h>
#include <linux/poll.h>
#include <linux/proc_fs.h>
#include <linux/proc_fs.h>
#include <net/sock.h>
#include <net/sock.h>
 
 
#if defined(CONFIG_KMOD)
#if defined(CONFIG_KMOD)
#include <linux/kmod.h>
#include <linux/kmod.h>
#endif
#endif
 
 
#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/bluetooth.h>
 
 
#ifndef AF_BLUETOOTH_DEBUG
#ifndef AF_BLUETOOTH_DEBUG
#undef  BT_DBG
#undef  BT_DBG
#define BT_DBG( A... )
#define BT_DBG( A... )
#endif
#endif
 
 
/* Bluetooth sockets */
/* Bluetooth sockets */
#define BLUEZ_MAX_PROTO 6
#define BLUEZ_MAX_PROTO 6
static struct net_proto_family *bluez_proto[BLUEZ_MAX_PROTO];
static struct net_proto_family *bluez_proto[BLUEZ_MAX_PROTO];
 
 
int bluez_sock_register(int proto, struct net_proto_family *ops)
int bluez_sock_register(int proto, struct net_proto_family *ops)
{
{
        if (proto >= BLUEZ_MAX_PROTO)
        if (proto >= BLUEZ_MAX_PROTO)
                return -EINVAL;
                return -EINVAL;
 
 
        if (bluez_proto[proto])
        if (bluez_proto[proto])
                return -EEXIST;
                return -EEXIST;
 
 
        bluez_proto[proto] = ops;
        bluez_proto[proto] = ops;
        return 0;
        return 0;
}
}
 
 
int bluez_sock_unregister(int proto)
int bluez_sock_unregister(int proto)
{
{
        if (proto >= BLUEZ_MAX_PROTO)
        if (proto >= BLUEZ_MAX_PROTO)
                return -EINVAL;
                return -EINVAL;
 
 
        if (!bluez_proto[proto])
        if (!bluez_proto[proto])
                return -ENOENT;
                return -ENOENT;
 
 
        bluez_proto[proto] = NULL;
        bluez_proto[proto] = NULL;
        return 0;
        return 0;
}
}
 
 
static int bluez_sock_create(struct socket *sock, int proto)
static int bluez_sock_create(struct socket *sock, int proto)
{
{
        if (proto >= BLUEZ_MAX_PROTO)
        if (proto >= BLUEZ_MAX_PROTO)
                return -EINVAL;
                return -EINVAL;
 
 
#if defined(CONFIG_KMOD)
#if defined(CONFIG_KMOD)
        if (!bluez_proto[proto]) {
        if (!bluez_proto[proto]) {
                char module_name[30];
                char module_name[30];
                sprintf(module_name, "bt-proto-%d", proto);
                sprintf(module_name, "bt-proto-%d", proto);
                request_module(module_name);
                request_module(module_name);
        }
        }
#endif
#endif
 
 
        if (!bluez_proto[proto])
        if (!bluez_proto[proto])
                return -ENOENT;
                return -ENOENT;
 
 
        return bluez_proto[proto]->create(sock, proto);
        return bluez_proto[proto]->create(sock, proto);
}
}
 
 
void bluez_sock_init(struct socket *sock, struct sock *sk)
void bluez_sock_init(struct socket *sock, struct sock *sk)
{
{
        sock_init_data(sock, sk);
        sock_init_data(sock, sk);
        INIT_LIST_HEAD(&bluez_pi(sk)->accept_q);
        INIT_LIST_HEAD(&bluez_pi(sk)->accept_q);
}
}
 
 
void bluez_sock_link(struct bluez_sock_list *l, struct sock *sk)
void bluez_sock_link(struct bluez_sock_list *l, struct sock *sk)
{
{
        write_lock_bh(&l->lock);
        write_lock_bh(&l->lock);
        sk->next = l->head;
        sk->next = l->head;
        l->head = sk;
        l->head = sk;
        sock_hold(sk);
        sock_hold(sk);
        write_unlock_bh(&l->lock);
        write_unlock_bh(&l->lock);
}
}
 
 
void bluez_sock_unlink(struct bluez_sock_list *l, struct sock *sk)
void bluez_sock_unlink(struct bluez_sock_list *l, struct sock *sk)
{
{
        struct sock **skp;
        struct sock **skp;
 
 
        write_lock_bh(&l->lock);
        write_lock_bh(&l->lock);
        for (skp = &l->head; *skp; skp = &((*skp)->next)) {
        for (skp = &l->head; *skp; skp = &((*skp)->next)) {
                if (*skp == sk) {
                if (*skp == sk) {
                        *skp = sk->next;
                        *skp = sk->next;
                        __sock_put(sk);
                        __sock_put(sk);
                        break;
                        break;
                }
                }
        }
        }
        write_unlock_bh(&l->lock);
        write_unlock_bh(&l->lock);
}
}
 
 
void bluez_accept_enqueue(struct sock *parent, struct sock *sk)
void bluez_accept_enqueue(struct sock *parent, struct sock *sk)
{
{
        BT_DBG("parent %p, sk %p", parent, sk);
        BT_DBG("parent %p, sk %p", parent, sk);
 
 
        sock_hold(sk);
        sock_hold(sk);
        list_add_tail(&bluez_pi(sk)->accept_q, &bluez_pi(parent)->accept_q);
        list_add_tail(&bluez_pi(sk)->accept_q, &bluez_pi(parent)->accept_q);
        bluez_pi(sk)->parent = parent;
        bluez_pi(sk)->parent = parent;
        parent->ack_backlog++;
        parent->ack_backlog++;
}
}
 
 
static void bluez_accept_unlink(struct sock *sk)
static void bluez_accept_unlink(struct sock *sk)
{
{
        BT_DBG("sk %p state %d", sk, sk->state);
        BT_DBG("sk %p state %d", sk, sk->state);
 
 
        list_del_init(&bluez_pi(sk)->accept_q);
        list_del_init(&bluez_pi(sk)->accept_q);
        bluez_pi(sk)->parent->ack_backlog--;
        bluez_pi(sk)->parent->ack_backlog--;
        bluez_pi(sk)->parent = NULL;
        bluez_pi(sk)->parent = NULL;
        sock_put(sk);
        sock_put(sk);
}
}
 
 
struct sock *bluez_accept_dequeue(struct sock *parent, struct socket *newsock)
struct sock *bluez_accept_dequeue(struct sock *parent, struct socket *newsock)
{
{
        struct list_head *p, *n;
        struct list_head *p, *n;
        struct bluez_pinfo *pi;
        struct bluez_pinfo *pi;
        struct sock *sk;
        struct sock *sk;
 
 
        BT_DBG("parent %p", parent);
        BT_DBG("parent %p", parent);
 
 
        list_for_each_safe(p, n, &bluez_pi(parent)->accept_q) {
        list_for_each_safe(p, n, &bluez_pi(parent)->accept_q) {
                pi = list_entry(p, struct bluez_pinfo, accept_q);
                pi = list_entry(p, struct bluez_pinfo, accept_q);
                sk = bluez_sk(pi);
                sk = bluez_sk(pi);
 
 
                lock_sock(sk);
                lock_sock(sk);
                if (sk->state == BT_CLOSED) {
                if (sk->state == BT_CLOSED) {
                        release_sock(sk);
                        release_sock(sk);
                        bluez_accept_unlink(sk);
                        bluez_accept_unlink(sk);
                        continue;
                        continue;
                }
                }
 
 
                if (sk->state == BT_CONNECTED || !newsock) {
                if (sk->state == BT_CONNECTED || !newsock) {
                        bluez_accept_unlink(sk);
                        bluez_accept_unlink(sk);
                        if (newsock)
                        if (newsock)
                                sock_graft(sk, newsock);
                                sock_graft(sk, newsock);
                        release_sock(sk);
                        release_sock(sk);
                        return sk;
                        return sk;
                }
                }
                release_sock(sk);
                release_sock(sk);
        }
        }
        return NULL;
        return NULL;
}
}
 
 
int bluez_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, int flags, struct scm_cookie *scm)
int bluez_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, int flags, struct scm_cookie *scm)
{
{
        int noblock = flags & MSG_DONTWAIT;
        int noblock = flags & MSG_DONTWAIT;
        struct sock *sk = sock->sk;
        struct sock *sk = sock->sk;
        struct sk_buff *skb;
        struct sk_buff *skb;
        int copied, err;
        int copied, err;
 
 
        BT_DBG("sock %p sk %p len %d", sock, sk, len);
        BT_DBG("sock %p sk %p len %d", sock, sk, len);
 
 
        if (flags & (MSG_OOB))
        if (flags & (MSG_OOB))
                return -EOPNOTSUPP;
                return -EOPNOTSUPP;
 
 
        if (!(skb = skb_recv_datagram(sk, flags, noblock, &err))) {
        if (!(skb = skb_recv_datagram(sk, flags, noblock, &err))) {
                if (sk->shutdown & RCV_SHUTDOWN)
                if (sk->shutdown & RCV_SHUTDOWN)
                        return 0;
                        return 0;
                return err;
                return err;
        }
        }
 
 
        msg->msg_namelen = 0;
        msg->msg_namelen = 0;
 
 
        copied = skb->len;
        copied = skb->len;
        if (len < copied) {
        if (len < copied) {
                msg->msg_flags |= MSG_TRUNC;
                msg->msg_flags |= MSG_TRUNC;
                copied = len;
                copied = len;
        }
        }
 
 
        skb->h.raw = skb->data;
        skb->h.raw = skb->data;
        err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
        err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
 
 
        skb_free_datagram(sk, skb);
        skb_free_datagram(sk, skb);
 
 
        return err ? : copied;
        return err ? : copied;
}
}
 
 
unsigned int bluez_sock_poll(struct file * file, struct socket *sock, poll_table *wait)
unsigned int bluez_sock_poll(struct file * file, struct socket *sock, poll_table *wait)
{
{
        struct sock *sk = sock->sk;
        struct sock *sk = sock->sk;
        unsigned int mask = 0;
        unsigned int mask = 0;
 
 
        BT_DBG("sock %p, sk %p", sock, sk);
        BT_DBG("sock %p, sk %p", sock, sk);
 
 
        poll_wait(file, sk->sleep, wait);
        poll_wait(file, sk->sleep, wait);
 
 
        if (sk->err || !skb_queue_empty(&sk->error_queue))
        if (sk->err || !skb_queue_empty(&sk->error_queue))
                mask |= POLLERR;
                mask |= POLLERR;
 
 
        if (sk->shutdown == SHUTDOWN_MASK)
        if (sk->shutdown == SHUTDOWN_MASK)
                mask |= POLLHUP;
                mask |= POLLHUP;
 
 
        if (!skb_queue_empty(&sk->receive_queue) ||
        if (!skb_queue_empty(&sk->receive_queue) ||
                        !list_empty(&bluez_pi(sk)->accept_q) ||
                        !list_empty(&bluez_pi(sk)->accept_q) ||
                        (sk->shutdown & RCV_SHUTDOWN))
                        (sk->shutdown & RCV_SHUTDOWN))
                mask |= POLLIN | POLLRDNORM;
                mask |= POLLIN | POLLRDNORM;
 
 
        if (sk->state == BT_CLOSED)
        if (sk->state == BT_CLOSED)
                mask |= POLLHUP;
                mask |= POLLHUP;
 
 
        if (sk->state == BT_CONNECT ||
        if (sk->state == BT_CONNECT ||
                        sk->state == BT_CONNECT2 ||
                        sk->state == BT_CONNECT2 ||
                        sk->state == BT_CONFIG)
                        sk->state == BT_CONFIG)
                return mask;
                return mask;
 
 
        if (sock_writeable(sk))
        if (sock_writeable(sk))
                mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
                mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
        else
        else
                set_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
                set_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
 
 
        return mask;
        return mask;
}
}
 
 
int bluez_sock_wait_state(struct sock *sk, int state, unsigned long timeo)
int bluez_sock_wait_state(struct sock *sk, int state, unsigned long timeo)
{
{
        DECLARE_WAITQUEUE(wait, current);
        DECLARE_WAITQUEUE(wait, current);
        int err = 0;
        int err = 0;
 
 
        BT_DBG("sk %p", sk);
        BT_DBG("sk %p", sk);
 
 
        add_wait_queue(sk->sleep, &wait);
        add_wait_queue(sk->sleep, &wait);
        while (sk->state != state) {
        while (sk->state != state) {
                set_current_state(TASK_INTERRUPTIBLE);
                set_current_state(TASK_INTERRUPTIBLE);
 
 
                if (!timeo) {
                if (!timeo) {
                        err = -EAGAIN;
                        err = -EAGAIN;
                        break;
                        break;
                }
                }
 
 
                if (signal_pending(current)) {
                if (signal_pending(current)) {
                        err = sock_intr_errno(timeo);
                        err = sock_intr_errno(timeo);
                        break;
                        break;
                }
                }
 
 
                release_sock(sk);
                release_sock(sk);
                timeo = schedule_timeout(timeo);
                timeo = schedule_timeout(timeo);
                lock_sock(sk);
                lock_sock(sk);
 
 
                if (sk->err) {
                if (sk->err) {
                        err = sock_error(sk);
                        err = sock_error(sk);
                        break;
                        break;
                }
                }
        }
        }
        set_current_state(TASK_RUNNING);
        set_current_state(TASK_RUNNING);
        remove_wait_queue(sk->sleep, &wait);
        remove_wait_queue(sk->sleep, &wait);
        return err;
        return err;
}
}
 
 
struct net_proto_family bluez_sock_family_ops =
struct net_proto_family bluez_sock_family_ops =
{
{
        PF_BLUETOOTH, bluez_sock_create
        PF_BLUETOOTH, bluez_sock_create
};
};
 
 
int bluez_init(void)
int bluez_init(void)
{
{
        BT_INFO("BlueZ Core ver %s Copyright (C) 2000,2001 Qualcomm Inc",
        BT_INFO("BlueZ Core ver %s Copyright (C) 2000,2001 Qualcomm Inc",
                 VERSION);
                 VERSION);
        BT_INFO("Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>");
        BT_INFO("Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>");
 
 
        proc_mkdir("bluetooth", NULL);
        proc_mkdir("bluetooth", NULL);
 
 
        sock_register(&bluez_sock_family_ops);
        sock_register(&bluez_sock_family_ops);
 
 
        /* Init HCI Core */
        /* Init HCI Core */
        hci_core_init();
        hci_core_init();
 
 
        /* Init sockets */
        /* Init sockets */
        hci_sock_init();
        hci_sock_init();
 
 
        return 0;
        return 0;
}
}
 
 
void bluez_cleanup(void)
void bluez_cleanup(void)
{
{
        /* Release socket */
        /* Release socket */
        hci_sock_cleanup();
        hci_sock_cleanup();
 
 
        /* Release core */
        /* Release core */
        hci_core_cleanup();
        hci_core_cleanup();
 
 
        sock_unregister(PF_BLUETOOTH);
        sock_unregister(PF_BLUETOOTH);
 
 
        remove_proc_entry("bluetooth", NULL);
        remove_proc_entry("bluetooth", NULL);
}
}
 
 
#ifdef MODULE
#ifdef MODULE
module_init(bluez_init);
module_init(bluez_init);
module_exit(bluez_cleanup);
module_exit(bluez_cleanup);
 
 
MODULE_AUTHOR("Maxim Krasnyansky <maxk@qualcomm.com>");
MODULE_AUTHOR("Maxim Krasnyansky <maxk@qualcomm.com>");
MODULE_DESCRIPTION("BlueZ Core ver " VERSION);
MODULE_DESCRIPTION("BlueZ Core ver " VERSION);
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
#endif
#endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.