青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

S.l.e!ep.¢%

像打了激速一樣,以四倍的速度運轉,開心的工作
簡單、開放、平等的公司文化;尊重個性、自由與個人價值;
posts - 1098, comments - 335, trackbacks - 0, articles - 1
  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

通過修改 import table Hook API 的實現

Posted on 2009-09-20 00:16 S.l.e!ep.¢% 閱讀(1409) 評論(0)  編輯 收藏 引用 所屬分類: Windows

//HookDemo.cpp文件
#include <windows.h>
#include <stdio.h>
// 掛鉤指定模塊hMod對MessageBoxA的調用
BOOL SetHookApi(HMODULE hMod, LPCSTR lpstrDLLName, PROC pfnOldFun, PROC pfnNewFun);


HANDLE
WINAPI
MY_CreateIoCompletionPort(
??? HANDLE FileHandle,
??? HANDLE ExistingCompletionPort,
??? DWORD CompletionKey,
??? DWORD NumberOfConcurrentThreads
??? )
{
?return (HANDLE)3;
}

void main()
{
?::SetHookApi(::GetModuleHandle(NULL), "Kernel32.dll", (PROC)CreateIoCompletionPort, (PROC)MY_CreateIoCompletionPort);
?HANDLE h = ::CreateIoCompletionPort(NULL, NULL, 0, 0);
}

BOOL SetHookApi(HMODULE hMod, LPCSTR lpstrDLLName, PROC pfnOldFun, PROC pfnNewFun)
{
?IMAGE_DOS_HEADER* pDosHeader = (IMAGE_DOS_HEADER*)hMod;
?IMAGE_OPTIONAL_HEADER * pOptHeader = (IMAGE_OPTIONAL_HEADER *)((BYTE*)hMod + pDosHeader->e_lfanew + 24);
?IMAGE_IMPORT_DESCRIPTOR* pImportDesc = (IMAGE_IMPORT_DESCRIPTOR*)
???????????????????????????????????? ((BYTE*)hMod +
?????????????? pOptHeader->DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT].VirtualAddress);

?// 在導入表中查找user32.dll模塊。因為MessageBoxA函數從user32.dll模塊導出
?while(pImportDesc->FirstThunk)
?{
??char* pszDllName = (char*)((BYTE*)hMod + pImportDesc->Name);
??if(lstrcmpiA(pszDllName, lpstrDLLName) == 0)
??{
???break;
??}
??pImportDesc++;
?}

?if(pImportDesc->FirstThunk)
?{
??// 一個IMAGE_THUNK_DATA就是一個雙字,它指定了一個導入函數
??// 調入地址表其實是IMAGE_THUNK_DATA結構的數組,也就是DWORD數組
??IMAGE_THUNK_DATA* pThunk = (IMAGE_THUNK_DATA*)
???((BYTE*)hMod + pImportDesc->FirstThunk);

??while(pThunk->u1.Function)
??{
???// lpAddr指向的內存保存了函數的地址
???DWORD* lpAddr = (DWORD*)&(pThunk->u1.Function);
???if(*lpAddr == (DWORD)pfnOldFun)
???{
????DWORD dwOldProtect;
????MEMORY_BASIC_INFORMATION mb;
????VirtualQuery(lpAddr, &mb, sizeof(mb));
????VirtualProtect(lpAddr, sizeof(DWORD), PAGE_READWRITE, &dwOldProtect);

????// 修改IAT表項,使其指向我們自定義的函數,相當于“*lpAddr = (DWORD)MyMessageBoxA;”
????DWORD* lpNewProc = (DWORD*)pfnNewFun;

????::WriteProcessMemory(::GetCurrentProcess(),
?????lpAddr, &lpNewProc, sizeof(DWORD), NULL);
????VirtualProtect(lpAddr, sizeof(DWORD), dwOldProtect, 0);
????return TRUE;
???}

???pThunk++;
??}
?}

?return FALSE;
}


////////////////////////////////////////////////////////////////////////////////////////////////////////////
APIHIJACK.H

/*--------------------------------------------------------------------------------------------------------
? APIHIJACK.H - Based on DelayLoadProfileDLL.CPP, by Matt Pietrek for MSJ February 2000.
? http://msdn.microsoft.com/library/periodic/period00/hood0200.htm
? Adapted by Wade Brainerd, wadeb@wadeb.com
--------------------------------------------------------------------------------------------------------*/
#ifndef APIHIJACK_H
#define APIHIJACK_H

#pragma warning(disable:4200)

// Macro for convenient pointer addition.
// Essentially treats the last two parameters as DWORDs.? The first
// parameter is used to typecast the result to the appropriate pointer type.
#define MakePtr(cast, ptr, addValue ) (cast)( (DWORD)(ptr)+(DWORD)(addValue))

// Default Hook Stub Structure: Contains data about the original function, Name/Ordinal, Address
// and a Count field.? This is actually a block of assembly code.
#pragma pack( push, 1 )
struct DLPD_IAT_STUB
{
??? BYTE??? instr_CALL;
??? DWORD?? data_call;
??? BYTE??? instr_JMP;
??? DWORD?? data_JMP;
??? DWORD?? count;
??? DWORD?? pszNameOrOrdinal;

??? DLPD_IAT_STUB() : instr_CALL( 0xE8 ), instr_JMP( 0xE9 ), count( 0 ) {}
};
#pragma pack( pop )

// Example DefaultHook procedure, called from the DLPD_IAT_STUB stubs.?
// Increments "count" field of the stub.
// See the implementation for more information.
void __cdecl DefaultHook( PVOID dummy );

struct SFunctionHook
{
??? char* Name;???????? // Function name, e.g. "DirectDrawCreateEx".
??? void* HookFn;?????? // Address of your function.
??? void* OrigFn;?????? // Stored by HookAPICalls, the address of the original function.
};

struct SDLLHook
{
??? // Name of the DLL, e.g. "DDRAW.DLL"
??? char* Name;

??? // Set true to call the default for all non-hooked functions before they are executed.
??? bool UseDefault;
??? void* DefaultFn;

??? // Function hook array.? Terminated with a NULL Name field.
??? SFunctionHook Functions[];
};

// Hook functions one or more DLLs.
bool HookAPICalls( SDLLHook* Hook );

#endif

//////////////////////////////////////////////////////////////////
APIHIJACK.CPP

/*--------------------------------------------------------------------------------------------------------
??? APIHIJACK.CPP - Based on DelayLoadProfileDLL.CPP, by Matt Pietrek for MSJ February 2000.
??? http://msdn.microsoft.com/library/periodic/period00/hood0200.htm
??? Adapted by Wade Brainerd, wadeb@wadeb.com
--------------------------------------------------------------------------------------------------------*/
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include "apihijack.h"

//===========================================================================
// Called from the DLPD_IAT_STUB stubs.? Increments "count" field of the stub

void __cdecl DefaultHook( PVOID dummy )
{
??? __asm?? pushad? // Save all general purpose registers

??? // Get return address, then subtract 5 (size of a CALL X instruction)
??? // The result points at a DLPD_IAT_STUB

??? // pointer math!? &dummy-1 really subtracts sizeof(PVOID)
??? PDWORD pRetAddr = (PDWORD)(&dummy - 1);

??? DLPD_IAT_STUB * pDLPDStub = (DLPD_IAT_STUB *)(*pRetAddr - 5);

??? pDLPDStub->count++;

??? #if 0
??? // Remove the above conditional to get a cheezy API trace from
??? // the loader process.? It's slow!
??? if ( !IMAGE_SNAP_BY_ORDINAL( pDLPDStub->pszNameOrOrdinal) )
??? {
??????? OutputDebugString( "Called hooked function: " );
??????? OutputDebugString( (PSTR)pDLPDStub->pszNameOrOrdinal );
??????? OutputDebugString( "\n" );
??? }
??? #endif

??? __asm?? popad?? // Restore all general purpose registers
}

// This function must be __cdecl!!!
void __cdecl DelayLoadProfileDLL_UpdateCount( PVOID dummy );

PIMAGE_IMPORT_DESCRIPTOR g_pFirstImportDesc;

//===========================================================================
// Given an HMODULE, returns a pointer to the PE header

PIMAGE_NT_HEADERS PEHeaderFromHModule(HMODULE hModule)
{
??? PIMAGE_NT_HEADERS pNTHeader = 0;
???
??? __try
??? {
??????? if ( PIMAGE_DOS_HEADER(hModule)->e_magic != IMAGE_DOS_SIGNATURE )
??????????? __leave;

??????? pNTHeader = PIMAGE_NT_HEADERS(PBYTE(hModule)
??????????????????? + PIMAGE_DOS_HEADER(hModule)->e_lfanew);
???????
??????? if ( pNTHeader->Signature != IMAGE_NT_SIGNATURE )
??????????? pNTHeader = 0;
??? }
??? __except( EXCEPTION_EXECUTE_HANDLER )
??? {??????
??? }

??? return pNTHeader;
}

//===========================================================================
// Builds stubs for and redirects the IAT for one DLL (pImportDesc)

bool RedirectIAT( SDLLHook* DLLHook, PIMAGE_IMPORT_DESCRIPTOR pImportDesc, PVOID pBaseLoadAddr )
{
??? PIMAGE_THUNK_DATA pIAT;???? // Ptr to import address table
??? PIMAGE_THUNK_DATA pINT;???? // Ptr to import names table
??? PIMAGE_THUNK_DATA pIteratingIAT;

??? // Figure out which OS platform we're on
??? OSVERSIONINFO osvi;
??? osvi.dwOSVersionInfoSize = sizeof(osvi);
??? GetVersionEx( &osvi );

??? // If no import names table, we can't redirect this, so bail
??? if ( pImportDesc->OriginalFirstThunk == 0 )
??????? return false;

??? pIAT = MakePtr( PIMAGE_THUNK_DATA, pBaseLoadAddr, pImportDesc->FirstThunk );
??? pINT = MakePtr( PIMAGE_THUNK_DATA, pBaseLoadAddr, pImportDesc->OriginalFirstThunk );

??? // Count how many entries there are in this IAT.? Array is 0 terminated
??? pIteratingIAT = pIAT;
??? unsigned cFuncs = 0;
??? while ( pIteratingIAT->u1.Function )
??? {
??????? cFuncs++;
??????? pIteratingIAT++;
??? }

??? if ( cFuncs == 0 )? // If no imported functions, we're done!
??????? return false;

??? // These next few lines ensure that we'll be able to modify the IAT,
??? // which is often in a read-only section in the EXE.
??? DWORD flOldProtect, flNewProtect, flDontCare;
??? MEMORY_BASIC_INFORMATION mbi;
???
??? // Get the current protection attributes???????????????????????????
??? VirtualQuery( pIAT, &mbi, sizeof(mbi) );
???
??? // remove ReadOnly and ExecuteRead attributes, add on ReadWrite flag
??? flNewProtect = mbi.Protect;
??? flNewProtect &= ~(PAGE_READONLY | PAGE_EXECUTE_READ);
??? flNewProtect |= (PAGE_READWRITE);
???
??? if ( !VirtualProtect(?? pIAT, sizeof(PVOID) * cFuncs,
??????????????????????????? flNewProtect, &flOldProtect) )
??? {
??????? return false;
??? }

??? // If the Default hook is enabled, build an array of redirection stubs in the processes memory.
??? DLPD_IAT_STUB * pStubs = 0;
??? if ( DLLHook->UseDefault )
??? {
??????? // Allocate memory for the redirection stubs.? Make one extra stub at the
??????? // end to be a sentinel
??????? pStubs = new DLPD_IAT_STUB[ cFuncs + 1];
??????? if ( !pStubs )
??????????? return false;
??? }

??? // Scan through the IAT, completing the stubs and redirecting the IAT
??? // entries to point to the stubs
??? pIteratingIAT = pIAT;

??? while ( pIteratingIAT->u1.Function )
??? {
??????? void* HookFn = 0;? // Set to either the SFunctionHook or pStubs.

??????? if ( !IMAGE_SNAP_BY_ORDINAL( pINT->u1.Ordinal ) )? // import by name
??????? {
??????????? PIMAGE_IMPORT_BY_NAME pImportName = MakePtr( PIMAGE_IMPORT_BY_NAME, pBaseLoadAddr, pINT->u1.AddressOfData );

??????????? // Iterate through the hook functions, searching for this import.
??????????? SFunctionHook* FHook = DLLHook->Functions;
??????????? while ( FHook->Name )
??????????? {
??????????????? if ( lstrcmpi( FHook->Name, (char*)pImportName->Name ) == 0 )
??????????????? {
??????????????????? OutputDebugString( "Hooked function: " );
??????????????????? OutputDebugString( (char*)pImportName->Name );
??????????????????? OutputDebugString( "\n" );

??????????????????? // Save the old function in the SFunctionHook structure and get the new one.
??????????????????? FHook->OrigFn = pIteratingIAT->u1.Function;
??????????????????? HookFn = FHook->HookFn;
??????????????????? break;
??????????????? }

??????????????? FHook++;
??????????? }

??????????? // If the default function is enabled, store the name for the user.
??????????? if ( DLLHook->UseDefault )
??????????????? pStubs->pszNameOrOrdinal = (DWORD)&pImportName->Name;
??????? }
??????? else
??????? {
??????????? // If the default function is enabled, store the ordinal for the user.
??????????? if ( DLLHook->UseDefault )
??????????????? pStubs->pszNameOrOrdinal = pINT->u1.Ordinal;
??????? }

??????? // If the default function is enabled, fill in the fields to the stub code.
??????? if ( DLLHook->UseDefault )
??????? {
??????????? pStubs->data_call = (DWORD)(PDWORD)DLLHook->DefaultFn
??????????????????????????????? - (DWORD)(PDWORD)&pStubs->instr_JMP;
??????????? pStubs->data_JMP = *(PDWORD)pIteratingIAT - (DWORD)(PDWORD)&pStubs->count;

??????????? // If it wasn't manually hooked, use the Stub function.
??????????? if ( !HookFn )
??????????????? HookFn = (void*)pStubs;
??????? }

??????? // Replace the IAT function pointer if we have a hook.
??????? if ( HookFn )
??????? {
??????????? // Cheez-o hack to see if what we're importing is code or data.
??????????? // If it's code, we shouldn't be able to write to it
??????????? if ( IsBadWritePtr( (PVOID)pIteratingIAT->u1.Function, 1 ) )
??????????? {
??????????????? pIteratingIAT->u1.Function = (PDWORD)HookFn;
??????????? }
??????????? else if ( osvi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS )
??????????? {
??????????????? // Special hack for Win9X, which builds stubs for imported
??????????????? // functions in system DLLs (Loaded above 2GB).? These stubs are
??????????????? // writeable, so we have to explicitly check for this case
??????????????? if ( pIteratingIAT->u1.Function > (PDWORD)0x80000000 )
??????????????????? pIteratingIAT->u1.Function = (PDWORD)HookFn;
??????????? }
??????? }

??????? if ( DLLHook->UseDefault )
??????????? pStubs++;?????????? // Advance to next stub

??????? pIteratingIAT++;??? // Advance to next IAT entry
??????? pINT++;???????????? // Advance to next INT entry
??? }

??? if ( DLLHook->UseDefault )
??????? pStubs->pszNameOrOrdinal = 0;?? // Final stub is a sentinel

??? // Put the page attributes back the way they were.
??? VirtualProtect( pIAT, sizeof(PVOID) * cFuncs, flOldProtect, &flDontCare);
???
??? return true;
}

//===========================================================================
// Top level routine to find the EXE's imports, and redirect them
bool HookAPICalls( SDLLHook* Hook )
{
??? if ( !Hook )
??????? return false;

??? HMODULE hModEXE = GetModuleHandle( 0 );

??? PIMAGE_NT_HEADERS pExeNTHdr = PEHeaderFromHModule( hModEXE );
???
??? if ( !pExeNTHdr )
??????? return false;

??? DWORD importRVA = pExeNTHdr->OptionalHeader.DataDirectory
??????????????????????? [IMAGE_DIRECTORY_ENTRY_IMPORT].VirtualAddress;
??? if ( !importRVA )
??????? return false;

??? // Convert imports RVA to a usable pointer
??? PIMAGE_IMPORT_DESCRIPTOR pImportDesc = MakePtr( PIMAGE_IMPORT_DESCRIPTOR,
??????????????????????????????????????????????????? hModEXE, importRVA );

??? // Save off imports address in a global for later use
??? g_pFirstImportDesc = pImportDesc;??

??? // Iterate through each import descriptor, and redirect if appropriate
??? while ( pImportDesc->FirstThunk )
??? {
??????? PSTR pszImportModuleName = MakePtr( PSTR, hModEXE, pImportDesc->Name);

??????? if ( lstrcmpi( pszImportModuleName, Hook->Name ) == 0 )
??????? {
??????????? OutputDebugString( "Found " );
??????????? OutputDebugString( Hook->Name );
??????????? OutputDebugString( "...\n" );

??????????? RedirectIAT( Hook, pImportDesc, (PVOID)hModEXE );
??????? }
???????
??????? pImportDesc++;? // Advance to next import descriptor
??? }

??? return true;
}



SDLLHook D3DHook =
{
??? "DDRAW.DLL",
??? false, NULL,??// Default hook disabled, NULL function pointer.
??? {
??????? { "DirectDrawCreateEx", MyDirectDrawCreateEx },
??????? { NULL, NULL }
??? }
};

// Hook function.
HRESULT WINAPI MyDirectDrawCreateEx( GUID FAR * lpGuid, LPVOID? *lplpDD, REFIID? iid,IUnknown FAR *pUnkOuter )
{
??? // Let the world know we're working.
??? MessageBeep( MB_ICONINFORMATION );

??? OutputDebugString( "TESTDLL: MyDirectDrawCreateEx called.\n" );

??? DirectDrawCreateEx_Type OldFn =
??????? (DirectDrawCreateEx_Type)D3DHook.Functions[D3DFN_DirectDrawCreateEx].OrigFn;
??? return OldFn( lpGuid, lplpDD, iid, pUnkOuter );
}

HookAPICalls( &D3DHook );

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            一本久久青青| 国产麻豆精品视频| 在线观看日产精品| 鲁大师成人一区二区三区| 久久精品在线播放| 在线欧美日韩精品| 亚洲欧美激情一区| 亚洲一区二区视频在线| 国产亚洲综合在线| 欧美成人免费全部观看天天性色| 久久一日本道色综合久久| 亚洲成色999久久网站| 亚洲黄色精品| 欧美午夜不卡视频| 久久在线91| 午夜欧美理论片| 亚洲大胆女人| 日韩小视频在线观看| 国产一区二区三区久久精品| 欧美大片一区二区| 欧美日韩视频在线观看一区二区三区| 亚洲欧美日韩另类| 麻豆久久久9性大片| 午夜激情一区| 麻豆精品在线播放| 欧美一级黄色录像| 欧美激情网友自拍| 久久久精品动漫| 欧美日韩免费一区二区三区视频| 久久久国产精品一区| 欧美日韩国产一区精品一区 | 夜夜嗨一区二区三区| 国产女人aaa级久久久级| 欧美激情一区二区三区全黄| 国产精品美女久久久浪潮软件| 欧美 日韩 国产一区二区在线视频 | 亚洲视频免费在线观看| 在线精品视频一区二区三四| 一区二区三区视频在线观看| 亚洲国产精品久久久久婷婷老年| 亚洲欧美另类中文字幕| av成人手机在线| 久久综合给合| 亚洲另类视频| 久久久精品日韩欧美| 欧美亚洲免费在线| 欧美午夜剧场| 99精品欧美一区二区三区| 亚洲日本电影在线| 久久久亚洲高清| 久久久久久亚洲精品中文字幕 | 亚洲一区二区av电影| 一区二区三区国产| 欧美激情第10页| 亚洲国产精品久久久久久女王| 韩国一区电影| 欧美在线播放一区二区| 久久久精品午夜少妇| 久久久精彩视频| 国产日韩欧美制服另类| 性久久久久久久久久久久| 性欧美大战久久久久久久久| 国产精品精品视频| 亚洲在线成人精品| 欧美伊久线香蕉线新在线| 国产精品一区视频网站| 午夜精品福利在线| 久久久久久噜噜噜久久久精品| 国产欧美日韩视频一区二区三区| 亚洲女人av| 久久天堂成人| 亚洲国产一区在线观看| 欧美刺激性大交免费视频 | 一区二区三区四区五区在线| 欧美日韩1080p| 在线视频免费在线观看一区二区| 亚洲制服欧美中文字幕中文字幕| 国产精品久久综合| 欧美在线观看一区二区| 欧美成人精品一区| 日韩午夜黄色| 国产精品亚洲不卡a| 欧美在线观看www| 欧美成人精品在线视频| 99在线|亚洲一区二区| 国产精品久久福利| 久久国产天堂福利天堂| 亚洲福利视频三区| 国产人成一区二区三区影院| 欧美在线91| 亚洲国产精品久久久久秋霞蜜臀| 亚洲视频在线播放| 国产一本一道久久香蕉| 欧美电影在线播放| 亚洲综合社区| 欧美激情在线| 欧美一级一区| 亚洲黑丝在线| 国产欧美精品日韩| 欧美国产成人在线| 亚洲欧美欧美一区二区三区| 欧美国产视频在线| 午夜亚洲影视| 一本色道精品久久一区二区三区| 国产欧美日韩精品丝袜高跟鞋 | 欧美一级片一区| 欧美激情影院| 久久久久国产一区二区| 一本久久精品一区二区| 精品不卡视频| 国产精品久久国产愉拍 | 亚洲丝袜av一区| 欧美成人高清| 欧美中文在线字幕| 亚洲一区二区三区四区五区黄| 亚洲第一天堂无码专区| 国产女精品视频网站免费| 欧美日韩另类视频| 另类欧美日韩国产在线| 欧美中文字幕精品| 亚洲一区二区三区精品视频| 欧美性片在线观看| 欧美激情小视频| 久久久水蜜桃| 欧美一级一区| 亚洲欧美一区二区三区在线| 日韩视频在线观看免费| 亚洲国产一区二区视频 | 亚洲日本成人| 黄色成人免费网站| 国产亚洲欧美色| 国产精品亚洲第一区在线暖暖韩国| 欧美久久久久久蜜桃| 欧美成人精品1314www| 久久久一区二区| 久久久在线视频| 久久精品成人一区二区三区蜜臀| 香蕉久久久久久久av网站| 亚洲一区二区三区中文字幕在线| 一区二区三区欧美视频| 在线亚洲观看| 亚洲一区二区三区免费视频| 亚洲一区二区三区三| 亚洲一区二区三区四区中文| 亚洲一区二区黄| 亚洲欧美国产不卡| 欧美一区深夜视频| 久久久久久久综合日本| 久久免费精品视频| 免费视频一区二区三区在线观看| 宅男噜噜噜66一区二区| 亚洲视频专区在线| 性欧美xxxx视频在线观看| 欧美在线地址| 老司机午夜精品| 欧美欧美在线| 国产精品美女一区二区在线观看| 国产农村妇女精品一区二区| 国产一区深夜福利| 国产精品另类一区| 国产亚洲精品bv在线观看| 亚洲第一在线视频| 一区二区高清在线观看| 欧美一级久久| 欧美激情按摩| 一区二区精品在线| 久久成人在线| 欧美精品观看| 国产日韩欧美二区| 一区二区三区久久久| 午夜日韩视频| 欧美精品一区二区三区很污很色的| 欧美性大战久久久久| 精品99视频| 国产精品99久久久久久久久久久久| 欧美伊久线香蕉线新在线| 女生裸体视频一区二区三区| 在线视频亚洲| 欧美xx69| 国产午夜精品理论片a级大结局| 91久久精品www人人做人人爽 | 激情亚洲网站| 亚洲午夜性刺激影院| 久久一区二区三区四区五区| 日韩亚洲综合在线| 久久综合久色欧美综合狠狠| 国产精品卡一卡二卡三| 亚洲精品免费在线播放| 久久精品国产亚洲aⅴ| 亚洲精品一区二区三区四区高清 | 在线视频你懂得一区| 美乳少妇欧美精品| 国产欧美一区二区三区在线老狼 | 免费看精品久久片| 亚洲男人av电影| 欧美美女日韩| 亚洲国产91精品在线观看| 久久精品成人欧美大片古装| 欧美在线中文字幕| 美国成人毛片|