#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: hci_misc.c,v 1.4 2021/11/22 05:33:57 msaitoh Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/proc.h>
#include <sys/queue.h>
#include <sys/systm.h>
#include <netbt/bluetooth.h>
#include <netbt/hci.h>
int hci_memo_expiry = 600;
int
hci_route_lookup(bdaddr_t *src, bdaddr_t *dest)
{
struct hci_unit *unit;
struct hci_link *link;
struct hci_memo *memo;
SIMPLEQ_FOREACH(unit, &hci_unit_list, hci_next) {
if ((unit->hci_flags & BTF_UP) == 0)
continue;
TAILQ_FOREACH(link, &unit->hci_links, hl_next) {
if (link->hl_type != HCI_LINK_ACL)
continue;
if (bdaddr_same(&link->hl_bdaddr, dest))
goto found;
}
}
SIMPLEQ_FOREACH(unit, &hci_unit_list, hci_next) {
if ((unit->hci_flags & BTF_UP) == 0)
continue;
memo = hci_memo_find(unit, dest);
if (memo)
goto found;
}
SIMPLEQ_FOREACH(unit, &hci_unit_list, hci_next) {
if ((unit->hci_flags & BTF_UP) == 0)
continue;
goto found;
}
return EHOSTUNREACH;
found:
bdaddr_copy(src, &unit->hci_bdaddr);
return 0;
}
struct hci_memo *
hci_memo_find(struct hci_unit *unit, bdaddr_t *bdaddr)
{
struct hci_memo *memo, *m0;
struct timeval now;
microtime(&now);
m0 = LIST_FIRST(&unit->hci_memos);
while ((memo = m0) != NULL) {
m0 = LIST_NEXT(memo, next);
if (now.tv_sec > memo->time.tv_sec + hci_memo_expiry) {
DPRINTF("memo %p too old (expiring)\n", memo);
hci_memo_free(memo);
continue;
}
if (bdaddr_same(bdaddr, &memo->bdaddr)) {
DPRINTF("memo %p found\n", memo);
return memo;
}
}
DPRINTF("no memo found\n");
return NULL;
}
struct hci_memo *
hci_memo_new(struct hci_unit *unit, bdaddr_t *bdaddr)
{
struct hci_memo *memo;
memo = hci_memo_find(unit, bdaddr);
if (memo == NULL) {
memo = malloc(sizeof(struct hci_memo),
M_BLUETOOTH, M_NOWAIT | M_ZERO);
if (memo == NULL) {
DPRINTFN(0, "no memory for memo!\n");
return NULL;
}
DPRINTF("memo created for %02x:%02x:%02x:%02x:%02x:%02x\n",
bdaddr->b[5], bdaddr->b[4], bdaddr->b[3],
bdaddr->b[2], bdaddr->b[1], bdaddr->b[0]);
bdaddr_copy(&memo->bdaddr, bdaddr);
LIST_INSERT_HEAD(&unit->hci_memos, memo, next);
}
else
DPRINTF("memo updated for %02x:%02x:%02x:%02x:%02x:%02x\n",
bdaddr->b[5], bdaddr->b[4], bdaddr->b[3],
bdaddr->b[2], bdaddr->b[1], bdaddr->b[0]);
microtime(&memo->time);
return memo;
}
void
hci_memo_free(struct hci_memo *memo)
{
LIST_REMOVE(memo, next);
free(memo, M_BLUETOOTH);
}