1 /* -*- Mode: C; c-basic-offset:8 ; indent-tabs-mode:t -*- */
3 * Linux usbfs backend for libusb
4 * Copyright (C) 2007-2009 Daniel Drake <dsd@gentoo.org>
5 * Copyright (c) 2001 Johannes Erdfelt <johannes@erdfelt.com>
6 * Copyright (c) 2012-2013 Nathan Hjelm <hjelmn@mac.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
34 #include <sys/ioctl.h>
36 #include <sys/types.h>
37 #include <sys/utsname.h>
38 #include <sys/socket.h>
44 #include "linux_usbfs.h"
47 static struct udev
*udev_ctx
= NULL
;
48 static int udev_monitor_fd
= -1;
49 static int udev_control_pipe
[2] = {-1, -1};
50 static struct udev_monitor
*udev_monitor
= NULL
;
51 static pthread_t linux_event_thread
;
53 static void udev_hotplug_event(struct udev_device
* udev_dev
);
54 static void *linux_udev_event_thread_main(void *arg
);
56 int linux_udev_start_event_monitor(void)
60 assert(udev_ctx
== NULL
);
61 udev_ctx
= udev_new();
63 usbi_err(NULL
, "could not create udev context");
64 return LIBUSB_ERROR_OTHER
;
67 udev_monitor
= udev_monitor_new_from_netlink(udev_ctx
, "udev");
69 usbi_err(NULL
, "could not initialize udev monitor");
73 r
= udev_monitor_filter_add_match_subsystem_devtype(udev_monitor
, "usb", 0);
75 usbi_err(NULL
, "could not initialize udev monitor filter for \"usb\" subsystem");
76 goto err_free_monitor
;
79 if (udev_monitor_enable_receiving(udev_monitor
)) {
80 usbi_err(NULL
, "failed to enable the udev monitor");
81 goto err_free_monitor
;
84 udev_monitor_fd
= udev_monitor_get_fd(udev_monitor
);
86 /* Some older versions of udev are not non-blocking by default,
87 * so make sure this is set */
88 r
= fcntl(udev_monitor_fd
, F_GETFL
);
90 usbi_err(NULL
, "getting udev monitor fd flags (%d)", errno
);
91 goto err_free_monitor
;
93 r
= fcntl(udev_monitor_fd
, F_SETFL
, r
| O_NONBLOCK
);
95 usbi_err(NULL
, "setting udev monitor fd flags (%d)", errno
);
96 goto err_free_monitor
;
99 r
= usbi_pipe(udev_control_pipe
);
101 usbi_err(NULL
, "could not create udev control pipe");
102 goto err_free_monitor
;
105 r
= pthread_create(&linux_event_thread
, NULL
, linux_udev_event_thread_main
, NULL
);
107 usbi_err(NULL
, "creating hotplug event thread (%d)", r
);
111 return LIBUSB_SUCCESS
;
114 close(udev_control_pipe
[0]);
115 close(udev_control_pipe
[1]);
117 udev_monitor_unref(udev_monitor
);
119 udev_monitor_fd
= -1;
121 udev_unref(udev_ctx
);
123 return LIBUSB_ERROR_OTHER
;
126 int linux_udev_stop_event_monitor(void)
131 assert(udev_ctx
!= NULL
);
132 assert(udev_monitor
!= NULL
);
133 assert(udev_monitor_fd
!= -1);
135 /* Write some dummy data to the control pipe and
136 * wait for the thread to exit */
137 r
= usbi_write(udev_control_pipe
[1], &dummy
, sizeof(dummy
));
139 usbi_warn(NULL
, "udev control pipe signal failed");
141 pthread_join(linux_event_thread
, NULL
);
143 /* Release the udev monitor */
144 udev_monitor_unref(udev_monitor
);
146 udev_monitor_fd
= -1;
148 /* Clean up the udev context */
149 udev_unref(udev_ctx
);
152 /* close and reset control pipe */
153 close(udev_control_pipe
[0]);
154 close(udev_control_pipe
[1]);
155 udev_control_pipe
[0] = -1;
156 udev_control_pipe
[1] = -1;
158 return LIBUSB_SUCCESS
;
161 static void *linux_udev_event_thread_main(void *arg
)
165 struct udev_device
* udev_dev
;
166 struct pollfd fds
[] = {
167 {.fd
= udev_control_pipe
[0],
169 {.fd
= udev_monitor_fd
,
173 usbi_dbg("udev event thread entering.");
175 while (poll(fds
, 2, -1) >= 0) {
176 if (fds
[0].revents
& POLLIN
) {
177 /* activity on control pipe, read the byte and exit */
178 r
= usbi_read(udev_control_pipe
[0], &dummy
, sizeof(dummy
));
180 usbi_warn(NULL
, "udev control pipe read failed");
184 if (fds
[1].revents
& POLLIN
) {
185 usbi_mutex_static_lock(&linux_hotplug_lock
);
186 udev_dev
= udev_monitor_receive_device(udev_monitor
);
188 udev_hotplug_event(udev_dev
);
189 usbi_mutex_static_unlock(&linux_hotplug_lock
);
193 usbi_dbg("udev event thread exiting");
198 static int udev_device_info(struct libusb_context
*ctx
, int detached
,
199 struct udev_device
*udev_dev
, uint8_t *busnum
,
200 uint8_t *devaddr
, const char **sys_name
) {
201 const char *dev_node
;
203 dev_node
= udev_device_get_devnode(udev_dev
);
205 return LIBUSB_ERROR_OTHER
;
208 *sys_name
= udev_device_get_sysname(udev_dev
);
210 return LIBUSB_ERROR_OTHER
;
213 return linux_get_device_address(ctx
, detached
, busnum
, devaddr
,
214 dev_node
, *sys_name
);
217 static void udev_hotplug_event(struct udev_device
* udev_dev
)
219 const char* udev_action
;
220 const char* sys_name
= NULL
;
221 uint8_t busnum
= 0, devaddr
= 0;
226 udev_action
= udev_device_get_action(udev_dev
);
231 detached
= !strncmp(udev_action
, "remove", 6);
233 r
= udev_device_info(NULL
, detached
, udev_dev
, &busnum
, &devaddr
, &sys_name
);
234 if (LIBUSB_SUCCESS
!= r
) {
238 usbi_dbg("udev hotplug event. action: %s.", udev_action
);
240 if (strncmp(udev_action
, "add", 3) == 0) {
241 linux_hotplug_enumerate(busnum
, devaddr
, sys_name
);
242 } else if (detached
) {
243 linux_device_disconnected(busnum
, devaddr
, sys_name
);
245 usbi_err(NULL
, "ignoring udev action %s", udev_action
);
249 udev_device_unref(udev_dev
);
252 int linux_udev_scan_devices(struct libusb_context
*ctx
)
254 struct udev_enumerate
*enumerator
;
255 struct udev_list_entry
*devices
, *entry
;
256 struct udev_device
*udev_dev
;
257 const char *sys_name
;
260 assert(udev_ctx
!= NULL
);
262 enumerator
= udev_enumerate_new(udev_ctx
);
263 if (NULL
== enumerator
) {
264 usbi_err(ctx
, "error creating udev enumerator");
265 return LIBUSB_ERROR_OTHER
;
268 udev_enumerate_add_match_subsystem(enumerator
, "usb");
269 udev_enumerate_scan_devices(enumerator
);
270 devices
= udev_enumerate_get_list_entry(enumerator
);
272 udev_list_entry_foreach(entry
, devices
) {
273 const char *path
= udev_list_entry_get_name(entry
);
274 uint8_t busnum
= 0, devaddr
= 0;
276 udev_dev
= udev_device_new_from_syspath(udev_ctx
, path
);
278 r
= udev_device_info(ctx
, 0, udev_dev
, &busnum
, &devaddr
, &sys_name
);
280 udev_device_unref(udev_dev
);
284 linux_enumerate_device(ctx
, busnum
, devaddr
, sys_name
);
285 udev_device_unref(udev_dev
);
288 udev_enumerate_unref(enumerator
);
290 return LIBUSB_SUCCESS
;
293 void linux_udev_hotplug_poll(void)
295 struct udev_device
* udev_dev
;
297 usbi_mutex_static_lock(&linux_hotplug_lock
);
299 udev_dev
= udev_monitor_receive_device(udev_monitor
);
301 usbi_dbg("Handling hotplug event from hotplug_poll");
302 udev_hotplug_event(udev_dev
);
305 usbi_mutex_static_unlock(&linux_hotplug_lock
);