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

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

?? pscrnt.c

?? SmartCard驅(qū)動程序
?? 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;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成a人v欧美综合天堂下载| 99re在线视频这里只有精品| 婷婷久久综合九色综合伊人色| 亚洲乱码精品一二三四区日韩在线| 国产日韩欧美激情| 国产亚洲一区二区三区在线观看| 精品国产1区2区3区| 日韩丝袜美女视频| 日韩一区二区在线看| 欧美一区二区福利在线| 欧美精品123区| 日韩一级免费观看| 日韩视频一区二区在线观看| 精品欧美一区二区三区精品久久 | 色综合天天做天天爱| 国产69精品久久久久777| 国产成人精品免费一区二区| 不卡一区二区在线| 一本大道av伊人久久综合| 91麻豆免费看| 欧美日韩激情在线| 日韩欧美中文一区二区| 精品日韩在线一区| 中文字幕欧美激情| 亚洲欧美日韩国产另类专区| 亚洲国产成人av| 日本va欧美va精品| 国产激情视频一区二区三区欧美| 成人a级免费电影| 色婷婷国产精品综合在线观看| 欧美在线999| 欧美一区二区三区在线电影| 久久久电影一区二区三区| 国产精品久久午夜夜伦鲁鲁| 亚洲国产欧美日韩另类综合| 蜜桃视频在线一区| 成人性视频免费网站| 日本高清不卡视频| 精品免费一区二区三区| 国产精品天美传媒沈樵| 亚洲另类春色校园小说| 视频一区二区三区在线| 国产成人鲁色资源国产91色综| 92精品国产成人观看免费| 欧美人与性动xxxx| 国产亚洲欧美日韩在线一区| 一区二区三区在线影院| 久久99在线观看| hitomi一区二区三区精品| 欧美男男青年gay1069videost| 久久久久久久国产精品影院| 亚洲一区二区三区在线看| 极品少妇一区二区三区精品视频 | 欧美色老头old∨ideo| 日韩精品专区在线影院观看| 国产精品伦一区二区三级视频| 偷偷要91色婷婷| 国产精品99久久久久久有的能看 | 日本精品视频一区二区三区| 欧美va天堂va视频va在线| 国产精品二三区| 免费日韩伦理电影| 91在线云播放| 久久久www免费人成精品| 亚洲午夜视频在线观看| 国产+成+人+亚洲欧洲自线| 91精品国产欧美一区二区| 自拍视频在线观看一区二区| 国内精品久久久久影院色| 欧美三级日韩在线| 中文字幕在线不卡一区| 老司机精品视频在线| 欧美专区亚洲专区| 国产精品久久久久久久久免费桃花| 青草国产精品久久久久久| 色哟哟国产精品免费观看| 久久精品亚洲精品国产欧美kt∨ | av成人免费在线| 精品日韩一区二区三区| 亚洲18色成人| 在线免费一区三区| 亚洲少妇中出一区| 成人激情小说网站| 久久久久一区二区三区四区| 欧美aⅴ一区二区三区视频| 色哟哟国产精品| 亚洲视频在线一区二区| 国产高清亚洲一区| 久久色成人在线| 久久99久国产精品黄毛片色诱| 欧美日韩高清不卡| 一区二区三区日韩精品视频| youjizz国产精品| 国产精品网站在线观看| 国产成人精品三级| 国产清纯在线一区二区www| 激情五月激情综合网| 日韩女优av电影在线观看| 日韩精品成人一区二区三区| 欧美日韩精品系列| 日日摸夜夜添夜夜添精品视频| 欧美日韩中文国产| 亚洲第一搞黄网站| 7777女厕盗摄久久久| 午夜私人影院久久久久| 在线精品亚洲一区二区不卡| 亚洲精品成人少妇| 日本韩国欧美在线| 亚洲国产成人av好男人在线观看| 欧美性videosxxxxx| 性感美女极品91精品| 欧美日韩高清一区二区| 免费黄网站欧美| 精品国产污网站| 国产美女精品一区二区三区| 久久久久久**毛片大全| 成人久久久精品乱码一区二区三区| 国产精品网友自拍| 一本久久综合亚洲鲁鲁五月天| 亚洲综合免费观看高清完整版在线 | 五月婷婷欧美视频| 91精品国产91久久久久久最新毛片 | 欧美一二三四区在线| 久久国产夜色精品鲁鲁99| 久久青草国产手机看片福利盒子| 国产成人在线视频网址| 国产精品美女久久久久aⅴ| 99re视频这里只有精品| 亚洲人成精品久久久久| 欧美日韩在线亚洲一区蜜芽| 麻豆精品在线播放| 国产日产精品一区| 92精品国产成人观看免费| 亚洲国产aⅴ成人精品无吗| 在线不卡免费欧美| 精品一区二区三区香蕉蜜桃| 国产日本欧洲亚洲| 97se狠狠狠综合亚洲狠狠| 亚洲va韩国va欧美va| 久久亚洲一区二区三区明星换脸| 99国产精品国产精品毛片| 亚洲成a人片在线观看中文| 欧美精品一区二区三区蜜桃 | 欧美精品一区二区三区视频 | 欧美大片在线观看一区| 国产成人在线视频网址| 亚洲一区二区黄色| 337p粉嫩大胆色噜噜噜噜亚洲| 不卡电影一区二区三区| 丝袜美腿高跟呻吟高潮一区| 久久久久久免费网| 欧美吻胸吃奶大尺度电影 | 99久久精品99国产精品| 亚洲va欧美va人人爽午夜| 久久婷婷久久一区二区三区| 色天天综合久久久久综合片| 麻豆精品视频在线| 亚洲天堂av一区| 欧美一级精品大片| 91免费精品国自产拍在线不卡| 蜜桃久久久久久| 亚洲日本在线a| 亚洲精品一区二区三区99| 日本二三区不卡| 国产精品99久久久久久久vr| 亚洲国产精品久久久男人的天堂| 久久久久久久电影| 欧美一区二区三区男人的天堂| 99视频精品全部免费在线| 另类小说色综合网站| 亚洲乱码国产乱码精品精98午夜| 欧美一级国产精品| 在线欧美小视频| 成人久久18免费网站麻豆| 精品一区二区在线看| 亚洲电影一区二区三区| 国产精品天美传媒沈樵| 久久夜色精品一区| 91精品国产乱| 欧美日韩一区二区三区四区五区| 高清视频一区二区| 久久不见久久见中文字幕免费| 亚洲mv在线观看| 亚洲精品菠萝久久久久久久| 国产日产亚洲精品系列| 精品国产一区二区在线观看| 欧美欧美欧美欧美首页| 欧洲生活片亚洲生活在线观看| 成人avav影音| 国产成人精品在线看| 日本中文一区二区三区| 亚洲一级二级三级| 亚洲天堂中文字幕| 中文字幕一区av| 国产精品久久久久久久久免费樱桃| 久久久www免费人成精品| 日韩欧美高清dvd碟片| 欧美精品第1页| 欧美三级视频在线观看| 色欧美日韩亚洲|