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

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

?? tiny_tty.c

?? Linux設備驅動的經典教材, 該電子書是第三版,并附有全部配套代碼.
?? C
字號:
/* * Tiny TTY driver * * Copyright (C) 2002-2004 Greg Kroah-Hartman (greg@kroah.com) * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License as published by *	the Free Software Foundation, version 2 of the License. * * This driver shows how to create a minimal tty driver.  It does not rely on * any backing hardware, but creates a timer that emulates data being received * from some kind of hardware. */#include <linux/config.h>#include <linux/kernel.h>#include <linux/errno.h>#include <linux/init.h>#include <linux/module.h>#include <linux/slab.h>#include <linux/wait.h>#include <linux/tty.h>#include <linux/tty_driver.h>#include <linux/tty_flip.h>#include <linux/serial.h>#include <asm/uaccess.h>#define DRIVER_VERSION "v2.0"#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>"#define DRIVER_DESC "Tiny TTY driver"/* Module information */MODULE_AUTHOR( DRIVER_AUTHOR );MODULE_DESCRIPTION( DRIVER_DESC );MODULE_LICENSE("GPL");#define DELAY_TIME		HZ * 2	/* 2 seconds per character */#define TINY_DATA_CHARACTER	't'#define TINY_TTY_MAJOR		240	/* experimental range */#define TINY_TTY_MINORS		4	/* only have 4 devices */struct tiny_serial {	struct tty_struct	*tty;		/* pointer to the tty for this device */	int			open_count;	/* number of times this port has been opened */	struct semaphore	sem;		/* locks this structure */	struct timer_list	*timer;	/* for tiocmget and tiocmset functions */	int			msr;		/* MSR shadow */	int			mcr;		/* MCR shadow */	/* for ioctl fun */	struct serial_struct	serial;	wait_queue_head_t	wait;	struct async_icount	icount;};static struct tiny_serial *tiny_table[TINY_TTY_MINORS];	/* initially all NULL */static void tiny_timer(unsigned long timer_data){	struct tiny_serial *tiny = (struct tiny_serial *)timer_data;	struct tty_struct *tty;	int i;	char data[1] = {TINY_DATA_CHARACTER};	int data_size = 1;	if (!tiny)		return;	tty = tiny->tty;	/* send the data to the tty layer for users to read.  This doesn't	 * actually push the data through unless tty->low_latency is set */	for (i = 0; i < data_size; ++i) {		if (tty->flip.count >= TTY_FLIPBUF_SIZE)			tty_flip_buffer_push(tty);		tty_insert_flip_char(tty, data[i], TTY_NORMAL);	}	tty_flip_buffer_push(tty);	/* resubmit the timer again */	tiny->timer->expires = jiffies + DELAY_TIME;	add_timer(tiny->timer);}static int tiny_open(struct tty_struct *tty, struct file *file){	struct tiny_serial *tiny;	struct timer_list *timer;	int index;	/* initialize the pointer in case something fails */	tty->driver_data = NULL;	/* get the serial object associated with this tty pointer */	index = tty->index;	tiny = tiny_table[index];	if (tiny == NULL) {		/* first time accessing this device, let's create it */		tiny = kmalloc(sizeof(*tiny), GFP_KERNEL);		if (!tiny)			return -ENOMEM;		init_MUTEX(&tiny->sem);		tiny->open_count = 0;		tiny->timer = NULL;		tiny_table[index] = tiny;	}	down(&tiny->sem);	/* save our structure within the tty structure */	tty->driver_data = tiny;	tiny->tty = tty;	++tiny->open_count;	if (tiny->open_count == 1) {		/* this is the first time this port is opened */		/* do any hardware initialization needed here */		/* create our timer and submit it */		if (!tiny->timer) {			timer = kmalloc(sizeof(*timer), GFP_KERNEL);			if (!timer) {				up(&tiny->sem);				return -ENOMEM;			}			tiny->timer = timer;		}		tiny->timer->data = (unsigned long )tiny;		tiny->timer->expires = jiffies + DELAY_TIME;		tiny->timer->function = tiny_timer;		add_timer(tiny->timer);	}	up(&tiny->sem);	return 0;}static void do_close(struct tiny_serial *tiny){	down(&tiny->sem);	if (!tiny->open_count) {		/* port was never opened */		goto exit;	}	--tiny->open_count;	if (tiny->open_count <= 0) {		/* The port is being closed by the last user. */		/* Do any hardware specific stuff here */		/* shut down our timer */		del_timer(tiny->timer);	}exit:	up(&tiny->sem);}static void tiny_close(struct tty_struct *tty, struct file *file){	struct tiny_serial *tiny = tty->driver_data;	if (tiny)		do_close(tiny);}	static int tiny_write(struct tty_struct *tty, 		      const unsigned char *buffer, int count){	struct tiny_serial *tiny = tty->driver_data;	int i;	int retval = -EINVAL;	if (!tiny)		return -ENODEV;	down(&tiny->sem);	if (!tiny->open_count)		/* port was not opened */		goto exit;	/* fake sending the data out a hardware port by	 * writing it to the kernel debug log.	 */	printk(KERN_DEBUG "%s - ", __FUNCTION__);	for (i = 0; i < count; ++i)		printk("%02x ", buffer[i]);	printk("\n");		exit:	up(&tiny->sem);	return retval;}static int tiny_write_room(struct tty_struct *tty) {	struct tiny_serial *tiny = tty->driver_data;	int room = -EINVAL;	if (!tiny)		return -ENODEV;	down(&tiny->sem);		if (!tiny->open_count) {		/* port was not opened */		goto exit;	}	/* calculate how much room is left in the device */	room = 255;exit:	up(&tiny->sem);	return room;}#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))static void tiny_set_termios(struct tty_struct *tty, struct termios *old_termios){	unsigned int cflag;	cflag = tty->termios->c_cflag;	/* check that they really want us to change something */	if (old_termios) {		if ((cflag == old_termios->c_cflag) &&		    (RELEVANT_IFLAG(tty->termios->c_iflag) == 		     RELEVANT_IFLAG(old_termios->c_iflag))) {			printk(KERN_DEBUG " - nothing to change...\n");			return;		}	}	/* get the byte size */	switch (cflag & CSIZE) {		case CS5:			printk(KERN_DEBUG " - data bits = 5\n");			break;		case CS6:			printk(KERN_DEBUG " - data bits = 6\n");			break;		case CS7:			printk(KERN_DEBUG " - data bits = 7\n");			break;		default:		case CS8:			printk(KERN_DEBUG " - data bits = 8\n");			break;	}		/* determine the parity */	if (cflag & PARENB)		if (cflag & PARODD)			printk(KERN_DEBUG " - parity = odd\n");		else			printk(KERN_DEBUG " - parity = even\n");	else		printk(KERN_DEBUG " - parity = none\n");	/* figure out the stop bits requested */	if (cflag & CSTOPB)		printk(KERN_DEBUG " - stop bits = 2\n");	else		printk(KERN_DEBUG " - stop bits = 1\n");	/* figure out the hardware flow control settings */	if (cflag & CRTSCTS)		printk(KERN_DEBUG " - RTS/CTS is enabled\n");	else		printk(KERN_DEBUG " - RTS/CTS is disabled\n");		/* determine software flow control */	/* if we are implementing XON/XOFF, set the start and 	 * stop character in the device */	if (I_IXOFF(tty) || I_IXON(tty)) {		unsigned char stop_char  = STOP_CHAR(tty);		unsigned char start_char = START_CHAR(tty);		/* if we are implementing INBOUND XON/XOFF */		if (I_IXOFF(tty))			printk(KERN_DEBUG " - INBOUND XON/XOFF is enabled, "				"XON = %2x, XOFF = %2x", start_char, stop_char);		else			printk(KERN_DEBUG" - INBOUND XON/XOFF is disabled");		/* if we are implementing OUTBOUND XON/XOFF */		if (I_IXON(tty))			printk(KERN_DEBUG" - OUTBOUND XON/XOFF is enabled, "				"XON = %2x, XOFF = %2x", start_char, stop_char);		else			printk(KERN_DEBUG" - OUTBOUND XON/XOFF is disabled");	}	/* get the baud rate wanted */	printk(KERN_DEBUG " - baud rate = %d", tty_get_baud_rate(tty));}/* Our fake UART values */#define MCR_DTR		0x01#define MCR_RTS		0x02#define MCR_LOOP	0x04#define MSR_CTS		0x08#define MSR_CD		0x10#define MSR_RI		0x20#define MSR_DSR		0x40static int tiny_tiocmget(struct tty_struct *tty, struct file *file){	struct tiny_serial *tiny = tty->driver_data;	unsigned int result = 0;	unsigned int msr = tiny->msr;	unsigned int mcr = tiny->mcr;	result = ((mcr & MCR_DTR)  ? TIOCM_DTR  : 0) |	/* DTR is set */             ((mcr & MCR_RTS)  ? TIOCM_RTS  : 0) |	/* RTS is set */             ((mcr & MCR_LOOP) ? TIOCM_LOOP : 0) |	/* LOOP is set */             ((msr & MSR_CTS)  ? TIOCM_CTS  : 0) |	/* CTS is set */             ((msr & MSR_CD)   ? TIOCM_CAR  : 0) |	/* Carrier detect is set*/             ((msr & MSR_RI)   ? TIOCM_RI   : 0) |	/* Ring Indicator is set */             ((msr & MSR_DSR)  ? TIOCM_DSR  : 0);	/* DSR is set */	return result;}static int tiny_tiocmset(struct tty_struct *tty, struct file *file,                         unsigned int set, unsigned int clear){	struct tiny_serial *tiny = tty->driver_data;	unsigned int mcr = tiny->mcr;	if (set & TIOCM_RTS)		mcr |= MCR_RTS;	if (set & TIOCM_DTR)		mcr |= MCR_RTS;	if (clear & TIOCM_RTS)		mcr &= ~MCR_RTS;	if (clear & TIOCM_DTR)		mcr &= ~MCR_RTS;	/* set the new MCR value in the device */	tiny->mcr = mcr;	return 0;}static int tiny_read_proc(char *page, char **start, off_t off, int count,                          int *eof, void *data){	struct tiny_serial *tiny;	off_t begin = 0;	int length = 0;	int i;	length += sprintf(page, "tinyserinfo:1.0 driver:%s\n", DRIVER_VERSION);	for (i = 0; i < TINY_TTY_MINORS && length < PAGE_SIZE; ++i) {		tiny = tiny_table[i];		if (tiny == NULL)			continue;		length += sprintf(page+length, "%d\n", i);		if ((length + begin) > (off + count))			goto done;		if ((length + begin) < off) {			begin += length;			length = 0;		}	}	*eof = 1;done:	if (off >= (length + begin))		return 0;	*start = page + (off-begin);	return (count < begin+length-off) ? count : begin + length-off;}#define tiny_ioctl tiny_ioctl_tiocgserialstatic int tiny_ioctl(struct tty_struct *tty, struct file *file,                      unsigned int cmd, unsigned long arg){	struct tiny_serial *tiny = tty->driver_data;	if (cmd == TIOCGSERIAL) {		struct serial_struct tmp;		if (!arg)			return -EFAULT;		memset(&tmp, 0, sizeof(tmp));		tmp.type		= tiny->serial.type;		tmp.line		= tiny->serial.line;		tmp.port		= tiny->serial.port;		tmp.irq			= tiny->serial.irq;		tmp.flags		= ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;		tmp.xmit_fifo_size	= tiny->serial.xmit_fifo_size;		tmp.baud_base		= tiny->serial.baud_base;		tmp.close_delay		= 5*HZ;		tmp.closing_wait	= 30*HZ;		tmp.custom_divisor	= tiny->serial.custom_divisor;		tmp.hub6		= tiny->serial.hub6;		tmp.io_type		= tiny->serial.io_type;		if (copy_to_user((void __user *)arg, &tmp, sizeof(struct serial_struct)))			return -EFAULT;		return 0;	}	return -ENOIOCTLCMD;}#undef tiny_ioctl#define tiny_ioctl tiny_ioctl_tiocmiwaitstatic int tiny_ioctl(struct tty_struct *tty, struct file *file,                      unsigned int cmd, unsigned long arg){	struct tiny_serial *tiny = tty->driver_data;	if (cmd == TIOCMIWAIT) {		DECLARE_WAITQUEUE(wait, current);		struct async_icount cnow;		struct async_icount cprev;		cprev = tiny->icount;		while (1) {			add_wait_queue(&tiny->wait, &wait);			set_current_state(TASK_INTERRUPTIBLE);			schedule();			remove_wait_queue(&tiny->wait, &wait);			/* see if a signal woke us up */			if (signal_pending(current))				return -ERESTARTSYS;			cnow = tiny->icount;			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&			    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)				return -EIO; /* no change => error */			if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||			    ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||			    ((arg & TIOCM_CD)  && (cnow.dcd != cprev.dcd)) ||			    ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {				return 0;			}			cprev = cnow;		}	}	return -ENOIOCTLCMD;}#undef tiny_ioctl#define tiny_ioctl tiny_ioctl_tiocgicountstatic int tiny_ioctl(struct tty_struct *tty, struct file *file,                      unsigned int cmd, unsigned long arg){	struct tiny_serial *tiny = tty->driver_data;	if (cmd == TIOCGICOUNT) {		struct async_icount cnow = tiny->icount;		struct serial_icounter_struct icount;		icount.cts	= cnow.cts;		icount.dsr	= cnow.dsr;		icount.rng	= cnow.rng;		icount.dcd	= cnow.dcd;		icount.rx	= cnow.rx;		icount.tx	= cnow.tx;		icount.frame	= cnow.frame;		icount.overrun	= cnow.overrun;		icount.parity	= cnow.parity;		icount.brk	= cnow.brk;		icount.buf_overrun = cnow.buf_overrun;		if (copy_to_user((void __user *)arg, &icount, sizeof(icount)))			return -EFAULT;		return 0;	}	return -ENOIOCTLCMD;}#undef tiny_ioctl/* the real tiny_ioctl function.  The above is done to get the small functions in the book */static int tiny_ioctl(struct tty_struct *tty, struct file *file,                      unsigned int cmd, unsigned long arg){	switch (cmd) {	case TIOCGSERIAL:		return tiny_ioctl_tiocgserial(tty, file, cmd, arg);	case TIOCMIWAIT:		return tiny_ioctl_tiocmiwait(tty, file, cmd, arg);	case TIOCGICOUNT:		return tiny_ioctl_tiocgicount(tty, file, cmd, arg);	}	return -ENOIOCTLCMD;}static struct tty_operations serial_ops = {	.open = tiny_open,	.close = tiny_close,	.write = tiny_write,	.write_room = tiny_write_room,	.set_termios = tiny_set_termios,};static struct tty_driver *tiny_tty_driver;static int __init tiny_init(void){	int retval;	int i;	/* allocate the tty driver */	tiny_tty_driver = alloc_tty_driver(TINY_TTY_MINORS);	if (!tiny_tty_driver)		return -ENOMEM;	/* initialize the tty driver */	tiny_tty_driver->owner = THIS_MODULE;	tiny_tty_driver->driver_name = "tiny_tty";	tiny_tty_driver->name = "ttty";	tiny_tty_driver->devfs_name = "tts/ttty%d";	tiny_tty_driver->major = TINY_TTY_MAJOR,	tiny_tty_driver->type = TTY_DRIVER_TYPE_SERIAL,	tiny_tty_driver->subtype = SERIAL_TYPE_NORMAL,	tiny_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_NO_DEVFS,	tiny_tty_driver->init_termios = tty_std_termios;	tiny_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;	tty_set_operations(tiny_tty_driver, &serial_ops);	/* hack to make the book purty, yet still use these functions in the	 * real driver.  They really should be set up in the serial_ops	 * structure above... */	tiny_tty_driver->read_proc = tiny_read_proc;	tiny_tty_driver->tiocmget = tiny_tiocmget;	tiny_tty_driver->tiocmset = tiny_tiocmset;	tiny_tty_driver->ioctl = tiny_ioctl;	/* register the tty driver */	retval = tty_register_driver(tiny_tty_driver);	if (retval) {		printk(KERN_ERR "failed to register tiny tty driver");		put_tty_driver(tiny_tty_driver);		return retval;	}	for (i = 0; i < TINY_TTY_MINORS; ++i)		tty_register_device(tiny_tty_driver, i, NULL);	printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION);	return retval;}static void __exit tiny_exit(void){	struct tiny_serial *tiny;	int i;	for (i = 0; i < TINY_TTY_MINORS; ++i)		tty_unregister_device(tiny_tty_driver, i);	tty_unregister_driver(tiny_tty_driver);	/* shut down all of the timers and free the memory */	for (i = 0; i < TINY_TTY_MINORS; ++i) {		tiny = tiny_table[i];		if (tiny) {			/* close the port */			while (tiny->open_count)				do_close(tiny);			/* shut down our timer and free the memory */			del_timer(tiny->timer);			kfree(tiny->timer);			kfree(tiny);			tiny_table[i] = NULL;		}	}}module_init(tiny_init);module_exit(tiny_exit);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区三区黄视频| 欧洲国产伦久久久久久久| 91麻豆国产在线观看| 日韩精品一区二区三区在线| 亚洲乱码国产乱码精品精98午夜 | 亚洲精品欧美综合四区| 精品亚洲免费视频| 欧美三区在线视频| 亚洲视频狠狠干| 国产美女精品人人做人人爽| 欧美系列亚洲系列| 国产亚洲精品免费| 韩国成人福利片在线播放| 日韩一级片在线观看| 亚洲韩国一区二区三区| 在线观看一区日韩| 亚洲乱码国产乱码精品精小说| 成人免费视频国产在线观看| 久久免费看少妇高潮| 久久成人免费网站| 91麻豆精品91久久久久久清纯| 亚洲一级二级在线| 色屁屁一区二区| 一区二区三区日韩| 欧洲亚洲精品在线| 亚洲大片精品永久免费| 欧美日韩一区二区三区在线看 | 一本色道久久综合精品竹菊| 亚洲国产精品黑人久久久| 国产精品77777竹菊影视小说| 欧美一级片在线观看| 美女视频黄频大全不卡视频在线播放| 欧美精品99久久久**| 日韩精品电影一区亚洲| 在线91免费看| 国产综合色在线视频区| 国产日韩综合av| 成人a级免费电影| 中文字幕在线不卡视频| 色天使色偷偷av一区二区| 亚洲福利视频一区二区| 91精品国产91久久久久久最新毛片| 麻豆成人免费电影| 国产午夜三级一区二区三| 不卡大黄网站免费看| 一区二区三区欧美日韩| 欧美日本在线播放| 国内精品嫩模私拍在线| 中文字幕欧美日韩一区| 在线视频国内自拍亚洲视频| 调教+趴+乳夹+国产+精品| 精品国产一区二区三区四区四 | 国产一区二区三区在线观看精品 | 久久疯狂做爰流白浆xx| 亚洲国产电影在线观看| 欧美日韩视频在线一区二区 | 久久久久久久久免费| proumb性欧美在线观看| 亚洲成人精品影院| 久久五月婷婷丁香社区| 色综合天天视频在线观看| 裸体歌舞表演一区二区| 国产日韩一级二级三级| 欧美日韩精品综合在线| 国产成人久久精品77777最新版本| 亚洲另类春色国产| 精品国产一区二区三区忘忧草| aaa亚洲精品| 免费观看久久久4p| 亚洲另类中文字| 精品国产99国产精品| 欧洲一区二区三区在线| 国产精品69毛片高清亚洲| 天天影视网天天综合色在线播放| 久久久国产精品麻豆| 欧美日韩亚洲综合一区二区三区| 风间由美一区二区三区在线观看| 五月婷婷激情综合| 中文字幕一区二区在线观看| 欧美成va人片在线观看| 欧美午夜在线观看| 播五月开心婷婷综合| 日本成人在线电影网| 亚洲精品乱码久久久久久久久 | 国产电影精品久久禁18| 日日噜噜夜夜狠狠视频欧美人| 国产精品久久久久久亚洲毛片| 日韩欧美国产一区在线观看| 91国产成人在线| bt欧美亚洲午夜电影天堂| 韩国av一区二区三区| 蜜桃视频一区二区| 午夜精品一区二区三区免费视频| 中文字幕一区三区| 国产精品丝袜久久久久久app| 欧美成人性福生活免费看| 欧美性大战久久久久久久| 色综合久久久久综合体| 97久久精品人人澡人人爽| 福利电影一区二区| 成人一区在线看| 国产999精品久久久久久绿帽| 黄页视频在线91| 久久精品国产免费| 另类综合日韩欧美亚洲| 蜜桃视频在线一区| 久久99国产精品免费| 精品一区二区综合| 国产一区视频在线看| 久久99精品国产.久久久久 | 青青国产91久久久久久| 三级不卡在线观看| 日本一区中文字幕| 久久成人免费网站| 国产美女主播视频一区| 国产乱码一区二区三区| 成人性生交大合| 91视频免费看| 欧美性一二三区| 欧美一区二区性放荡片| 日韩免费福利电影在线观看| 精品国产制服丝袜高跟| 欧美国产视频在线| 一区二区三区高清在线| 日韩综合一区二区| 国内精品伊人久久久久av影院| 国产老肥熟一区二区三区| 成人网男人的天堂| 欧美在线小视频| 日韩欧美一二三区| 亚洲国产高清不卡| 一区二区三区国产精品| 久久狠狠亚洲综合| 99久精品国产| 777午夜精品视频在线播放| 26uuu欧美日本| 18成人在线视频| 日本aⅴ亚洲精品中文乱码| 亚洲女同女同女同女同女同69| 日产国产欧美视频一区精品| 天堂成人免费av电影一区| 日本久久一区二区| 欧美久久婷婷综合色| 精品国产一区二区亚洲人成毛片| 国产欧美视频一区二区三区| 亚洲欧美成aⅴ人在线观看| 三级亚洲高清视频| www.日韩大片| 91精品欧美福利在线观看 | 日本黄色一区二区| 日韩亚洲欧美高清| 中文字幕在线免费不卡| 日韩成人免费在线| 99re视频精品| 欧美精品一区二区久久婷婷| 亚洲欧洲制服丝袜| 国产精品18久久久久久久久久久久| 色婷婷狠狠综合| 国产片一区二区| 日韩福利视频网| 91片在线免费观看| 国产亚洲一区二区三区四区| 午夜视黄欧洲亚洲| av一本久道久久综合久久鬼色| 欧美日韩精品综合在线| 日本免费在线视频不卡一不卡二| 国产福利91精品一区二区三区| 久久欧美中文字幕| 日韩黄色片在线观看| 91视频在线观看| 亚洲国产成人私人影院tom| 久久精品理论片| 91精品国产综合久久久蜜臀图片| 亚洲欧美一区二区三区孕妇| 国产91精品免费| 精品成人在线观看| 另类小说综合欧美亚洲| 欧美日韩一区二区三区视频| 亚洲欧美日韩系列| 97国产精品videossex| 久久久蜜桃精品| 国产麻豆精品在线观看| 日韩免费观看2025年上映的电影| 亚洲一区二区在线视频| 色婷婷综合久久久久中文| 国产精品国产精品国产专区不蜜 | 亚洲一区二区欧美| 99热在这里有精品免费| 中文字幕免费不卡在线| 国产 欧美在线| 国产色综合久久| 国产不卡视频在线播放| 欧美精品一二三四| 在线欧美日韩精品| 亚洲美腿欧美偷拍| 色狠狠综合天天综合综合| 国产午夜精品美女毛片视频| 国产乱国产乱300精品| 久久久不卡影院| 成人高清视频在线|