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

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

?? ibmhmc.c

?? 在LINUX下實現(xiàn)HA的源代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * Stonith module for IBM pSeries Hardware Management Console (HMC) * * Author: Huang Zhen <zhenh@cn.ibm.com> * Support for HMC V4+ added by Dave Blaschke <debltc@us.ibm.com> * * Copyright (c) 2004 International Business Machines * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * *//* * * This code has been tested in following environment: * *	Hardware Management Console (HMC): Release 3, Version 2.4 *	- Both FullSystemPartition and LPAR Partition: *		- p630 7028-6C4 two LPAR partitions *		- p650 7038-6M2 one LPAR partition and FullSystemPartition * *	Hardware Management Console (HMC): Version 4, Release 2.1 *	- OP720 1000-6CA three LPAR partitions * *	Note:  Only SSH access to the HMC devices are supported. * * This command would make a nice status command: * *	lshmc -r -F ssh * * The following V3 command will get the list of systems we control and their  * mode: * *	lssyscfg -r sys -F name:mode --all * *		0 indicates full system partition *	      255 indicates the system is partitioned * * The following V4 command will get the list of systems we control: * *	lssyscfg -r sys -F name * * The following V3 command will get the list of partitions for a given managed * system running partitioned: * *	lssyscfg -m managed-system -r lpar -F name --all * *	Note that we should probably only consider partitions whose boot mode *	is normal (1).  (that's my guess, anyway...) * * The following V4 command will get the list of partitions for a given managed * system running partitioned: * *	lssyscfg -m managed-system -r lpar -F name * * The following V3 commands provide the reset actions: * *	FULL SYSTEM: *	  on:	chsysstate -m %1 -r sys -o on -n %1 -c full *	  off:	chsysstate -m %1 -r sys -o off -n %1 -c full -b norm *	  reset:chsysstate -m %1 -r sys -o reset -n %1 -c full -b norm * *	Partitioned SYSTEM: *	  on:	chsysstate -m %1 -r lpar -o on -n %2 *	  off:	reset_partition -m %1 -p %2 -t hard *	  reset:do off action above, followed by on action... * *	where %1 is managed-system, %2 is-lpar name * * The following V4 commands provide the reset actions: * *	  on:	chsysstate -m %1 -r lpar -o on -n %2 -f %3 *	  off:	chsysstate -m %1 -r lpar -o shutdown -n %2 --immed *	  reset:chsysstate -m %1 -r lpar -o shutdown -n %2 --immed --restart * *	where %1 is managed-system, %2 is lpar-name, %3 is profile-name * * Of course, to do all this, we need to track which partition name goes with * which managed system's name, and which systems on the HMC are partitioned * and which ones aren't... */ #include <portability.h>#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <string.h>#include <errno.h>#include <libintl.h>#include <sys/wait.h>#include <glib.h>#include <stonith/stonith.h>#include <pils/plugin.h>#ifndef	SSH_CMD#	define SSH_CMD	"ssh"#endif#ifndef	HMCROOT#	define HMCROOT	"hscroot"#endif#define PIL_PLUGINTYPE          STONITH_TYPE#define PIL_PLUGINTYPE_S        STONITH_TYPE_S#define PIL_PLUGIN              ibmhmc#define PIL_PLUGIN_S            "ibmhmc"#define PIL_PLUGINLICENSE 	LICENSE_LGPL#define PIL_PLUGINLICENSEURL 	URL_LGPL#define LOG			PluginImports->log#define MALLOC			PluginImports->alloc#define STRDUP  		PluginImports->mstrdup#define FREE			PluginImports->mfree#define EXPECT_TOK		OurImports->ExpectToken#define STARTPROC		OurImports->StartProcess#define MAX_HOST_NAME_LEN	(256*4)#define MAX_CMD_LEN		1024#define FULLSYSTEMPARTITION	"FullSystemPartition"#define MAX_POWERON_RETRY	10#define WHITESPACE		" \t\n\r\f"#define STATE_UNKNOWN		-1#define STATE_OFF		0#define STATE_ON		1#define STATE_INVALID		2#define HMCURL	"http://publib-b.boulder.ibm.com/Redbooks.nsf/RedbookAbstracts/SG247038.html"static void *		ibmhmc_new(void);static void		ibmhmc_destroy(Stonith *);static int		ibmhmc_set_config_file(Stonith *, const char * cfgname);static int		ibmhmc_set_config_info(Stonith *, const char * info);static const char *	ibmhmc_getinfo(Stonith * s, int InfoType);static int		ibmhmc_status(Stonith * );static int		ibmhmc_reset_req(Stonith* s,int request,const char* host);static char **		ibmhmc_hostlist(Stonith  *);static void		ibmhmc_free_hostlist(char **);static void		ibmhmc_closepi(PILPlugin*pi);static PIL_rc		ibmhmc_closeintf(PILInterface* pi, void* pd);static struct stonith_ops ibmhmcOps ={	ibmhmc_new,		/* Create new STONITH object	*/	ibmhmc_destroy,		/* Destroy STONITH object	*/	ibmhmc_set_config_file,	/* set configuration from file	*/	ibmhmc_set_config_info,	/* Get configuration from file	*/	ibmhmc_getinfo,		/* Return STONITH info string	*/	ibmhmc_status,		/* Return STONITH device status	*/	ibmhmc_reset_req,	/* Request a reset */	ibmhmc_hostlist,	/* Return list of supported hosts */	ibmhmc_free_hostlist	/* free above list */};PIL_PLUGIN_BOILERPLATE("1.0", Debug, ibmhmc_closepi);static const PILPluginImports*  PluginImports;static PILPlugin*               OurPlugin;static PILInterface*		OurInterface;static StonithImports*		OurImports;static void*			interfprivate;PIL_rcPIL_PLUGIN_INIT(PILPlugin*us, const PILPluginImports* imports);PIL_rcPIL_PLUGIN_INIT(PILPlugin*us, const PILPluginImports* imports){	/* Force the compiler to do a little type checking */	(void)(PILPluginInitFun)PIL_PLUGIN_INIT;	PluginImports = imports;	OurPlugin = us;	/* Register ourself as a plugin */	imports->register_plugin(us, &OurPIExports);  	/*  Register our interface implementation */ 	return imports->register_interface(us, PIL_PLUGINTYPE_S	,	PIL_PLUGIN_S	,	&ibmhmcOps	,	ibmhmc_closeintf		/*close */	,	&OurInterface	,	(void*)&OurImports	,	&interfprivate); }struct HMCDevice {		const char *		HMCid;	GList*		 	hostlist;	char *			hmc;	int			hmcver;	char **			mansyspats;};static const char * HMCid = 	"HMCDevice-Stonith";static const char * NOTibmhmcID =	"HMC device has been destroyed";static int get_hmc_hostlist(struct HMCDevice* dev);static void free_hmc_hostlist(struct HMCDevice* dev);static int get_hmc_mansyspats(struct HMCDevice* dev, const char* mansyspats);static void free_hmc_mansyspats(struct HMCDevice* dev);static char* do_shell_cmd(const char* cmd, int* status);static int check_hmc_status(const char* hmc);static int get_num_tokens(char *str);static gboolean pattern_match(char **patterns, char *string);#define	ISHMCDEV(i)	(((i) != NULL && (i)->pinfo != NULL)	\	&& ((struct HMCDevice *)(i->pinfo))->HMCid == HMCid)#ifndef MALLOCT	#define MALLOCT(t)	((t *)(MALLOC(sizeof(t)))) #endif#define N_(text)		(text)#define _(text)			dgettext(ST_TEXTDOMAIN, text)static voidibmhmc_closepi(PILPlugin*pi){}static PIL_rcibmhmc_closeintf(PILInterface* pi, void* pd){	return PIL_OK;}static intibmhmc_status(Stonith  *s){	struct HMCDevice* dev;	if (!ISHMCDEV(s)) {		PILCallLog(LOG, PIL_CRIT, "invalid argument to %s"		,	__FUNCTION__);		return(S_OOPS);	}	dev = (struct HMCDevice*) s->pinfo;		return check_hmc_status(dev->hmc);}/* *	Return the list of hosts configured for this HMC device */static char **ibmhmc_hostlist(Stonith  *s){	int j;	struct HMCDevice* dev;	int numnames = 0;	char** ret = NULL;	GList* node = NULL;	if (!ISHMCDEV(s)) {		PILCallLog(LOG, PIL_CRIT, "invalid argument to %s"		,	__FUNCTION__);		return(NULL);	}	dev = (struct HMCDevice*) s->pinfo;	/* refresh the hostlist */	free_hmc_hostlist(dev);	if (S_OK != get_hmc_hostlist(dev)){		PILCallLog(LOG, PIL_CRIT, "unable to obtain list of managed "		" systems in %s", __FUNCTION__);		return NULL;	}	numnames = g_list_length(dev->hostlist);	if (numnames < 0) {		PILCallLog(LOG, PIL_CRIT, "unconfigured stonith object in %s"		,	__FUNCTION__);		return(NULL);	}	ret = (char **)MALLOC((numnames+1)*sizeof(char*));	if (ret == NULL) {		PILCallLog(LOG, PIL_CRIT, "out of memory");		return ret;	}	memset(ret, 0, (numnames+1)*sizeof(char*));	for (node = g_list_first(dev->hostlist), j = 0	;	NULL != node	;	j++, node = g_list_next(node))	{		char* host = strchr((char*)node->data, '/');		ret[j] = STRDUP(++host);	}	return ret;}static voidibmhmc_free_hostlist (char** hlist){	char** hl = hlist;	if (hl == NULL) {		return;	}	while (*hl) {		FREE(*hl);		*hl = NULL;		++hl;	}	FREE(hlist);	hlist = NULL;}/* *	Parse the config information, and stash it away... */static intibmhmc_parse_config_info(struct HMCDevice* dev, const char * info){	char get_hmcver[MAX_CMD_LEN];	char firstchar;	int firstnum;	char* output = NULL;	int status;	char *pch;	char *infocopy;		/* -p or -F option with args "ipaddr [managedsyspat]..." */	pch = infocopy = STRDUP(info);	if (pch == NULL) {		PILCallLog(LOG, PIL_CRIT, "out of memory");		return S_OOPS;	}	/* skip over ipaddr and null-terminate */	pch += strcspn(pch, WHITESPACE);	*pch = EOS;	/* skip over white-space up to next token */	pch++;	pch += strspn(pch, WHITESPACE);	if (get_hmc_mansyspats(dev, pch) != S_OK) {		FREE(infocopy);		return S_OOPS;	}	dev->hmc = STRDUP(infocopy);	FREE(infocopy);		/* check whether the HMC has ssh command enabled */	if (check_hmc_status(dev->hmc) != S_OK) {		PILCallLog(LOG, PIL_CRIT, "HMC %s does not have remote "		"command execution using the ssh facility enabled", dev->hmc);		return S_BADCONFIG;	}			/* get the HMC's version info */	snprintf(get_hmcver, MAX_CMD_LEN	,	SSH_CMD " -l " HMCROOT " %s lshmc -v | grep RM", dev->hmc);	if (Debug) {		PILCallLog(LOG, PIL_DEBUG, "%s: get_hmcver=%s"		,	__FUNCTION__, get_hmcver);	}	output = do_shell_cmd(get_hmcver, &status);	if (Debug) {		PILCallLog(LOG, PIL_DEBUG, "%s: output=%s\n", __FUNCTION__		, output ? output : "(nil)");	}	if (output == NULL) {		return S_BADCONFIG;	}			/* parse the HMC's version info (i.e. "*RM V4R2.1" or "*RM R3V2.6") */	if ((sscanf(output, "*RM %c%1d", &firstchar, &firstnum) == 2)	&& ((firstchar == 'V') || (firstchar == 'R'))) {		dev->hmcver = firstnum;		if(Debug){			PILCallLog(LOG, PIL_DEBUG, "%s: HMC %s version is %d"			,	__FUNCTION__, dev->hmc, dev->hmcver);		}	}else{		PILCallLog(LOG, PIL_CRIT, "%s: unable to determine HMC %s "		" version", __FUNCTION__, dev->hmc);		FREE(output);		return S_BADCONFIG;	}	FREE(output);	if (S_OK != get_hmc_hostlist(dev)){		PILCallLog(LOG, PIL_CRIT, "unable to obtain list of managed "		" systems in %s", __FUNCTION__);		return S_BADCONFIG;	}		return S_OK;}/* *	Reset the given host, and obey the request type. *	We should reset without power cycle for the non-partitioned case */static intibmhmc_reset_req(Stonith * s, int request, const char * host){	GList*			node = NULL;	struct HMCDevice*	dev = NULL;	char			off_cmd[MAX_CMD_LEN];	char			on_cmd[MAX_CMD_LEN];	char			reset_cmd[MAX_CMD_LEN];	gchar**			names = NULL;	int			i;	int			is_lpar = FALSE;	int			status;	char*			pch;	char*			output = NULL;	char			state_cmd[MAX_CMD_LEN];	int			state = STATE_UNKNOWN;		if (!ISHMCDEV(s) || (NULL == host)) {		PILCallLog(LOG, PIL_CRIT, "invalid argument to %s"		,	__FUNCTION__);		return(S_OOPS);	}		dev = (struct HMCDevice*) s->pinfo;	for (node = g_list_first(dev->hostlist)	;	NULL != node	;	node = g_list_next(node)) {		if(Debug){			PILCallLog(LOG, PIL_DEBUG, "%s: node->data=%s\n"			,	__FUNCTION__, (char*)node->data);		}			if ((pch = strchr((char*)node->data, '/')) != NULL		&&  0 == strcasecmp(++pch, host)) {			break;		}	}	if (!node) {		PILCallLog(LOG, PIL_CRIT		,	"Host %s is not configured in this STONITH module. "			"Please check your configuration information.", host);		return (S_OOPS);	}	names = g_strsplit((char*)node->data, "/", 2);	/* names[0] will be the name of managed system */	/* names[1] will be the name of the lpar partition */	if(Debug){		PILCallLog(LOG, PIL_DEBUG, "%s: names[0]=%s, names[1]=%s\n"		,	__FUNCTION__, names[0], names[1]);	}	if (dev->hmcver < 4) {		if (0 == strcasecmp(names[1], FULLSYSTEMPARTITION)) {			is_lpar = FALSE;					snprintf(off_cmd, MAX_CMD_LEN			,	SSH_CMD " -l " HMCROOT " %s chsysstate"			" -r sys -m %s -o off -n %s -c full"			,	dev->hmc, dev->hmc, names[0]);			snprintf(on_cmd, MAX_CMD_LEN			,	SSH_CMD " -l " HMCROOT " %s chsysstate"			" -r sys -m %s -o on -n %s -c full -b norm"			,	dev->hmc, names[0], names[0]);			snprintf(reset_cmd, MAX_CMD_LEN			,	SSH_CMD " -l " HMCROOT " %s chsysstate"			" -r sys -m %s -o reset -n %s -c full -b norm"			,	dev->hmc, names[0], names[0]);					*state_cmd = 0;		}else{			is_lpar = TRUE;					snprintf(off_cmd, MAX_CMD_LEN			,	SSH_CMD " -l " HMCROOT " %s reset_partition"			" -m %s -p %s -t hard"			,	dev->hmc, names[0], names[1]);			snprintf(on_cmd, MAX_CMD_LEN			,	SSH_CMD " -l " HMCROOT " %s chsysstate"			" -r lpar -m %s -o on -n %s"			,	dev->hmc, names[0], names[1]);			*reset_cmd = 0;			snprintf(state_cmd, MAX_CMD_LEN			,	SSH_CMD " -l " HMCROOT " %s lssyscfg"			" -r lpar -m %s -F state -n %s"			,	dev->hmc, names[0], names[1]);		}	}else{		is_lpar = TRUE;		snprintf(off_cmd, MAX_CMD_LEN		,	SSH_CMD " -l " HMCROOT " %s chsysstate"		" -m %s -r lpar -o shutdown -n \"%s\" --immed"		,	dev->hmc, names[0], names[1]);		snprintf(on_cmd, MAX_CMD_LEN		,	SSH_CMD " -l " HMCROOT " %s lssyscfg"		" -m %s -r lpar -F \"default_profile\""		" --filter \"lpar_names=%s\""		,	dev->hmc, names[0], names[1]);		output = do_shell_cmd(on_cmd, &status);		if (output == NULL) {			PILCallLog(LOG, PIL_CRIT, "command %s failed", on_cmd);			return (S_OOPS);		}		if ((pch = strchr(output, '\n')) != NULL) {			*pch = 0;		}		snprintf(on_cmd, MAX_CMD_LEN		,	SSH_CMD " -l " HMCROOT " %s chsysstate"		" -m %s -r lpar -o on -n %s -f %s"		,	dev->hmc, names[0], names[1], output);		FREE(output);		output = NULL;		snprintf(reset_cmd, MAX_CMD_LEN		,	SSH_CMD " -l " HMCROOT " %s chsysstate"		" -m %s -r lpar -o shutdown -n %s --immed --restart"		,	dev->hmc, names[0], names[1]);		snprintf(state_cmd, MAX_CMD_LEN		,	SSH_CMD " -l " HMCROOT " %s lssyscfg"		" -m %s -r lpar -F state --filter \"lpar_names=%s\""		,	dev->hmc, names[0], names[1]);	}	g_strfreev(names);	if(Debug){		LOG(PIL_DEBUG, "%s: off_cmd=%s, on_cmd=%s,"			"reset_cmd=%s, state_cmd=%s\n" 		,	__FUNCTION__, off_cmd, on_cmd, reset_cmd, state_cmd);	}	output = do_shell_cmd(state_cmd, &status);	if (output == NULL) {		PILCallLog(LOG, PIL_CRIT, "command %s failed", on_cmd);		return S_OOPS;	}	if ((pch = strchr(output, '\n')) != NULL) {		*pch = 0;	}	if (strcmp(output, "Running") == 0	|| strcmp(output, "Starting") == 0	|| strcmp(output, "Open Firmware") == 0) {		state = STATE_ON;	}else if (strcmp(output, "Shutting Down") == 0	|| strcmp(output, "Not Activated") == 0	|| strcmp(output, "Ready") == 0) {		state = STATE_OFF;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲视频香蕉人妖| 国产不卡在线一区| 国产一区二区三区在线观看免费视频 | 欧美日韩精品一区二区三区蜜桃| 精品国产伦理网| 亚洲成人免费视| 波多野结衣在线一区| 日韩欧美aaaaaa| 亚洲成av人片在www色猫咪| 成人久久18免费网站麻豆 | 欧美视频在线一区| 欧美高清在线一区二区| 久久国产精品无码网站| 欧美日韩高清一区二区不卡| 亚洲欧美日韩中文播放 | 人妖欧美一区二区| 欧美性三三影院| 亚洲精品一卡二卡| heyzo一本久久综合| 国产欧美日韩在线看| 国内外精品视频| 精品国产一区二区三区久久影院| 日本成人中文字幕在线视频| 欧美色爱综合网| 午夜精品久久久久久久99水蜜桃 | 日韩三级电影网址| 亚洲大片在线观看| 欧美午夜寂寞影院| 亚洲日本护士毛茸茸| 9久草视频在线视频精品| 国产精品麻豆99久久久久久| 高清不卡在线观看| 国产日韩视频一区二区三区| 国产高清无密码一区二区三区| 亚洲精品在线免费观看视频| 黄色资源网久久资源365| 久久无码av三级| 国产91高潮流白浆在线麻豆| 国产精品美女久久久久久久久久久 | 日韩一区二区精品| 日韩中文字幕区一区有砖一区| 欧美日精品一区视频| 秋霞国产午夜精品免费视频| 91麻豆精品久久久久蜜臀| 日本欧美一区二区在线观看| 精品国产第一区二区三区观看体验| 久久99久久99小草精品免视看| 欧美videos中文字幕| 国产精品一二三在| 亚洲私人影院在线观看| 欧美日韩亚洲综合在线| 美女性感视频久久| 国产精品麻豆久久久| 91国偷自产一区二区三区成为亚洲经典| 亚洲精品国产第一综合99久久 | 视频一区二区中文字幕| 欧美大片一区二区| 9久草视频在线视频精品| 亚洲1区2区3区视频| 亚洲精品一区二区三区香蕉| av电影在线观看一区| 日本视频中文字幕一区二区三区| 国产亚洲欧美色| 欧美午夜电影网| 国产中文一区二区三区| 亚洲免费av高清| 欧美一区二区啪啪| 成人黄色小视频| 婷婷激情综合网| 中文字幕巨乱亚洲| 日韩一区二区三区免费观看| 丁香六月综合激情| 秋霞成人午夜伦在线观看| 中文字幕免费一区| 日韩一区二区三区电影在线观看| 94-欧美-setu| 精品在线播放免费| 亚洲成av人片一区二区梦乃| 久久九九99视频| 制服丝袜激情欧洲亚洲| 成年人国产精品| 国产在线播放一区三区四| 亚洲一区二区三区精品在线| 国产色一区二区| 欧美一区在线视频| 色综合久久久久综合体桃花网| 精品一区二区在线观看| 亚洲3atv精品一区二区三区| 亚洲欧美自拍偷拍| 国产亚洲成aⅴ人片在线观看| 欧美区在线观看| 色久综合一二码| av在线一区二区| 国产夫妻精品视频| 国产在线不卡视频| 激情综合色综合久久综合| 男人的天堂久久精品| 亚洲综合丁香婷婷六月香| 一区二区中文视频| 国产拍欧美日韩视频二区| 精品免费国产二区三区| 欧美一区二区二区| 欧美精品乱码久久久久久| 欧美日韩精品系列| 欧美天堂一区二区三区| 欧美影院精品一区| 91成人在线免费观看| 色婷婷av一区| 色婷婷精品久久二区二区蜜臂av | 91精品综合久久久久久| 欧美视频第二页| 欧美私模裸体表演在线观看| 91久久人澡人人添人人爽欧美| 91丨porny丨户外露出| av激情综合网| 91国偷自产一区二区三区观看| 色视频欧美一区二区三区| 色94色欧美sute亚洲线路一久 | 成人动漫一区二区| 成人小视频在线| 99国产精品久| 91国偷自产一区二区三区成为亚洲经典 | 国产一区二区看久久| 韩国三级在线一区| 国产福利一区二区| 成人a免费在线看| 日本久久一区二区三区| 欧美视频完全免费看| 91精品蜜臀在线一区尤物| 精品久久久久久最新网址| 国产欧美1区2区3区| 亚洲人xxxx| 五月综合激情日本mⅴ| 美女视频黄 久久| 成人黄色av电影| 在线视频一区二区三| 日韩午夜av电影| 国产精品视频一二三| 亚洲综合色区另类av| 黄色小说综合网站| 91猫先生在线| 日韩欧美国产综合| 国产精品免费视频网站| 午夜免费久久看| 国产精品99久久久久久似苏梦涵| 日本乱人伦aⅴ精品| 日韩精品一区国产麻豆| 中文字幕在线不卡一区二区三区 | 一区二区三区电影在线播| 蜜臀av在线播放一区二区三区| 国产凹凸在线观看一区二区| 欧美性生活一区| 久久精品无码一区二区三区| 一区二区视频免费在线观看| 久久91精品久久久久久秒播| 日本高清不卡aⅴ免费网站| 精品福利av导航| 亚洲国产精品影院| 成人免费视频app| 欧美一区二区视频在线观看2020 | 免费成人在线网站| 99视频精品全部免费在线| 精品剧情v国产在线观看在线| 亚洲色欲色欲www在线观看| 韩国v欧美v日本v亚洲v| 欧美日韩国产一级片| 亚洲欧洲日韩av| 韩国成人福利片在线播放| 欧美人妖巨大在线| 亚洲欧美乱综合| 国产福利视频一区二区三区| 日韩你懂的在线播放| 亚洲一区二区在线观看视频 | 日韩写真欧美这视频| 亚洲人123区| caoporn国产一区二区| 久久综合999| 麻豆91小视频| 欧美久久久一区| 亚洲综合久久av| 色一情一乱一乱一91av| 一区二区中文视频| 成人一区二区在线观看| 久久影音资源网| 欧美aaaaa成人免费观看视频| 欧美精品在欧美一区二区少妇| 亚洲男同性恋视频| 99久久国产综合精品色伊 | 2014亚洲片线观看视频免费| 丝袜诱惑亚洲看片| 欧美欧美欧美欧美首页| 亚洲一区二区三区四区在线观看| 色综合色综合色综合色综合色综合 | 免费高清不卡av| 欧美一区二区播放| 麻豆免费精品视频| 精品va天堂亚洲国产| 韩国一区二区三区| 国产欧美日韩另类视频免费观看| 国产精品99久久久久久久vr |