From cc9e6a2318352a8fd3a35c25fcb294331ff54288 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Tue, 28 Apr 2009 02:02:55 +0200 Subject: USB mostly complete, main loop added, polls for devices --- CMakeLists.txt | 2 +- device.c | 56 +++++++++++++ device.h | 29 +++++++ log.c | 18 +++-- log.h | 14 ++-- main.c | 66 ++++++++++++--- usb-linux.c | 251 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- usb.h | 18 +++++ utils.c | 6 +- utils.h | 16 ++-- 10 files changed, 440 insertions(+), 36 deletions(-) create mode 100644 device.c create mode 100644 device.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 81a6965..acbc779 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,6 @@ set(LIBS ${LIBS} ${USB_LIBRARIES}) #set(CMAKE_VERBOSE_MAKEFILE ON) add_definitions(-Wall -O2) -add_executable(usbmuxd main.c usb-linux.c log.c utils.c) +add_executable(usbmuxd main.c usb-linux.c log.c utils.c device.c) target_link_libraries(usbmuxd ${LIBS}) diff --git a/device.c b/device.c new file mode 100644 index 0000000..659f4ae --- /dev/null +++ b/device.c @@ -0,0 +1,56 @@ +/* + usbmuxd - iPhone/iPod Touch USB multiplex server daemon + +Copyright (C) 2009 Hector Martin "marcan" + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 or version 3. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include "device.h" +#include "usb.h" +#include "log.h" + +int device_id; +/* +int get_next_device_id(void) +{ + int i; + while(1) { + for(i=0; i + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 or version 3. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +*/ + +#ifndef __DEVICE_H__ +#define __DEVICE_H__ + +#include "usb.h" + +void device_add(struct usb_device *dev); +void device_remove(struct usb_device *dev); + +#endif diff --git a/log.c b/log.c index d7f57df..29b3506 100644 --- a/log.c +++ b/log.c @@ -26,25 +26,33 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #include #include #include +#include +#include #include "log.h" -int log_level = LOG_SPEW; +int log_level = LL_SPEW; void usbmuxd_log(enum loglevel level, const char *fmt, ...) { va_list ap; char *fs; + struct timeval ts; + struct tm *tp; - if(level < log_level) + gettimeofday(&ts, NULL); + tp = localtime(&ts.tv_sec); + + if(level > log_level) return; - fs = malloc(10 + strlen(fmt)); - sprintf(fs, "[%d] %s\n", level, fmt); + fs = malloc(20 + strlen(fmt)); + strftime(fs, 10, "[%H:%M:%S", tp); + sprintf(fs+9, ".%03d][%d] %s\n", (int)(ts.tv_usec / 1000), level, fmt); va_start(ap, fmt); vfprintf(stderr, fs, ap); va_end(ap); free(fs); -} \ No newline at end of file +} diff --git a/log.h b/log.h index fda2e1a..56ecbf4 100644 --- a/log.h +++ b/log.h @@ -22,13 +22,13 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define __LOG_H__ enum loglevel { - LOG_SPEW = 0, - LOG_DEBUG, - LOG_INFO, - LOG_NOTICE, - LOG_WARNING, - LOG_ERROR, - LOG_FATAL, + LL_FATAL = 0, + LL_ERROR, + LL_WARNING, + LL_NOTICE, + LL_INFO, + LL_DEBUG, + LL_SPEW, }; extern int log_level; diff --git a/main.c b/main.c index c2467a2..6773d0e 100644 --- a/main.c +++ b/main.c @@ -42,13 +42,13 @@ int create_socket(void) { int listenfd; if(unlink(socket_path) == -1 && errno != ENOENT) { - usbmuxd_log(LOG_FATAL, "unlink(%s) failed: %s", socket_path, strerror(errno)); + usbmuxd_log(LL_FATAL, "unlink(%s) failed: %s", socket_path, strerror(errno)); return -1; } listenfd = socket(AF_UNIX, SOCK_STREAM, 0); if (listenfd == -1) { - usbmuxd_log(LOG_FATAL, "socket() failed: %s", strerror(errno)); + usbmuxd_log(LL_FATAL, "socket() failed: %s", strerror(errno)); return -1; } @@ -56,37 +56,85 @@ int create_socket(void) { bind_addr.sun_family = AF_UNIX; strcpy(bind_addr.sun_path, socket_path); if (bind(listenfd, (struct sockaddr*)&bind_addr, sizeof(bind_addr)) != 0) { - usbmuxd_log(LOG_FATAL, "bind() failed: %s", strerror(errno)); + usbmuxd_log(LL_FATAL, "bind() failed: %s", strerror(errno)); return -1; } // Start listening if (listen(listenfd, 5) != 0) { - usbmuxd_log(LOG_FATAL, "listen() failed: %s", strerror(errno)); + usbmuxd_log(LL_FATAL, "listen() failed: %s", strerror(errno)); return -1; } return listenfd; } +int main_loop(int listenfd) +{ + int to, cnt, i; + struct fdlist pollfds; + + while(1) { + usbmuxd_log(LL_SPEW, "main_loop iteration"); + to = usb_get_timeout(); + usbmuxd_log(LL_SPEW, "USB timeout is %d ms", to); + + fdlist_create(&pollfds); + usb_get_fds(&pollfds); + usbmuxd_log(LL_SPEW, "fd count is %d", pollfds.count); + + cnt = poll(pollfds.fds, pollfds.count, to); + usbmuxd_log(LL_SPEW, "poll() returned %d", cnt); + + if(cnt == 0) { + if(usb_process() < 0) { + usbmuxd_log(LL_FATAL, "usb_process() failed"); + return -1; + } + } else { + for(i=0; i #include -#include +#include +#include #include -int usb_init(void) +#include "usb.h" +#include "log.h" +#include "device.h" + +// interval for device connection/disconnection polling, in milliseconds +// we need this because there is currently no asynchronous device discovery mechanism in libusb +#define DEVICE_POLL_TIME 1000 + +struct usb_device { + libusb_device_handle *dev; + uint8_t bus, address; + char serial[256]; + int alive; +}; + +int num_devs; +int device_id; +struct usb_device *device_list; + +struct timeval next_dev_poll_time; + +static int alloc_device(void) { + int i; + for(i=0; idev) { + return; + } + libusb_release_interface(dev->dev, USB_INTERFACE); + libusb_close(dev->dev); + dev->dev = NULL; +} + +static int usb_discover(void) +{ + int cnt, i, j, res; + int valid_count = 0; + libusb_device **devs; + + cnt = libusb_get_device_list(NULL, &devs); + if(cnt < 0) { + usbmuxd_log(LL_FATAL, "Could not get device list: %d", cnt); + return cnt; + } + + usbmuxd_log(LL_SPEW, "usb_discover: scanning %d devices", cnt); + + for(j=0; jdev) { + return NULL; + } + return dev->serial; +} + +int usb_get_location(struct usb_device *dev) +{ + if(!dev->dev) { + return 0; + } + return (dev->bus << 16) | dev->address; +} + +void usb_get_fds(struct fdlist *list) +{ + const struct libusb_pollfd **usbfds; + const struct libusb_pollfd **p; + usbfds = libusb_get_pollfds(NULL); + if(!usbfds) { + usbmuxd_log(LL_ERROR, "libusb_get_pollfds failed"); + return; + } + p = usbfds; + while(*p) { + fdlist_add(list, FD_USB, (*p)->fd, (*p)->events); + p++; + } + free(usbfds); +} + +static int dev_poll_remain_ms(void) +{ + int msecs; + struct timeval tv; + gettimeofday(&tv, NULL); + msecs = (next_dev_poll_time.tv_sec - tv.tv_sec) * 1000; + msecs += (next_dev_poll_time.tv_usec - tv.tv_usec) / 1000; + if(msecs < 0) + return 0; + return msecs; +} + +int usb_get_timeout(void) +{ + struct timeval tv; + int msec; + int res; + int pollrem; + pollrem = dev_poll_remain_ms(); + res = libusb_get_next_timeout(NULL, &tv); + if(res == 0) + return pollrem; + if(res < 0) { + usbmuxd_log(LL_ERROR, "libusb_get_next_timeout failed: %d", res); + return pollrem; + } + msec = tv.tv_sec * 1000; + msec += tv.tv_usec / 1000; + if(msec > pollrem) + return pollrem; + return msec; +} + +int usb_process(void) +{ + int res; + struct timeval tv; + tv.tv_sec = tv.tv_usec = 0; + res = libusb_handle_events_timeout(NULL, &tv); + if(res < 0) { + usbmuxd_log(LL_ERROR, "libusb_handle_events_timeout failed: %d", res); + return res; + } + if(dev_poll_remain_ms() <= 0) { + res = usb_discover(); + if(res < 0) { + usbmuxd_log(LL_ERROR, "usb_discover failed: %d", res); + return res; + } + } return 0; } + +int usb_init(void) +{ + int res; + usbmuxd_log(LL_DEBUG, "usb_init for linux / libusb 1.0"); + + res = libusb_init(NULL); + if(res != 0) { + usbmuxd_log(LL_FATAL, "libusb_init failed: %d", res); + return -1; + } + + device_id = 1; + num_devs = 1; + device_list = malloc(sizeof(*device_list) * num_devs); + memset(device_list, 0, sizeof(*device_list) * num_devs); + + return usb_discover(); +} + +void usb_shutdown(void) +{ + int i; + usbmuxd_log(LL_DEBUG, "usb_shutdown"); + for(i=0; i #include "utils.h" -void fdlist_create(fdlist *list) +void fdlist_create(struct fdlist *list) { list->count = 0; list->capacity = 4; list->owners = malloc(sizeof(*list->owners) * list->capacity); list->fds = malloc(sizeof(*list->fds) * list->capacity); } -void fdlist_add(fdlist *list, enum fdowner owner, int fd, short events) +void fdlist_add(struct fdlist *list, enum fdowner owner, int fd, short events) { if(list->count == list->capacity) { list->capacity *= 2; @@ -46,7 +46,7 @@ void fdlist_add(fdlist *list, enum fdowner owner, int fd, short events) list->count++; } -void fdlist_free(fdlist *list) +void fdlist_free(struct fdlist *list) { list->count = 0; list->capacity = 0; diff --git a/utils.h b/utils.h index 465487d..9a6d566 100644 --- a/utils.h +++ b/utils.h @@ -18,8 +18,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef __LOG_H__ -#define __LOG_H__ +#ifndef __UTILS_H__ +#define __UTILS_H__ #include @@ -29,19 +29,17 @@ enum fdowner { FD_USB }; -typedef struct { +struct fdlist { int count; int capacity; enum fdowner *owners; struct pollfd *fds; -} fdlist; +}; -void fdlist_create(fdlist *list); -void fdlist_add(fdlist *list, enum fdowner owner, int fd, short events); -void fdlist_free(fdlist *list); +void fdlist_create(struct fdlist *list); +void fdlist_add(struct fdlist *list, enum fdowner owner, int fd, short events); +void fdlist_free(struct fdlist *list); #define MIN(X, Y) ((X) < (Y) ? (X) : (Y)) - - #endif -- cgit v1.1-32-gdbae