a163d034fa
Approved by: trb
1321 lines
32 KiB
C
1321 lines
32 KiB
C
/*
|
|
* ng_btsocket_hci_raw.c
|
|
*
|
|
* Copyright (c) 2001-2002 Maksim Yevmenkin <m_evmenkin@yahoo.com>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $Id: ng_btsocket_hci_raw.c,v 1.3 2002/11/12 22:31:39 max Exp $
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/domain.h>
|
|
#include <sys/errno.h>
|
|
#include <sys/filedesc.h>
|
|
#include <sys/ioccom.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/lock.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/mbuf.h>
|
|
#include <sys/mutex.h>
|
|
#include <sys/protosw.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/socketvar.h>
|
|
#include <sys/sysctl.h>
|
|
#include <sys/taskqueue.h>
|
|
#include <netgraph/ng_message.h>
|
|
#include <netgraph/netgraph.h>
|
|
#include <bitstring.h>
|
|
#include "ng_bluetooth.h"
|
|
#include "ng_hci.h"
|
|
#include "ng_l2cap.h"
|
|
#include "ng_btsocket.h"
|
|
#include "ng_btsocket_hci_raw.h"
|
|
|
|
/* MALLOC define */
|
|
#ifdef NG_SEPARATE_MALLOC
|
|
MALLOC_DEFINE(M_NETGRAPH_BTSOCKET_HCI_RAW, "netgraph_btsocks_hci_raw",
|
|
"Netgraph Bluetooth raw HCI sockets");
|
|
#else
|
|
#define M_NETGRAPH_BTSOCKET_HCI_RAW M_NETGRAPH
|
|
#endif /* NG_SEPARATE_MALLOC */
|
|
|
|
/* Netgraph node methods */
|
|
static ng_constructor_t ng_btsocket_hci_raw_node_constructor;
|
|
static ng_rcvmsg_t ng_btsocket_hci_raw_node_rcvmsg;
|
|
static ng_shutdown_t ng_btsocket_hci_raw_node_shutdown;
|
|
static ng_newhook_t ng_btsocket_hci_raw_node_newhook;
|
|
static ng_connect_t ng_btsocket_hci_raw_node_connect;
|
|
static ng_rcvdata_t ng_btsocket_hci_raw_node_rcvdata;
|
|
static ng_disconnect_t ng_btsocket_hci_raw_node_disconnect;
|
|
|
|
static void ng_btsocket_hci_raw_input (void *, int);
|
|
static void ng_btsocket_hci_raw_output(node_p, hook_p, void *, int);
|
|
static void ng_btsocket_hci_raw_savctl(ng_btsocket_hci_raw_pcb_p,
|
|
struct mbuf **,
|
|
struct mbuf *);
|
|
|
|
/* Netgraph type descriptor */
|
|
static struct ng_type typestruct = {
|
|
NG_ABI_VERSION,
|
|
NG_BTSOCKET_HCI_RAW_NODE_TYPE, /* typename */
|
|
NULL, /* modevent */
|
|
ng_btsocket_hci_raw_node_constructor, /* constructor */
|
|
ng_btsocket_hci_raw_node_rcvmsg, /* control message */
|
|
ng_btsocket_hci_raw_node_shutdown, /* destructor */
|
|
ng_btsocket_hci_raw_node_newhook, /* new hook */
|
|
NULL, /* find hook */
|
|
ng_btsocket_hci_raw_node_connect, /* connect hook */
|
|
ng_btsocket_hci_raw_node_rcvdata, /* data */
|
|
ng_btsocket_hci_raw_node_disconnect, /* disconnect hook */
|
|
NULL /* node command list */
|
|
};
|
|
|
|
/* Globals */
|
|
extern int ifqmaxlen;
|
|
static u_int32_t ng_btsocket_hci_raw_debug_level;
|
|
static u_int32_t ng_btsocket_hci_raw_ioctl_timeout;
|
|
static node_p ng_btsocket_hci_raw_node;
|
|
static struct ng_bt_itemq ng_btsocket_hci_raw_queue;
|
|
static struct mtx ng_btsocket_hci_raw_queue_mtx;
|
|
static struct task ng_btsocket_hci_raw_task;
|
|
static LIST_HEAD(, ng_btsocket_hci_raw_pcb) ng_btsocket_hci_raw_sockets;
|
|
static struct mtx ng_btsocket_hci_raw_sockets_mtx;
|
|
static u_int32_t ng_btsocket_hci_raw_token;
|
|
static struct mtx ng_btsocket_hci_raw_token_mtx;
|
|
|
|
/* Sysctl tree */
|
|
SYSCTL_DECL(_net_bluetooth_hci_sockets);
|
|
SYSCTL_NODE(_net_bluetooth_hci_sockets, OID_AUTO, raw, CTLFLAG_RW,
|
|
0, "Bluetooth raw HCI sockets family");
|
|
SYSCTL_INT(_net_bluetooth_hci_sockets_raw, OID_AUTO, debug_level, CTLFLAG_RW,
|
|
&ng_btsocket_hci_raw_debug_level, NG_BTSOCKET_WARN_LEVEL,
|
|
"Bluetooth raw HCI sockets debug level");
|
|
SYSCTL_INT(_net_bluetooth_hci_sockets_raw, OID_AUTO, ioctl_timeout, CTLFLAG_RW,
|
|
&ng_btsocket_hci_raw_ioctl_timeout, 5,
|
|
"Bluetooth raw HCI sockets ioctl timeout");
|
|
SYSCTL_INT(_net_bluetooth_hci_sockets_raw, OID_AUTO, queue_len, CTLFLAG_RD,
|
|
&ng_btsocket_hci_raw_queue.len, 0,
|
|
"Bluetooth raw HCI sockets input queue length");
|
|
SYSCTL_INT(_net_bluetooth_hci_sockets_raw, OID_AUTO, queue_maxlen, CTLFLAG_RD,
|
|
&ng_btsocket_hci_raw_queue.maxlen, 0,
|
|
"Bluetooth raw HCI sockets input queue max. length");
|
|
SYSCTL_INT(_net_bluetooth_hci_sockets_raw, OID_AUTO, queue_drops, CTLFLAG_RD,
|
|
&ng_btsocket_hci_raw_queue.drops, 0,
|
|
"Bluetooth raw HCI sockets input queue drops");
|
|
|
|
/* Debug */
|
|
#define NG_BTSOCKET_HCI_RAW_INFO \
|
|
if (ng_btsocket_hci_raw_debug_level >= NG_BTSOCKET_INFO_LEVEL) \
|
|
printf
|
|
|
|
#define NG_BTSOCKET_HCI_RAW_WARN \
|
|
if (ng_btsocket_hci_raw_debug_level >= NG_BTSOCKET_WARN_LEVEL) \
|
|
printf
|
|
|
|
#define NG_BTSOCKET_HCI_RAW_ERR \
|
|
if (ng_btsocket_hci_raw_debug_level >= NG_BTSOCKET_ERR_LEVEL) \
|
|
printf
|
|
|
|
#define NG_BTSOCKET_HCI_RAW_ALERT \
|
|
if (ng_btsocket_hci_raw_debug_level >= NG_BTSOCKET_ALERT_LEVEL) \
|
|
printf
|
|
|
|
/****************************************************************************
|
|
****************************************************************************
|
|
** Netgraph specific
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* Netgraph node constructor. Do not allow to create node of this type.
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_constructor(node_p node)
|
|
{
|
|
return (EINVAL);
|
|
} /* ng_btsocket_hci_raw_node_constructor */
|
|
|
|
/*
|
|
* Netgraph node destructor. Just let old node go and create new fresh one.
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_shutdown(node_p node)
|
|
{
|
|
int error = 0;
|
|
|
|
NG_NODE_UNREF(node);
|
|
|
|
error = ng_make_node_common(&typestruct, &ng_btsocket_hci_raw_node);
|
|
if (error != 0) {
|
|
NG_BTSOCKET_HCI_RAW_ALERT(
|
|
"%s: Could not create Netgraph node, error=%d\n", __func__, error);
|
|
|
|
ng_btsocket_hci_raw_node = NULL;
|
|
|
|
return (ENOMEM);
|
|
}
|
|
|
|
error = ng_name_node(ng_btsocket_hci_raw_node,
|
|
NG_BTSOCKET_HCI_RAW_NODE_TYPE);
|
|
if (error != 0) {
|
|
NG_BTSOCKET_HCI_RAW_ALERT(
|
|
"%s: Could not name Netgraph node, error=%d\n", __func__, error);
|
|
|
|
NG_NODE_UNREF(ng_btsocket_hci_raw_node);
|
|
ng_btsocket_hci_raw_node = NULL;
|
|
|
|
return (EINVAL);
|
|
}
|
|
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_node_shutdown */
|
|
|
|
/*
|
|
* Create new hook. Just say "yes"
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_newhook(node_p node, hook_p hook, char const *name)
|
|
{
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_node_newhook */
|
|
|
|
/*
|
|
* Connect hook. Just say "yes"
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_connect(hook_p hook)
|
|
{
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_node_connect */
|
|
|
|
/*
|
|
* Disconnect hook
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_disconnect(hook_p hook)
|
|
{
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_node_disconnect */
|
|
|
|
/*
|
|
* Receive control message.
|
|
* Make sure it is a message from HCI node and it is a response.
|
|
* Enqueue item and schedule input task.
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_rcvmsg(node_p node, item_p item, hook_p lasthook)
|
|
{
|
|
struct ng_mesg *msg = NGI_MSG(item); /* item still has message */
|
|
int error = 0;
|
|
|
|
if (msg != NULL &&
|
|
msg->header.typecookie == NGM_HCI_COOKIE &&
|
|
msg->header.flags & NGF_RESP) {
|
|
mtx_lock(&ng_btsocket_hci_raw_queue_mtx);
|
|
if (NG_BT_ITEMQ_FULL(&ng_btsocket_hci_raw_queue)) {
|
|
NG_BTSOCKET_HCI_RAW_ERR(
|
|
"%s: Input queue is full\n", __func__);
|
|
|
|
NG_BT_ITEMQ_DROP(&ng_btsocket_hci_raw_queue);
|
|
NG_FREE_ITEM(item);
|
|
error = ENOBUFS;
|
|
} else {
|
|
NG_BT_ITEMQ_ENQUEUE(&ng_btsocket_hci_raw_queue, item);
|
|
error = taskqueue_enqueue(taskqueue_swi,
|
|
&ng_btsocket_hci_raw_task);
|
|
}
|
|
mtx_unlock(&ng_btsocket_hci_raw_queue_mtx);
|
|
} else {
|
|
NG_FREE_ITEM(item);
|
|
error = EINVAL;
|
|
}
|
|
|
|
return (error);
|
|
} /* ng_btsocket_hci_raw_node_rcvmsg */
|
|
|
|
/*
|
|
* Receive packet from the one of our hook.
|
|
* Prepend every packet with sockaddr_hci and record sender's node name.
|
|
* Enqueue item and schedule input task.
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_hci_raw_node_rcvdata(hook_p hook, item_p item)
|
|
{
|
|
struct mbuf *nam = NULL;
|
|
int error;
|
|
|
|
MGET(nam, M_DONTWAIT, MT_SONAME);
|
|
if (nam != NULL) {
|
|
struct sockaddr_hci *sa = mtod(nam, struct sockaddr_hci *);
|
|
|
|
nam->m_len = sizeof(struct sockaddr_hci);
|
|
|
|
sa->hci_len = sizeof(*sa);
|
|
sa->hci_family = AF_BLUETOOTH;
|
|
strncpy(sa->hci_node, NG_PEER_NODE_NAME(hook),
|
|
sizeof(sa->hci_node));
|
|
sa->hci_node[sizeof(sa->hci_node) - 1] = 0; /* sanity */
|
|
|
|
NGI_GET_M(item, nam->m_next);
|
|
NGI_M(item) = nam;
|
|
|
|
mtx_lock(&ng_btsocket_hci_raw_queue_mtx);
|
|
if (NG_BT_ITEMQ_FULL(&ng_btsocket_hci_raw_queue)) {
|
|
NG_BTSOCKET_HCI_RAW_ERR(
|
|
"%s: Input queue is full\n", __func__);
|
|
|
|
NG_BT_ITEMQ_DROP(&ng_btsocket_hci_raw_queue);
|
|
NG_FREE_ITEM(item);
|
|
error = ENOBUFS;
|
|
} else {
|
|
NG_BT_ITEMQ_ENQUEUE(&ng_btsocket_hci_raw_queue, item);
|
|
error = taskqueue_enqueue(taskqueue_swi,
|
|
&ng_btsocket_hci_raw_task);
|
|
}
|
|
mtx_unlock(&ng_btsocket_hci_raw_queue_mtx);
|
|
} else {
|
|
NG_BTSOCKET_HCI_RAW_ERR(
|
|
"%s: Failed to allocate address mbuf\n", __func__);
|
|
|
|
NG_FREE_ITEM(item);
|
|
error = ENOBUFS;
|
|
}
|
|
|
|
return (error);
|
|
} /* ng_btsocket_hci_raw_node_rcvdata */
|
|
|
|
/****************************************************************************
|
|
****************************************************************************
|
|
** Sockets specific
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* Get next token
|
|
*/
|
|
|
|
static void
|
|
ng_btsocket_hci_raw_get_token(u_int32_t *token)
|
|
{
|
|
mtx_lock(&ng_btsocket_hci_raw_token_mtx);
|
|
|
|
if (++ ng_btsocket_hci_raw_token == 0)
|
|
ng_btsocket_hci_raw_token = 1;
|
|
|
|
*token = ng_btsocket_hci_raw_token;
|
|
|
|
mtx_unlock(&ng_btsocket_hci_raw_token_mtx);
|
|
} /* ng_btsocket_hci_raw_token */
|
|
|
|
/*
|
|
* Send Netgraph message to the node - do not expect reply
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_raw_send_ngmsg(char *path, int cmd, void *arg, int arglen)
|
|
{
|
|
struct ng_mesg *msg = NULL;
|
|
int error = 0;
|
|
|
|
NG_MKMESSAGE(msg, NGM_HCI_COOKIE, cmd, arglen, M_WAITOK);
|
|
if (msg == NULL)
|
|
return (ENOMEM);
|
|
|
|
if (arg != NULL && arglen > 0)
|
|
bcopy(arg, msg->data, arglen);
|
|
|
|
NG_SEND_MSG_PATH(error, ng_btsocket_hci_raw_node, msg, path, NULL);
|
|
|
|
return (error);
|
|
} /* ng_btsocket_raw_send_ngmsg */
|
|
|
|
/*
|
|
* Send Netgraph message to the node (no data) and wait for reply
|
|
*/
|
|
|
|
static int
|
|
ng_btsocket_raw_send_sync_ngmsg(ng_btsocket_hci_raw_pcb_p pcb, char *path,
|
|
int cmd, void *rsp, int rsplen)
|
|
{
|
|
struct ng_mesg *msg = NULL;
|
|
int error = 0;
|
|
|
|
ng_btsocket_hci_raw_get_token(&pcb->token);
|
|
pcb->msg = NULL;
|
|
|
|
NG_MKMESSAGE(msg, NGM_HCI_COOKIE, cmd, 0, M_WAITOK);
|
|
if (msg == NULL) {
|
|
pcb->token = 0;
|
|
return (ENOMEM);
|
|
}
|
|
msg->header.token = pcb->token;
|
|
|
|
NG_SEND_MSG_PATH(error, ng_btsocket_hci_raw_node, msg, path, NULL);
|
|
if (error != 0) {
|
|
pcb->token = 0;
|
|
return (error);
|
|
}
|
|
|
|
error = tsleep(&pcb->msg, PZERO|PCATCH, "hcictl",
|
|
ng_btsocket_hci_raw_ioctl_timeout * hz);
|
|
if (error != 0) {
|
|
pcb->token = 0;
|
|
return (error);
|
|
}
|
|
|
|
if (pcb->msg != NULL && pcb->msg->header.cmd == cmd)
|
|
bcopy(pcb->msg->data, rsp, rsplen);
|
|
else
|
|
error = EINVAL;
|
|
|
|
NG_FREE_MSG(pcb->msg); /* checks for != NULL */
|
|
pcb->token = 0;
|
|
|
|
return (0);
|
|
} /* ng_btsocket_raw_send_sync_ngmsg */
|
|
|
|
/*
|
|
* Create control information for the packet
|
|
*/
|
|
|
|
static void
|
|
ng_btsocket_hci_raw_savctl(ng_btsocket_hci_raw_pcb_p pcb, struct mbuf **ctl,
|
|
struct mbuf *m)
|
|
{
|
|
int dir;
|
|
struct timeval tv;
|
|
|
|
if (pcb->flags & NG_BTSOCKET_HCI_RAW_DIRECTION) {
|
|
dir = (m->m_flags & M_PROTO1)? 1 : 0;
|
|
*ctl = sbcreatecontrol((caddr_t) &dir, sizeof(dir),
|
|
SCM_HCI_RAW_DIRECTION, SOL_HCI_RAW);
|
|
if (*ctl != NULL)
|
|
ctl = &((*ctl)->m_next);
|
|
}
|
|
|
|
if (pcb->so->so_options & SO_TIMESTAMP) {
|
|
microtime(&tv);
|
|
*ctl = sbcreatecontrol((caddr_t) &tv, sizeof(tv),
|
|
SCM_TIMESTAMP, SOL_SOCKET);
|
|
if (*ctl != NULL)
|
|
ctl = &((*ctl)->m_next);
|
|
}
|
|
} /* ng_btsocket_hci_raw_savctl */
|
|
|
|
/*
|
|
* Raw HCI sockets data input routine
|
|
*/
|
|
|
|
static void
|
|
ng_btsocket_hci_raw_data_input(struct mbuf *nam)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = NULL;
|
|
struct mbuf *m0 = NULL, *m = NULL;
|
|
struct sockaddr_hci *sa = NULL;
|
|
bitstr_t *mask = NULL;
|
|
int bit;
|
|
|
|
m0 = nam->m_next;
|
|
nam->m_next = NULL;
|
|
|
|
KASSERT((nam->m_type == MT_SONAME),
|
|
("%s: m_type=%d\n", __func__, nam->m_type));
|
|
KASSERT((m0->m_flags & M_PKTHDR),
|
|
("%s: m_flags=%#x\n", __func__, m0->m_flags));
|
|
|
|
sa = mtod(nam, struct sockaddr_hci *);
|
|
|
|
mtx_lock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
|
|
LIST_FOREACH(pcb, &ng_btsocket_hci_raw_sockets, next) {
|
|
/*
|
|
* If socket was bound then check address and
|
|
* make sure it matches.
|
|
*/
|
|
|
|
if (pcb->addr.hci_node[0] != 0 &&
|
|
strcmp(sa->hci_node, pcb->addr.hci_node) != 0)
|
|
continue;
|
|
|
|
/*
|
|
* Check packet agains socket filter
|
|
* XXX do we have to call m_pullup() here?
|
|
*/
|
|
|
|
switch (*mtod(m0, u_int8_t *)) {
|
|
case NG_HCI_CMD_PKT:
|
|
case NG_HCI_ACL_DATA_PKT:
|
|
case NG_HCI_SCO_DATA_PKT:
|
|
mask = pcb->filter.packet_mask;
|
|
bit = *mtod(m0, u_int8_t *) - 1;
|
|
break;
|
|
|
|
case NG_HCI_EVENT_PKT:
|
|
mask = pcb->filter.event_mask;
|
|
bit = mtod(m0, ng_hci_event_pkt_t *)->event - 1;
|
|
break;
|
|
|
|
default:
|
|
KASSERT(0,
|
|
("%s: invalid packet type=%#x\n", __func__, *mtod(m0, u_int8_t *)));
|
|
|
|
mask = NULL;
|
|
bit = 0;
|
|
break;
|
|
}
|
|
|
|
if (mask == NULL || !bit_test(mask, bit))
|
|
continue;
|
|
|
|
/*
|
|
* Make a copy of the packet, append to the socket's
|
|
* receive queue and wakeup socket. sbappendaddr()
|
|
* will check if socket has enough buffer space.
|
|
*/
|
|
|
|
m = m_dup(m0, M_DONTWAIT);
|
|
if (m != NULL) {
|
|
struct mbuf *ctl = NULL;
|
|
|
|
ng_btsocket_hci_raw_savctl(pcb, &ctl, m);
|
|
|
|
if (sbappendaddr(&pcb->so->so_rcv,
|
|
(struct sockaddr *) sa, m, ctl))
|
|
sorwakeup(pcb->so);
|
|
else {
|
|
NG_BTSOCKET_HCI_RAW_WARN(
|
|
"%s: sbappendadd() failed\n", __func__);
|
|
|
|
NG_FREE_M(m);
|
|
NG_FREE_M(ctl);
|
|
}
|
|
}
|
|
}
|
|
|
|
mtx_unlock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
|
|
NG_FREE_M(nam);
|
|
NG_FREE_M(m0);
|
|
} /* ng_btsocket_hci_raw_data_input */
|
|
|
|
/*
|
|
* Raw HCI sockets message input routine
|
|
*/
|
|
|
|
static void
|
|
ng_btsocket_hci_raw_msg_input(struct ng_mesg *msg)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = NULL;
|
|
|
|
if (msg->header.token != 0) {
|
|
mtx_lock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
|
|
LIST_FOREACH(pcb, &ng_btsocket_hci_raw_sockets, next) {
|
|
if (msg->header.token == pcb->token) {
|
|
pcb->msg = msg;
|
|
msg = NULL;
|
|
wakeup(&pcb->msg);
|
|
break;
|
|
}
|
|
}
|
|
|
|
mtx_unlock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
}
|
|
|
|
NG_FREE_MSG(msg); /* checks for != NULL */
|
|
} /* ng_btsocket_hci_raw_msg_input */
|
|
|
|
/*
|
|
* Raw HCI sockets input routines
|
|
*/
|
|
|
|
static void
|
|
ng_btsocket_hci_raw_input(void *context, int pending)
|
|
{
|
|
item_p item = NULL;
|
|
|
|
for (;;) {
|
|
mtx_lock(&ng_btsocket_hci_raw_queue_mtx);
|
|
NG_BT_ITEMQ_DEQUEUE(&ng_btsocket_hci_raw_queue, item);
|
|
mtx_unlock(&ng_btsocket_hci_raw_queue_mtx);
|
|
|
|
if (item == NULL)
|
|
break;
|
|
|
|
switch(item->el_flags & NGQF_TYPE) {
|
|
case NGQF_DATA: {
|
|
struct mbuf *m = NULL;
|
|
|
|
NGI_GET_M(item, m);
|
|
ng_btsocket_hci_raw_data_input(m);
|
|
} break;
|
|
|
|
case NGQF_MESG: {
|
|
struct ng_mesg *msg = NULL;
|
|
|
|
NGI_GET_MSG(item, msg);
|
|
ng_btsocket_hci_raw_msg_input(msg);
|
|
} break;
|
|
|
|
default:
|
|
KASSERT(0,
|
|
("%s: invalid item type=%ld\n", __func__, (item->el_flags & NGQF_TYPE)));
|
|
break;
|
|
}
|
|
|
|
NG_FREE_ITEM(item);
|
|
}
|
|
} /* ng_btsocket_hci_raw_input */
|
|
|
|
/*
|
|
* Raw HCI sockets output routine
|
|
*/
|
|
|
|
static void
|
|
ng_btsocket_hci_raw_output(node_p node, hook_p hook, void *arg1, int arg2)
|
|
{
|
|
struct mbuf *nam = (struct mbuf *) arg1, *m = NULL;
|
|
struct sockaddr_hci *sa = NULL;
|
|
int error;
|
|
|
|
m = nam->m_next;
|
|
nam->m_next = NULL;
|
|
|
|
KASSERT((nam->m_type == MT_SONAME),
|
|
("%s: m_type=%d\n", __func__, nam->m_type));
|
|
KASSERT((m->m_flags & M_PKTHDR),
|
|
("%s: m_flags=%#x\n", __func__, m->m_flags));
|
|
|
|
sa = mtod(nam, struct sockaddr_hci *);
|
|
|
|
/*
|
|
* Find downstream hook
|
|
* XXX For now access node hook list directly. Should be safe because
|
|
* we used ng_send_fn() and we should have exclusive lock on the node.
|
|
*/
|
|
|
|
LIST_FOREACH(hook, &node->nd_hooks, hk_hooks) {
|
|
if (hook == NULL || NG_HOOK_NOT_VALID(hook) ||
|
|
NG_NODE_NOT_VALID(NG_PEER_NODE(hook)))
|
|
continue;
|
|
|
|
if (strcmp(sa->hci_node, NG_PEER_NODE_NAME(hook)) == 0) {
|
|
NG_SEND_DATA_ONLY(error, hook, m); /* sets m to NULL */
|
|
break;
|
|
}
|
|
}
|
|
|
|
NG_FREE_M(nam); /* check for != NULL */
|
|
NG_FREE_M(m);
|
|
} /* ng_btsocket_hci_raw_output */
|
|
|
|
/*
|
|
* Initialize everything
|
|
*/
|
|
|
|
void
|
|
ng_btsocket_hci_raw_init(void)
|
|
{
|
|
int error = 0;
|
|
|
|
ng_btsocket_hci_raw_node = NULL;
|
|
ng_btsocket_hci_raw_debug_level = NG_BTSOCKET_WARN_LEVEL;
|
|
ng_btsocket_hci_raw_ioctl_timeout = 5;
|
|
|
|
/* Register Netgraph node type */
|
|
error = ng_newtype(&typestruct);
|
|
if (error != 0) {
|
|
NG_BTSOCKET_HCI_RAW_ALERT(
|
|
"%s: Could not register Netgraph node type, error=%d\n", __func__, error);
|
|
|
|
return;
|
|
}
|
|
|
|
/* Create Netgrapg node */
|
|
error = ng_make_node_common(&typestruct, &ng_btsocket_hci_raw_node);
|
|
if (error != 0) {
|
|
NG_BTSOCKET_HCI_RAW_ALERT(
|
|
"%s: Could not create Netgraph node, error=%d\n", __func__, error);
|
|
|
|
ng_btsocket_hci_raw_node = NULL;
|
|
|
|
return;
|
|
}
|
|
|
|
error = ng_name_node(ng_btsocket_hci_raw_node,
|
|
NG_BTSOCKET_HCI_RAW_NODE_TYPE);
|
|
if (error != 0) {
|
|
NG_BTSOCKET_HCI_RAW_ALERT(
|
|
"%s: Could not name Netgraph node, error=%d\n", __func__, error);
|
|
|
|
NG_NODE_UNREF(ng_btsocket_hci_raw_node);
|
|
ng_btsocket_hci_raw_node = NULL;
|
|
|
|
return;
|
|
}
|
|
|
|
/* Create input queue */
|
|
NG_BT_ITEMQ_INIT(&ng_btsocket_hci_raw_queue, ifqmaxlen);
|
|
mtx_init(&ng_btsocket_hci_raw_queue_mtx,
|
|
"btsocks_hci_raw_queue_mtx", NULL, MTX_DEF);
|
|
TASK_INIT(&ng_btsocket_hci_raw_task, 0,
|
|
ng_btsocket_hci_raw_input, NULL);
|
|
|
|
/* Create list of sockets */
|
|
LIST_INIT(&ng_btsocket_hci_raw_sockets);
|
|
mtx_init(&ng_btsocket_hci_raw_sockets_mtx,
|
|
"btsocks_hci_raw_sockets_mtx", NULL, MTX_DEF);
|
|
|
|
/* Tokens */
|
|
ng_btsocket_hci_raw_token = 0;
|
|
mtx_init(&ng_btsocket_hci_raw_token_mtx,
|
|
"btsocks_hci_raw_token_mtx", NULL, MTX_DEF);
|
|
} /* ng_btsocket_hci_raw_init */
|
|
|
|
/*
|
|
* Abort connection on socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_abort(struct socket *so)
|
|
{
|
|
soisdisconnected(so);
|
|
|
|
return (ng_btsocket_hci_raw_detach(so));
|
|
} /* ng_btsocket_hci_raw_abort */
|
|
|
|
/*
|
|
* Create new raw HCI socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_attach(struct socket *so, int proto, struct thread *td)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
int error = 0;
|
|
|
|
if (pcb != NULL)
|
|
return (EISCONN);
|
|
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EPROTONOSUPPORT);
|
|
if (proto != BLUETOOTH_PROTO_HCI)
|
|
return (EPROTONOSUPPORT);
|
|
if (so->so_type != SOCK_RAW)
|
|
return (ESOCKTNOSUPPORT);
|
|
if ((error = suser(td)) != 0)
|
|
return (error);
|
|
|
|
error = soreserve(so, NG_BTSOCKET_HCI_RAW_SENDSPACE,
|
|
NG_BTSOCKET_HCI_RAW_RECVSPACE);
|
|
if (error != 0)
|
|
return (error);
|
|
|
|
MALLOC(pcb, ng_btsocket_hci_raw_pcb_p, sizeof(*pcb),
|
|
M_NETGRAPH_BTSOCKET_HCI_RAW, M_WAITOK | M_ZERO);
|
|
if (pcb == NULL)
|
|
return (ENOMEM);
|
|
|
|
so->so_pcb = (caddr_t) pcb;
|
|
pcb->so = so;
|
|
|
|
/*
|
|
* Set default socket filter. By default socket only accepts HCI
|
|
* Command_Complete and Command_Status event packets.
|
|
*/
|
|
|
|
bit_set(pcb->filter.event_mask, NG_HCI_EVENT_COMMAND_COMPL - 1);
|
|
bit_set(pcb->filter.event_mask, NG_HCI_EVENT_COMMAND_STATUS - 1);
|
|
|
|
mtx_lock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
LIST_INSERT_HEAD(&ng_btsocket_hci_raw_sockets, pcb, next);
|
|
mtx_unlock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_attach */
|
|
|
|
/*
|
|
* Bind raw HCI socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_bind(struct socket *so, struct sockaddr *nam,
|
|
struct thread *td)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
struct sockaddr_hci *sa = (struct sockaddr_hci *) nam;
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
if (sa == NULL)
|
|
return (EINVAL);
|
|
if (sa->hci_family != AF_BLUETOOTH)
|
|
return (EAFNOSUPPORT);
|
|
if (sa->hci_len != sizeof(*sa))
|
|
return (EINVAL);
|
|
if (sa->hci_node[0] == 0)
|
|
return (EINVAL);
|
|
|
|
bcopy(sa, &pcb->addr, sizeof(pcb->addr));
|
|
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_bind */
|
|
|
|
/*
|
|
* Connect raw HCI socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_connect(struct socket *so, struct sockaddr *nam,
|
|
struct thread *td)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
struct sockaddr_hci *sa = (struct sockaddr_hci *) nam;
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
if (sa == NULL)
|
|
return (EINVAL);
|
|
if (sa->hci_family != AF_BLUETOOTH)
|
|
return (EAFNOSUPPORT);
|
|
if (sa->hci_len != sizeof(*sa))
|
|
return (EINVAL);
|
|
if (sa->hci_node[0] == 0)
|
|
return (EDESTADDRREQ);
|
|
if (bcmp(sa, &pcb->addr, sizeof(pcb->addr)) != 0)
|
|
return (EADDRNOTAVAIL);
|
|
|
|
soisconnected(so);
|
|
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_connect */
|
|
|
|
/*
|
|
* Process ioctl on socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_control(struct socket *so, u_long cmd, caddr_t data,
|
|
struct ifnet *ifp, struct thread *td)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
char path[NG_NODELEN + 2],
|
|
*hci_node = (char *) data;
|
|
struct ng_mesg *msg = NULL;
|
|
int error = 0;
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
/*
|
|
* Make sure caller has provided HCI node name, if not try to
|
|
* use addr from socket (if socket was bound)
|
|
*/
|
|
|
|
if (hci_node[0] == 0) {
|
|
if (pcb->addr.hci_node[0] == 0)
|
|
return (EINVAL);
|
|
|
|
bzero(hci_node, sizeof(pcb->addr.hci_node));
|
|
strncpy(hci_node,pcb->addr.hci_node,sizeof(pcb->addr.hci_node));
|
|
}
|
|
|
|
snprintf(path, sizeof(path), "%s:", hci_node);
|
|
|
|
switch (cmd) {
|
|
case SIOC_HCI_RAW_NODE_GET_STATE: {
|
|
struct ng_btsocket_hci_raw_node_state *p =
|
|
(struct ng_btsocket_hci_raw_node_state *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_STATE,
|
|
&p->state, sizeof(p->state));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_INIT:
|
|
error = ng_btsocket_raw_send_ngmsg(path, NGM_HCI_NODE_INIT,
|
|
NULL, 0);
|
|
break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_DEBUG: {
|
|
struct ng_btsocket_hci_raw_node_debug *p =
|
|
(struct ng_btsocket_hci_raw_node_debug *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_DEBUG,
|
|
&p->debug, sizeof(p->debug));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_SET_DEBUG: {
|
|
struct ng_btsocket_hci_raw_node_debug *p =
|
|
(struct ng_btsocket_hci_raw_node_debug *) data;
|
|
|
|
error = ng_btsocket_raw_send_ngmsg(path, NGM_HCI_NODE_SET_DEBUG,
|
|
&p->debug, sizeof(p->debug));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_BUFFER: {
|
|
struct ng_btsocket_hci_raw_node_buffer *p =
|
|
(struct ng_btsocket_hci_raw_node_buffer *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_BUFFER,
|
|
&p->buffer, sizeof(p->buffer));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_BDADDR: {
|
|
struct ng_btsocket_hci_raw_node_bdaddr *p =
|
|
(struct ng_btsocket_hci_raw_node_bdaddr *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_BDADDR,
|
|
&p->bdaddr, sizeof(p->bdaddr));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_FEATURES: {
|
|
struct ng_btsocket_hci_raw_node_features *p =
|
|
(struct ng_btsocket_hci_raw_node_features *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_FEATURES,
|
|
&p->features, sizeof(p->features));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_STAT: {
|
|
struct ng_btsocket_hci_raw_node_stat *p =
|
|
(struct ng_btsocket_hci_raw_node_stat *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_STAT,
|
|
&p->stat, sizeof(p->stat));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_RESET_STAT:
|
|
error = ng_btsocket_raw_send_ngmsg(path,
|
|
NGM_HCI_NODE_RESET_STAT, NULL, 0);
|
|
break;
|
|
|
|
case SIOC_HCI_RAW_NODE_FLUSH_NEIGHBOR_CACHE:
|
|
error = ng_btsocket_raw_send_ngmsg(path,
|
|
NGM_HCI_NODE_FLUSH_NEIGHBOR_CACHE, NULL, 0);
|
|
break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_NEIGHBOR_CACHE: {
|
|
struct ng_btsocket_hci_raw_node_neighbor_cache *p =
|
|
(struct ng_btsocket_hci_raw_node_neighbor_cache *) data;
|
|
ng_hci_node_get_neighbor_cache_ep *p1 = NULL;
|
|
ng_hci_node_neighbor_cache_entry_ep *p2 = NULL;
|
|
|
|
if (p->num_entries <= 0 ||
|
|
p->num_entries > NG_HCI_MAX_NEIGHBOR_NUM ||
|
|
p->entries == NULL) {
|
|
error = EINVAL;
|
|
break;
|
|
}
|
|
|
|
ng_btsocket_hci_raw_get_token(&pcb->token);
|
|
pcb->msg = NULL;
|
|
|
|
NG_MKMESSAGE(msg, NGM_HCI_COOKIE,
|
|
NGM_HCI_NODE_GET_NEIGHBOR_CACHE, 0, M_WAITOK);
|
|
if (msg == NULL) {
|
|
pcb->token = 0;
|
|
error = ENOMEM;
|
|
break;
|
|
}
|
|
msg->header.token = pcb->token;
|
|
|
|
NG_SEND_MSG_PATH(error,ng_btsocket_hci_raw_node,msg,path,NULL);
|
|
if (error != 0) {
|
|
pcb->token = 0;
|
|
break;
|
|
}
|
|
|
|
error = tsleep(&pcb->msg, PZERO|PCATCH, "hcictl",
|
|
ng_btsocket_hci_raw_ioctl_timeout * hz);
|
|
if (error != 0) {
|
|
pcb->token = 0;
|
|
break;
|
|
}
|
|
|
|
if (pcb->msg != NULL &&
|
|
pcb->msg->header.cmd == NGM_HCI_NODE_GET_NEIGHBOR_CACHE) {
|
|
/* Return data back to user space */
|
|
p1 = (ng_hci_node_get_neighbor_cache_ep *)
|
|
(pcb->msg->data);
|
|
p2 = (ng_hci_node_neighbor_cache_entry_ep *)
|
|
(p1 + 1);
|
|
|
|
p->num_entries = min(p->num_entries, p1->num_entries);
|
|
if (p->num_entries > 0)
|
|
error = copyout((caddr_t) p2,
|
|
(caddr_t) p->entries,
|
|
p->num_entries * sizeof(*p2));
|
|
} else
|
|
error = EINVAL;
|
|
|
|
NG_FREE_MSG(pcb->msg); /* checks for != NULL */
|
|
pcb->token = 0;
|
|
}break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_CON_LIST: {
|
|
struct ng_btsocket_hci_raw_con_list *p =
|
|
(struct ng_btsocket_hci_raw_con_list *) data;
|
|
ng_hci_node_con_list_ep *p1 = NULL;
|
|
ng_hci_node_con_ep *p2 = NULL;
|
|
|
|
if (p->num_connections == 0 ||
|
|
p->num_connections > NG_HCI_MAX_CON_NUM ||
|
|
p->connections == NULL) {
|
|
error = EINVAL;
|
|
break;
|
|
}
|
|
|
|
ng_btsocket_hci_raw_get_token(&pcb->token);
|
|
pcb->msg = NULL;
|
|
|
|
NG_MKMESSAGE(msg, NGM_HCI_COOKIE, NGM_HCI_NODE_GET_CON_LIST,
|
|
0, M_WAITOK);
|
|
if (msg == NULL) {
|
|
pcb->token = 0;
|
|
error = ENOMEM;
|
|
break;
|
|
}
|
|
msg->header.token = pcb->token;
|
|
|
|
NG_SEND_MSG_PATH(error,ng_btsocket_hci_raw_node,msg,path,NULL);
|
|
if (error != 0) {
|
|
pcb->token = 0;
|
|
break;
|
|
}
|
|
|
|
error = tsleep(&pcb->msg, PZERO|PCATCH, "hcictl",
|
|
ng_btsocket_hci_raw_ioctl_timeout * hz);
|
|
if (error != 0) {
|
|
pcb->token = 0;
|
|
break;
|
|
}
|
|
|
|
if (pcb->msg != NULL &&
|
|
pcb->msg->header.cmd == NGM_HCI_NODE_GET_CON_LIST) {
|
|
/* Return data back to user space */
|
|
p1 = (ng_hci_node_con_list_ep *)(pcb->msg->data);
|
|
p2 = (ng_hci_node_con_ep *)(p1 + 1);
|
|
|
|
p->num_connections = min(p->num_connections,
|
|
p1->num_connections);
|
|
if (p->num_connections > 0)
|
|
error = copyout((caddr_t) p2,
|
|
(caddr_t) p->connections,
|
|
p->num_connections * sizeof(*p2));
|
|
} else
|
|
error = EINVAL;
|
|
|
|
NG_FREE_MSG(pcb->msg); /* checks for != NULL */
|
|
pcb->token = 0;
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_LINK_POLICY_MASK: {
|
|
struct ng_btsocket_hci_raw_node_link_policy_mask *p =
|
|
(struct ng_btsocket_hci_raw_node_link_policy_mask *)
|
|
data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_LINK_POLICY_SETTINGS_MASK,
|
|
&p->policy_mask, sizeof(p->policy_mask));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_SET_LINK_POLICY_MASK: {
|
|
struct ng_btsocket_hci_raw_node_link_policy_mask *p =
|
|
(struct ng_btsocket_hci_raw_node_link_policy_mask *)
|
|
data;
|
|
|
|
error = ng_btsocket_raw_send_ngmsg(path,
|
|
NGM_HCI_NODE_SET_LINK_POLICY_SETTINGS_MASK,
|
|
&p->policy_mask, sizeof(p->policy_mask));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_GET_PACKET_MASK: {
|
|
struct ng_btsocket_hci_raw_node_packet_mask *p =
|
|
(struct ng_btsocket_hci_raw_node_packet_mask *) data;
|
|
|
|
error = ng_btsocket_raw_send_sync_ngmsg(pcb, path,
|
|
NGM_HCI_NODE_GET_PACKET_MASK,
|
|
&p->packet_mask, sizeof(p->packet_mask));
|
|
} break;
|
|
|
|
case SIOC_HCI_RAW_NODE_SET_PACKET_MASK: {
|
|
struct ng_btsocket_hci_raw_node_packet_mask *p =
|
|
(struct ng_btsocket_hci_raw_node_packet_mask *) data;
|
|
|
|
error = ng_btsocket_raw_send_ngmsg(path,
|
|
NGM_HCI_NODE_SET_PACKET_MASK,
|
|
&p->packet_mask, sizeof(p->packet_mask));
|
|
|
|
} break;
|
|
|
|
default:
|
|
error = EINVAL;
|
|
break;
|
|
}
|
|
|
|
return (error);
|
|
} /* ng_btsocket_hci_raw_control */
|
|
|
|
/*
|
|
* Process getsockopt/setsockopt system calls
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_ctloutput(struct socket *so, struct sockopt *sopt)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
struct ng_btsocket_hci_raw_filter filter;
|
|
int error = 0, dir;
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
if (sopt->sopt_level != SOL_HCI_RAW)
|
|
return (0);
|
|
|
|
switch (sopt->sopt_dir) {
|
|
case SOPT_GET:
|
|
switch (sopt->sopt_name) {
|
|
case SO_HCI_RAW_FILTER:
|
|
error = sooptcopyout(sopt, &pcb->filter,
|
|
sizeof(pcb->filter));
|
|
break;
|
|
|
|
case SO_HCI_RAW_DIRECTION:
|
|
dir = (pcb->flags & NG_BTSOCKET_HCI_RAW_DIRECTION)?1:0;
|
|
error = sooptcopyout(sopt, &dir, sizeof(dir));
|
|
break;
|
|
|
|
default:
|
|
error = EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case SOPT_SET:
|
|
switch (sopt->sopt_name) {
|
|
case SO_HCI_RAW_FILTER:
|
|
error = sooptcopyin(sopt, &filter, sizeof(filter),
|
|
sizeof(filter));
|
|
if (error == 0)
|
|
bcopy(&filter, &pcb->filter,
|
|
sizeof(pcb->filter));
|
|
break;
|
|
|
|
case SO_HCI_RAW_DIRECTION:
|
|
error = sooptcopyin(sopt, &dir, sizeof(dir),
|
|
sizeof(dir));
|
|
if (error != 0)
|
|
break;
|
|
|
|
if (dir)
|
|
pcb->flags |= NG_BTSOCKET_HCI_RAW_DIRECTION;
|
|
else
|
|
pcb->flags &= ~NG_BTSOCKET_HCI_RAW_DIRECTION;
|
|
break;
|
|
|
|
default:
|
|
error = EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
error = EINVAL;
|
|
break;
|
|
}
|
|
|
|
return (error);
|
|
} /* ng_btsocket_hci_raw_ctloutput */
|
|
|
|
/*
|
|
* Detach raw HCI socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_detach(struct socket *so)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
so->so_pcb = NULL;
|
|
sotryfree(so);
|
|
|
|
mtx_lock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
LIST_REMOVE(pcb, next);
|
|
mtx_unlock(&ng_btsocket_hci_raw_sockets_mtx);
|
|
|
|
bzero(pcb, sizeof(*pcb));
|
|
FREE(pcb, M_NETGRAPH_BTSOCKET_HCI_RAW);
|
|
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_detach */
|
|
|
|
/*
|
|
* Disconnect raw HCI socket
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_disconnect(struct socket *so)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
soisdisconnected(so);
|
|
|
|
return (0);
|
|
} /* ng_btsocket_hci_raw_disconnect */
|
|
|
|
/*
|
|
* Get socket peer's address
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_peeraddr(struct socket *so, struct sockaddr **nam)
|
|
{
|
|
return (EOPNOTSUPP);
|
|
} /* ng_btsocket_hci_raw_peeraddr */
|
|
|
|
/*
|
|
* Send data
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_send(struct socket *so, int flags, struct mbuf *m,
|
|
struct sockaddr *sa, struct mbuf *control, struct thread *td)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
struct mbuf *nam = NULL;
|
|
int error = 0;
|
|
|
|
if (ng_btsocket_hci_raw_node == NULL) {
|
|
error = ENETDOWN;
|
|
goto drop;
|
|
}
|
|
if (pcb == NULL) {
|
|
error = EINVAL;
|
|
goto drop;
|
|
}
|
|
if (control != NULL) {
|
|
error = EINVAL;
|
|
goto drop;
|
|
}
|
|
|
|
if (m->m_pkthdr.len < sizeof(ng_hci_cmd_pkt_t) ||
|
|
m->m_pkthdr.len > sizeof(ng_hci_cmd_pkt_t) + NG_HCI_CMD_PKT_SIZE) {
|
|
error = EMSGSIZE;
|
|
goto drop;
|
|
}
|
|
|
|
if (sa == NULL) {
|
|
if (pcb->addr.hci_node[0] == 0) {
|
|
error = EDESTADDRREQ;
|
|
goto drop;
|
|
}
|
|
|
|
sa = (struct sockaddr *) &pcb->addr;
|
|
}
|
|
|
|
MGET(nam, M_TRYWAIT, MT_SONAME);
|
|
if (nam == NULL) {
|
|
error = ENOBUFS;
|
|
goto drop;
|
|
}
|
|
|
|
nam->m_len = sizeof(struct sockaddr_hci);
|
|
bcopy(sa,mtod(nam, struct sockaddr_hci *),sizeof(struct sockaddr_hci));
|
|
|
|
nam->m_next = m;
|
|
m = NULL;
|
|
|
|
return (ng_send_fn(ng_btsocket_hci_raw_node, NULL,
|
|
ng_btsocket_hci_raw_output, nam, 0));
|
|
drop:
|
|
NG_FREE_M(control); /* NG_FREE_M checks for != NULL */
|
|
NG_FREE_M(nam);
|
|
NG_FREE_M(m);
|
|
|
|
return (error);
|
|
} /* ng_btsocket_hci_raw_send */
|
|
|
|
/*
|
|
* Get socket address
|
|
*/
|
|
|
|
int
|
|
ng_btsocket_hci_raw_sockaddr(struct socket *so, struct sockaddr **nam)
|
|
{
|
|
ng_btsocket_hci_raw_pcb_p pcb = so2hci_raw_pcb(so);
|
|
struct sockaddr_hci sa;
|
|
|
|
if (pcb == NULL)
|
|
return (EINVAL);
|
|
if (ng_btsocket_hci_raw_node == NULL)
|
|
return (EINVAL);
|
|
|
|
bzero(&sa, sizeof(sa));
|
|
sa.hci_len = sizeof(sa);
|
|
sa.hci_family = AF_BLUETOOTH;
|
|
strncpy(sa.hci_node, pcb->addr.hci_node, sizeof(sa.hci_node));
|
|
|
|
*nam = dup_sockaddr((struct sockaddr *) &sa, 0);
|
|
|
|
return ((*nam == NULL)? ENOMEM : 0);
|
|
} /* ng_btsocket_hci_raw_sockaddr */
|
|
|