亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > C# > 正文

c#使用wmi查詢usb設備信息示例

2020-01-24 02:49:03
字體:
來源:轉載
供稿:網友

開發環境:Visual Studio V2010 .NET Framework 4 Client Profile

復制代碼 代碼如下:

using System;
using System.Management;
using System.Text.RegularExpressions;
using System.Collections.Generic;

namespace Splash.IO.PORTS
{
/// <summary>
/// 即插即用設備信息結構
/// </summary>
public struct PnPEntityInfo
{
public String PNPDeviceID;  // 設備ID
public String Name; // 設備名稱
public String Description;  // 設備描述
public String Service;  // 服務
public String Status;   // 設備狀態
public UInt16 VendorID; // 供應商標識
public UInt16 ProductID;// 產品編號
public Guid ClassGuid;  // 設備安裝類GUID
}

/// <summary>
/// 基于WMI獲取USB設備信息
/// </summary>
public partial class USB

#region UsbDevice
/// <summary>
/// 獲取所有的USB設備實體(過濾沒有VID和PID的設備)
/// </summary>
public static PnPEntityInfo[] AllUsbDevices
{
get
{
return WhoUsbDevice(UInt16.MinValue, UInt16.MinValue, Guid.Empty);
}
}

/// <summary>
/// 查詢USB設備實體(設備要求有VID和PID)
/// </summary>
/// <param name="VendorID">供應商標識,MinValue忽視</param>
/// <param name="ProductID">產品編號,MinValue忽視</param>
/// <param name="ClassGuid">設備安裝類Guid,Empty忽視</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoUsbDevice(UInt16 VendorID, UInt16 ProductID, Guid ClassGuid)
{
List<PnPEntityInfo> UsbDevices = new List<PnPEntityInfo>();

// 獲取USB控制器及其相關聯的設備實體
ManagementObjectCollection USBControllerDeviceCollection = new ManagementObjectSearcher("SELECT * FROM Win32_USBControllerDevice").Get();
if (USBControllerDeviceCollection != null)
{
foreach (ManagementObject USBControllerDevice in USBControllerDeviceCollection)
{   // 獲取設備實體的DeviceID
String Dependent = (USBControllerDevice["Dependent"] as String).Split(new Char[] { '=' })[1];

// 過濾掉沒有VID和PID的USB設備
Match match = Regex.Match(Dependent, "VID_[0-9|A-F]{4}&PID_[0-9|A-F]{4}");
if (match.Success)
{
UInt16 theVendorID = Convert.ToUInt16(match.Value.Substring(4, 4), 16);   // 供應商標識
if (VendorID != UInt16.MinValue && VendorID != theVendorID) continue;

UInt16 theProductID = Convert.ToUInt16(match.Value.Substring(13, 4), 16); // 產品編號
if (ProductID != UInt16.MinValue && ProductID != theProductID) continue;

ManagementObjectCollection PnPEntityCollection = new ManagementObjectSearcher("SELECT * FROM Win32_PnPEntity WHERE DeviceID=" + Dependent).Get();
if (PnPEntityCollection != null)
{
foreach (ManagementObject Entity in PnPEntityCollection)
{
Guid theClassGuid = new Guid(Entity["ClassGuid"] as String);// 設備安裝類GUID
if (ClassGuid != Guid.Empty && ClassGuid != theClassGuid) continue;

PnPEntityInfo Element;
Element.PNPDeviceID = Entity["PNPDeviceID"] as String;  // 設備ID
Element.Name = Entity["Name"] as String;// 設備名稱
Element.Description = Entity["Description"] as String;  // 設備描述
Element.Service = Entity["Service"] as String;  // 服務
Element.Status = Entity["Status"] as String;// 設備狀態
Element.VendorID = theVendorID; // 供應商標識
Element.ProductID = theProductID;   // 產品編號
Element.ClassGuid = theClassGuid;   // 設備安裝類GUID

UsbDevices.Add(Element);
}
}
}
}
}

if (UsbDevices.Count == 0) return null; else return UsbDevices.ToArray();
}

/// <summary>
/// 查詢USB設備實體(設備要求有VID和PID)
/// </summary>
/// <param name="VendorID">供應商標識,MinValue忽視</param>
/// <param name="ProductID">產品編號,MinValue忽視</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoUsbDevice(UInt16 VendorID, UInt16 ProductID)
{
return WhoUsbDevice(VendorID, ProductID, Guid.Empty);
}

/// <summary>
/// 查詢USB設備實體(設備要求有VID和PID)
/// </summary>
/// <param name="ClassGuid">設備安裝類Guid,Empty忽視</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoUsbDevice(Guid ClassGuid)
{
return WhoUsbDevice(UInt16.MinValue, UInt16.MinValue, ClassGuid);
}

/// <summary>
/// 查詢USB設備實體(設備要求有VID和PID)
/// </summary>
/// <param name="PNPDeviceID">設備ID,可以是不完整信息</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoUsbDevice(String PNPDeviceID)
{
List<PnPEntityInfo> UsbDevices = new List<PnPEntityInfo>();

// 獲取USB控制器及其相關聯的設備實體
ManagementObjectCollection USBControllerDeviceCollection = new ManagementObjectSearcher("SELECT * FROM Win32_USBControllerDevice").Get();
if (USBControllerDeviceCollection != null)
{
foreach (ManagementObject USBControllerDevice in USBControllerDeviceCollection)
{   // 獲取設備實體的DeviceID
String Dependent = (USBControllerDevice["Dependent"] as String).Split(new Char[] { '=' })[1];
if (!String.IsNullOrEmpty(PNPDeviceID))
{   // 注意:忽視大小寫
if (Dependent.IndexOf(PNPDeviceID, 1, PNPDeviceID.Length - 2, StringComparison.OrdinalIgnoreCase) == -1) continue;
}

// 過濾掉沒有VID和PID的USB設備
Match match = Regex.Match(Dependent, "VID_[0-9|A-F]{4}&PID_[0-9|A-F]{4}");
if (match.Success)
{
ManagementObjectCollection PnPEntityCollection = new ManagementObjectSearcher("SELECT * FROM Win32_PnPEntity WHERE DeviceID=" + Dependent).Get();
if (PnPEntityCollection != null)
{
foreach (ManagementObject Entity in PnPEntityCollection)
{
PnPEntityInfo Element;
Element.PNPDeviceID = Entity["PNPDeviceID"] as String;  // 設備ID
Element.Name = Entity["Name"] as String;// 設備名稱
Element.Description = Entity["Description"] as String;  // 設備描述
Element.Service = Entity["Service"] as String;  // 服務
Element.Status = Entity["Status"] as String;// 設備狀態
Element.VendorID = Convert.ToUInt16(match.Value.Substring(4, 4), 16);   // 供應商標識  
Element.ProductID = Convert.ToUInt16(match.Value.Substring(13, 4), 16); // 產品編號 // 產品編號
Element.ClassGuid = new Guid(Entity["ClassGuid"] as String);// 設備安裝類GUID

UsbDevices.Add(Element);
}
}
}
}
}

if (UsbDevices.Count == 0) return null; else return UsbDevices.ToArray();
}

/// <summary>
/// 根據服務定位USB設備
/// </summary>
/// <param name="ServiceCollection">要查詢的服務集合</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoUsbDevice(String[] ServiceCollection)
{
if (ServiceCollection == null || ServiceCollection.Length == 0)
return WhoUsbDevice(UInt16.MinValue, UInt16.MinValue, Guid.Empty);

List<PnPEntityInfo> UsbDevices = new List<PnPEntityInfo>();

// 獲取USB控制器及其相關聯的設備實體
ManagementObjectCollection USBControllerDeviceCollection = new ManagementObjectSearcher("SELECT * FROM Win32_USBControllerDevice").Get();
if (USBControllerDeviceCollection != null)
{
foreach (ManagementObject USBControllerDevice in USBControllerDeviceCollection)
{   // 獲取設備實體的DeviceID
String Dependent = (USBControllerDevice["Dependent"] as String).Split(new Char[] { '=' })[1];

// 過濾掉沒有VID和PID的USB設備
Match match = Regex.Match(Dependent, "VID_[0-9|A-F]{4}&PID_[0-9|A-F]{4}");
if (match.Success)
{
ManagementObjectCollection PnPEntityCollection = new ManagementObjectSearcher("SELECT * FROM Win32_PnPEntity WHERE DeviceID=" + Dependent).Get();
if (PnPEntityCollection != null)
{
foreach (ManagementObject Entity in PnPEntityCollection)
{
String theService = Entity["Service"] as String;  // 服務
if (String.IsNullOrEmpty(theService)) continue;

foreach (String Service in ServiceCollection)
{   // 注意:忽視大小寫
if (String.Compare(theService, Service, true) != 0) continue;

PnPEntityInfo Element;
Element.PNPDeviceID = Entity["PNPDeviceID"] as String;  // 設備ID
Element.Name = Entity["Name"] as String;// 設備名稱
Element.Description = Entity["Description"] as String;  // 設備描述
Element.Service = theService;   // 服務
Element.Status = Entity["Status"] as String;// 設備狀態
Element.VendorID = Convert.ToUInt16(match.Value.Substring(4, 4), 16);   // 供應商標識  
Element.ProductID = Convert.ToUInt16(match.Value.Substring(13, 4), 16); // 產品編號
Element.ClassGuid = new Guid(Entity["ClassGuid"] as String);// 設備安裝類GUID

UsbDevices.Add(Element);
break;
}
}
}
}
}
}

if (UsbDevices.Count == 0) return null; else return UsbDevices.ToArray();
}
#endregion

#region PnPEntity
/// <summary>
/// 所有即插即用設備實體(過濾沒有VID和PID的設備)
/// </summary>
public static PnPEntityInfo[] AllPnPEntities
{
get
{
return WhoPnPEntity(UInt16.MinValue, UInt16.MinValue, Guid.Empty);
}
}

/// <summary>
/// 根據VID和PID及設備安裝類GUID定位即插即用設備實體
/// </summary>
/// <param name="VendorID">供應商標識,MinValue忽視</param>
/// <param name="ProductID">產品編號,MinValue忽視</param>
/// <param name="ClassGuid">設備安裝類Guid,Empty忽視</param>
/// <returns>設備列表</returns>
/// <remarks>
/// HID:{745a17a0-74d3-11d0-b6fe-00a0c90f57da}
/// Imaging Device:{6bdd1fc6-810f-11d0-bec7-08002be2092f}
/// Keyboard:{4d36e96b-e325-11ce-bfc1-08002be10318}
/// Mouse:{4d36e96f-e325-11ce-bfc1-08002be10318}
/// Network Adapter:{4d36e972-e325-11ce-bfc1-08002be10318}
/// USB:{36fc9e60-c465-11cf-8056-444553540000}
/// </remarks>
public static PnPEntityInfo[] WhoPnPEntity(UInt16 VendorID, UInt16 ProductID, Guid ClassGuid)
{
List<PnPEntityInfo> PnPEntities = new List<PnPEntityInfo>();

// 枚舉即插即用設備實體
String VIDPID;
if (VendorID == UInt16.MinValue)
{
if (ProductID == UInt16.MinValue)
VIDPID = "'%VID[_]____&PID[_]____%'";
else
VIDPID = "'%VID[_]____&PID[_]" + ProductID.ToString("X4") + "%'";  
}
else
{
if (ProductID == UInt16.MinValue)
VIDPID = "'%VID[_]" + VendorID.ToString("X4") + "&PID[_]____%'";
else
VIDPID = "'%VID[_]" + VendorID.ToString("X4") + "&PID[_]" + ProductID.ToString("X4") + "%'";
}

String QueryString;
if (ClassGuid == Guid.Empty)
QueryString = "SELECT * FROM Win32_PnPEntity WHERE PNPDeviceID LIKE" + VIDPID;
else
QueryString = "SELECT * FROM Win32_PnPEntity WHERE PNPDeviceID LIKE" + VIDPID + " AND ClassGuid='" + ClassGuid.ToString("B") + "'";

ManagementObjectCollection PnPEntityCollection = new ManagementObjectSearcher(QueryString).Get();
if (PnPEntityCollection != null)
{
foreach (ManagementObject Entity in PnPEntityCollection)
{
String PNPDeviceID = Entity["PNPDeviceID"] as String;
Match match = Regex.Match(PNPDeviceID, "VID_[0-9|A-F]{4}&PID_[0-9|A-F]{4}");
if (match.Success)
{
PnPEntityInfo Element;

Element.PNPDeviceID = PNPDeviceID;  // 設備ID
Element.Name = Entity["Name"] as String;// 設備名稱
Element.Description = Entity["Description"] as String;  // 設備描述
Element.Service = Entity["Service"] as String;  // 服務
Element.Status = Entity["Status"] as String;// 設備狀態
Element.VendorID = Convert.ToUInt16(match.Value.Substring(4, 4), 16);   // 供應商標識
Element.ProductID = Convert.ToUInt16(match.Value.Substring(13, 4), 16); // 產品編號
Element.ClassGuid = new Guid(Entity["ClassGuid"] as String);// 設備安裝類GUID

PnPEntities.Add(Element);
}
}
}

if (PnPEntities.Count == 0) return null; else return PnPEntities.ToArray();


/// <summary>
/// 根據VID和PID定位即插即用設備實體
/// </summary>
/// <param name="VendorID">供應商標識,MinValue忽視</param>
/// <param name="ProductID">產品編號,MinValue忽視</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoPnPEntity(UInt16 VendorID, UInt16 ProductID)
{
return WhoPnPEntity(VendorID, ProductID, Guid.Empty);
}

/// <summary>
/// 根據設備安裝類GUID定位即插即用設備實體
/// </summary>
/// <param name="ClassGuid">設備安裝類Guid,Empty忽視</param>
/// <returns>設備列表</returns>
public static PnPEntityInfo[] WhoPnPEntity(Guid ClassGuid)
{
return WhoPnPEntity(UInt16.MinValue, UInt16.MinValue, ClassGuid);
}

/// <summary>
/// 根據設備ID定位設備
/// </summary>
/// <param name="PNPDeviceID">設備ID,可以是不完整信息</param>
/// <returns>設備列表</returns>
/// <remarks>
/// 注意:對于下劃線,需要寫成“[_]”,否則視為任意字符
/// </remarks>
public static PnPEntityInfo[] WhoPnPEntity(String PNPDeviceID)
{
List<PnPEntityInfo> PnPEntities = new List<PnPEntityInfo>();

// 枚舉即插即用設備實體
String QueryString;
if (String.IsNullOrEmpty(PNPDeviceID))
{
QueryString = "SELECT * FROM Win32_PnPEntity WHERE PNPDeviceID LIKE '%VID[_]____&PID[_]____%'";
}
else
{   // LIKE子句中有反斜杠字符將會引發WQL查詢異常
QueryString = "SELECT * FROM Win32_PnPEntity WHERE PNPDeviceID LIKE '%" + PNPDeviceID.Replace('//', '_') + "%'";
}

ManagementObjectCollection PnPEntityCollection = new ManagementObjectSearcher(QueryString).Get();
if (PnPEntityCollection != null)
{
foreach (ManagementObject Entity in PnPEntityCollection)
{
String thePNPDeviceID = Entity["PNPDeviceID"] as String;
Match match = Regex.Match(thePNPDeviceID, "VID_[0-9|A-F]{4}&PID_[0-9|A-F]{4}");
if (match.Success)
{
PnPEntityInfo Element;

Element.PNPDeviceID = thePNPDeviceID;   // 設備ID
Element.Name = Entity["Name"] as String;// 設備名稱
Element.Description = Entity["Description"] as String;  // 設備描述
Element.Service = Entity["Service"] as String;  // 服務
Element.Status = Entity["Status"] as String;// 設備狀態
Element.VendorID = Convert.ToUInt16(match.Value.Substring(4, 4), 16);   // 供應商標識
Element.ProductID = Convert.ToUInt16(match.Value.Substring(13, 4), 16); // 產品編號
Element.ClassGuid = new Guid(Entity["ClassGuid"] as String);// 設備安裝類GUID

PnPEntities.Add(Element);
}
}
}

if (PnPEntities.Count == 0) return null; else return PnPEntities.ToArray();
}

/// <summary>
/// 根據服務定位設備
/// </summary>
/// <param name="ServiceCollection">要查詢的服務集合,null忽視</param>
/// <returns>設備列表</returns>
/// <remarks>
/// 跟服務相關的類:
/// Win32_SystemDriverPNPEntity
/// Win32_SystemDriver
/// </remarks>
public static PnPEntityInfo[] WhoPnPEntity(String[] ServiceCollection)
{
if (ServiceCollection == null || ServiceCollection.Length == 0)
return WhoPnPEntity(UInt16.MinValue, UInt16.MinValue, Guid.Empty);

List<PnPEntityInfo> PnPEntities = new List<PnPEntityInfo>();

// 枚舉即插即用設備實體
String QueryString = "SELECT * FROM Win32_PnPEntity WHERE PNPDeviceID LIKE '%VID[_]____&PID[_]____%'";
ManagementObjectCollection PnPEntityCollection = new ManagementObjectSearcher(QueryString).Get();
if (PnPEntityCollection != null)
{
foreach (ManagementObject Entity in PnPEntityCollection)
{
String PNPDeviceID = Entity["PNPDeviceID"] as String;
Match match = Regex.Match(PNPDeviceID, "VID_[0-9|A-F]{4}&PID_[0-9|A-F]{4}");
if (match.Success)
{
String theService = Entity["Service"] as String;// 服務
if (String.IsNullOrEmpty(theService)) continue;

foreach (String Service in ServiceCollection)
{   // 注意:忽視大小寫
if (String.Compare(theService, Service, true) != 0) continue;

PnPEntityInfo Element;

Element.PNPDeviceID = PNPDeviceID;  // 設備ID
Element.Name = Entity["Name"] as String;// 設備名稱
Element.Description = Entity["Description"] as String;  // 設備描述
Element.Service = theService;   // 服務
Element.Status = Entity["Status"] as String;// 設備狀態
Element.VendorID = Convert.ToUInt16(match.Value.Substring(4, 4), 16);   // 供應商標識
Element.ProductID = Convert.ToUInt16(match.Value.Substring(13, 4), 16); // 產品編號
Element.ClassGuid = new Guid(Entity["ClassGuid"] as String);// 設備安裝類GUID

PnPEntities.Add(Element);
break;
}
}
}
}

if (PnPEntities.Count == 0) return null; else return PnPEntities.ToArray();
}
#endregion
}
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产精品1234| 日韩精品免费在线视频观看| 欧美大尺度激情区在线播放| 91av在线网站| 欧美大片网站在线观看| 日韩欧美aⅴ综合网站发布| 亚洲天堂视频在线观看| 日韩午夜在线视频| 欧美日韩国产影院| 国产精品视频专区| 97av在线视频免费播放| 亚洲国产91色在线| 中文字幕国产亚洲2019| 欧美日韩另类在线| 欧美日韩在线观看视频小说| 色综合五月天导航| 国产高清在线不卡| 久久久精品2019中文字幕神马| 日韩经典一区二区三区| 亚洲 日韩 国产第一| 97色在线观看免费视频| 日韩精品中文在线观看| 成人a级免费视频| 国产一区二区三区在线| 日韩av电影中文字幕| 91亚洲精品在线观看| 日日狠狠久久偷偷四色综合免费| 久久久久久久一区二区| 亚洲欧美日韩网| 午夜精品一区二区三区av| 国产亚洲激情在线| 亚洲免费av电影| 国产精品99久久久久久人| 中文字幕日本精品| 国产99视频精品免视看7| 久久99热这里只有精品国产| 久久久久久伊人| 亚洲美女av电影| 午夜精品一区二区三区在线播放| 亚洲精品videossex少妇| 一区二区三区视频免费| 日韩免费在线电影| 国产丝袜高跟一区| 成人福利在线视频| 黄色精品在线看| 中文在线资源观看视频网站免费不卡| 最新日韩中文字幕| 欧美午夜性色大片在线观看| 国产精品久久久久久久久久三级| 中文字幕欧美亚洲| 少妇高潮 亚洲精品| 国产精国产精品| 亚洲va久久久噜噜噜久久天堂| 成人午夜激情免费视频| 久久男人资源视频| 欧美最近摘花xxxx摘花| 亚洲男人的天堂在线播放| 亚洲国内精品在线| 日韩中文字幕不卡视频| 国产精品一区久久| 国产精品一区二区3区| 欧美国产日产韩国视频| 成人国产精品一区二区| 91人人爽人人爽人人精88v| 91久久精品久久国产性色也91| 亚洲欧美制服中文字幕| 日韩电影免费观看中文字幕| 亚洲另类激情图| 亚洲男人7777| 91九色国产社区在线观看| 欧美高清无遮挡| 亚洲视频专区在线| 久久精品国产久精国产思思| 国产精品久久久久久久久免费| 日韩欧美在线国产| 欧美大荫蒂xxx| 国产欧美日韩中文字幕在线| 在线观看欧美视频| 国产成人精品日本亚洲| 国模精品一区二区三区色天香| 国产综合在线看| 日韩美女在线观看一区| 欧美日韩免费看| 亚洲国内精品在线| 中文字幕精品在线| 欧美刺激性大交免费视频| 日韩av中文字幕在线播放| 国产激情久久久久| 九九视频直播综合网| 亚洲天堂成人在线视频| 色偷偷av一区二区三区| 亚洲人在线视频| 97在线精品国自产拍中文| 亚洲人成网在线播放| 国产日产欧美a一级在线| 欧美成人免费全部观看天天性色| 国产一区二区三区在线视频| 国产成人jvid在线播放| 这里只有精品视频在线| 亚洲国产另类 国产精品国产免费| 日韩成人高清在线| 日韩av第一页| 57pao成人永久免费视频| 亚洲精品国产精品乱码不99按摩| 欧美一级黑人aaaaaaa做受| 国产亚洲美女精品久久久| 亚洲精品在线视频| 九九热精品视频国产| 国产综合色香蕉精品| 在线观看国产成人av片| 欧美一二三视频| 成人在线一区二区| 国产欧美日韩精品在线观看| 九色成人免费视频| 国产精品久久久久久中文字| 国产精品视频26uuu| 日韩成人中文字幕在线观看| 青青在线视频一区二区三区| 色青青草原桃花久久综合| 久久免费视频网| 亚洲精品一区二区久| 91免费版网站入口| 中文日韩在线观看| 欧美日韩视频免费播放| 久久久久成人网| 国产欧美一区二区三区久久| 国产精品黄页免费高清在线观看| 国产精品免费小视频| 亚洲天堂av在线免费观看| 亚洲欧美日韩天堂一区二区| 久久99久国产精品黄毛片入口| 5278欧美一区二区三区| 日韩在线观看免费av| 欧美中文字幕在线视频| 欧美第一页在线| 国产精品第二页| 精品国内自产拍在线观看| 在线性视频日韩欧美| 中文字幕欧美日韩精品| 亚洲国产精彩中文乱码av在线播放| 日韩精品极品在线观看| 亚洲一区二区三区乱码aⅴ蜜桃女| 日韩电影在线观看中文字幕| 色偷偷噜噜噜亚洲男人的天堂| 欧美一级电影免费在线观看| 亚洲欧美一区二区三区在线| 欧美日韩不卡合集视频| 国产精品久久一| 亚洲欧洲免费视频| 在线观看国产精品淫| 精品色蜜蜜精品视频在线观看| 91热福利电影| 九九九热精品免费视频观看网站| 欧美又大又粗又长| 国产原创欧美精品| 久久久久久999| 日韩精品久久久久久福利| 国产成人鲁鲁免费视频a| 国产一区二区欧美日韩| 亚洲性生活视频在线观看| 久久免费视频这里只有精品| 少妇高潮 亚洲精品| 成人免费午夜电影| 国产丝袜一区二区|