Home | History | Annotate | Line # | Download | only in btconfig
btconfig.c revision 1.5.4.3
      1  1.5.4.3     matt /* btconfig.c,v 1.5.4.2 2008/01/09 02:01:55 matt Exp */
      2      1.1  gdamore 
      3      1.1  gdamore /*-
      4      1.1  gdamore  * Copyright (c) 2006 Itronix Inc.
      5      1.1  gdamore  * All rights reserved.
      6      1.1  gdamore  *
      7      1.1  gdamore  * Written by Iain Hibbert for Itronix Inc.
      8      1.1  gdamore  *
      9      1.1  gdamore  * Redistribution and use in source and binary forms, with or without
     10      1.1  gdamore  * modification, are permitted provided that the following conditions
     11      1.1  gdamore  * are met:
     12      1.1  gdamore  * 1. Redistributions of source code must retain the above copyright
     13      1.1  gdamore  *    notice, this list of conditions and the following disclaimer.
     14      1.1  gdamore  * 2. Redistributions in binary form must reproduce the above copyright
     15      1.1  gdamore  *    notice, this list of conditions and the following disclaimer in the
     16      1.1  gdamore  *    documentation and/or other materials provided with the distribution.
     17      1.1  gdamore  * 3. The name of Itronix Inc. may not be used to endorse
     18      1.1  gdamore  *    or promote products derived from this software without specific
     19      1.1  gdamore  *    prior written permission.
     20      1.1  gdamore  *
     21      1.1  gdamore  * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
     22      1.1  gdamore  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23      1.1  gdamore  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24      1.1  gdamore  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
     25      1.1  gdamore  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     26      1.1  gdamore  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     27      1.1  gdamore  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     28      1.1  gdamore  * ON ANY THEORY OF LIABILITY, WHETHER IN
     29      1.1  gdamore  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30      1.1  gdamore  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31      1.1  gdamore  * POSSIBILITY OF SUCH DAMAGE.
     32      1.1  gdamore  */
     33      1.1  gdamore 
     34      1.1  gdamore #include <sys/cdefs.h>
     35      1.1  gdamore __COPYRIGHT("@(#) Copyright (c) 2006 Itronix, Inc.\n"
     36      1.1  gdamore 	    "All rights reserved.\n");
     37  1.5.4.3     matt __RCSID("btconfig.c,v 1.5.4.2 2008/01/09 02:01:55 matt Exp");
     38      1.1  gdamore 
     39  1.5.4.2     matt #include <sys/ioctl.h>
     40      1.1  gdamore #include <sys/param.h>
     41      1.1  gdamore #include <sys/socket.h>
     42      1.1  gdamore 
     43  1.5.4.2     matt #include <bluetooth.h>
     44  1.5.4.2     matt #include <err.h>
     45  1.5.4.2     matt #include <errno.h>
     46      1.1  gdamore #include <stdio.h>
     47      1.1  gdamore #include <stdlib.h>
     48  1.5.4.2     matt #include <string.h>
     49      1.1  gdamore #include <unistd.h>
     50  1.5.4.2     matt #include <util.h>
     51      1.1  gdamore 
     52  1.5.4.1     matt /* inquiry results storage */
     53  1.5.4.1     matt struct result {
     54  1.5.4.1     matt 	bdaddr_t	bdaddr;
     55  1.5.4.1     matt 	uint8_t		page_scan_rep_mode;
     56  1.5.4.1     matt 	uint8_t		uclass[HCI_CLASS_SIZE];
     57  1.5.4.1     matt 	uint16_t	clock_offset;
     58  1.5.4.1     matt 	int8_t		rssi;
     59  1.5.4.1     matt };
     60  1.5.4.1     matt 
     61      1.1  gdamore int main(int, char *[]);
     62      1.1  gdamore void badarg(const char *);
     63      1.1  gdamore void badparam(const char *);
     64      1.1  gdamore void usage(void);
     65      1.1  gdamore int set_unit(unsigned long);
     66      1.1  gdamore void config_unit(void);
     67      1.1  gdamore void print_info(int);
     68      1.1  gdamore void print_stats(void);
     69      1.1  gdamore void print_class(const char *);
     70      1.1  gdamore void print_voice(int);
     71      1.1  gdamore void tag(const char *);
     72      1.1  gdamore void print_features(const char *, uint8_t *);
     73      1.1  gdamore void do_inquiry(void);
     74  1.5.4.1     matt void print_result(int, struct result *, int);
     75      1.1  gdamore 
     76      1.1  gdamore void hci_req(uint16_t, uint8_t , void *, size_t, void *, size_t);
     77      1.1  gdamore #define save_value(opcode, cbuf, clen)	hci_req(opcode, 0, cbuf, clen, NULL, 0)
     78      1.1  gdamore #define load_value(opcode, rbuf, rlen)	hci_req(opcode, 0, NULL, 0, rbuf, rlen)
     79      1.1  gdamore #define hci_cmd(opcode, cbuf, clen)	hci_req(opcode, 0, cbuf, clen, NULL, 0)
     80      1.1  gdamore 
     81      1.1  gdamore #define MAX_STR_SIZE	0xff
     82      1.1  gdamore 
     83      1.1  gdamore /* print width */
     84      1.1  gdamore int width = 0;
     85      1.1  gdamore #define MAX_WIDTH	70
     86      1.1  gdamore 
     87      1.1  gdamore /* global variables */
     88      1.1  gdamore int hci;
     89      1.1  gdamore struct btreq btr;
     90      1.1  gdamore 
     91      1.1  gdamore /* command line flags */
     92      1.1  gdamore int verbose = 0;	/* more info */
     93      1.1  gdamore int lflag = 0;		/* list devices */
     94      1.1  gdamore int sflag = 0;		/* get/zero stats */
     95      1.1  gdamore 
     96      1.1  gdamore /* device up/down (flag) */
     97      1.1  gdamore int opt_enable = 0;
     98      1.1  gdamore int opt_reset = 0;
     99      1.1  gdamore #define FLAGS_FMT	"\20"			\
    100      1.1  gdamore 			"\001UP"		\
    101      1.1  gdamore 			"\002RUNNING"		\
    102      1.1  gdamore 			"\003XMIT_CMD"		\
    103      1.1  gdamore 			"\004XMIT_ACL"		\
    104      1.1  gdamore 			"\005XMIT_SCO"		\
    105      1.1  gdamore 			"\006INIT_BDADDR"	\
    106      1.1  gdamore 			"\007INIT_BUFFER_SIZE"	\
    107  1.5.4.2     matt 			"\010INIT_FEATURES"	\
    108  1.5.4.2     matt 			"\011POWER_UP_NOOP"	\
    109  1.5.4.2     matt 			"\012INIT_COMMANDS"	\
    110  1.5.4.2     matt 			""
    111      1.1  gdamore 
    112      1.1  gdamore /* authorisation (flag) */
    113      1.1  gdamore int opt_auth = 0;
    114      1.1  gdamore 
    115      1.1  gdamore /* encryption (flag) */
    116      1.1  gdamore int opt_encrypt = 0;
    117      1.1  gdamore 
    118      1.1  gdamore /* scan enable options (flags) */
    119      1.1  gdamore int opt_pscan = 0;
    120      1.1  gdamore int opt_iscan = 0;
    121      1.1  gdamore 
    122      1.1  gdamore /* link policy options (flags) */
    123      1.1  gdamore int opt_switch = 0;
    124      1.1  gdamore int opt_hold = 0;
    125      1.1  gdamore int opt_sniff = 0;
    126      1.1  gdamore int opt_park = 0;
    127      1.1  gdamore 
    128      1.1  gdamore /* class of device (hex value) */
    129      1.1  gdamore int opt_class = 0;
    130      1.1  gdamore uint32_t class;
    131      1.1  gdamore 
    132      1.1  gdamore /* packet type mask (hex value) */
    133      1.1  gdamore int opt_ptype = 0;
    134      1.1  gdamore uint32_t ptype;
    135      1.1  gdamore 
    136      1.1  gdamore /* unit name (string) */
    137      1.1  gdamore int opt_name = 0;
    138      1.1  gdamore char name[MAX_STR_SIZE];
    139      1.1  gdamore 
    140      1.1  gdamore /* pin type */
    141      1.1  gdamore int opt_pin = 0;
    142      1.1  gdamore 
    143      1.1  gdamore /* Inquiry */
    144  1.5.4.1     matt int opt_rssi = 0;			/* inquiry_with_rssi (flag) */
    145      1.1  gdamore int opt_inquiry = 0;
    146      1.1  gdamore #define INQUIRY_LENGTH		10	/* about 12 seconds */
    147      1.1  gdamore #define INQUIRY_MAX_RESPONSES	10
    148      1.1  gdamore 
    149      1.1  gdamore /* Voice Settings */
    150      1.1  gdamore int opt_voice = 0;
    151      1.1  gdamore uint32_t voice;
    152      1.1  gdamore 
    153      1.2     tron /* Page Timeout */
    154      1.2     tron int opt_pto = 0;
    155      1.2     tron uint32_t pto;
    156      1.2     tron 
    157      1.3   plunky /* set SCO mtu */
    158      1.3   plunky int opt_scomtu;
    159      1.3   plunky uint32_t scomtu;
    160      1.3   plunky 
    161      1.1  gdamore struct parameter {
    162      1.1  gdamore 	const char	*name;
    163      1.2     tron 	enum { P_SET, P_CLR, P_STR, P_HEX, P_NUM } type;
    164      1.1  gdamore 	int		*opt;
    165      1.1  gdamore 	void		*val;
    166      1.1  gdamore } parameters[] = {
    167      1.1  gdamore 	{ "up",		P_SET,	&opt_enable,	NULL	},
    168      1.1  gdamore 	{ "enable",	P_SET,	&opt_enable,	NULL	},
    169      1.1  gdamore 	{ "down",	P_CLR,	&opt_enable,	NULL	},
    170      1.1  gdamore 	{ "disable",	P_CLR,	&opt_enable,	NULL	},
    171      1.1  gdamore 	{ "name",	P_STR,	&opt_name,	name	},
    172      1.1  gdamore 	{ "pscan",	P_SET,	&opt_pscan,	NULL	},
    173      1.1  gdamore 	{ "-pscan",	P_CLR,	&opt_pscan,	NULL	},
    174      1.1  gdamore 	{ "iscan",	P_SET,	&opt_iscan,	NULL	},
    175      1.1  gdamore 	{ "-iscan",	P_CLR,	&opt_iscan,	NULL	},
    176      1.1  gdamore 	{ "switch",	P_SET,	&opt_switch,	NULL	},
    177      1.1  gdamore 	{ "-switch",	P_CLR,	&opt_switch,	NULL	},
    178      1.1  gdamore 	{ "hold",	P_SET,	&opt_hold,	NULL	},
    179      1.1  gdamore 	{ "-hold",	P_CLR,	&opt_hold,	NULL	},
    180      1.1  gdamore 	{ "sniff",	P_SET,	&opt_sniff,	NULL	},
    181      1.1  gdamore 	{ "-sniff",	P_CLR,	&opt_sniff,	NULL	},
    182      1.1  gdamore 	{ "park",	P_SET,	&opt_park,	NULL	},
    183      1.1  gdamore 	{ "-park",	P_CLR,	&opt_park,	NULL	},
    184      1.1  gdamore 	{ "auth",	P_SET,	&opt_auth,	NULL	},
    185      1.1  gdamore 	{ "-auth",	P_CLR,	&opt_auth,	NULL	},
    186      1.1  gdamore 	{ "encrypt",	P_SET,	&opt_encrypt,	NULL	},
    187      1.1  gdamore 	{ "-encrypt",	P_CLR,	&opt_encrypt,	NULL	},
    188      1.1  gdamore 	{ "ptype",	P_HEX,	&opt_ptype,	&ptype	},
    189      1.1  gdamore 	{ "class",	P_HEX,	&opt_class,	&class	},
    190      1.1  gdamore 	{ "fixed",	P_SET,	&opt_pin,	NULL	},
    191      1.1  gdamore 	{ "variable",	P_CLR,	&opt_pin,	NULL	},
    192      1.1  gdamore 	{ "inq",	P_SET,	&opt_inquiry,	NULL	},
    193      1.1  gdamore 	{ "inquiry",	P_SET,	&opt_inquiry,	NULL	},
    194  1.5.4.1     matt 	{ "rssi",	P_SET,	&opt_rssi,	NULL	},
    195  1.5.4.1     matt 	{ "-rssi",	P_CLR,	&opt_rssi,	NULL	},
    196      1.1  gdamore 	{ "reset",	P_SET,	&opt_reset,	NULL	},
    197      1.1  gdamore 	{ "voice",	P_HEX,	&opt_voice,	&voice	},
    198      1.2     tron 	{ "pto",	P_NUM,	&opt_pto,	&pto	},
    199      1.3   plunky 	{ "scomtu",	P_NUM,	&opt_scomtu,	&scomtu	},
    200      1.5   plunky 	{ NULL,		0,	NULL,		NULL	}
    201      1.1  gdamore };
    202      1.1  gdamore 
    203      1.1  gdamore int
    204      1.1  gdamore main(int ac, char *av[])
    205      1.1  gdamore {
    206      1.1  gdamore 	int ch;
    207      1.1  gdamore 	struct parameter *p;
    208      1.1  gdamore 
    209      1.1  gdamore 	while ((ch = getopt(ac, av, "hlsvz")) != -1) {
    210      1.1  gdamore 		switch(ch) {
    211      1.1  gdamore 		case 'l':
    212      1.1  gdamore 			lflag = 1;
    213      1.1  gdamore 			break;
    214      1.1  gdamore 
    215      1.1  gdamore 		case 's':
    216      1.1  gdamore 			sflag = 1;
    217      1.1  gdamore 			break;
    218      1.1  gdamore 
    219      1.1  gdamore 		case 'v':
    220      1.1  gdamore 			verbose++;
    221      1.1  gdamore 			break;
    222      1.1  gdamore 
    223      1.1  gdamore 		case 'z':
    224      1.1  gdamore 			sflag = 2;
    225      1.1  gdamore 			break;
    226      1.1  gdamore 
    227      1.1  gdamore 		case 'h':
    228      1.1  gdamore 		default:
    229      1.1  gdamore 			usage();
    230      1.1  gdamore 		}
    231      1.1  gdamore 	}
    232      1.1  gdamore 	av += optind;
    233      1.1  gdamore 	ac -= optind;
    234      1.1  gdamore 
    235      1.1  gdamore 	if (lflag && sflag)
    236      1.1  gdamore 		usage();
    237      1.1  gdamore 
    238      1.1  gdamore 	hci = socket(PF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI);
    239      1.1  gdamore 	if (hci == -1)
    240      1.1  gdamore 		err(EXIT_FAILURE, "socket");
    241      1.1  gdamore 
    242      1.1  gdamore 	if (ac == 0) {
    243      1.1  gdamore 		verbose++;
    244      1.1  gdamore 
    245      1.1  gdamore 		memset(&btr, 0, sizeof(btr));
    246      1.1  gdamore 		while (set_unit(SIOCNBTINFO) != -1) {
    247      1.1  gdamore 			print_info(verbose);
    248      1.1  gdamore 			print_stats();
    249      1.1  gdamore 		}
    250      1.1  gdamore 
    251      1.1  gdamore 		tag(NULL);
    252      1.1  gdamore 	} else {
    253      1.1  gdamore 		strlcpy(btr.btr_name, *av, HCI_DEVNAME_SIZE);
    254      1.1  gdamore 		av++, ac--;
    255      1.1  gdamore 
    256      1.1  gdamore 		if (set_unit(SIOCGBTINFO) < 0)
    257      1.1  gdamore 			err(EXIT_FAILURE, "%s", btr.btr_name);
    258      1.1  gdamore 
    259      1.1  gdamore 		if (ac == 0)
    260      1.1  gdamore 			verbose += 2;
    261      1.1  gdamore 
    262      1.1  gdamore 		while (ac > 0) {
    263      1.1  gdamore 			for (p = parameters ; ; p++) {
    264      1.1  gdamore 				if (p->name == NULL)
    265      1.1  gdamore 					badparam(*av);
    266      1.1  gdamore 
    267      1.1  gdamore 				if (strcmp(*av, p->name) == 0)
    268      1.1  gdamore 					break;
    269      1.1  gdamore 			}
    270      1.1  gdamore 
    271      1.1  gdamore 			switch(p->type) {
    272      1.1  gdamore 			case P_SET:
    273      1.1  gdamore 				*(p->opt) = 1;
    274      1.1  gdamore 				break;
    275      1.1  gdamore 
    276      1.1  gdamore 			case P_CLR:
    277      1.1  gdamore 				*(p->opt) = -1;
    278      1.1  gdamore 				break;
    279      1.1  gdamore 
    280      1.1  gdamore 			case P_STR:
    281      1.1  gdamore 				if (--ac < 1) badarg(p->name);
    282      1.1  gdamore 				strlcpy((char *)(p->val), *++av, MAX_STR_SIZE);
    283      1.1  gdamore 				*(p->opt) = 1;
    284      1.1  gdamore 				break;
    285      1.1  gdamore 
    286      1.1  gdamore 			case P_HEX:
    287      1.1  gdamore 				if (--ac < 1) badarg(p->name);
    288      1.5   plunky 				*(uint32_t *)(p->val) = strtoul(*++av, NULL, 16);
    289      1.1  gdamore 				*(p->opt) = 1;
    290      1.1  gdamore 				break;
    291      1.2     tron 
    292      1.2     tron 			case P_NUM:
    293      1.2     tron 				if (--ac < 1) badarg(p->name);
    294      1.5   plunky 				*(uint32_t *)(p->val) = strtoul(*++av, NULL, 10);
    295      1.2     tron 				*(p->opt) = 1;
    296      1.2     tron 				break;
    297      1.1  gdamore 			}
    298      1.1  gdamore 
    299      1.1  gdamore 			av++, ac--;
    300      1.1  gdamore 		}
    301      1.1  gdamore 
    302      1.1  gdamore 		config_unit();
    303      1.1  gdamore 		print_info(verbose);
    304      1.1  gdamore 		print_stats();
    305      1.1  gdamore 		do_inquiry();
    306      1.1  gdamore 	}
    307      1.1  gdamore 
    308      1.1  gdamore 	close(hci);
    309      1.1  gdamore 	return EXIT_SUCCESS;
    310      1.1  gdamore }
    311      1.1  gdamore 
    312      1.1  gdamore void
    313      1.1  gdamore badparam(const char *param)
    314      1.1  gdamore {
    315      1.1  gdamore 
    316      1.1  gdamore 	fprintf(stderr, "unknown parameter '%s'\n", param);
    317      1.1  gdamore 	exit(EXIT_FAILURE);
    318      1.1  gdamore }
    319      1.1  gdamore 
    320      1.1  gdamore void
    321      1.1  gdamore badarg(const char *param)
    322      1.1  gdamore {
    323      1.1  gdamore 
    324      1.1  gdamore 	fprintf(stderr, "parameter '%s' needs argument\n", param);
    325      1.1  gdamore 	exit(EXIT_FAILURE);
    326      1.1  gdamore }
    327      1.1  gdamore 
    328      1.1  gdamore void
    329      1.1  gdamore usage(void)
    330      1.1  gdamore {
    331      1.1  gdamore 
    332      1.1  gdamore 	fprintf(stderr, "usage:	%s [-svz] [device [parameters]]\n", getprogname());
    333      1.1  gdamore 	fprintf(stderr, "	%s -l\n", getprogname());
    334      1.1  gdamore 	exit(EXIT_FAILURE);
    335      1.1  gdamore }
    336      1.1  gdamore 
    337      1.1  gdamore /*
    338      1.1  gdamore  * pretty printing feature
    339      1.1  gdamore  */
    340      1.1  gdamore void
    341      1.1  gdamore tag(const char *f)
    342      1.1  gdamore {
    343      1.1  gdamore 
    344      1.1  gdamore 	if (f == NULL) {
    345      1.1  gdamore 		if (width > 0)
    346      1.1  gdamore 			printf("\n");
    347      1.1  gdamore 
    348      1.1  gdamore 		width = 0;
    349      1.1  gdamore 	} else {
    350      1.1  gdamore 		width += printf("%*s%s",
    351      1.1  gdamore 				(width == 0 ? (lflag ? 0 : 8) : 1),
    352      1.1  gdamore 				"", f);
    353      1.1  gdamore 
    354      1.1  gdamore 		if (width > MAX_WIDTH) {
    355      1.1  gdamore 			printf("\n");
    356      1.1  gdamore 			width = 0;
    357      1.1  gdamore 		}
    358      1.1  gdamore 	}
    359      1.1  gdamore }
    360      1.1  gdamore 
    361      1.1  gdamore /*
    362      1.1  gdamore  * basic HCI cmd request function with argument return.
    363      1.1  gdamore  *
    364      1.1  gdamore  * Normally, this will return on COMMAND_STATUS or COMMAND_COMPLETE for the given
    365      1.1  gdamore  * opcode, but if event is given then it will ignore COMMAND_STATUS (unless error)
    366      1.1  gdamore  * and wait for the specified event.
    367      1.1  gdamore  *
    368      1.1  gdamore  * if rbuf/rlen is given, results will be copied into the result buffer for
    369      1.1  gdamore  * COMMAND_COMPLETE/event responses.
    370      1.1  gdamore  */
    371      1.1  gdamore void
    372      1.1  gdamore hci_req(uint16_t opcode, uint8_t event, void *cbuf, size_t clen, void *rbuf, size_t rlen)
    373      1.1  gdamore {
    374      1.1  gdamore 	uint8_t msg[sizeof(hci_cmd_hdr_t) + HCI_CMD_PKT_SIZE];
    375      1.1  gdamore 	hci_event_hdr_t *ep;
    376      1.1  gdamore 	hci_cmd_hdr_t *cp;
    377      1.1  gdamore 
    378      1.1  gdamore 	cp = (hci_cmd_hdr_t *)msg;
    379      1.1  gdamore 	cp->type = HCI_CMD_PKT;
    380      1.1  gdamore 	cp->opcode = opcode = htole16(opcode);
    381      1.1  gdamore 	cp->length = clen = MIN(clen, sizeof(msg) - sizeof(hci_cmd_hdr_t));
    382      1.1  gdamore 
    383      1.1  gdamore 	if (clen) memcpy((cp + 1), cbuf, clen);
    384      1.1  gdamore 
    385      1.1  gdamore 	if (send(hci, msg, sizeof(hci_cmd_hdr_t) + clen, 0) < 0)
    386      1.1  gdamore 		err(EXIT_FAILURE, "HCI Send");
    387      1.1  gdamore 
    388      1.1  gdamore 	ep = (hci_event_hdr_t *)msg;
    389      1.1  gdamore 	for(;;) {
    390      1.1  gdamore 		if (recv(hci, msg, sizeof(msg), 0) < 0) {
    391      1.1  gdamore 			if (errno == EAGAIN || errno == EINTR)
    392      1.1  gdamore 				continue;
    393      1.1  gdamore 
    394      1.1  gdamore 			err(EXIT_FAILURE, "HCI Recv");
    395      1.1  gdamore 		}
    396      1.1  gdamore 
    397      1.1  gdamore 		if (ep->event == HCI_EVENT_COMMAND_STATUS) {
    398      1.1  gdamore 			hci_command_status_ep *cs;
    399      1.1  gdamore 
    400      1.1  gdamore 			cs = (hci_command_status_ep *)(ep + 1);
    401      1.1  gdamore 			if (cs->opcode != opcode)
    402      1.1  gdamore 				continue;
    403      1.1  gdamore 
    404      1.1  gdamore 			if (cs->status)
    405      1.1  gdamore 				errx(EXIT_FAILURE,
    406      1.1  gdamore 				    "HCI cmd (%4.4x) failed (status %d)",
    407      1.1  gdamore 				    opcode, cs->status);
    408      1.1  gdamore 
    409      1.1  gdamore 			if (event == 0)
    410      1.1  gdamore 				break;
    411      1.1  gdamore 
    412      1.1  gdamore 			continue;
    413      1.1  gdamore 		}
    414      1.1  gdamore 
    415      1.1  gdamore 		if (ep->event == HCI_EVENT_COMMAND_COMPL) {
    416      1.1  gdamore 			hci_command_compl_ep *cc;
    417      1.1  gdamore 			uint8_t *ptr;
    418      1.1  gdamore 
    419      1.1  gdamore 			cc = (hci_command_compl_ep *)(ep + 1);
    420      1.1  gdamore 			if (cc->opcode != opcode)
    421      1.1  gdamore 				continue;
    422      1.1  gdamore 
    423      1.1  gdamore 			if (rbuf == NULL)
    424      1.1  gdamore 				break;
    425      1.1  gdamore 
    426      1.1  gdamore 			ptr = (uint8_t *)(cc + 1);
    427      1.1  gdamore 			if (*ptr)
    428      1.1  gdamore 				errx(EXIT_FAILURE,
    429      1.1  gdamore 				    "HCI cmd (%4.4x) failed (status %d)",
    430      1.1  gdamore 				    opcode, *ptr);
    431      1.1  gdamore 
    432      1.1  gdamore 			memcpy(rbuf, ++ptr, rlen);
    433      1.1  gdamore 			break;
    434      1.1  gdamore 		}
    435      1.1  gdamore 
    436      1.1  gdamore 		if (ep->event == event) {
    437      1.1  gdamore 			if (rbuf == NULL)
    438      1.1  gdamore 				break;
    439      1.1  gdamore 
    440      1.1  gdamore 			memcpy(rbuf, (ep + 1), rlen);
    441      1.1  gdamore 			break;
    442      1.1  gdamore 		}
    443      1.1  gdamore 	}
    444      1.1  gdamore }
    445      1.1  gdamore 
    446      1.1  gdamore int
    447      1.1  gdamore set_unit(unsigned long cmd)
    448      1.1  gdamore {
    449      1.1  gdamore 
    450      1.1  gdamore 	if (ioctl(hci, cmd, &btr) == -1)
    451      1.1  gdamore 		return -1;
    452      1.1  gdamore 
    453      1.1  gdamore 	if (btr.btr_flags & BTF_UP) {
    454      1.1  gdamore 		struct sockaddr_bt sa;
    455      1.1  gdamore 
    456      1.1  gdamore 		sa.bt_len = sizeof(sa);
    457      1.1  gdamore 		sa.bt_family = AF_BLUETOOTH;
    458      1.1  gdamore 		bdaddr_copy(&sa.bt_bdaddr, &btr.btr_bdaddr);
    459      1.1  gdamore 
    460      1.1  gdamore 		if (bind(hci, (struct sockaddr *)&sa, sizeof(sa)) < 0)
    461      1.1  gdamore 			err(EXIT_FAILURE, "bind");
    462      1.1  gdamore 
    463      1.1  gdamore 		if (connect(hci, (struct sockaddr *)&sa, sizeof(sa)) < 0)
    464      1.1  gdamore 			err(EXIT_FAILURE, "connect");
    465      1.1  gdamore 	}
    466      1.1  gdamore 
    467      1.1  gdamore 	return 0;
    468      1.1  gdamore }
    469      1.1  gdamore 
    470      1.1  gdamore /*
    471      1.1  gdamore  * apply configuration parameters to unit
    472      1.1  gdamore  */
    473      1.1  gdamore void
    474      1.1  gdamore config_unit(void)
    475      1.1  gdamore {
    476      1.1  gdamore 
    477      1.1  gdamore 	if (opt_enable) {
    478      1.1  gdamore 		if (opt_enable > 0)
    479      1.1  gdamore 			btr.btr_flags |= BTF_UP;
    480      1.1  gdamore 		else
    481      1.1  gdamore 			btr.btr_flags &= ~BTF_UP;
    482      1.1  gdamore 
    483      1.1  gdamore 		if (ioctl(hci, SIOCSBTFLAGS, &btr) < 0)
    484      1.1  gdamore 			err(EXIT_FAILURE, "SIOCSBTFLAGS");
    485      1.1  gdamore 
    486      1.1  gdamore 		if (set_unit(SIOCGBTINFO) < 0)
    487      1.1  gdamore 			err(EXIT_FAILURE, "%s", btr.btr_name);
    488      1.1  gdamore 	}
    489      1.1  gdamore 
    490      1.1  gdamore 	if (opt_reset) {
    491      1.1  gdamore 		hci_cmd(HCI_CMD_RESET, NULL, 0);
    492      1.1  gdamore 
    493      1.1  gdamore 		btr.btr_flags |= BTF_INIT;
    494      1.1  gdamore 		if (ioctl(hci, SIOCSBTFLAGS, &btr) < 0)
    495      1.1  gdamore 			err(EXIT_FAILURE, "SIOCSBTFLAGS");
    496      1.1  gdamore 
    497      1.1  gdamore 		/*
    498      1.1  gdamore 		 * although the reset command will automatically
    499      1.1  gdamore 		 * carry out these commands, we do them manually
    500      1.1  gdamore 		 * just so we can wait for completion.
    501      1.1  gdamore 		 */
    502      1.1  gdamore 		hci_cmd(HCI_CMD_READ_BDADDR, NULL, 0);
    503      1.1  gdamore 		hci_cmd(HCI_CMD_READ_BUFFER_SIZE, NULL, 0);
    504      1.1  gdamore 		hci_cmd(HCI_CMD_READ_LOCAL_FEATURES, NULL, 0);
    505      1.1  gdamore 
    506      1.1  gdamore 		if (set_unit(SIOCGBTINFO) < 0)
    507      1.1  gdamore 			err(EXIT_FAILURE, "%s", btr.btr_name);
    508      1.1  gdamore 	}
    509      1.1  gdamore 
    510      1.1  gdamore 	if (opt_switch || opt_hold || opt_sniff || opt_park) {
    511      1.1  gdamore 		uint16_t val = btr.btr_link_policy;
    512      1.1  gdamore 
    513      1.1  gdamore 		if (opt_switch > 0) val |= HCI_LINK_POLICY_ENABLE_ROLE_SWITCH;
    514      1.1  gdamore 		if (opt_switch < 0) val &= ~HCI_LINK_POLICY_ENABLE_ROLE_SWITCH;
    515      1.1  gdamore 		if (opt_hold > 0)   val |= HCI_LINK_POLICY_ENABLE_HOLD_MODE;
    516      1.1  gdamore 		if (opt_hold < 0)   val &= ~HCI_LINK_POLICY_ENABLE_HOLD_MODE;
    517      1.1  gdamore 		if (opt_sniff > 0)  val |= HCI_LINK_POLICY_ENABLE_SNIFF_MODE;
    518      1.1  gdamore 		if (opt_sniff < 0)  val &= ~HCI_LINK_POLICY_ENABLE_SNIFF_MODE;
    519      1.1  gdamore 		if (opt_park > 0)   val |= HCI_LINK_POLICY_ENABLE_PARK_MODE;
    520      1.1  gdamore 		if (opt_park < 0)   val &= ~HCI_LINK_POLICY_ENABLE_PARK_MODE;
    521      1.1  gdamore 
    522      1.1  gdamore 		btr.btr_link_policy = val;
    523      1.1  gdamore 		if (ioctl(hci, SIOCSBTPOLICY, &btr) < 0)
    524      1.1  gdamore 			err(EXIT_FAILURE, "SIOCSBTPOLICY");
    525      1.1  gdamore 	}
    526      1.1  gdamore 
    527      1.1  gdamore 	if (opt_ptype) {
    528      1.1  gdamore 		btr.btr_packet_type = ptype;
    529      1.1  gdamore 		if (ioctl(hci, SIOCSBTPTYPE, &btr) < 0)
    530      1.1  gdamore 			err(EXIT_FAILURE, "SIOCSBTPTYPE");
    531      1.1  gdamore 	}
    532      1.1  gdamore 
    533      1.1  gdamore 	if (opt_pscan || opt_iscan) {
    534      1.1  gdamore 		uint8_t val;
    535      1.1  gdamore 
    536      1.1  gdamore 		load_value(HCI_CMD_READ_SCAN_ENABLE, &val, sizeof(val));
    537      1.1  gdamore 		if (opt_pscan > 0) val |= HCI_PAGE_SCAN_ENABLE;
    538      1.1  gdamore 		if (opt_pscan < 0) val &= ~HCI_PAGE_SCAN_ENABLE;
    539      1.1  gdamore 		if (opt_iscan > 0) val |= HCI_INQUIRY_SCAN_ENABLE;
    540      1.1  gdamore 		if (opt_iscan < 0) val &= ~HCI_INQUIRY_SCAN_ENABLE;
    541      1.1  gdamore 		save_value(HCI_CMD_WRITE_SCAN_ENABLE, &val, sizeof(val));
    542      1.1  gdamore 	}
    543      1.1  gdamore 
    544      1.1  gdamore 	if (opt_auth) {
    545      1.1  gdamore 		uint8_t val = (opt_auth > 0 ? 1 : 0);
    546      1.1  gdamore 
    547      1.1  gdamore 		save_value(HCI_CMD_WRITE_AUTH_ENABLE, &val, sizeof(val));
    548      1.1  gdamore 	}
    549      1.1  gdamore 
    550      1.1  gdamore 	if (opt_encrypt) {
    551      1.1  gdamore 		uint8_t val = (opt_encrypt > 0 ? 1 : 0);
    552      1.1  gdamore 
    553      1.1  gdamore 		save_value(HCI_CMD_WRITE_ENCRYPTION_MODE, &val, sizeof(val));
    554      1.1  gdamore 	}
    555      1.1  gdamore 
    556      1.1  gdamore 	if (opt_name)
    557      1.1  gdamore 		save_value(HCI_CMD_WRITE_LOCAL_NAME, name, HCI_UNIT_NAME_SIZE);
    558      1.1  gdamore 
    559      1.1  gdamore 	if (opt_class) {
    560      1.1  gdamore 		uint8_t val[HCI_CLASS_SIZE];
    561      1.1  gdamore 
    562      1.1  gdamore 		val[0] = (class >> 0) & 0xff;
    563      1.1  gdamore 		val[1] = (class >> 8) & 0xff;
    564      1.1  gdamore 		val[2] = (class >> 16) & 0xff;
    565      1.1  gdamore 
    566      1.1  gdamore 		save_value(HCI_CMD_WRITE_UNIT_CLASS, val, HCI_CLASS_SIZE);
    567      1.1  gdamore 	}
    568      1.1  gdamore 
    569      1.1  gdamore 	if (opt_pin) {
    570      1.1  gdamore 		uint8_t val;
    571      1.1  gdamore 
    572      1.1  gdamore 		if (opt_pin > 0)	val = 1;
    573      1.1  gdamore 		else			val = 0;
    574      1.1  gdamore 
    575      1.1  gdamore 		save_value(HCI_CMD_WRITE_PIN_TYPE, &val, sizeof(val));
    576      1.1  gdamore 	}
    577      1.1  gdamore 
    578      1.1  gdamore 	if (opt_voice) {
    579      1.1  gdamore 		uint16_t val;
    580      1.1  gdamore 
    581      1.1  gdamore 		val = htole16(voice & 0x03ff);
    582      1.1  gdamore 		save_value(HCI_CMD_WRITE_VOICE_SETTING, &val, sizeof(val));
    583      1.1  gdamore 	}
    584      1.2     tron 
    585      1.2     tron 	if (opt_pto) {
    586      1.2     tron 		uint16_t val;
    587      1.2     tron 
    588      1.2     tron 		val = htole16(pto * 8 / 5);
    589      1.2     tron 		save_value(HCI_CMD_WRITE_PAGE_TIMEOUT, &val, sizeof(val));
    590      1.2     tron 	}
    591      1.3   plunky 
    592      1.3   plunky 	if (opt_scomtu) {
    593      1.5   plunky 		if (scomtu > 0xff) {
    594      1.3   plunky 			warnx("Invalid SCO mtu %d", scomtu);
    595      1.3   plunky 		} else {
    596      1.3   plunky 			btr.btr_sco_mtu = scomtu;
    597      1.3   plunky 
    598      1.3   plunky 			if (ioctl(hci, SIOCSBTSCOMTU, &btr) < 0)
    599      1.3   plunky 				warn("SIOCSBTSCOMTU");
    600      1.3   plunky 		}
    601      1.3   plunky 	}
    602  1.5.4.1     matt 
    603  1.5.4.1     matt 	if (opt_rssi) {
    604  1.5.4.1     matt 		uint8_t val = (opt_rssi > 0 ? 1 : 0);
    605  1.5.4.1     matt 
    606  1.5.4.1     matt 		save_value(HCI_CMD_WRITE_INQUIRY_MODE, &val, sizeof(val));
    607  1.5.4.1     matt 	}
    608      1.1  gdamore }
    609      1.1  gdamore 
    610      1.1  gdamore /*
    611      1.1  gdamore  * Print info for Bluetooth Device with varying verbosity levels
    612      1.1  gdamore  */
    613      1.1  gdamore void
    614      1.1  gdamore print_info(int level)
    615      1.1  gdamore {
    616  1.5.4.2     matt 	uint8_t version, val, buf[MAX_STR_SIZE];
    617      1.2     tron 	uint16_t val16;
    618      1.1  gdamore 
    619      1.1  gdamore 	if (lflag) {
    620      1.1  gdamore 		tag(btr.btr_name);
    621      1.1  gdamore 		return;
    622      1.1  gdamore 	}
    623      1.1  gdamore 
    624      1.1  gdamore 	if (level-- < 1)
    625      1.1  gdamore 		return;
    626      1.1  gdamore 
    627      1.1  gdamore 	snprintb((char *)buf, MAX_STR_SIZE, FLAGS_FMT, btr.btr_flags);
    628      1.1  gdamore 
    629      1.1  gdamore 	printf("%s: bdaddr %s flags %s\n", btr.btr_name,
    630      1.1  gdamore 		bt_ntoa(&btr.btr_bdaddr, NULL), buf);
    631      1.1  gdamore 
    632      1.1  gdamore 	if (level-- < 1)
    633      1.1  gdamore 		return;
    634      1.1  gdamore 
    635      1.1  gdamore 	printf("\tnum_cmd = %d\n"
    636      1.1  gdamore 	       "\tnum_acl = %d, acl_mtu = %d\n"
    637      1.1  gdamore 	       "\tnum_sco = %d, sco_mtu = %d\n",
    638      1.1  gdamore 	       btr.btr_num_cmd,
    639      1.1  gdamore 	       btr.btr_num_acl, btr.btr_acl_mtu,
    640      1.1  gdamore 	       btr.btr_num_sco, btr.btr_sco_mtu);
    641      1.1  gdamore 
    642      1.1  gdamore 	if (level-- < 1 || (btr.btr_flags & BTF_UP) == 0)
    643      1.1  gdamore 		return;
    644      1.1  gdamore 
    645  1.5.4.2     matt 	load_value(HCI_CMD_READ_LOCAL_VER, &version, sizeof(version));
    646  1.5.4.2     matt 	printf("\tHCI version: ");
    647  1.5.4.2     matt 	switch(version) {
    648  1.5.4.2     matt 	case HCI_SPEC_V10:	printf("1.0\n");	break;
    649  1.5.4.2     matt 	case HCI_SPEC_V11:	printf("1.0b\n");	break;
    650  1.5.4.2     matt 	case HCI_SPEC_V12:	printf("1.2\n");	break;
    651  1.5.4.2     matt 	case HCI_SPEC_V20:	printf("2.0\n");	break;
    652  1.5.4.3     matt 	case HCI_SPEC_V21:	printf("2.1\n");	break;
    653  1.5.4.2     matt 	default:		printf("unknown\n");	break;
    654  1.5.4.2     matt 	}
    655  1.5.4.2     matt 
    656      1.1  gdamore 	load_value(HCI_CMD_READ_UNIT_CLASS, buf, HCI_CLASS_SIZE);
    657      1.1  gdamore 	class = (buf[2] << 16) | (buf[1] << 8) | (buf[0]);
    658      1.1  gdamore 	print_class("\t");
    659      1.1  gdamore 
    660      1.1  gdamore 	load_value(HCI_CMD_READ_LOCAL_NAME, buf, HCI_UNIT_NAME_SIZE);
    661      1.1  gdamore 	printf("\tname: \"%s\"\n", buf);
    662      1.1  gdamore 
    663      1.1  gdamore 	load_value(HCI_CMD_READ_VOICE_SETTING, buf, sizeof(uint16_t));
    664      1.1  gdamore 	voice = (buf[1] << 8) | buf[0];
    665      1.1  gdamore 	print_voice(level);
    666      1.1  gdamore 
    667      1.1  gdamore 	load_value(HCI_CMD_READ_PIN_TYPE, &val, sizeof(val));
    668      1.1  gdamore 	printf("\tpin: %s\n", val ? "fixed" : "variable");
    669      1.1  gdamore 
    670      1.1  gdamore 	width = printf("\toptions:");
    671      1.1  gdamore 
    672      1.1  gdamore 	load_value(HCI_CMD_READ_SCAN_ENABLE, &val, sizeof(val));
    673      1.1  gdamore 	if (val & HCI_INQUIRY_SCAN_ENABLE)	tag("iscan");
    674      1.1  gdamore 	else if (level > 0)			tag("-iscan");
    675      1.1  gdamore 
    676      1.1  gdamore 	if (val & HCI_PAGE_SCAN_ENABLE)		tag("pscan");
    677      1.1  gdamore 	else if (level > 0)			tag("-pscan");
    678      1.1  gdamore 
    679      1.1  gdamore 	load_value(HCI_CMD_READ_AUTH_ENABLE, &val, sizeof(val));
    680      1.1  gdamore 	if (val)				tag("auth");
    681      1.1  gdamore 	else if (level > 0)			tag("-auth");
    682      1.1  gdamore 
    683      1.1  gdamore 	load_value(HCI_CMD_READ_ENCRYPTION_MODE, &val, sizeof(val));
    684      1.1  gdamore 	if (val)				tag("encrypt");
    685      1.1  gdamore 	else if (level > 0)			tag("-encrypt");
    686      1.1  gdamore 
    687      1.1  gdamore 	val = btr.btr_link_policy;
    688      1.1  gdamore 	if (val & HCI_LINK_POLICY_ENABLE_ROLE_SWITCH)	tag("switch");
    689      1.1  gdamore 	else if (level > 0)				tag("-switch");
    690      1.1  gdamore 	if (val & HCI_LINK_POLICY_ENABLE_HOLD_MODE)	tag("hold");
    691      1.1  gdamore 	else if (level > 0)				tag("-hold");
    692      1.1  gdamore 	if (val & HCI_LINK_POLICY_ENABLE_SNIFF_MODE)	tag("sniff");
    693      1.1  gdamore 	else if (level > 0)				tag("-sniff");
    694      1.1  gdamore 	if (val & HCI_LINK_POLICY_ENABLE_PARK_MODE)	tag("park");
    695      1.1  gdamore 	else if (level > 0)				tag("-park");
    696      1.1  gdamore 
    697  1.5.4.2     matt 	val = 0;
    698  1.5.4.2     matt 	if (version >= HCI_SPEC_V12)
    699  1.5.4.2     matt 		load_value(HCI_CMD_READ_INQUIRY_MODE, &val, sizeof(val));
    700  1.5.4.2     matt 
    701  1.5.4.1     matt 	if (val)				tag("rssi");
    702  1.5.4.1     matt 	else if (level > 0)			tag("-rssi");
    703  1.5.4.1     matt 
    704      1.1  gdamore 	tag(NULL);
    705      1.1  gdamore 
    706      1.1  gdamore 	if (level-- < 1)
    707      1.1  gdamore 		return;
    708      1.1  gdamore 
    709      1.2     tron 	ptype = btr.btr_packet_type;
    710      1.2     tron 	width = printf("\tptype: [0x%04x]", ptype);
    711      1.2     tron 	if (ptype & HCI_PKT_DM1)		tag("DM1");
    712      1.2     tron 	if (ptype & HCI_PKT_DH1)		tag("DH1");
    713      1.2     tron 	if (ptype & HCI_PKT_DM3)		tag("DM3");
    714      1.2     tron 	if (ptype & HCI_PKT_DH3)		tag("DH3");
    715      1.2     tron 	if (ptype & HCI_PKT_DM5)		tag("DM5");
    716      1.2     tron 	if (ptype & HCI_PKT_DH5)		tag("DH5");
    717      1.2     tron 	if ((ptype & HCI_PKT_2MBPS_DH1) == 0)	tag("2-DH1");
    718      1.2     tron 	if ((ptype & HCI_PKT_3MBPS_DH1) == 0)	tag("3-DH1");
    719      1.2     tron 	if ((ptype & HCI_PKT_2MBPS_DH3) == 0)	tag("2-DH3");
    720      1.2     tron 	if ((ptype & HCI_PKT_3MBPS_DH3) == 0)	tag("3-DH3");
    721      1.2     tron 	if ((ptype & HCI_PKT_2MBPS_DH5) == 0)	tag("2-DH5");
    722      1.2     tron 	if ((ptype & HCI_PKT_3MBPS_DH5) == 0)	tag("3-DH5");
    723      1.2     tron 	tag(NULL);
    724      1.2     tron 
    725      1.2     tron 	load_value(HCI_CMD_READ_PAGE_TIMEOUT, &val16, sizeof(val16));
    726      1.2     tron 	printf("\tpage timeout: %d ms\n", val16 * 5 / 8);
    727      1.1  gdamore 
    728      1.1  gdamore 	if (level-- < 1)
    729      1.1  gdamore 		return;
    730      1.1  gdamore 
    731      1.1  gdamore 	load_value(HCI_CMD_READ_LOCAL_FEATURES, buf, HCI_FEATURES_SIZE);
    732      1.1  gdamore 	print_features("\tfeatures:", buf);
    733      1.1  gdamore }
    734      1.1  gdamore 
    735      1.1  gdamore void
    736      1.1  gdamore print_stats(void)
    737      1.1  gdamore {
    738      1.1  gdamore 
    739      1.1  gdamore 	if (sflag == 0)
    740      1.1  gdamore 		return;
    741      1.1  gdamore 
    742      1.1  gdamore 	if (sflag == 1) {
    743      1.1  gdamore 		if (ioctl(hci, SIOCGBTSTATS, &btr) < 0)
    744      1.1  gdamore 			err(EXIT_FAILURE, "SIOCGBTSTATS");
    745      1.1  gdamore 	} else  {
    746      1.1  gdamore 		if (ioctl(hci, SIOCZBTSTATS, &btr) < 0)
    747      1.1  gdamore 			err(EXIT_FAILURE, "SIOCZBTSTATS");
    748      1.1  gdamore 	}
    749      1.1  gdamore 
    750      1.1  gdamore 	printf( "\tTotal bytes sent %d, recieved %d\n"
    751      1.1  gdamore 		"\tCommands sent %d, Events received %d\n"
    752      1.1  gdamore 		"\tACL data packets sent %d, received %d\n"
    753      1.1  gdamore 		"\tSCO data packets sent %d, received %d\n"
    754      1.1  gdamore 		"\tInput errors %d, Output errors %d\n",
    755      1.1  gdamore 		btr.btr_stats.byte_tx, btr.btr_stats.byte_rx,
    756      1.1  gdamore 		btr.btr_stats.cmd_tx, btr.btr_stats.evt_rx,
    757      1.1  gdamore 		btr.btr_stats.acl_tx, btr.btr_stats.acl_rx,
    758      1.1  gdamore 		btr.btr_stats.sco_tx, btr.btr_stats.sco_rx,
    759      1.1  gdamore 		btr.btr_stats.err_rx, btr.btr_stats.err_tx);
    760      1.1  gdamore }
    761      1.1  gdamore 
    762      1.1  gdamore void
    763      1.1  gdamore print_features(const char *str, uint8_t *f)
    764      1.1  gdamore {
    765      1.1  gdamore 
    766      1.1  gdamore 	width = printf("%s", str);
    767      1.1  gdamore 
    768      1.1  gdamore 	/* ------------------- byte 0 --------------------*/
    769      1.1  gdamore 	if (*f & HCI_LMP_3SLOT)		    tag("<3 slot>");
    770      1.1  gdamore 	if (*f & HCI_LMP_5SLOT)		    tag("<5 slot>");
    771      1.1  gdamore 	if (*f & HCI_LMP_ENCRYPTION)	    tag("<encryption>");
    772      1.1  gdamore 	if (*f & HCI_LMP_SLOT_OFFSET)	    tag("<slot offset>");
    773      1.1  gdamore 	if (*f & HCI_LMP_TIMIACCURACY)	    tag("<timing accuracy>");
    774      1.1  gdamore 	if (*f & HCI_LMP_ROLE_SWITCH)	    tag("<role switch>");
    775      1.1  gdamore 	if (*f & HCI_LMP_HOLD_MODE)	    tag("<hold mode>");
    776      1.1  gdamore 	if (*f & HCI_LMP_SNIFF_MODE)	    tag("<sniff mode>");
    777      1.1  gdamore 	f++;
    778      1.1  gdamore 
    779      1.1  gdamore 	/* ------------------- byte 1 --------------------*/
    780      1.1  gdamore 	if (*f & HCI_LMP_PARK_MODE)	    tag("<park mode>");
    781      1.1  gdamore 	if (*f & HCI_LMP_RSSI)		    tag("<RSSI>");
    782      1.1  gdamore 	if (*f & HCI_LMP_CHANNEL_QUALITY)   tag("<channel quality>");
    783      1.1  gdamore 	if (*f & HCI_LMP_SCO_LINK)	    tag("<SCO link>");
    784      1.1  gdamore 	if (*f & HCI_LMP_HV2_PKT)	    tag("<HV2>");
    785      1.1  gdamore 	if (*f & HCI_LMP_HV3_PKT)	    tag("<HV3>");
    786      1.1  gdamore 	if (*f & HCI_LMP_ULAW_LOG)	    tag("<u-Law log>");
    787      1.1  gdamore 	if (*f & HCI_LMP_ALAW_LOG)	    tag("<A-Law log>");
    788      1.1  gdamore 	f++;
    789      1.1  gdamore 
    790      1.1  gdamore 	/* ------------------- byte 1 --------------------*/
    791      1.1  gdamore 	if (*f & HCI_LMP_CVSD)		    tag("<CVSD data>");
    792      1.1  gdamore 	if (*f & HCI_LMP_PAGISCHEME)	    tag("<paging parameter>");
    793      1.1  gdamore 	if (*f & HCI_LMP_POWER_CONTROL)	    tag("<power control>");
    794      1.1  gdamore 	if (*f & HCI_LMP_TRANSPARENT_SCO)   tag("<transparent SCO>");
    795      1.1  gdamore 	if (*f & HCI_LMP_FLOW_CONTROL_LAG0) tag("<flow control lag 0>");
    796      1.1  gdamore 	if (*f & HCI_LMP_FLOW_CONTROL_LAG1) tag("<flow control lag 1>");
    797      1.1  gdamore 	if (*f & HCI_LMP_FLOW_CONTROL_LAG2) tag("<flow control lag 2>");
    798      1.1  gdamore 	if (*f & HCI_LMP_BC_ENCRYPTION)	    tag("<broadcast encryption>");
    799      1.1  gdamore 	f++;
    800      1.1  gdamore 
    801      1.1  gdamore 	/* ------------------- byte 3 --------------------*/
    802      1.1  gdamore 	if (*f & HCI_LMP_EDR_ACL_2MBPS)	    tag("<EDR ACL 2Mbps>");
    803      1.1  gdamore 	if (*f & HCI_LMP_EDR_ACL_3MBPS)	    tag("<EDR ACL 3Mbps>");
    804      1.1  gdamore 	if (*f & HCI_LMP_ENHANCED_ISCAN)    tag("<enhanced inquiry scan>");
    805      1.1  gdamore 	if (*f & HCI_LMP_INTERLACED_ISCAN)  tag("<interlaced inquiry scan>");
    806      1.1  gdamore 	if (*f & HCI_LMP_INTERLACED_PSCAN)  tag("<interlaced page scan>");
    807      1.1  gdamore 	if (*f & HCI_LMP_RSSI_INQUIRY)	    tag("<RSSI with inquiry result>");
    808      1.1  gdamore 	if (*f & HCI_LMP_EV3_PKT)	    tag("<EV3 packets>");
    809      1.1  gdamore 	f++;
    810      1.1  gdamore 
    811      1.1  gdamore 	/* ------------------- byte 4 --------------------*/
    812      1.1  gdamore 	if (*f & HCI_LMP_EV4_PKT)	    tag("<EV4 packets>");
    813      1.1  gdamore 	if (*f & HCI_LMP_EV5_PKT)	    tag("<EV5 packets>");
    814      1.1  gdamore 	if (*f & HCI_LMP_AFH_CAPABLE_SLAVE) tag("<AFH capable slave>");
    815      1.1  gdamore 	if (*f & HCI_LMP_AFH_CLASS_SLAVE)   tag("<AFH class slave>");
    816      1.1  gdamore 	if (*f & HCI_LMP_3SLOT_EDR_ACL)	    tag("<3 slot EDR ACL>");
    817      1.1  gdamore 	f++;
    818      1.1  gdamore 
    819      1.1  gdamore 	/* ------------------- byte 5 --------------------*/
    820      1.1  gdamore 	if (*f & HCI_LMP_5SLOT_EDR_ACL)	    tag("<5 slot EDR ACL>");
    821  1.5.4.3     matt 	if (*f & HCI_LMP_SNIFF_SUBRATING)   tag("<sniff subrating>");
    822  1.5.4.3     matt 	if (*f & HCI_LMP_PAUSE_ENCRYPTION)  tag("<pause encryption>");
    823      1.1  gdamore 	if (*f & HCI_LMP_AFH_CAPABLE_MASTER)tag("<AFH capable master>");
    824      1.1  gdamore 	if (*f & HCI_LMP_AFH_CLASS_MASTER)  tag("<AFH class master>");
    825      1.1  gdamore 	if (*f & HCI_LMP_EDR_eSCO_2MBPS)    tag("<EDR eSCO 2Mbps>");
    826      1.1  gdamore 	if (*f & HCI_LMP_EDR_eSCO_3MBPS)    tag("<EDR eSCO 3Mbps>");
    827      1.1  gdamore 	if (*f & HCI_LMP_3SLOT_EDR_eSCO)    tag("<3 slot EDR eSCO>");
    828      1.1  gdamore 	f++;
    829      1.1  gdamore 
    830      1.1  gdamore 	/* ------------------- byte 6 --------------------*/
    831  1.5.4.3     matt 	if (*f & HCI_LMP_EXTENDED_INQUIRY)  tag("<extended inquiry>");
    832  1.5.4.3     matt 	if (*f & HCI_LMP_SIMPLE_PAIRING)    tag("<secure simple pairing>");
    833  1.5.4.3     matt 	if (*f & HCI_LMP_ENCAPSULATED_PDU)  tag("<encapsulated PDU>");
    834  1.5.4.3     matt 	if (*f & HCI_LMP_ERRDATA_REPORTING) tag("<errdata reporting>");
    835  1.5.4.3     matt 	if (*f & HCI_LMP_NOFLUSH_PB_FLAG)   tag("<no flush PB flag>");
    836      1.1  gdamore 	f++;
    837      1.1  gdamore 
    838      1.1  gdamore 	/* ------------------- byte 7 --------------------*/
    839  1.5.4.3     matt 	if (*f & HCI_LMP_LINK_SUPERVISION_TO)tag("<link supervision timeout changed>");
    840  1.5.4.3     matt 	if (*f & HCI_LMP_INQ_RSP_TX_POWER)  tag("<inquiry rsp TX power level>");
    841      1.1  gdamore 	if (*f & HCI_LMP_EXTENDED_FEATURES) tag("<extended features>");
    842      1.1  gdamore 
    843      1.1  gdamore 	tag(NULL);
    844      1.1  gdamore }
    845      1.1  gdamore 
    846      1.1  gdamore void
    847      1.1  gdamore print_class(const char *str)
    848      1.1  gdamore {
    849      1.1  gdamore 	int major, minor;
    850      1.1  gdamore 
    851      1.1  gdamore 	major = (class & 0x1f00) >> 8;
    852      1.1  gdamore 	minor = (class & 0x00fc) >> 2;
    853      1.1  gdamore 
    854      1.1  gdamore 	width = printf("%sclass: [0x%6.6x]", str, class);
    855      1.1  gdamore 
    856      1.1  gdamore 	switch (major) {
    857      1.1  gdamore 	case 1:	/* Computer */
    858      1.1  gdamore 		switch (minor) {
    859      1.1  gdamore 		case 1: tag("Desktop");				break;
    860      1.1  gdamore 		case 2: tag("Server");				break;
    861      1.1  gdamore 		case 3: tag("Laptop");				break;
    862      1.1  gdamore 		case 4: tag("Handheld");			break;
    863      1.1  gdamore 		case 5: tag("Palm Sized");			break;
    864      1.1  gdamore 		case 6: tag("Wearable");			break;
    865      1.1  gdamore 		}
    866      1.1  gdamore 		tag("Computer");
    867      1.1  gdamore 		break;
    868      1.1  gdamore 
    869      1.1  gdamore 	case 2:	/* Phone */
    870      1.1  gdamore 		switch (minor) {
    871      1.1  gdamore 		case 1: tag("Cellular Phone");			break;
    872      1.1  gdamore 		case 2: tag("Cordless Phone");			break;
    873      1.1  gdamore 		case 3: tag("Smart Phone");			break;
    874      1.1  gdamore 		case 4: tag("Wired Modem/Phone Gateway");	break;
    875      1.1  gdamore 		case 5: tag("Common ISDN");			break;
    876      1.1  gdamore 		default:tag("Phone");				break;
    877      1.1  gdamore 		}
    878      1.1  gdamore 		break;
    879      1.1  gdamore 
    880      1.1  gdamore 	case 3:	/* LAN */
    881      1.1  gdamore 		tag("LAN");
    882      1.1  gdamore 		switch ((minor & 0x38) >> 3) {
    883      1.1  gdamore 		case 0: tag("[Fully available]");		break;
    884      1.1  gdamore 		case 1: tag("[1-17% utilised]");		break;
    885      1.1  gdamore 		case 2: tag("[17-33% utilised]");		break;
    886      1.1  gdamore 		case 3: tag("[33-50% utilised]");		break;
    887      1.1  gdamore 		case 4: tag("[50-67% utilised]");		break;
    888      1.1  gdamore 		case 5: tag("[67-83% utilised]");		break;
    889      1.1  gdamore 		case 6: tag("[83-99% utilised]");		break;
    890      1.1  gdamore 		case 7: tag("[No service available]");		break;
    891      1.1  gdamore 		}
    892      1.1  gdamore 		break;
    893      1.1  gdamore 
    894      1.1  gdamore 	case 4:	/* Audio/Visual */
    895      1.1  gdamore 		switch (minor) {
    896      1.1  gdamore 		case 1: tag("Wearable Headset");		break;
    897      1.1  gdamore 		case 2: tag("Hands-free Audio");		break;
    898      1.1  gdamore 		case 4: tag("Microphone");			break;
    899      1.1  gdamore 		case 5: tag("Loudspeaker");			break;
    900      1.1  gdamore 		case 6: tag("Headphones");			break;
    901      1.1  gdamore 		case 7: tag("Portable Audio");			break;
    902      1.1  gdamore 		case 8: tag("Car Audio");			break;
    903      1.1  gdamore 		case 9: tag("Set-top Box");			break;
    904      1.1  gdamore 		case 10: tag("HiFi Audio");			break;
    905      1.1  gdamore 		case 11: tag("VCR");				break;
    906      1.1  gdamore 		case 12: tag("Video Camera");			break;
    907      1.1  gdamore 		case 13: tag("Camcorder");			break;
    908      1.1  gdamore 		case 14: tag("Video Monitor");			break;
    909      1.1  gdamore 		case 15: tag("Video Display and Loudspeaker");	break;
    910      1.1  gdamore 		case 16: tag("Video Conferencing");		break;
    911      1.1  gdamore 		case 18: tag("A/V [Gaming/Toy]");		break;
    912      1.1  gdamore 		default: tag("Audio/Visual");			break;
    913      1.1  gdamore 		}
    914      1.1  gdamore 		break;
    915      1.1  gdamore 
    916      1.1  gdamore 	case 5:	/* Peripheral */
    917      1.1  gdamore 		switch (minor & 0x0f) {
    918      1.1  gdamore 		case 1: tag("Joystick");			break;
    919      1.1  gdamore 		case 2: tag("Gamepad");				break;
    920      1.1  gdamore 		case 3: tag("Remote Control");			break;
    921      1.1  gdamore 		case 4: tag("Sensing Device");			break;
    922      1.1  gdamore 		case 5: tag("Digitiser Tablet");		break;
    923      1.1  gdamore 		case 6: tag("Card Reader");			break;
    924      1.1  gdamore 		default: tag("Peripheral");			break;
    925      1.1  gdamore 		}
    926      1.1  gdamore 
    927      1.1  gdamore 		if (minor & 0x10) tag("Keyboard");
    928      1.1  gdamore 		if (minor & 0x20) tag("Mouse");
    929      1.1  gdamore 		break;
    930      1.1  gdamore 
    931      1.1  gdamore 	case 6:	/* Imaging */
    932      1.1  gdamore 		if (minor & 0x20) tag("Printer");
    933      1.1  gdamore 		if (minor & 0x10) tag("Scanner");
    934      1.1  gdamore 		if (minor & 0x08) tag("Camera");
    935      1.1  gdamore 		if (minor & 0x04) tag("Display");
    936      1.1  gdamore 		if ((minor & 0x3c) == 0) tag("Imaging");
    937      1.1  gdamore 		break;
    938      1.1  gdamore 
    939      1.1  gdamore 	case 7:	/* Wearable */
    940      1.1  gdamore 		switch (minor) {
    941      1.1  gdamore 		case 1: tag("Wrist Watch");			break;
    942      1.1  gdamore 		case 2: tag("Pager");				break;
    943      1.1  gdamore 		case 3: tag("Jacket");				break;
    944      1.1  gdamore 		case 4: tag("Helmet");				break;
    945      1.1  gdamore 		case 5: tag("Glasses");				break;
    946      1.1  gdamore 		default: tag("Wearable");			break;
    947      1.1  gdamore 		}
    948      1.1  gdamore 		break;
    949      1.1  gdamore 
    950      1.1  gdamore 	case 8:	/* Toy */
    951      1.1  gdamore 		switch (minor) {
    952      1.1  gdamore 		case 1: tag("Robot");				break;
    953      1.1  gdamore 		case 2: tag("Vehicle");				break;
    954      1.1  gdamore 		case 3: tag("Doll / Action Figure");		break;
    955      1.1  gdamore 		case 4: tag("Controller");			break;
    956      1.1  gdamore 		case 5: tag("Game");				break;
    957      1.1  gdamore 		default: tag("Toy");				break;
    958      1.1  gdamore 		}
    959      1.1  gdamore 		break;
    960      1.1  gdamore 
    961      1.1  gdamore 	default:
    962      1.1  gdamore 		break;
    963      1.1  gdamore 	}
    964      1.1  gdamore 
    965      1.1  gdamore 	if (class & 0x002000)	tag("<Limited Discoverable>");
    966      1.1  gdamore 	if (class & 0x010000)	tag("<Positioning>");
    967      1.1  gdamore 	if (class & 0x020000)	tag("<Networking>");
    968      1.1  gdamore 	if (class & 0x040000)	tag("<Rendering>");
    969      1.1  gdamore 	if (class & 0x080000)	tag("<Capturing>");
    970      1.1  gdamore 	if (class & 0x100000)	tag("<Object Transfer>");
    971      1.1  gdamore 	if (class & 0x200000)	tag("<Audio>");
    972      1.1  gdamore 	if (class & 0x400000)	tag("<Telephony>");
    973      1.1  gdamore 	if (class & 0x800000)	tag("<Information>");
    974      1.1  gdamore 	tag(NULL);
    975      1.1  gdamore }
    976      1.1  gdamore 
    977      1.1  gdamore void
    978      1.1  gdamore print_voice(int level)
    979      1.1  gdamore {
    980      1.1  gdamore 	printf("\tvoice: [0x%4.4x]\n", voice);
    981      1.1  gdamore 
    982      1.1  gdamore 	if (level == 0)
    983      1.1  gdamore 		return;
    984      1.1  gdamore 
    985      1.1  gdamore 	printf("\t\tInput Coding: ");
    986      1.1  gdamore 	switch ((voice & 0x0300) >> 8) {
    987      1.1  gdamore 	case 0x00:	printf("Linear PCM [%d-bit, pos %d]",
    988      1.1  gdamore 			(voice & 0x0020 ? 16 : 8),
    989      1.1  gdamore 			(voice & 0x001c) >> 2);		break;
    990      1.1  gdamore 	case 0x01:	printf("u-Law");		break;
    991      1.1  gdamore 	case 0x02:	printf("A-Law");		break;
    992      1.1  gdamore 	case 0x03:	printf("unknown");		break;
    993      1.1  gdamore 	}
    994      1.1  gdamore 
    995      1.1  gdamore 	switch ((voice & 0x00c0) >> 6) {
    996      1.1  gdamore 	case 0x00:	printf(", 1's complement");	break;
    997      1.1  gdamore 	case 0x01:	printf(", 2's complement");	break;
    998      1.1  gdamore 	case 0x02:	printf(", sign magnitude");	break;
    999      1.1  gdamore 	case 0x03:	printf(", unsigned");		break;
   1000      1.1  gdamore 	}
   1001      1.1  gdamore 
   1002      1.1  gdamore 	printf("\n\t\tAir Coding: ");
   1003      1.1  gdamore 	switch (voice & 0x0003) {
   1004      1.1  gdamore 	case 0x00:	printf("CVSD");			break;
   1005      1.1  gdamore 	case 0x01:	printf("u-Law");		break;
   1006      1.1  gdamore 	case 0x02:	printf("A-Law");		break;
   1007      1.1  gdamore 	case 0x03:	printf("Transparent");		break;
   1008      1.1  gdamore 	}
   1009      1.1  gdamore 
   1010      1.1  gdamore 	printf("\n");
   1011      1.1  gdamore }
   1012      1.1  gdamore 
   1013      1.1  gdamore void
   1014  1.5.4.1     matt print_result(int num, struct result *r, int rssi)
   1015      1.1  gdamore {
   1016      1.1  gdamore 	hci_remote_name_req_cp ncp;
   1017      1.1  gdamore 	hci_remote_name_req_compl_ep nep;
   1018      1.1  gdamore 	struct hostent *hp;
   1019      1.1  gdamore 
   1020      1.1  gdamore 	printf("%3d: bdaddr %s",
   1021      1.1  gdamore 			num,
   1022      1.1  gdamore 			bt_ntoa(&r->bdaddr, NULL));
   1023      1.1  gdamore 
   1024      1.1  gdamore 	hp = bt_gethostbyaddr((const char *)&r->bdaddr, sizeof(bdaddr_t), AF_BLUETOOTH);
   1025      1.1  gdamore 	if (hp != NULL)
   1026      1.1  gdamore 		printf(" (%s)", hp->h_name);
   1027      1.1  gdamore 
   1028      1.1  gdamore 	printf("\n");
   1029      1.1  gdamore 
   1030  1.5.4.1     matt 	memset(&ncp, 0, sizeof(ncp));
   1031      1.1  gdamore 	bdaddr_copy(&ncp.bdaddr, &r->bdaddr);
   1032      1.1  gdamore 	ncp.page_scan_rep_mode = r->page_scan_rep_mode;
   1033      1.1  gdamore 	ncp.clock_offset = r->clock_offset;
   1034      1.1  gdamore 
   1035      1.1  gdamore 	hci_req(HCI_CMD_REMOTE_NAME_REQ,
   1036      1.1  gdamore 		HCI_EVENT_REMOTE_NAME_REQ_COMPL,
   1037      1.1  gdamore 		&ncp, sizeof(ncp),
   1038      1.1  gdamore 		&nep, sizeof(nep));
   1039      1.1  gdamore 
   1040      1.1  gdamore 	printf("   : name \"%s\"\n", nep.name);
   1041      1.1  gdamore 
   1042      1.1  gdamore 	class = (r->uclass[2] << 16) | (r->uclass[1] << 8) | (r->uclass[0]);
   1043      1.1  gdamore 	print_class("   : ");
   1044      1.1  gdamore 
   1045      1.1  gdamore 	printf("   : page scan rep mode 0x%02x\n", r->page_scan_rep_mode);
   1046      1.1  gdamore 	printf("   : clock offset %d\n", le16toh(r->clock_offset));
   1047      1.1  gdamore 
   1048  1.5.4.1     matt 	if (rssi)
   1049  1.5.4.1     matt 		printf("   : rssi %d\n", r->rssi);
   1050  1.5.4.1     matt 
   1051      1.1  gdamore 	printf("\n");
   1052      1.1  gdamore }
   1053      1.1  gdamore 
   1054      1.1  gdamore void
   1055      1.1  gdamore do_inquiry(void)
   1056      1.1  gdamore {
   1057      1.1  gdamore 	uint8_t buf[HCI_EVENT_PKT_SIZE];
   1058  1.5.4.1     matt 	struct result result[INQUIRY_MAX_RESPONSES];
   1059      1.1  gdamore 	hci_inquiry_cp inq;
   1060      1.1  gdamore 	struct hci_filter f;
   1061      1.1  gdamore 	hci_event_hdr_t *hh;
   1062  1.5.4.1     matt 	int i, j, num, rssi;
   1063      1.1  gdamore 
   1064      1.1  gdamore 	if (opt_inquiry == 0)
   1065      1.1  gdamore 		return;
   1066      1.1  gdamore 
   1067      1.1  gdamore 	printf("Device Discovery from device: %s ...", btr.btr_name);
   1068      1.1  gdamore 	fflush(stdout);
   1069      1.1  gdamore 
   1070      1.1  gdamore 	memset(&f, 0, sizeof(f));
   1071      1.1  gdamore 	hci_filter_set(HCI_EVENT_COMMAND_STATUS, &f);
   1072      1.1  gdamore 	hci_filter_set(HCI_EVENT_COMMAND_COMPL, &f);
   1073      1.1  gdamore 	hci_filter_set(HCI_EVENT_INQUIRY_RESULT, &f);
   1074  1.5.4.1     matt 	hci_filter_set(HCI_EVENT_RSSI_RESULT, &f);
   1075      1.1  gdamore 	hci_filter_set(HCI_EVENT_INQUIRY_COMPL, &f);
   1076      1.1  gdamore 	hci_filter_set(HCI_EVENT_REMOTE_NAME_REQ_COMPL, &f);
   1077      1.1  gdamore 	hci_filter_set(HCI_EVENT_READ_REMOTE_FEATURES_COMPL, &f);
   1078      1.1  gdamore 	if (setsockopt(hci, BTPROTO_HCI, SO_HCI_EVT_FILTER, &f, sizeof(f)) < 0)
   1079      1.1  gdamore 		err(EXIT_FAILURE, "Can't set event filter");
   1080      1.1  gdamore 
   1081      1.1  gdamore 	/* General Inquiry LAP is 0x9e8b33 */
   1082      1.1  gdamore 	inq.lap[0] = 0x33;
   1083      1.1  gdamore 	inq.lap[1] = 0x8b;
   1084      1.1  gdamore 	inq.lap[2] = 0x9e;
   1085      1.1  gdamore 	inq.inquiry_length = INQUIRY_LENGTH;
   1086      1.1  gdamore 	inq.num_responses = INQUIRY_MAX_RESPONSES;
   1087      1.1  gdamore 
   1088      1.1  gdamore 	hci_cmd(HCI_CMD_INQUIRY, &inq, sizeof(inq));
   1089      1.1  gdamore 
   1090      1.1  gdamore 	num = 0;
   1091  1.5.4.1     matt 	rssi = 0;
   1092      1.1  gdamore 	hh = (hci_event_hdr_t *)buf;
   1093      1.1  gdamore 
   1094      1.1  gdamore 	for (;;) {
   1095      1.1  gdamore 		if (recv(hci, buf, sizeof(buf), 0) <= 0)
   1096      1.1  gdamore 			err(EXIT_FAILURE, "recv");
   1097      1.1  gdamore 
   1098      1.1  gdamore 		if (hh->event == HCI_EVENT_INQUIRY_COMPL)
   1099      1.1  gdamore 			break;
   1100      1.1  gdamore 
   1101      1.1  gdamore 		if (hh->event == HCI_EVENT_INQUIRY_RESULT) {
   1102  1.5.4.1     matt 			hci_inquiry_result_ep *ep = (hci_inquiry_result_ep *)(hh + 1);
   1103  1.5.4.1     matt 			hci_inquiry_response *ir = (hci_inquiry_response *)(ep + 1);
   1104  1.5.4.1     matt 
   1105      1.1  gdamore 			for (i = 0 ; i < ep->num_responses ; i++) {
   1106      1.1  gdamore 				if (num == INQUIRY_MAX_RESPONSES)
   1107      1.1  gdamore 					break;
   1108      1.1  gdamore 
   1109      1.1  gdamore 				/* some devices keep responding, ignore dupes */
   1110      1.1  gdamore 				for (j = 0 ; j < num ; j++)
   1111      1.1  gdamore 					if (bdaddr_same(&result[j].bdaddr, &ir[i].bdaddr))
   1112      1.1  gdamore 						break;
   1113      1.1  gdamore 
   1114      1.1  gdamore 				if (j < num)
   1115      1.1  gdamore 					continue;
   1116      1.1  gdamore 
   1117  1.5.4.1     matt 				bdaddr_copy(&result[num].bdaddr, &ir[i].bdaddr);
   1118  1.5.4.1     matt 				memcpy(&result[num].uclass, &ir[i].uclass, HCI_CLASS_SIZE);
   1119  1.5.4.1     matt 				result[num].page_scan_rep_mode = ir[i].page_scan_rep_mode;
   1120  1.5.4.1     matt 				result[num].clock_offset = ir[i].clock_offset;
   1121  1.5.4.1     matt 				result[num].rssi = 0;
   1122  1.5.4.1     matt 				num++;
   1123      1.1  gdamore 				printf(".");
   1124      1.1  gdamore 				fflush(stdout);
   1125  1.5.4.1     matt 			}
   1126  1.5.4.1     matt 			continue;
   1127  1.5.4.1     matt 		}
   1128  1.5.4.1     matt 
   1129  1.5.4.1     matt 		if (hh->event == HCI_EVENT_RSSI_RESULT) {
   1130  1.5.4.1     matt 			hci_rssi_result_ep *ep = (hci_rssi_result_ep *)(hh + 1);
   1131  1.5.4.1     matt 			hci_rssi_response *rr = (hci_rssi_response *)(ep + 1);
   1132      1.1  gdamore 
   1133  1.5.4.1     matt 			for (i = 0 ; i < ep->num_responses ; i++) {
   1134  1.5.4.1     matt 				if (num == INQUIRY_MAX_RESPONSES)
   1135  1.5.4.1     matt 					break;
   1136  1.5.4.1     matt 
   1137  1.5.4.1     matt 				/* some devices keep responding, ignore dupes */
   1138  1.5.4.1     matt 				for (j = 0 ; j < num ; j++)
   1139  1.5.4.1     matt 					if (bdaddr_same(&result[j].bdaddr, &rr[i].bdaddr))
   1140  1.5.4.1     matt 						break;
   1141  1.5.4.1     matt 
   1142  1.5.4.1     matt 				if (j < num)
   1143  1.5.4.1     matt 					continue;
   1144  1.5.4.1     matt 
   1145  1.5.4.1     matt 				bdaddr_copy(&result[num].bdaddr, &rr[i].bdaddr);
   1146  1.5.4.1     matt 				memcpy(&result[num].uclass, &rr[i].uclass, HCI_CLASS_SIZE);
   1147  1.5.4.1     matt 				result[num].page_scan_rep_mode = rr[i].page_scan_rep_mode;
   1148  1.5.4.1     matt 				result[num].clock_offset = rr[i].clock_offset;
   1149  1.5.4.1     matt 				result[num].rssi = rr[i].rssi;
   1150  1.5.4.1     matt 				rssi = 1;
   1151  1.5.4.1     matt 				num++;
   1152  1.5.4.1     matt 				printf(".");
   1153  1.5.4.1     matt 				fflush(stdout);
   1154      1.1  gdamore 			}
   1155      1.1  gdamore 			continue;
   1156      1.1  gdamore 		}
   1157      1.1  gdamore 	}
   1158      1.1  gdamore 
   1159      1.1  gdamore 	printf(" %d response%s\n", num, (num == 1 ? "" : "s"));
   1160      1.1  gdamore 
   1161      1.1  gdamore 	for (i = 0 ; i < num ; i++)
   1162  1.5.4.1     matt 		print_result(i + 1, &result[i], rssi);
   1163      1.1  gdamore }
   1164