btpand.c revision 187938
1/*	$NetBSD: btpand.c,v 1.1 2008/08/17 13:20:57 plunky Exp $	*/
2
3/*-
4 * Copyright (c) 2008 Iain Hibbert
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28/* $FreeBSD: head/usr.sbin/bluetooth/btpand/btpand.c 187938 2009-01-30 22:23:21Z emax $ */
29
30#include <sys/cdefs.h>
31__COPYRIGHT("@(#) Copyright (c) 2008 Iain Hibbert. All rights reserved.");
32__RCSID("$NetBSD: btpand.c,v 1.1 2008/08/17 13:20:57 plunky Exp $");
33
34#include <sys/wait.h>
35
36#include <bluetooth.h>
37#include <err.h>
38#include <fcntl.h>
39#include <paths.h>
40#include <sdp.h>
41#include <stdio.h>
42#include <signal.h>
43#include <stdlib.h>
44#include <string.h>
45#include <unistd.h>
46
47#include "btpand.h"
48
49/* global variables */
50const char *	control_path;		/* -c <path> */
51const char *	interface_name;		/* -i <ifname> */
52const char *	service_name;		/* -s <service> */
53uint16_t	service_class;
54
55bdaddr_t	local_bdaddr;		/* -d <addr> */
56bdaddr_t	remote_bdaddr;		/* -a <addr> */
57uint16_t	l2cap_psm = 15;		/* -p <psm> */
58int		l2cap_mode = 0;		/* -m <mode> */
59
60int		server_limit;		/* -n <limit> */
61
62static const struct {
63	const char *	name;
64	uint16_t	class;
65	const char *	desc;
66} services[] = {
67	{ "PANU", SDP_SERVICE_CLASS_PANU, "Personal Area Networking User" },
68	{ "NAP",  SDP_SERVICE_CLASS_NAP,  "Network Acess Point"		  },
69	{ "GN",	  SDP_SERVICE_CLASS_GN,   "Group Network"		  },
70};
71
72static void main_exit(int);
73static void main_detach(void);
74static void usage(void);
75
76int
77main(int argc, char *argv[])
78{
79	unsigned long	ul;
80	char *		ep;
81	int		ch, status;
82
83	while ((ch = getopt(argc, argv, "a:c:d:i:l:m:p:S:s:")) != -1) {
84		switch (ch) {
85		case 'a': /* remote address */
86			if (!bt_aton(optarg, &remote_bdaddr)) {
87				struct hostent  *he;
88
89				if ((he = bt_gethostbyname(optarg)) == NULL)
90					errx(EXIT_FAILURE, "%s: %s",
91					    optarg, hstrerror(h_errno));
92
93				bdaddr_copy(&remote_bdaddr,
94					(bdaddr_t *)he->h_addr);
95			}
96
97			break;
98
99		case 'c': /* control socket path */
100			control_path = optarg;
101			break;
102
103		case 'd': /* local address */
104			if (!bt_aton(optarg, &local_bdaddr)) {
105				struct hostent  *he;
106
107				if ((he = bt_gethostbyname(optarg)) == NULL)
108					errx(EXIT_FAILURE, "%s: %s",
109					    optarg, hstrerror(h_errno));
110
111				bdaddr_copy(&local_bdaddr,
112					(bdaddr_t *)he->h_addr);
113			}
114			break;
115
116		case 'i': /* tap interface name */
117			if (strchr(optarg, '/') == NULL) {
118				asprintf(&ep, "/dev/%s", optarg);
119				interface_name = ep;
120			} else
121				interface_name = optarg;
122			break;
123
124		case 'l': /* limit server sessions */
125			ul = strtoul(optarg, &ep, 10);
126			if (*optarg == '\0' || *ep != '\0' || ul == 0)
127				errx(EXIT_FAILURE, "%s: invalid session limit",
128					optarg);
129
130			server_limit = ul;
131			break;
132
133		case 'm': /* link mode */
134			warnx("Setting link mode is not yet supported");
135			break;
136
137		case 'p': /* protocol/service multiplexer */
138			ul = strtoul(optarg, &ep, 0);
139			if (*optarg == '\0' || *ep != '\0'
140			    || ul > 0xffff || L2CAP_PSM_INVALID(ul))
141				errx(EXIT_FAILURE, "%s: invalid PSM", optarg);
142
143			l2cap_psm = ul;
144			break;
145
146		case 's': /* service */
147		case 'S': /* service (no SDP) */
148			for (ul = 0; strcasecmp(optarg, services[ul].name); ul++) {
149				if (ul == __arraycount(services))
150					errx(EXIT_FAILURE, "%s: unknown service", optarg);
151			}
152
153			if (ch == 's')
154				service_name = services[ul].name;
155
156			service_class = services[ul].class;
157			break;
158
159		default:
160			usage();
161			/* NOTREACHED */
162		}
163	}
164
165	argc -= optind;
166	argv += optind;
167
168	/* validate options */
169	if (bdaddr_any(&local_bdaddr) || service_class == 0)
170		usage();
171
172	if (!bdaddr_any(&remote_bdaddr) && (server_limit != 0 ||
173	    control_path != 0 || (service_name != NULL && l2cap_psm != 0)))
174		usage();
175
176	/* default options */
177	if (interface_name == NULL)
178		interface_name = "/dev/tap";
179
180	if (bdaddr_any(&remote_bdaddr) && server_limit == 0) {
181		if (service_class == SDP_SERVICE_CLASS_PANU)
182			server_limit = 1;
183		else
184			server_limit = 7;
185	}
186
187#ifdef L2CAP_LM_MASTER
188	if (server_limit > 1 && service_class != SDP_SERVICE_CLASS_PANU)
189		l2cap_mode |= L2CAP_LM_MASTER;
190#endif
191
192	/*
193	 * fork() now so that the setup can be done in the child process
194	 * (as kqueue is not inherited) but block in the parent until the
195	 * setup is finished so we can return an error if necessary.
196	 */
197	switch(fork()) {
198	case -1: /* bad */
199		err(EXIT_FAILURE, "fork() failed");
200
201	case 0:	/* child */
202		signal(SIGPIPE, SIG_IGN);
203
204		openlog(getprogname(), LOG_NDELAY | LOG_PERROR | LOG_PID, LOG_DAEMON);
205
206		channel_init();
207		server_init();
208		event_init();
209		client_init();
210		tap_init();
211
212		main_detach();
213
214		event_dispatch();
215		break;
216
217	default: /* parent */
218		signal(SIGUSR1, main_exit);
219		wait(&status);
220
221		if (WIFEXITED(status))
222			exit(WEXITSTATUS(status));
223
224		break;
225	}
226
227	err(EXIT_FAILURE, "exiting");
228}
229
230static void
231main_exit(int s)
232{
233
234	/* child is all grown up */
235	_exit(EXIT_SUCCESS);
236}
237
238static void
239main_detach(void)
240{
241	int fd;
242
243	if (kill(getppid(), SIGUSR1) == -1)
244		log_err("Could not signal main process: %m");
245
246	if (setsid() == -1)
247		log_err("setsid() failed");
248
249	fd = open(_PATH_DEVNULL, O_RDWR, 0);
250	if (fd == -1) {
251		log_err("Could not open %s", _PATH_DEVNULL);
252	} else {
253		(void)dup2(fd, STDIN_FILENO);
254		(void)dup2(fd, STDOUT_FILENO);
255		(void)dup2(fd, STDERR_FILENO);
256		close(fd);
257	}
258}
259
260static void
261usage(void)
262{
263	const char *p = getprogname();
264	int n = strlen(p);
265
266	fprintf(stderr,
267	    "usage: %s [-i ifname] [-m mode] -a address -d device\n"
268	    "       %*s {-s service | -S service [-p psm]}\n"
269	    "       %s [-c path] [-i ifname] [-l limit] [-m mode] [-p psm] -d device\n"
270	    "       %*s {-s service | -S service}\n"
271	    "\n"
272	    "Where:\n"
273	    "\t-a address  remote bluetooth device\n"
274	    "\t-c path     SDP server socket\n"
275	    "\t-d device   local bluetooth device\n"
276	    "\t-i ifname   tap interface\n"
277	    "\t-l limit    limit server sessions\n"
278	    "\t-m mode     L2CAP link mode (NOT YET SUPPORTED)\n"
279	    "\t-p psm      L2CAP PSM\n"
280	    "\t-S service  service name (no SDP)\n"
281	    "\t-s service  service name\n"
282	    "\n"
283	    "Known services:\n"
284	    "", p, n, "", p, n, "");
285
286	for (n = 0; n < __arraycount(services); n++)
287		fprintf(stderr, "\t%s\t%s\n", services[n].name, services[n].desc);
288
289	exit(EXIT_FAILURE);
290}
291