2009-08-14 13:19:32 +00:00
|
|
|
/*
|
2010-01-25 15:36:07 +00:00
|
|
|
* Copyright (C) 2009-2010 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
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include "hostusb.h"
|
|
|
|
#include "logging.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "virterror_internal.h"
|
|
|
|
|
2010-01-11 16:40:46 +00:00
|
|
|
#define USB_SYSFS "/sys/bus/usb"
|
2009-08-14 13:19:32 +00:00
|
|
|
#define USB_DEVFS "/dev/bus/usb/"
|
2010-01-11 16:40:46 +00:00
|
|
|
#define USB_ID_LEN 10 /* "1234 5678" */
|
|
|
|
#define USB_ADDR_LEN 8 /* "123:456" */
|
2009-08-14 13:19:32 +00:00
|
|
|
|
|
|
|
struct _usbDevice {
|
|
|
|
unsigned bus;
|
|
|
|
unsigned dev;
|
|
|
|
|
|
|
|
char name[USB_ADDR_LEN]; /* domain:bus:slot.function */
|
|
|
|
char id[USB_ID_LEN]; /* product vendor */
|
|
|
|
char path[PATH_MAX];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* For virReportOOMError() and virReportSystemError() */
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
|
|
|
#define usbReportError(conn, code, fmt...) \
|
|
|
|
virReportErrorHelper(conn, VIR_FROM_NONE, code, __FILE__, \
|
|
|
|
__FUNCTION__, __LINE__, fmt)
|
|
|
|
|
2010-01-11 16:40:46 +00:00
|
|
|
static int usbSysReadFile(virConnectPtr conn,
|
|
|
|
const char *f_name, const char *d_name,
|
|
|
|
int base, unsigned *value)
|
|
|
|
{
|
|
|
|
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) {
|
|
|
|
usbReportError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usbFindBusByVendor(virConnectPtr conn,
|
|
|
|
unsigned vendor, unsigned product,
|
|
|
|
unsigned *bus, unsigned *devno)
|
|
|
|
{
|
|
|
|
DIR *dir = NULL;
|
|
|
|
int ret = -1, found = 0;
|
|
|
|
char *ignore = NULL;
|
|
|
|
struct dirent *de;
|
|
|
|
|
|
|
|
dir = opendir(USB_SYSFS "/devices");
|
|
|
|
if (!dir) {
|
|
|
|
virReportSystemError(conn, errno,
|
|
|
|
_("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))) {
|
|
|
|
unsigned found_prod, found_vend;
|
|
|
|
if (de->d_name[0] == '.' || strchr(de->d_name, ':'))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (usbSysReadFile(conn, "idVendor", de->d_name,
|
|
|
|
16, &found_vend) < 0)
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
if (usbSysReadFile(conn, "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
|
|
|
|
|
|
|
if (found_prod == product && found_vend == vendor) {
|
|
|
|
/* Lookup bus.addr info */
|
|
|
|
char *tmpstr = de->d_name;
|
|
|
|
unsigned found_bus, found_addr;
|
|
|
|
|
|
|
|
if (STREQ(de->d_name, "usb"))
|
|
|
|
tmpstr += 3;
|
|
|
|
|
|
|
|
if (virStrToLong_ui(tmpstr, &ignore, 10, &found_bus) < 0) {
|
|
|
|
usbReportError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Failed to parse dir name '%s'"),
|
|
|
|
de->d_name);
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (usbSysReadFile(conn, "devnum", de->d_name,
|
|
|
|
10, &found_addr) < 0)
|
2010-01-25 15:54:06 +00:00
|
|
|
goto cleanup;
|
2010-01-11 16:40:46 +00:00
|
|
|
|
|
|
|
*bus = found_bus;
|
|
|
|
*devno = found_addr;
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
usbReportError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Did not find USB device %x:%x"), vendor, product);
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
|
2010-01-25 15:54:06 +00:00
|
|
|
cleanup:
|
|
|
|
if (dir) {
|
|
|
|
int saved_errno = errno;
|
|
|
|
closedir (dir);
|
|
|
|
errno = saved_errno;
|
|
|
|
}
|
2010-01-11 16:40:46 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2009-08-14 13:19:32 +00:00
|
|
|
|
|
|
|
usbDevice *
|
|
|
|
usbGetDevice(virConnectPtr conn,
|
|
|
|
unsigned bus,
|
2010-01-11 16:40:46 +00:00
|
|
|
unsigned devno,
|
|
|
|
unsigned vendor,
|
|
|
|
unsigned product)
|
2009-08-14 13:19:32 +00:00
|
|
|
{
|
|
|
|
usbDevice *dev;
|
|
|
|
|
|
|
|
if (VIR_ALLOC(dev) < 0) {
|
2010-02-04 18:19:08 +00:00
|
|
|
virReportOOMError();
|
2009-08-14 13:19:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-01-11 16:40:46 +00:00
|
|
|
if (vendor) {
|
|
|
|
/* Look up bus.dev by vendor:product */
|
2010-01-25 15:44:13 +00:00
|
|
|
if (usbFindBusByVendor(conn, vendor, product, &bus, &devno) < 0) {
|
|
|
|
VIR_FREE(dev);
|
2010-01-11 16:40:46 +00:00
|
|
|
return NULL;
|
2010-01-25 15:44:13 +00:00
|
|
|
}
|
2010-01-11 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
2009-08-14 13:19:32 +00:00
|
|
|
dev->bus = bus;
|
|
|
|
dev->dev = devno;
|
|
|
|
|
|
|
|
snprintf(dev->name, sizeof(dev->name), "%.3o:%.3o",
|
|
|
|
dev->bus, dev->dev);
|
|
|
|
snprintf(dev->path, sizeof(dev->path),
|
|
|
|
USB_DEVFS "%03o/%03o", dev->bus, dev->dev);
|
|
|
|
|
|
|
|
/* XXX fixme. this should be product/vendor */
|
|
|
|
snprintf(dev->id, sizeof(dev->id), "%d %d", dev->bus, dev->dev);
|
|
|
|
|
|
|
|
VIR_DEBUG("%s %s: initialized", dev->id, dev->name);
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
usbFreeDevice(virConnectPtr conn ATTRIBUTE_UNUSED, usbDevice *dev)
|
|
|
|
{
|
|
|
|
VIR_DEBUG("%s %s: freeing", dev->id, dev->name);
|
|
|
|
VIR_FREE(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int usbDeviceFileIterate(virConnectPtr conn,
|
|
|
|
usbDevice *dev,
|
|
|
|
usbDeviceFileActor actor,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
return (actor)(conn, dev, dev->path, opaque);
|
|
|
|
}
|