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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? stub_rx.c

?? Realize the usbip function, which could be simulate usb port through net
?? C
字號(hào):
/* * $Id: stub_rx.c 12 2007-05-27 16:11:48Z hirofuchi $ * * Copyright (C) 2003-2007 Takahiro Hirofuchi * * * This 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 of the License, or * (at your option) any later version. * * This 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. */#include "usbip_common.h"#include "stub.h"static int is_clear_halt_cmd(struct urb *urb){	struct usb_ctrlrequest *req;	req = (struct usb_ctrlrequest *) urb->setup_packet;	 return (req->bRequest == USB_REQ_CLEAR_FEATURE) &&		 (req->bRequestType == USB_RECIP_ENDPOINT) &&		 (req->wValue == USB_ENDPOINT_HALT);}static int is_set_interface_cmd(struct urb *urb){	struct usb_ctrlrequest *req;	req = (struct usb_ctrlrequest *) urb->setup_packet;	return (req->bRequest == USB_REQ_SET_INTERFACE) &&		   (req->bRequestType == USB_RECIP_INTERFACE);}static int is_set_configuration_cmd(struct urb *urb){	struct usb_ctrlrequest *req;	req = (struct usb_ctrlrequest *) urb->setup_packet;	return (req->bRequest == USB_REQ_SET_CONFIGURATION) &&		   (req->bRequestType == USB_RECIP_DEVICE);}static int tweak_clear_halt_cmd(struct urb *urb){	struct usb_ctrlrequest *req;	int target_endp;	int target_dir;	int target_pipe;	int ret;	req = (struct usb_ctrlrequest *) urb->setup_packet;	/*	 * The stalled endpoint is specified in the wIndex value. The endpoint	 * of the urb is the target of this clear_halt request (i.e., control	 * endpoint).	 */	target_endp = le16_to_cpu(req->wIndex) & 0x000f;	/* the stalled endpoint direction is IN or OUT?. USB_DIR_IN is 0x80. */	target_dir = le16_to_cpu(req->wIndex) & 0x0080;	if (target_dir)		target_pipe = usb_rcvctrlpipe(urb->dev, target_endp);	else		target_pipe = usb_sndctrlpipe(urb->dev, target_endp);	ret = usb_clear_halt(urb->dev, target_pipe);	if (ret < 0)		uinfo("clear_halt error: devnum %d endp %d, %d\n",				urb->dev->devnum, target_endp, ret);	else		uinfo("clear_halt done: devnum %d endp %d\n",				urb->dev->devnum, target_endp);	return ret;}static int tweak_set_interface_cmd(struct urb *urb){	struct usb_ctrlrequest *req;	__u16 alternate;	__u16 interface;	int ret;	req = (struct usb_ctrlrequest *) urb->setup_packet;	alternate = le16_to_cpu(req->wValue);	interface = le16_to_cpu(req->wIndex);	dbg_stub_rx("set_interface: inf %u alt %u\n", interface, alternate);	ret = usb_set_interface(urb->dev, interface, alternate);	if (ret < 0)		uinfo("set_interface error: inf %u alt %u, %d\n",				interface, alternate, ret);	else		uinfo("set_interface done: inf %u alt %u\n", interface, alternate);	return ret;}static int tweak_set_configuration_cmd(struct urb *urb){	struct usb_ctrlrequest *req;	__u16 config;	info("set_configuration is not fully supported yet\n");	req = (struct usb_ctrlrequest *) urb->setup_packet;	config = le16_to_cpu(req->wValue);	uinfo("set_configuration: devnum %d %d\n", urb->dev->devnum, config);#if 0	return usb_set_configuration(urb->dev, config);#endif	return 0;}/* * clear_halt, set_interface, and set_configuration require special tricks. * TODO: set_configuration. but I have never seen a multi-config device. */static void tweak_special_requests(struct urb *urb){	if (!urb || !urb->setup_packet)		return;	if (usb_pipetype(urb->pipe) != PIPE_CONTROL)		return;	if (is_clear_halt_cmd(urb))		/* tweak clear_halt */		 tweak_clear_halt_cmd(urb);	else if (is_set_interface_cmd(urb))		/* tweak set_interface */		tweak_set_interface_cmd(urb);	else if (is_set_configuration_cmd(urb))		/* tweak set_configuration */		tweak_set_configuration_cmd(urb);	else		dbg_stub_rx("no need to tweak\n");}/* * stub_recv_unlink() unlinks the URB by a call to usb_unlink_urb(). * By unlinking the urb asynchronously, stub_rx can continuously * process coming urbs.  Even if the urb is unlinked, its completion * handler will be called and stub_tx will send a return pdu. * * See also comments about unlinking strategy in vhci_hcd.c. */static int stub_recv_cmd_unlink(struct stub_device *sdev, struct usbip_header *pdu){	struct list_head *listhead = &sdev->priv_init;	struct list_head *ptr;	unsigned long flags;	struct stub_priv *priv;	spin_lock_irqsave(&sdev->priv_lock, flags);	for (ptr = listhead->next; ptr != listhead; ptr = ptr->next) {		priv = list_entry(ptr, struct stub_priv, list);		if (priv->seqnum == pdu->u.cmd_unlink.seqnum) {			int ret;			uinfo("unlink urb %p\n", priv->urb);			/*			 * This matched urb is not completed yet (i.e., be in			 * flight in usb hcd hardware/driver). Now we are			 * cancelling it. The unlinking flag means that we are			 * now not going to return the normal result pdu of a			 * submission request, but going to return a result pdu			 * of the unlink request.			 */			priv->unlinking = 1;			/*			 * In the case that unlinking flag is on, prev->seqnum			 * is changed from the seqnum of the cancelling urb to			 * the seqnum of the unlink request. This will be used			 * to make the result pdu of the unlink request.			 */			priv->seqnum = pdu->base.seqnum;			spin_unlock_irqrestore(&sdev->priv_lock, flags);			/*			 * usb_unlink_urb() is now out of spinlocking to avoid			 * spinlock recursion since stub_complete() is			 * sometimes called in this context but not in the			 * interrupt context.  If stub_complete() is executed			 * before we call usb_unlink_urb(), usb_unlink_urb()			 * will return an error value. In this case, stub_tx			 * will return the result pdu of this unlink request			 * though submission is completed and actual unlinking			 * is not executed. OK?			 */			/* In the above case, urb->status is not -ECONNRESET,			 * so a driver in a client host will know the failure			 * of the unlink request ?			 */			ret = usb_unlink_urb(priv->urb);			if (ret != -EINPROGRESS)				uerr("faild to unlink a urb %p, ret %d\n", priv->urb, ret);			return 0;		}	}	dbg_stub_rx("seqnum %d is not pending\n", pdu->u.cmd_unlink.seqnum);	/*	 * The urb of the unlink target is not found in priv_init queue. It was	 * already completed and its results is/was going to be sent by a	 * CMD_RET pdu. In this case, usb_unlink_urb() is not needed. We only	 * return the completeness of this unlink request to vhci_hcd.	 */	stub_enqueue_ret_unlink(sdev, pdu->base.seqnum, 0);	spin_unlock_irqrestore(&sdev->priv_lock, flags);	return 0;}static int valid_request(struct stub_device *sdev, struct usbip_header *pdu){	struct usbip_device *ud = &sdev->ud;	int bus = interface_to_busnum(sdev->interface);	int dev = interface_to_devnum(sdev->interface);	if (pdu->base.busnum == bus && pdu->base.devnum == dev) {		spin_lock(&ud->lock);		if (ud->status == SDEV_ST_USED) {			/* A request is valid. */			spin_unlock(&ud->lock);			return 1;		}		spin_unlock(&ud->lock);	}	return 0;}static struct stub_priv *stub_priv_alloc(struct stub_device *sdev,		struct usbip_header *pdu){	struct stub_priv *priv;	struct usbip_device *ud = &sdev->ud;	unsigned long flags;	spin_lock_irqsave(&sdev->priv_lock, flags);	priv = kmem_cache_alloc(stub_priv_cache, GFP_ATOMIC);	if (!priv) {		uerr("alloc stub_priv\n");		spin_unlock_irqrestore(&sdev->priv_lock, flags);		usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);		return NULL;	}	memset(priv, 0, sizeof(struct stub_priv));	priv->seqnum = pdu->base.seqnum;	priv->sdev = sdev;	/*	 * After a stub_priv is linked to a list_head,	 * our error handler can free allocated data.	 */	list_add_tail(&priv->list, &sdev->priv_init);	spin_unlock_irqrestore(&sdev->priv_lock, flags);	return priv;}static void stub_recv_cmd_submit(struct stub_device *sdev, struct usbip_header *pdu){	int ret;	struct stub_priv *priv;	struct usbip_device *ud = &sdev->ud;	priv = stub_priv_alloc(sdev, pdu);	if (!priv)		return;	/* setup a urb */	if (usb_pipeisoc(pdu->base.pipe))		priv->urb = usb_alloc_urb(pdu->u.cmd_submit.number_of_packets, GFP_KERNEL);	else		priv->urb = usb_alloc_urb(0, GFP_KERNEL);	if (!priv->urb) {		uerr("malloc urb\n");		usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);		return;	}	/* set priv->urb->transfer_buffer */	if (pdu->u.cmd_submit.transfer_buffer_length > 0) {		priv->urb->transfer_buffer =			kzalloc(pdu->u.cmd_submit.transfer_buffer_length, GFP_KERNEL);		if (!priv->urb->transfer_buffer) {			uerr("malloc x_buff\n");			usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);			return;		}	}	/* set priv->urb->setup_packet */	priv->urb->setup_packet = kzalloc(8, GFP_KERNEL);	if (!priv->urb->setup_packet) {		uerr("allocate setup_packet\n");		usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);		return;	}	memcpy(priv->urb->setup_packet, &pdu->u.cmd_submit.setup, 8);	/* set other members from the base header of pdu */	priv->urb->context                = (void *) priv;	priv->urb->dev                    = interface_to_usbdev(sdev->interface);	priv->urb->pipe                   = pdu->base.pipe;	priv->urb->complete               = stub_complete;	usbip_pack_pdu(pdu, priv->urb, USBIP_CMD_SUBMIT, 0);	if (usbip_recv_xbuff(ud, priv->urb) < 0)		return;	if (usbip_recv_iso(ud, priv->urb) < 0)		return;	/* no need to submit an intercepted request, but harmless? */	tweak_special_requests(priv->urb);	/* urb is now ready to submit */	ret = usb_submit_urb(priv->urb, GFP_KERNEL);	if (ret == 0)		dbg_stub_rx("submit urb ok, seqnum %u\n", pdu->base.seqnum);	else {		uerr("submit_urb error, %d\n", ret);		/*		 * Pessimistic.		 * This connection will be discarded.		 */		usbip_event_add(ud, SDEV_EVENT_ERROR_SUBMIT);	}	dbg_stub_rx("Leave\n");	return;}/* recv a pdu */static void stub_rx_pdu(struct usbip_device *ud){	int ret;	struct usbip_header pdu;	struct stub_device *sdev = container_of(ud, struct stub_device, ud);	dbg_stub_rx("Enter\n");	memset(&pdu, 0, sizeof(pdu));	/* 1. receive a pdu header */	ret = usbip_xmit(0, ud->tcp_socket, (char *) &pdu, sizeof(pdu),0);	if (ret != sizeof(pdu)) {		uerr("recv a header, %d\n", ret);		usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);		return;	}	usbip_header_correct_endian(&pdu, 0);	if (dbg_flag_stub_rx)		usbip_dump_header(&pdu);	if (!valid_request(sdev, &pdu)) {		uerr("recv invalid request\n");		usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);		return;	}	switch (pdu.base.command) {		case USBIP_CMD_UNLINK:			stub_recv_cmd_unlink(sdev, &pdu);			break;		case USBIP_CMD_SUBMIT:			stub_recv_cmd_submit(sdev, &pdu);			break;		default:			/* NOTREACHED */			uerr("unknown pdu\n");			usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);			return;	}}void stub_rx_loop(struct usbip_task *ut){	struct usbip_device *ud = container_of(ut, struct usbip_device, tcp_rx);	while (1) {		if (signal_pending(current)) {			dbg_stub_rx("signal caught!\n");			break;		}		if (usbip_event_happend(ud))			break;		stub_rx_pdu(ud);	}}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费亚洲电影在线| 蜜臀久久久99精品久久久久久| 亚洲免费三区一区二区| 日本不卡在线视频| 色综合久久综合网欧美综合网| 日韩免费电影一区| 午夜av一区二区| 95精品视频在线| 久久久91精品国产一区二区三区| 亚洲午夜久久久久久久久电影网| 成人在线视频一区| 欧美日韩国产精选| 亚洲男人的天堂av| 丰满岳乱妇一区二区三区| 日韩三级电影网址| 亚洲国产精品天堂| 欧美在线观看禁18| 亚洲日本一区二区三区| 成人avav影音| 国产精品久久看| 国产毛片精品国产一区二区三区| 欧洲激情一区二区| 一区二区三区中文字幕精品精品| 成人av午夜影院| 国产精品私人影院| 成人动漫视频在线| 中文字幕亚洲一区二区av在线 | 久久99热99| 国产精品福利av| 日韩精彩视频在线观看| 欧美性大战久久久| 亚洲成人综合视频| 欧美日韩情趣电影| 日本va欧美va精品发布| 91精品欧美一区二区三区综合在| 日韩福利视频导航| 91精品国产色综合久久| 精品一区二区三区免费| 久久色视频免费观看| 国产乱码精品一区二区三区五月婷 | 国产在线一区二区| 久久久777精品电影网影网 | 亚洲欧洲三级电影| 91网站最新网址| 亚洲午夜视频在线观看| 欧美一区二区三区思思人| 久久av老司机精品网站导航| 久久免费偷拍视频| av福利精品导航| 一区二区三区久久久| 欧美日韩卡一卡二| 精品无码三级在线观看视频 | 91麻豆国产香蕉久久精品| 一区二区免费看| 欧美一激情一区二区三区| 日本伊人午夜精品| 久久精品一区二区| 91久久精品网| 美日韩一区二区| 中文字幕不卡在线播放| 欧美日免费三级在线| 久久不见久久见免费视频1 | 久久久www成人免费无遮挡大片| 风间由美性色一区二区三区| 亚洲主播在线观看| 久久免费精品国产久精品久久久久| 99久久综合99久久综合网站| 午夜精品爽啪视频| 国产欧美日韩亚州综合 | 欧美天天综合网| 国产自产v一区二区三区c| 亚洲激情网站免费观看| 精品国产一区二区亚洲人成毛片 | 欧美精品色综合| 成人精品一区二区三区中文字幕| 亚洲电影第三页| 国产精品视频你懂的| 制服丝袜亚洲色图| 99久久精品免费观看| 日本不卡免费在线视频| 一区二区三区日韩| 国产欧美一区二区三区在线看蜜臀 | 国产精品女同一区二区三区| 777欧美精品| 色综合久久中文综合久久97| 久久99精品久久只有精品| 亚洲综合清纯丝袜自拍| 国产日韩精品一区| 日韩一区二区三区在线| 色婷婷激情久久| 懂色一区二区三区免费观看| 男人的天堂亚洲一区| 亚洲成人你懂的| 亚洲欧美一区二区视频| 久久久久久久久蜜桃| 欧美久久久久久久久久| 91福利视频久久久久| 国产寡妇亲子伦一区二区| 日本不卡一二三| 午夜视频在线观看一区| 亚洲午夜三级在线| 亚洲综合视频在线观看| 中文字幕免费不卡| 国产精品无人区| 国产日韩一级二级三级| 久久综合久久综合九色| 精品精品国产高清一毛片一天堂| 欧美精品自拍偷拍动漫精品| 在线免费观看日本欧美| 一本高清dvd不卡在线观看| 不卡一区在线观看| 成人18视频在线播放| jlzzjlzz亚洲女人18| 高清av一区二区| av中文字幕一区| 色综合亚洲欧洲| 在线一区二区三区四区五区| 在线影视一区二区三区| 欧洲亚洲国产日韩| 91精品免费观看| 日韩一区二区三区在线视频| 日韩免费一区二区| 久久久激情视频| 中文在线一区二区| 综合久久久久久久| 亚洲福利视频一区二区| 日本一道高清亚洲日美韩| 日韩 欧美一区二区三区| 麻豆成人在线观看| 国产白丝网站精品污在线入口| 国产91丝袜在线播放九色| 成人18视频日本| 欧美精品电影在线播放| 精品人伦一区二区色婷婷| 国产欧美一区二区三区鸳鸯浴| 综合亚洲深深色噜噜狠狠网站| 夜夜精品视频一区二区| 日韩精品1区2区3区| 国产精品一区二区免费不卡| 99久久99久久精品国产片果冻| 欧美色综合久久| 精品国产免费视频| 国产精品国产三级国产有无不卡 | 亚洲成人三级小说| 国产一区二区三区视频在线播放| 成人国产免费视频| 欧美性欧美巨大黑白大战| 精品国产sm最大网站| 最新欧美精品一区二区三区| 日韩精品午夜视频| 99久久综合国产精品| 日韩欧美国产精品| 亚洲欧美一区二区三区极速播放| 日韩电影一区二区三区| 成人国产精品免费观看视频| 欧美一区二区三区婷婷月色 | 色婷婷激情一区二区三区| 日韩亚洲欧美高清| 亚洲免费在线视频一区 二区| 精品在线视频一区| 欧美亚洲图片小说| 欧美国产日产图区| 免费人成网站在线观看欧美高清| 成人精品免费视频| 欧美大胆人体bbbb| 亚洲国产精品自拍| 国产麻豆精品在线观看| 5月丁香婷婷综合| 亚洲视频一二三区| 国产精品一级二级三级| 91精品婷婷国产综合久久竹菊| 亚洲欧美视频在线观看视频| 国产做a爰片久久毛片| 欧美人与性动xxxx| 亚洲欧美电影一区二区| 成人综合在线观看| 亚洲精品一区二区三区在线观看| 亚洲午夜久久久| 日本韩国精品一区二区在线观看| 国产三级一区二区三区| 青青青爽久久午夜综合久久午夜 | 色婷婷综合久久| 国产欧美日韩另类一区| 老司机精品视频在线| 制服.丝袜.亚洲.另类.中文| 亚洲精品v日韩精品| 99国产一区二区三精品乱码| 国产清纯白嫩初高生在线观看91 | 93久久精品日日躁夜夜躁欧美| 久久免费精品国产久精品久久久久| 麻豆精品在线视频| 6080yy午夜一二三区久久| 香蕉影视欧美成人| 欧美熟乱第一页| 天天综合色天天综合色h| 欧美日韩午夜在线视频| 亚洲va天堂va国产va久| 欧美日韩精品一区视频| 天天综合天天做天天综合| 在线不卡中文字幕|