3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人文社科 > 生活经验 >内容正文

生活经验

JDK源码分析 NIO实现

發布時間:2023/11/27 生活经验 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JDK源码分析 NIO实现 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

總列表:http://hg.openjdk.java.net/

小版本:http://hg.openjdk.java.net/jdk8u

jdk:http://hg.openjdk.java.net/jdk8u/jdk8u60/file/d8f4022fe0cd

hotspot:http://hg.openjdk.java.net/jdk8u/jdk8u60/hotspot/file/37240c1019fd

調用本地native方法

package sun.nio.ch;
public class IOUtil {
...
public static native void configureBlocking(FileDescriptor var0, boolean var1) throws IOException;

對應jdk文件位置:

https://blog.csdn.net/wangyangzhizhou/article/details/42613273?

https://www.cnblogs.com/binarylei/p/11142083.html

?

EPoll.c

JNIEXPORT jint JNICALL
Java_sun_nio_ch_EPoll_epollWait(JNIEnv *env, jclass c,jint epfd, jlong address, jint numfds)
{struct epoll_event *events = jlong_to_ptr(address);int res;RESTARTABLE(epoll_wait(epfd, events, numfds, -1), res);if (res < 0) {JNU_ThrowIOExceptionWithLastError(env, "epoll_wait failed");}return res;
}

?

這種情況在同一層可以省略EPoll,否則是找不到的

package sun.nio.ch
class EPollArrayWrapper{private native int epollCreate();private native void epollCtl(int epfd, int opcode, int fd, int events);private native int epollWait(long pollAddress, int numfds, long timeout,int epfd) throws IOException;private static native int sizeofEPollEvent();private static native int offsetofData();private static native void interrupt(int fd);private static native void init();}
void initInterrupt(int fd0, int fd1) {outgoingInterruptFD = fd1;incomingInterruptFD = fd0;epollCtl(epfd, EPOLL_CTL_ADD, fd0, EPOLLIN);}int poll(long timeout) throws IOException {updateRegistrations();updated = epollWait(pollArrayAddress, NUM_EPOLLEVENTS, timeout, epfd);for (int i=0; i<updated; i++) {if (getDescriptor(i) == incomingInterruptFD) {interruptedIndex = i;interrupted = true;break;}}return updated;}

?

調用方

  package sun.nio.ch;
class EPollSelectorImpl{/*** Package private constructor called by factory method in* the abstract superclass Selector.*/EPollSelectorImpl(SelectorProvider sp) throws IOException {super(sp);long pipeFds = IOUtil.makePipe(false);fd0 = (int) (pipeFds >>> 32);fd1 = (int) pipeFds;pollWrapper = new EPollArrayWrapper();pollWrapper.initInterrupt(fd0, fd1);fdToKey = new HashMap<>();}protected int doSelect(long timeout) throws IOException {if (closed)throw new ClosedSelectorException();processDeregisterQueue();try {begin();pollWrapper.poll(timeout);} finally {end();}processDeregisterQueue();int numKeysUpdated = updateSelectedKeys();if (pollWrapper.interrupted()) {// Clear the wakeup pipepollWrapper.putEventOps(pollWrapper.interruptedIndex(), 0);synchronized (interruptLock) {pollWrapper.clearInterrupted();IOUtil.drain(fd0);interruptTriggered = false;}}return numKeysUpdated;}
}

https://www.cnblogs.com/Jack-Blog/p/12394487.html

?

注意:epoll_wait在 \glibc-2.31\sysdeps\unix\sysv\linux\sys\epoll.h

glibc是gnu發布的libc庫,也即c運行庫。glibc是linux 系統中最底層的api(應用程序開發接口),幾乎其它任何的運行庫都會倚賴于glibc。

/* Copyright (C) 2002-2020 Free Software Foundation, Inc.This file is part of the GNU C Library.The GNU C Library is free software; you can redistribute it and/ormodify it under the terms of the GNU Lesser General PublicLicense as published by the Free Software Foundation; eitherversion 2.1 of the License, or (at your option) any later version.The GNU C Library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNULesser General Public License for more details.You should have received a copy of the GNU Lesser General PublicLicense along with the GNU C Library; if not, see<https://www.gnu.org/licenses/>.  */#ifndef	_SYS_EPOLL_H
#define	_SYS_EPOLL_H	1#include <stdint.h>
#include <sys/types.h>#include <bits/types/sigset_t.h>/* Get the platform-dependent flags.  */
#include <bits/epoll.h>#ifndef __EPOLL_PACKED
# define __EPOLL_PACKED
#endifenum EPOLL_EVENTS{EPOLLIN = 0x001,
#define EPOLLIN EPOLLINEPOLLPRI = 0x002,
#define EPOLLPRI EPOLLPRIEPOLLOUT = 0x004,
#define EPOLLOUT EPOLLOUTEPOLLRDNORM = 0x040,
#define EPOLLRDNORM EPOLLRDNORMEPOLLRDBAND = 0x080,
#define EPOLLRDBAND EPOLLRDBANDEPOLLWRNORM = 0x100,
#define EPOLLWRNORM EPOLLWRNORMEPOLLWRBAND = 0x200,
#define EPOLLWRBAND EPOLLWRBANDEPOLLMSG = 0x400,
#define EPOLLMSG EPOLLMSGEPOLLERR = 0x008,
#define EPOLLERR EPOLLERREPOLLHUP = 0x010,
#define EPOLLHUP EPOLLHUPEPOLLRDHUP = 0x2000,
#define EPOLLRDHUP EPOLLRDHUPEPOLLEXCLUSIVE = 1u << 28,
#define EPOLLEXCLUSIVE EPOLLEXCLUSIVEEPOLLWAKEUP = 1u << 29,
#define EPOLLWAKEUP EPOLLWAKEUPEPOLLONESHOT = 1u << 30,
#define EPOLLONESHOT EPOLLONESHOTEPOLLET = 1u << 31
#define EPOLLET EPOLLET};/* Valid opcodes ( "op" parameter ) to issue to epoll_ctl().  */
#define EPOLL_CTL_ADD 1	/* Add a file descriptor to the interface.  */
#define EPOLL_CTL_DEL 2	/* Remove a file descriptor from the interface.  */
#define EPOLL_CTL_MOD 3	/* Change file descriptor epoll_event structure.  */typedef union epoll_data
{void *ptr;int fd;uint32_t u32;uint64_t u64;
} epoll_data_t;struct epoll_event
{uint32_t events;	/* Epoll events */epoll_data_t data;	/* User data variable */
} __EPOLL_PACKED;__BEGIN_DECLS/* Creates an epoll instance.  Returns an fd for the new instance.The "size" parameter is a hint specifying the number of filedescriptors to be associated with the new instance.  The fdreturned by epoll_create() should be closed with close().  */
extern int epoll_create (int __size) __THROW;/* Same as epoll_create but with an FLAGS parameter.  The unused SIZEparameter has been dropped.  */
extern int epoll_create1 (int __flags) __THROW;/* Manipulate an epoll instance "epfd". Returns 0 in case of success,-1 in case of error ( the "errno" variable will contain thespecific error code ) The "op" parameter is one of the EPOLL_CTL_*constants defined above. The "fd" parameter is the target of theoperation. The "event" parameter describes which events the calleris interested in and any associated user data.  */
extern int epoll_ctl (int __epfd, int __op, int __fd,struct epoll_event *__event) __THROW;/* Wait for events on an epoll instance "epfd". Returns the number oftriggered events returned in "events" buffer. Or -1 in case oferror with the "errno" variable set to the specific error code. The"events" parameter is a buffer that will contain triggeredevents. The "maxevents" is the maximum number of events to bereturned ( usually size of "events" ). The "timeout" parameterspecifies the maximum wait time in milliseconds (-1 == infinite).This function is a cancellation point and therefore not marked with__THROW.  */
extern int epoll_wait (int __epfd, struct epoll_event *__events,int __maxevents, int __timeout);/* Same as epoll_wait, but the thread's signal mask is temporarilyand atomically replaced with the one provided as parameter.This function is a cancellation point and therefore not marked with__THROW.  */
extern int epoll_pwait (int __epfd, struct epoll_event *__events,int __maxevents, int __timeout,const __sigset_t *__ss);__END_DECLS#endif /* sys/epoll.h */

?

Epoll實現機制:

epoll fd有一個私有的struct eventpoll,它記錄哪一個fd注冊到了epfd上。

eventpoll?同樣有一個等待隊列,記錄所有等待的線程。還有一個預備好的fd列表,這些fd可以進行讀或寫。

相關內核實現代碼在fs/eventpoll.c

https://github.com/torvalds/linux/blob/master/fs/eventpoll.c

判斷是否tcp有激活事件:net/ipv4/tcp.c:tcp_poll函數

?

/**  fs/eventpoll.c (Efficient event retrieval implementation)*  Copyright (C) 2001,...,2009	 Davide Libenzi**  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; either version 2 of the License, or*  (at your option) any later version.**  Davide Libenzi <davidel@xmailserver.org>**/#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/signal.h>
#include <linux/errno.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/poll.h>
#include <linux/string.h>
#include <linux/list.h>
#include <linux/hash.h>
#include <linux/spinlock.h>
#include <linux/syscalls.h>
#include <linux/rbtree.h>
#include <linux/wait.h>
#include <linux/eventpoll.h>
#include <linux/mount.h>
#include <linux/bitops.h>
#include <linux/mutex.h>
#include <linux/anon_inodes.h>
#include <linux/device.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/mman.h>
#include <linux/atomic.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/compat.h>/** LOCKING:* There are three level of locking required by epoll :** 1) epmutex (mutex)* 2) ep->mtx (mutex)* 3) ep->lock (spinlock)** The acquire order is the one listed above, from 1 to 3.* We need a spinlock (ep->lock) because we manipulate objects* from inside the poll callback, that might be triggered from* a wake_up() that in turn might be called from IRQ context.* So we can't sleep inside the poll callback and hence we need* a spinlock. During the event transfer loop (from kernel to* user space) we could end up sleeping due a copy_to_user(), so* we need a lock that will allow us to sleep. This lock is a* mutex (ep->mtx). It is acquired during the event transfer loop,* during epoll_ctl(EPOLL_CTL_DEL) and during eventpoll_release_file().* Then we also need a global mutex to serialize eventpoll_release_file()* and ep_free().* This mutex is acquired by ep_free() during the epoll file* cleanup path and it is also acquired by eventpoll_release_file()* if a file has been pushed inside an epoll set and it is then* close()d without a previous call to epoll_ctl(EPOLL_CTL_DEL).* It is also acquired when inserting an epoll fd onto another epoll* fd. We do this so that we walk the epoll tree and ensure that this* insertion does not create a cycle of epoll file descriptors, which* could lead to deadlock. We need a global mutex to prevent two* simultaneous inserts (A into B and B into A) from racing and* constructing a cycle without either insert observing that it is* going to.* It is necessary to acquire multiple "ep->mtx"es at once in the* case when one epoll fd is added to another. In this case, we* always acquire the locks in the order of nesting (i.e. after* epoll_ctl(e1, EPOLL_CTL_ADD, e2), e1->mtx will always be acquired* before e2->mtx). Since we disallow cycles of epoll file* descriptors, this ensures that the mutexes are well-ordered. In* order to communicate this nesting to lockdep, when walking a tree* of epoll file descriptors, we use the current recursion depth as* the lockdep subkey.* It is possible to drop the "ep->mtx" and to use the global* mutex "epmutex" (together with "ep->lock") to have it working,* but having "ep->mtx" will make the interface more scalable.* Events that require holding "epmutex" are very rare, while for* normal operations the epoll private "ep->mtx" will guarantee* a better scalability.*//* Epoll private bits inside the event mask */
#define EP_PRIVATE_BITS (EPOLLWAKEUP | EPOLLONESHOT | EPOLLET)/* Maximum number of nesting allowed inside epoll sets */
#define EP_MAX_NESTS 4#define EP_MAX_EVENTS (INT_MAX / sizeof(struct epoll_event))#define EP_UNACTIVE_PTR ((void *) -1L)#define EP_ITEM_COST (sizeof(struct epitem) + sizeof(struct eppoll_entry))struct epoll_filefd {struct file *file;int fd;
} __packed;/** Structure used to track possible nested calls, for too deep recursions* and loop cycles.*/
struct nested_call_node {struct list_head llink;void *cookie;void *ctx;
};/** This structure is used as collector for nested calls, to check for* maximum recursion dept and loop cycles.*/
struct nested_calls {struct list_head tasks_call_list;spinlock_t lock;
};/** Each file descriptor added to the eventpoll interface will* have an entry of this type linked to the "rbr" RB tree.* Avoid increasing the size of this struct, there can be many thousands* of these on a server and we do not want this to take another cache line.*/
struct epitem {/* RB tree node used to link this structure to the eventpoll RB tree */struct rb_node rbn;/* List header used to link this structure to the eventpoll ready list */struct list_head rdllink;/** Works together "struct eventpoll"->ovflist in keeping the* single linked chain of items.*/struct epitem *next;/* The file descriptor information this item refers to */struct epoll_filefd ffd;/* Number of active wait queue attached to poll operations */int nwait;/* List containing poll wait queues */struct list_head pwqlist;/* The "container" of this item */struct eventpoll *ep;/* List header used to link this item to the "struct file" items list */struct list_head fllink;/* wakeup_source used when EPOLLWAKEUP is set */struct wakeup_source __rcu *ws;/* The structure that describe the interested events and the source fd */struct epoll_event event;
};/** This structure is stored inside the "private_data" member of the file* structure and represents the main data structure for the eventpoll* interface.*/
struct eventpoll {/* Protect the access to this structure */spinlock_t lock;/** This mutex is used to ensure that files are not removed* while epoll is using them. This is held during the event* collection loop, the file cleanup path, the epoll file exit* code and the ctl operations.*/struct mutex mtx;/* Wait queue used by sys_epoll_wait() */wait_queue_head_t wq;/* Wait queue used by file->poll() */wait_queue_head_t poll_wait;/* List of ready file descriptors */struct list_head rdllist;/* RB tree root used to store monitored fd structs */struct rb_root rbr;/** This is a single linked list that chains all the "struct epitem" that* happened while transferring ready events to userspace w/out* holding ->lock.*/struct epitem *ovflist;/* wakeup_source used when ep_scan_ready_list is running */struct wakeup_source *ws;/* The user that created the eventpoll descriptor */struct user_struct *user;struct file *file;/* used to optimize loop detection check */int visited;struct list_head visited_list_link;
};/* Wait structure used by the poll hooks */
struct eppoll_entry {/* List header used to link this structure to the "struct epitem" */struct list_head llink;/* The "base" pointer is set to the container "struct epitem" */struct epitem *base;/** Wait queue item that will be linked to the target file wait* queue head.*/wait_queue_t wait;/* The wait queue head that linked the "wait" wait queue item */wait_queue_head_t *whead;
};/* Wrapper struct used by poll queueing */
struct ep_pqueue {poll_table pt;struct epitem *epi;
};/* Used by the ep_send_events() function as callback private data */
struct ep_send_events_data {int maxevents;struct epoll_event __user *events;
};/** Configuration options available inside /proc/sys/fs/epoll/*/
/* Maximum number of epoll watched descriptors, per user */
static long max_user_watches __read_mostly;/** This mutex is used to serialize ep_free() and eventpoll_release_file().*/
static DEFINE_MUTEX(epmutex);/* Used to check for epoll file descriptor inclusion loops */
static struct nested_calls poll_loop_ncalls;/* Used for safe wake up implementation */
static struct nested_calls poll_safewake_ncalls;/* Used to call file's f_op->poll() under the nested calls boundaries */
static struct nested_calls poll_readywalk_ncalls;/* Slab cache used to allocate "struct epitem" */
static struct kmem_cache *epi_cache __read_mostly;/* Slab cache used to allocate "struct eppoll_entry" */
static struct kmem_cache *pwq_cache __read_mostly;/* Visited nodes during ep_loop_check(), so we can unset them when we finish */
static LIST_HEAD(visited_list);/** List of files with newly added links, where we may need to limit the number* of emanating paths. Protected by the epmutex.*/
static LIST_HEAD(tfile_check_list);#ifdef CONFIG_SYSCTL#include <linux/sysctl.h>static long zero;
static long long_max = LONG_MAX;ctl_table epoll_table[] = {{.procname	= "max_user_watches",.data		= &max_user_watches,.maxlen		= sizeof(max_user_watches),.mode		= 0644,.proc_handler	= proc_doulongvec_minmax,.extra1		= &zero,.extra2		= &long_max,},{ }
};
#endif /* CONFIG_SYSCTL */static const struct file_operations eventpoll_fops;static inline int is_file_epoll(struct file *f)
{return f->f_op == &eventpoll_fops;
}/* Setup the structure that is used as key for the RB tree */
static inline void ep_set_ffd(struct epoll_filefd *ffd,struct file *file, int fd)
{ffd->file = file;ffd->fd = fd;
}/* Compare RB tree keys */
static inline int ep_cmp_ffd(struct epoll_filefd *p1,struct epoll_filefd *p2)
{return (p1->file > p2->file ? +1:(p1->file < p2->file ? -1 : p1->fd - p2->fd));
}/* Tells us if the item is currently linked */
static inline int ep_is_linked(struct list_head *p)
{return !list_empty(p);
}static inline struct eppoll_entry *ep_pwq_from_wait(wait_queue_t *p)
{return container_of(p, struct eppoll_entry, wait);
}/* Get the "struct epitem" from a wait queue pointer */
static inline struct epitem *ep_item_from_wait(wait_queue_t *p)
{return container_of(p, struct eppoll_entry, wait)->base;
}/* Get the "struct epitem" from an epoll queue wrapper */
static inline struct epitem *ep_item_from_epqueue(poll_table *p)
{return container_of(p, struct ep_pqueue, pt)->epi;
}/* Tells if the epoll_ctl(2) operation needs an event copy from userspace */
static inline int ep_op_has_event(int op)
{return op != EPOLL_CTL_DEL;
}/* Initialize the poll safe wake up structure */
static void ep_nested_calls_init(struct nested_calls *ncalls)
{INIT_LIST_HEAD(&ncalls->tasks_call_list);spin_lock_init(&ncalls->lock);
}/*** ep_events_available - Checks if ready events might be available.** @ep: Pointer to the eventpoll context.** Returns: Returns a value different than zero if ready events are available,*          or zero otherwise.*/
static inline int ep_events_available(struct eventpoll *ep)
{return !list_empty(&ep->rdllist) || ep->ovflist != EP_UNACTIVE_PTR;
}/*** ep_call_nested - Perform a bound (possibly) nested call, by checking*                  that the recursion limit is not exceeded, and that*                  the same nested call (by the meaning of same cookie) is*                  no re-entered.** @ncalls: Pointer to the nested_calls structure to be used for this call.* @max_nests: Maximum number of allowed nesting calls.* @nproc: Nested call core function pointer.* @priv: Opaque data to be passed to the @nproc callback.* @cookie: Cookie to be used to identify this nested call.* @ctx: This instance context.** Returns: Returns the code returned by the @nproc callback, or -1 if*          the maximum recursion limit has been exceeded.*/
static int ep_call_nested(struct nested_calls *ncalls, int max_nests,int (*nproc)(void *, void *, int), void *priv,void *cookie, void *ctx)
{int error, call_nests = 0;unsigned long flags;struct list_head *lsthead = &ncalls->tasks_call_list;struct nested_call_node *tncur;struct nested_call_node tnode;spin_lock_irqsave(&ncalls->lock, flags);/** Try to see if the current task is already inside this wakeup call.* We use a list here, since the population inside this set is always* very much limited.*/list_for_each_entry(tncur, lsthead, llink) {if (tncur->ctx == ctx &&(tncur->cookie == cookie || ++call_nests > max_nests)) {/** Ops ... loop detected or maximum nest level reached.* We abort this wake by breaking the cycle itself.*/error = -1;goto out_unlock;}}/* Add the current task and cookie to the list */tnode.ctx = ctx;tnode.cookie = cookie;list_add(&tnode.llink, lsthead);spin_unlock_irqrestore(&ncalls->lock, flags);/* Call the nested function */error = (*nproc)(priv, cookie, call_nests);/* Remove the current task from the list */spin_lock_irqsave(&ncalls->lock, flags);list_del(&tnode.llink);
out_unlock:spin_unlock_irqrestore(&ncalls->lock, flags);return error;
}/** As described in commit 0ccf831cb lockdep: annotate epoll* the use of wait queues used by epoll is done in a very controlled* manner. Wake ups can nest inside each other, but are never done* with the same locking. For example:**   dfd = socket(...);*   efd1 = epoll_create();*   efd2 = epoll_create();*   epoll_ctl(efd1, EPOLL_CTL_ADD, dfd, ...);*   epoll_ctl(efd2, EPOLL_CTL_ADD, efd1, ...);** When a packet arrives to the device underneath "dfd", the net code will* issue a wake_up() on its poll wake list. Epoll (efd1) has installed a* callback wakeup entry on that queue, and the wake_up() performed by the* "dfd" net code will end up in ep_poll_callback(). At this point epoll* (efd1) notices that it may have some event ready, so it needs to wake up* the waiters on its poll wait list (efd2). So it calls ep_poll_safewake()* that ends up in another wake_up(), after having checked about the* recursion constraints. That are, no more than EP_MAX_POLLWAKE_NESTS, to* avoid stack blasting.** When CONFIG_DEBUG_LOCK_ALLOC is enabled, make sure lockdep can handle* this special case of epoll.*/
#ifdef CONFIG_DEBUG_LOCK_ALLOC
static inline void ep_wake_up_nested(wait_queue_head_t *wqueue,unsigned long events, int subclass)
{unsigned long flags;spin_lock_irqsave_nested(&wqueue->lock, flags, subclass);wake_up_locked_poll(wqueue, events);spin_unlock_irqrestore(&wqueue->lock, flags);
}
#else
static inline void ep_wake_up_nested(wait_queue_head_t *wqueue,unsigned long events, int subclass)
{wake_up_poll(wqueue, events);
}
#endifstatic int ep_poll_wakeup_proc(void *priv, void *cookie, int call_nests)
{ep_wake_up_nested((wait_queue_head_t *) cookie, POLLIN,1 + call_nests);return 0;
}/** Perform a safe wake up of the poll wait list. The problem is that* with the new callback'd wake up system, it is possible that the* poll callback is reentered from inside the call to wake_up() done* on the poll wait queue head. The rule is that we cannot reenter the* wake up code from the same task more than EP_MAX_NESTS times,* and we cannot reenter the same wait queue head at all. This will* enable to have a hierarchy of epoll file descriptor of no more than* EP_MAX_NESTS deep.*/
static void ep_poll_safewake(wait_queue_head_t *wq)
{int this_cpu = get_cpu();ep_call_nested(&poll_safewake_ncalls, EP_MAX_NESTS,ep_poll_wakeup_proc, NULL, wq, (void *) (long) this_cpu);put_cpu();
}static void ep_remove_wait_queue(struct eppoll_entry *pwq)
{wait_queue_head_t *whead;rcu_read_lock();/* If it is cleared by POLLFREE, it should be rcu-safe */whead = rcu_dereference(pwq->whead);if (whead)remove_wait_queue(whead, &pwq->wait);rcu_read_unlock();
}/** This function unregisters poll callbacks from the associated file* descriptor.  Must be called with "mtx" held (or "epmutex" if called from* ep_free).*/
static void ep_unregister_pollwait(struct eventpoll *ep, struct epitem *epi)
{struct list_head *lsthead = &epi->pwqlist;struct eppoll_entry *pwq;while (!list_empty(lsthead)) {pwq = list_first_entry(lsthead, struct eppoll_entry, llink);list_del(&pwq->llink);ep_remove_wait_queue(pwq);kmem_cache_free(pwq_cache, pwq);}
}/* call only when ep->mtx is held */
static inline struct wakeup_source *ep_wakeup_source(struct epitem *epi)
{return rcu_dereference_check(epi->ws, lockdep_is_held(&epi->ep->mtx));
}/* call only when ep->mtx is held */
static inline void ep_pm_stay_awake(struct epitem *epi)
{struct wakeup_source *ws = ep_wakeup_source(epi);if (ws)__pm_stay_awake(ws);
}static inline bool ep_has_wakeup_source(struct epitem *epi)
{return rcu_access_pointer(epi->ws) ? true : false;
}/* call when ep->mtx cannot be held (ep_poll_callback) */
static inline void ep_pm_stay_awake_rcu(struct epitem *epi)
{struct wakeup_source *ws;rcu_read_lock();ws = rcu_dereference(epi->ws);if (ws)__pm_stay_awake(ws);rcu_read_unlock();
}/*** ep_scan_ready_list - Scans the ready list in a way that makes possible for*                      the scan code, to call f_op->poll(). Also allows for*                      O(NumReady) performance.** @ep: Pointer to the epoll private data structure.* @sproc: Pointer to the scan callback.* @priv: Private opaque data passed to the @sproc callback.* @depth: The current depth of recursive f_op->poll calls.** Returns: The same integer error code returned by the @sproc callback.*/
static int ep_scan_ready_list(struct eventpoll *ep,int (*sproc)(struct eventpoll *,struct list_head *, void *),void *priv,int depth)
{int error, pwake = 0;unsigned long flags;struct epitem *epi, *nepi;LIST_HEAD(txlist);/** We need to lock this because we could be hit by* eventpoll_release_file() and epoll_ctl().*/mutex_lock_nested(&ep->mtx, depth);/** Steal the ready list, and re-init the original one to the* empty list. Also, set ep->ovflist to NULL so that events* happening while looping w/out locks, are not lost. We cannot* have the poll callback to queue directly on ep->rdllist,* because we want the "sproc" callback to be able to do it* in a lockless way.*/spin_lock_irqsave(&ep->lock, flags);list_splice_init(&ep->rdllist, &txlist);ep->ovflist = NULL;spin_unlock_irqrestore(&ep->lock, flags);/** Now call the callback function.*/error = (*sproc)(ep, &txlist, priv);spin_lock_irqsave(&ep->lock, flags);/** During the time we spent inside the "sproc" callback, some* other events might have been queued by the poll callback.* We re-insert them inside the main ready-list here.*/for (nepi = ep->ovflist; (epi = nepi) != NULL;nepi = epi->next, epi->next = EP_UNACTIVE_PTR) {/** We need to check if the item is already in the list.* During the "sproc" callback execution time, items are* queued into ->ovflist but the "txlist" might already* contain them, and the list_splice() below takes care of them.*/if (!ep_is_linked(&epi->rdllink)) {list_add_tail(&epi->rdllink, &ep->rdllist);ep_pm_stay_awake(epi);}}/** We need to set back ep->ovflist to EP_UNACTIVE_PTR, so that after* releasing the lock, events will be queued in the normal way inside* ep->rdllist.*/ep->ovflist = EP_UNACTIVE_PTR;/** Quickly re-inject items left on "txlist".*/list_splice(&txlist, &ep->rdllist);__pm_relax(ep->ws);if (!list_empty(&ep->rdllist)) {/** Wake up (if active) both the eventpoll wait list and* the ->poll() wait list (delayed after we release the lock).*/if (waitqueue_active(&ep->wq))wake_up_locked(&ep->wq);if (waitqueue_active(&ep->poll_wait))pwake++;}spin_unlock_irqrestore(&ep->lock, flags);mutex_unlock(&ep->mtx);/* We have to call this outside the lock */if (pwake)ep_poll_safewake(&ep->poll_wait);return error;
}/** Removes a "struct epitem" from the eventpoll RB tree and deallocates* all the associated resources. Must be called with "mtx" held.*/
static int ep_remove(struct eventpoll *ep, struct epitem *epi)
{unsigned long flags;struct file *file = epi->ffd.file;/** Removes poll wait queue hooks. We _have_ to do this without holding* the "ep->lock" otherwise a deadlock might occur. This because of the* sequence of the lock acquisition. Here we do "ep->lock" then the wait* queue head lock when unregistering the wait queue. The wakeup callback* will run by holding the wait queue head lock and will call our callback* that will try to get "ep->lock".*/ep_unregister_pollwait(ep, epi);/* Remove the current item from the list of epoll hooks */spin_lock(&file->f_lock);if (ep_is_linked(&epi->fllink))list_del_init(&epi->fllink);spin_unlock(&file->f_lock);rb_erase(&epi->rbn, &ep->rbr);spin_lock_irqsave(&ep->lock, flags);if (ep_is_linked(&epi->rdllink))list_del_init(&epi->rdllink);spin_unlock_irqrestore(&ep->lock, flags);wakeup_source_unregister(ep_wakeup_source(epi));/* At this point it is safe to free the eventpoll item */kmem_cache_free(epi_cache, epi);atomic_long_dec(&ep->user->epoll_watches);return 0;
}static void ep_free(struct eventpoll *ep)
{struct rb_node *rbp;struct epitem *epi;/* We need to release all tasks waiting for these file */if (waitqueue_active(&ep->poll_wait))ep_poll_safewake(&ep->poll_wait);/** We need to lock this because we could be hit by* eventpoll_release_file() while we're freeing the "struct eventpoll".* We do not need to hold "ep->mtx" here because the epoll file* is on the way to be removed and no one has references to it* anymore. The only hit might come from eventpoll_release_file() but* holding "epmutex" is sufficient here.*/mutex_lock(&epmutex);/** Walks through the whole tree by unregistering poll callbacks.*/for (rbp = rb_first(&ep->rbr); rbp; rbp = rb_next(rbp)) {epi = rb_entry(rbp, struct epitem, rbn);ep_unregister_pollwait(ep, epi);}/** Walks through the whole tree by freeing each "struct epitem". At this* point we are sure no poll callbacks will be lingering around, and also by* holding "epmutex" we can be sure that no file cleanup code will hit* us during this operation. So we can avoid the lock on "ep->lock".* We do not need to lock ep->mtx, either, we only do it to prevent* a lockdep warning.*/mutex_lock(&ep->mtx);while ((rbp = rb_first(&ep->rbr)) != NULL) {epi = rb_entry(rbp, struct epitem, rbn);ep_remove(ep, epi);}mutex_unlock(&ep->mtx);mutex_unlock(&epmutex);mutex_destroy(&ep->mtx);free_uid(ep->user);wakeup_source_unregister(ep->ws);kfree(ep);
}static int ep_eventpoll_release(struct inode *inode, struct file *file)
{struct eventpoll *ep = file->private_data;if (ep)ep_free(ep);return 0;
}static inline unsigned int ep_item_poll(struct epitem *epi, poll_table *pt)
{pt->_key = epi->event.events;return epi->ffd.file->f_op->poll(epi->ffd.file, pt) & epi->event.events;
}static int ep_read_events_proc(struct eventpoll *ep, struct list_head *head,void *priv)
{struct epitem *epi, *tmp;poll_table pt;init_poll_funcptr(&pt, NULL);list_for_each_entry_safe(epi, tmp, head, rdllink) {if (ep_item_poll(epi, &pt))return POLLIN | POLLRDNORM;else {/** Item has been dropped into the ready list by the poll* callback, but it's not actually ready, as far as* caller requested events goes. We can remove it here.*/__pm_relax(ep_wakeup_source(epi));list_del_init(&epi->rdllink);}}return 0;
}static int ep_poll_readyevents_proc(void *priv, void *cookie, int call_nests)
{return ep_scan_ready_list(priv, ep_read_events_proc, NULL, call_nests + 1);
}static unsigned int ep_eventpoll_poll(struct file *file, poll_table *wait)
{int pollflags;struct eventpoll *ep = file->private_data;/* Insert inside our poll wait queue */poll_wait(file, &ep->poll_wait, wait);/** Proceed to find out if wanted events are really available inside* the ready list. This need to be done under ep_call_nested()* supervision, since the call to f_op->poll() done on listed files* could re-enter here.*/pollflags = ep_call_nested(&poll_readywalk_ncalls, EP_MAX_NESTS,ep_poll_readyevents_proc, ep, ep, current);return pollflags != -1 ? pollflags : 0;
}#ifdef CONFIG_PROC_FS
static int ep_show_fdinfo(struct seq_file *m, struct file *f)
{struct eventpoll *ep = f->private_data;struct rb_node *rbp;int ret = 0;mutex_lock(&ep->mtx);for (rbp = rb_first(&ep->rbr); rbp; rbp = rb_next(rbp)) {struct epitem *epi = rb_entry(rbp, struct epitem, rbn);ret = seq_printf(m, "tfd: %8d events: %8x data: %16llx\n",epi->ffd.fd, epi->event.events,(long long)epi->event.data);if (ret)break;}mutex_unlock(&ep->mtx);return ret;
}
#endif/* File callbacks that implement the eventpoll file behaviour */
static const struct file_operations eventpoll_fops = {
#ifdef CONFIG_PROC_FS.show_fdinfo	= ep_show_fdinfo,
#endif.release	= ep_eventpoll_release,.poll		= ep_eventpoll_poll,.llseek		= noop_llseek,
};/** This is called from eventpoll_release() to unlink files from the eventpoll* interface. We need to have this facility to cleanup correctly files that are* closed without being removed from the eventpoll interface.*/
void eventpoll_release_file(struct file *file)
{struct list_head *lsthead = &file->f_ep_links;struct eventpoll *ep;struct epitem *epi;/** We don't want to get "file->f_lock" because it is not* necessary. It is not necessary because we're in the "struct file"* cleanup path, and this means that no one is using this file anymore.* So, for example, epoll_ctl() cannot hit here since if we reach this* point, the file counter already went to zero and fget() would fail.* The only hit might come from ep_free() but by holding the mutex* will correctly serialize the operation. We do need to acquire* "ep->mtx" after "epmutex" because ep_remove() requires it when called* from anywhere but ep_free().** Besides, ep_remove() acquires the lock, so we can't hold it here.*/mutex_lock(&epmutex);while (!list_empty(lsthead)) {epi = list_first_entry(lsthead, struct epitem, fllink);ep = epi->ep;list_del_init(&epi->fllink);mutex_lock_nested(&ep->mtx, 0);ep_remove(ep, epi);mutex_unlock(&ep->mtx);}mutex_unlock(&epmutex);
}static int ep_alloc(struct eventpoll **pep)
{int error;struct user_struct *user;struct eventpoll *ep;user = get_current_user();error = -ENOMEM;ep = kzalloc(sizeof(*ep), GFP_KERNEL);if (unlikely(!ep))goto free_uid;spin_lock_init(&ep->lock);mutex_init(&ep->mtx);init_waitqueue_head(&ep->wq);init_waitqueue_head(&ep->poll_wait);INIT_LIST_HEAD(&ep->rdllist);ep->rbr = RB_ROOT;ep->ovflist = EP_UNACTIVE_PTR;ep->user = user;*pep = ep;return 0;free_uid:free_uid(user);return error;
}/** Search the file inside the eventpoll tree. The RB tree operations* are protected by the "mtx" mutex, and ep_find() must be called with* "mtx" held.*/
static struct epitem *ep_find(struct eventpoll *ep, struct file *file, int fd)
{int kcmp;struct rb_node *rbp;struct epitem *epi, *epir = NULL;struct epoll_filefd ffd;ep_set_ffd(&ffd, file, fd);for (rbp = ep->rbr.rb_node; rbp; ) {epi = rb_entry(rbp, struct epitem, rbn);kcmp = ep_cmp_ffd(&ffd, &epi->ffd);if (kcmp > 0)rbp = rbp->rb_right;else if (kcmp < 0)rbp = rbp->rb_left;else {epir = epi;break;}}return epir;
}/** This is the callback that is passed to the wait queue wakeup* mechanism. It is called by the stored file descriptors when they* have events to report.*/
static int ep_poll_callback(wait_queue_t *wait, unsigned mode, int sync, void *key)
{int pwake = 0;unsigned long flags;struct epitem *epi = ep_item_from_wait(wait);struct eventpoll *ep = epi->ep;if ((unsigned long)key & POLLFREE) {ep_pwq_from_wait(wait)->whead = NULL;/** whead = NULL above can race with ep_remove_wait_queue()* which can do another remove_wait_queue() after us, so we* can't use __remove_wait_queue(). whead->lock is held by* the caller.*/list_del_init(&wait->task_list);}spin_lock_irqsave(&ep->lock, flags);/** If the event mask does not contain any poll(2) event, we consider the* descriptor to be disabled. This condition is likely the effect of the* EPOLLONESHOT bit that disables the descriptor when an event is received,* until the next EPOLL_CTL_MOD will be issued.*/if (!(epi->event.events & ~EP_PRIVATE_BITS))goto out_unlock;/** Check the events coming with the callback. At this stage, not* every device reports the events in the "key" parameter of the* callback. We need to be able to handle both cases here, hence the* test for "key" != NULL before the event match test.*/if (key && !((unsigned long) key & epi->event.events))goto out_unlock;/** If we are transferring events to userspace, we can hold no locks* (because we're accessing user memory, and because of linux f_op->poll()* semantics). All the events that happen during that period of time are* chained in ep->ovflist and requeued later on.*/if (unlikely(ep->ovflist != EP_UNACTIVE_PTR)) {if (epi->next == EP_UNACTIVE_PTR) {epi->next = ep->ovflist;ep->ovflist = epi;if (epi->ws) {/** Activate ep->ws since epi->ws may get* deactivated at any time.*/__pm_stay_awake(ep->ws);}}goto out_unlock;}/* If this file is already in the ready list we exit soon */if (!ep_is_linked(&epi->rdllink)) {list_add_tail(&epi->rdllink, &ep->rdllist);ep_pm_stay_awake_rcu(epi);}/** Wake up ( if active ) both the eventpoll wait list and the ->poll()* wait list.*/if (waitqueue_active(&ep->wq))wake_up_locked(&ep->wq);if (waitqueue_active(&ep->poll_wait))pwake++;out_unlock:spin_unlock_irqrestore(&ep->lock, flags);/* We have to call this outside the lock */if (pwake)ep_poll_safewake(&ep->poll_wait);return 1;
}/** This is the callback that is used to add our wait queue to the* target file wakeup lists.*/
static void ep_ptable_queue_proc(struct file *file, wait_queue_head_t *whead,poll_table *pt)
{struct epitem *epi = ep_item_from_epqueue(pt);struct eppoll_entry *pwq;if (epi->nwait >= 0 && (pwq = kmem_cache_alloc(pwq_cache, GFP_KERNEL))) {init_waitqueue_func_entry(&pwq->wait, ep_poll_callback);pwq->whead = whead;pwq->base = epi;add_wait_queue(whead, &pwq->wait);list_add_tail(&pwq->llink, &epi->pwqlist);epi->nwait++;} else {/* We have to signal that an error occurred */epi->nwait = -1;}
}static void ep_rbtree_insert(struct eventpoll *ep, struct epitem *epi)
{int kcmp;struct rb_node **p = &ep->rbr.rb_node, *parent = NULL;struct epitem *epic;while (*p) {parent = *p;epic = rb_entry(parent, struct epitem, rbn);kcmp = ep_cmp_ffd(&epi->ffd, &epic->ffd);if (kcmp > 0)p = &parent->rb_right;elsep = &parent->rb_left;}rb_link_node(&epi->rbn, parent, p);rb_insert_color(&epi->rbn, &ep->rbr);
}#define PATH_ARR_SIZE 5
/** These are the number paths of length 1 to 5, that we are allowing to emanate* from a single file of interest. For example, we allow 1000 paths of length* 1, to emanate from each file of interest. This essentially represents the* potential wakeup paths, which need to be limited in order to avoid massive* uncontrolled wakeup storms. The common use case should be a single ep which* is connected to n file sources. In this case each file source has 1 path* of length 1. Thus, the numbers below should be more than sufficient. These* path limits are enforced during an EPOLL_CTL_ADD operation, since a modify* and delete can't add additional paths. Protected by the epmutex.*/
static const int path_limits[PATH_ARR_SIZE] = { 1000, 500, 100, 50, 10 };
static int path_count[PATH_ARR_SIZE];static int path_count_inc(int nests)
{/* Allow an arbitrary number of depth 1 paths */if (nests == 0)return 0;if (++path_count[nests] > path_limits[nests])return -1;return 0;
}static void path_count_init(void)
{int i;for (i = 0; i < PATH_ARR_SIZE; i++)path_count[i] = 0;
}static int reverse_path_check_proc(void *priv, void *cookie, int call_nests)
{int error = 0;struct file *file = priv;struct file *child_file;struct epitem *epi;list_for_each_entry(epi, &file->f_ep_links, fllink) {child_file = epi->ep->file;if (is_file_epoll(child_file)) {if (list_empty(&child_file->f_ep_links)) {if (path_count_inc(call_nests)) {error = -1;break;}} else {error = ep_call_nested(&poll_loop_ncalls,EP_MAX_NESTS,reverse_path_check_proc,child_file, child_file,current);}if (error != 0)break;} else {printk(KERN_ERR "reverse_path_check_proc: ""file is not an ep!\n");}}return error;
}/*** reverse_path_check - The tfile_check_list is list of file *, which have*                      links that are proposed to be newly added. We need to*                      make sure that those added links don't add too many*                      paths such that we will spend all our time waking up*                      eventpoll objects.** Returns: Returns zero if the proposed links don't create too many paths,*	    -1 otherwise.*/
static int reverse_path_check(void)
{int error = 0;struct file *current_file;/* let's call this for all tfiles */list_for_each_entry(current_file, &tfile_check_list, f_tfile_llink) {path_count_init();error = ep_call_nested(&poll_loop_ncalls, EP_MAX_NESTS,reverse_path_check_proc, current_file,current_file, current);if (error)break;}return error;
}static int ep_create_wakeup_source(struct epitem *epi)
{const char *name;struct wakeup_source *ws;if (!epi->ep->ws) {epi->ep->ws = wakeup_source_register("eventpoll");if (!epi->ep->ws)return -ENOMEM;}name = epi->ffd.file->f_path.dentry->d_name.name;ws = wakeup_source_register(name);if (!ws)return -ENOMEM;rcu_assign_pointer(epi->ws, ws);return 0;
}/* rare code path, only used when EPOLL_CTL_MOD removes a wakeup source */
static noinline void ep_destroy_wakeup_source(struct epitem *epi)
{struct wakeup_source *ws = ep_wakeup_source(epi);RCU_INIT_POINTER(epi->ws, NULL);/** wait for ep_pm_stay_awake_rcu to finish, synchronize_rcu is* used internally by wakeup_source_remove, too (called by* wakeup_source_unregister), so we cannot use call_rcu*/synchronize_rcu();wakeup_source_unregister(ws);
}/** Must be called with "mtx" held.*/
static int ep_insert(struct eventpoll *ep, struct epoll_event *event,struct file *tfile, int fd)
{int error, revents, pwake = 0;unsigned long flags;long user_watches;struct epitem *epi;struct ep_pqueue epq;user_watches = atomic_long_read(&ep->user->epoll_watches);if (unlikely(user_watches >= max_user_watches))return -ENOSPC;if (!(epi = kmem_cache_alloc(epi_cache, GFP_KERNEL)))return -ENOMEM;/* Item initialization follow here ... */INIT_LIST_HEAD(&epi->rdllink);INIT_LIST_HEAD(&epi->fllink);INIT_LIST_HEAD(&epi->pwqlist);epi->ep = ep;ep_set_ffd(&epi->ffd, tfile, fd);epi->event = *event;epi->nwait = 0;epi->next = EP_UNACTIVE_PTR;if (epi->event.events & EPOLLWAKEUP) {error = ep_create_wakeup_source(epi);if (error)goto error_create_wakeup_source;} else {RCU_INIT_POINTER(epi->ws, NULL);}/* Initialize the poll table using the queue callback */epq.epi = epi;init_poll_funcptr(&epq.pt, ep_ptable_queue_proc);/** Attach the item to the poll hooks and get current event bits.* We can safely use the file* here because its usage count has* been increased by the caller of this function. Note that after* this operation completes, the poll callback can start hitting* the new item.*/revents = ep_item_poll(epi, &epq.pt);/** We have to check if something went wrong during the poll wait queue* install process. Namely an allocation for a wait queue failed due* high memory pressure.*/error = -ENOMEM;if (epi->nwait < 0)goto error_unregister;/* Add the current item to the list of active epoll hook for this file */spin_lock(&tfile->f_lock);list_add_tail(&epi->fllink, &tfile->f_ep_links);spin_unlock(&tfile->f_lock);/** Add the current item to the RB tree. All RB tree operations are* protected by "mtx", and ep_insert() is called with "mtx" held.*/ep_rbtree_insert(ep, epi);/* now check if we've created too many backpaths */error = -EINVAL;if (reverse_path_check())goto error_remove_epi;/* We have to drop the new item inside our item list to keep track of it */spin_lock_irqsave(&ep->lock, flags);/* If the file is already "ready" we drop it inside the ready list */if ((revents & event->events) && !ep_is_linked(&epi->rdllink)) {list_add_tail(&epi->rdllink, &ep->rdllist);ep_pm_stay_awake(epi);/* Notify waiting tasks that events are available */if (waitqueue_active(&ep->wq))wake_up_locked(&ep->wq);if (waitqueue_active(&ep->poll_wait))pwake++;}spin_unlock_irqrestore(&ep->lock, flags);atomic_long_inc(&ep->user->epoll_watches);/* We have to call this outside the lock */if (pwake)ep_poll_safewake(&ep->poll_wait);return 0;error_remove_epi:spin_lock(&tfile->f_lock);if (ep_is_linked(&epi->fllink))list_del_init(&epi->fllink);spin_unlock(&tfile->f_lock);rb_erase(&epi->rbn, &ep->rbr);error_unregister:ep_unregister_pollwait(ep, epi);/** We need to do this because an event could have been arrived on some* allocated wait queue. Note that we don't care about the ep->ovflist* list, since that is used/cleaned only inside a section bound by "mtx".* And ep_insert() is called with "mtx" held.*/spin_lock_irqsave(&ep->lock, flags);if (ep_is_linked(&epi->rdllink))list_del_init(&epi->rdllink);spin_unlock_irqrestore(&ep->lock, flags);wakeup_source_unregister(ep_wakeup_source(epi));error_create_wakeup_source:kmem_cache_free(epi_cache, epi);return error;
}/** Modify the interest event mask by dropping an event if the new mask* has a match in the current file status. Must be called with "mtx" held.*/
static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_event *event)
{int pwake = 0;unsigned int revents;poll_table pt;init_poll_funcptr(&pt, NULL);/** Set the new event interest mask before calling f_op->poll();* otherwise we might miss an event that happens between the* f_op->poll() call and the new event set registering.*/epi->event.events = event->events; /* need barrier below */epi->event.data = event->data; /* protected by mtx */if (epi->event.events & EPOLLWAKEUP) {if (!ep_has_wakeup_source(epi))ep_create_wakeup_source(epi);} else if (ep_has_wakeup_source(epi)) {ep_destroy_wakeup_source(epi);}/** The following barrier has two effects:** 1) Flush epi changes above to other CPUs.  This ensures*    we do not miss events from ep_poll_callback if an*    event occurs immediately after we call f_op->poll().*    We need this because we did not take ep->lock while*    changing epi above (but ep_poll_callback does take*    ep->lock).** 2) We also need to ensure we do not miss _past_ events*    when calling f_op->poll().  This barrier also*    pairs with the barrier in wq_has_sleeper (see*    comments for wq_has_sleeper).** This barrier will now guarantee ep_poll_callback or f_op->poll* (or both) will notice the readiness of an item.*/smp_mb();/** Get current event bits. We can safely use the file* here because* its usage count has been increased by the caller of this function.*/revents = ep_item_poll(epi, &pt);/** If the item is "hot" and it is not registered inside the ready* list, push it inside.*/if (revents & event->events) {spin_lock_irq(&ep->lock);if (!ep_is_linked(&epi->rdllink)) {list_add_tail(&epi->rdllink, &ep->rdllist);ep_pm_stay_awake(epi);/* Notify waiting tasks that events are available */if (waitqueue_active(&ep->wq))wake_up_locked(&ep->wq);if (waitqueue_active(&ep->poll_wait))pwake++;}spin_unlock_irq(&ep->lock);}/* We have to call this outside the lock */if (pwake)ep_poll_safewake(&ep->poll_wait);return 0;
}static int ep_send_events_proc(struct eventpoll *ep, struct list_head *head,void *priv)
{struct ep_send_events_data *esed = priv;int eventcnt;unsigned int revents;struct epitem *epi;struct epoll_event __user *uevent;struct wakeup_source *ws;poll_table pt;init_poll_funcptr(&pt, NULL);/** We can loop without lock because we are passed a task private list.* Items cannot vanish during the loop because ep_scan_ready_list() is* holding "mtx" during this call.*/for (eventcnt = 0, uevent = esed->events;!list_empty(head) && eventcnt < esed->maxevents;) {epi = list_first_entry(head, struct epitem, rdllink);/** Activate ep->ws before deactivating epi->ws to prevent* triggering auto-suspend here (in case we reactive epi->ws* below).** This could be rearranged to delay the deactivation of epi->ws* instead, but then epi->ws would temporarily be out of sync* with ep_is_linked().*/ws = ep_wakeup_source(epi);if (ws) {if (ws->active)__pm_stay_awake(ep->ws);__pm_relax(ws);}list_del_init(&epi->rdllink);revents = ep_item_poll(epi, &pt);/** If the event mask intersect the caller-requested one,* deliver the event to userspace. Again, ep_scan_ready_list()* is holding "mtx", so no operations coming from userspace* can change the item.*/if (revents) {if (__put_user(revents, &uevent->events) ||__put_user(epi->event.data, &uevent->data)) {list_add(&epi->rdllink, head);ep_pm_stay_awake(epi);return eventcnt ? eventcnt : -EFAULT;}eventcnt++;uevent++;if (epi->event.events & EPOLLONESHOT)epi->event.events &= EP_PRIVATE_BITS;else if (!(epi->event.events & EPOLLET)) {/** If this file has been added with Level* Trigger mode, we need to insert back inside* the ready list, so that the next call to* epoll_wait() will check again the events* availability. At this point, no one can insert* into ep->rdllist besides us. The epoll_ctl()* callers are locked out by* ep_scan_ready_list() holding "mtx" and the* poll callback will queue them in ep->ovflist.*/list_add_tail(&epi->rdllink, &ep->rdllist);ep_pm_stay_awake(epi);}}}return eventcnt;
}static int ep_send_events(struct eventpoll *ep,struct epoll_event __user *events, int maxevents)
{struct ep_send_events_data esed;esed.maxevents = maxevents;esed.events = events;return ep_scan_ready_list(ep, ep_send_events_proc, &esed, 0);
}static inline struct timespec ep_set_mstimeout(long ms)
{struct timespec now, ts = {.tv_sec = ms / MSEC_PER_SEC,.tv_nsec = NSEC_PER_MSEC * (ms % MSEC_PER_SEC),};ktime_get_ts(&now);return timespec_add_safe(now, ts);
}/*** ep_poll - Retrieves ready events, and delivers them to the caller supplied*           event buffer.** @ep: Pointer to the eventpoll context.* @events: Pointer to the userspace buffer where the ready events should be*          stored.* @maxevents: Size (in terms of number of events) of the caller event buffer.* @timeout: Maximum timeout for the ready events fetch operation, in*           milliseconds. If the @timeout is zero, the function will not block,*           while if the @timeout is less than zero, the function will block*           until at least one event has been retrieved (or an error*           occurred).** Returns: Returns the number of ready events which have been fetched, or an*          error code, in case of error.*/
static int ep_poll(struct eventpoll *ep, struct epoll_event __user *events,int maxevents, long timeout)
{int res = 0, eavail, timed_out = 0;unsigned long flags;long slack = 0;wait_queue_t wait;ktime_t expires, *to = NULL;if (timeout > 0) {struct timespec end_time = ep_set_mstimeout(timeout);slack = select_estimate_accuracy(&end_time);to = &expires;*to = timespec_to_ktime(end_time);} else if (timeout == 0) {/** Avoid the unnecessary trip to the wait queue loop, if the* caller specified a non blocking operation.*/timed_out = 1;spin_lock_irqsave(&ep->lock, flags);goto check_events;}fetch_events:spin_lock_irqsave(&ep->lock, flags);if (!ep_events_available(ep)) {/** We don't have any available event to return to the caller.* We need to sleep here, and we will be wake up by* ep_poll_callback() when events will become available.*/init_waitqueue_entry(&wait, current);__add_wait_queue_exclusive(&ep->wq, &wait);for (;;) {/** We don't want to sleep if the ep_poll_callback() sends us* a wakeup in between. That's why we set the task state* to TASK_INTERRUPTIBLE before doing the checks.*/set_current_state(TASK_INTERRUPTIBLE);if (ep_events_available(ep) || timed_out)break;if (signal_pending(current)) {res = -EINTR;break;}spin_unlock_irqrestore(&ep->lock, flags);if (!schedule_hrtimeout_range(to, slack, HRTIMER_MODE_ABS))timed_out = 1;spin_lock_irqsave(&ep->lock, flags);}__remove_wait_queue(&ep->wq, &wait);set_current_state(TASK_RUNNING);}
check_events:/* Is it worth to try to dig for events ? */eavail = ep_events_available(ep);spin_unlock_irqrestore(&ep->lock, flags);/** Try to transfer events to user space. In case we get 0 events and* there's still timeout left over, we go trying again in search of* more luck.*/if (!res && eavail &&!(res = ep_send_events(ep, events, maxevents)) && !timed_out)goto fetch_events;return res;
}/*** ep_loop_check_proc - Callback function to be passed to the @ep_call_nested()*                      API, to verify that adding an epoll file inside another*                      epoll structure, does not violate the constraints, in*                      terms of closed loops, or too deep chains (which can*                      result in excessive stack usage).** @priv: Pointer to the epoll file to be currently checked.* @cookie: Original cookie for this call. This is the top-of-the-chain epoll*          data structure pointer.* @call_nests: Current dept of the @ep_call_nested() call stack.** Returns: Returns zero if adding the epoll @file inside current epoll*          structure @ep does not violate the constraints, or -1 otherwise.*/
static int ep_loop_check_proc(void *priv, void *cookie, int call_nests)
{int error = 0;struct file *file = priv;struct eventpoll *ep = file->private_data;struct eventpoll *ep_tovisit;struct rb_node *rbp;struct epitem *epi;mutex_lock_nested(&ep->mtx, call_nests + 1);ep->visited = 1;list_add(&ep->visited_list_link, &visited_list);for (rbp = rb_first(&ep->rbr); rbp; rbp = rb_next(rbp)) {epi = rb_entry(rbp, struct epitem, rbn);if (unlikely(is_file_epoll(epi->ffd.file))) {ep_tovisit = epi->ffd.file->private_data;if (ep_tovisit->visited)continue;error = ep_call_nested(&poll_loop_ncalls, EP_MAX_NESTS,ep_loop_check_proc, epi->ffd.file,ep_tovisit, current);if (error != 0)break;} else {/** If we've reached a file that is not associated with* an ep, then we need to check if the newly added* links are going to add too many wakeup paths. We do* this by adding it to the tfile_check_list, if it's* not already there, and calling reverse_path_check()* during ep_insert().*/if (list_empty(&epi->ffd.file->f_tfile_llink))list_add(&epi->ffd.file->f_tfile_llink,&tfile_check_list);}}mutex_unlock(&ep->mtx);return error;
}/*** ep_loop_check - Performs a check to verify that adding an epoll file (@file)*                 another epoll file (represented by @ep) does not create*                 closed loops or too deep chains.** @ep: Pointer to the epoll private data structure.* @file: Pointer to the epoll file to be checked.** Returns: Returns zero if adding the epoll @file inside current epoll*          structure @ep does not violate the constraints, or -1 otherwise.*/
static int ep_loop_check(struct eventpoll *ep, struct file *file)
{int ret;struct eventpoll *ep_cur, *ep_next;ret = ep_call_nested(&poll_loop_ncalls, EP_MAX_NESTS,ep_loop_check_proc, file, ep, current);/* clear visited list */list_for_each_entry_safe(ep_cur, ep_next, &visited_list,visited_list_link) {ep_cur->visited = 0;list_del(&ep_cur->visited_list_link);}return ret;
}static void clear_tfile_check_list(void)
{struct file *file;/* first clear the tfile_check_list */while (!list_empty(&tfile_check_list)) {file = list_first_entry(&tfile_check_list, struct file,f_tfile_llink);list_del_init(&file->f_tfile_llink);}INIT_LIST_HEAD(&tfile_check_list);
}/** Open an eventpoll file descriptor.*/
SYSCALL_DEFINE1(epoll_create1, int, flags)
{int error, fd;struct eventpoll *ep = NULL;struct file *file;/* Check the EPOLL_* constant for consistency.  */BUILD_BUG_ON(EPOLL_CLOEXEC != O_CLOEXEC);if (flags & ~EPOLL_CLOEXEC)return -EINVAL;/** Create the internal data structure ("struct eventpoll").*/error = ep_alloc(&ep);if (error < 0)return error;/** Creates all the items needed to setup an eventpoll file. That is,* a file structure and a free file descriptor.*/fd = get_unused_fd_flags(O_RDWR | (flags & O_CLOEXEC));if (fd < 0) {error = fd;goto out_free_ep;}file = anon_inode_getfile("[eventpoll]", &eventpoll_fops, ep,O_RDWR | (flags & O_CLOEXEC));if (IS_ERR(file)) {error = PTR_ERR(file);goto out_free_fd;}ep->file = file;fd_install(fd, file);return fd;out_free_fd:put_unused_fd(fd);
out_free_ep:ep_free(ep);return error;
}SYSCALL_DEFINE1(epoll_create, int, size)
{if (size <= 0)return -EINVAL;return sys_epoll_create1(0);
}/** The following function implements the controller interface for* the eventpoll file that enables the insertion/removal/change of* file descriptors inside the interest set.*/
SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd,struct epoll_event __user *, event)
{int error;int did_lock_epmutex = 0;struct file *file, *tfile;struct eventpoll *ep;struct epitem *epi;struct epoll_event epds;error = -EFAULT;if (ep_op_has_event(op) &&copy_from_user(&epds, event, sizeof(struct epoll_event)))goto error_return;/* Get the "struct file *" for the eventpoll file */error = -EBADF;file = fget(epfd);if (!file)goto error_return;/* Get the "struct file *" for the target file */tfile = fget(fd);if (!tfile)goto error_fput;/* The target file descriptor must support poll */error = -EPERM;if (!tfile->f_op || !tfile->f_op->poll)goto error_tgt_fput;/* Check if EPOLLWAKEUP is allowed */if ((epds.events & EPOLLWAKEUP) && !capable(CAP_BLOCK_SUSPEND))epds.events &= ~EPOLLWAKEUP;/** We have to check that the file structure underneath the file descriptor* the user passed to us _is_ an eventpoll file. And also we do not permit* adding an epoll file descriptor inside itself.*/error = -EINVAL;if (file == tfile || !is_file_epoll(file))goto error_tgt_fput;/** At this point it is safe to assume that the "private_data" contains* our own data structure.*/ep = file->private_data;/** When we insert an epoll file descriptor, inside another epoll file* descriptor, there is the change of creating closed loops, which are* better be handled here, than in more critical paths. While we are* checking for loops we also determine the list of files reachable* and hang them on the tfile_check_list, so we can check that we* haven't created too many possible wakeup paths.** We need to hold the epmutex across both ep_insert and ep_remove* b/c we want to make sure we are looking at a coherent view of* epoll network.*/if (op == EPOLL_CTL_ADD || op == EPOLL_CTL_DEL) {mutex_lock(&epmutex);did_lock_epmutex = 1;}if (op == EPOLL_CTL_ADD) {if (is_file_epoll(tfile)) {error = -ELOOP;if (ep_loop_check(ep, tfile) != 0) {clear_tfile_check_list();goto error_tgt_fput;}} elselist_add(&tfile->f_tfile_llink, &tfile_check_list);}mutex_lock_nested(&ep->mtx, 0);/** Try to lookup the file inside our RB tree, Since we grabbed "mtx"* above, we can be sure to be able to use the item looked up by* ep_find() till we release the mutex.*/epi = ep_find(ep, tfile, fd);error = -EINVAL;switch (op) {case EPOLL_CTL_ADD:if (!epi) {epds.events |= POLLERR | POLLHUP;error = ep_insert(ep, &epds, tfile, fd);} elseerror = -EEXIST;clear_tfile_check_list();break;case EPOLL_CTL_DEL:if (epi)error = ep_remove(ep, epi);elseerror = -ENOENT;break;case EPOLL_CTL_MOD:if (epi) {epds.events |= POLLERR | POLLHUP;error = ep_modify(ep, epi, &epds);} elseerror = -ENOENT;break;}mutex_unlock(&ep->mtx);error_tgt_fput:if (did_lock_epmutex)mutex_unlock(&epmutex);fput(tfile);
error_fput:fput(file);
error_return:return error;
}/** Implement the event wait interface for the eventpoll file. It is the kernel* part of the user space epoll_wait(2).*/
SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events,int, maxevents, int, timeout)
{int error;struct fd f;struct eventpoll *ep;/* The maximum number of event must be greater than zero */if (maxevents <= 0 || maxevents > EP_MAX_EVENTS)return -EINVAL;/* Verify that the area passed by the user is writeable */if (!access_ok(VERIFY_WRITE, events, maxevents * sizeof(struct epoll_event)))return -EFAULT;/* Get the "struct file *" for the eventpoll file */f = fdget(epfd);if (!f.file)return -EBADF;/** We have to check that the file structure underneath the fd* the user passed to us _is_ an eventpoll file.*/error = -EINVAL;if (!is_file_epoll(f.file))goto error_fput;/** At this point it is safe to assume that the "private_data" contains* our own data structure.*/ep = f.file->private_data;/* Time to fish for events ... */error = ep_poll(ep, events, maxevents, timeout);error_fput:fdput(f);return error;
}/** Implement the event wait interface for the eventpoll file. It is the kernel* part of the user space epoll_pwait(2).*/
SYSCALL_DEFINE6(epoll_pwait, int, epfd, struct epoll_event __user *, events,int, maxevents, int, timeout, const sigset_t __user *, sigmask,size_t, sigsetsize)
{int error;sigset_t ksigmask, sigsaved;/** If the caller wants a certain signal mask to be set during the wait,* we apply it here.*/if (sigmask) {if (sigsetsize != sizeof(sigset_t))return -EINVAL;if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask)))return -EFAULT;sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);}error = sys_epoll_wait(epfd, events, maxevents, timeout);/** If we changed the signal mask, we need to restore the original one.* In case we've got a signal while waiting, we do not restore the* signal mask yet, and we allow do_signal() to deliver the signal on* the way back to userspace, before the signal mask is restored.*/if (sigmask) {if (error == -EINTR) {memcpy(&current->saved_sigmask, &sigsaved,sizeof(sigsaved));set_restore_sigmask();} elsesigprocmask(SIG_SETMASK, &sigsaved, NULL);}return error;
}#ifdef CONFIG_COMPAT
COMPAT_SYSCALL_DEFINE6(epoll_pwait, int, epfd,struct epoll_event __user *, events,int, maxevents, int, timeout,const compat_sigset_t __user *, sigmask,compat_size_t, sigsetsize)
{long err;compat_sigset_t csigmask;sigset_t ksigmask, sigsaved;/** If the caller wants a certain signal mask to be set during the wait,* we apply it here.*/if (sigmask) {if (sigsetsize != sizeof(compat_sigset_t))return -EINVAL;if (copy_from_user(&csigmask, sigmask, sizeof(csigmask)))return -EFAULT;sigset_from_compat(&ksigmask, &csigmask);sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);}err = sys_epoll_wait(epfd, events, maxevents, timeout);/** If we changed the signal mask, we need to restore the original one.* In case we've got a signal while waiting, we do not restore the* signal mask yet, and we allow do_signal() to deliver the signal on* the way back to userspace, before the signal mask is restored.*/if (sigmask) {if (err == -EINTR) {memcpy(&current->saved_sigmask, &sigsaved,sizeof(sigsaved));set_restore_sigmask();} elsesigprocmask(SIG_SETMASK, &sigsaved, NULL);}return err;
}
#endifstatic int __init eventpoll_init(void)
{struct sysinfo si;si_meminfo(&si);/** Allows top 4% of lomem to be allocated for epoll watches (per user).*/max_user_watches = (((si.totalram - si.totalhigh) / 25) << PAGE_SHIFT) /EP_ITEM_COST;BUG_ON(max_user_watches < 0);/** Initialize the structure used to perform epoll file descriptor* inclusion loops checks.*/ep_nested_calls_init(&poll_loop_ncalls);/* Initialize the structure used to perform safe poll wait head wake ups */ep_nested_calls_init(&poll_safewake_ncalls);/* Initialize the structure used to perform file's f_op->poll() calls */ep_nested_calls_init(&poll_readywalk_ncalls);/** We can have many thousands of epitems, so prevent this from* using an extra cache line on 64-bit (and smaller) CPUs*/BUILD_BUG_ON(sizeof(void *) <= 8 && sizeof(struct epitem) > 128);/* Allocates slab cache used to allocate "struct epitem" items */epi_cache = kmem_cache_create("eventpoll_epi", sizeof(struct epitem),0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);/* Allocates slab cache used to allocate "struct eppoll_entry" */pwq_cache = kmem_cache_create("eventpoll_pwq",sizeof(struct eppoll_entry), 0, SLAB_PANIC, NULL);return 0;
}
fs_initcall(eventpoll_init);

https://linux.die.net/man/2/epoll_wait

http://www.man7.org/linux/man-pages/man2/epoll_wait.2.html

擴展閱讀:NIO 源碼分析(02-1) BIO 源碼分析?

NIO-EPollSelectorIpml源碼分析?

epoll源碼實現分析[整理]

epoll內核源碼詳解+自己總結的流程?? 這個是比較完整的注釋。

epoll內核源碼分析

一文看懂DPDK?

內核是導致瓶頸的原因所在,要解決問題需要繞過內核。所以主流解決方案都是旁路網卡IO,繞過內核直接在用戶態收發包來解決內核的瓶頸。

圖片引自Jingjing Wu的文檔《Flow Bifurcation on Intel? Ethernet Controller X710/XL710》

左邊是原來的方式數據從 網卡 -> 驅動 -> 協議棧 -> Socket接口 -> 業務

右邊是DPDK的方式,基于UIO(Userspace I/O)旁路數據。數據從 網卡 -> DPDK輪詢模式-> DPDK基礎庫 -> 業務

用戶態的好處是易用開發和維護,靈活性好。并且Crash也不影響內核運行,魯棒性強。

?

總結

以上是生活随笔為你收集整理的JDK源码分析 NIO实现的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

国产免费观看黄av片 | 国产乡下妇女做爰 | 沈阳熟女露脸对白视频 | 丝袜 中出 制服 人妻 美腿 | 亚洲午夜久久久影院 | 清纯唯美经典一区二区 | 国产97色在线 | 免 | 国产精品鲁鲁鲁 | 亚洲国产精品毛片av不卡在线 | 性色av无码免费一区二区三区 | 丝袜人妻一区二区三区 | 亚洲理论电影在线观看 | 精品一区二区三区波多野结衣 | 一本大道久久东京热无码av | 亚洲日本在线电影 | 国产人成高清在线视频99最全资源 | 亚洲综合精品香蕉久久网 | 一区二区传媒有限公司 | 成年美女黄网站色大免费全看 | 亚洲乱码国产乱码精品精 | 少妇无码av无码专区在线观看 | 国产亚洲精品精品国产亚洲综合 | 俺去俺来也www色官网 | 精品国产一区av天美传媒 | 国产成人无码专区 | 色婷婷香蕉在线一区二区 | 成人欧美一区二区三区黑人 | 小泽玛莉亚一区二区视频在线 | 风流少妇按摩来高潮 | 天天躁夜夜躁狠狠是什么心态 | 人人妻人人澡人人爽精品欧美 | 2020久久超碰国产精品最新 | 亚洲日韩av片在线观看 | 天堂在线观看www | 日日摸天天摸爽爽狠狠97 | 日本饥渴人妻欲求不满 | 大色综合色综合网站 | 日日鲁鲁鲁夜夜爽爽狠狠 | 色五月丁香五月综合五月 | 免费人成在线视频无码 | 亚洲人成网站色7799 | 99er热精品视频 | 久久无码专区国产精品s | 久久精品国产99久久6动漫 | 亚洲精品国偷拍自产在线麻豆 | 日日橹狠狠爱欧美视频 | 色五月丁香五月综合五月 | 中文字幕乱妇无码av在线 | 欧美精品无码一区二区三区 | 久久久久国色av免费观看性色 | yw尤物av无码国产在线观看 | 男女超爽视频免费播放 | 欧美 亚洲 国产 另类 | 久久久久久久女国产乱让韩 | 亚洲区欧美区综合区自拍区 | av无码久久久久不卡免费网站 | 永久免费观看美女裸体的网站 | 男人和女人高潮免费网站 | 亚洲 日韩 欧美 成人 在线观看 | 成人欧美一区二区三区黑人 | 久久久中文久久久无码 | 亚洲啪av永久无码精品放毛片 | 国产亚洲精品久久久久久大师 | 熟妇人妻中文av无码 | 草草网站影院白丝内射 | 国产乱人伦av在线无码 | www一区二区www免费 | 国产精品第一国产精品 | 在线观看欧美一区二区三区 | 国产suv精品一区二区五 | 亚洲经典千人经典日产 | 亚洲欧美精品aaaaaa片 | 国产精品无码mv在线观看 | 欧美精品免费观看二区 | 日本精品少妇一区二区三区 | 成人亚洲精品久久久久 | 亚洲男人av香蕉爽爽爽爽 | 九一九色国产 | 亚洲小说春色综合另类 | 玩弄人妻少妇500系列视频 | 国产在线精品一区二区三区直播 | 国产人妻久久精品二区三区老狼 | 国产97色在线 | 免 | 国产成人综合美国十次 | 中文字幕无码av波多野吉衣 | aⅴ在线视频男人的天堂 | 国产两女互慰高潮视频在线观看 | 久久久精品456亚洲影院 | 性色av无码免费一区二区三区 | 色综合久久中文娱乐网 | 少妇人妻偷人精品无码视频 | 精品乱子伦一区二区三区 | 欧美人与禽zoz0性伦交 | 久久精品视频在线看15 | 亚洲国产高清在线观看视频 | 亚洲精品成a人在线观看 | 熟妇人妻无码xxx视频 | 日本熟妇乱子伦xxxx | 亚洲а∨天堂久久精品2021 | 亚洲欧美国产精品专区久久 | 国产疯狂伦交大片 | 婷婷丁香五月天综合东京热 | 亚洲男女内射在线播放 | 欧美性猛交内射兽交老熟妇 | 国产精品人人妻人人爽 | 在线 国产 欧美 亚洲 天堂 | 亚欧洲精品在线视频免费观看 | 欧美老人巨大xxxx做受 | 欧美成人免费全部网站 | 精品国产乱码久久久久乱码 | 久激情内射婷内射蜜桃人妖 | 丰满人妻精品国产99aⅴ | 乱中年女人伦av三区 | 国产av剧情md精品麻豆 | 男女猛烈xx00免费视频试看 | 丰满少妇人妻久久久久久 | 婷婷综合久久中文字幕蜜桃三电影 | 欧美精品一区二区精品久久 | 无码帝国www无码专区色综合 | 国产精品怡红院永久免费 | 亚洲天堂2017无码中文 | 女人和拘做爰正片视频 | 久久99热只有频精品8 | 久久99精品国产麻豆 | a在线观看免费网站大全 | 玩弄少妇高潮ⅹxxxyw | 中文字幕无码日韩专区 | 国产精品无码mv在线观看 | 国产人妻精品午夜福利免费 | 国产熟女一区二区三区四区五区 | 无码av岛国片在线播放 | 免费无码肉片在线观看 | 性欧美牲交在线视频 | 国产农村乱对白刺激视频 | 在线 国产 欧美 亚洲 天堂 | 妺妺窝人体色www婷婷 | 欧美真人作爱免费视频 | 亚洲成av人片天堂网无码】 | 久久久久成人片免费观看蜜芽 | 欧洲极品少妇 | 久久综合香蕉国产蜜臀av | 日日躁夜夜躁狠狠躁 | 一本大道伊人av久久综合 | 国产成人一区二区三区别 | 欧洲vodafone精品性 | 沈阳熟女露脸对白视频 | 四虎永久在线精品免费网址 | 熟女少妇在线视频播放 | 国产无遮挡又黄又爽又色 | 高中生自慰www网站 | 亚洲熟妇色xxxxx欧美老妇y | 日韩无码专区 | 欧美阿v高清资源不卡在线播放 | 久久精品成人欧美大片 | 男女作爱免费网站 | 亚洲国产欧美日韩精品一区二区三区 | 一本无码人妻在中文字幕免费 | 中文字幕av日韩精品一区二区 | 久久亚洲中文字幕精品一区 | 曰韩少妇内射免费播放 | 国产农村妇女高潮大叫 | 综合激情五月综合激情五月激情1 | 女人高潮内射99精品 | 亚欧洲精品在线视频免费观看 | 中文字幕无码免费久久99 | 欧美日韩视频无码一区二区三 | 东京热无码av男人的天堂 | 久久视频在线观看精品 | 青青久在线视频免费观看 | 色欲人妻aaaaaaa无码 | 色一情一乱一伦一视频免费看 | 一个人看的视频www在线 | 在线观看国产午夜福利片 | 男人的天堂2018无码 | √天堂中文官网8在线 | 国产成人无码区免费内射一片色欲 | 欧美午夜特黄aaaaaa片 | 人人妻人人澡人人爽欧美精品 | 青青草原综合久久大伊人精品 | 国产精品.xx视频.xxtv | 欧美喷潮久久久xxxxx | 亚洲最大成人网站 | 东京无码熟妇人妻av在线网址 | 日日干夜夜干 | 国产精品亚洲一区二区三区喷水 | 日韩人妻无码一区二区三区久久99 | 少妇人妻av毛片在线看 | 永久黄网站色视频免费直播 | 亚洲中文字幕无码中文字在线 | 国产激情一区二区三区 | 国产在线精品一区二区三区直播 | 日本精品高清一区二区 | 欧洲欧美人成视频在线 | 激情国产av做激情国产爱 | 黑森林福利视频导航 | av人摸人人人澡人人超碰下载 | 麻豆精品国产精华精华液好用吗 | 国产办公室秘书无码精品99 | 国产色xx群视频射精 | 亚洲热妇无码av在线播放 | 日本精品少妇一区二区三区 | 大乳丰满人妻中文字幕日本 | 天天爽夜夜爽夜夜爽 | 国产性生交xxxxx无码 | 牛和人交xxxx欧美 | 亚洲人亚洲人成电影网站色 | 亚洲男人av香蕉爽爽爽爽 | 中文字幕乱码亚洲无线三区 | 一个人看的www免费视频在线观看 | 亚欧洲精品在线视频免费观看 | 久久精品中文闷骚内射 | 88国产精品欧美一区二区三区 | 亚洲国产一区二区三区在线观看 | 欧美三级a做爰在线观看 | 亚洲一区二区三区含羞草 | 欧美xxxx黑人又粗又长 | 图片小说视频一区二区 | 亚洲熟熟妇xxxx | 澳门永久av免费网站 | 精品国偷自产在线视频 | 一本久久伊人热热精品中文字幕 | 亚洲 a v无 码免 费 成 人 a v | 国产亚洲视频中文字幕97精品 | 性啪啪chinese东北女人 | 亚洲中文字幕av在天堂 | 4hu四虎永久在线观看 | 亚洲欧美综合区丁香五月小说 | 精品亚洲韩国一区二区三区 | 欧美日韩色另类综合 | 亚洲精品成人av在线 | 国产精品无码永久免费888 | 国产黄在线观看免费观看不卡 | 亚洲精品国偷拍自产在线麻豆 | 国产精品亚洲lv粉色 | 亚洲va中文字幕无码久久不卡 | 国产人妻久久精品二区三区老狼 | 又黄又爽又色的视频 | 性欧美疯狂xxxxbbbb | 对白脏话肉麻粗话av | 亚洲国产av美女网站 | 亚洲日韩av一区二区三区中文 | 四虎影视成人永久免费观看视频 | 色噜噜亚洲男人的天堂 | 漂亮人妻洗澡被公强 日日躁 | 国产精品亚洲综合色区韩国 | 美女黄网站人色视频免费国产 | 激情爆乳一区二区三区 | 亚洲欧洲日本综合aⅴ在线 | 久久99久久99精品中文字幕 | 精品熟女少妇av免费观看 | 午夜性刺激在线视频免费 | 激情内射日本一区二区三区 | 99精品久久毛片a片 | 亚洲精品成a人在线观看 | 性生交大片免费看女人按摩摩 | 久久精品99久久香蕉国产色戒 | 中文无码精品a∨在线观看不卡 | 欧美老熟妇乱xxxxx | 亚洲乱码中文字幕在线 | 伊人久久婷婷五月综合97色 | 国产乱人伦偷精品视频 | 黄网在线观看免费网站 | 中文字幕精品av一区二区五区 | 无码人中文字幕 | 丰满岳乱妇在线观看中字无码 | 性生交大片免费看l | 国产内射爽爽大片视频社区在线 | 黄网在线观看免费网站 | 亚洲の无码国产の无码步美 | 国产肉丝袜在线观看 | 一本加勒比波多野结衣 | 欧美亚洲日韩国产人成在线播放 | 中文字幕色婷婷在线视频 | aⅴ亚洲 日韩 色 图网站 播放 | 无码精品国产va在线观看dvd | 国产两女互慰高潮视频在线观看 | 日本一区二区三区免费播放 | 日本又色又爽又黄的a片18禁 | 天堂无码人妻精品一区二区三区 | 九九热爱视频精品 | 中文字幕日产无线码一区 | 中文无码伦av中文字幕 | 色五月丁香五月综合五月 | 两性色午夜免费视频 | 红桃av一区二区三区在线无码av | 国产乱人无码伦av在线a | 色综合久久久无码中文字幕 | 2019nv天堂香蕉在线观看 | 俺去俺来也在线www色官网 | 领导边摸边吃奶边做爽在线观看 | 美女黄网站人色视频免费国产 | 久久亚洲精品中文字幕无男同 | 99久久久国产精品无码免费 | 蜜桃无码一区二区三区 | 日本www一道久久久免费榴莲 | 99麻豆久久久国产精品免费 | 一本加勒比波多野结衣 | 国产精品无码成人午夜电影 | 亚洲日韩av一区二区三区中文 | 亚洲人成无码网www | 狂野欧美性猛交免费视频 | 51国偷自产一区二区三区 | 亚洲综合精品香蕉久久网 | 国产sm调教视频在线观看 | 一个人看的www免费视频在线观看 | 亚洲精品无码人妻无码 | 国产乱人偷精品人妻a片 | 久久亚洲中文字幕精品一区 | 岛国片人妻三上悠亚 | 日韩精品成人一区二区三区 | 好屌草这里只有精品 | 中文字幕中文有码在线 | 天干天干啦夜天干天2017 | 精品厕所偷拍各类美女tp嘘嘘 | 亚洲成a人片在线观看无码 | 国精产品一区二区三区 | 国产乱人偷精品人妻a片 | 亚洲成av人影院在线观看 | 麻豆国产丝袜白领秘书在线观看 | 久久综合香蕉国产蜜臀av | 俄罗斯老熟妇色xxxx | 国产精品高潮呻吟av久久4虎 | 亚洲精品成a人在线观看 | 乌克兰少妇xxxx做受 | 久久天天躁狠狠躁夜夜免费观看 | 国产后入清纯学生妹 | 国产精品亚洲lv粉色 | 粉嫩少妇内射浓精videos | 骚片av蜜桃精品一区 | 欧美野外疯狂做受xxxx高潮 | 牲欲强的熟妇农村老妇女视频 | 性色欲网站人妻丰满中文久久不卡 | 天天燥日日燥 | 国产精品久久久久久久9999 | 老熟妇仑乱视频一区二区 | 少妇厨房愉情理9仑片视频 | 无码人中文字幕 | 亚洲人成人无码网www国产 | 波多野结衣av一区二区全免费观看 | 日本爽爽爽爽爽爽在线观看免 | 欧美丰满熟妇xxxx性ppx人交 | 久久亚洲中文字幕精品一区 | 蜜桃无码一区二区三区 | 成人性做爰aaa片免费看 | 无码午夜成人1000部免费视频 | 亚洲国产av精品一区二区蜜芽 | 狂野欧美性猛xxxx乱大交 | 又粗又大又硬毛片免费看 | 欧美日韩在线亚洲综合国产人 | 成人片黄网站色大片免费观看 | 人妻与老人中文字幕 | 亚洲の无码国产の无码影院 | 激情爆乳一区二区三区 | 一个人看的www免费视频在线观看 | 国产舌乚八伦偷品w中 | 欧美 日韩 人妻 高清 中文 | 日本精品人妻无码免费大全 | 欧美日韩一区二区免费视频 | 日韩少妇内射免费播放 | 天堂亚洲免费视频 | 亚洲精品国产精品乱码不卡 | 少妇久久久久久人妻无码 | 99久久久无码国产精品免费 | 亚洲国产精品无码久久久久高潮 | 国产av无码专区亚洲a∨毛片 | 亚洲综合另类小说色区 | 亚洲日韩一区二区三区 | 欧美 丝袜 自拍 制服 另类 | 精品国产一区二区三区av 性色 | 国产亚洲美女精品久久久2020 | 国产精品美女久久久 | 无码人妻丰满熟妇区五十路百度 | 超碰97人人射妻 | 波多野42部无码喷潮在线 | 日韩精品久久久肉伦网站 | 欧美性猛交内射兽交老熟妇 | 日本va欧美va欧美va精品 | 久久午夜夜伦鲁鲁片无码免费 | 最新国产麻豆aⅴ精品无码 | 九九久久精品国产免费看小说 | 在线播放亚洲第一字幕 | 亚洲色欲色欲欲www在线 | 狠狠色噜噜狠狠狠7777奇米 | 免费视频欧美无人区码 | 又湿又紧又大又爽a视频国产 | 综合激情五月综合激情五月激情1 | 老司机亚洲精品影院无码 | 国产成人一区二区三区在线观看 | 领导边摸边吃奶边做爽在线观看 | 亚洲成在人网站无码天堂 | 在线 国产 欧美 亚洲 天堂 | 亚洲s色大片在线观看 | 欧美老妇交乱视频在线观看 | 免费无码av一区二区 | 亚洲日韩av一区二区三区中文 | 老熟女乱子伦 | 女高中生第一次破苞av | 一本色道久久综合亚洲精品不卡 | 精品人人妻人人澡人人爽人人 | 国内老熟妇对白xxxxhd | 精品人人妻人人澡人人爽人人 | 欧美成人免费全部网站 | 在线观看欧美一区二区三区 | 国产亚洲精品久久久闺蜜 | 国产莉萝无码av在线播放 | 国产极品美女高潮无套在线观看 | 国产一区二区三区日韩精品 | 人人澡人人妻人人爽人人蜜桃 | 日韩欧美群交p片內射中文 | 国产亚洲人成在线播放 | 高潮喷水的毛片 | 精品国产成人一区二区三区 | 亚洲综合无码一区二区三区 | 无码av岛国片在线播放 | 日本又色又爽又黄的a片18禁 | 免费视频欧美无人区码 | 亚洲精品一区二区三区大桥未久 | av在线亚洲欧洲日产一区二区 | 久久五月精品中文字幕 | 亚洲精品一区二区三区大桥未久 | 最近的中文字幕在线看视频 | 少妇厨房愉情理9仑片视频 | 亚洲乱码中文字幕在线 | 久久久精品国产sm最大网站 | 熟女少妇人妻中文字幕 | 国产精品美女久久久久av爽李琼 | 国内精品久久毛片一区二区 | 清纯唯美经典一区二区 | 51国偷自产一区二区三区 | 久久午夜无码鲁丝片午夜精品 | 日本在线高清不卡免费播放 | 久久亚洲国产成人精品性色 | 美女黄网站人色视频免费国产 | 久热国产vs视频在线观看 | 自拍偷自拍亚洲精品被多人伦好爽 | 动漫av网站免费观看 | 一二三四社区在线中文视频 | 欧美怡红院免费全部视频 | 亚洲娇小与黑人巨大交 | 波多野结衣乳巨码无在线观看 | 亚洲日韩精品欧美一区二区 | 无码免费一区二区三区 | 久久精品99久久香蕉国产色戒 | 中文字幕乱码人妻无码久久 | 国产精华av午夜在线观看 | 97无码免费人妻超级碰碰夜夜 | 亚洲中文字幕无码中文字在线 | 亚洲の无码国产の无码影院 | 大肉大捧一进一出视频出来呀 | 牛和人交xxxx欧美 | 国产亚洲视频中文字幕97精品 | 久9re热视频这里只有精品 | 成人无码精品1区2区3区免费看 | 亚洲爆乳精品无码一区二区三区 | 狂野欧美激情性xxxx | 麻豆国产人妻欲求不满谁演的 | 熟女体下毛毛黑森林 | 性啪啪chinese东北女人 | 综合人妻久久一区二区精品 | 婷婷丁香五月天综合东京热 | 欧美日韩综合一区二区三区 | 久久久久亚洲精品男人的天堂 | 日本丰满护士爆乳xxxx | 国产精品igao视频网 | 黑人玩弄人妻中文在线 | 国产成人久久精品流白浆 | 国内少妇偷人精品视频 | 欧美xxxx黑人又粗又长 | 亚洲一区二区三区四区 | 蜜臀aⅴ国产精品久久久国产老师 | 骚片av蜜桃精品一区 | 欧美性猛交内射兽交老熟妇 | 西西人体www44rt大胆高清 | 人妻aⅴ无码一区二区三区 | 日本丰满熟妇videos | 宝宝好涨水快流出来免费视频 | 国产一区二区三区精品视频 | 天天躁夜夜躁狠狠是什么心态 | 久久久久久亚洲精品a片成人 | 黑人巨大精品欧美黑寡妇 | 亚洲一区二区三区四区 | 暴力强奷在线播放无码 | 啦啦啦www在线观看免费视频 | 国产成人无码av片在线观看不卡 | 奇米影视7777久久精品人人爽 | 国产人妻精品午夜福利免费 | 精品无码成人片一区二区98 | 国产明星裸体无码xxxx视频 | 福利一区二区三区视频在线观看 | 无码人妻精品一区二区三区不卡 | 亚洲欧美日韩国产精品一区二区 | 小鲜肉自慰网站xnxx | av无码不卡在线观看免费 | 天天综合网天天综合色 | 亚洲人成无码网www | 亚洲精品国产第一综合99久久 | 无码人妻精品一区二区三区下载 | 色婷婷av一区二区三区之红樱桃 | 风流少妇按摩来高潮 | 日韩精品久久久肉伦网站 | 西西人体www44rt大胆高清 | 76少妇精品导航 | 亚洲国产一区二区三区在线观看 | 国产内射老熟女aaaa | 精品国产精品久久一区免费式 | 无码人中文字幕 | 久久久久久a亚洲欧洲av冫 | 黑人巨大精品欧美黑寡妇 | 亚洲阿v天堂在线 | 久久精品女人的天堂av | 亚洲国精产品一二二线 | 免费国产成人高清在线观看网站 | 熟妇人妻无码xxx视频 | 色一情一乱一伦一视频免费看 | 亚洲欧洲无卡二区视頻 | 色婷婷av一区二区三区之红樱桃 | 兔费看少妇性l交大片免费 | 午夜丰满少妇性开放视频 | 男人扒开女人内裤强吻桶进去 | 国产色xx群视频射精 | 性欧美熟妇videofreesex | 性欧美videos高清精品 | 天天做天天爱天天爽综合网 | 丁香花在线影院观看在线播放 | 少妇高潮一区二区三区99 | 国内老熟妇对白xxxxhd | 亚洲国精产品一二二线 | 中文字幕av日韩精品一区二区 | 国产精品久久久久久久影院 | 中文字幕人成乱码熟女app | 国产亚洲人成在线播放 | 亚洲毛片av日韩av无码 | 99久久久无码国产精品免费 | av无码不卡在线观看免费 | 野狼第一精品社区 | 亚洲一区二区三区在线观看网站 | 漂亮人妻洗澡被公强 日日躁 | 国产sm调教视频在线观看 | 无套内谢老熟女 | 亚洲精品成a人在线观看 | 亚洲国产精品无码一区二区三区 | 免费乱码人妻系列无码专区 | 人妻天天爽夜夜爽一区二区 | 国产在线精品一区二区高清不卡 | 中文无码精品a∨在线观看不卡 | 3d动漫精品啪啪一区二区中 | 色一情一乱一伦一区二区三欧美 | 欧美性色19p | 人人妻人人澡人人爽人人精品浪潮 | 日本爽爽爽爽爽爽在线观看免 | 玩弄中年熟妇正在播放 | 亚洲欧美日韩综合久久久 | 宝宝好涨水快流出来免费视频 | 在线播放免费人成毛片乱码 | 欧美成人免费全部网站 | 无人区乱码一区二区三区 | 亚洲午夜久久久影院 | 狠狠色噜噜狠狠狠狠7777米奇 | 亚洲成av人影院在线观看 | 亚洲一区二区三区国产精华液 | 亚洲男女内射在线播放 | 亚洲 欧美 激情 小说 另类 | 亚洲中文字幕在线观看 | 亚洲综合无码一区二区三区 | 欧美熟妇另类久久久久久不卡 | 亚洲人成无码网www | 狠狠综合久久久久综合网 | 奇米影视7777久久精品 | 97夜夜澡人人双人人人喊 | 日本乱人伦片中文三区 | 国产亚洲精品久久久久久大师 | 欧美 日韩 亚洲 在线 | 欧美午夜特黄aaaaaa片 | 日本成熟视频免费视频 | 永久免费精品精品永久-夜色 | 久久视频在线观看精品 | 婷婷六月久久综合丁香 | 国产成人一区二区三区在线观看 | 国产精品久久久av久久久 | 欧美日韩在线亚洲综合国产人 | 性做久久久久久久免费看 | 中文字幕无码av激情不卡 | 国产97色在线 | 免 | 思思久久99热只有频精品66 | 色窝窝无码一区二区三区色欲 | 特黄特色大片免费播放器图片 | 国产免费久久精品国产传媒 | 丰满人妻一区二区三区免费视频 | 国产成人无码区免费内射一片色欲 | 无码国产色欲xxxxx视频 | 亚洲а∨天堂久久精品2021 | 熟妇女人妻丰满少妇中文字幕 | 99久久人妻精品免费一区 | 国产绳艺sm调教室论坛 | 久久国产精品偷任你爽任你 | 亚洲国产精品美女久久久久 | 在线精品亚洲一区二区 | 日韩欧美群交p片內射中文 | 性史性农村dvd毛片 | 荡女精品导航 | 国产精华av午夜在线观看 | 精品国产一区av天美传媒 | 内射巨臀欧美在线视频 | 国产精品久久久久久久9999 | 狠狠躁日日躁夜夜躁2020 | 午夜福利一区二区三区在线观看 | 国产成人av免费观看 | 国产亲子乱弄免费视频 | 亚洲日韩乱码中文无码蜜桃臀网站 | 高清不卡一区二区三区 | 色五月五月丁香亚洲综合网 | 黑人大群体交免费视频 | 在线观看国产午夜福利片 | 欧洲vodafone精品性 | 强奷人妻日本中文字幕 | 成人欧美一区二区三区黑人 | 成 人影片 免费观看 | 亚洲午夜无码久久 | 内射后入在线观看一区 | 野外少妇愉情中文字幕 | 日产精品99久久久久久 | 日韩精品无码一本二本三本色 | 亚洲国产av美女网站 | 亚洲欧美综合区丁香五月小说 | 亚洲精品一区三区三区在线观看 | 乱中年女人伦av三区 | 午夜男女很黄的视频 | 青青青手机频在线观看 | 国产激情综合五月久久 | 国产亚洲欧美日韩亚洲中文色 | 欧美性黑人极品hd | 成人影院yy111111在线观看 | 亚洲综合精品香蕉久久网 | 桃花色综合影院 | 日日摸夜夜摸狠狠摸婷婷 | 捆绑白丝粉色jk震动捧喷白浆 | 中文精品无码中文字幕无码专区 | 性欧美疯狂xxxxbbbb | 99久久久国产精品无码免费 | 国产色xx群视频射精 | 精品国产乱码久久久久乱码 | 国产麻豆精品一区二区三区v视界 | 高潮毛片无遮挡高清免费视频 | 性史性农村dvd毛片 | 99久久精品日本一区二区免费 | 国产精品无码成人午夜电影 | 成人无码精品一区二区三区 | 欧美精品在线观看 | 熟女少妇在线视频播放 | 色婷婷欧美在线播放内射 | 日韩精品a片一区二区三区妖精 | 综合网日日天干夜夜久久 | 国产偷自视频区视频 | 中文字幕乱码人妻无码久久 | 玩弄中年熟妇正在播放 | 老太婆性杂交欧美肥老太 | 一个人看的视频www在线 | 女高中生第一次破苞av | 久久天天躁狠狠躁夜夜免费观看 | 亚洲国产精品无码久久久久高潮 | 亚洲欧美日韩综合久久久 | 亚洲 激情 小说 另类 欧美 | 日本精品高清一区二区 | 亚洲国产精品美女久久久久 | 国产成人av免费观看 | 免费乱码人妻系列无码专区 | 精品国产一区av天美传媒 | 内射老妇bbwx0c0ck | 亚洲国产一区二区三区在线观看 | 综合网日日天干夜夜久久 | 成人精品一区二区三区中文字幕 | 亚洲欧洲日本综合aⅴ在线 | 18无码粉嫩小泬无套在线观看 | 国产无遮挡又黄又爽又色 | 草草网站影院白丝内射 | 在线观看国产午夜福利片 | 久久综合给久久狠狠97色 | 天堂а√在线地址中文在线 | 亚洲啪av永久无码精品放毛片 | 精品久久久中文字幕人妻 | 中文字幕色婷婷在线视频 | 无码吃奶揉捏奶头高潮视频 | 啦啦啦www在线观看免费视频 | 久久久久av无码免费网 | 日日夜夜撸啊撸 | 国产精品亚洲а∨无码播放麻豆 | 亚洲欧美国产精品久久 | 国产免费久久久久久无码 | 性做久久久久久久久 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 永久免费观看美女裸体的网站 | 国产真实伦对白全集 | 国产内射爽爽大片视频社区在线 | 波多野结衣一区二区三区av免费 | 国产肉丝袜在线观看 | 日韩 欧美 动漫 国产 制服 | 欧美黑人巨大xxxxx | 亚洲人亚洲人成电影网站色 | 精品国产福利一区二区 | 国产成人久久精品流白浆 | 一个人看的www免费视频在线观看 | 久久久精品欧美一区二区免费 | 综合激情五月综合激情五月激情1 | 最新国产乱人伦偷精品免费网站 | 日本成熟视频免费视频 | 丰满诱人的人妻3 | 亚洲爆乳大丰满无码专区 | 99久久久国产精品无码免费 | 亚洲国产综合无码一区 | 欧美 日韩 人妻 高清 中文 | 清纯唯美经典一区二区 | 久久精品丝袜高跟鞋 | 亚洲色偷偷偷综合网 | 日韩亚洲欧美中文高清在线 | 粗大的内捧猛烈进出视频 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲最大成人网站 | 国产疯狂伦交大片 | 97无码免费人妻超级碰碰夜夜 | 久久国产精品精品国产色婷婷 | 亚洲呦女专区 | 中文字幕无码乱人伦 | a在线亚洲男人的天堂 | 小泽玛莉亚一区二区视频在线 | 国产人妻大战黑人第1集 | 一本大道伊人av久久综合 | 日日摸天天摸爽爽狠狠97 | 日韩av激情在线观看 | 初尝人妻少妇中文字幕 | 伦伦影院午夜理论片 | 国产女主播喷水视频在线观看 | 国产婷婷色一区二区三区在线 | 熟女少妇在线视频播放 | 丁香啪啪综合成人亚洲 | 麻豆果冻传媒2021精品传媒一区下载 | 国产精品亚洲а∨无码播放麻豆 | 国产精品无套呻吟在线 | 精品国产麻豆免费人成网站 | 国产亚洲精品精品国产亚洲综合 | 久久久精品国产sm最大网站 | 性欧美大战久久久久久久 | 精品亚洲成av人在线观看 | 九九综合va免费看 | 欧美一区二区三区 | 蜜桃视频韩日免费播放 | 99视频精品全部免费免费观看 | 久久久成人毛片无码 | 亚洲成av人综合在线观看 | 国产乱人偷精品人妻a片 | 成人免费视频在线观看 | 午夜精品一区二区三区的区别 | а天堂中文在线官网 | 大地资源中文第3页 | 精品午夜福利在线观看 | 日韩无码专区 | 久久亚洲国产成人精品性色 | 日本熟妇浓毛 | 国产亚洲精品久久久闺蜜 | 在线亚洲高清揄拍自拍一品区 | 午夜福利不卡在线视频 | 好屌草这里只有精品 | 国产成人无码区免费内射一片色欲 | 无码人妻丰满熟妇区毛片18 | 欧美日韩一区二区免费视频 | 精品成在人线av无码免费看 | 色情久久久av熟女人妻网站 | 国产三级精品三级男人的天堂 | 大肉大捧一进一出视频出来呀 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 国产精品高潮呻吟av久久4虎 | 成 人 免费观看网站 | 国内精品久久久久久中文字幕 | 97精品国产97久久久久久免费 | 国产精品怡红院永久免费 | 装睡被陌生人摸出水好爽 | 无码国模国产在线观看 | 18禁黄网站男男禁片免费观看 | 人妻中文无码久热丝袜 | 欧美高清在线精品一区 | 一本久久a久久精品vr综合 | 性生交片免费无码看人 | 亚洲一区二区三区播放 | 黄网在线观看免费网站 | 国产女主播喷水视频在线观看 | 亚洲成色www久久网站 | 人人妻人人澡人人爽欧美一区 | 狠狠躁日日躁夜夜躁2020 | 最新国产乱人伦偷精品免费网站 | 18禁黄网站男男禁片免费观看 | 精品日本一区二区三区在线观看 | 亚洲自偷自偷在线制服 | 99久久人妻精品免费二区 | 女人被爽到呻吟gif动态图视看 | 精品aⅴ一区二区三区 | 2019午夜福利不卡片在线 | 中文亚洲成a人片在线观看 | 一本久道久久综合婷婷五月 | 精品成人av一区二区三区 | 99久久精品国产一区二区蜜芽 | 老熟女乱子伦 | 婷婷六月久久综合丁香 | 撕开奶罩揉吮奶头视频 | 人人妻人人澡人人爽欧美一区 | 国产精品丝袜黑色高跟鞋 | 精品久久久久香蕉网 | 成人免费无码大片a毛片 | 特大黑人娇小亚洲女 | 精品国产一区av天美传媒 | 欧美 亚洲 国产 另类 | 亚洲国产欧美日韩精品一区二区三区 | 亚洲欧美精品伊人久久 | 欧美三级不卡在线观看 | 午夜性刺激在线视频免费 | 色五月丁香五月综合五月 | 中文字幕乱码中文乱码51精品 | 在线а√天堂中文官网 | 欧美第一黄网免费网站 | 伦伦影院午夜理论片 | 狠狠色噜噜狠狠狠狠7777米奇 | 免费观看又污又黄的网站 | 性生交片免费无码看人 | 亚洲精品一区国产 | 亚洲乱亚洲乱妇50p | 四虎国产精品一区二区 | 在线观看欧美一区二区三区 | 国产女主播喷水视频在线观看 | 欧美zoozzooz性欧美 | www一区二区www免费 | av无码久久久久不卡免费网站 | 国产做国产爱免费视频 | 97久久精品无码一区二区 | 一本一道久久综合久久 | 天天爽夜夜爽夜夜爽 | 76少妇精品导航 | 国产性生大片免费观看性 | 欧美精品国产综合久久 | 国产情侣作爱视频免费观看 | 狠狠色噜噜狠狠狠7777奇米 | 亚洲中文无码av永久不收费 | 亚洲人成网站色7799 | 亚洲人成人无码网www国产 | 久久久久久久久888 | 欧美性生交xxxxx久久久 | 男女爱爱好爽视频免费看 | 精品国产一区二区三区av 性色 | 色五月五月丁香亚洲综合网 | 青青青爽视频在线观看 | 日韩精品一区二区av在线 | 又粗又大又硬毛片免费看 | 亚洲精品成人福利网站 | 国产精品亚洲а∨无码播放麻豆 | 亚洲欧洲中文日韩av乱码 | 男人的天堂2018无码 | 国产xxx69麻豆国语对白 | 水蜜桃色314在线观看 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 性色av无码免费一区二区三区 | 久热国产vs视频在线观看 | 狠狠色丁香久久婷婷综合五月 | 国产人妖乱国产精品人妖 | 四十如虎的丰满熟妇啪啪 | 国产97人人超碰caoprom | 日韩精品无码免费一区二区三区 | 露脸叫床粗话东北少妇 | 国产办公室秘书无码精品99 | 无套内射视频囯产 | 亚欧洲精品在线视频免费观看 | 特黄特色大片免费播放器图片 | 国产明星裸体无码xxxx视频 | 国产精品久久精品三级 | 亚洲欧美中文字幕5发布 | 欧美真人作爱免费视频 | 国产精品香蕉在线观看 | 少妇性荡欲午夜性开放视频剧场 | 青青久在线视频免费观看 | 人妻少妇精品视频专区 | 2019午夜福利不卡片在线 | 高潮毛片无遮挡高清免费 | 色婷婷av一区二区三区之红樱桃 | 嫩b人妻精品一区二区三区 | 未满小14洗澡无码视频网站 | 好屌草这里只有精品 | 国产精品国产自线拍免费软件 | 欧美35页视频在线观看 | 久久精品女人的天堂av | 日韩精品成人一区二区三区 | 成人一在线视频日韩国产 | 色婷婷综合中文久久一本 | 国产高清不卡无码视频 | 日韩亚洲欧美中文高清在线 | 久久久精品人妻久久影视 | 亚洲精品一区二区三区在线 | 国产精品对白交换视频 | 麻豆国产人妻欲求不满 | 欧美乱妇无乱码大黄a片 | 免费男性肉肉影院 | 亚洲人成无码网www | ass日本丰满熟妇pics | 丝袜 中出 制服 人妻 美腿 | 国产精品对白交换视频 | 水蜜桃色314在线观看 | 日本va欧美va欧美va精品 | 国产超级va在线观看视频 | 久青草影院在线观看国产 | 中文字幕av日韩精品一区二区 | 免费乱码人妻系列无码专区 | 亚洲人成网站在线播放942 | 日韩在线不卡免费视频一区 | 无码毛片视频一区二区本码 | 色综合久久久无码网中文 | 日韩在线不卡免费视频一区 | 国产sm调教视频在线观看 | 亚洲中文无码av永久不收费 | 野外少妇愉情中文字幕 | 午夜免费福利小电影 | 国产亚洲美女精品久久久2020 | 天堂一区人妻无码 | 熟妇人妻无码xxx视频 | 精品偷拍一区二区三区在线看 | 粉嫩少妇内射浓精videos | 欧美日韩久久久精品a片 | 国产精品无套呻吟在线 | 久久久无码中文字幕久... | 精品亚洲成av人在线观看 | 国产一区二区三区日韩精品 | 人人妻人人澡人人爽欧美一区 | 国产精华av午夜在线观看 | 国产成人一区二区三区别 | 两性色午夜视频免费播放 | 色婷婷av一区二区三区之红樱桃 | 亚洲精品久久久久久一区二区 | 久久这里只有精品视频9 | 国产午夜福利100集发布 | 精品人人妻人人澡人人爽人人 | 日本大乳高潮视频在线观看 | 丁香花在线影院观看在线播放 | 成人影院yy111111在线观看 | 99riav国产精品视频 | 亚洲精品国偷拍自产在线观看蜜桃 | 国产内射爽爽大片视频社区在线 | 国色天香社区在线视频 | 亚洲精品综合一区二区三区在线 | 欧美35页视频在线观看 | 日本熟妇乱子伦xxxx | а√资源新版在线天堂 | 久久成人a毛片免费观看网站 | 亚洲国产精品久久久久久 | 在线播放无码字幕亚洲 | 色狠狠av一区二区三区 | aⅴ在线视频男人的天堂 | 久久综合狠狠综合久久综合88 | 日韩成人一区二区三区在线观看 | 麻豆国产人妻欲求不满谁演的 | 无码人妻精品一区二区三区下载 | 国产性生大片免费观看性 | 无码av岛国片在线播放 | 国产后入清纯学生妹 | 国产亚洲欧美日韩亚洲中文色 | 初尝人妻少妇中文字幕 | 香港三级日本三级妇三级 | 蜜桃av抽搐高潮一区二区 | 国产香蕉97碰碰久久人人 | 欧美国产日韩久久mv | 性欧美牲交xxxxx视频 | 天堂亚洲2017在线观看 | 蜜桃av抽搐高潮一区二区 | 国产女主播喷水视频在线观看 | 永久免费精品精品永久-夜色 | 欧洲vodafone精品性 | 最新国产麻豆aⅴ精品无码 | 国产无遮挡又黄又爽免费视频 | 色欲久久久天天天综合网精品 | 亚洲成av人片在线观看无码不卡 | 国产乱子伦视频在线播放 | 欧美人与禽猛交狂配 | 麻豆国产丝袜白领秘书在线观看 | 亚洲成熟女人毛毛耸耸多 | 久久综合网欧美色妞网 | 无码人妻丰满熟妇区五十路百度 | 成人无码精品1区2区3区免费看 | 人妻插b视频一区二区三区 | 亚洲 高清 成人 动漫 | 亚洲色www成人永久网址 | 国产精品无码成人午夜电影 | 婷婷五月综合缴情在线视频 | 久久久精品欧美一区二区免费 | 99久久精品午夜一区二区 | 久久熟妇人妻午夜寂寞影院 | 亚洲国精产品一二二线 | 色一情一乱一伦一视频免费看 | 亚洲中文字幕在线观看 | 一个人看的www免费视频在线观看 | 四虎4hu永久免费 | 老熟女乱子伦 | 99久久久无码国产精品免费 | 亚洲国产精品一区二区第一页 | 欧美xxxx黑人又粗又长 | 国产美女极度色诱视频www | 夜夜夜高潮夜夜爽夜夜爰爰 | 亚洲成熟女人毛毛耸耸多 | 乱码午夜-极国产极内射 | 成人aaa片一区国产精品 | 国产熟妇高潮叫床视频播放 | 欧美高清在线精品一区 | 精品国偷自产在线视频 | 日韩成人一区二区三区在线观看 | 妺妺窝人体色www在线小说 | 无码国模国产在线观看 | 日韩欧美成人免费观看 | 美女扒开屁股让男人桶 | 国产 精品 自在自线 | 最新国产乱人伦偷精品免费网站 | 免费观看又污又黄的网站 | 亚洲午夜福利在线观看 | 奇米影视888欧美在线观看 | 亚洲色偷偷男人的天堂 | 国产精华av午夜在线观看 | 夜夜高潮次次欢爽av女 | 亚洲综合精品香蕉久久网 | 天天av天天av天天透 | 国产口爆吞精在线视频 | 国产精品久久久 | 99久久人妻精品免费二区 | 久久精品国产精品国产精品污 | 一本一道久久综合久久 | 国产三级久久久精品麻豆三级 | 偷窥日本少妇撒尿chinese | 欧美第一黄网免费网站 | 噜噜噜亚洲色成人网站 | 色综合久久久无码中文字幕 | 日本爽爽爽爽爽爽在线观看免 | 黑人大群体交免费视频 | 国产av剧情md精品麻豆 | 亚洲大尺度无码无码专区 | 动漫av一区二区在线观看 | 一个人看的视频www在线 | 欧美阿v高清资源不卡在线播放 | 国内精品久久久久久中文字幕 | 亚洲熟妇色xxxxx亚洲 | 国产精品美女久久久久av爽李琼 | 无码人妻少妇伦在线电影 | 中文字幕av无码一区二区三区电影 | 超碰97人人做人人爱少妇 | 草草网站影院白丝内射 | 欧美怡红院免费全部视频 | 少妇人妻av毛片在线看 | 亚洲天堂2017无码中文 | 成人免费视频视频在线观看 免费 | 玩弄少妇高潮ⅹxxxyw | 青青青爽视频在线观看 | 日韩精品a片一区二区三区妖精 | 日日橹狠狠爱欧美视频 | 成熟人妻av无码专区 | 99er热精品视频 | 日本丰满护士爆乳xxxx | 亚洲国产精品一区二区第一页 | 国产成人精品三级麻豆 | 精品久久综合1区2区3区激情 | 亚洲日韩乱码中文无码蜜桃臀网站 | 野狼第一精品社区 | 丰满人妻翻云覆雨呻吟视频 | 无遮无挡爽爽免费视频 | 国产乱人无码伦av在线a | 久久久久久a亚洲欧洲av冫 | 亚洲第一网站男人都懂 | 国产人妻大战黑人第1集 | 少妇性l交大片 | 色综合久久久无码网中文 | 国产精品久久久久7777 | 久久久www成人免费毛片 | 国产无遮挡吃胸膜奶免费看 | 水蜜桃色314在线观看 | 成人亚洲精品久久久久 | 日日鲁鲁鲁夜夜爽爽狠狠 | 桃花色综合影院 | 少妇久久久久久人妻无码 | 丁香花在线影院观看在线播放 | 日本饥渴人妻欲求不满 | 天堂一区人妻无码 | 亚洲一区二区三区四区 | 欧美 日韩 人妻 高清 中文 | 欧洲熟妇精品视频 | 98国产精品综合一区二区三区 | 中文字幕人妻无码一夲道 | 色婷婷欧美在线播放内射 | 最近免费中文字幕中文高清百度 | 亚洲日本一区二区三区在线 | 国产精品va在线播放 | 51国偷自产一区二区三区 | 国产精品亚洲五月天高清 | 欧美熟妇另类久久久久久不卡 | 精品少妇爆乳无码av无码专区 | 亚洲熟熟妇xxxx | 亚洲综合精品香蕉久久网 | 亚洲热妇无码av在线播放 | 天天摸天天透天天添 | 国产人妻久久精品二区三区老狼 | 日日摸天天摸爽爽狠狠97 | 人妻少妇精品久久 | 欧美日韩视频无码一区二区三 | 国产后入清纯学生妹 | 亚洲精品国产精品乱码不卡 | 暴力强奷在线播放无码 | 欧美精品无码一区二区三区 | 国产成人精品久久亚洲高清不卡 | 日本熟妇乱子伦xxxx | 欧美丰满熟妇xxxx | 日本www一道久久久免费榴莲 | 国产成人精品久久亚洲高清不卡 | 久久亚洲中文字幕无码 | 国产精品人人妻人人爽 | 国产精品va在线播放 | 欧美xxxx黑人又粗又长 | 国产精品人人爽人人做我的可爱 | аⅴ资源天堂资源库在线 | 国产精品久久久久影院嫩草 | 欧洲欧美人成视频在线 | 偷窥日本少妇撒尿chinese | 亚洲色欲色欲欲www在线 | 国产手机在线αⅴ片无码观看 | 又粗又大又硬又长又爽 | 免费观看的无遮挡av | 少妇人妻大乳在线视频 | 日本护士xxxxhd少妇 | 无码中文字幕色专区 | 久久国产劲爆∧v内射 | 久久99精品国产麻豆蜜芽 | 无码国内精品人妻少妇 | 欧美熟妇另类久久久久久多毛 | 精品一区二区三区无码免费视频 | 帮老师解开蕾丝奶罩吸乳网站 | 中文字幕无码乱人伦 | 中文字幕无码人妻少妇免费 | 亚洲无人区一区二区三区 | 风流少妇按摩来高潮 | 亚洲成av人片天堂网无码】 | 日日噜噜噜噜夜夜爽亚洲精品 | 久久亚洲日韩精品一区二区三区 | 欧美放荡的少妇 | 欧美zoozzooz性欧美 | 强奷人妻日本中文字幕 | 无套内谢的新婚少妇国语播放 | 色 综合 欧美 亚洲 国产 | 欧美性猛交xxxx富婆 | 精品无码成人片一区二区98 | 六月丁香婷婷色狠狠久久 | 国产疯狂伦交大片 | 人妻中文无码久热丝袜 | 久久视频在线观看精品 | yw尤物av无码国产在线观看 | 成人一在线视频日韩国产 | 无码任你躁久久久久久久 | 少妇性l交大片欧洲热妇乱xxx | 少妇太爽了在线观看 | 国产女主播喷水视频在线观看 | 天天爽夜夜爽夜夜爽 | 国产精品18久久久久久麻辣 | 国产色在线 | 国产 | 九九久久精品国产免费看小说 | 国产亚洲欧美日韩亚洲中文色 | 亚洲精品综合五月久久小说 | 男人的天堂2018无码 | 中文字幕精品av一区二区五区 | 欧美变态另类xxxx | 两性色午夜视频免费播放 | 午夜时刻免费入口 | 久久亚洲中文字幕精品一区 | 欧美性黑人极品hd | 无码福利日韩神码福利片 | 黄网在线观看免费网站 | 中文字幕乱码人妻二区三区 | 夜精品a片一区二区三区无码白浆 | 俺去俺来也www色官网 | 俄罗斯老熟妇色xxxx | 无码人妻黑人中文字幕 | 久久久无码中文字幕久... | 无码帝国www无码专区色综合 | 亚洲国产成人a精品不卡在线 | 无码人妻精品一区二区三区下载 | 日韩av无码中文无码电影 | 欧美日韩久久久精品a片 | 少妇性l交大片欧洲热妇乱xxx | 久久精品国产一区二区三区 | 无码人妻黑人中文字幕 | 丰满人妻翻云覆雨呻吟视频 | 亚洲欧洲中文日韩av乱码 | 国产熟女一区二区三区四区五区 | 欧美亚洲日韩国产人成在线播放 | 亚洲国产精品久久人人爱 | 久9re热视频这里只有精品 | 国产日产欧产精品精品app | 国产 浪潮av性色四虎 | 牲欲强的熟妇农村老妇女视频 | 亚洲啪av永久无码精品放毛片 | 丝袜人妻一区二区三区 | 大肉大捧一进一出好爽视频 | 亚洲熟女一区二区三区 | 国内精品久久毛片一区二区 | 欧美xxxxx精品 | 又色又爽又黄的美女裸体网站 | 中国女人内谢69xxxxxa片 | 亚洲色成人中文字幕网站 | 麻豆md0077饥渴少妇 | 丰满肥臀大屁股熟妇激情视频 | 欧美日韩精品 | 丰腴饱满的极品熟妇 | 性色欲网站人妻丰满中文久久不卡 | 精品无码一区二区三区爱欲 | 成人性做爰aaa片免费看 | 中文字幕无码乱人伦 | 精品国产青草久久久久福利 | 久久精品国产精品国产精品污 | 99久久久无码国产精品免费 | 99精品无人区乱码1区2区3区 | 亚洲精品中文字幕久久久久 | 国产手机在线αⅴ片无码观看 | 国产无套内射久久久国产 | 色欲久久久天天天综合网精品 | 精品久久久久久亚洲精品 | 久久这里只有精品视频9 | 国产精品久久久av久久久 | 少妇人妻大乳在线视频 | 中文字幕人成乱码熟女app | 久久精品人人做人人综合试看 | 国语自产偷拍精品视频偷 | 亚洲国产精品久久久久久 | 日本丰满熟妇videos | 久久综合网欧美色妞网 | 精品国产成人一区二区三区 | 欧洲vodafone精品性 | 久久精品国产一区二区三区 | 久久精品国产日本波多野结衣 | 97久久国产亚洲精品超碰热 | 少妇无码吹潮 | 麻豆蜜桃av蜜臀av色欲av | 1000部啪啪未满十八勿入下载 | 国产真实夫妇视频 | 国产精品办公室沙发 | 久久精品女人天堂av免费观看 | 性色av无码免费一区二区三区 | 人人妻人人澡人人爽精品欧美 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 99er热精品视频 | 精品少妇爆乳无码av无码专区 | 色婷婷欧美在线播放内射 | 无码av最新清无码专区吞精 | 色欲久久久天天天综合网精品 | 久青草影院在线观看国产 | 国产麻豆精品一区二区三区v视界 | 亚洲国产精品成人久久蜜臀 | 亚洲男人av香蕉爽爽爽爽 | 精品欧洲av无码一区二区三区 | 久久综合九色综合欧美狠狠 | 成人精品一区二区三区中文字幕 | 麻花豆传媒剧国产免费mv在线 | 色 综合 欧美 亚洲 国产 | 乱码午夜-极国产极内射 | 日本乱人伦片中文三区 | yw尤物av无码国产在线观看 | 亚洲精品鲁一鲁一区二区三区 | 久久午夜无码鲁丝片午夜精品 | 色婷婷久久一区二区三区麻豆 | 亚洲人成网站免费播放 | 熟妇人妻无码xxx视频 | 熟妇激情内射com | 狂野欧美性猛xxxx乱大交 | 窝窝午夜理论片影院 | 四虎影视成人永久免费观看视频 | 欧美亚洲日韩国产人成在线播放 | 国产成人无码午夜视频在线观看 | 久久天天躁狠狠躁夜夜免费观看 | 亚洲s码欧洲m码国产av | 久久综合久久自在自线精品自 | 国产人妻久久精品二区三区老狼 | 天堂一区人妻无码 | 亚洲色欲久久久综合网东京热 | 狠狠躁日日躁夜夜躁2020 | 国产综合色产在线精品 | 内射后入在线观看一区 | 久久精品中文字幕一区 | 亚洲色www成人永久网址 | 精品aⅴ一区二区三区 | 亚洲国产日韩a在线播放 | 一本久道高清无码视频 | 红桃av一区二区三区在线无码av | 黑森林福利视频导航 | 国产乡下妇女做爰 | 国产精品嫩草久久久久 | 三级4级全黄60分钟 | 日日天日日夜日日摸 | 国产亚洲精品久久久闺蜜 | 国产乱人偷精品人妻a片 | 九九在线中文字幕无码 | 一本一道久久综合久久 | 久久久中文久久久无码 | 亚洲国产高清在线观看视频 | 色婷婷香蕉在线一区二区 | 巨爆乳无码视频在线观看 | 久久人人爽人人爽人人片ⅴ | 人人澡人人妻人人爽人人蜜桃 | 日本又色又爽又黄的a片18禁 | 精品无码av一区二区三区 | 中国女人内谢69xxxxxa片 | 久久综合久久自在自线精品自 | 九月婷婷人人澡人人添人人爽 | 亚洲s码欧洲m码国产av | 亚洲国产精华液网站w | √天堂资源地址中文在线 | 久久综合香蕉国产蜜臀av | 国产又爽又黄又刺激的视频 | 久久熟妇人妻午夜寂寞影院 | 熟妇人妻无码xxx视频 | 亚洲人成网站色7799 | 蜜臀aⅴ国产精品久久久国产老师 | 中文字幕av日韩精品一区二区 | 亚洲 激情 小说 另类 欧美 | 日本乱人伦片中文三区 | 国产明星裸体无码xxxx视频 | 亚洲精品国产第一综合99久久 | 日韩欧美成人免费观看 | 亚洲精品国产第一综合99久久 | 最近免费中文字幕中文高清百度 | 日韩av无码一区二区三区 | 丰满岳乱妇在线观看中字无码 | 99久久精品国产一区二区蜜芽 | 亚拍精品一区二区三区探花 | 国产97在线 | 亚洲 | 天天躁日日躁狠狠躁免费麻豆 | 国产精品内射视频免费 | 亚洲欧洲无卡二区视頻 | av香港经典三级级 在线 | 亚洲日本一区二区三区在线 | 精品一区二区不卡无码av | 久久精品国产一区二区三区肥胖 | 激情人妻另类人妻伦 | 久久精品无码一区二区三区 | 奇米影视888欧美在线观看 | 欧美日韩在线亚洲综合国产人 | 成年女人永久免费看片 | 男人的天堂av网站 | 精品亚洲成av人在线观看 | 少妇无码av无码专区在线观看 | 久久综合给久久狠狠97色 | 1000部夫妻午夜免费 | 成人毛片一区二区 | 久久国产精品二国产精品 | 亚洲日韩一区二区 | 亚洲春色在线视频 | 中文字幕 亚洲精品 第1页 | 装睡被陌生人摸出水好爽 | 2020久久超碰国产精品最新 | 国产麻豆精品一区二区三区v视界 | 好男人社区资源 | 国产成人精品久久亚洲高清不卡 | 国产亚洲人成在线播放 | 国产精品无套呻吟在线 | 动漫av一区二区在线观看 | 野外少妇愉情中文字幕 | 日韩av无码一区二区三区不卡 | 秋霞成人午夜鲁丝一区二区三区 | 无码国产激情在线观看 | 国产精品办公室沙发 | 自拍偷自拍亚洲精品10p | 无码国产乱人伦偷精品视频 | 鲁鲁鲁爽爽爽在线视频观看 | 特级做a爰片毛片免费69 | 性做久久久久久久久 | 亚洲啪av永久无码精品放毛片 | 最近中文2019字幕第二页 | 牲欲强的熟妇农村老妇女视频 | 久久综合激激的五月天 | 日日摸日日碰夜夜爽av | 久久久久99精品国产片 | 日产精品高潮呻吟av久久 | 中文字幕精品av一区二区五区 | 特级做a爰片毛片免费69 | 最新国产乱人伦偷精品免费网站 | 又大又紧又粉嫩18p少妇 | 久久精品国产一区二区三区 | 国产综合在线观看 | 国产内射老熟女aaaa | 国产suv精品一区二区五 | 亚洲熟妇色xxxxx欧美老妇y | 日韩精品成人一区二区三区 | 成 人 免费观看网站 | 久久国产精品_国产精品 | 国产激情无码一区二区app | 亚洲 a v无 码免 费 成 人 a v | 中文字幕无码av激情不卡 | 蜜桃视频韩日免费播放 | 亚洲第一网站男人都懂 | 亚洲色欲色欲天天天www | 无码吃奶揉捏奶头高潮视频 | 帮老师解开蕾丝奶罩吸乳网站 | 伦伦影院午夜理论片 | 精品久久综合1区2区3区激情 | 国产高潮视频在线观看 | 久久国产精品偷任你爽任你 | 亚洲 另类 在线 欧美 制服 | 国产在线精品一区二区三区直播 | 亚洲一区二区三区在线观看网站 | 亚洲 激情 小说 另类 欧美 | 精品无码一区二区三区的天堂 | 亚洲色无码一区二区三区 | 国产真实伦对白全集 | 久久精品女人天堂av免费观看 | 久久视频在线观看精品 | 欧美日韩视频无码一区二区三 | 99久久婷婷国产综合精品青草免费 | 亚洲第一无码av无码专区 | 性欧美牲交xxxxx视频 | 日日天干夜夜狠狠爱 | 国产舌乚八伦偷品w中 | 亚洲色偷偷男人的天堂 | 亚洲国产午夜精品理论片 | 亚洲乱码国产乱码精品精 | 亚洲欧美国产精品专区久久 | 色综合视频一区二区三区 | 色综合久久久久综合一本到桃花网 | 成年美女黄网站色大免费全看 | 亚洲s码欧洲m码国产av | √8天堂资源地址中文在线 | 老子影院午夜精品无码 | 4hu四虎永久在线观看 | 最近的中文字幕在线看视频 | 欧美兽交xxxx×视频 | 日本大乳高潮视频在线观看 | 日韩精品一区二区av在线 | 久久亚洲精品中文字幕无男同 | 国产精品手机免费 | 狂野欧美性猛交免费视频 | 久久熟妇人妻午夜寂寞影院 | 最近的中文字幕在线看视频 | 亚洲综合精品香蕉久久网 | 亚洲性无码av中文字幕 | 国产午夜亚洲精品不卡 | 精品人人妻人人澡人人爽人人 | 99久久久国产精品无码免费 | 久久 国产 尿 小便 嘘嘘 | 国产人妻精品午夜福利免费 | 国产两女互慰高潮视频在线观看 | 日韩av无码中文无码电影 | 天堂亚洲2017在线观看 | 欧美日韩视频无码一区二区三 | 乱中年女人伦av三区 | 一区二区三区乱码在线 | 欧洲 | 精品夜夜澡人妻无码av蜜桃 | 任你躁国产自任一区二区三区 | 亚洲中文无码av永久不收费 | 亚洲人成人无码网www国产 | 久久久中文字幕日本无吗 | 成熟妇人a片免费看网站 | 午夜不卡av免费 一本久久a久久精品vr综合 | 国产精品美女久久久 | 99久久精品午夜一区二区 | 美女扒开屁股让男人桶 | 99国产欧美久久久精品 | 爆乳一区二区三区无码 | 亚洲熟妇自偷自拍另类 | 日韩精品成人一区二区三区 | 亚洲综合精品香蕉久久网 | 精品国产一区二区三区av 性色 | 熟女俱乐部五十路六十路av | 最新版天堂资源中文官网 | 午夜精品久久久久久久 | 色综合久久久无码中文字幕 | 免费人成网站视频在线观看 | 天堂无码人妻精品一区二区三区 | 国产成人精品三级麻豆 | 高潮毛片无遮挡高清免费 | 美女黄网站人色视频免费国产 | 亚无码乱人伦一区二区 | 99视频精品全部免费免费观看 | 免费人成在线视频无码 | 国产精品嫩草久久久久 | 日韩精品无码免费一区二区三区 | 国产午夜亚洲精品不卡 | 国产69精品久久久久app下载 | 成人影院yy111111在线观看 | aⅴ亚洲 日韩 色 图网站 播放 | 久久99精品久久久久久动态图 | 日韩欧美群交p片內射中文 | 亚洲精品无码人妻无码 | 国产一区二区三区日韩精品 | 女人被男人爽到呻吟的视频 | 正在播放东北夫妻内射 | 无码午夜成人1000部免费视频 | 欧美xxxx黑人又粗又长 | 欧美阿v高清资源不卡在线播放 | 国产三级精品三级男人的天堂 | 中文字幕人妻无码一夲道 | 成人精品一区二区三区中文字幕 | 2020久久香蕉国产线看观看 | 国产福利视频一区二区 | 色欲久久久天天天综合网精品 | 成人一在线视频日韩国产 | 亚洲综合色区中文字幕 | 中文字幕无线码免费人妻 | 一本久久a久久精品vr综合 | 国产极品美女高潮无套在线观看 | 欧美xxxx黑人又粗又长 | 亚洲码国产精品高潮在线 | 色婷婷av一区二区三区之红樱桃 | 两性色午夜视频免费播放 | 无码国产激情在线观看 | 大色综合色综合网站 | 国色天香社区在线视频 | 久久99精品国产麻豆 | 亚洲国产成人a精品不卡在线 | 中文字幕久久久久人妻 | 中国大陆精品视频xxxx | 国产精品无码mv在线观看 | 亚洲色无码一区二区三区 | 好爽又高潮了毛片免费下载 | 国产成人精品必看 | 一本大道伊人av久久综合 | 欧美午夜特黄aaaaaa片 | 色 综合 欧美 亚洲 国产 | 久久99久久99精品中文字幕 | 亚洲精品综合一区二区三区在线 | www国产亚洲精品久久网站 | 扒开双腿疯狂进出爽爽爽视频 | 欧美成人高清在线播放 | 成人影院yy111111在线观看 | 亚洲日韩一区二区 | 成人精品视频一区二区三区尤物 | 精品乱子伦一区二区三区 | 免费中文字幕日韩欧美 | 人人妻人人澡人人爽人人精品浪潮 | 久久久久国色av免费观看性色 | 中文字幕av伊人av无码av | 纯爱无遮挡h肉动漫在线播放 | 久久无码人妻影院 | 久久综合给久久狠狠97色 | 99久久婷婷国产综合精品青草免费 | 中文字幕 亚洲精品 第1页 | 国产手机在线αⅴ片无码观看 | 正在播放东北夫妻内射 | 国产精品资源一区二区 | 亚洲精品中文字幕久久久久 | 自拍偷自拍亚洲精品10p | 少妇邻居内射在线 | 国产成人综合美国十次 | 在线欧美精品一区二区三区 | 美女极度色诱视频国产 | 色综合久久网 | 亚洲综合在线一区二区三区 | 亚洲一区二区观看播放 | 亚洲春色在线视频 | √天堂中文官网8在线 | 高中生自慰www网站 | 亚洲性无码av中文字幕 | 欧美丰满熟妇xxxx | 亚洲国产精品毛片av不卡在线 | 国产乱人伦偷精品视频 | 国产深夜福利视频在线 | 亚洲精品国产精品乱码不卡 | 妺妺窝人体色www在线小说 | 国产凸凹视频一区二区 | 欧洲vodafone精品性 | 熟女少妇在线视频播放 | 荫蒂添的好舒服视频囗交 | 久久久精品欧美一区二区免费 | 国产高潮视频在线观看 | 国产精品无码成人午夜电影 | 亚洲精品久久久久avwww潮水 | 中文字幕日产无线码一区 | 国产极品美女高潮无套在线观看 | 欧美熟妇另类久久久久久不卡 | 亚洲 日韩 欧美 成人 在线观看 | 亚洲男人av天堂午夜在 | 日韩精品久久久肉伦网站 | 亚洲一区二区三区四区 | 国产亚洲精品久久久久久大师 | 欧美性猛交xxxx富婆 | 精品国产aⅴ无码一区二区 | 国产色视频一区二区三区 | 国产三级久久久精品麻豆三级 | 天天拍夜夜添久久精品大 | 国内精品一区二区三区不卡 | 亚洲国产精品久久久天堂 | 国产精品对白交换视频 | 国产人成高清在线视频99最全资源 | 狠狠色欧美亚洲狠狠色www | 亚洲国产精品毛片av不卡在线 | 久久国产精品_国产精品 | 无码福利日韩神码福利片 | 狂野欧美性猛交免费视频 | 日本在线高清不卡免费播放 | 亚洲国产精华液网站w | 国产亚洲美女精品久久久2020 | 人人爽人人澡人人人妻 | 亚洲爆乳精品无码一区二区三区 | 欧美自拍另类欧美综合图片区 | 成人免费视频视频在线观看 免费 | 无码一区二区三区在线 | 骚片av蜜桃精品一区 | 好男人www社区 | 亚洲天堂2017无码 | 欧美激情内射喷水高潮 | 熟女俱乐部五十路六十路av | 国产超碰人人爽人人做人人添 | 国产亚洲精品久久久闺蜜 | 九九综合va免费看 | 正在播放老肥熟妇露脸 | 又色又爽又黄的美女裸体网站 | 国产办公室秘书无码精品99 | 少女韩国电视剧在线观看完整 | 鲁一鲁av2019在线 | 亚洲一区av无码专区在线观看 | 精品夜夜澡人妻无码av蜜桃 | 国产网红无码精品视频 | 风流少妇按摩来高潮 | 国产精品人人爽人人做我的可爱 | 成人欧美一区二区三区黑人免费 | 好男人www社区 | 国产高潮视频在线观看 | 亚洲熟妇色xxxxx欧美老妇 | 中文字幕乱妇无码av在线 | 波多野结衣av一区二区全免费观看 | 国产亚洲精品久久久ai换 | 永久免费精品精品永久-夜色 | 成人性做爰aaa片免费看 | 亚洲欧美综合区丁香五月小说 | 久久久久久久久蜜桃 | 强开小婷嫩苞又嫩又紧视频 | 国产麻豆精品精东影业av网站 | 国产综合久久久久鬼色 | 国产在线精品一区二区高清不卡 | 精品偷自拍另类在线观看 | 99精品国产综合久久久久五月天 | 特大黑人娇小亚洲女 | 亚洲精品中文字幕久久久久 | 国产成人综合美国十次 | 综合激情五月综合激情五月激情1 | 亚洲一区二区三区在线观看网站 | aa片在线观看视频在线播放 | 给我免费的视频在线观看 | 国产莉萝无码av在线播放 | 小泽玛莉亚一区二区视频在线 | 国产极品视觉盛宴 | 色综合久久久无码网中文 | 国内少妇偷人精品视频免费 | 夜夜影院未满十八勿进 | 我要看www免费看插插视频 | 领导边摸边吃奶边做爽在线观看 | 国产无套粉嫩白浆在线 | 九月婷婷人人澡人人添人人爽 | 97久久超碰中文字幕 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国产亚洲美女精品久久久2020 | 嫩b人妻精品一区二区三区 | 精品无码一区二区三区爱欲 | 成人动漫在线观看 | 天天做天天爱天天爽综合网 | 老太婆性杂交欧美肥老太 | 国产欧美熟妇另类久久久 | 精品人妻人人做人人爽夜夜爽 | 久久综合给久久狠狠97色 | 久久午夜无码鲁丝片午夜精品 | 波多野结衣乳巨码无在线观看 | 久久精品视频在线看15 | 蜜臀av在线播放 久久综合激激的五月天 | 中文精品无码中文字幕无码专区 | 内射爽无广熟女亚洲 | 激情爆乳一区二区三区 | 国产精品嫩草久久久久 | 久久精品99久久香蕉国产色戒 | 久久久久久九九精品久 | 国产精品a成v人在线播放 | 97人妻精品一区二区三区 | 久久精品成人欧美大片 | 亚洲国产精品美女久久久久 | 国产性生大片免费观看性 | 欧美xxxxx精品 | 国产精品视频免费播放 |