1 /* $NetBSD: bthcid.c,v 1.3 2007/01/25 20:33:41 plunky Exp $ */
2 /* $DragonFly: src/usr.sbin/bthcid/bthcid.c,v 1.1 2008/01/30 14:10:19 hasso Exp $ */
5 * Copyright (c) 2006 Itronix Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of Itronix Inc. may not be used to endorse
17 * or promote products derived from this software without specific
18 * prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
24 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
33 #include <sys/param.h>
35 #include <sys/types.h>
36 #include <sys/event.h>
38 #include <bluetooth.h>
49 const char *socket_name
= BTHCID_SOCKET_NAME
;
54 static void process_signal(int);
55 static void usage(void);
58 main(int argc
, char *argv
[])
61 int ch
, hci_fd
, control_fd
;
64 struct timespec timeout
= { 0, 0 };
66 bdaddr_copy(&bdaddr
, BDADDR_ANY
);
67 mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
;
69 while ((ch
= getopt(argc
, argv
, "d:fm:ns:h")) != -1) {
72 if (!bt_devaddr(optarg
, &bdaddr
))
73 err(EXIT_FAILURE
, "%s", optarg
);
101 "** ERROR: You should run %s as privileged user!",
105 if (daemon(0, 0) < 0)
106 err(EXIT_FAILURE
, "Could not daemon()ize");
108 openlog(getprogname(), LOG_NDELAY
| LOG_PERROR
| LOG_PID
, LOG_DAEMON
);
110 if ((hci_kq
= kqueue()) == -1) {
111 syslog(LOG_ERR
, "could not create kqueue");
115 EV_SET(&change
, SIGTERM
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, NULL
);
116 kevent(hci_kq
, &change
, 1, NULL
, 0, &timeout
);
117 EV_SET(&change
, SIGINT
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, NULL
);
118 kevent(hci_kq
, &change
, 1, NULL
, 0, &timeout
);
119 EV_SET(&change
, SIGHUP
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, NULL
);
120 kevent(hci_kq
, &change
, 1, NULL
, 0, &timeout
);
122 if ((hci_fd
= init_hci(&bdaddr
)) < 0) {
123 syslog(LOG_ERR
, "init_hci(%s)", bt_ntoa(&bdaddr
, NULL
));
127 if ((control_fd
= init_control(socket_name
, mode
)) < 0) {
128 syslog(LOG_ERR
, "init_control(%s)", socket_name
);
132 if (detach
&& pidfile(NULL
) < 0) {
133 syslog(LOG_ERR
, "Could not create PID file: %m");
142 struct kevent events
[BTHCID_KQ_EVENTS
], *event
;
144 nevents
= kevent(hci_kq
, NULL
, 0, &events
[0], BTHCID_KQ_EVENTS
, NULL
);
146 syslog(LOG_ERR
, "kevent failure");
150 for (i
= 0; i
< nevents
; ++i
) {
153 if (event
->filter
== EVFILT_SIGNAL
) {
154 process_signal(event
->ident
);
158 if (event
->filter
== EVFILT_TIMER
) {
159 process_item(event
->udata
);
163 if (event
->ident
== (u_int
)control_fd
) {
164 process_control(event
->ident
);
166 } else if (event
->ident
== (u_int
)hci_fd
) {
167 process_hci(event
->ident
);
169 } else if (event
->udata
!= NULL
) {
170 process_client(event
->ident
, event
->udata
);
174 syslog(LOG_DEBUG
, "Unknown event for descriptor %d",
185 process_signal(int s
)
188 syslog(LOG_DEBUG
, "Got SIGHUP (%d). Dumping and rereading config", s
);
197 syslog(LOG_DEBUG
, "Exiting on signal %d", s
);
208 /* Display usage and exit */
214 "Usage: %s [-fhn] [-c config] [-d devaddr] [-m mode] [-s path]\n"
216 "\t-c config specify config filename\n"
217 "\t-d device specify device address\n"
218 "\t-f run in foreground\n"
219 "\t-m mode specify socket permissions\n"
220 "\t-n do not listen for clients\n"
221 "\t-s path specify client socket pathname\n"
222 "\t-h display this message\n",