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

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

?? pscrnt.c

?? SmartCard驅動程序
?? C
?? 第 1 頁 / 共 4 頁
字號:
/*++

Copyright (c) 1997  - 1999 SCM Microsystems, Inc.

Module Name:

	PscrNT.c

Abstract:

	Main Driver Module - NT Version

Author:

	Andreas Straub

Revision History:


	Andreas Straub	1.00		8/18/1997		Initial Version
	Klaus Schuetz	1.01		9/20/1997		Timing changed
	Andreas Straub	1.02		9/24/1997		Low Level error handling,
												minor bugfixes, clanup
	Andreas Straub	1.03		10/8/1997		Timing changed, generic SCM
												interface changed
	Andreas Straub	1.04		10/18/1997		Interrupt handling changed
	Andreas Straub	1.05		10/19/1997		Generic IOCTL's added
	Andreas Straub	1.06		10/25/1997		Timeout limit for FW update variable
	Andreas Straub	1.07		11/7/1997		Version information added
	Klaus Schuetz	1.08		11/10/1997		PnP capabilities added
    Klaus Schuetz                               Cleanup added

--*/

#include <PscrNT.h>
#include <PscrCmd.h>
#include <PscrCB.h>                            
#include <PscrLog.h>
#include <PscrVers.h>

#pragma alloc_text(INIT, DriverEntry)
#pragma alloc_text(PAGEABLE, PscrAddDevice)
#pragma alloc_text(PAGEABLE, PscrCreateAndStartDevice)
#pragma alloc_text(PAGEABLE, PscrCreateDevice)
#pragma alloc_text(PAGEABLE, PscrStartDevice)
#pragma alloc_text(PAGEABLE, PscrUnloadDriver)
#pragma alloc_text(PAGEABLE, PscrCreateClose)

BOOLEAN DeviceSlot[PSCR_MAX_DEVICE];

NTSTATUS
DriverEntry(
	PDRIVER_OBJECT	DriverObject,
	PUNICODE_STRING	RegistryPath 
	)
/*++

DriverEntry:
	entry function of the driver. setup the callbacks for the OS and try to
	initialize a device object for every device in the system

Arguments:
	DriverObject	context of the driver
	RegistryPath	path to the registry entry for the driver

Return Value:
	STATUS_SUCCESS
	STATUS_UNSUCCESSFUL

--*/
{
	NTSTATUS NTStatus = STATUS_SUCCESS;
	ULONG Device;

	SmartcardDebug( 
		DEBUG_TRACE, 
		( "PSCR!DriverEntry: Enter\n" )
		);

	//	tell the system our entry points
	DriverObject->MajorFunction[IRP_MJ_CREATE] =
	DriverObject->MajorFunction[IRP_MJ_CLOSE] = PscrCreateClose;
	DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = PscrDeviceIoControl;
	DriverObject->MajorFunction[IRP_MJ_CLEANUP]	= PscrCleanup;
	DriverObject->MajorFunction[IRP_MJ_PNP]	= PscrPnP;
    DriverObject->MajorFunction[IRP_MJ_POWER] = PscrPower;
    DriverObject->DriverExtension->AddDevice = PscrAddDevice;
	DriverObject->DriverUnload = PscrUnloadDriver;

	SmartcardDebug( 
		DEBUG_TRACE, 
		("PSCR!DriverEntry: Exit %x\n",
        NTStatus)
		);

	return NTStatus;
}

NTSTATUS
PscrAddDevice(
    IN PDRIVER_OBJECT DriverObject, 
    IN PDEVICE_OBJECT PhysicalDeviceObject
    )
/*++

Routine Description:
    This function is called by the pnp manager. This is used to create 
    a new device instance. 

--*/
{
	NTSTATUS status;
	UNICODE_STRING vendorNameU, ifdTypeU;
	ANSI_STRING vendorNameA, ifdTypeA;
	HANDLE regKey = NULL;
	PDEVICE_OBJECT DeviceObject = NULL;

	SmartcardDebug( 
		DEBUG_TRACE, 
		( "PSCR!PscrAddDevice: Enter\n" )
		);

    try {
     	
        ULONG DeviceInstance;
	    UNICODE_STRING DriverID;
	    PDEVICE_EXTENSION DeviceExtension;
	    PREADER_EXTENSION ReaderExtension;
        PSMARTCARD_EXTENSION SmartcardExtension;
		RTL_QUERY_REGISTRY_TABLE parameters[3];

		RtlZeroMemory(parameters, sizeof(parameters));
		RtlZeroMemory(&vendorNameU, sizeof(vendorNameU));
		RtlZeroMemory(&ifdTypeU, sizeof(ifdTypeU));
		RtlZeroMemory(&vendorNameA, sizeof(vendorNameA));
		RtlZeroMemory(&ifdTypeA, sizeof(ifdTypeA));

	    for( DeviceInstance = 0; DeviceInstance < PSCR_MAX_DEVICE; DeviceInstance++ )
	    {
            if (DeviceSlot[DeviceInstance] == FALSE) {

                DeviceSlot[DeviceInstance] = TRUE;         	
                break;
            }
	    }

        if (DeviceInstance == PSCR_MAX_DEVICE) {

            status = STATUS_INSUFFICIENT_RESOURCES;     	
            leave;
        }

	    // Create the device object
	    status = IoCreateDevice(
		    DriverObject,
		    sizeof(DEVICE_EXTENSION),
            NULL,
		    FILE_DEVICE_SMARTCARD,
		    0,
		    TRUE,
		    &DeviceObject
		    );

        if (status != STATUS_SUCCESS) {

			SmartcardLogError(
				DriverObject,
				PSCR_INSUFFICIENT_RESOURCES,
				NULL,
				0
				);
     	    
            leave;
        }

	    //	set up the device extension.
	    DeviceExtension = DeviceObject->DeviceExtension;
        SmartcardExtension = &DeviceExtension->SmartcardExtension;

	    //	initialize the DPC routine
	    KeInitializeDpc(
		    &DeviceExtension->DpcObject,
		    PscrDpcRoutine,
		    DeviceObject		
  		    );

        KeInitializeSpinLock(&DeviceExtension->SpinLock);

        // Used for device removal notification
        KeInitializeEvent(
            &DeviceExtension->ReaderRemoved,
            NotificationEvent,
            FALSE
            );   

        // Used for stop / start notification
        KeInitializeEvent(
            &DeviceExtension->ReaderStarted,
            NotificationEvent,
            FALSE
            );   

	    //	allocate the reader extension
	    ReaderExtension = ExAllocatePool( 
		    NonPagedPool, 
		    sizeof( READER_EXTENSION )
		    );

	    if( ReaderExtension == NULL ) {
     	    
			SmartcardLogError(
				DriverObject,
				PSCR_INSUFFICIENT_RESOURCES,
				NULL,
				0
				);

            status = STATUS_INSUFFICIENT_RESOURCES;     	
            leave;
        }

	    RtlZeroMemory( ReaderExtension, sizeof( READER_EXTENSION ));

	    SmartcardExtension->ReaderExtension = ReaderExtension;

	    //	setup smartcard extension - callback's
	    SmartcardExtension->ReaderFunction[RDF_CARD_POWER] = CBCardPower;
	    SmartcardExtension->ReaderFunction[RDF_TRANSMIT] = CBTransmit;
	    SmartcardExtension->ReaderFunction[RDF_CARD_TRACKING] = CBCardTracking;
	    SmartcardExtension->ReaderFunction[RDF_SET_PROTOCOL] = CBSetProtocol;
		SmartcardExtension->ReaderFunction[RDF_IOCTL_VENDOR] = PscrGenericIOCTL;

		//	setup smartcard extension - vendor attribute
		RtlCopyMemory(
			SmartcardExtension->VendorAttr.VendorName.Buffer,
			PSCR_VENDOR_NAME,
			sizeof( PSCR_VENDOR_NAME )
			);
		SmartcardExtension->VendorAttr.VendorName.Length = 
			sizeof( PSCR_VENDOR_NAME );

		RtlCopyMemory(
			SmartcardExtension->VendorAttr.IfdType.Buffer,
			PSCR_IFD_TYPE,
			sizeof( PSCR_IFD_TYPE )
			);
		SmartcardExtension->VendorAttr.IfdType.Length = 
			sizeof( PSCR_IFD_TYPE );

	    SmartcardExtension->VendorAttr.UnitNo = 
		    DeviceInstance;

	    SmartcardExtension->VendorAttr.IfdVersion.BuildNumber = 0;

	    //	store firmware revision in ifd version
	    SmartcardExtension->VendorAttr.IfdVersion.VersionMajor =
		    ReaderExtension->FirmwareMajor;
	    SmartcardExtension->VendorAttr.IfdVersion.VersionMinor =
		    ReaderExtension->FirmwareMinor;
	    SmartcardExtension->VendorAttr.IfdSerialNo.Length = 0;
	    
	    //	setup smartcard extension - reader capabilities
	    SmartcardExtension->ReaderCapabilities.SupportedProtocols = 
		    SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1;

	    SmartcardExtension->ReaderCapabilities.ReaderType = 
		    SCARD_READER_TYPE_PCMCIA;
	    SmartcardExtension->ReaderCapabilities.MechProperties = 0;
	    SmartcardExtension->ReaderCapabilities.Channel = 0;

	    SmartcardExtension->ReaderCapabilities.CLKFrequency.Default = 4000;
	    SmartcardExtension->ReaderCapabilities.CLKFrequency.Max	= 4000;

        SmartcardExtension->ReaderCapabilities.DataRate.Default = 10750;
        SmartcardExtension->ReaderCapabilities.DataRate.Max = 10750;

	    //	enter correct version of the lib
	    SmartcardExtension->Version = SMCLIB_VERSION;
	    SmartcardExtension->SmartcardRequest.BufferSize	= MIN_BUFFER_SIZE;
	    SmartcardExtension->SmartcardReply.BufferSize	= MIN_BUFFER_SIZE;

        SmartcardExtension->ReaderExtension->ReaderPowerState = 
            PowerReaderWorking;

	    status = SmartcardInitialize(SmartcardExtension);

        if (status != STATUS_SUCCESS) {

			SmartcardLogError(
				DriverObject,
				PSCR_INSUFFICIENT_RESOURCES,
				NULL,
				0
				);

            leave;
        }

		//	tell the lib our device object
		SmartcardExtension->OsData->DeviceObject = DeviceObject;

		DeviceExtension->AttachedPDO = IoAttachDeviceToDeviceStack(
            DeviceObject, 
            PhysicalDeviceObject
            );

        if (DeviceExtension->AttachedPDO == NULL) {

            status = STATUS_UNSUCCESSFUL;
            leave;
        }

        // register our new device
        status = IoRegisterDeviceInterface(
            PhysicalDeviceObject,
            &SmartCardReaderGuid,
            NULL,
            &DeviceExtension->DeviceName
            );

        ASSERT(status == STATUS_SUCCESS);

    	DeviceObject->Flags |= DO_BUFFERED_IO;
		DeviceObject->Flags |= DO_POWER_PAGABLE;
		DeviceObject->Flags &= ~DO_DEVICE_INITIALIZING;

		//
		// try to read the reader name from the registry
		// if that does not work, we will use the default 
		// (hardcoded) name
		//
		if (IoOpenDeviceRegistryKey(
			PhysicalDeviceObject,
			PLUGPLAY_REGKEY_DEVICE,
			KEY_READ,
			&regKey
			) != STATUS_SUCCESS) {

			leave;
		}

		parameters[0].Flags = RTL_QUERY_REGISTRY_DIRECT;
		parameters[0].Name = L"VendorName";
		parameters[0].EntryContext = &vendorNameU;
		parameters[0].DefaultType = REG_SZ;
		parameters[0].DefaultData = &vendorNameU;
		parameters[0].DefaultLength = 0;

		parameters[1].Flags = RTL_QUERY_REGISTRY_DIRECT;
		parameters[1].Name = L"IfdType";
		parameters[1].EntryContext = &ifdTypeU;
		parameters[1].DefaultType = REG_SZ;
		parameters[1].DefaultData = &ifdTypeU;
		parameters[1].DefaultLength = 0;

		if (RtlQueryRegistryValues(
			 RTL_REGISTRY_HANDLE,
			 (PWSTR) regKey, 
			 parameters,
			 NULL,
			 NULL
			 ) != STATUS_SUCCESS) {

			leave;
		}

		if (RtlUnicodeStringToAnsiString(
		   &vendorNameA,
		   &vendorNameU,
		   TRUE
		   ) != STATUS_SUCCESS) {

			leave;
		}

		if (RtlUnicodeStringToAnsiString(
		   &ifdTypeA,
		   &ifdTypeU,
		   TRUE
		   ) != STATUS_SUCCESS) {

			leave;
		}

		if (vendorNameA.Length == 0 ||
			vendorNameA.Length > MAXIMUM_ATTR_STRING_LENGTH ||
			ifdTypeA.Length == 0 ||
			ifdTypeA.Length > MAXIMUM_ATTR_STRING_LENGTH) {

			leave;
		}

		RtlCopyMemory(
			SmartcardExtension->VendorAttr.VendorName.Buffer,
			vendorNameA.Buffer,
			vendorNameA.Length
			);
		SmartcardExtension->VendorAttr.VendorName.Length = 
			vendorNameA.Length;

		RtlCopyMemory(
			SmartcardExtension->VendorAttr.IfdType.Buffer,
			ifdTypeA.Buffer,
			ifdTypeA.Length
			);
		SmartcardExtension->VendorAttr.IfdType.Length = 
			ifdTypeA.Length;
    }
    finally {

		if (vendorNameU.Buffer) {

			RtlFreeUnicodeString(&vendorNameU);
		}

		if (ifdTypeU.Buffer) {

			RtlFreeUnicodeString(&ifdTypeU);
		}

		if (vendorNameA.Buffer) {

			RtlFreeAnsiString(&vendorNameA);
		}

		if (ifdTypeA.Buffer) {

			RtlFreeAnsiString(&ifdTypeA);
		}

		if (regKey != NULL) {

			ZwClose(regKey);
		}

        if (status != STATUS_SUCCESS) {

            PscrUnloadDevice(DeviceObject);
        }

		SmartcardDebug( 
			DEBUG_TRACE, 
			( "PSCR!PscrAddDevice: Exit %x\n",
			status)
			);

		return status;
    }
}

NTSTATUS 
PscrCallPcmciaDriver(
    IN PDEVICE_OBJECT AttachedPDO, 
    IN PIRP Irp
    )
/*++

Routine Description:

	Send an Irp to the pcmcia driver and wait until the pcmcia driver has
	finished the request.

	To make sure that the pcmcia driver will not complete the Irp we first 
	initialize an event and set our own completion routine for the Irp.

	When the pcmcia driver has processed the Irp the completion routine will
	set the event and tell the IO manager that more processing is required.

	By waiting for the event we make sure that we continue only if the pcmcia
	driver has processed the Irp completely.

Return Value:

	status returned by the pcmcia driver

--*/
{
 	
	NTSTATUS status = STATUS_SUCCESS;
    KEVENT Event;
 	
    // Copy our stack location to the next.
    IoCopyCurrentIrpStackLocationToNext(Irp);

	//
	// initialize an event for process synchronization. the event is passed
	// to our completion routine and will be set if the pcmcia driver is done
	//
    KeInitializeEvent(
        &Event,
        NotificationEvent,
        FALSE
        );   
    
    // Our IoCompletionRoutine sets only our event
    IoSetCompletionRoutine (
        Irp,
        PscrPcmciaCallComplete,
        &Event,
        TRUE,
        TRUE,
        TRUE
        );

    if (IoGetCurrentIrpStackLocation(Irp)->MajorFunction == IRP_MJ_POWER) {
     	
        status = PoCallDriver(AttachedPDO, Irp);

    } else {
     	
        // Call the serial driver
        status = IoCallDriver(AttachedPDO, Irp);
    }

	// Wait until the pcmcia driver has processed the Irp
    if (status == STATUS_PENDING) {

        status = KeWaitForSingleObject(
            &Event,
            Executive,
            KernelMode,
            FALSE,
            NULL
            );

        if (status == STATUS_SUCCESS) {
         	
            status = Irp->IoStatus.Status;
        }
    } 

    return status;
}

NTSTATUS
PscrPcmciaCallComplete (
    IN PDEVICE_OBJECT DeviceObject,
    IN PIRP Irp,
    IN PKEVENT Event
    )
/*++

Routine Description:
	Completion routine for an Irp sent to the pcmcia driver. The event will
	be set to notify that the pcmcia driver is done. The routine will not
	'complete' the Irp, so the caller of PscrCallPcmciaDriver can continue.

--*/
{
    UNREFERENCED_PARAMETER (DeviceObject);

    if (Irp->Cancel) {

        Irp->IoStatus.Status = STATUS_CANCELLED;
    }

    KeSetEvent (Event, 0, FALSE);

    return STATUS_MORE_PROCESSING_REQUIRED;
}

NTSTATUS
PscrPnP(
    IN PDEVICE_OBJECT DeviceObject, 
    IN PIRP Irp
    )
/*++

Routine Description:
	driver callback for pnp manager
	All other requests will be passed to the pcmcia driver to ensure correct processing.

--*/
{
 	
	NTSTATUS status = STATUS_SUCCESS;
    PDEVICE_EXTENSION DeviceExtension = DeviceObject->DeviceExtension;
	PIO_STACK_LOCATION IrpStack;
    PDEVICE_OBJECT AttachedPDO;
    BOOLEAN deviceRemoved = FALSE, irpSkipped = FALSE;
    KIRQL irql;
    LARGE_INTEGER timeout;

	SmartcardDebug( 
		DEBUG_TRACE, 
		( "PSCR!PscrPnPDeviceControl: Enter\n" )
		);

    status = SmartcardAcquireRemoveLock(&DeviceExtension->SmartcardExtension);
    ASSERT(status == STATUS_SUCCESS);

    if (status != STATUS_SUCCESS) {

        Irp->IoStatus.Information = 0;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精三区欧美精三区| 欧美一区二区三区在线| aaa亚洲精品一二三区| av激情成人网| 在线播放亚洲一区| 精品国产免费久久| 成人欧美一区二区三区在线播放| 中文字幕视频一区| 丝袜亚洲精品中文字幕一区| 国内精品在线播放| 欧美中文字幕久久| 国产日韩v精品一区二区| 亚洲精品亚洲人成人网在线播放| 久久国产精品一区二区| 91麻豆swag| 国产日韩精品久久久| 午夜电影网一区| 色综合久久99| 国产精品女人毛片| 日本不卡一二三区黄网| 色播五月激情综合网| 久久影视一区二区| 精品一区二区三区av| 欧美精品丝袜中出| 天堂蜜桃91精品| 欧美亚洲图片小说| 夜夜操天天操亚洲| www.亚洲在线| 国产精品萝li| 粉嫩aⅴ一区二区三区四区 | 欧美精品一区二区高清在线观看 | 国产不卡高清在线观看视频| 51久久夜色精品国产麻豆| 亚洲在线视频一区| 欧美亚洲禁片免费| 亚洲色图欧洲色图婷婷| av综合在线播放| 亚洲男人天堂av网| 欧美性高清videossexo| 亚洲国产成人av网| 日韩一卡二卡三卡四卡| 国产aⅴ精品一区二区三区色成熟| 久久婷婷综合激情| 成人免费视频播放| 国产精品久久久久久亚洲伦| 色88888久久久久久影院野外| 亚洲电影视频在线| 5858s免费视频成人| 久久网站热最新地址| 国产精品一区二区在线观看网站| 91精品国产综合久久久久久久| 91高清视频免费看| 精品视频在线看| 欧美日韩国产色站一区二区三区| 欧美色综合影院| 91精品国产色综合久久| 26uuu另类欧美亚洲曰本| 日韩亚洲欧美在线观看| 久久久无码精品亚洲日韩按摩| 久久久亚洲精华液精华液精华液 | 欧洲一区在线观看| 在线播放/欧美激情| 欧美mv日韩mv| 一色桃子久久精品亚洲| 视频一区在线视频| 国产成人在线观看免费网站| 日本高清不卡视频| 精品播放一区二区| 亚洲一区二区三区国产| 国产乱码精品一区二区三区忘忧草| 日韩精品一区二区三区在线观看 | 夜夜夜精品看看| 极品少妇一区二区| 一本色道久久综合精品竹菊| 日韩欧美不卡在线观看视频| 国产精品全国免费观看高清 | 国产精品美女久久久久高潮| 亚洲成在人线在线播放| 国产91丝袜在线观看| 日韩视频免费观看高清在线视频| 国产精品国产三级国产普通话99| 三级欧美韩日大片在线看| 久久美女艺术照精彩视频福利播放 | 经典一区二区三区| 欧美日本免费一区二区三区| 亚洲同性同志一二三专区| 九一九一国产精品| 日韩欧美在线综合网| 亚洲无线码一区二区三区| eeuss鲁片一区二区三区| 日本一区二区三区免费乱视频| 美国十次了思思久久精品导航| 欧美日韩黄色影视| 亚洲成av人综合在线观看| 精品视频资源站| 午夜精品在线看| 欧美日韩国产免费| 亚洲一区视频在线观看视频| 色综合久久综合网97色综合| 一区二区三区四区高清精品免费观看 | 这里只有精品免费| 日本欧美韩国一区三区| 日韩一级大片在线观看| 久久国产日韩欧美精品| 2020国产成人综合网| 国产精品一卡二卡| 国产精品三级电影| 欧美午夜理伦三级在线观看| 亚洲va天堂va国产va久| 精品国产不卡一区二区三区| 国产成人免费xxxxxxxx| 亚洲女同女同女同女同女同69| 欧美专区亚洲专区| 精品一二三四区| 亚洲人xxxx| 日韩免费一区二区三区在线播放| 国产在线精品一区二区三区不卡 | 欧美日本一道本| 国产999精品久久久久久绿帽| 一区二区在线观看av| 久久久久久免费网| 欧美日韩一区二区三区在线| 国产成人免费在线观看不卡| 亚洲成国产人片在线观看| 欧美国产日本视频| 欧美大片在线观看一区| 欧洲精品视频在线观看| 国产91丝袜在线播放0| 青青青爽久久午夜综合久久午夜| 国产精品久久久久久久浪潮网站 | 久久久久9999亚洲精品| 精品视频1区2区| 色伊人久久综合中文字幕| 国产精品一区二区久激情瑜伽| 日韩成人免费在线| 亚洲激情男女视频| 国产精品你懂的| 国产精品视频一二| 国产精品视频麻豆| 国产欧美视频一区二区| 26uuu另类欧美亚洲曰本| 精品国产91洋老外米糕| 91精品国产综合久久福利软件| 欧美在线视频日韩| 欧美日韩国产高清一区二区三区| 日本精品一级二级| 欧美中文字幕亚洲一区二区va在线 | 偷拍亚洲欧洲综合| 男男视频亚洲欧美| 久久精品久久99精品久久| 久久99精品一区二区三区| 久久国产精品99久久人人澡| 精品一区二区三区免费视频| 黄页视频在线91| 国产不卡视频一区二区三区| 91在线视频网址| 欧美亚洲禁片免费| xfplay精品久久| 中文字幕日本不卡| 日韩中文字幕麻豆| 国产成人亚洲综合a∨婷婷| 色天使久久综合网天天| 制服丝袜在线91| 国产精品美女久久久久aⅴ国产馆| 亚洲最新视频在线观看| 蜜臀久久99精品久久久久宅男 | 欧美日韩欧美一区二区| 欧美一区二区成人6969| 国产精品区一区二区三| 五月天久久比比资源色| 国产乱子伦一区二区三区国色天香| bt7086福利一区国产| 欧美成人精品1314www| 亚洲男人电影天堂| 国产mv日韩mv欧美| 欧美一区二区福利视频| 综合久久一区二区三区| 黄网站免费久久| 欧美一区二区三区色| 一区二区三区不卡视频在线观看| 国产一区二区三区在线观看精品 | 久久99在线观看| 7777精品伊人久久久大香线蕉最新版| 中文子幕无线码一区tr| 日本一区中文字幕| 欧美日韩小视频| 亚洲黄色av一区| 91在线视频18| 国产精品久久久久久久裸模| 国产精品亚洲成人| 久久久蜜桃精品| 国产永久精品大片wwwapp| 精品国产91乱码一区二区三区 | 国产精品羞羞答答xxdd| 久久午夜羞羞影院免费观看| 久久国产精品色婷婷| 久久综合色8888| 粉嫩蜜臀av国产精品网站| 中文字幕亚洲不卡| 91福利社在线观看|