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

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

?? shell.cpp

?? 自己動手寫操作系統源代碼,不可多得的代碼
?? CPP
?? 第 1 頁 / 共 3 頁
字號:
//***********************************************************************/
//    Author                    : Garry
//    Original Date             : May,27 2004
//    Module Name               : shell.cpp
//    Module Funciton           : 
//                                This module countains shell procedures.
//    Last modified Author      :
//    Last modified Date        :
//    Last modified Content     :
//                                1.
//                                2.
//    Lines number              :
//***********************************************************************/
#ifndef __STDAFX_H__
#include "..\INCLUDE\STDAFX.H"
#endif

#ifndef __KAPI_H__
#include "..\INCLUDE\KAPI.H"
#endif

#ifndef __IOCTRL_S_H__
#include "..\INCLUDE\IOCTRL_S.H"
#endif

#ifndef __SYSD_S_H__
#include "..\INCLUDE\SYSD_S.H"
#endif

#ifndef __RT8139_H__
#include "..\INCLUDE\RT8139.H"
#endif

#ifndef __EXTCMD_H__
#include "..\EXTCMD.H"
#endif

//
//Global variables.
//
#define MAX_HOSTNAME_LEN  16
#define VERSION_INFO "Hello China [Version 1.500]"

BYTE               HostName[MAX_HOSTNAME_LEN] = {0};          //Host name.
__TASK_CTRL_BLOCK  tcbShell = {0,0,0,0,0,
                   0,0,0,0,0,0,0,0,0,0,0,
				   0,0,0,0,0,0,0,0,0,0,0,
				   0,0,0,0,0,0,0,0,0,0,0,
				   0,0,0,0,0,0,0,0,0,0xffffffff};        //The shell's task control block.
				   

__KTHREAD_CONTROL_BLOCK* g_pShellCtrlBlock   = NULL;     //The shell's kernal thread control
                                                         //block pointer.

__KERNEL_THREAD_OBJECT*  g_lpShellThread     = NULL;     //The system shell's kernel thread 
                                                         //object.

static BYTE        CmdBuffer[MAX_BUFFER_LEN] = {0};  //Command buffer.
static WORD        BufferPtr = 0;         //Buffer pointer,points to the first
                                          //free byte of the CmdBuffer.

//
//Global functions.
//

//
//The following function form the command parameter object link from the command
//line string.
//

__CMD_PARA_OBJ* FormParameterObj(LPSTR pszCmd)
{
	__CMD_PARA_OBJ*     pObjBuffer = NULL;    //Local variables.
	__CMD_PARA_OBJ*     pBasePtr   = NULL;
	__CMD_PARA_OBJ*     pTmpObj    = NULL;
	DWORD               dwCounter  = 0x0000;
	DWORD               index      = 0x0000;

	if(NULL == pszCmd)    //Parameter check.
		return NULL;

	pObjBuffer = (__CMD_PARA_OBJ*)KMemAlloc(4096,KMEM_SIZE_TYPE_4K);
	if(NULL == pObjBuffer)
		goto __TERMINAL;

	pBasePtr = pObjBuffer;
	MemZero(pBasePtr,4096);

	while(*pszCmd)
	{
		if(' ' == *pszCmd)
		{
			pszCmd ++;
			continue; 
		}                                 //Filter the space.
		
		if(('-' == *pszCmd) || ('/' == *pszCmd))
		{
			pszCmd ++;
			pObjBuffer->byFunctionLabel = *pszCmd;
			pszCmd ++;                    //Skip the function label byte.
			continue;
		}
		else
		{
			/*while((' ' != *pszCmd) && *pszCmd)  //To find the first parameter.
			{
				pszCmd ++;
			}
			if(!*pszCmd)
				break;
			while(' ' == *pszCmd)    //Filter the space.
				pszCmd ++;

			if(!*pszCmd)
				break;*/
			index = 0x0000;
			while(('-' != *pszCmd) && ('/' != *pszCmd) && *pszCmd)
			{
				while((' ' != *pszCmd) && (*pszCmd) && (dwCounter <= CMD_PARAMETER_LEN))
				{
					pObjBuffer->Parameter[index][dwCounter] = *pszCmd;
					pszCmd ++;
					dwCounter ++;
				}
				pObjBuffer->Parameter[index][dwCounter] = 0x00;  //Set the terminal flag.
				index ++;               //Ready to copy the next parameter to parameter object.
				dwCounter = 0;

				if(!*pszCmd)
					break;
				while(' ' != *pszCmd)
					pszCmd ++;          //Skip the no space characters if the parameter's length
				                        //is longer than the const CMD_PARAMETER_LEN.
				while(' ' == *pszCmd)
					pszCmd ++;          //Skip the space character.
			}

			pTmpObj = pObjBuffer;       //Update the current parameter object.
			pObjBuffer = (__CMD_PARA_OBJ*)NextParaAddr(pTmpObj,index);
			pTmpObj->byParameterNum = LOBYTE(LOWORD(index));
			if(!*pszCmd)
				break;
			pTmpObj->pNext = pObjBuffer;
		}
	}

__TERMINAL:
	return pBasePtr;
}

//
//The following routine releases the parameter object created by FormParameterObj routine.
//

VOID ReleaseParameterObj(__CMD_PARA_OBJ* lpParamObj)
{
	if(NULL == lpParamObj)  //Parameter check.
		return;

	KMemFree((LPVOID)lpParamObj,KMEM_SIZE_TYPE_4K,4096);  //Release the memory.
	return;
}

//
//Command handler predefinitions.
//

VOID VerHandler(LPSTR);          //Handles the version command.
VOID MemHandler(LPSTR);          //Handles the memory command.
VOID SysInfoHandler(LPSTR);      //Handles the sysinfo command.
VOID HlpHandler(LPSTR);
VOID DateHandler(LPSTR);
VOID TimeHandler(LPSTR);
VOID CpuHandler(LPSTR);
VOID SptHandler(LPSTR);
VOID ClsHandler(LPSTR);
VOID RunTimeHandler(LPSTR);
VOID TestHandler(LPSTR);
VOID UnTestHandler(LPSTR);
VOID MemViewHandler(LPSTR);
VOID SendMsgHandler(LPSTR);
VOID KtViewHandler(LPSTR);
VOID SysNameHandler(LPSTR);
VOID IoCtrlApp(LPSTR);
VOID SysDiagApp(LPSTR);

#define CMD_OBJ_NUM  18

__CMD_OBJ  CmdObj[CMD_OBJ_NUM] = {
	{"version"  ,    VerHandler},
	{"memory"   ,    MemHandler},
	{"sysinfo"  ,    SysInfoHandler},
	{"sysname"  ,    SysNameHandler},
	{"help"     ,    HlpHandler},
	{"date"     ,    DateHandler},
	{"time"     ,    TimeHandler},
	{"cpuinfo"  ,    CpuHandler},
	{"support"  ,    SptHandler},
	{"runtime"  ,    RunTimeHandler},
	{"test"     ,    TestHandler},
	{"untest"   ,    UnTestHandler},
	{"memview"  ,    MemViewHandler},
	{"sendmsg"  ,    SendMsgHandler},
	{"ktview"   ,    KtViewHandler},
	{"ioctrl"   ,    IoCtrlApp},
	{"sysdiag"  ,    SysDiagApp},
	{"cls"      ,    ClsHandler}
};

//
//Global Functions.
//

VOID HlpHandler(LPSTR)           //Command 'help' 's handler.
{
	LPSTR strHelpTitle   = "    The following command is availiable currently:";
	LPSTR strHelpVer     = "    version      : Print out the version information.";
	LPSTR strHelpMem     = "    memory       : Print out the memory layout.";
	LPSTR strHelpSysInfo = "    sysinfo      : Print out the system context.";
	LPSTR strSysName     = "    sysname      : Change the system host name.";
	LPSTR strHelpHelp    = "    help         : Print out this screen.";
	LPSTR strDate        = "    date         : Display or reset system date.";
	LPSTR strTime        = "    time         : Display or reset system time.";
	LPSTR strSupport     = "    support      : Print out technical support information.";
	LPSTR strRunTime     = "    runtime      : Display the total run time since last reboot.";
	LPSTR strMemView     = "    memview      : View a block memory's content.";
	LPSTR strSendMsg     = "    sendmsg      : Send a message to a kernal thread.";
	LPSTR strKtView      = "    ktview       : View all the kernal threads' information.";
	LPSTR strIoCtrlApp   = "    ioctrl       : Start IO control application.";
	LPSTR strSysDiagApp  = "    sysdiag      : System or hardware diag application.";
	LPSTR strCls         = "    cls          : Clear the whole display buffer.";

	PrintLine(strHelpTitle);              //Print out the help information line by line.
	PrintLine(strHelpVer);
	PrintLine(strHelpMem);
	PrintLine(strHelpSysInfo);
	PrintLine(strSysName);
	PrintLine(strHelpHelp);
	PrintLine(strDate);
	PrintLine(strTime);
	PrintLine(strSupport);
	PrintLine(strRunTime);
	PrintLine(strMemView);
	PrintLine(strSendMsg);
	PrintLine(strKtView);
	PrintLine(strIoCtrlApp);
	PrintLine(strSysDiagApp);
	PrintLine(strCls);
}

//
//sysname handler.
//This handler changes the system name,and save it to system config database.
//

static VOID SaveSysName(LPSTR)
{
}

VOID SysNameHandler(LPSTR pszSysName)
{
	__CMD_PARA_OBJ*    pCmdObj = NULL;

	pCmdObj = FormParameterObj(pszSysName);
	if(NULL == pCmdObj)
	{
		PrintLine("Not enough system resource to interpret the command.");
		goto __TERMINAL;
	}
	if((0 == pCmdObj->byParameterNum) || (0 == pCmdObj->Parameter[0][0]))
	{
		PrintLine("Invalid command parameter.");
		goto __TERMINAL;
	}

	if(StrLen(pCmdObj->Parameter[0]) >= MAX_HOSTNAME_LEN)
	{
		PrintLine("System name must not exceed 16 bytes.");
		goto __TERMINAL;
	}

	SaveSysName(pCmdObj->Parameter[0]);
	StrCpy(pCmdObj->Parameter[0],&HostName[0]);
__TERMINAL:
	if(NULL != pCmdObj)
		KMemFree((LPVOID)pCmdObj,KMEM_SIZE_TYPE_4K,4096);
	return;
}

//
//Local helper function.
//The function print out all of the kernal threads' information.
//
static LPSTR                      pszThreadID   = "    Thread ID     : ";
static LPSTR                      pszContext    = "    Context:";
static LPSTR                      pszEax        = "        EAX       : ";
static LPSTR                      pszEbx        = "        EBX       : ";
static LPSTR                      pszEcx        = "        ECX       : ";
static LPSTR                      pszEdx        = "        EDX       : ";
static LPSTR                      pszEsi        = "        ESI       : ";
static LPSTR                      pszEdi        = "        EDI       : ";
static LPSTR                      pszEbp        = "        EBP       : ";
static LPSTR                      pszEsp        = "        ESP       : ";
static LPSTR                      pszEFlags     = "        EFlags    : ";
static LPSTR                      pszStartAddr  = "    Start Address : ";
static LPSTR                      pszStackSize  = "    Stack Size    : ";
static LPSTR                      pszCurrMsgNum = "    Message num   : ";

static VOID PrintAllKt(__KTHREAD_CONTROL_BLOCK** ppControlBlock)
{
	BYTE                       Buffer[32];

	for(DWORD i = 0;i < MAX_KTHREAD_NUM;i ++)
	{
		if(NULL == ppControlBlock[i])
			continue;
		PrintLine(pszThreadID);
		Int2Str(ppControlBlock[i]->dwKThreadID,Buffer);
		PrintStr(Buffer);

		PrintLine(pszContext);
		PrintLine(pszEax);
		Hex2Str(ppControlBlock[i]->dwEAX,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEbx);
		Hex2Str(ppControlBlock[i]->dwEBX,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEcx);
		Hex2Str(ppControlBlock[i]->dwECX,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEdx);
		Hex2Str(ppControlBlock[i]->dwEDX,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEsi);
		Hex2Str(ppControlBlock[i]->dwESI,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEdi);
		Hex2Str(ppControlBlock[i]->dwEDI,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEbp);
		Hex2Str(ppControlBlock[i]->dwEBP,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEsp);
		Hex2Str(ppControlBlock[i]->dwESP,Buffer);
		PrintStr(Buffer);

		PrintLine(pszEFlags);
		Hex2Str(ppControlBlock[i]->dwEFlags,Buffer);
		PrintStr(Buffer);

		PrintLine(pszStartAddr);
		Hex2Str((DWORD)ppControlBlock[i]->pKThreadRoutine,Buffer);
		PrintStr(Buffer);

		PrintLine(pszStackSize);
		Hex2Str(ppControlBlock[i]->dwStackSize,Buffer);
		PrintStr(Buffer);

		PrintLine(pszCurrMsgNum);
		Hex2Str(ppControlBlock[i]->wCurrentMsgNum,Buffer);
		PrintStr(Buffer);

		ChangeLine();
		GotoHome();
	}
}

static VOID KtViewUsage()
{
	PrintLine("    Usage :");
	PrintLine("    ktview -i [-?] kthread_id");
	PrintLine("    Where :");
	PrintLine("        -i         : View the kernal thread's information.");
	PrintLine("        kthread_id : Kernal thread's ID");
	PrintLine("        -?         : Print out the help information of the command.");
}

static VOID PrintKtByID(DWORD dwKThreadID)
{
	__KTHREAD_CONTROL_BLOCK* pControlBlock = NULL;
	DWORD dwIndex                          = 0L;
	BYTE  Buffer[12];

	if((dwKThreadID < 1) || (dwKThreadID > MAX_KTHREAD_NUM))
	{
		PrintLine("Invalid kernal thread ID");
		return;
	}

	dwIndex = dwKThreadID - 1;
	pControlBlock = g_pKThreadQueue[dwIndex];
	if(NULL == pControlBlock)
	{
		PrintLine("The kernal thread is not exist.");
		return;
	}
	PrintLine(pszThreadID);
	Int2Str(pControlBlock->dwKThreadID,Buffer);
	PrintStr(Buffer);

	PrintLine(pszContext);
	PrintLine(pszEax);
	Hex2Str(pControlBlock->dwEAX,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEbx);
	Hex2Str(pControlBlock->dwEBX,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEcx);
	Hex2Str(pControlBlock->dwECX,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEdx);
	Hex2Str(pControlBlock->dwEDX,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEsi);
	Hex2Str(pControlBlock->dwESI,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEdi);
	Hex2Str(pControlBlock->dwEDI,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEbp);
	Hex2Str(pControlBlock->dwEBP,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEsp);
	Hex2Str(pControlBlock->dwESP,Buffer);
	PrintStr(Buffer);

	PrintLine(pszEFlags);
	Hex2Str(pControlBlock->dwEFlags,Buffer);
	PrintStr(Buffer);

	PrintLine(pszStartAddr);
	Hex2Str((DWORD)pControlBlock->pKThreadRoutine,Buffer);
	PrintStr(Buffer);

	PrintLine(pszStackSize);
	Hex2Str(pControlBlock->dwStackSize,Buffer);
	PrintStr(Buffer);

	PrintLine(pszCurrMsgNum);
	Hex2Str(pControlBlock->wCurrentMsgNum,Buffer);
	PrintStr(Buffer);

	ChangeLine();
	GotoHome();
}

VOID KtViewHandler(LPSTR pszPara)
{
	__CMD_PARA_OBJ*  pCmdObj = NULL;
	DWORD            dwID    = 0L;
	BOOL             bResult = FALSE;
	
	if((NULL == pszPara) || 0 == *pszPara)
	{
		PrintAllKt(&g_pKThreadQueue[0]);
		goto __TERMINAL;
	}

	pCmdObj = FormParameterObj(pszPara);
	if(NULL == pCmdObj)
	{
		PrintLine("Can not allocate the resource to interpret the command.");
		goto __TERMINAL;
	}

	switch(pCmdObj->byFunctionLabel)
	{
	case 'i':
	case 0:
		bResult = Str2Hex(pCmdObj->Parameter[0],&dwID);
		if(FALSE == bResult)
		{
			PrintLine("Can not interpret the command's parameter.");
			goto __TERMINAL;
		}
		PrintKtByID(dwID);
		break;
	case '?':
	default:
		KtViewUsage();
		break;
	}

__TERMINAL:
	if(NULL != pCmdObj)
		KMemFree((LPVOID)pCmdObj,KMEM_SIZE_TYPE_4K,4096);
	return;
}

//
//The helper functions,print out the usage information.
//

static VOID SendMsgUsage()
{
	PrintLine("    Usage :");
	PrintLine("      sendmsg kthread_id command [parameter1] [parameter2]");
	PrintLine("    Where :");
	PrintLine("      kthread_id  : Kernal thread ID.");
	PrintLine("      command     : Command number.");
	PrintLine("      parameter1  : The first parameter(optional).");
	PrintLine("      parameter2  : The second parameter(optional).");
}

VOID SendMsgHandler(LPSTR pszPara)
{
	__CMD_PARA_OBJ*          pCmdObj       = NULL;
	DWORD                    dwID          = 0L;
	__KTHREAD_MSG            msg;
	BOOL                     bResult       = FALSE;
	DWORD                    dwCommand     = 0L;
	__KTHREAD_CONTROL_BLOCK* pControlBlock = NULL;

	if((NULL == pszPara) || (0 == *pszPara))
	{
		SendMsgUsage();
		goto __TERMINAL;
	}

	pCmdObj = FormParameterObj(pszPara);
	if(NULL == pCmdObj)
	{
		PrintLine("Can not allocate resource to interpret the command.");
		goto __TERMINAL;
	}

	if(pCmdObj->byParameterNum < 2)
	{
		PrintLine("Miss command code.");
		goto __TERMINAL;
	}

	bResult = Str2Hex(pCmdObj->Parameter[0],&dwID);
	if((FALSE == bResult)
		|| (dwID < 1)
		|| (dwID > MAX_KTHREAD_NUM))
	{
		PrintLine("Invalid kernal thread ID.");
		goto __TERMINAL;
	}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品72免费观看| 成人av午夜电影| 不卡的电视剧免费网站有什么| 亚洲一区成人在线| 亚洲一二三级电影| 国产激情一区二区三区| 8v天堂国产在线一区二区| 久久久青草青青国产亚洲免观| 亚洲午夜精品17c| 亚州成人在线电影| 麻豆久久一区二区| 国产在线不卡视频| 国产白丝精品91爽爽久久| 8v天堂国产在线一区二区| 自拍偷拍欧美精品| 一区二区三区美女视频| 成人激情电影免费在线观看| 色综合色综合色综合 | 日本韩国精品在线| 欧美日韩一区二区电影| 91精品国产欧美一区二区成人| 亚洲另类中文字| 日韩黄色一级片| 欧美亚洲综合一区| 日韩精品一区二区三区中文不卡| 欧美一区日本一区韩国一区| 亚洲高清视频在线| 欧美日韩一级黄| 欧美v国产在线一区二区三区| 无吗不卡中文字幕| 欧美裸体一区二区三区| 亚洲你懂的在线视频| 色天天综合色天天久久| 亚洲色图19p| 久热成人在线视频| 成人精品在线视频观看| 在线电影一区二区三区| 性欧美疯狂xxxxbbbb| 欧美日韩一区二区三区四区五区 | 色综合久久综合中文综合网| 欧美精品乱人伦久久久久久| 亚洲午夜日本在线观看| 欧美四级电影网| 日韩电影网1区2区| 精品久久五月天| 福利一区二区在线| 欧美大黄免费观看| 亚洲日本欧美天堂| 国产精品自拍网站| 欧美日韩一区二区在线视频| 日韩精品视频网| 99久久综合国产精品| 亚洲精品老司机| 粉嫩aⅴ一区二区三区四区五区| 国产精品网站在线播放| 91麻豆国产在线观看| 午夜亚洲国产au精品一区二区| 欧美一级欧美三级在线观看| 国内精品免费在线观看| 欧美精品色综合| 国产一区91精品张津瑜| 中文字幕佐山爱一区二区免费| 国产高清不卡一区| 一级特黄大欧美久久久| 日韩欧美国产综合一区| 成人一道本在线| 久久精品人人做| 91福利区一区二区三区| 亚洲三级小视频| 欧美一区二区不卡视频| k8久久久一区二区三区 | 欧美视频一区在线| 久久精品免费观看| 日韩一区二区免费在线观看| 亚洲专区一二三| 色综合天天性综合| 国产精品久久久久影院色老大| 欧美性一级生活| 国产精品自拍一区| 国产亚洲一二三区| 欧美日韩在线亚洲一区蜜芽| 岛国av在线一区| 国产精品视频一二三区| 欧美一级精品大片| 狠狠色综合播放一区二区| 一区二区三区波多野结衣在线观看 | 国产精品香蕉一区二区三区| 亚洲成av人片在线观看| 国产精品九色蝌蚪自拍| 久久综合色鬼综合色| 久久av资源网| 香蕉乱码成人久久天堂爱免费| 日本一区二区三区四区 | 2020国产成人综合网| 欧美在线观看视频在线| 亚洲一区日韩精品中文字幕| 国产欧美va欧美不卡在线| 91亚洲国产成人精品一区二区三 | 色呦呦国产精品| 国产传媒欧美日韩成人| 麻豆精品视频在线观看| 午夜国产精品影院在线观看| 狠狠狠色丁香婷婷综合久久五月| 午夜影视日本亚洲欧洲精品| 亚洲综合偷拍欧美一区色| 国产亚洲精品中文字幕| 午夜精品一区二区三区电影天堂| 亚洲人亚洲人成电影网站色| 国产精品久久久久久久久免费相片 | 人人狠狠综合久久亚洲| 欧美日韩精品欧美日韩精品| 国产91综合网| 韩国v欧美v亚洲v日本v| 亚洲一区二区高清| 亚洲人成精品久久久久| 99re这里只有精品首页| 国产一区二区三区蝌蚪| 国产日韩综合av| 欧美videossexotv100| 99精品欧美一区二区蜜桃免费| 欧美成人video| 666欧美在线视频| 欧美日韩精品一区二区| 性做久久久久久免费观看| 精品美女在线观看| 91精品国产福利| 欧美老肥妇做.爰bbww视频| 欧美性色综合网| 欧美色涩在线第一页| 欧美色网一区二区| 欧美日韩中文字幕精品| 蜜臀av一级做a爰片久久| 久久久久国产一区二区三区四区| 99综合影院在线| 奇米综合一区二区三区精品视频| 亚洲国产一区二区视频| 亚洲国产精品久久久久婷婷884| 欧美猛男男办公室激情| 欧美精品成人一区二区三区四区| 日韩午夜在线影院| 久久综合色综合88| 国产欧美日韩久久| 91久久精品一区二区三| 在线观看av一区二区| 日韩激情一二三区| 日本aⅴ精品一区二区三区 | 日韩欧美视频一区| 欧美videofree性高清杂交| 成人美女在线视频| 91福利国产成人精品照片| 欧美日韩一区二区在线观看 | 精品国产一区二区三区四区四| 国产在线看一区| 亚洲一区二三区| 奇米色777欧美一区二区| 国产综合久久久久久久久久久久| 色婷婷久久久综合中文字幕 | 国产成人av一区二区| 日本美女一区二区| 伊人夜夜躁av伊人久久| 婷婷综合另类小说色区| 国产一区在线视频| 成人永久免费视频| 成人一级黄色片| 欧美亚日韩国产aⅴ精品中极品| 欧美不卡在线视频| 91精品国产91久久久久久一区二区| 日韩美一区二区三区| 国产视频一区在线观看| 亚洲一区二区三区小说| 国产精品人人做人人爽人人添| 亚洲精品中文在线| 国产欧美日韩在线视频| 欧美成人精品1314www| 亚洲免费在线看| 久久超碰97中文字幕| 91在线免费视频观看| 国产精品一区免费视频| 日韩av一级片| 99re成人精品视频| 日韩欧美一级特黄在线播放| 欧美大片在线观看一区二区| 综合激情网...| 国产精品一区二区不卡| 日韩福利电影在线观看| 色婷婷综合激情| 91精品国产美女浴室洗澡无遮挡| 亚洲一区二区三区四区在线观看 | 一区二区三区精品久久久| 国产一区二区美女| 美腿丝袜亚洲三区| 欧美在线观看禁18| 亚洲一区二区精品视频| 亚洲aⅴ怡春院| 一区二区三区四区视频精品免费 | 日韩欧美一级特黄在线播放| 91看片淫黄大片一级在线观看| www.欧美日韩国产在线| 99精品视频中文字幕| 26uuu成人网一区二区三区|