bluez/tools/hcidump.c

832 lines
18 KiB
C
Raw Normal View History

2001-08-02 10:40:48 +08:00
/*
2004-03-03 10:03:49 +08:00
*
* Bluetooth packet analyzer - HCI sniffer
2004-03-03 10:03:49 +08:00
*
* Copyright (C) 2000-2002 Maxim Krasnyansky <maxk@qualcomm.com>
* Copyright (C) 2003-2005 Marcel Holtmann <marcel@holtmann.org>
2004-03-03 10:03:49 +08:00
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Id$
2001-08-02 10:40:48 +08:00
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
2001-08-02 10:40:48 +08:00
#include <stdio.h>
2004-03-03 10:03:49 +08:00
#include <errno.h>
#include <fcntl.h>
2001-08-02 10:40:48 +08:00
#include <unistd.h>
#include <stdlib.h>
2001-08-02 10:40:48 +08:00
#include <string.h>
#include <getopt.h>
#include <sys/stat.h>
#include <sys/types.h>
2004-03-03 10:03:49 +08:00
#include <sys/ioctl.h>
#include <sys/socket.h>
2001-08-02 10:40:48 +08:00
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
2002-03-20 02:19:34 +08:00
#include <bluetooth/hci_lib.h>
2001-08-02 10:40:48 +08:00
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>
2004-02-29 09:14:47 +08:00
#include "parser.h"
#include "sdp.h"
#if __BYTE_ORDER == __LITTLE_ENDIAN
static inline uint64_t ntoh64(uint64_t n)
{
uint64_t h;
uint64_t tmp = ntohl(n & 0x00000000ffffffff);
h = ntohl(n >> 32);
h |= tmp << 32;
return h;
}
#elif __BYTE_ORDER == __BIG_ENDIAN
#define ntoh64(x) (x)
#else
#error "Unknown byte order"
#endif
#define hton64(x) ntoh64(x)
#define SNAP_LEN HCI_MAX_FRAME_SIZE
#define DEFAULT_PORT 10839;
2004-03-03 10:03:49 +08:00
/* Modes */
enum {
PARSE,
READ,
WRITE,
RECEIVE,
SEND
2004-03-03 10:03:49 +08:00
};
2001-08-02 10:40:48 +08:00
/* Default options */
2001-08-17 08:00:02 +08:00
static int device;
static int snap_len = SNAP_LEN;
2002-04-23 05:49:02 +08:00
static int defpsm = 0;
2004-08-27 07:59:20 +08:00
static int defcompid = DEFAULT_COMPID;
static int mode = PARSE;
2005-04-19 23:04:16 +08:00
static int permcheck = 1;
2002-02-04 14:15:35 +08:00
static long flags;
static long filter;
2001-08-17 08:00:02 +08:00
static char *dump_file;
static in_addr_t dump_addr = INADDR_LOOPBACK;
static in_port_t dump_port = DEFAULT_PORT;
2001-08-02 10:40:48 +08:00
struct hcidump_hdr {
2004-03-03 10:03:49 +08:00
uint16_t len;
uint8_t in;
uint8_t pad;
uint32_t ts_sec;
uint32_t ts_usec;
} __attribute__ ((packed));
#define HCIDUMP_HDR_SIZE (sizeof(struct hcidump_hdr))
struct btsnoop_hdr {
uint8_t id[8]; /* Identification Pattern */
uint32_t version; /* Version Number = 1 */
uint32_t type; /* Datalink Type */
} __attribute__ ((packed));
#define BTSNOOP_HDR_SIZE (sizeof(struct btsnoop_hdr))
struct btsnoop_pkt {
uint32_t size; /* Original Length */
uint32_t len; /* Included Length */
uint32_t flags; /* Packet Flags */
uint32_t drops; /* Cumulative Drops */
uint64_t ts; /* Timestamp microseconds */
uint8_t data[0]; /* Packet Data */
} __attribute__ ((packed));
#define BTSNOOP_PKT_SIZE (sizeof(struct btsnoop_pkt))
static uint8_t btsnoop_id[] = { 0x62, 0x74, 0x73, 0x6e, 0x6f, 0x6f, 0x70, 0x00 };
2004-03-03 10:03:49 +08:00
static uint32_t btsnoop_version = 0;
static uint32_t btsnoop_type = 0;
2004-03-03 10:03:49 +08:00
static inline int read_n(int fd, char *buf, int len)
{
register int t = 0, w;
while (len > 0) {
if ((w = read(fd, buf, len)) < 0) {
2004-06-16 17:57:43 +08:00
if (errno == EINTR || errno == EAGAIN)
2004-03-03 10:03:49 +08:00
continue;
return -1;
}
if (!w)
return 0;
len -= w; buf += w; t += w;
}
return t;
}
static inline int write_n(int fd, char *buf, int len)
{
register int t = 0, w;
while (len > 0) {
if ((w = write(fd, buf, len)) < 0) {
2004-06-16 17:57:43 +08:00
if (errno == EINTR || errno == EAGAIN)
2004-03-03 10:03:49 +08:00
continue;
return -1;
}
if (!w)
return 0;
len -= w; buf += w; t += w;
}
return t;
}
static void process_frames(int dev, int sock, int fd, unsigned long flags)
{
struct cmsghdr *cmsg;
struct msghdr msg;
struct iovec iv;
struct hcidump_hdr *dh;
struct btsnoop_pkt *dp;
2001-08-16 12:56:12 +08:00
struct frame frm;
char *buf, *ctrl;
int len, hdr_size = HCIDUMP_HDR_SIZE;
2001-08-12 10:36:41 +08:00
if (snap_len < SNAP_LEN)
snap_len = SNAP_LEN;
if (flags & DUMP_BTSNOOP)
hdr_size = BTSNOOP_PKT_SIZE;
buf = malloc(snap_len + hdr_size);
if (!buf) {
2001-08-12 06:19:59 +08:00
perror("Can't allocate data buffer");
exit(1);
}
2004-02-29 09:14:47 +08:00
dh = (void *) buf;
dp = (void *) buf;
frm.data = buf + hdr_size;
2004-02-29 09:14:47 +08:00
ctrl = malloc(100);
if (!ctrl) {
2001-08-12 06:19:59 +08:00
perror("Can't allocate control buffer");
exit(1);
}
2004-02-29 09:14:47 +08:00
if (dev == HCI_DEV_NONE)
printf("system: ");
else
printf("device: hci%d ", dev);
printf("snap_len: %d filter: 0x%lx\n", snap_len, filter);
memset(&msg, 0, sizeof(msg));
while (1) {
2001-08-16 12:56:12 +08:00
iv.iov_base = frm.data;
iv.iov_len = snap_len;
msg.msg_iov = &iv;
msg.msg_iovlen = 1;
msg.msg_control = ctrl;
2001-08-12 06:19:59 +08:00
msg.msg_controllen = 100;
len = recvmsg(sock, &msg, 0);
if (len < 0) {
perror("Receive failed");
exit(1);
}
/* Process control message */
frm.data_len = len;
frm.dev_id = dev;
2001-08-16 12:56:12 +08:00
frm.in = 0;
cmsg = CMSG_FIRSTHDR(&msg);
2001-08-15 13:39:50 +08:00
while (cmsg) {
switch (cmsg->cmsg_type) {
case HCI_CMSG_DIR:
frm.in = *((int *) CMSG_DATA(cmsg));
2001-08-15 13:39:50 +08:00
break;
2002-02-04 14:15:35 +08:00
case HCI_CMSG_TSTAMP:
frm.ts = *((struct timeval *) CMSG_DATA(cmsg));
2002-02-04 14:15:35 +08:00
break;
}
cmsg = CMSG_NXTHDR(&msg, cmsg);
}
frm.ptr = frm.data;
frm.len = frm.data_len;
switch (mode) {
case WRITE:
case SEND:
/* Save or send dump */
if (flags & DUMP_BTSNOOP) {
uint64_t ts;
uint8_t pkt_type = ((uint8_t *) frm.data)[0];
dp->size = htonl(frm.data_len);
dp->len = dp->size;
dp->flags = ntohl(frm.in & 0x01);
dp->drops = 0;
ts = (frm.ts.tv_sec - 946684800ll) * 1000000ll + frm.ts.tv_usec;
dp->ts = hton64(ts + 0x00E03AB44A676000ll);
if (pkt_type == HCI_COMMAND_PKT ||
pkt_type == HCI_EVENT_PKT)
dp->flags |= ntohl(0x02);
} else {
dh->len = htobs(frm.data_len);
dh->in = frm.in;
dh->ts_sec = htobl(frm.ts.tv_sec);
dh->ts_usec = htobl(frm.ts.tv_usec);
}
if (write_n(fd, buf, frm.data_len + hdr_size) < 0) {
2001-08-16 11:46:14 +08:00
perror("Write error");
exit(1);
}
break;
default:
/* Parse and print */
parse(&frm);
break;
2001-08-16 11:46:14 +08:00
}
}
}
static void read_dump(int fd)
2001-08-16 11:46:14 +08:00
{
struct hcidump_hdr dh;
struct btsnoop_pkt dp;
2001-08-16 12:56:12 +08:00
struct frame frm;
uint8_t pkt_type;
2001-08-16 11:46:14 +08:00
int err;
frm.data = malloc(HCI_MAX_FRAME_SIZE);
if (!frm.data) {
2001-08-16 11:46:14 +08:00
perror("Can't allocate data buffer");
exit(1);
}
2004-02-29 09:14:47 +08:00
2001-08-16 11:46:14 +08:00
while (1) {
if (parser.flags & DUMP_BTSNOOP)
err = read_n(fd, (void *) &dp, BTSNOOP_PKT_SIZE);
else
err = read_n(fd, (void *) &dh, HCIDUMP_HDR_SIZE);
2004-02-29 09:14:47 +08:00
if (err < 0)
goto failed;
if (!err)
return;
if (parser.flags & DUMP_BTSNOOP) {
switch (btsnoop_type) {
case 1001:
if (ntohl(dp.flags) & 0x02) {
if (ntohl(dp.flags) & 0x01)
pkt_type = HCI_EVENT_PKT;
else
pkt_type = HCI_COMMAND_PKT;
} else
pkt_type = HCI_ACLDATA_PKT;
((uint8_t *) frm.data)[0] = pkt_type;
frm.data_len = ntohl(dp.len) + 1;
err = read_n(fd, frm.data + 1, frm.data_len - 1);
break;
case 1002:
frm.data_len = ntohl(dp.len);
err = read_n(fd, frm.data, frm.data_len);
break;
}
} else {
frm.data_len = btohs(dh.len);
err = read_n(fd, frm.data, frm.data_len);
}
if (err < 0)
2001-08-16 11:46:14 +08:00
goto failed;
if (!err)
return;
2001-08-16 12:56:12 +08:00
frm.ptr = frm.data;
frm.len = frm.data_len;
if (parser.flags & DUMP_BTSNOOP) {
uint64_t ts;
frm.in = ntohl(dp.flags) & 0x01;
ts = ntoh64(dp.ts) - 0x00E03AB44A676000ll;
frm.ts.tv_sec = (ts / 1000000ll) + 946684800ll;
frm.ts.tv_usec = ts % 1000000ll;
} else {
frm.in = dh.in;
frm.ts.tv_sec = btohl(dh.ts_sec);
frm.ts.tv_usec = btohl(dh.ts_usec);
}
2004-02-29 09:14:47 +08:00
parse(&frm);
}
2001-08-16 11:46:14 +08:00
failed:
perror("Read failed");
exit(1);
}
static int open_file(char *file, int mode, unsigned long flags)
2001-08-02 10:40:48 +08:00
{
struct btsnoop_hdr hdr;
int fd, len, open_flags;
2001-08-02 10:40:48 +08:00
if (mode == WRITE) {
if (flags & DUMP_BTSNOOP)
open_flags = O_WRONLY | O_CREAT;
else
open_flags = O_WRONLY | O_CREAT | O_APPEND;
} else
open_flags = O_RDONLY;
2001-08-02 10:40:48 +08:00
fd = open(file, open_flags, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (fd < 0) {
perror("Can't open dump file");
exit(1);
2001-08-02 10:40:48 +08:00
}
if (mode == READ) {
len = read(fd, &hdr, BTSNOOP_HDR_SIZE);
if (len != BTSNOOP_HDR_SIZE) {
lseek(fd, 0, SEEK_SET);
return fd;
}
if (!memcmp(hdr.id, btsnoop_id, sizeof(btsnoop_id))) {
parser.flags |= DUMP_BTSNOOP;
btsnoop_version = ntohl(hdr.version);
btsnoop_type = ntohl(hdr.type);
printf("btsnoop version: %d datalink type: %d\n",
btsnoop_version, btsnoop_type);
if (btsnoop_version != 1) {
2005-06-04 16:40:55 +08:00
fprintf(stderr, "Unsupported BTSnoop version\n");
exit(1);
}
if (btsnoop_type != 1001 && btsnoop_type != 1002) {
2005-06-04 16:40:55 +08:00
fprintf(stderr, "Unsupported BTSnoop datalink type\n");
exit(1);
}
} else {
parser.flags &= ~DUMP_BTSNOOP;
lseek(fd, 0, SEEK_SET);
return fd;
}
} else {
if (flags & DUMP_BTSNOOP) {
btsnoop_version = 1;
btsnoop_type = 1002;
memcpy(hdr.id, btsnoop_id, sizeof(btsnoop_id));
hdr.version = htonl(btsnoop_version);
hdr.type = htonl(btsnoop_type);
printf("btsnoop version: %d datalink type: %d\n",
btsnoop_version, btsnoop_type);
len = write(fd, &hdr, BTSNOOP_HDR_SIZE);
if (len < 0) {
perror("Can't create dump header");
exit(1);
}
if (len != BTSNOOP_HDR_SIZE) {
fprintf(stderr, "Header size mismatch\n");
exit(1);
}
}
}
return fd;
}
static int open_socket(int dev, unsigned long flags)
{
struct sockaddr_hci addr;
struct hci_filter flt;
2005-04-19 23:04:16 +08:00
struct hci_dev_info di;
int sk, dd, opt;
if (permcheck && dev != HCI_DEV_NONE) {
2005-04-19 23:04:16 +08:00
dd = hci_open_dev(dev);
if (dd < 0) {
perror("Can't open device");
exit(1);
}
if (hci_devinfo(dev, &di) < 0) {
perror("Can't get device info");
exit(1);
}
opt = hci_test_bit(HCI_RAW, &di.flags);
if (ioctl(dd, HCISETRAW, opt) < 0) {
if (errno == EACCES) {
perror("Can't access device");
exit(1);
}
}
hci_close_dev(dd);
}
2001-08-02 10:40:48 +08:00
/* Create HCI socket */
sk = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI);
if (sk < 0) {
2005-04-19 23:04:16 +08:00
perror("Can't create raw socket");
2001-08-02 10:40:48 +08:00
exit(1);
}
2004-02-29 09:14:47 +08:00
2001-08-02 10:40:48 +08:00
opt = 1;
2004-06-16 17:57:43 +08:00
if (setsockopt(sk, SOL_HCI, HCI_DATA_DIR, &opt, sizeof(opt)) < 0) {
2001-08-02 10:40:48 +08:00
perror("Can't enable data direction info");
exit(1);
}
2002-02-04 14:15:35 +08:00
opt = 1;
2004-06-16 17:57:43 +08:00
if (setsockopt(sk, SOL_HCI, HCI_TIME_STAMP, &opt, sizeof(opt)) < 0) {
2002-02-04 14:15:35 +08:00
perror("Can't enable time stamp");
exit(1);
}
/* Setup filter */
2002-03-20 02:19:34 +08:00
hci_filter_clear(&flt);
2005-03-13 23:13:36 +08:00
hci_filter_all_ptypes(&flt);
hci_filter_all_events(&flt);
2004-06-16 17:57:43 +08:00
if (setsockopt(sk, SOL_HCI, HCI_FILTER, &flt, sizeof(flt)) < 0) {
2005-04-19 23:04:16 +08:00
perror("Can't set filter");
exit(1);
}
2001-08-02 10:40:48 +08:00
/* Bind socket to the HCI device */
addr.hci_family = AF_BLUETOOTH;
addr.hci_dev = dev;
2004-06-16 17:57:43 +08:00
if (bind(sk, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
printf("Can't attach to device hci%d. %s(%d)\n",
dev, strerror(errno), errno);
2001-08-02 10:40:48 +08:00
exit(1);
}
2004-06-16 17:57:43 +08:00
return sk;
}
2001-08-02 10:40:48 +08:00
static int open_connection(in_addr_t addr, in_port_t port)
{
struct sockaddr_in sa;
int sk, opt;
sk = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (sk < 0) {
perror("Can't create inet socket");
exit(1);
}
opt = 1;
setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = htonl(INADDR_ANY);
sa.sin_port = htons(0);
if (bind(sk, (struct sockaddr *) &sa, sizeof(sa)) < 0) {
perror("Can't bind inet socket");
close(sk);
exit(1);
}
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = htonl(addr);
sa.sin_port = htons(port);
if (connect(sk, (struct sockaddr *) &sa, sizeof(sa)) < 0) {
perror("Can't connect inet socket");
close(sk);
exit(1);
}
return sk;
}
static int wait_connection(in_addr_t addr, in_port_t port)
{
struct sockaddr_in sa;
struct hostent *host;
2005-07-06 04:03:59 +08:00
socklen_t len;
int sk, nsk, opt;
sk = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (sk < 0) {
perror("Can't create inet socket");
exit(1);
}
opt = 1;
setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = htonl(addr);
sa.sin_port = htons(port);
if (bind(sk, (struct sockaddr *) &sa, sizeof(sa)) < 0) {
perror("Can't bind inet socket");
close(sk);
exit(1);
}
host = gethostbyaddr(&sa.sin_addr, sizeof(sa.sin_addr), AF_INET);
printf("device: %s:%d snap_len: %d filter: 0x%lx\n",
host ? host->h_name : inet_ntoa(sa.sin_addr),
ntohs(sa.sin_port), snap_len, filter);
if (listen(sk, 1)) {
perror("Can't listen on inet socket");
close(sk);
exit(1);
}
len = sizeof(sa);
2005-07-06 04:03:59 +08:00
nsk = accept(sk, (struct sockaddr *) &sa, &len);
if (nsk < 0) {
perror("Can't accept new inet socket");
close(sk);
exit(1);
}
host = gethostbyaddr(&sa.sin_addr, sizeof(sa.sin_addr), AF_INET);
printf("device: %s snap_len: %d filter: 0x%lx\n",
host ? host->h_name : inet_ntoa(sa.sin_addr), snap_len, filter);
close(sk);
return nsk;
}
static struct {
char *name;
int flag;
} filters[] = {
{ "lmp", FILT_LMP },
2004-02-29 09:14:47 +08:00
{ "hci", FILT_HCI },
{ "sco", FILT_SCO },
{ "l2cap", FILT_L2CAP },
{ "rfcomm", FILT_RFCOMM },
{ "sdp", FILT_SDP },
{ "bnep", FILT_BNEP },
{ "cmtp", FILT_CMTP },
{ "hidp", FILT_HIDP },
{ "hcrp", FILT_HCRP },
{ "avdtp", FILT_AVDTP },
{ "obex", FILT_OBEX },
{ "capi", FILT_CAPI },
2005-03-13 23:13:36 +08:00
{ "csr", FILT_CSR },
{ "dga", FILT_DGA },
{ 0 }
};
static void parse_filter(int argc, char **argv)
{
int i,n;
2004-02-29 09:14:47 +08:00
for (i = 0; i < argc; i++) {
for (n = 0; filters[n].name; n++) {
if (!strcasecmp(filters[n].name, argv[i])) {
filter |= filters[n].flag;
break;
}
}
}
}
static void usage(void)
{
printf(
"Usage: hcidump [OPTION...] [filter]\n"
" -i, --device=hci_dev HCI device\n"
" -l, --snap-len=len Snap len (in bytes)\n"
2004-02-29 09:14:47 +08:00
" -p, --psm=psm Default PSM\n"
2004-08-27 07:59:20 +08:00
" -m, --manufacturer=compid Default manufacturer\n"
" -w, --save-dump=file Save dump to a file\n"
2004-02-29 09:14:47 +08:00
" -r, --read-dump=file Read dump from a file\n"
" -s, --send-dump=host Send dump to a host\n"
" -n, --recv-dump=host Receive dump on a host\n"
2004-02-29 09:14:47 +08:00
" -t, --ts Display time stamps\n"
" -a, --ascii Dump data in ascii\n"
" -x, --hex Dump data in hex\n"
" -X, --ext Dump data in hex and ascii\n"
2005-03-13 23:13:36 +08:00
" -R, --raw Dump raw data\n"
2004-02-29 09:14:47 +08:00
" -C, --cmtp=psm PSM for CMTP\n"
" -H, --hcrp=psm PSM for HCRP\n"
" -O, --obex=channel Channel for OBEX\n"
" -B, --btsnoop Use BTSnoop file format\n"
" -V, --verbose Verbose decoding\n"
" -h, --help Give this help list\n"
" --usage Give a short usage message\n"
);
}
static struct option main_options[] = {
2004-08-27 07:59:20 +08:00
{ "device", 1, 0, 'i' },
{ "snap-len", 1, 0, 'l' },
2004-08-27 07:59:20 +08:00
{ "psm", 1, 0, 'p' },
{ "manufacturer", 1, 0, 'm' },
{ "save-dump", 1, 0, 'w' },
{ "read-dump", 1, 0, 'r' },
{ "send-dump", 1, 0, 's' },
{ "recv-dump", 1, 0, 'n' },
{ "timestamp", 0, 0, 't' },
2004-08-27 07:59:20 +08:00
{ "ascii", 0, 0, 'a' },
{ "hex", 0, 0, 'x' },
{ "ext", 0, 0, 'X' },
{ "raw", 0, 0, 'R' },
{ "cmtp", 1, 0, 'C' },
{ "hcrp", 1, 0, 'H' },
{ "obex", 1, 0, 'O' },
{ "btsnoop", 0, 0, 'B' },
{ "verbose", 0, 0, 'V' },
2004-08-27 07:59:20 +08:00
{ "help", 0, 0, 'h' },
{ 0 }
};
int main(int argc, char *argv[])
{
struct hostent *host;
struct in_addr addr;
int opt;
printf("HCI sniffer - Bluetooth packet analyzer ver %s\n", VERSION);
while ((opt=getopt_long(argc, argv, "i:l:p:m:w:r:s:n:taxXRC:H:O:BVZh", main_options, NULL)) != -1) {
2004-02-29 09:14:47 +08:00
switch(opt) {
case 'i':
if (strcasecmp(optarg, "none") && strcasecmp(optarg, "system"))
device = atoi(optarg + 3);
else
device = HCI_DEV_NONE;
break;
case 'l':
snap_len = atoi(optarg);
break;
2002-04-23 05:49:02 +08:00
case 'p':
defpsm = atoi(optarg);
2002-04-23 05:49:02 +08:00
break;
2004-08-27 07:59:20 +08:00
case 'm':
defcompid = atoi(optarg);
break;
2004-02-29 09:14:47 +08:00
case 'w':
mode = WRITE;
dump_file = strdup(optarg);
break;
case 'r':
mode = READ;
dump_file = strdup(optarg);
break;
case 's':
mode = SEND;
host = gethostbyname(optarg);
if (host) {
bcopy(host->h_addr, &addr, sizeof(struct in_addr));
dump_addr = ntohl(addr.s_addr);
dump_port = DEFAULT_PORT;
} else {
dump_addr = INADDR_LOOPBACK;
dump_port = DEFAULT_PORT;
}
break;
case 'n':
mode = RECEIVE;
host = gethostbyname(optarg);
if (host) {
bcopy(host->h_addr, &addr, sizeof(struct in_addr));
dump_addr = ntohl(addr.s_addr);
dump_port = DEFAULT_PORT;
} else {
dump_addr = INADDR_LOOPBACK;
dump_port = DEFAULT_PORT;
}
break;
2002-02-04 14:15:35 +08:00
case 't':
flags |= DUMP_TSTAMP;
break;
case 'a':
flags |= DUMP_ASCII;
break;
2004-02-29 09:14:47 +08:00
case 'x':
flags |= DUMP_HEX;
break;
case 'X':
flags |= DUMP_EXT;
break;
2001-08-02 10:40:48 +08:00
2004-02-29 09:14:47 +08:00
case 'R':
flags |= DUMP_RAW;
2001-08-17 08:00:02 +08:00
break;
2004-02-29 09:14:47 +08:00
case 'C':
set_proto(0, atoi(optarg), 0, SDP_UUID_CMTP);
2004-02-29 09:14:47 +08:00
break;
case 'H':
set_proto(0, atoi(optarg), 0, SDP_UUID_HARDCOPY_CONTROL_CHANNEL);
break;
case 'O':
set_proto(0, 0, atoi(optarg), SDP_UUID_OBEX);
break;
case 'B':
flags |= DUMP_BTSNOOP;
break;
case 'V':
flags |= DUMP_VERBOSE;
break;
2005-04-19 23:04:16 +08:00
case 'Z':
permcheck = 0;
break;
2004-02-29 09:14:47 +08:00
case 'h':
default:
usage();
exit(0);
}
}
2004-02-29 09:14:47 +08:00
argc -= optind;
argv += optind;
optind = 0;
if (argc > 0)
parse_filter(argc, argv);
2001-08-02 10:40:48 +08:00
/* Default settings */
if (!filter)
filter = ~0L;
switch (mode) {
case PARSE:
2004-08-27 07:59:20 +08:00
init_parser(flags, filter, defpsm, defcompid);
process_frames(device, open_socket(device, flags), -1, flags);
break;
case READ:
init_parser(flags, filter, defpsm, defcompid);
read_dump(open_file(dump_file, mode, flags));
break;
case WRITE:
process_frames(device, open_socket(device, flags),
open_file(dump_file, mode, flags), flags);
break;
case RECEIVE:
2004-08-27 07:59:20 +08:00
init_parser(flags, filter, defpsm, defcompid);
read_dump(wait_connection(dump_addr, dump_port));
break;
case SEND:
process_frames(device, open_socket(device, flags),
open_connection(dump_addr, dump_port), flags);
break;
}
2004-02-29 09:14:47 +08:00
return 0;
2001-08-02 10:40:48 +08:00
}