亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? usb-linux.c

?? qemu虛擬機代碼
?? C
字號:
/* * Linux host USB redirector * * Copyright (c) 2005 Fabrice Bellard *  * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */#include "vl.h"#if defined(__linux__)#include <dirent.h>#include <sys/ioctl.h>#include <linux/usbdevice_fs.h>#include <linux/version.h>/* We redefine it to avoid version problems */struct usb_ctrltransfer {    uint8_t  bRequestType;    uint8_t  bRequest;    uint16_t wValue;    uint16_t wIndex;    uint16_t wLength;    uint32_t timeout;    void *data;};typedef int USBScanFunc(void *opaque, int bus_num, int addr, int class_id,                        int vendor_id, int product_id,                         const char *product_name, int speed);static int usb_host_find_device(int *pbus_num, int *paddr,                                 const char *devname);//#define DEBUG#define USBDEVFS_PATH "/proc/bus/usb"typedef struct USBHostDevice {    USBDevice dev;    int fd;} USBHostDevice;static void usb_host_handle_reset(USBDevice *dev){#if 0    USBHostDevice *s = (USBHostDevice *)dev;    /* USBDEVFS_RESET, but not the first time as it has already be       done by the host OS */    ioctl(s->fd, USBDEVFS_RESET);#endif} static int usb_host_handle_control(USBDevice *dev,                                   int request,                                   int value,                                   int index,                                   int length,                                   uint8_t *data){    USBHostDevice *s = (USBHostDevice *)dev;    struct usb_ctrltransfer ct;    int ret;    if (request == (DeviceOutRequest | USB_REQ_SET_ADDRESS)) {        /* specific SET_ADDRESS support */        dev->addr = value;        return 0;    } else {        ct.bRequestType = request >> 8;        ct.bRequest = request;        ct.wValue = value;        ct.wIndex = index;        ct.wLength = length;        ct.timeout = 50;        ct.data = data;        ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct);        if (ret < 0) {            switch(errno) {            case ETIMEDOUT:                return USB_RET_NAK;            default:                return USB_RET_STALL;            }        } else {            return ret;        }   }}static int usb_host_handle_data(USBDevice *dev, int pid,                                 uint8_t devep,                                uint8_t *data, int len){    USBHostDevice *s = (USBHostDevice *)dev;    struct usbdevfs_bulktransfer bt;    int ret;    /* XXX: optimize and handle all data types by looking at the       config descriptor */    if (pid == USB_TOKEN_IN)        devep |= 0x80;    bt.ep = devep;    bt.len = len;    bt.timeout = 50;    bt.data = data;    ret = ioctl(s->fd, USBDEVFS_BULK, &bt);    if (ret < 0) {        switch(errno) {        case ETIMEDOUT:            return USB_RET_NAK;        case EPIPE:        default:#ifdef DEBUG            printf("handle_data: errno=%d\n", errno);#endif            return USB_RET_STALL;        }    } else {        return ret;    }}/* XXX: exclude high speed devices or implement EHCI */USBDevice *usb_host_device_open(const char *devname){    int fd, interface, ret, i;    USBHostDevice *dev;    struct usbdevfs_connectinfo ci;    uint8_t descr[1024];    char buf[1024];    int descr_len, dev_descr_len, config_descr_len, nb_interfaces;    int bus_num, addr;    if (usb_host_find_device(&bus_num, &addr, devname) < 0)         return NULL;        snprintf(buf, sizeof(buf), USBDEVFS_PATH "/%03d/%03d",              bus_num, addr);    fd = open(buf, O_RDWR);    if (fd < 0) {        perror(buf);        return NULL;    }    /* read the config description */    descr_len = read(fd, descr, sizeof(descr));    if (descr_len <= 0) {        perror("read descr");        goto fail;    }        i = 0;    dev_descr_len = descr[0];    if (dev_descr_len > descr_len)        goto fail;    i += dev_descr_len;    config_descr_len = descr[i];    if (i + config_descr_len > descr_len)        goto fail;    nb_interfaces = descr[i + 4];    if (nb_interfaces != 1) {        /* NOTE: currently we grab only one interface */        fprintf(stderr, "usb_host: only one interface supported\n");        goto fail;    }#ifdef USBDEVFS_DISCONNECT    /* earlier Linux 2.4 do not support that */    {        struct usbdevfs_ioctl ctrl;        ctrl.ioctl_code = USBDEVFS_DISCONNECT;        ctrl.ifno = 0;        ret = ioctl(fd, USBDEVFS_IOCTL, &ctrl);        if (ret < 0 && errno != ENODATA) {            perror("USBDEVFS_DISCONNECT");            goto fail;        }    }#endif    /* XXX: only grab if all interfaces are free */    interface = 0;    ret = ioctl(fd, USBDEVFS_CLAIMINTERFACE, &interface);    if (ret < 0) {        if (errno == EBUSY) {            fprintf(stderr, "usb_host: device already grabbed\n");        } else {            perror("USBDEVFS_CLAIMINTERFACE");        }    fail:        close(fd);        return NULL;    }    ret = ioctl(fd, USBDEVFS_CONNECTINFO, &ci);    if (ret < 0) {        perror("USBDEVFS_CONNECTINFO");        goto fail;    }#ifdef DEBUG    printf("host USB device %d.%d grabbed\n", bus_num, addr);#endif        dev = qemu_mallocz(sizeof(USBHostDevice));    if (!dev)        goto fail;    dev->fd = fd;    if (ci.slow)        dev->dev.speed = USB_SPEED_LOW;    else        dev->dev.speed = USB_SPEED_HIGH;    dev->dev.handle_packet = usb_generic_handle_packet;    dev->dev.handle_reset = usb_host_handle_reset;    dev->dev.handle_control = usb_host_handle_control;    dev->dev.handle_data = usb_host_handle_data;    return (USBDevice *)dev;}static int get_tag_value(char *buf, int buf_size,                         const char *str, const char *tag,                          const char *stopchars){    const char *p;    char *q;    p = strstr(str, tag);    if (!p)        return -1;    p += strlen(tag);    while (isspace(*p))        p++;    q = buf;    while (*p != '\0' && !strchr(stopchars, *p)) {        if ((q - buf) < (buf_size - 1))            *q++ = *p;        p++;    }    *q = '\0';    return q - buf;}static int usb_host_scan(void *opaque, USBScanFunc *func){    FILE *f;    char line[1024];    char buf[1024];    int bus_num, addr, speed, device_count, class_id, product_id, vendor_id;    int ret;    char product_name[512];        f = fopen(USBDEVFS_PATH "/devices", "r");    if (!f) {        term_printf("Could not open %s\n", USBDEVFS_PATH "/devices");        return 0;    }    device_count = 0;    bus_num = addr = speed = class_id = product_id = vendor_id = 0;    ret = 0;    for(;;) {        if (fgets(line, sizeof(line), f) == NULL)            break;        if (strlen(line) > 0)            line[strlen(line) - 1] = '\0';        if (line[0] == 'T' && line[1] == ':') {            if (device_count && (vendor_id || product_id)) {                /* New device.  Add the previously discovered device.  */                ret = func(opaque, bus_num, addr, class_id, vendor_id,                            product_id, product_name, speed);                if (ret)                    goto the_end;            }            if (get_tag_value(buf, sizeof(buf), line, "Bus=", " ") < 0)                goto fail;            bus_num = atoi(buf);            if (get_tag_value(buf, sizeof(buf), line, "Dev#=", " ") < 0)                goto fail;            addr = atoi(buf);            if (get_tag_value(buf, sizeof(buf), line, "Spd=", " ") < 0)                goto fail;            if (!strcmp(buf, "480"))                speed = USB_SPEED_HIGH;            else if (!strcmp(buf, "1.5"))                speed = USB_SPEED_LOW;            else                speed = USB_SPEED_FULL;            product_name[0] = '\0';            class_id = 0xff;            device_count++;            product_id = 0;            vendor_id = 0;        } else if (line[0] == 'P' && line[1] == ':') {            if (get_tag_value(buf, sizeof(buf), line, "Vendor=", " ") < 0)                goto fail;            vendor_id = strtoul(buf, NULL, 16);            if (get_tag_value(buf, sizeof(buf), line, "ProdID=", " ") < 0)                goto fail;            product_id = strtoul(buf, NULL, 16);        } else if (line[0] == 'S' && line[1] == ':') {            if (get_tag_value(buf, sizeof(buf), line, "Product=", "") < 0)                goto fail;            pstrcpy(product_name, sizeof(product_name), buf);        } else if (line[0] == 'D' && line[1] == ':') {            if (get_tag_value(buf, sizeof(buf), line, "Cls=", " (") < 0)                goto fail;            class_id = strtoul(buf, NULL, 16);        }    fail: ;    }    if (device_count && (vendor_id || product_id)) {        /* Add the last device.  */        ret = func(opaque, bus_num, addr, class_id, vendor_id,                    product_id, product_name, speed);    } the_end:    fclose(f);    return ret;}typedef struct FindDeviceState {    int vendor_id;    int product_id;    int bus_num;    int addr;} FindDeviceState;static int usb_host_find_device_scan(void *opaque, int bus_num, int addr,                                      int class_id,                                     int vendor_id, int product_id,                                      const char *product_name, int speed){    FindDeviceState *s = opaque;    if (vendor_id == s->vendor_id &&        product_id == s->product_id) {        s->bus_num = bus_num;        s->addr = addr;        return 1;    } else {        return 0;    }}/* the syntax is :    'bus.addr' (decimal numbers) or    'vendor_id:product_id' (hexa numbers) */static int usb_host_find_device(int *pbus_num, int *paddr,                                 const char *devname){    const char *p;    int ret;    FindDeviceState fs;    p = strchr(devname, '.');    if (p) {        *pbus_num = strtoul(devname, NULL, 0);        *paddr = strtoul(p + 1, NULL, 0);        return 0;    }    p = strchr(devname, ':');    if (p) {        fs.vendor_id = strtoul(devname, NULL, 16);        fs.product_id = strtoul(p + 1, NULL, 16);        ret = usb_host_scan(&fs, usb_host_find_device_scan);        if (ret) {            *pbus_num = fs.bus_num;            *paddr = fs.addr;            return 0;        }    }    return -1;}/**********************//* USB host device info */struct usb_class_info {    int class;    const char *class_name;};static const struct usb_class_info usb_class_info[] = {    { USB_CLASS_AUDIO, "Audio"},    { USB_CLASS_COMM, "Communication"},    { USB_CLASS_HID, "HID"},    { USB_CLASS_HUB, "Hub" },    { USB_CLASS_PHYSICAL, "Physical" },    { USB_CLASS_PRINTER, "Printer" },    { USB_CLASS_MASS_STORAGE, "Storage" },    { USB_CLASS_CDC_DATA, "Data" },    { USB_CLASS_APP_SPEC, "Application Specific" },    { USB_CLASS_VENDOR_SPEC, "Vendor Specific" },    { USB_CLASS_STILL_IMAGE, "Still Image" },    { USB_CLASS_CSCID, 	"Smart Card" },    { USB_CLASS_CONTENT_SEC, "Content Security" },    { -1, NULL }};static const char *usb_class_str(uint8_t class){    const struct usb_class_info *p;    for(p = usb_class_info; p->class != -1; p++) {        if (p->class == class)            break;    }    return p->class_name;}void usb_info_device(int bus_num, int addr, int class_id,                     int vendor_id, int product_id,                      const char *product_name,                     int speed){    const char *class_str, *speed_str;    switch(speed) {    case USB_SPEED_LOW:         speed_str = "1.5";         break;    case USB_SPEED_FULL:         speed_str = "12";         break;    case USB_SPEED_HIGH:         speed_str = "480";         break;    default:        speed_str = "?";         break;    }    term_printf("  Device %d.%d, speed %s Mb/s\n",                 bus_num, addr, speed_str);    class_str = usb_class_str(class_id);    if (class_str)         term_printf("    %s:", class_str);    else        term_printf("    Class %02x:", class_id);    term_printf(" USB device %04x:%04x", vendor_id, product_id);    if (product_name[0] != '\0')        term_printf(", %s", product_name);    term_printf("\n");}static int usb_host_info_device(void *opaque, int bus_num, int addr,                                 int class_id,                                int vendor_id, int product_id,                                 const char *product_name,                                int speed){    usb_info_device(bus_num, addr, class_id, vendor_id, product_id,                    product_name, speed);    return 0;}void usb_host_info(void){    usb_host_scan(NULL, usb_host_info_device);}#elsevoid usb_host_info(void){    term_printf("USB host devices not supported\n");}/* XXX: modify configure to compile the right host driver */USBDevice *usb_host_device_open(const char *devname){    return NULL;}#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品国产亚洲5555| 成人性生交大合| 国产一区中文字幕| 91视频免费播放| 久久综合色天天久久综合图片| 国产精品美女一区二区在线观看| 偷拍一区二区三区| av亚洲精华国产精华精| 精品国产乱码久久久久久图片| 亚洲乱码国产乱码精品精98午夜 | 精品福利av导航| 亚洲激情五月婷婷| 国产激情视频一区二区三区欧美 | 久久99国产精品久久99果冻传媒| 99精品桃花视频在线观看| 精品国产免费人成在线观看| 亚洲综合另类小说| 99久久99久久免费精品蜜臀| 日韩免费高清视频| 日本欧美一区二区在线观看| 欧美午夜精品电影| 亚洲乱码一区二区三区在线观看| 国产美女精品在线| 精品国产乱码久久久久久图片| 亚洲妇熟xx妇色黄| 欧美日韩成人在线| 亚洲一卡二卡三卡四卡| 欧美在线视频不卡| 亚洲欧美成人一区二区三区| 99精品国产视频| 最新日韩在线视频| 99在线精品一区二区三区| 国产精品美女久久久久久久网站| 国产suv精品一区二区三区| 久久香蕉国产线看观看99| 免费高清在线一区| 精品欧美一区二区三区精品久久| 青椒成人免费视频| 日韩欧美国产一二三区| 久久成人麻豆午夜电影| 国产日本欧洲亚洲| 成人免费毛片app| 国产精品美女一区二区在线观看| 成人av网站免费| 综合久久一区二区三区| 91国产免费观看| 性欧美疯狂xxxxbbbb| 欧美精选在线播放| 美女mm1313爽爽久久久蜜臀| 日韩精品一区二区三区视频播放 | 国产欧美视频在线观看| 国产成人在线观看免费网站| 国产精品网站一区| 在线观看日韩国产| 强制捆绑调教一区二区| 国产婷婷色一区二区三区四区 | 国产视频在线观看一区二区三区| 国产a精品视频| 亚洲精品久久7777| 日韩天堂在线观看| 成人免费va视频| 亚洲成人激情av| 久久久久久电影| 91国偷自产一区二区三区观看| 偷窥少妇高潮呻吟av久久免费| 精品久久人人做人人爽| 99国产精品一区| 秋霞电影一区二区| 国产日韩欧美精品在线| 91成人在线观看喷潮| 韩国视频一区二区| 亚洲精品欧美在线| 久久婷婷综合激情| 在线视频综合导航| 色婷婷亚洲精品| 久久国产婷婷国产香蕉| 国产精品久久久久久妇女6080| 欧美综合在线视频| 国产福利一区二区三区视频| 一区二区三区在线视频免费观看| 日韩精品一区在线| 91久久精品一区二区三| 韩国三级电影一区二区| 亚洲国产欧美一区二区三区丁香婷| 日韩欧美一区二区免费| 色综合久久中文字幕综合网| 久久99热这里只有精品| 亚洲一区精品在线| 欧美激情自拍偷拍| 日韩一级片网站| 在线视频国内一区二区| 成人一区二区视频| 国产一区二区三区香蕉| 亚洲成人资源网| 亚洲欧美另类小说视频| 国产欧美一区二区精品婷婷| 日韩一区二区精品葵司在线| 欧美三级在线看| 色偷偷久久一区二区三区| 粉嫩蜜臀av国产精品网站| 精品一区二区三区不卡| 日韩中文字幕1| 亚洲成av人片一区二区梦乃 | 丰满少妇在线播放bd日韩电影| 青青青爽久久午夜综合久久午夜| 亚洲精品视频在线观看网站| 国产精品亲子乱子伦xxxx裸| 精品国产一二三区| 亚洲欧美激情在线| 国产精品素人一区二区| 国产亚洲自拍一区| 国产午夜精品久久久久久久| 亚洲精品一区二区三区四区高清 | 亚洲大片精品永久免费| 一区二区在线观看免费视频播放| 国产精品国产自产拍高清av| 亚洲国产激情av| 中文字幕欧美日本乱码一线二线| 久久久久久久久久久99999| 精品免费视频.| 久久久久久久久伊人| 久久综合久久鬼色| 国产人伦精品一区二区| 国产欧美一区二区精品久导航| 久久精品综合网| 中文久久乱码一区二区| 国产精品久久久久久久裸模| 亚洲欧洲日产国码二区| 亚洲免费av网站| 亚洲国产精品精华液网站| 五月天激情综合| 免费看欧美女人艹b| 国产一区二区三区在线观看精品| 国产成人精品三级| 91免费在线看| 制服视频三区第一页精品| 欧美精品一区二区蜜臀亚洲| 中文字幕精品一区二区精品绿巨人 | 国产精品123区| 成人免费看片app下载| 欧美性感一类影片在线播放| 欧美一区二区免费| 欧美激情一区二区三区四区| 中文字幕日韩av资源站| 亚洲成人自拍偷拍| 国模冰冰炮一区二区| 成人av网址在线观看| 欧美美女网站色| 久久久精品一品道一区| 亚洲少妇最新在线视频| 日本不卡中文字幕| 成人福利在线看| 欧美精品777| 国产精品久久久久婷婷| 婷婷六月综合亚洲| 成人av小说网| 日韩欧美精品在线| 亚洲欧美一区二区三区极速播放 | 婷婷国产在线综合| 国产精品一区二区无线| 91行情网站电视在线观看高清版| 日韩一区国产二区欧美三区| 成人欧美一区二区三区黑人麻豆| 视频在线观看国产精品| av电影天堂一区二区在线| 欧美一级片在线观看| 亚洲视频你懂的| 国产精品伊人色| 91精品婷婷国产综合久久竹菊| 国产精品入口麻豆九色| 日韩国产精品久久久| 91在线高清观看| 久久久精品天堂| 另类人妖一区二区av| 色偷偷久久一区二区三区| 精品福利一区二区三区免费视频| 亚洲国产中文字幕| eeuss影院一区二区三区| 精品成人一区二区三区四区| 亚洲图片一区二区| 色综合中文综合网| 国产成人免费高清| 欧美mv日韩mv| 日日骚欧美日韩| 在线一区二区视频| 国产精品妹子av| 国产成人aaaa| 国产亚洲视频系列| 久久99精品久久只有精品| 欧美老人xxxx18| 亚洲aⅴ怡春院| 欧美日韩色综合| 亚洲狠狠丁香婷婷综合久久久| 9i看片成人免费高清| 国产精品久久精品日日| www.激情成人| 日韩美女视频一区二区| jlzzjlzz亚洲女人18| 国产精品国产精品国产专区不蜜 | 国产欧美精品日韩区二区麻豆天美|