chiark / gitweb /
udev-acl: allow to skip ACL handling
[elogind.git] / extras / hid2hci / hid2hci.c
1 /*
2  * hid2hci : switch the radio on devices that support
3  *           it from HID to HCI and back
4  *
5  * Copyright (C) 2003-2009  Marcel Holtmann <marcel@holtmann.org>
6  * Copyright (C) 2008-2009  Mario Limonciello <mario_limonciello@dell.com>
7  * Copyright (C) 2009 Kay Sievers <kay.sievers@vrfy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23
24 #include <stdio.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <stdint.h>
28 #include <string.h>
29 #include <getopt.h>
30 #include <sys/ioctl.h>
31 #include <linux/hiddev.h>
32 #include <usb.h>
33
34 #include "libudev.h"
35 #include "libudev-private.h"
36
37 enum mode {
38         HCI = 0,
39         HID = 1,
40 };
41
42 static int usb_switch_csr(struct usb_dev_handle *dev, enum mode mode)
43 {
44         int err;
45
46         err = usb_control_msg(dev,
47                               USB_ENDPOINT_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
48                               0, mode, 0, NULL, 0, 10000);
49         if (err == 0) {
50                 err = -1;
51                 errno = EALREADY;
52         } else {
53                 if (errno == ETIMEDOUT)
54                         err = 0;
55         }
56         return err;
57 }
58
59 static int hid_logitech_send_report(int fd, const char *buf, size_t size)
60 {
61         struct hiddev_report_info rinfo;
62         struct hiddev_usage_ref uref;
63         unsigned int i;
64         int err;
65
66         for (i = 0; i < size; i++) {
67                 memset(&uref, 0, sizeof(uref));
68                 uref.report_type = HID_REPORT_TYPE_OUTPUT;
69                 uref.report_id   = 0x10;
70                 uref.field_index = 0;
71                 uref.usage_index = i;
72                 uref.usage_code  = 0xff000001;
73                 uref.value       = buf[i] & 0x000000ff;
74                 err = ioctl(fd, HIDIOCSUSAGE, &uref);
75                 if (err < 0)
76                         return err;
77         }
78
79         memset(&rinfo, 0, sizeof(rinfo));
80         rinfo.report_type = HID_REPORT_TYPE_OUTPUT;
81         rinfo.report_id   = 0x10;
82         rinfo.num_fields  = 1;
83         err = ioctl(fd, HIDIOCSREPORT, &rinfo);
84
85         return err;
86 }
87
88 static int hid_switch_logitech(const char *filename)
89 {
90         char rep1[] = { 0xff, 0x80, 0x80, 0x01, 0x00, 0x00 };
91         char rep2[] = { 0xff, 0x80, 0x00, 0x00, 0x30, 0x00 };
92         char rep3[] = { 0xff, 0x81, 0x80, 0x00, 0x00, 0x00 };
93         int fd;
94         int err = -1;
95
96         fd = open(filename, O_RDWR);
97         if (fd < 0)
98                 return err;
99
100         err = ioctl(fd, HIDIOCINITREPORT, 0);
101         if (err < 0)
102                 goto out;
103
104         err = hid_logitech_send_report(fd, rep1, sizeof(rep1));
105         if (err < 0)
106                 goto out;
107
108         err = hid_logitech_send_report(fd, rep2, sizeof(rep2));
109         if (err < 0)
110                 goto out;
111
112         err = hid_logitech_send_report(fd, rep3, sizeof(rep3));
113 out:
114         close(fd);
115         return err;
116 }
117
118 static int usb_switch_dell(struct usb_dev_handle *dev, enum mode mode)
119 {
120         char report[] = { 0x7f, 0x00, 0x00, 0x00 };
121         int err;
122
123         switch (mode) {
124         case HCI:
125                 report[1] = 0x13;
126                 break;
127         case HID:
128                 report[1] = 0x14;
129                 break;
130         }
131
132         /* Don't need to check return, as might not be in use */
133         usb_detach_kernel_driver_np(dev, 0);
134
135         if (usb_claim_interface(dev, 0) < 0)
136                 return -EIO;
137
138         err = usb_control_msg(dev,
139                         USB_ENDPOINT_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
140                         USB_REQ_SET_CONFIGURATION, 0x7f | (0x03 << 8), 0,
141                         report, sizeof(report), 5000);
142
143         if (err == 0) {
144                 err = -1;
145                 errno = EALREADY;
146         } else {
147                 if (errno == ETIMEDOUT)
148                         err = 0;
149         }
150         return err;
151 }
152
153 /*
154  * The braindead libusb needs to scan and open all devices, just to
155  * to find the device we already have. This needs to be fixed in libusb
156  * or it will be ripped out and we carry our own code.
157  */
158 static struct usb_device *usb_device_open_from_udev(struct udev_device *usb_dev)
159 {
160         struct usb_bus *bus;
161         const char *str;
162         int busnum;
163         int devnum;
164
165         str = udev_device_get_sysattr_value(usb_dev, "busnum");
166         if (str == NULL)
167                 return NULL;
168         busnum = strtol(str, NULL, 0);
169
170         str = udev_device_get_sysattr_value(usb_dev, "devnum");
171         if (str == NULL)
172                 return NULL;
173         devnum = strtol(str, NULL, 0);
174
175         usb_init();
176         usb_find_busses();
177         usb_find_devices();
178
179         for (bus = usb_get_busses(); bus; bus = bus->next) {
180                 struct usb_device *dev;
181
182                 if (strtol(bus->dirname, NULL, 10) != busnum)
183                         continue;
184
185                 for (dev = bus->devices; dev; dev = dev->next) {
186                         if (dev->devnum == devnum)
187                                 return dev;
188                 }
189         }
190
191         return NULL;
192 }
193
194 static struct usb_dev_handle *find_device(struct udev_device *udev_dev)
195 {
196         struct usb_device *dev;
197
198         dev = usb_device_open_from_udev(udev_dev);
199         if (dev == NULL)
200                 return NULL;
201         return usb_open(dev);
202 }
203
204 static void usage(const char *error)
205 {
206         if (error)
207                 fprintf(stderr,"\n%s\n", error);
208         else
209                 printf("hid2hci - Bluetooth HID to HCI mode switching utility\n\n");
210
211         printf("Usage: hid2hci [options]\n"
212                 "  --mode=               mode to switch to [hid|hci] (default hci)\n"
213                 "  --devpath=            sys device path\n"
214                 "  --method=             method to use to switch [csr|logitech-hid|dell]\n"
215                 "  --help\n\n");
216 }
217
218 int main(int argc, char *argv[])
219 {
220         static const struct option options[] = {
221                 { "help", no_argument, NULL, 'h' },
222                 { "mode", required_argument, NULL, 'm' },
223                 { "devpath", required_argument, NULL, 'p' },
224                 { "method", required_argument, NULL, 'M' },
225                 { }
226         };
227         enum method {
228                 METHOD_UNDEF,
229                 METHOD_CSR,
230                 METHOD_LOGITECH_HID,
231                 METHOD_DELL,
232         } method = METHOD_UNDEF;
233         struct udev *udev;
234         struct udev_device *udev_dev = NULL;
235         char syspath[UTIL_PATH_SIZE];
236         int (*usb_switch)(struct usb_dev_handle *dev, enum mode mode) = NULL;
237         enum mode mode = HCI;
238         const char *devpath = NULL;
239         int err = -1;
240         int rc = 1;
241
242         for (;;) {
243                 int option;
244
245                 option = getopt_long(argc, argv, "m:p:M:qh", options, NULL);
246                 if (option == -1)
247                         break;
248
249                 switch (option) {
250                 case 'm':
251                         if (!strcmp(optarg, "hid")) {
252                                 mode = HID;
253                         } else if (!strcmp(optarg, "hci")) {
254                                 mode = HCI;
255                         } else {
256                                 usage("error: undefined radio mode\n");
257                                 exit(1);
258                         }
259                         break;
260                 case 'p':
261                         devpath = optarg;
262                         break;
263                 case 'M':
264                         if (!strcmp(optarg, "csr")) {
265                                 method = METHOD_CSR;
266                                 usb_switch = usb_switch_csr;
267                         } else if (!strcmp(optarg, "logitech-hid")) {
268                                 method = METHOD_LOGITECH_HID;
269                         } else if (!strcmp(optarg, "dell")) {
270                                 method = METHOD_DELL;
271                                 usb_switch = usb_switch_dell;
272                         } else {
273                                 usage("error: undefined switching method\n");
274                                 exit(1);
275                         }
276                         break;
277                 case 'h':
278                         usage(NULL);
279                 default:
280                         exit(1);
281                 }
282         }
283
284         if (!devpath || method == METHOD_UNDEF) {
285                 usage("error: --devpath= and --method= must be defined\n");
286                 exit(1);
287         }
288
289         udev = udev_new();
290         if (udev == NULL)
291                 goto exit;
292
293         util_strscpyl(syspath, sizeof(syspath), udev_get_sys_path(udev), devpath, NULL);
294         udev_dev = udev_device_new_from_syspath(udev, syspath);
295         if (udev_dev == NULL) {
296                 fprintf(stderr, "error: could not find '%s'\n", devpath);
297                 goto exit;
298         }
299
300         switch (method) {
301         case METHOD_CSR:
302         case METHOD_DELL: {
303                 struct udev_device *dev;
304                 struct usb_dev_handle *handle;
305                 const char *type;
306
307                 /* get the parent usb_device if needed */
308                 dev = udev_dev;
309                 type = udev_device_get_devtype(dev);
310                 if (type == NULL || strcmp(type, "usb_device") != 0) {
311                         dev = udev_device_get_parent_with_subsystem_devtype(dev, "usb", "usb_device");
312                         if (dev == NULL) {
313                                 fprintf(stderr, "error: could not find usb_device for '%s'\n", devpath);
314                                 goto exit;
315                         }
316                 }
317
318                 handle = find_device(dev);
319                 if (handle == NULL) {
320                         fprintf(stderr, "error: unable to handle '%s'\n",
321                                 udev_device_get_syspath(dev));
322                         goto exit;
323                 }
324                 err = usb_switch(handle, mode);
325                 break;
326         }
327         case METHOD_LOGITECH_HID: {
328                 const char *device;
329
330                 device = udev_device_get_devnode(udev_dev);
331                 if (device == NULL) {
332                         fprintf(stderr, "error: could not find hiddev device node\n");
333                         goto exit;
334                 }
335                 err = hid_switch_logitech(device);
336                 break;
337         }
338         default:
339                 break;
340         }
341
342         if (err < 0)
343                 fprintf(stderr, "error: switching device '%s' failed.\n",
344                         udev_device_get_syspath(udev_dev));
345 exit:
346         udev_device_unref(udev_dev);
347         udev_unref(udev);
348         return rc;
349 }