Remove tm.h and xm.h handling, as it wasn't used. Use nm.h only when needed.
[dragonfly.git] / usr.sbin / btpin / btpin.c
blobc0a3ea6ba4b1aa912230d5d248e47b31e716cd93
1 /* $NetBSD: btpin.c,v 1.3 2007/04/14 09:28:39 plunky Exp $ */
2 /* $DragonFly: src/usr.sbin/btpin/Attic/btpin.c,v 1.1 2008/01/30 14:10:19 hasso Exp $ */
4 /*-
5 * Copyright (c) 2006 Itronix Inc.
6 * All rights reserved.
8 * Written by Iain Hibbert for Itronix Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The name of Itronix Inc. may not be used to endorse
19 * or promote products derived from this software without specific
20 * prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
26 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 * ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
35 #include <sys/types.h>
36 #include <sys/un.h>
37 #include <bluetooth.h>
38 #include <err.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <time.h>
42 #include <unistd.h>
44 int main(int, char *[]);
45 void usage(void);
47 int
48 main(int ac, char *av[])
50 bthcid_pin_response_t rp;
51 struct sockaddr_un un;
52 char *pin = NULL;
53 int ch, s, len;
55 memset(&rp, 0, sizeof(rp));
56 len = -1;
58 memset(&un, 0, sizeof(un));
59 un.sun_len = sizeof(un);
60 un.sun_family = AF_LOCAL;
61 strlcpy(un.sun_path, BTHCID_SOCKET_NAME, sizeof(un.sun_path));
63 while ((ch = getopt(ac, av, "a:d:l:p:rs:")) != EOF) {
64 switch (ch) {
65 case 'a':
66 if (!bt_aton(optarg, &rp.raddr)) {
67 struct hostent *he = NULL;
69 if ((he = bt_gethostbyname(optarg)) == NULL)
70 errx(EXIT_FAILURE, "%s: %s", optarg,
71 hstrerror(h_errno));
73 bdaddr_copy(&rp.raddr, (bdaddr_t *)he->h_addr);
75 break;
77 case 'd':
78 if (!bt_devaddr(optarg, &rp.laddr))
79 err(EXIT_FAILURE, "%s", optarg);
81 break;
83 case 'l':
84 len = atoi(optarg);
85 if (len < 1 || len > HCI_PIN_SIZE)
86 errx(EXIT_FAILURE, "Invalid PIN length");
88 break;
90 case 'p':
91 pin = optarg;
92 break;
94 case 'r':
95 if (len == -1)
96 len = 4;
98 break;
100 case 's':
101 strlcpy(un.sun_path, optarg, sizeof(un.sun_path));
102 break;
104 default:
105 usage();
109 if (bdaddr_any(&rp.raddr))
110 usage();
112 if (pin == NULL) {
113 if (len == -1)
114 usage();
116 srandom(time(NULL));
118 pin = (char *)rp.pin;
119 while (len-- > 0)
120 *pin++ = '0' + (random() % 10);
122 printf("PIN: %.*s\n", HCI_PIN_SIZE, rp.pin);
123 } else {
124 if (len != -1)
125 usage();
127 strncpy((char *)rp.pin, pin, HCI_PIN_SIZE);
130 s = socket(PF_LOCAL, SOCK_STREAM, 0);
131 if (s < 0)
132 err(EXIT_FAILURE, "socket");
134 if (connect(s, (struct sockaddr *)&un, sizeof(un)) < 0)
135 err(EXIT_FAILURE, "connect(\"%s\")", un.sun_path);
137 if (send(s, &rp, sizeof(rp), 0) != sizeof(rp))
138 err(EXIT_FAILURE, "send");
140 close(s);
141 exit(EXIT_SUCCESS);
144 void
145 usage(void)
148 fprintf(stderr,
149 "usage: %s [-d device] [-s socket] {-p pin | -r [-l len]} -a addr\n"
150 "", getprogname());
152 exit(EXIT_FAILURE);