2009-08-14 13:19:32 +00:00
|
|
|
/*
|
2012-12-12 17:04:51 +00:00
|
|
|
* virusb.c: helper APIs for managing host USB devices
|
|
|
|
*
|
2013-05-09 18:59:04 +00:00
|
|
|
* Copyright (C) 2009-2013 Red Hat, Inc.
|
2009-08-14 13:19:32 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2009-08-14 13:19:32 +00:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2012-12-12 17:04:51 +00:00
|
|
|
#include "virusb.h"
|
2012-12-12 17:59:27 +00:00
|
|
|
#include "virlog.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-12-13 17:44:57 +00:00
|
|
|
#include "virutil.h"
|
2012-12-13 18:21:53 +00:00
|
|
|
#include "virerror.h"
|
2013-05-09 18:59:04 +00:00
|
|
|
#include "virfile.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
#include "virstring.h"
|
2009-08-14 13:19:32 +00:00
|
|
|
|
2010-01-11 16:40:46 +00:00
|
|
|
#define USB_SYSFS "/sys/bus/usb"
|
|
|
|
#define USB_ID_LEN 10 /* "1234 5678" */
|
|
|
|
#define USB_ADDR_LEN 8 /* "123:456" */
|
2009-08-14 13:19:32 +00:00
|
|
|
|
2012-05-04 07:49:58 +00:00
|
|
|
/* For virReportOOMError() and virReportSystemError() */
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
struct _virUSBDevice {
|
2012-05-04 07:49:58 +00:00
|
|
|
unsigned int bus;
|
|
|
|
unsigned int dev;
|
2009-08-14 13:19:32 +00:00
|
|
|
|
|
|
|
char name[USB_ADDR_LEN]; /* domain:bus:slot.function */
|
|
|
|
char id[USB_ID_LEN]; /* product vendor */
|
2011-06-22 20:52:32 +00:00
|
|
|
char *path;
|
2011-12-21 17:58:29 +00:00
|
|
|
const char *used_by; /* name of the domain using this dev */
|
|
|
|
};
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
struct _virUSBDeviceList {
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectLockable parent;
|
2011-12-21 17:58:29 +00:00
|
|
|
unsigned int count;
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr *devs;
|
2009-08-14 13:19:32 +00:00
|
|
|
};
|
|
|
|
|
2012-05-04 07:49:58 +00:00
|
|
|
typedef enum {
|
|
|
|
USB_DEVICE_ALL = 0,
|
|
|
|
USB_DEVICE_FIND_BY_VENDOR = 1 << 0,
|
|
|
|
USB_DEVICE_FIND_BY_BUS = 1 << 1,
|
2013-01-14 22:11:44 +00:00
|
|
|
} virUSBDeviceFindFlags;
|
2009-08-14 13:19:32 +00:00
|
|
|
|
2013-01-16 11:49:54 +00:00
|
|
|
static virClassPtr virUSBDeviceListClass;
|
|
|
|
|
|
|
|
static void virUSBDeviceListDispose(void *obj);
|
|
|
|
|
|
|
|
static int virUSBOnceInit(void)
|
|
|
|
{
|
|
|
|
if (!(virUSBDeviceListClass = virClassNew(virClassForObjectLockable(),
|
|
|
|
"virUSBDeviceList",
|
|
|
|
sizeof(virUSBDeviceList),
|
|
|
|
virUSBDeviceListDispose)))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIR_ONCE_GLOBAL_INIT(virUSB)
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
static int virUSBSysReadFile(const char *f_name, const char *d_name,
|
|
|
|
int base, unsigned int *value)
|
2010-01-11 16:40:46 +00:00
|
|
|
{
|
|
|
|
int ret = -1, tmp;
|
|
|
|
char *buf = NULL;
|
|
|
|
char *filename = NULL;
|
|
|
|
char *ignore = NULL;
|
|
|
|
|
|
|
|
tmp = virAsprintf(&filename, USB_SYSFS "/devices/%s/%s", d_name, f_name);
|
|
|
|
if (tmp < 0) {
|
2010-02-04 18:19:08 +00:00
|
|
|
virReportOOMError();
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (virFileReadAll(filename, 1024, &buf) < 0)
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
|
|
|
if (virStrToLong_ui(buf, &ignore, base, value) < 0) {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2010-01-11 16:40:46 +00:00
|
|
|
_("Could not parse usb file %s"), filename);
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
2010-01-25 15:54:06 +00:00
|
|
|
cleanup:
|
2010-01-11 16:40:46 +00:00
|
|
|
VIR_FREE(filename);
|
|
|
|
VIR_FREE(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
static virUSBDeviceListPtr
|
|
|
|
virUSBDeviceSearch(unsigned int vendor,
|
|
|
|
unsigned int product,
|
|
|
|
unsigned int bus,
|
|
|
|
unsigned int devno,
|
|
|
|
const char *vroot,
|
|
|
|
unsigned int flags)
|
2010-01-11 16:40:46 +00:00
|
|
|
{
|
|
|
|
DIR *dir = NULL;
|
2012-05-04 07:49:58 +00:00
|
|
|
bool found = false;
|
2010-01-11 16:40:46 +00:00
|
|
|
char *ignore = NULL;
|
|
|
|
struct dirent *de;
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr list = NULL, ret = NULL;
|
|
|
|
virUSBDevicePtr usb;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (!(list = virUSBDeviceListNew()))
|
2012-05-04 07:49:58 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
|
|
|
dir = opendir(USB_SYSFS "/devices");
|
|
|
|
if (!dir) {
|
2010-02-04 20:02:58 +00:00
|
|
|
virReportSystemError(errno,
|
2010-01-11 16:40:46 +00:00
|
|
|
_("Could not open directory %s"),
|
|
|
|
USB_SYSFS "/devices");
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ((de = readdir(dir))) {
|
2012-05-04 07:49:58 +00:00
|
|
|
unsigned int found_prod, found_vend, found_bus, found_devno;
|
|
|
|
char *tmpstr = de->d_name;
|
|
|
|
|
2010-01-11 16:40:46 +00:00
|
|
|
if (de->d_name[0] == '.' || strchr(de->d_name, ':'))
|
|
|
|
continue;
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (virUSBSysReadFile("idVendor", de->d_name,
|
|
|
|
16, &found_vend) < 0)
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (virUSBSysReadFile("idProduct", de->d_name,
|
|
|
|
16, &found_prod) < 0)
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
2012-05-04 07:49:58 +00:00
|
|
|
if (STRPREFIX(de->d_name, "usb"))
|
|
|
|
tmpstr += 3;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
2012-05-04 07:49:58 +00:00
|
|
|
if (virStrToLong_ui(tmpstr, &ignore, 10, &found_bus) < 0) {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2012-05-04 07:49:58 +00:00
|
|
|
_("Failed to parse dir name '%s'"),
|
|
|
|
de->d_name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2010-01-11 16:40:46 +00:00
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (virUSBSysReadFile("devnum", de->d_name,
|
|
|
|
10, &found_devno) < 0)
|
2012-05-04 07:49:58 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
2012-05-04 07:49:58 +00:00
|
|
|
if ((flags & USB_DEVICE_FIND_BY_VENDOR) &&
|
|
|
|
(found_prod != product || found_vend != vendor))
|
|
|
|
continue;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
2012-05-04 07:49:58 +00:00
|
|
|
if (flags & USB_DEVICE_FIND_BY_BUS) {
|
|
|
|
if (found_bus != bus || found_devno != devno)
|
|
|
|
continue;
|
|
|
|
found = true;
|
2010-01-11 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
usb = virUSBDeviceNew(found_bus, found_devno, vroot);
|
2012-05-04 07:49:58 +00:00
|
|
|
if (!usb)
|
|
|
|
goto cleanup;
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (virUSBDeviceListAdd(list, usb) < 0) {
|
|
|
|
virUSBDeviceFree(usb);
|
2012-05-04 07:49:58 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = list;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
2010-01-25 15:54:06 +00:00
|
|
|
cleanup:
|
|
|
|
if (dir) {
|
|
|
|
int saved_errno = errno;
|
2012-05-04 07:49:58 +00:00
|
|
|
closedir(dir);
|
2010-01-25 15:54:06 +00:00
|
|
|
errno = saved_errno;
|
|
|
|
}
|
2012-05-04 07:49:58 +00:00
|
|
|
|
|
|
|
if (!ret)
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2010-01-11 16:40:46 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2009-08-14 13:19:32 +00:00
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
int
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFindByVendor(unsigned int vendor,
|
2013-04-15 10:29:23 +00:00
|
|
|
unsigned int product,
|
2013-01-14 22:11:44 +00:00
|
|
|
const char *vroot,
|
|
|
|
bool mandatory,
|
|
|
|
virUSBDeviceListPtr *devices)
|
2012-05-04 07:49:58 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr list;
|
2012-10-03 14:57:28 +00:00
|
|
|
int count;
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (!(list = virUSBDeviceSearch(vendor, product, 0 , 0,
|
|
|
|
vroot,
|
|
|
|
USB_DEVICE_FIND_BY_VENDOR)))
|
2012-10-03 14:57:28 +00:00
|
|
|
return -1;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
|
|
|
if (list->count == 0) {
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2012-10-03 14:57:28 +00:00
|
|
|
if (!mandatory) {
|
|
|
|
VIR_DEBUG("Did not find USB device %x:%x",
|
|
|
|
vendor, product);
|
|
|
|
if (devices)
|
|
|
|
*devices = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2012-05-04 07:49:58 +00:00
|
|
|
_("Did not find USB device %x:%x"), vendor, product);
|
2012-10-03 14:57:28 +00:00
|
|
|
return -1;
|
2012-05-04 07:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
count = list->count;
|
|
|
|
if (devices)
|
|
|
|
*devices = list;
|
|
|
|
else
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2012-10-03 14:57:28 +00:00
|
|
|
|
|
|
|
return count;
|
2012-05-04 07:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
int
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFindByBus(unsigned int bus,
|
2013-04-15 10:29:23 +00:00
|
|
|
unsigned int devno,
|
2013-01-14 22:11:44 +00:00
|
|
|
const char *vroot,
|
|
|
|
bool mandatory,
|
|
|
|
virUSBDevicePtr *usb)
|
2012-05-04 07:49:58 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr list;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
if (!(list = virUSBDeviceSearch(0, 0, bus, devno,
|
|
|
|
vroot,
|
|
|
|
USB_DEVICE_FIND_BY_BUS)))
|
2012-10-03 14:57:28 +00:00
|
|
|
return -1;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
|
|
|
if (list->count == 0) {
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2012-10-03 14:57:28 +00:00
|
|
|
if (!mandatory) {
|
|
|
|
VIR_DEBUG("Did not find USB device bus:%u device:%u",
|
|
|
|
bus, devno);
|
|
|
|
if (usb)
|
|
|
|
*usb = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2012-05-04 07:49:58 +00:00
|
|
|
_("Did not find USB device bus:%u device:%u"),
|
|
|
|
bus, devno);
|
2012-10-03 14:57:28 +00:00
|
|
|
return -1;
|
2012-05-04 07:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
if (usb) {
|
2013-01-14 22:11:44 +00:00
|
|
|
*usb = virUSBDeviceListGet(list, 0);
|
|
|
|
virUSBDeviceListSteal(list, *usb);
|
2012-10-03 14:57:28 +00:00
|
|
|
}
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2012-05-04 07:49:58 +00:00
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
return 0;
|
2012-05-04 07:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
int
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFind(unsigned int vendor,
|
|
|
|
unsigned int product,
|
|
|
|
unsigned int bus,
|
|
|
|
unsigned int devno,
|
|
|
|
const char *vroot,
|
|
|
|
bool mandatory,
|
|
|
|
virUSBDevicePtr *usb)
|
2012-05-04 07:49:58 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr list;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
|
|
|
unsigned int flags = USB_DEVICE_FIND_BY_VENDOR|USB_DEVICE_FIND_BY_BUS;
|
2013-01-14 22:11:44 +00:00
|
|
|
if (!(list = virUSBDeviceSearch(vendor, product, bus, devno,
|
|
|
|
vroot, flags)))
|
2012-10-03 14:57:28 +00:00
|
|
|
return -1;
|
2012-05-04 07:49:58 +00:00
|
|
|
|
|
|
|
if (list->count == 0) {
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2012-10-03 14:57:28 +00:00
|
|
|
if (!mandatory) {
|
|
|
|
VIR_DEBUG("Did not find USB device %x:%x bus:%u device:%u",
|
|
|
|
vendor, product, bus, devno);
|
|
|
|
if (usb)
|
|
|
|
*usb = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2012-05-04 07:49:58 +00:00
|
|
|
_("Did not find USB device %x:%x bus:%u device:%u"),
|
|
|
|
vendor, product, bus, devno);
|
2012-10-03 14:57:28 +00:00
|
|
|
return -1;
|
2012-05-04 07:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
if (usb) {
|
2013-01-14 22:11:44 +00:00
|
|
|
*usb = virUSBDeviceListGet(list, 0);
|
|
|
|
virUSBDeviceListSteal(list, *usb);
|
2012-10-03 14:57:28 +00:00
|
|
|
}
|
2013-01-16 11:49:54 +00:00
|
|
|
virObjectUnref(list);
|
2012-05-04 07:49:58 +00:00
|
|
|
|
2012-10-03 14:57:28 +00:00
|
|
|
return 0;
|
2012-05-04 07:49:58 +00:00
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr
|
|
|
|
virUSBDeviceNew(unsigned int bus,
|
|
|
|
unsigned int devno,
|
|
|
|
const char *vroot)
|
2009-08-14 13:19:32 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr dev;
|
2009-08-14 13:19:32 +00:00
|
|
|
|
|
|
|
if (VIR_ALLOC(dev) < 0) {
|
2010-02-04 18:19:08 +00:00
|
|
|
virReportOOMError();
|
2009-08-14 13:19:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev->bus = bus;
|
|
|
|
dev->dev = devno;
|
|
|
|
|
2011-06-22 20:52:32 +00:00
|
|
|
if (snprintf(dev->name, sizeof(dev->name), "%.3o:%.3o",
|
|
|
|
dev->bus, dev->dev) >= sizeof(dev->name)) {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2011-06-22 20:52:32 +00:00
|
|
|
_("dev->name buffer overflow: %.3o:%.3o"),
|
|
|
|
dev->bus, dev->dev);
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFree(dev);
|
2011-06-22 20:52:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-27 16:17:47 +00:00
|
|
|
if (virAsprintf(&dev->path, "%s" USB_DEVFS "%03d/%03d",
|
|
|
|
vroot ? vroot : "",
|
2011-06-22 20:52:32 +00:00
|
|
|
dev->bus, dev->dev) < 0) {
|
|
|
|
virReportOOMError();
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFree(dev);
|
2011-06-22 20:52:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2009-08-14 13:19:32 +00:00
|
|
|
|
|
|
|
/* XXX fixme. this should be product/vendor */
|
2011-06-22 20:52:32 +00:00
|
|
|
if (snprintf(dev->id, sizeof(dev->id), "%d %d", dev->bus,
|
|
|
|
dev->dev) >= sizeof(dev->id)) {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2011-06-22 20:52:32 +00:00
|
|
|
_("dev->id buffer overflow: %d %d"),
|
|
|
|
dev->bus, dev->dev);
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFree(dev);
|
2011-06-22 20:52:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2009-08-14 13:19:32 +00:00
|
|
|
|
|
|
|
VIR_DEBUG("%s %s: initialized", dev->id, dev->name);
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFree(virUSBDevicePtr dev)
|
2009-08-14 13:19:32 +00:00
|
|
|
{
|
2013-01-08 12:42:26 +00:00
|
|
|
if (!dev)
|
|
|
|
return;
|
2009-08-14 13:19:32 +00:00
|
|
|
VIR_DEBUG("%s %s: freeing", dev->id, dev->name);
|
2011-06-22 20:52:32 +00:00
|
|
|
VIR_FREE(dev->path);
|
2009-08-14 13:19:32 +00:00
|
|
|
VIR_FREE(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
void virUSBDeviceSetUsedBy(virUSBDevicePtr dev,
|
|
|
|
const char *name)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
|
|
|
dev->used_by = name;
|
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
const char * virUSBDeviceGetUsedBy(virUSBDevicePtr dev)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
|
|
|
return dev->used_by;
|
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
const char *virUSBDeviceGetName(virUSBDevicePtr dev)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
|
|
|
return dev->name;
|
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
unsigned int virUSBDeviceGetBus(virUSBDevicePtr dev)
|
2010-03-04 11:48:16 +00:00
|
|
|
{
|
|
|
|
return dev->bus;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
unsigned int virUSBDeviceGetDevno(virUSBDevicePtr dev)
|
2010-03-04 11:48:16 +00:00
|
|
|
{
|
|
|
|
return dev->dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
int virUSBDeviceFileIterate(virUSBDevicePtr dev,
|
|
|
|
virUSBDeviceFileActor actor,
|
|
|
|
void *opaque)
|
2009-08-14 13:19:32 +00:00
|
|
|
{
|
2010-02-10 09:55:39 +00:00
|
|
|
return (actor)(dev, dev->path, opaque);
|
2009-08-14 13:19:32 +00:00
|
|
|
}
|
2011-12-21 17:58:29 +00:00
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr
|
|
|
|
virUSBDeviceListNew(void)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr list;
|
2011-12-21 17:58:29 +00:00
|
|
|
|
2013-01-16 11:49:54 +00:00
|
|
|
if (virUSBInitialize() < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!(list = virObjectLockableNew(virUSBDeviceListClass)))
|
2011-12-21 17:58:29 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2013-01-16 11:49:54 +00:00
|
|
|
static void
|
|
|
|
virUSBDeviceListDispose(void *obj)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
2013-01-16 11:49:54 +00:00
|
|
|
virUSBDeviceListPtr list = obj;
|
2011-12-21 17:58:29 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < list->count; i++)
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceFree(list->devs[i]);
|
2011-12-21 17:58:29 +00:00
|
|
|
|
|
|
|
VIR_FREE(list->devs);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListAdd(virUSBDeviceListPtr list,
|
|
|
|
virUSBDevicePtr dev)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
if (virUSBDeviceListFind(list, dev)) {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
2011-12-21 17:58:29 +00:00
|
|
|
_("Device %s is already in use"),
|
|
|
|
dev->name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (VIR_REALLOC_N(list->devs, list->count+1) < 0) {
|
|
|
|
virReportOOMError();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
list->devs[list->count++] = dev;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr
|
|
|
|
virUSBDeviceListGet(virUSBDeviceListPtr list,
|
|
|
|
int idx)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
|
|
|
if (idx >= list->count ||
|
|
|
|
idx < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return list->devs[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListCount(virUSBDeviceListPtr list)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
|
|
|
return list->count;
|
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr
|
|
|
|
virUSBDeviceListSteal(virUSBDeviceListPtr list,
|
|
|
|
virUSBDevicePtr dev)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr ret = NULL;
|
2011-12-21 17:58:29 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < list->count; i++) {
|
|
|
|
if (list->devs[i]->bus != dev->bus ||
|
|
|
|
list->devs[i]->dev != dev->dev)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = list->devs[i];
|
|
|
|
|
|
|
|
if (i != list->count--)
|
|
|
|
memmove(&list->devs[i],
|
|
|
|
&list->devs[i+1],
|
|
|
|
sizeof(*list->devs) * (list->count - i));
|
|
|
|
|
|
|
|
if (VIR_REALLOC_N(list->devs, list->count) < 0) {
|
|
|
|
; /* not fatal */
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListDel(virUSBDeviceListPtr list,
|
|
|
|
virUSBDevicePtr dev)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr ret = virUSBDeviceListSteal(list, dev);
|
|
|
|
virUSBDeviceFree(ret);
|
2011-12-21 17:58:29 +00:00
|
|
|
}
|
|
|
|
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr
|
|
|
|
virUSBDeviceListFind(virUSBDeviceListPtr list,
|
|
|
|
virUSBDevicePtr dev)
|
2011-12-21 17:58:29 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < list->count; i++) {
|
|
|
|
if (list->devs[i]->bus == dev->bus &&
|
|
|
|
list->devs[i]->dev == dev->dev)
|
|
|
|
return list->devs[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|