11de7b4b8SPedro F. Giffuni /*-
2878ed226SJulian Elischer * l2control.c
3878ed226SJulian Elischer *
44d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
51de7b4b8SPedro F. Giffuni *
6878ed226SJulian Elischer * Copyright (c) 2001-2002 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7878ed226SJulian Elischer * All rights reserved.
8878ed226SJulian Elischer *
9878ed226SJulian Elischer * Redistribution and use in source and binary forms, with or without
10878ed226SJulian Elischer * modification, are permitted provided that the following conditions
11878ed226SJulian Elischer * are met:
12878ed226SJulian Elischer * 1. Redistributions of source code must retain the above copyright
13878ed226SJulian Elischer * notice, this list of conditions and the following disclaimer.
14878ed226SJulian Elischer * 2. Redistributions in binary form must reproduce the above copyright
15878ed226SJulian Elischer * notice, this list of conditions and the following disclaimer in the
16878ed226SJulian Elischer * documentation and/or other materials provided with the distribution.
17878ed226SJulian Elischer *
18878ed226SJulian Elischer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19878ed226SJulian Elischer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20878ed226SJulian Elischer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21878ed226SJulian Elischer * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22878ed226SJulian Elischer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23878ed226SJulian Elischer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24878ed226SJulian Elischer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25878ed226SJulian Elischer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26878ed226SJulian Elischer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27878ed226SJulian Elischer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28878ed226SJulian Elischer * SUCH DAMAGE.
29878ed226SJulian Elischer *
300986ab12SMaksim Yevmenkin * $Id: l2control.c,v 1.6 2003/09/05 00:38:25 max Exp $
31878ed226SJulian Elischer */
32878ed226SJulian Elischer
33878ed226SJulian Elischer #include <assert.h>
348d6f425dSTakanori Watanabe #define L2CAP_SOCKET_CHECKED
350986ab12SMaksim Yevmenkin #include <bluetooth.h>
36878ed226SJulian Elischer #include <err.h>
37878ed226SJulian Elischer #include <errno.h>
38878ed226SJulian Elischer #include <stdio.h>
39878ed226SJulian Elischer #include <stdlib.h>
40878ed226SJulian Elischer #include <string.h>
41878ed226SJulian Elischer #include <unistd.h>
42878ed226SJulian Elischer #include "l2control.h"
43878ed226SJulian Elischer
44878ed226SJulian Elischer /* Prototypes */
45878ed226SJulian Elischer static int do_l2cap_command (bdaddr_p, int, char **);
46878ed226SJulian Elischer static struct l2cap_command * find_l2cap_command (char const *,
47878ed226SJulian Elischer struct l2cap_command *);
48878ed226SJulian Elischer static void print_l2cap_command (struct l2cap_command *);
49878ed226SJulian Elischer static void usage (void);
50878ed226SJulian Elischer
51878ed226SJulian Elischer /* Main */
520986ab12SMaksim Yevmenkin
530986ab12SMaksim Yevmenkin int numeric_bdaddr = 0;
540986ab12SMaksim Yevmenkin
55878ed226SJulian Elischer int
main(int argc,char * argv[])56878ed226SJulian Elischer main(int argc, char *argv[])
57878ed226SJulian Elischer {
58878ed226SJulian Elischer int n;
59878ed226SJulian Elischer bdaddr_t bdaddr;
60878ed226SJulian Elischer
61878ed226SJulian Elischer memset(&bdaddr, 0, sizeof(bdaddr));
62878ed226SJulian Elischer
63878ed226SJulian Elischer /* Process command line arguments */
640986ab12SMaksim Yevmenkin while ((n = getopt(argc, argv, "a:nh")) != -1) {
65878ed226SJulian Elischer switch (n) {
660986ab12SMaksim Yevmenkin case 'a':
670986ab12SMaksim Yevmenkin if (!bt_aton(optarg, &bdaddr)) {
680986ab12SMaksim Yevmenkin struct hostent *he = NULL;
69878ed226SJulian Elischer
700986ab12SMaksim Yevmenkin if ((he = bt_gethostbyname(optarg)) == NULL)
710986ab12SMaksim Yevmenkin errx(1, "%s: %s", optarg, hstrerror(h_errno));
720986ab12SMaksim Yevmenkin
730986ab12SMaksim Yevmenkin memcpy(&bdaddr, he->h_addr, sizeof(bdaddr));
74878ed226SJulian Elischer }
750986ab12SMaksim Yevmenkin break;
76878ed226SJulian Elischer
770986ab12SMaksim Yevmenkin case 'n':
780986ab12SMaksim Yevmenkin numeric_bdaddr = 1;
790986ab12SMaksim Yevmenkin break;
80878ed226SJulian Elischer
811a63eb31SJulian Elischer case 'h':
82878ed226SJulian Elischer default:
83878ed226SJulian Elischer usage();
84878ed226SJulian Elischer break;
85878ed226SJulian Elischer }
86878ed226SJulian Elischer }
87878ed226SJulian Elischer
88878ed226SJulian Elischer argc -= optind;
89878ed226SJulian Elischer argv += optind;
90878ed226SJulian Elischer
91878ed226SJulian Elischer if (*argv == NULL)
92878ed226SJulian Elischer usage();
93878ed226SJulian Elischer
94878ed226SJulian Elischer return (do_l2cap_command(&bdaddr, argc, argv));
95878ed226SJulian Elischer } /* main */
96878ed226SJulian Elischer
97878ed226SJulian Elischer /* Execute commands */
98878ed226SJulian Elischer static int
do_l2cap_command(bdaddr_p bdaddr,int argc,char ** argv)99878ed226SJulian Elischer do_l2cap_command(bdaddr_p bdaddr, int argc, char **argv)
100878ed226SJulian Elischer {
101878ed226SJulian Elischer char *cmd = argv[0];
102878ed226SJulian Elischer struct l2cap_command *c = NULL;
103878ed226SJulian Elischer struct sockaddr_l2cap sa;
104878ed226SJulian Elischer int s, e, help;
105878ed226SJulian Elischer
106878ed226SJulian Elischer help = 0;
107878ed226SJulian Elischer if (strcasecmp(cmd, "help") == 0) {
108878ed226SJulian Elischer argc --;
109878ed226SJulian Elischer argv ++;
110878ed226SJulian Elischer
111878ed226SJulian Elischer if (argc <= 0) {
112878ed226SJulian Elischer fprintf(stdout, "Supported commands:\n");
113878ed226SJulian Elischer print_l2cap_command(l2cap_commands);
114878ed226SJulian Elischer fprintf(stdout, "\nFor more information use " \
115878ed226SJulian Elischer "'help command'\n");
116878ed226SJulian Elischer
117878ed226SJulian Elischer return (OK);
118878ed226SJulian Elischer }
119878ed226SJulian Elischer
120878ed226SJulian Elischer help = 1;
121878ed226SJulian Elischer cmd = argv[0];
122878ed226SJulian Elischer }
123878ed226SJulian Elischer
124878ed226SJulian Elischer c = find_l2cap_command(cmd, l2cap_commands);
125878ed226SJulian Elischer if (c == NULL) {
126878ed226SJulian Elischer fprintf(stdout, "Unknown command: \"%s\"\n", cmd);
127878ed226SJulian Elischer return (ERROR);
128878ed226SJulian Elischer }
129878ed226SJulian Elischer
130878ed226SJulian Elischer if (!help) {
131878ed226SJulian Elischer if (memcmp(bdaddr, NG_HCI_BDADDR_ANY, sizeof(*bdaddr)) == 0)
132878ed226SJulian Elischer usage();
133878ed226SJulian Elischer
134878ed226SJulian Elischer memset(&sa, 0, sizeof(sa));
135878ed226SJulian Elischer sa.l2cap_len = sizeof(sa);
136878ed226SJulian Elischer sa.l2cap_family = AF_BLUETOOTH;
137878ed226SJulian Elischer memcpy(&sa.l2cap_bdaddr, bdaddr, sizeof(sa.l2cap_bdaddr));
138878ed226SJulian Elischer
139878ed226SJulian Elischer s = socket(PF_BLUETOOTH, SOCK_RAW, BLUETOOTH_PROTO_L2CAP);
140878ed226SJulian Elischer if (s < 0)
141878ed226SJulian Elischer err(1, "Could not create socket");
142878ed226SJulian Elischer
143878ed226SJulian Elischer if (bind(s, (struct sockaddr *) &sa, sizeof(sa)) < 0)
144878ed226SJulian Elischer err(2,
1450986ab12SMaksim Yevmenkin "Could not bind socket, bdaddr=%s", bt_ntoa(&sa.l2cap_bdaddr, NULL));
146878ed226SJulian Elischer
147878ed226SJulian Elischer e = 0x0ffff;
148878ed226SJulian Elischer if (setsockopt(s, SOL_SOCKET, SO_RCVBUF, &e, sizeof(e)) < 0)
149*66ebda7aSElyes Haouas err(3, "Could not setsockopt(RCVBUF, %d)", e);
150878ed226SJulian Elischer
151878ed226SJulian Elischer e = (c->handler)(s, -- argc, ++ argv);
152878ed226SJulian Elischer
153878ed226SJulian Elischer close(s);
154878ed226SJulian Elischer } else
155878ed226SJulian Elischer e = USAGE;
156878ed226SJulian Elischer
157878ed226SJulian Elischer switch (e) {
158878ed226SJulian Elischer case OK:
159878ed226SJulian Elischer case FAILED:
160878ed226SJulian Elischer break;
161878ed226SJulian Elischer
162878ed226SJulian Elischer case ERROR:
163878ed226SJulian Elischer fprintf(stdout, "Could not execute command \"%s\". %s\n",
164878ed226SJulian Elischer cmd, strerror(errno));
165878ed226SJulian Elischer break;
166878ed226SJulian Elischer
167878ed226SJulian Elischer case USAGE:
168878ed226SJulian Elischer fprintf(stdout, "Usage: %s\n%s\n", c->command, c->description);
169878ed226SJulian Elischer break;
170878ed226SJulian Elischer
171878ed226SJulian Elischer default: assert(0); break;
172878ed226SJulian Elischer }
173878ed226SJulian Elischer
174878ed226SJulian Elischer return (e);
175878ed226SJulian Elischer } /* do_l2cap_command */
176878ed226SJulian Elischer
177878ed226SJulian Elischer /* Try to find command in specified category */
178878ed226SJulian Elischer static struct l2cap_command *
find_l2cap_command(char const * command,struct l2cap_command * category)179878ed226SJulian Elischer find_l2cap_command(char const *command, struct l2cap_command *category)
180878ed226SJulian Elischer {
181878ed226SJulian Elischer struct l2cap_command *c = NULL;
182878ed226SJulian Elischer
183878ed226SJulian Elischer for (c = category; c->command != NULL; c++) {
184878ed226SJulian Elischer char *c_end = strchr(c->command, ' ');
185878ed226SJulian Elischer
186878ed226SJulian Elischer if (c_end != NULL) {
187878ed226SJulian Elischer int len = c_end - c->command;
188878ed226SJulian Elischer
189878ed226SJulian Elischer if (strncasecmp(command, c->command, len) == 0)
190878ed226SJulian Elischer return (c);
191878ed226SJulian Elischer } else if (strcasecmp(command, c->command) == 0)
192878ed226SJulian Elischer return (c);
193878ed226SJulian Elischer }
194878ed226SJulian Elischer
195878ed226SJulian Elischer return (NULL);
196878ed226SJulian Elischer } /* find_l2cap_command */
197878ed226SJulian Elischer
1980986ab12SMaksim Yevmenkin /* Print commands in specified category */
199878ed226SJulian Elischer static void
print_l2cap_command(struct l2cap_command * category)200878ed226SJulian Elischer print_l2cap_command(struct l2cap_command *category)
201878ed226SJulian Elischer {
202878ed226SJulian Elischer struct l2cap_command *c = NULL;
203878ed226SJulian Elischer
204878ed226SJulian Elischer for (c = category; c->command != NULL; c++)
205878ed226SJulian Elischer fprintf(stdout, "\t%s\n", c->command);
206878ed226SJulian Elischer } /* print_l2cap_command */
207878ed226SJulian Elischer
208878ed226SJulian Elischer /* Usage */
209878ed226SJulian Elischer static void
usage(void)210878ed226SJulian Elischer usage(void)
211878ed226SJulian Elischer {
2129c6d3b9fSMaksim Yevmenkin fprintf(stderr, "Usage: l2control [-hn] -a local cmd [params ..]\n");
2139c6d3b9fSMaksim Yevmenkin fprintf(stderr, "Where:\n");
2149c6d3b9fSMaksim Yevmenkin fprintf(stderr, " -a local Specify local device to connect to\n");
2159c6d3b9fSMaksim Yevmenkin fprintf(stderr, " -h Display this message\n");
2169c6d3b9fSMaksim Yevmenkin fprintf(stderr, " -n Show addresses as numbers\n");
2179c6d3b9fSMaksim Yevmenkin fprintf(stderr, " cmd Supported command " \
2189c6d3b9fSMaksim Yevmenkin "(see l2control help)\n");
2199c6d3b9fSMaksim Yevmenkin fprintf(stderr, " params Optional command parameters\n");
220878ed226SJulian Elischer exit(255);
221878ed226SJulian Elischer } /* usage */
222878ed226SJulian Elischer
223