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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Realm Configuration HOW-TO--官方

發布時間:2025/4/5 编程问答 13 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Realm Configuration HOW-TO--官方 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

來源:https://secure.gettinglegaldone.com/docs/realm-howto.html

Quick Start

This document describes how to configure Tomcat to support?container managed security, by connecting to an existing "database" of usernames, passwords, and user roles. You only need to care about this if you are using a web application that includes one or more?<security-constraint>?elements, and a?<login-config>?element defining how users are required to authenticate themselves. If you are not utilizing these features, you can safely skip this document.

For fundamental background information about container managed security, see the?Servlet Specification (Version 2.4), Section 12.

For information about utilizing the?Single Sign On?feature of Tomcat 6 (allowing a user to authenticate themselves once across the entire set of web applications associated with a virtual host), see?here.

Overview
What is a Realm?

A?Realm?is a "database" of usernames and passwords that identify valid users of a web application (or set of web applications), plus an enumeration of the list of?roles?associated with each valid user. You can think of roles as similar to?groups?in Unix-like operating systems, because access to specific web application resources is granted to all users possessing a particular role (rather than enumerating the list of associated usernames). A particular user can have any number of roles associated with their username.

Although the Servlet Specification describes a portable mechanism for applications to?declare?their security requirements (in the?web.xml?deployment descriptor), there is no portable API defining the interface between a servlet container and the associated user and role information. In many cases, however, it is desireable to "connect" a servlet container to some existing authentication database or mechanism that already exists in the production environment. Therefore, Tomcat 6 defines a Java interface (org.apache.catalina.Realm) that can be implemented by "plug in" components to establish this connection. Five standard plug-ins are provided, supporting connections to various sources of authentication information:

  • JDBCRealm?- Accesses authentication information stored in a relational database, accessed via a JDBC driver.
  • DataSourceRealm?- Accesses authentication information stored in a relational database, accessed via a named JNDI JDBC DataSource.
  • JNDIRealm?- Accesses authentication information stored in an LDAP based directory server, accessed via a JNDI provider.
  • MemoryRealm?- Accesses authentication information stored in an in-memory object collection, which is initialized from an XML document (conf/tomcat-users.xml).
  • JAASRealm?- Accesses authentication information through the Java Authentication & Authorization Service (JAAS) framework.

It is also possible to write your own?Realm?implementation, and integrate it with Tomcat 6. To do so, you need to:

  • Implement?org.apache.catalina.Realm,
  • Place your compiled realm in $CATALINA_HOME/lib,
  • Declare your realm as described in the "Configuring a Realm" section below,
  • Declare your realm to the?MBeans Descriptor.

?

Configuring a Realm

Before getting into the details of the standard Realm implementations, it is important to understand, in general terms, how a Realm is configured. In general, you will be adding an XML element to your?conf/server.xmlconfiguration file, that looks something like this:

<Realm className="... class name for this implementation"... other attributes for this implementation .../>

The?<Realm>?element can be nested inside any one of of the following?Container?elements. The location of the Realm element has a direct impact on the "scope" of that Realm (i.e. which web applications will share the same authentication information):

  • Inside an <Engine> element?- This Realm will be shared across ALL web applications on ALL virtual hosts, UNLESS it is overridden by a Realm element nested inside a subordinate?<Host>?or?<Context>?element.
  • Inside a <Host> element?- This Realm will be shared across ALL web applications for THIS virtual host, UNLESS it is overridden by a Realm element nested inside a subordinate?<Context>?element.
  • Inside a <Context> element?- This Realm will be used ONLY for THIS web application.
Common Features
Digested Passwords

For each of the standard?Realm?implementations, the user's password (by default) is stored in clear text. In many environments, this is undesireable because casual observers of the authentication data can collect enough information to log on successfully, and impersonate other users. To avoid this problem, the standard implementations support the concept of?digesting?user passwords. This allows the stored version of the passwords to be encoded (in a form that is not easily reversible), but that the?Realm?implementation can still utilize for authentication.

When a standard realm authenticates by retrieving the stored password and comparing it with the value presented by the user, you can select digested passwords by specifying the?digest?attribute on your?<Realm>element. The value for this attribute must be one of the digest algorithms supported by thejava.security.MessageDigest?class (SHA, MD2, or MD5). When you select this option, the contents of the password that is stored in the?Realm?must be the cleartext version of the password, as digested by the specified algorithm.

When the?authenticate()?method of the Realm is called, the (cleartext) password specified by the user is itself digested by the same algorithm, and the result is compared with the value returned by the?Realm. An equal match implies that the cleartext version of the original password is the same as the one presented by the user, so that this user should be authorized.

To calculate the digested value of a cleartext password, two convenience techniques are supported:

  • If you are writing an application that needs to calculate digested passwords dynamically, call the static?Digest()?method of the?org.apache.catalina.realm.RealmBase?class, passing the cleartext password and the digest algorithm name as arguments. This method will return the digested password.
  • If you want to execute a command line utility to calculate the digested password, simply execute
    java org.apache.catalina.realm.RealmBase \-a {algorithm} {cleartext-password}
    and the digested version of this cleartext password will be returned to standard output.

If using digested passwords with DIGEST authentication, the cleartext used to generate the digest is different. In the examples above?{cleartext-password}?must be replaced with?{username}:{realm}:{cleartext-password}. For example, in a development environment this might take the form?testUser:localhost:8080:testPassword.

To use either of the above techniques, the?$CATALINA_HOME/lib/catalina.jar?and?$CATALINA_HOME/bin/tomcat-juli.jarfiles will need to be on your class path to make the?RealmBase?class available.

Non-ASCII usernames and/or passwords are supported using

java org.apache.catalina.realm.RealmBase \-a {algorithm} -e {encoding} {input}
but care is required to ensure that the non-ASCII input is correctly passed to the digester. The digester returns?{input}:{digest}. If the input appears corrupted in the return, the digest will be invalid.

?

Example Application

The example application shipped with Tomcat 6 includes an area that is protected by a security constraint, utilizing form-based login. To access it, point your browser athttp://localhost:8080/examples/jsp/security/protected/?and log on with one of the usernames and passwords described for the default?MemoryRealm.

Manager Application

If you wish to use the?Manager Application?to deploy and undeploy applications in a running Tomcat 6 installation, you MUST add the "manager" role to at least one username in your selected Realm implementation. This is because the manager web application itself uses a security constraint that requires role "manager" to access ANY request URI within that application.

For security reasons, no username in the default Realm (i.e. using?conf/tomcat-users.xml?is assigned the "manager" role. Therfore, no one will be able to utilize the features of this application until the Tomcat administrator specifically assigns this role to one or more users.

Realm Logging

Debugging and exception messages logged by a?Realm?will be recorded by the logging configuration associated with the container for the realm: its surrounding?Context,?Host, or?Engine.

Standard Realm Implementations
JDBCRealm

Introduction

JDBCRealm?is an implementation of the Tomcat 6?Realm?interface that looks up users in a relational database accessed via a JDBC driver. There is substantial configuration flexibility that lets you adapt to existing table and column names, as long as your database structure conforms to the following requirements:

  • There must be a table, referenced below as the?users?table, that contains one row for every valid user that this?Realm?should recognize.
  • The?users?table must contain at least two columns (it may contain more if your existing applications required it):
    • Username to be recognized by Tomcat when the user logs in.
    • Password to be recognized by Tomcat when the user logs in. This value may in cleartext or digested - see below for more information.
  • There must be a table, referenced below as the?user roles?table, that contains one row for every valid role that is assigned to a particular user. It is legal for a user to have zero, one, or more than one valid role.
  • The?user roles?table must contain at least two columns (it may contain more if your existing applications required it):
    • Username to be recognized by Tomcat (same value as is specified in the?users?table).
    • Role name of a valid role associated with this user.

Quick Start

To set up Tomcat to use JDBCRealm, you will need to follow these steps:

  • If you have not yet done so, create tables and columns in your database that conform to the requirements described above.
  • Configure a database username and password for use by Tomcat, that has at least read only access to the tables described above. (Tomcat will never attempt to write to these tables.)
  • Place a copy of the JDBC driver you will be using inside the?$CATALINA_HOME/lib?directory. Note that?onlyJAR files are recognized!
  • Set up a?<Realm>?element, as described below, in your?$CATALINA_BASE/conf/server.xml?file.
  • Restart Tomcat 6 if it is already running.
  • Realm Element Attributes

    To configure JDBCRealm, you will create a?<Realm>?element and nest it in your?$CATALINA_BASE/conf/server.xml?file, as described?above. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.JDBCRealm" here.

    connectionName

    The database username used to establish a JDBC connection.

    connectionPassword

    The database password used to establish a JDBC connection.

    connectionURL

    The database URL used to establish a JDBC connection.

    digest

    The digest algorithm used to store passwords in non-plaintext formats. Valid values are those accepted for the algorithm name by the?java.security.MessageDigest?class. SeeDigested Passwords?for more information. If not specified, passwords are stored in clear text.

    driverName

    The fully qualified Java class name of the JDBC driver to be used. Consult the documentation for your JDBC driver for the appropriate value.

    roleNameCol

    The name of the column, in the?user roles?table, that contains the name of a role assigned to this user.

    userCredCol

    The name of the column, in the?users?table, that contains the password for this user (either in clear text, or digested if the?digest?attribute is set).

    userNameCol

    The name of the column, in the?users?and?user roles?tables, that contains the username of this user.

    userRoleTable

    The name of the table that contains one row for each?role?assigned to a particularusername. This table must include at least the columns named by the?userNameCol?androleNameCol?attributes.

    userTable

    The name of the table that contains one row for each?username?to be recognized by Tomcat. This table must include at least the columns named by the?userNameCol?anduserCredCol?attributes.

    Example

    An example SQL script to create the needed tables might look something like this (adapt the syntax as required for your particular database):

    create table users (user_name varchar(15) not null primary key,user_pass varchar(15) not null );create table user_roles (user_name varchar(15) not null,role_name varchar(15) not null,primary key (user_name, role_name) );

    Example?Realm?elements are included (commented out) in the default?$CATALINA_BASE/conf/server.xml?file. Here's an example for using a MySQL database called "authority", configured with the tables described above, and accessed with username "dbuser" and password "dbpass":

    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"driverName="org.gjt.mm.mysql.Driver"connectionURL="jdbc:mysql://localhost/authority?user=dbuser&amp;password=dbpass"userTable="users" userNameCol="user_name" userCredCol="user_pass"userRoleTable="user_roles" roleNameCol="role_name"/>

    Additional Notes

    JDBCRealm operates according to the following rules:

    • When a user attempts to access a protected resource for the first time, Tomcat 6 will call theauthenticate()?method of this?Realm. Thus, any changes you have made to the database directly (new users, changed passwords or roles, etc.) will be immediately reflected.
    • Once a user has been authenticated, the user (and his or her associated roles) are cached within Tomcat for the duration of the user's login. (For FORM-based authentication, that means until the session times out or is invalidated; for BASIC authentication, that means until the user closes their browser). The cached user is?not?saved and restored across sessions serialisations. Any changes to the database information for an already authenticated user will?not?be reflected until the next time that user logs on again.
    • Administering the information in the?users?and?user roles?table is the responsibility of your own applications. Tomcat does not provide any built-in capabilities to maintain users and roles.
    DataSourceRealm

    Introduction

    DataSourceRealm?is an implementation of the Tomcat 6?Realm?interface that looks up users in a relational database accessed via a JNDI named JDBC DataSource. There is substantial configuration flexibility that lets you adapt to existing table and column names, as long as your database structure conforms to the following requirements:

    • There must be a table, referenced below as the?users?table, that contains one row for every valid user that this?Realm?should recognize.
    • The?users?table must contain at least two columns (it may contain more if your existing applications required it):
      • Username to be recognized by Tomcat when the user logs in.
      • Password to be recognized by Tomcat when the user logs in. This value may in cleartext or digested - see below for more information.
    • There must be a table, referenced below as the?user roles?table, that contains one row for every valid role that is assigned to a particular user. It is legal for a user to have zero, one, or more than one valid role.
    • The?user roles?table must contain at least two columns (it may contain more if your existing applications required it):
      • Username to be recognized by Tomcat (same value as is specified in the?users?table).
      • Role name of a valid role associated with this user.

    Quick Start

    To set up Tomcat to use DataSourceRealm, you will need to follow these steps:

  • If you have not yet done so, create tables and columns in your database that conform to the requirements described above.
  • Configure a database username and password for use by Tomcat, that has at least read only access to the tables described above. (Tomcat will never attempt to write to these tables.)
  • Configure a JNDI named JDBC DataSource for your database. Refer to the?JNDI DataSource Example HOW-TOfor information on how to configure a JNDI named JDBC DataSource.
  • Set up a?<Realm>?element, as described below, in your?$CATALINA_BASE/conf/server.xml?file.
  • Restart Tomcat 6 if it is already running.
  • Realm Element Attributes

    To configure DataSourceRealm, you will create a?<Realm>?element and nest it in your?$CATALINA_BASE/conf/server.xmlfile, as described?above. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.DataSourceRealm" here.

    dataSourceName

    The JNDI named JDBC DataSource for your database. If the DataSource is local to the context, the name is relative to?java:/comp/env, and otherwise the name should match the name used to define the global DataSource.

    digest

    The digest algorithm used to store passwords in non-plaintext formats. Valid values are those accepted for the algorithm name by the?java.security.MessageDigest?class. See?Digested Passwords?for more information. If not specified, passwords are stored in clear text.

    localDataSource

    When the realm is nested inside a Context element, this allows the realm to use a DataSource defined for the Context rather than a global DataSource. If not specified, the default is?false: use a global DataSource.

    roleNameCol

    The name of the column, in the?user roles?table, that contains the name of a role assigned to this user.

    userCredCol

    The name of the column, in the?users?table, that contains the password for this user (either in clear text, or digested if the?digest?attribute is set).

    userNameCol

    The name of the column, in the?users?and?user roles?tables, that contains the username of this user.

    userRoleTable

    The name of the table that contains one row for each?role?assigned to a particularusername. This table must include at least the columns named by the?userNameCol?androleNameCol?attributes.

    userTable

    The name of the table that contains one row for each?username?to be recognized by Tomcat. This table must include at least the columns named by the?userNameCol?and?userCredColattributes.

    Example

    An example SQL script to create the needed tables might look something like this (adapt the syntax as required for your particular database):

    create table users (user_name varchar(15) not null primary key,user_pass varchar(15) not null );create table user_roles (user_name varchar(15) not null,role_name varchar(15) not null,primary key (user_name, role_name) );

    Here is an example for using a MySQL database called "authority", configured with the tables described above, and accessed with the JNDI JDBC DataSource with name "java:/comp/env/jdbc/authority".

    <Realm className="org.apache.catalina.realm.DataSourceRealm" debug="99"dataSourceName="jdbc/authority"userTable="users" userNameCol="user_name" userCredCol="user_pass"userRoleTable="user_roles" roleNameCol="role_name"/>

    Additional Notes

    DataSourceRealm operates according to the following rules:

    • When a user attempts to access a protected resource for the first time, Tomcat 6 will call theauthenticate()?method of this?Realm. Thus, any changes you have made to the database directly (new users, changed passwords or roles, etc.) will be immediately reflected.
    • Once a user has been authenticated, the user (and his or her associated roles) are cached within Tomcat for the duration of the user's login. (For FORM-based authentication, that means until the session times out or is invalidated; for BASIC authentication, that means until the user closes their browser). The cached user is?not?saved and restored across sessions serialisations. Any changes to the database information for an already authenticated user will?not?be reflected until the next time that user logs on again.
    • Administering the information in the?users?and?user roles?table is the responsibility of your own applications. Tomcat does not provide any built-in capabilities to maintain users and roles.
    JNDIRealm

    Introduction

    JNDIRealm?is an implementation of the Tomcat 6?Realm?interface that looks up users in an LDAP directory server accessed by a JNDI provider (typically, the standard LDAP provider that is available with the JNDI API classes). The realm supports a variety of approaches to using a directory for authentication.

    Connecting to the directory

    The realm's connection to the directory is defined by the?connectionURL?configuration attribute. This is a URL whose format is defined by the JNDI provider. It is usually an LDAP URL that specifies the domain name of the directory server to connect to, and optionally the port number and distinguished name (DN) of the required root naming context.

    If you have more than one provider you can configure an?alternateURL. If a socket connection can not be made to the provider at the?connectionURL?an attempt will be made to use the?alternateURL.

    When making a connection in order to search the directory and retrieve user and role information, the realm authenticates itself to the directory with the username and password specified by the?connectionName?andconnectionPassword?properties. If these properties are not specified the connection is anonymous. This is sufficient in many cases.

    Selecting the user's directory entry

    Each user that can be authenticated must be represented in the directory by an individual entry that corresponds to an element in the initial?DirContext?defined by the?connectionURL?attribute. This user entry must have an attribute containing the username that is presented for authentication.

    Often the distinguished name of the user's entry contains the username presented for authentication but is otherwise the same for all users. In this case the?userPattern?attribute may be used to specify the DN, with "{0}" marking where the username should be substituted.

    Otherwise the realm must search the directory to find a unique entry containing the username. The following attributes configure this search:

    • userBase?- the entry that is the base of the subtree containing users. If not specified, the search base is the top-level context.
    • userSubtree?- the search scope. Set to?true?if you wish to search the entire subtree rooted at theuserBase?entry. The default value of?false?requests a single-level search including only the top level.
    • userSearch?- pattern specifying the LDAP search filter to use after substitution of the username.

    ?

    Authenticating the user

    • Bind mode

      By default the realm authenticates a user by binding to the directory with the DN of the entry for that user and the password presented by the user. If this simple bind succeeds the user is considered to be authenticated.

      For security reasons a directory may store a digest of the user's password rather than the clear text version (see?Digested Passwords?for more information). In that case, as part of the simple bind operation the directory automatically computes the correct digest of the plaintext password presented by the user before validating it against the stored value. In bind mode, therefore, the realm is not involved in digest processing. The?digest?attribute is not used, and will be ignored if set.

    • Comparison mode

      Alternatively, the realm may retrieve the stored password from the directory and compare it explicitly with the value presented by the user. This mode is configured by setting the?userPassword?attribute to the name of a directory attribute in the user's entry that contains the password.

      Comparison mode has some disadvantages. First, the?connectionName?and?connectionPassword?attributes must be configured to allow the realm to read users' passwords in the directory. For security reasons this is generally undesirable; indeed many directory implementations will not allow even the directory manager to read these passwords. In addition, the realm must handle password digests itself, including variations in the algorithms used and ways of representing password hashes in the directory. However, the realm may sometimes need access to the stored password, for example to support HTTP Digest Access Authentication (RFC 2069). (Note that HTTP digest authentication is different from the storage of password digests in the repository for user information as discussed above).

    Assigning roles to the user

    The directory realm supports two approaches to the representation of roles in the directory:

    • Roles as explicit directory entries

      Roles may be represented by explicit directory entries. A role entry is usually an LDAP group entry with one attribute containing the name of the role and another whose values are the distinguished names or usernames of the users in that role. The following attributes configure a directory search to find the names of roles associated with the authenticated user:

      • roleBase?- the base entry for the role search. If not specified, the search base is the top-level directory context.
      • roleSubtree?- the search scope. Set to?true?if you wish to search the entire subtree rooted at theroleBase?entry. The default value of?false?requests a single-level search including the top level only.
      • roleSearch?- the LDAP search filter for selecting role entries. It optionally includes pattern replacements "{0}" for the distinguished name and/or "{1}" for the username of the authenticated user.
      • roleName?- the attribute in a role entry containing the name of that role.
    • Roles as an attribute of the user entry

      Role names may also be held as the values of an attribute in the user's directory entry. UseuserRoleName?to specify the name of this attribute.

    A combination of both approaches to role representation may be used.

    Quick Start

    To set up Tomcat to use JNDIRealm, you will need to follow these steps:

  • Make sure your directory server is configured with a schema that matches the requirements listed above.
  • If required, configure a username and password for use by Tomcat, that has read only access to the information described above. (Tomcat will never attempt to modify this information.)
  • Place a copy of the JNDI driver you will be using (typically?ldap.jar?available with JNDI) inside the$CATALINA_HOME/lib?directory.
  • Set up a?<Realm>?element, as described below, in your?$CATALINA_BASE/conf/server.xml?file.
  • Restart Tomcat 6 if it is already running.
  • Realm Element Attributes

    To configure JNDIRealm, you will create a?<Realm>?element and nest it in your?$CATALINA_BASE/conf/server.xml?file, as described?above. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.JNDIRealm" here.

    alternateURL

    If a socket connection can not be made to the provider at the?connectionURL?an attempt will be made to use the?alternateURL.

    authentication

    A string specifying the type of authentication to use. "none", "simple", "strong" or a provider specific definition can be used. If no value is given the providers default is used.

    connectionName

    The directory username to use when establishing a connection to the directory for LDAP search operations. If not specified an anonymous connection is made, which is often sufficient unless you specify the?userPassword?property.

    connectionPassword

    The directory password to use when establishing a connection to the directory for LDAP search operations. If not specified an anonymous connection is made, which is often sufficient unless you specify the?userPassword?property.

    connectionURL

    The connection URL to be passed to the JNDI driver when establishing a connection to the directory.

    contextFactory

    The fully qualified Java class name of the JNDI context factory to be used for this connection. By default, the standard JNDI LDAP provider is used (com.sun.jndi.ldap.LdapCtxFactory).

    digest

    The digest algorithm to apply to the plaintext password offered by the user before comparing it with the value retrieved from the directory. Valid values are those accepted for the algorithm name by the?java.security.MessageDigest?class. See?Digested Passwords?for more information. If not specified the plaintext password is assumed to be retrieved. Not required unless?userPassword?is specified

    protocol

    A string specifying the security protocol to use. If not given the providers default is used.

    roleBase

    The base directory entry for performing role searches. If not specified, the top level element in the directory context will be used.

    roleName

    The name of the attribute that contains role names in the directory entries found by a role search. In addition you can use the?userRoleName?property to specify the name of an attribute, in the user's entry, containing additional role names. If?roleName?is not specified a role search does not take place, and roles are taken only from the user's entry.

    roleSearch

    The LDAP filter expression used for performing role searches, following the syntax supported by the?java.text.MessageFormat?class. Use?{0}?to substitute the distinguished name (DN) of the user, and/or?{1}?to substitute the username. If not specified a role search does not take place and roles are taken only from the attribute in the user's entry specified by the?userRoleName?property.

    roleSubtree

    Set to?true?if you want to search the entire subtree of the element specified by theroleBase?property for role entries associated with the user. The default value of?falsecauses only the top level to be searched.

    userBase

    The base element for user searches performed using the?userSearch?expression. If not specified, the top level element in the directory context will be used. Not used if you are using the?userPattern?expression.

    userPassword

    Name of the attribute in the user's entry containing the user's password. If you specify this value, JNDIRealm will bind to the directory using the values specified byconnectionName?and?connectionPassword?properties, and retrieve the corresponding attribute for comparison to the value specified by the user being authenticated. If the?digestattribute is set, the specified digest algorithm is applied to the password offered by the user before comparing it with the value retrieved from the directory. If you do?notspecify this value, JNDIRealm will attempt a simple bind to the directory using the DN of the user's entry and password specified by the user, with a successful bind being interpreted as an authenticated user.

    userPattern

    A pattern for the distinguished name (DN) of the user's directory entry, following the syntax supported by the?java.text.MessageFormat?class with?{0}?marking where the actual username should be inserted. You can use this property instead of?userSearch,?userSubtreeand?userBase?when the distinguished name contains the username and is otherwise the same for all users.

    userRoleName

    The name of an attribute in the user's directory entry containing zero or more values for the names of roles assigned to this user. In addition you can use the?roleName?property to specify the name of an attribute to be retrieved from individual role entries found by searching the directory. If?userRoleName?is not specified all the roles for a user derive from the role search.

    userSearch

    The LDAP filter expression to use when searching for a user's directory entry, with?{0}marking where the actual username should be inserted. Use this property (along with theuserBase?and?userSubtree?properties) instead of?userPattern?to search the directory for the user's entry.

    userSubtree

    Set to?true?if you want to search the entire subtree of the element specified by theuserBase?property for the user's entry. The default value of?false?causes only the top level to be searched. Not used if you are using the?userPattern?expression.

    Example

    Creation of the appropriate schema in your directory server is beyond the scope of this document, because it is unique to each directory server implementation. In the examples below, we will assume that you are using a distribution of the OpenLDAP directory server (version 2.0.11 or later), which can be downloaded fromhttp://www.openldap.org. Assume that your?slapd.conf?file contains the following settings (among others):

    database ldbm suffix dc="mycompany",dc="com" rootdn "cn=Manager,dc=mycompany,dc=com" rootpw secret

    We will assume for?connectionURL?that the directory server runs on the same machine as Tomcat. Seehttp://java.sun.com/products/jndi/docs.html?for more information about configuring and using the JNDI LDAP provider.

    Next, assume that this directory server has been populated with elements as shown below (in LDIF format):

    # Define top-level entry dn: dc=mycompany,dc=com objectClass: dcObject dc:mycompany# Define an entry to contain people # searches for users are based on this entry dn: ou=people,dc=mycompany,dc=com objectClass: organizationalUnit ou: people# Define a user entry for Janet Jones dn: uid=jjones,ou=people,dc=mycompany,dc=com objectClass: inetOrgPerson uid: jjones sn: jones cn: janet jones mail: j.jones@mycompany.com userPassword: janet# Define a user entry for Fred Bloggs dn: uid=fbloggs,ou=people,dc=mycompany,dc=com objectClass: inetOrgPerson uid: fbloggs sn: bloggs cn: fred bloggs mail: f.bloggs@mycompany.com userPassword: fred# Define an entry to contain LDAP groups # searches for roles are based on this entry dn: ou=groups,dc=mycompany,dc=com objectClass: organizationalUnit ou: groups# Define an entry for the "tomcat" role dn: cn=tomcat,ou=groups,dc=mycompany,dc=com objectClass: groupOfUniqueNames cn: tomcat uniqueMember: uid=jjones,ou=people,dc=mycompany,dc=com uniqueMember: uid=fbloggs,ou=people,dc=mycompany,dc=com# Define an entry for the "role1" role dn: cn=role1,ou=groups,dc=mycompany,dc=com objectClass: groupOfUniqueNames cn: role1 uniqueMember: uid=fbloggs,ou=people,dc=mycompany,dc=com

    An example?Realm?element for the OpenLDAP directory server configured as described above might look like this, assuming that users use their uid (e.g. jjones) to login to the application and that an anonymous connection is sufficient to search the directory and retrieve role information:

    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"connectionURL="ldap://localhost:389"userPattern="uid={0},ou=people,dc=mycompany,dc=com"roleBase="ou=groups,dc=mycompany,dc=com"roleName="cn"roleSearch="(uniqueMember={0})" />

    With this configuration, the realm will determine the user's distinguished name by substituting the username into the?userPattern, authenticate by binding to the directory with this DN and the password received from the user, and search the directory to find the user's roles.

    Now suppose that users are expected to enter their email address rather than their userid when logging in. In this case the realm must search the directory for the user's entry. (A search is also necessary when user entries are held in multiple subtrees corresponding perhaps to different organizational units or company locations).

    Further, suppose that in addition to the group entries you want to use an attribute of the user's entry to hold roles. Now the entry for Janet Jones might read as follows:

    dn: uid=jjones,ou=people,dc=mycompany,dc=com objectClass: inetOrgPerson uid: jjones sn: jones cn: janet jones mail: j.jones@mycompany.com memberOf: role2 memberOf: role3 userPassword: janet

    This realm configuration would satisfy the new requirements:

    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"connectionURL="ldap://localhost:389"userBase="ou=people,dc=mycompany,dc=com"userSearch="(mail={0})"userRoleName="memberOf"roleBase="ou=groups,dc=mycompany,dc=com"roleName="cn"roleSearch="(uniqueMember={0})" />

    Now when Janet Jones logs in as "j.jones@mycompany.com", the realm searches the directory for a unique entry with that value as its mail attribute and attempts to bind to the directory asuid=jjones,ou=people,dc=mycompany,dc=com?with the given password. If authentication succeeds, she is assigned three roles: "role2" and "role3", the values of the "memberOf" attribute in her directory entry, and "tomcat", the value of the "cn" attribute in the only group entry of which she is a member.

    Finally, to authenticate the user by retrieving the password from the directory and making a local comparison in the realm, you might use a realm configuration like this:

    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"connectionName="cn=Manager,dc=mycompany,dc=com" connectionPassword="secret"connectionURL="ldap://localhost:389"userPassword="userPassword"userPattern="uid={0},ou=people,dc=mycompany,dc=com"roleBase="ou=groups,dc=mycompany,dc=com"roleName="cn"roleSearch="(uniqueMember={0})" />

    However, as discussed above, the default bind mode for authentication is usually to be preferred.

    Additional Notes

    JNDIRealm operates according to the following rules:

    • When a user attempts to access a protected resource for the first time, Tomcat 6 will call theauthenticate()?method of this?Realm. Thus, any changes you have made to the directory (new users, changed passwords or roles, etc.) will be immediately reflected.
    • Once a user has been authenticated, the user (and his or her associated roles) are cached within Tomcat for the duration of the user's login. (For FORM-based authentication, that means until the session times out or is invalidated; for BASIC authentication, that means until the user closes their browser). The cached user is?not?saved and restored across sessions serialisations. Any changes to the directory information for an already authenticated user will?not?be reflected until the next time that user logs on again.
    • Administering the information in the directory server is the responsibility of your own applications. Tomcat does not provide any built-in capabilities to maintain users and roles.
    MemoryRealm

    Introduction

    MemoryRealm?is a simple demonstration implementation of the Tomcat 6?Realm?interface. It is not designed for production use. At startup time, MemoryRealm loads information about all users, and their corresponding roles, from an XML document (by default, this document is loaded from?$CATALINA_BASE/conf/tomcat-users.xml). Changes to the data in this file are not recognized until Tomcat is restarted.

    Realm Element Attributes

    To configure MemoryRealm, you will create a?<Realm>?element and nest it in your?$CATALINA_BASE/conf/server.xmlfile, as described?above. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.MemoryRealm" here.

    digest

    The digest algorithm used to store passwords in non-plaintext formats. Valid values are those accepted for the algorithm name by the?java.security.MessageDigest?class. See?Digested Passwords?for more information. If not specified, passwords are stored in clear text.

    pathname

    Absolute or relative (to $CATALINA_BASE) pathname of the XML document containing our valid usernames, passwords, and roles. See below for more information on the format of this file. If not specified, the value?conf/tomcat-users.xml?is used.

    User File Format

    The users file (by default,?conf/tomcat-users.xml?must be an XML document, with a root element?<tomcat-users>. Nested inside the root element will be a?<user>?element for each valid user, consisting of the following attributes:

    • name?- Username this user must log on with.
    • password?- Password this user must log on with (in clear text if the?digest?attribute was not set on the<Realm>?element, or digested appropriately as described?here?otherwise).
    • roles?- Comma-delimited list of the role names associated with this user.

    Example

    The default installation of Tomcat 6 is configured with a MemoryRealm nested inside the?<Engine>?element, so that it applies to all virtual hosts and web applications. The default contents of the?conf/tomcat-users.xmlfile is:

    <tomcat-users><user name="tomcat" password="tomcat" roles="tomcat" /><user name="role1" password="tomcat" roles="role1" /><user name="both" password="tomcat" roles="tomcat,role1" /> </tomcat-users>

    Additional Notes

    MemoryRealm operates according to the following rules:

    • When Tomcat first starts up, it loads all defined users and their associated information from the users file. Changes to the data in this file will?not?be recognized until Tomcat is restarted.
    • When a user attempts to access a protected resource for the first time, Tomcat 6 will call theauthenticate()?method of this?Realm.
    • Once a user has been authenticated, the user (and his or her associated roles) are cached within Tomcat for the duration of the user's login. (For FORM-based authentication, that means until the session times out or is invalidated; for BASIC authentication, that means until the user closes their browser). The cached user is?not?saved and restored across sessions serialisations.
    • Administering the information in the users file is the responsibility of your application. Tomcat does not provide any built-in capabilities to maintain users and roles.
    JAASRealm

    Introduction

    JAASRealm?is an implementation of the Tomcat 6?Realm?interface that authenticates users through the Java Authentication & Authorization Service (JAAS) framework which is now provided as part of the standard J2SE API.

    Using JAASRealm gives the developer the ability to combine practically any conceivable security realm with Tomcat's CMA.

    JAASRealm is prototype for Tomcat of the JAAS-based J2EE authentication framework for J2EE v1.4, based on theJCP Specification Request 196?to enhance container-managed security and promote 'pluggable' authentication mechanisms whose implementations would be container-independent.

    Based on the JAAS login module and principal (see?javax.security.auth.spi.LoginModule?and?javax.security.Principal), you can develop your own security mechanism or wrap another third-party mechanism for integration with the CMA as implemented by Tomcat.

    Quick Start

    To set up Tomcat to use JAASRealm with your own JAAS login module, you will need to follow these steps:

  • Write your own LoginModule, User and Role classes based on JAAS (see?the JAAS Authentication Tutorialand?the JAAS Login Module Developer's Guide) to be managed by the JAAS Login Context (javax.security.auth.login.LoginContext) When developing your LoginModule, note that JAASRealm's built-inCallbackHandler?only recognizes the?NameCallback?and?PasswordCallback?at present.
  • Although not specified in JAAS, you should create seperate classes to distinguish between users and roles, extending?javax.security.Principal, so that Tomcat can tell which Principals returned from your login module are users and which are roles (see?org.apache.catalina.realm.JAASRealm). Regardless, the first Principal returned is?always?treated as the user Principal.
  • Place the compiled classes on Tomcat's classpath
  • Set up a login.config file for Java (see?JAAS LoginConfig file) and tell Tomcat where to find it by specifying its location to the JVM, for instance by setting the environment variable:?JAVA_OPTS=$JAVA_OPTS -Djava.security.auth.login.config==$CATALINA_BASE/conf/jaas.config
  • Configure your security-constraints in your web.xml for the resources you want to protect
  • Configure the JAASRealm module in your server.xml
  • Restart Tomcat 6 if it is already running.
  • Realm Element Attributes

    To configure JAASRealm as for step 6 above, you create a?<Realm>?element and nest it in your$CATALINA_BASE/conf/server.xml?file within your?<Engine>?node. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.JAASRealm" here.

    appName

    The name of the application as configured in your login configuration file (JAAS LoginConfig).

    userClassNames

    A comma-seperated list of the names of the classes that you have made for your userPrincipals.

    roleClassNames

    A comma-seperated list of the names of the classes that you have made for your rolePrincipals.

    useContextClassLoader

    Instructs JAASRealm to use the context class loader for loading the user-specifiedLoginModule?class and associated?Principal?classes. The default value is?true, which is backwards-compatible with the way Tomcat 4 works. To load classes using the container's classloader, specify?false.

    Example

    Here is an example of how your server.xml snippet should look.

    <Realm className="org.apache.catalina.realm.JAASRealm" appName="MyFooRealm" userClassNames="org.foobar.realm.FooUser" roleClassNames="org.foobar.realm.FooRole" debug="99"/>

    It is the responsibility of your login module to create and save User and Role objects representing Principals for the user (javax.security.auth.Subject). If your login module doesn't create a user object but also doesn't throw a login exception, then the Tomcat CMA will break and you will be left at the http://localhost:8080/myapp/j_security_check URI or at some other unspecified location.

    The flexibility of the JAAS approach is two-fold:

    • you can carry out whatever processing you require behind the scenes in your own login module.
    • you can plug in a completely different LoginModule by changing the configuration and restarting the server, without any code changes to your application.

    Additional Notes

    • When a user attempts to access a protected resource for the first time, Tomcat 6 will call theauthenticate()?method of this?Realm. Thus, any changes you have made in the security mechanism directly (new users, changed passwords or roles, etc.) will be immediately reflected.
    • Once a user has been authenticated, the user (and his or her associated roles) are cached within Tomcat for the duration of the user's login. For FORM-based authentication, that means until the session times out or is invalidated; for BASIC authentication, that means until the user closes their browser. Any changes to the security information for an already authenticated user will?not?be reflected until the next time that user logs on again.
    • As with other?Realm?implementations, digested passwords are supported if the?<Realm>?element in?server.xmlcontains a?digest?attribute; JAASRealm's?CallbackHandler?will digest the password prior to passing it back to the?LoginModule
    CombinedRealm

    Introduction

    CombinedRealm?is an implementation of the Tomcat 6?Realm?interface that authenticates users through one or more sub-Realms.

    Using CombinedRealm gives the developer the ability to combine multiple Realms of the same or different types. This can be used to authenticate against different sources, provide fall back in case one Realm fails or for any other purpose that requires multiple Realms.

    Sub-realms are defined by nesting?Realm?elements inside the?Realm?element that defines the CombinedRealm. Authentication will be attempted against each?Realm?in the order they are listed. Authentication against any Realm will be sufficient to authenticate the user.

    Realm Element Attributes

    To configure a CombinedRealm, you create a?<Realm>?element and nest it in your?$CATALINA_BASE/conf/server.xml?file within your?<Engine>?or?<Host>. You can also nest inside a?<Context>?node in a?context.xml?file. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.CombinedRealm" here.

    Example

    Here is an example of how your server.xml snippet should look to use a UserDatabase Realm and a DataSource Realm.

    <Realm className="org.apache.catalina.realm.CombinedRealm" ><Realm className="org.apache.catalina.realm.UserDatabaseRealm"resourceName="UserDatabase"/><Realm className="org.apache.catalina.realm.DataSourceRealm" debug="99"dataSourceName="jdbc/authority"userTable="users" userNameCol="user_name" userCredCol="user_pass"userRoleTable="user_roles" roleNameCol="role_name"/> <Realm/>
    LockOutRealm

    Introduction

    LockOutRealm?is an implementation of the Tomcat 6?Realm?interface that extends the CombinedRealm to provide lock out functionality to provide a user lock out mechanism if there are too many failed authentication attempts in a given period of time.

    To ensure correct operation, there is a reasonable degree of synchronisation in this Realm.

    This Realm does not require modification to the underlying Realms or the associated user storage mecahisms. It achieves this by recording all failed logins, including those for users that do not exist. To prevent a DOS by deliberating making requests with invalid users (and hence causing this cache to grow) the size of the list of users that have failed authentication is limited.

    Sub-realms are defined by nesting?Realm?elements inside the?Realm?element that defines the LockOutRealm. Authentication will be attempted against each?Realm?in the order they are listed. Authentication against any Realm will be sufficient to authenticate the user.

    Realm Element Attributes

    To configure a LockOutRealm, you create a?<Realm>?element and nest it in your?$CATALINA_BASE/conf/server.xml?file within your?<Engine>?or?<Host>. You can also nest inside a?<Context>?node in a?context.xml?file. The following attributes are supported by this implementation:

    AttributeDescription
    className

    The fully qualified Java class name of this Realm implementation. You?MUST?specify the value "org.apache.catalina.realm.LockOutRealm" here.

    cacheRemovalWarningTime

    If a failed user is removed from the cache because the cache is too big before it has been in the cache for at least this period of time (in seconds) a warning message will be logged. Defaults to 3600 (1 hour).

    cacheSize

    Number of users that have failed authentication to keep in cache. Over time the cache will grow to this size and may not shrink. Defaults to 1000.

    failureCount

    The number of times in a row a user has to fail authentication to be locked out. Defaults to 5.

    lockOutTime

    The time (in seconds) a user is locked out for after too many authentication failures. Defaults to 300 (5 minutes).

    Example

    Here is an example of how your server.xml snippet should look to add lock out functionality to a UserDatabase Realm.

    <Realm className="org.apache.catalina.realm.LockOutRealm" ><Realm className="org.apache.catalina.realm.UserDatabaseRealm"resourceName="UserDatabase"/> <Realm/>

    轉載于:https://www.cnblogs.com/davidwang456/p/3821344.html

    總結

    以上是生活随笔為你收集整理的Realm Configuration HOW-TO--官方的全部內容,希望文章能夠幫你解決所遇到的問題。

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

    亚洲欧美色中文字幕在线 | 国产精品无码mv在线观看 | 国产成人一区二区三区在线观看 | 成人一在线视频日韩国产 | 国产97在线 | 亚洲 | 精品无码成人片一区二区98 | 欧美变态另类xxxx | 久久国产精品二国产精品 | 日韩亚洲欧美精品综合 | 丁香花在线影院观看在线播放 | 97夜夜澡人人爽人人喊中国片 | 亚洲一区二区三区无码久久 | 亚洲国产综合无码一区 | 国产精品无码久久av | 亚洲gv猛男gv无码男同 | 亚洲日韩一区二区三区 | 国产人妻人伦精品1国产丝袜 | 中文字幕无码人妻少妇免费 | 黑人巨大精品欧美黑寡妇 | 老太婆性杂交欧美肥老太 | 亚洲成a人片在线观看无码3d | 亚洲乱码国产乱码精品精 | 午夜成人1000部免费视频 | 激情内射日本一区二区三区 | 久久97精品久久久久久久不卡 | 人人妻人人澡人人爽欧美一区 | 国产舌乚八伦偷品w中 | 欧美亚洲国产一区二区三区 | 国产在线精品一区二区三区直播 | 少妇一晚三次一区二区三区 | 精品日本一区二区三区在线观看 | 伊在人天堂亚洲香蕉精品区 | 无码国模国产在线观看 | 骚片av蜜桃精品一区 | 未满成年国产在线观看 | 亚洲熟妇色xxxxx亚洲 | 亚洲欧洲日本综合aⅴ在线 | 成人亚洲精品久久久久 | 漂亮人妻洗澡被公强 日日躁 | 免费乱码人妻系列无码专区 | 久久伊人色av天堂九九小黄鸭 | 亚洲一区二区三区 | 久久久久免费精品国产 | 天堂а√在线地址中文在线 | 亚洲自偷自拍另类第1页 | 蜜桃视频插满18在线观看 | 亚洲日韩一区二区 | 国产精品丝袜黑色高跟鞋 | 99精品视频在线观看免费 | 欧美人与禽zoz0性伦交 | 国产av久久久久精东av | 久久综合狠狠综合久久综合88 | 99久久无码一区人妻 | 日韩精品无码免费一区二区三区 | 麻花豆传媒剧国产免费mv在线 | 丁香花在线影院观看在线播放 | 性生交大片免费看女人按摩摩 | 麻豆国产97在线 | 欧洲 | 亚洲色www成人永久网址 | 狠狠综合久久久久综合网 | 在线观看欧美一区二区三区 | 内射巨臀欧美在线视频 | 激情内射亚州一区二区三区爱妻 | 自拍偷自拍亚洲精品被多人伦好爽 | 一本无码人妻在中文字幕免费 | 大胆欧美熟妇xx | 欧美日韩色另类综合 | 日韩视频 中文字幕 视频一区 | 国产亚洲视频中文字幕97精品 | 国产无av码在线观看 | 又色又爽又黄的美女裸体网站 | 久久久中文字幕日本无吗 | 一本色道婷婷久久欧美 | 久久亚洲精品中文字幕无男同 | 日本一卡2卡3卡四卡精品网站 | 国产免费久久久久久无码 | 俺去俺来也在线www色官网 | 伊在人天堂亚洲香蕉精品区 | 欧美xxxx黑人又粗又长 | 亚洲精品无码人妻无码 | 国产高清不卡无码视频 | 人人爽人人澡人人高潮 | 三级4级全黄60分钟 | 极品嫩模高潮叫床 | 久久精品国产大片免费观看 | 国语自产偷拍精品视频偷 | 国内少妇偷人精品视频 | 中文字幕人成乱码熟女app | 国产精品久久久午夜夜伦鲁鲁 | 国产又爽又黄又刺激的视频 | 女人被男人爽到呻吟的视频 | 波多野结衣乳巨码无在线观看 | 久久久久久久人妻无码中文字幕爆 | 婷婷综合久久中文字幕蜜桃三电影 | 国产黑色丝袜在线播放 | 色欲久久久天天天综合网精品 | 纯爱无遮挡h肉动漫在线播放 | 精品国产aⅴ无码一区二区 | 久久精品国产精品国产精品污 | 天天拍夜夜添久久精品 | 在线a亚洲视频播放在线观看 | 中文字幕无码日韩专区 | 黑人玩弄人妻中文在线 | 色一情一乱一伦 | 精品无码一区二区三区的天堂 | 亚洲人成网站在线播放942 | 超碰97人人做人人爱少妇 | 亚洲欧洲日本综合aⅴ在线 | 在线观看国产午夜福利片 | 美女毛片一区二区三区四区 | 日韩人妻无码一区二区三区久久99 | 国产精华av午夜在线观看 | 精品国产精品久久一区免费式 | 亚洲毛片av日韩av无码 | 人妻插b视频一区二区三区 | 免费无码午夜福利片69 | 自拍偷自拍亚洲精品被多人伦好爽 | 亚洲成色www久久网站 | 国产明星裸体无码xxxx视频 | 成人精品一区二区三区中文字幕 | 免费乱码人妻系列无码专区 | 51国偷自产一区二区三区 | 丰满人妻精品国产99aⅴ | 久久综合九色综合欧美狠狠 | 天海翼激烈高潮到腰振不止 | 俄罗斯老熟妇色xxxx | 影音先锋中文字幕无码 | 综合网日日天干夜夜久久 | 青草视频在线播放 | 一本久道久久综合狠狠爱 | 人人妻人人澡人人爽欧美一区九九 | 18禁止看的免费污网站 | 国产成人无码专区 | 熟女俱乐部五十路六十路av | 中文字幕无码日韩专区 | 西西人体www44rt大胆高清 | 激情综合激情五月俺也去 | 欧美丰满熟妇xxxx | 日日摸日日碰夜夜爽av | 国产一区二区三区日韩精品 | 丰满人妻翻云覆雨呻吟视频 | 国产精品亚洲а∨无码播放麻豆 | 国产午夜视频在线观看 | 国产在线无码精品电影网 | 午夜成人1000部免费视频 | 中文字幕久久久久人妻 | 久久久久成人精品免费播放动漫 | 伊在人天堂亚洲香蕉精品区 | 自拍偷自拍亚洲精品被多人伦好爽 | 色情久久久av熟女人妻网站 | 欧美熟妇另类久久久久久不卡 | 亚洲色大成网站www | 成人精品一区二区三区中文字幕 | 日日摸日日碰夜夜爽av | 麻豆精品国产精华精华液好用吗 | 成人一在线视频日韩国产 | 亚洲天堂2017无码中文 | 久久午夜无码鲁丝片 | 娇妻被黑人粗大高潮白浆 | 国产高清av在线播放 | 亚洲色偷偷偷综合网 | 77777熟女视频在线观看 а天堂中文在线官网 | 国产亚洲精品久久久久久大师 | 性生交大片免费看女人按摩摩 | 亚洲成色在线综合网站 | 久久久久久国产精品无码下载 | av无码不卡在线观看免费 | 欧美成人免费全部网站 | 无码av岛国片在线播放 | 欧洲美熟女乱又伦 | 精品午夜福利在线观看 | 亚洲熟妇色xxxxx欧美老妇 | 中文字幕无码日韩欧毛 | 国产av无码专区亚洲a∨毛片 | 少妇性l交大片欧洲热妇乱xxx | 国产精品高潮呻吟av久久4虎 | 四虎永久在线精品免费网址 | 亚洲精品综合一区二区三区在线 | 精品乱子伦一区二区三区 | а√天堂www在线天堂小说 | 免费网站看v片在线18禁无码 | 亚洲中文字幕成人无码 | 天堂无码人妻精品一区二区三区 | 国产三级精品三级男人的天堂 | 国产精品久久久久久久9999 | 欧洲熟妇色 欧美 | 99久久精品午夜一区二区 | 久久精品中文字幕大胸 | 人人妻在人人 | 中文精品无码中文字幕无码专区 | 特级做a爰片毛片免费69 | 搡女人真爽免费视频大全 | 久久人妻内射无码一区三区 | 亚洲熟妇色xxxxx欧美老妇 | 人妻少妇精品无码专区二区 | 亚欧洲精品在线视频免费观看 | 中文字幕+乱码+中文字幕一区 | 国产成人久久精品流白浆 | 亚洲一区二区三区四区 | 亚洲成a人片在线观看无码 | 国产精品美女久久久久av爽李琼 | 欧美激情一区二区三区成人 | 成人免费无码大片a毛片 | 在教室伦流澡到高潮hnp视频 | 国产成人无码区免费内射一片色欲 | 最新国产麻豆aⅴ精品无码 | 波多野结衣aⅴ在线 | 亚洲欧洲日本无在线码 | 偷窥村妇洗澡毛毛多 | v一区无码内射国产 | 扒开双腿吃奶呻吟做受视频 | 国产在线一区二区三区四区五区 | 亚洲一区二区三区四区 | 国产精品久久久久久久影院 | 久久99精品久久久久久 | 成人无码精品1区2区3区免费看 | 久久国产精品偷任你爽任你 | 在线a亚洲视频播放在线观看 | 久久精品女人天堂av免费观看 | 日本一卡二卡不卡视频查询 | 六月丁香婷婷色狠狠久久 | 亚洲一区二区三区 | 我要看www免费看插插视频 | 亚洲无人区一区二区三区 | 激情内射亚州一区二区三区爱妻 | 日本精品人妻无码免费大全 | 国产av一区二区三区最新精品 | 正在播放东北夫妻内射 | 东北女人啪啪对白 | 欧美一区二区三区视频在线观看 | 77777熟女视频在线观看 а天堂中文在线官网 | 久久熟妇人妻午夜寂寞影院 | 18禁黄网站男男禁片免费观看 | 成人无码精品1区2区3区免费看 | 99久久99久久免费精品蜜桃 | 大乳丰满人妻中文字幕日本 | 正在播放老肥熟妇露脸 | 久久亚洲国产成人精品性色 | 欧美国产亚洲日韩在线二区 | 国产人成高清在线视频99最全资源 | √天堂中文官网8在线 | 色欲av亚洲一区无码少妇 | 国产熟妇另类久久久久 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 久久久婷婷五月亚洲97号色 | 俺去俺来也在线www色官网 | 午夜精品一区二区三区的区别 | 国产一区二区不卡老阿姨 | 天天躁日日躁狠狠躁免费麻豆 | 亚洲成av人片天堂网无码】 | 成人性做爰aaa片免费看 | 国产亚洲人成a在线v网站 | 亚洲男女内射在线播放 | 欧美老人巨大xxxx做受 | 久久精品国产一区二区三区 | 亚洲熟女一区二区三区 | 国产精品久久久久久久9999 | 大色综合色综合网站 | 成 人 免费观看网站 | 国产内射老熟女aaaa | 国产麻豆精品精东影业av网站 | 无码人妻丰满熟妇区五十路百度 | 未满成年国产在线观看 | 久久综合色之久久综合 | 久久久精品成人免费观看 | 精品无人国产偷自产在线 | 免费无码一区二区三区蜜桃大 | 国内综合精品午夜久久资源 | 又粗又大又硬又长又爽 | 久久国内精品自在自线 | 97精品人妻一区二区三区香蕉 | 成 人 网 站国产免费观看 | 骚片av蜜桃精品一区 | 波多野结衣av一区二区全免费观看 | 3d动漫精品啪啪一区二区中 | 性色av无码免费一区二区三区 | 久久人人爽人人爽人人片av高清 | 麻花豆传媒剧国产免费mv在线 | 51国偷自产一区二区三区 | 人妻夜夜爽天天爽三区 | 久久婷婷五月综合色国产香蕉 | 亚洲日本va中文字幕 | 国产av无码专区亚洲a∨毛片 | 午夜精品久久久久久久久 | 黑人巨大精品欧美一区二区 | 日本精品久久久久中文字幕 | 国产午夜亚洲精品不卡下载 | 欧美变态另类xxxx | 久久精品国产日本波多野结衣 | 大屁股大乳丰满人妻 | 在线观看国产午夜福利片 | 国产精品无码永久免费888 | 好男人社区资源 | 国产精品怡红院永久免费 | 中文字幕乱码人妻二区三区 | 国产黑色丝袜在线播放 | 99精品视频在线观看免费 | 亚洲成a人片在线观看无码3d | 午夜熟女插插xx免费视频 | 亚洲男人av香蕉爽爽爽爽 | 少妇人妻偷人精品无码视频 | 最新版天堂资源中文官网 | 亚洲 日韩 欧美 成人 在线观看 | 国内揄拍国内精品人妻 | 国产亚洲精品精品国产亚洲综合 | 国产欧美精品一区二区三区 | 欧美一区二区三区 | 亚洲性无码av中文字幕 | 亚洲 a v无 码免 费 成 人 a v | 东京热无码av男人的天堂 | 丰满人妻翻云覆雨呻吟视频 | 久久天天躁夜夜躁狠狠 | 1000部夫妻午夜免费 | 国产极品视觉盛宴 | 少妇性l交大片欧洲热妇乱xxx | 一个人看的www免费视频在线观看 | 久久精品国产大片免费观看 | 一本一道久久综合久久 | 性欧美疯狂xxxxbbbb | 国产精品办公室沙发 | 精品偷拍一区二区三区在线看 | 日本乱偷人妻中文字幕 | 国产精品毛多多水多 | 亚洲毛片av日韩av无码 | 天堂亚洲2017在线观看 | 久久精品国产亚洲精品 | 97色伦图片97综合影院 | 国产又爽又黄又刺激的视频 | 日本爽爽爽爽爽爽在线观看免 | 精品久久久久久人妻无码中文字幕 | 一本精品99久久精品77 | 中文字幕人妻丝袜二区 | 国产在线aaa片一区二区99 | 国产超级va在线观看视频 | 67194成是人免费无码 | 国产偷自视频区视频 | 国产精品va在线播放 | 亚洲成色在线综合网站 | 国产成人无码区免费内射一片色欲 | 免费人成在线观看网站 | 欧洲美熟女乱又伦 | 全球成人中文在线 | 夜精品a片一区二区三区无码白浆 | 国产麻豆精品一区二区三区v视界 | 麻花豆传媒剧国产免费mv在线 | 一本色道久久综合狠狠躁 | 国产午夜手机精彩视频 | 亚洲熟妇色xxxxx欧美老妇 | 无码帝国www无码专区色综合 | 精品国产av色一区二区深夜久久 | 小泽玛莉亚一区二区视频在线 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产成人午夜福利在线播放 | 国产乱子伦视频在线播放 | 99久久人妻精品免费一区 | 日日摸夜夜摸狠狠摸婷婷 | 久久国产劲爆∧v内射 | 久久久国产精品无码免费专区 | 性生交大片免费看l | 久久国产精品精品国产色婷婷 | 又湿又紧又大又爽a视频国产 | 曰韩少妇内射免费播放 | 人人爽人人澡人人人妻 | 国内少妇偷人精品视频免费 | 无码成人精品区在线观看 | 六月丁香婷婷色狠狠久久 | 扒开双腿疯狂进出爽爽爽视频 | 国内综合精品午夜久久资源 | 大屁股大乳丰满人妻 | 学生妹亚洲一区二区 | 久久99精品国产麻豆蜜芽 | 无码福利日韩神码福利片 | 日韩亚洲欧美中文高清在线 | 亚洲日韩中文字幕在线播放 | 无码人妻精品一区二区三区不卡 | 九九综合va免费看 | 性色欲网站人妻丰满中文久久不卡 | 日日夜夜撸啊撸 | 日本xxxx色视频在线观看免费 | 国产成人无码a区在线观看视频app | 亚洲日本一区二区三区在线 | 欧美日本免费一区二区三区 | 精品厕所偷拍各类美女tp嘘嘘 | 国产午夜亚洲精品不卡 | 久精品国产欧美亚洲色aⅴ大片 | 国产莉萝无码av在线播放 | 精品人妻人人做人人爽夜夜爽 | 国产激情综合五月久久 | 国内精品九九久久久精品 | 黑人大群体交免费视频 | www国产亚洲精品久久网站 | 色婷婷欧美在线播放内射 | 熟妇人妻激情偷爽文 | 亚洲熟女一区二区三区 | 久久精品国产精品国产精品污 | 日韩精品a片一区二区三区妖精 | 国产精品二区一区二区aⅴ污介绍 | 男女性色大片免费网站 | 窝窝午夜理论片影院 | 国产精品久久久午夜夜伦鲁鲁 | 一本久久a久久精品vr综合 | 国产9 9在线 | 中文 | 国产精品久久久久久亚洲毛片 | 久久综合香蕉国产蜜臀av | 国产真人无遮挡作爱免费视频 | 欧美日韩在线亚洲综合国产人 | 亚洲欧洲无卡二区视頻 | ass日本丰满熟妇pics | 久久天天躁夜夜躁狠狠 | 粉嫩少妇内射浓精videos | 99久久99久久免费精品蜜桃 | 亲嘴扒胸摸屁股激烈网站 | 国产午夜精品一区二区三区嫩草 | 日本在线高清不卡免费播放 | 亚洲天堂2017无码 | 国内精品人妻无码久久久影院蜜桃 | 国产猛烈高潮尖叫视频免费 | 日韩人妻系列无码专区 | 久久久精品456亚洲影院 | 久久精品人妻少妇一区二区三区 | 无码人妻av免费一区二区三区 | 免费观看又污又黄的网站 | 亚洲精品中文字幕 | 免费国产黄网站在线观看 | 曰韩少妇内射免费播放 | 国产人妻久久精品二区三区老狼 | 无码av岛国片在线播放 | 国产午夜视频在线观看 | 精品厕所偷拍各类美女tp嘘嘘 | 偷窥日本少妇撒尿chinese | 亚洲国产日韩a在线播放 | 亚洲熟妇色xxxxx欧美老妇y | 日韩视频 中文字幕 视频一区 | 在线精品亚洲一区二区 | 日韩av无码一区二区三区 | 欧美三级不卡在线观看 | 国产成人精品久久亚洲高清不卡 | 性生交片免费无码看人 | 久久精品成人欧美大片 | 成人无码精品一区二区三区 | 强辱丰满人妻hd中文字幕 | 国产亚洲精品久久久久久国模美 | 欧美兽交xxxx×视频 | 精品国产成人一区二区三区 | 国产亚洲精品久久久久久大师 | 亚洲の无码国产の无码步美 | 亚洲精品中文字幕 | 成熟人妻av无码专区 | 人人爽人人爽人人片av亚洲 | 日本肉体xxxx裸交 | 亚洲天堂2017无码中文 | 激情五月综合色婷婷一区二区 | 人妻尝试又大又粗久久 | 国产精品久久久一区二区三区 | 国产精品无码一区二区桃花视频 | 中文字幕人妻丝袜二区 | 日韩人妻无码一区二区三区久久99 | 欧美亚洲日韩国产人成在线播放 | 国产69精品久久久久app下载 | 俺去俺来也在线www色官网 | 人妻少妇被猛烈进入中文字幕 | av在线亚洲欧洲日产一区二区 | 天堂亚洲免费视频 | 网友自拍区视频精品 | 亚洲欧美日韩国产精品一区二区 | 六月丁香婷婷色狠狠久久 | 久久国语露脸国产精品电影 | 国产欧美精品一区二区三区 | 国产av久久久久精东av | 一二三四在线观看免费视频 | 国产av无码专区亚洲a∨毛片 | 十八禁真人啪啪免费网站 | 日本乱偷人妻中文字幕 | 精品国产av色一区二区深夜久久 | 荫蒂被男人添的好舒服爽免费视频 | 美女极度色诱视频国产 | 欧美自拍另类欧美综合图片区 | 乱人伦人妻中文字幕无码久久网 | 四虎国产精品一区二区 | 俺去俺来也在线www色官网 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 无遮挡啪啪摇乳动态图 | aⅴ亚洲 日韩 色 图网站 播放 | 国产精品亚洲一区二区三区喷水 | 欧美大屁股xxxxhd黑色 | 亚洲欧洲无卡二区视頻 | 国产精品无套呻吟在线 | 亚洲欧美日韩国产精品一区二区 | 99久久精品无码一区二区毛片 | 婷婷五月综合激情中文字幕 | 成 人 免费观看网站 | 国产激情艳情在线看视频 | 2020最新国产自产精品 | 午夜福利不卡在线视频 | 青青青手机频在线观看 | 欧洲熟妇色 欧美 | 国产午夜福利100集发布 | 日本护士xxxxhd少妇 | 中文字幕av日韩精品一区二区 | a在线亚洲男人的天堂 | 国产成人综合美国十次 | 日本熟妇浓毛 | 久久久精品成人免费观看 | 国产午夜无码精品免费看 | 久久国内精品自在自线 | 久久人人爽人人爽人人片ⅴ | 少妇性l交大片欧洲热妇乱xxx | 亚洲精品一区二区三区在线 | 国内揄拍国内精品少妇国语 | 131美女爱做视频 | 国产亚洲美女精品久久久2020 | 天天做天天爱天天爽综合网 | 无码av最新清无码专区吞精 | 一二三四在线观看免费视频 | 精品国产av色一区二区深夜久久 | 无码人中文字幕 | 黑人大群体交免费视频 | 激情亚洲一区国产精品 | 中文无码精品a∨在线观看不卡 | 国产乱人伦av在线无码 | 亚洲国产精品久久人人爱 | 国产av久久久久精东av | 亚洲欧美日韩国产精品一区二区 | 久久国产精品萌白酱免费 | 天天拍夜夜添久久精品 | 欧美成人高清在线播放 | 亚洲精品一区国产 | 99精品国产综合久久久久五月天 | 亚洲精品一区二区三区四区五区 | 亚洲国精产品一二二线 | 国产精品无码一区二区桃花视频 | 成人性做爰aaa片免费看 | 人妻少妇被猛烈进入中文字幕 | 国产亚洲精品精品国产亚洲综合 | 久久精品女人的天堂av | 亚洲一区av无码专区在线观看 | 国产精品久久久久久亚洲毛片 | 亚洲一区二区三区播放 | 日日橹狠狠爱欧美视频 | 午夜精品一区二区三区在线观看 | 亚洲经典千人经典日产 | 欧洲精品码一区二区三区免费看 | 亚洲精品久久久久avwww潮水 | 亚洲色欲色欲欲www在线 | 久久综合给合久久狠狠狠97色 | 欧美成人免费全部网站 | 成人亚洲精品久久久久软件 | 东京热无码av男人的天堂 | 色一情一乱一伦一区二区三欧美 | 妺妺窝人体色www在线小说 | 日日鲁鲁鲁夜夜爽爽狠狠 | 精品人人妻人人澡人人爽人人 | 亚洲爆乳无码专区 | 国产麻豆精品精东影业av网站 | 日日鲁鲁鲁夜夜爽爽狠狠 | 精品无码成人片一区二区98 | 亚洲欧美国产精品专区久久 | 国产美女精品一区二区三区 | 美女极度色诱视频国产 | 国产精品久久久久久久影院 | 久久久国产精品无码免费专区 | 欧美一区二区三区 | 18无码粉嫩小泬无套在线观看 | 欧美性生交活xxxxxdddd | 精品国产aⅴ无码一区二区 | 国产99久久精品一区二区 | 精品久久久久久人妻无码中文字幕 | 内射白嫩少妇超碰 | 国产另类ts人妖一区二区 | 久久综合狠狠综合久久综合88 | 少妇厨房愉情理9仑片视频 | 在线亚洲高清揄拍自拍一品区 | 97精品国产97久久久久久免费 | 亚洲精品久久久久avwww潮水 | 青青青爽视频在线观看 | www国产亚洲精品久久网站 | 亚洲国产高清在线观看视频 | 小sao货水好多真紧h无码视频 | 国产69精品久久久久app下载 | 亚洲乱码日产精品bd | 亚洲人成人无码网www国产 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | www成人国产高清内射 | 亚洲成av人综合在线观看 | 老子影院午夜伦不卡 | 国产精品久久久久9999小说 | 成年美女黄网站色大免费全看 | 帮老师解开蕾丝奶罩吸乳网站 | 国产精品无码成人午夜电影 | 宝宝好涨水快流出来免费视频 | 色偷偷人人澡人人爽人人模 | 性欧美videos高清精品 | 国产成人精品无码播放 | 性色欲情网站iwww九文堂 | 丰满人妻被黑人猛烈进入 | 夜夜高潮次次欢爽av女 | 日产精品高潮呻吟av久久 | 婷婷色婷婷开心五月四房播播 | 国产成人精品久久亚洲高清不卡 | 成人精品视频一区二区 | 中文字幕 亚洲精品 第1页 | √天堂资源地址中文在线 | 亚洲精品久久久久中文第一幕 | 一区二区三区高清视频一 | 骚片av蜜桃精品一区 | 亚洲啪av永久无码精品放毛片 | 日本精品少妇一区二区三区 | 日日夜夜撸啊撸 | 国内精品一区二区三区不卡 | 一个人看的视频www在线 | 人人妻人人澡人人爽欧美精品 | 国产片av国语在线观看 | 国产精品99久久精品爆乳 | 无码人妻久久一区二区三区不卡 | 国产麻豆精品精东影业av网站 | 久久综合狠狠综合久久综合88 | 亚洲精品鲁一鲁一区二区三区 | 无码国产色欲xxxxx视频 | 久久综合给久久狠狠97色 | 国产一区二区三区影院 | 国产成人午夜福利在线播放 | 欧美日韩精品 | 久久久精品成人免费观看 | 成人欧美一区二区三区黑人 | 内射爽无广熟女亚洲 | 高清无码午夜福利视频 | 日韩成人一区二区三区在线观看 | 亚洲人成网站在线播放942 | 四十如虎的丰满熟妇啪啪 | 免费网站看v片在线18禁无码 | 亚洲人交乣女bbw | 亚洲国产午夜精品理论片 | 欧美日韩一区二区综合 | 午夜精品久久久久久久 | 亚洲国产欧美在线成人 | 国产精品成人av在线观看 | 人人妻人人澡人人爽人人精品 | 日本护士xxxxhd少妇 | 中文精品无码中文字幕无码专区 | 国产人妻精品一区二区三区不卡 | 日韩少妇白浆无码系列 | 久久综合激激的五月天 | 亚洲 另类 在线 欧美 制服 | 青青草原综合久久大伊人精品 | 日韩无套无码精品 | 欧美兽交xxxx×视频 | 国产在线aaa片一区二区99 | 麻豆果冻传媒2021精品传媒一区下载 | 狂野欧美性猛交免费视频 | 欧美激情综合亚洲一二区 | 天堂在线观看www | 婷婷色婷婷开心五月四房播播 | 国产香蕉97碰碰久久人人 | 日日鲁鲁鲁夜夜爽爽狠狠 | 麻豆蜜桃av蜜臀av色欲av | 天天综合网天天综合色 | 蜜桃视频韩日免费播放 | 亚洲自偷自偷在线制服 | 曰韩少妇内射免费播放 | 亚洲精品午夜无码电影网 | 国产精品手机免费 | 色婷婷香蕉在线一区二区 | 亚洲人交乣女bbw | 在线观看免费人成视频 | 精品国产av色一区二区深夜久久 | 两性色午夜视频免费播放 | 色五月五月丁香亚洲综合网 | 最新国产乱人伦偷精品免费网站 | 99久久久国产精品无码免费 | 黑人巨大精品欧美黑寡妇 | 天堂在线观看www | 国产又爽又猛又粗的视频a片 | 99久久精品无码一区二区毛片 | 国产精品美女久久久 | 国产莉萝无码av在线播放 | 国产成人人人97超碰超爽8 | 日本免费一区二区三区最新 | 无码国产色欲xxxxx视频 | 7777奇米四色成人眼影 | 九月婷婷人人澡人人添人人爽 | 无码国产乱人伦偷精品视频 | 日日噜噜噜噜夜夜爽亚洲精品 | 日韩人妻无码中文字幕视频 | 亚洲成av人片在线观看无码不卡 | 鲁大师影院在线观看 | 无人区乱码一区二区三区 | 无码人妻出轨黑人中文字幕 | 欧美人与禽zoz0性伦交 | 国产莉萝无码av在线播放 | 中文字幕人妻丝袜二区 | 欧美性猛交内射兽交老熟妇 | 中国女人内谢69xxxxxa片 | 人人妻人人澡人人爽欧美一区九九 | 亚洲日韩中文字幕在线播放 | 中文字幕亚洲情99在线 | 久久综合激激的五月天 | 欧美 日韩 人妻 高清 中文 | 奇米影视888欧美在线观看 | 国产精品香蕉在线观看 | 欧美日本精品一区二区三区 | 内射白嫩少妇超碰 | 午夜免费福利小电影 | 无遮挡国产高潮视频免费观看 | 欧美性猛交内射兽交老熟妇 | 国产人成高清在线视频99最全资源 | 中文字幕+乱码+中文字幕一区 | 国产精品久久久久9999小说 | 亚洲色偷偷男人的天堂 | 精品久久久无码中文字幕 | 波多野结衣av在线观看 | 成人av无码一区二区三区 | 久久久精品国产sm最大网站 | 国产精品久久精品三级 | 熟女体下毛毛黑森林 | 午夜理论片yy44880影院 | 精品厕所偷拍各类美女tp嘘嘘 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 熟女俱乐部五十路六十路av | 国精产品一区二区三区 | 国产无遮挡又黄又爽又色 | 色婷婷综合中文久久一本 | 国产欧美精品一区二区三区 | 国产成人无码午夜视频在线观看 | 97夜夜澡人人双人人人喊 | 国产人妻人伦精品1国产丝袜 | 人妻少妇精品无码专区二区 | 国产成人一区二区三区在线观看 | 国产农村乱对白刺激视频 | 无码毛片视频一区二区本码 | 国产综合久久久久鬼色 | 对白脏话肉麻粗话av | 国产av一区二区精品久久凹凸 | 国产人妻精品一区二区三区 | 久久久久久久女国产乱让韩 | 亚洲熟妇色xxxxx欧美老妇 | 色 综合 欧美 亚洲 国产 | 又粗又大又硬又长又爽 | 欧洲精品码一区二区三区免费看 | 亚洲成a人片在线观看无码3d | 熟妇女人妻丰满少妇中文字幕 | 中文字幕av无码一区二区三区电影 | 久久天天躁狠狠躁夜夜免费观看 | 丰满人妻一区二区三区免费视频 | 久久亚洲国产成人精品性色 | 亚洲日韩av片在线观看 | 国产手机在线αⅴ片无码观看 | 国产精品毛多多水多 | 精品 日韩 国产 欧美 视频 | 永久免费观看美女裸体的网站 | аⅴ资源天堂资源库在线 | 亚洲の无码国产の无码步美 | 99久久人妻精品免费二区 | 无码精品人妻一区二区三区av | 国产精品美女久久久久av爽李琼 | 精品国产成人一区二区三区 | 国产又粗又硬又大爽黄老大爷视 | av人摸人人人澡人人超碰下载 | 国产区女主播在线观看 | 日本一区二区更新不卡 | 色欲综合久久中文字幕网 | 中文字幕+乱码+中文字幕一区 | 无码人妻少妇伦在线电影 | 沈阳熟女露脸对白视频 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 亚洲国产精品毛片av不卡在线 | 一本无码人妻在中文字幕免费 | 成人性做爰aaa片免费看 | 四十如虎的丰满熟妇啪啪 | 欧美色就是色 | 亚洲综合久久一区二区 | 99久久人妻精品免费一区 | 亚洲第一无码av无码专区 | 人人爽人人澡人人高潮 | 国产成人亚洲综合无码 | 日韩精品a片一区二区三区妖精 | 55夜色66夜色国产精品视频 | 天堂а√在线地址中文在线 | 日韩人妻无码一区二区三区久久99 | 高潮喷水的毛片 | 亚洲爆乳无码专区 | 国产高潮视频在线观看 | 色欲综合久久中文字幕网 | 久久天天躁狠狠躁夜夜免费观看 | yw尤物av无码国产在线观看 | 成人无码影片精品久久久 | 任你躁在线精品免费 | 久久99精品国产麻豆蜜芽 | 青春草在线视频免费观看 | 性色欲网站人妻丰满中文久久不卡 | 无码精品国产va在线观看dvd | 欧美一区二区三区视频在线观看 | 久久久中文久久久无码 | 中文无码成人免费视频在线观看 | 久久精品99久久香蕉国产色戒 | 亚洲色成人中文字幕网站 | 免费无码一区二区三区蜜桃大 | 性欧美熟妇videofreesex | 亚洲精品午夜国产va久久成人 | 国产午夜亚洲精品不卡 | av无码电影一区二区三区 | 麻豆md0077饥渴少妇 | 国产精品亚洲专区无码不卡 | 成人欧美一区二区三区 | 两性色午夜免费视频 | 久久久久久九九精品久 | 亚洲国产精华液网站w | 99久久精品无码一区二区毛片 | 国产人妻人伦精品1国产丝袜 | 国产一区二区三区日韩精品 | 丰满人妻翻云覆雨呻吟视频 | 在线 国产 欧美 亚洲 天堂 | 中文亚洲成a人片在线观看 | ass日本丰满熟妇pics | 鲁鲁鲁爽爽爽在线视频观看 | 国产一区二区三区影院 | 日韩欧美群交p片內射中文 | 免费观看激色视频网站 | 中文无码伦av中文字幕 | 一区二区三区乱码在线 | 欧洲 | 免费网站看v片在线18禁无码 | 久久99热只有频精品8 | 午夜精品一区二区三区在线观看 | 久久精品女人的天堂av | 亚洲国产欧美日韩精品一区二区三区 | 久久国产精品_国产精品 | 国产激情一区二区三区 | 久久久久99精品国产片 | 中文无码伦av中文字幕 | 国产偷国产偷精品高清尤物 | 久久综合色之久久综合 | 色婷婷av一区二区三区之红樱桃 | 亚洲 激情 小说 另类 欧美 | 亚洲色无码一区二区三区 | 西西人体www44rt大胆高清 | 国产猛烈高潮尖叫视频免费 | 99久久亚洲精品无码毛片 | 国产色精品久久人妻 | 野狼第一精品社区 | 亚洲va欧美va天堂v国产综合 | 日日碰狠狠躁久久躁蜜桃 | 97夜夜澡人人爽人人喊中国片 | 三级4级全黄60分钟 | 国产亚洲精品久久久久久久 | 亚洲乱亚洲乱妇50p | 国产在线精品一区二区高清不卡 | 国内揄拍国内精品人妻 | 香港三级日本三级妇三级 | 一本久道高清无码视频 | 久久婷婷五月综合色国产香蕉 | 国产精品久久国产精品99 | 国产乱人伦偷精品视频 | 国产国语老龄妇女a片 | 国产人妻精品一区二区三区 | 全球成人中文在线 | 少妇一晚三次一区二区三区 | 强辱丰满人妻hd中文字幕 | 免费观看的无遮挡av | 亚洲熟女一区二区三区 | 久久久久免费看成人影片 | 国产三级久久久精品麻豆三级 | 在线观看国产一区二区三区 | 国产 精品 自在自线 | 欧美兽交xxxx×视频 | а√天堂www在线天堂小说 | 日韩精品一区二区av在线 | 亚洲天堂2017无码 | 久久zyz资源站无码中文动漫 | 风流少妇按摩来高潮 | 亚洲熟妇色xxxxx欧美老妇y | 欧美喷潮久久久xxxxx | 亚洲日韩精品欧美一区二区 | 婷婷丁香六月激情综合啪 | 黄网在线观看免费网站 | 曰韩少妇内射免费播放 | 性欧美熟妇videofreesex | 亚洲精品成人福利网站 | 精品欧洲av无码一区二区三区 | 日韩少妇白浆无码系列 | 一本色道久久综合狠狠躁 | 国产深夜福利视频在线 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产一区二区三区四区五区加勒比 | 亚洲国产高清在线观看视频 | 伊在人天堂亚洲香蕉精品区 | 欧美日韩一区二区免费视频 | 国内揄拍国内精品少妇国语 | 人妻aⅴ无码一区二区三区 | 少妇人妻av毛片在线看 | 色婷婷综合中文久久一本 | 欧美日本免费一区二区三区 | 给我免费的视频在线观看 | 午夜熟女插插xx免费视频 | 欧美国产日韩亚洲中文 | 国产三级精品三级男人的天堂 | 久久久中文字幕日本无吗 | 天下第一社区视频www日本 | 无套内谢老熟女 | 图片区 小说区 区 亚洲五月 | 无码毛片视频一区二区本码 | 97se亚洲精品一区 | 欧美丰满熟妇xxxx性ppx人交 | 欧美国产日产一区二区 | 欧美激情综合亚洲一二区 | 国产手机在线αⅴ片无码观看 | 女高中生第一次破苞av | 给我免费的视频在线观看 | 日韩视频 中文字幕 视频一区 | 麻豆国产人妻欲求不满谁演的 | 青草青草久热国产精品 | 激情爆乳一区二区三区 | 亚洲日韩中文字幕在线播放 | 日本一区二区三区免费播放 | 欧美成人免费全部网站 | 国产婷婷色一区二区三区在线 | 国内揄拍国内精品人妻 | 狠狠综合久久久久综合网 | 国产无av码在线观看 | 国产精品99爱免费视频 | 少妇无套内谢久久久久 | 亚洲 高清 成人 动漫 | 精品无人国产偷自产在线 | 亚洲高清偷拍一区二区三区 | 亚洲综合无码一区二区三区 | 亚洲天堂2017无码 | 偷窥村妇洗澡毛毛多 | 色老头在线一区二区三区 | 亚洲日韩av一区二区三区中文 | 香港三级日本三级妇三级 | 十八禁视频网站在线观看 | 国产亚洲欧美在线专区 | 精品亚洲韩国一区二区三区 | 中文字幕+乱码+中文字幕一区 | 99riav国产精品视频 | 色综合久久中文娱乐网 | 国产精品久久国产精品99 | 奇米影视7777久久精品 | 国产sm调教视频在线观看 | 亚洲日韩av一区二区三区中文 | 国产成人无码av片在线观看不卡 | 亚洲天堂2017无码 | 四虎4hu永久免费 | 亚洲小说图区综合在线 | 六月丁香婷婷色狠狠久久 | 六月丁香婷婷色狠狠久久 | 一二三四社区在线中文视频 | 午夜福利试看120秒体验区 | 国产精品久免费的黄网站 | 伊人久久婷婷五月综合97色 | 天天躁夜夜躁狠狠是什么心态 | 久久99精品久久久久久 | 亚洲国产成人av在线观看 | 色诱久久久久综合网ywww | 久久精品国产大片免费观看 | 久久久久久国产精品无码下载 | 一本久道久久综合狠狠爱 | 人人爽人人爽人人片av亚洲 | 欧美精品一区二区精品久久 | 欧美人与牲动交xxxx | 好屌草这里只有精品 | 欧美丰满熟妇xxxx性ppx人交 | 国产午夜精品一区二区三区嫩草 | 黑森林福利视频导航 | 国产精品对白交换视频 | 久久人人爽人人爽人人片ⅴ | 国产精品国产三级国产专播 | 国产精品久久久久无码av色戒 | 麻豆人妻少妇精品无码专区 | 国产美女精品一区二区三区 | 亚洲中文字幕成人无码 | 日本又色又爽又黄的a片18禁 | 无套内谢的新婚少妇国语播放 | 麻豆av传媒蜜桃天美传媒 | 精品人妻人人做人人爽夜夜爽 | 色婷婷久久一区二区三区麻豆 | 久久精品人人做人人综合试看 | 国产成人无码av在线影院 | 久久久久久av无码免费看大片 | 又粗又大又硬又长又爽 | 久久久精品成人免费观看 | 狠狠色丁香久久婷婷综合五月 | 少妇太爽了在线观看 | 乱人伦中文视频在线观看 | 欧美亚洲国产一区二区三区 | 免费无码av一区二区 | 久久久www成人免费毛片 | 国精产品一品二品国精品69xx | 丰满妇女强制高潮18xxxx | 波多野结衣av在线观看 | 大肉大捧一进一出好爽视频 | 国产黑色丝袜在线播放 | 亚洲精品无码人妻无码 | 久久久久成人片免费观看蜜芽 | 亚洲成av人片天堂网无码】 | 亚洲成av人影院在线观看 | 成熟妇人a片免费看网站 | 亚洲综合久久一区二区 | 精品成人av一区二区三区 | 国产色视频一区二区三区 | 国语自产偷拍精品视频偷 | 欧美人妻一区二区三区 | 夜精品a片一区二区三区无码白浆 | 国产97人人超碰caoprom | 国产精品久久久久久久影院 | 婷婷综合久久中文字幕蜜桃三电影 | 麻豆蜜桃av蜜臀av色欲av | 免费无码av一区二区 | 国产特级毛片aaaaaaa高清 | 久久国内精品自在自线 | 亚洲熟妇色xxxxx欧美老妇y | 亚洲欧洲中文日韩av乱码 | 欧美第一黄网免费网站 | 一本无码人妻在中文字幕免费 | 亲嘴扒胸摸屁股激烈网站 | 天堂在线观看www | 久久久久国色av免费观看性色 | 无码一区二区三区在线 | 亚洲人成影院在线无码按摩店 | 久久久精品欧美一区二区免费 | 综合人妻久久一区二区精品 | 18黄暴禁片在线观看 | 日本精品人妻无码免费大全 | 国内精品人妻无码久久久影院 | 野狼第一精品社区 | 亚洲熟妇色xxxxx欧美老妇y | 色窝窝无码一区二区三区色欲 | 国产无遮挡又黄又爽免费视频 | 欧洲熟妇精品视频 | 欧美人与禽猛交狂配 | 免费国产黄网站在线观看 | 欧美xxxx黑人又粗又长 | 久久久久久亚洲精品a片成人 | 老子影院午夜精品无码 | 日本免费一区二区三区最新 | 欧美国产日韩亚洲中文 | 国产人妻大战黑人第1集 | 欧美自拍另类欧美综合图片区 | 成人欧美一区二区三区黑人 | 国产莉萝无码av在线播放 | 免费网站看v片在线18禁无码 | 精品无码av一区二区三区 | 国产色视频一区二区三区 | 成人女人看片免费视频放人 | 少妇性荡欲午夜性开放视频剧场 | 2020最新国产自产精品 | 国产精品无码永久免费888 | 亚洲国产精品久久人人爱 | 成在人线av无码免观看麻豆 | 免费看男女做好爽好硬视频 | 2019nv天堂香蕉在线观看 | 亚洲综合伊人久久大杳蕉 | 人人妻人人澡人人爽欧美精品 | 亚洲国产av精品一区二区蜜芽 | 中文字幕无码日韩专区 | 中文字幕av伊人av无码av | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产一区二区三区精品视频 | 久久人人爽人人爽人人片av高清 | 国产农村乱对白刺激视频 | 国产做国产爱免费视频 | 18禁黄网站男男禁片免费观看 | 国产手机在线αⅴ片无码观看 | 免费人成在线观看网站 | аⅴ资源天堂资源库在线 | 人妻天天爽夜夜爽一区二区 | 国产三级久久久精品麻豆三级 | 97资源共享在线视频 | 国产精品va在线观看无码 | 任你躁在线精品免费 | 99久久久无码国产精品免费 | 少妇无套内谢久久久久 | 高清国产亚洲精品自在久久 | 久久综合给合久久狠狠狠97色 | 亚洲毛片av日韩av无码 | 俺去俺来也在线www色官网 | 国产在线aaa片一区二区99 | 精品无码一区二区三区的天堂 | 熟妇人妻中文av无码 | 久久无码中文字幕免费影院蜜桃 | 欧洲熟妇精品视频 | 麻豆蜜桃av蜜臀av色欲av | 亚洲国产精品无码久久久久高潮 | 久久久中文久久久无码 | 国产精品igao视频网 | 永久免费观看美女裸体的网站 | 牲欲强的熟妇农村老妇女视频 | 日韩av无码一区二区三区 | 亚洲码国产精品高潮在线 | 无码播放一区二区三区 | 97久久国产亚洲精品超碰热 | 国产熟妇另类久久久久 | 久久99久久99精品中文字幕 | 亚洲国产欧美在线成人 | a在线亚洲男人的天堂 | 国产成人无码av片在线观看不卡 | 丰满少妇人妻久久久久久 | 理论片87福利理论电影 | 国产sm调教视频在线观看 | 999久久久国产精品消防器材 | 性欧美牲交在线视频 | 国产精品第一国产精品 | 欧美丰满老熟妇xxxxx性 | 国产人妻精品一区二区三区 | 人妻aⅴ无码一区二区三区 | 一本久道高清无码视频 | 亚洲一区av无码专区在线观看 | 亚洲色偷偷男人的天堂 | 亚洲日韩av一区二区三区中文 | 性生交片免费无码看人 | 国产又爽又黄又刺激的视频 | av小次郎收藏 | 久久99精品久久久久久动态图 | 国产精品二区一区二区aⅴ污介绍 | 丰满少妇熟乱xxxxx视频 | 成人无码精品一区二区三区 | 亚洲成av人在线观看网址 | 无码成人精品区在线观看 | 亚洲综合色区中文字幕 | 国产 精品 自在自线 | 日本乱偷人妻中文字幕 | а√天堂www在线天堂小说 | 欧美人与牲动交xxxx | 国产亚洲精品久久久ai换 | 久久无码专区国产精品s | 少妇人妻偷人精品无码视频 | 久久久久久久人妻无码中文字幕爆 | 色一情一乱一伦 | 无码播放一区二区三区 | 麻豆蜜桃av蜜臀av色欲av | 在线观看免费人成视频 | 又紧又大又爽精品一区二区 | 在线 国产 欧美 亚洲 天堂 | 午夜福利一区二区三区在线观看 | 亚洲国产一区二区三区在线观看 | 亚洲欧美国产精品久久 | 真人与拘做受免费视频一 | аⅴ资源天堂资源库在线 | 波多野结衣av在线观看 | 少妇被黑人到高潮喷出白浆 | 天堂亚洲免费视频 | 久久久久se色偷偷亚洲精品av | 无码中文字幕色专区 | 国产超级va在线观看视频 | 亚洲国产欧美日韩精品一区二区三区 | 香港三级日本三级妇三级 | 无码一区二区三区在线 | 久久国产精品精品国产色婷婷 | 国产sm调教视频在线观看 | 国内精品一区二区三区不卡 | 亚洲国产欧美国产综合一区 | 野狼第一精品社区 | 一本久道久久综合婷婷五月 | 中文字幕无码热在线视频 | 欧美放荡的少妇 | 久久精品国产99精品亚洲 | 国产香蕉尹人视频在线 | 亚洲中文字幕无码一久久区 | 国产精品18久久久久久麻辣 | 欧美精品无码一区二区三区 | 久久久久久九九精品久 | 偷窥日本少妇撒尿chinese | 亚洲区小说区激情区图片区 | 成人免费无码大片a毛片 | 男女爱爱好爽视频免费看 | 国产精品亚洲五月天高清 | 色欲av亚洲一区无码少妇 | 一本一道久久综合久久 | 国产性生大片免费观看性 | 综合人妻久久一区二区精品 | 亚洲精品国产第一综合99久久 | 精品无人区无码乱码毛片国产 | 日韩人妻系列无码专区 | 亚洲欧美日韩成人高清在线一区 | 日本一区二区三区免费播放 | 99精品国产综合久久久久五月天 | 窝窝午夜理论片影院 | yw尤物av无码国产在线观看 | www国产精品内射老师 | 国产成人久久精品流白浆 | 性史性农村dvd毛片 | 色一情一乱一伦一区二区三欧美 | 精品夜夜澡人妻无码av蜜桃 | 激情内射亚州一区二区三区爱妻 | 熟妇激情内射com | 久久99久久99精品中文字幕 | 漂亮人妻洗澡被公强 日日躁 | 少妇厨房愉情理9仑片视频 | 性欧美牲交xxxxx视频 | 女人高潮内射99精品 | 欧洲熟妇精品视频 | 午夜理论片yy44880影院 | 狠狠色噜噜狠狠狠狠7777米奇 | 国产肉丝袜在线观看 | 欧美zoozzooz性欧美 | 国内揄拍国内精品少妇国语 | 免费无码午夜福利片69 | 人人妻人人澡人人爽欧美精品 | 久久99精品国产麻豆蜜芽 | 波多野结衣一区二区三区av免费 | 成熟妇人a片免费看网站 | 亚洲呦女专区 | 国产农村妇女高潮大叫 | 99久久久无码国产aaa精品 | 色综合久久久久综合一本到桃花网 | 丰满少妇熟乱xxxxx视频 | 六月丁香婷婷色狠狠久久 | 国产精品无套呻吟在线 | 亚洲日韩中文字幕在线播放 | av香港经典三级级 在线 | 午夜精品一区二区三区在线观看 | 女人被爽到呻吟gif动态图视看 | 中文字幕 人妻熟女 | 精品人妻av区 | 精品国产aⅴ无码一区二区 | 无码帝国www无码专区色综合 | 亚洲一区二区观看播放 | 久久亚洲国产成人精品性色 | 少妇被黑人到高潮喷出白浆 | 国产真人无遮挡作爱免费视频 | 樱花草在线播放免费中文 | 亚洲国产精品无码久久久久高潮 | av无码电影一区二区三区 | 无码播放一区二区三区 | 成人无码视频免费播放 | 夜先锋av资源网站 | 中文字幕久久久久人妻 | 性欧美熟妇videofreesex | 欧美 亚洲 国产 另类 | 人人澡人人妻人人爽人人蜜桃 | 大屁股大乳丰满人妻 | 日本丰满熟妇videos | 欧洲熟妇色 欧美 | 国产情侣作爱视频免费观看 | 日本一区二区三区免费高清 | 国产一区二区三区日韩精品 | 99久久婷婷国产综合精品青草免费 | 激情内射日本一区二区三区 | 免费看男女做好爽好硬视频 | 在线观看免费人成视频 | 色噜噜亚洲男人的天堂 | 欧美国产亚洲日韩在线二区 | 亚欧洲精品在线视频免费观看 | 欧美性猛交内射兽交老熟妇 | 成人影院yy111111在线观看 | 3d动漫精品啪啪一区二区中 | 乱人伦人妻中文字幕无码 | 久久亚洲中文字幕无码 | 色综合久久久久综合一本到桃花网 | 精品无码成人片一区二区98 | 牲欲强的熟妇农村老妇女视频 | 国产成人无码专区 | 国产精品毛片一区二区 | 久久综合给合久久狠狠狠97色 | 欧美日韩一区二区综合 | 国产精品亚洲а∨无码播放麻豆 | 久久99国产综合精品 | 熟妇人妻激情偷爽文 | 98国产精品综合一区二区三区 | 色一情一乱一伦一视频免费看 | 又大又紧又粉嫩18p少妇 | 免费国产成人高清在线观看网站 | 国产精品美女久久久久av爽李琼 | 亚洲中文字幕va福利 | 欧美xxxxx精品 | 内射爽无广熟女亚洲 | 亚洲欧洲日本综合aⅴ在线 | 成人免费无码大片a毛片 | 精品亚洲成av人在线观看 | 午夜丰满少妇性开放视频 | 精品人妻av区 | 国产av一区二区精品久久凹凸 | 2020久久超碰国产精品最新 | 精品无码国产一区二区三区av | 日本www一道久久久免费榴莲 | 国产精品国产自线拍免费软件 | 色狠狠av一区二区三区 | 久久久久亚洲精品男人的天堂 | 精品人人妻人人澡人人爽人人 | 日韩成人一区二区三区在线观看 | 成人亚洲精品久久久久软件 | 精品无码国产自产拍在线观看蜜 | 蜜桃无码一区二区三区 | 天天躁日日躁狠狠躁免费麻豆 | 精品国产一区二区三区四区 | 日韩成人一区二区三区在线观看 | 少妇人妻av毛片在线看 | 国产色在线 | 国产 | 99er热精品视频 | 午夜福利试看120秒体验区 | a在线观看免费网站大全 | 色欲人妻aaaaaaa无码 | 日本精品久久久久中文字幕 | 国产农村乱对白刺激视频 | 欧美丰满熟妇xxxx性ppx人交 | 任你躁国产自任一区二区三区 | 色综合久久中文娱乐网 | 天堂а√在线中文在线 | 亚洲国产欧美国产综合一区 | 亚洲欧洲日本无在线码 | 国产无遮挡又黄又爽免费视频 | 久久无码专区国产精品s | 激情内射日本一区二区三区 | 无码国产乱人伦偷精品视频 | 奇米影视7777久久精品人人爽 | 一个人免费观看的www视频 | 超碰97人人射妻 | 亚洲成在人网站无码天堂 | 综合人妻久久一区二区精品 | 国产成人综合在线女婷五月99播放 | 日本又色又爽又黄的a片18禁 | 国产乱人无码伦av在线a | 亲嘴扒胸摸屁股激烈网站 | 国产小呦泬泬99精品 | 永久免费精品精品永久-夜色 | 中文无码精品a∨在线观看不卡 | 波多野结衣一区二区三区av免费 | 久久国内精品自在自线 | 少妇久久久久久人妻无码 | 丰满人妻翻云覆雨呻吟视频 | 极品嫩模高潮叫床 | 亚洲乱亚洲乱妇50p | 日产精品高潮呻吟av久久 | 国产欧美亚洲精品a | 俺去俺来也在线www色官网 | 波多野结衣一区二区三区av免费 | 精品国产福利一区二区 | 亚洲成a人一区二区三区 | a在线观看免费网站大全 | 一二三四社区在线中文视频 | 波多野42部无码喷潮在线 | 日韩精品a片一区二区三区妖精 | 日日摸夜夜摸狠狠摸婷婷 | 日日摸天天摸爽爽狠狠97 | 少妇的肉体aa片免费 | 色综合久久久无码中文字幕 | 久久无码中文字幕免费影院蜜桃 | 中文字幕人妻无码一区二区三区 | 国产 浪潮av性色四虎 | 大地资源网第二页免费观看 | 亚洲va欧美va天堂v国产综合 | 两性色午夜视频免费播放 | 人妻体内射精一区二区三四 | 中文字幕av伊人av无码av | 久久精品成人欧美大片 | 国产偷国产偷精品高清尤物 | 免费无码av一区二区 | 国产内射爽爽大片视频社区在线 | 欧美老人巨大xxxx做受 | 国产极品美女高潮无套在线观看 | 狂野欧美性猛交免费视频 | 在线亚洲高清揄拍自拍一品区 | 一本久久伊人热热精品中文字幕 | 国产va免费精品观看 | 国产成人无码av片在线观看不卡 | 国产精品自产拍在线观看 | 久久久久久九九精品久 | 正在播放老肥熟妇露脸 | 亚洲综合另类小说色区 | 无套内谢老熟女 | 麻花豆传媒剧国产免费mv在线 | 国产成人无码a区在线观看视频app | 欧美日韩视频无码一区二区三 | 国产精品美女久久久 | 欧美精品在线观看 | 亚洲国产日韩a在线播放 | 精品国产麻豆免费人成网站 | 亚洲人亚洲人成电影网站色 | 免费无码av一区二区 | 精品无人区无码乱码毛片国产 | 亚洲国产精品久久久久久 | 久久国产精品萌白酱免费 | 蜜臀av无码人妻精品 | 一本色道婷婷久久欧美 | 国产亚洲精品久久久久久 | 久久久久久亚洲精品a片成人 | 日本一区二区更新不卡 | 国产成人精品优优av | 国产精品国产自线拍免费软件 | 日日噜噜噜噜夜夜爽亚洲精品 | 日韩欧美中文字幕公布 | 亚拍精品一区二区三区探花 | 少妇愉情理伦片bd | 亚洲欧洲日本无在线码 | 人妻少妇被猛烈进入中文字幕 | 男人和女人高潮免费网站 | 久久精品丝袜高跟鞋 | 久久综合给合久久狠狠狠97色 | 日本一区二区三区免费播放 | 亚洲精品一区二区三区大桥未久 | 久久久国产一区二区三区 | 动漫av一区二区在线观看 | 亚洲欧美日韩国产精品一区二区 | 国产av一区二区精品久久凹凸 | 少妇性荡欲午夜性开放视频剧场 | 正在播放东北夫妻内射 | 少妇被粗大的猛进出69影院 | 亚洲精品久久久久avwww潮水 | 无码任你躁久久久久久久 | 无码精品国产va在线观看dvd | 久久精品视频在线看15 | 熟妇人妻无码xxx视频 | 久激情内射婷内射蜜桃人妖 | 国产亚洲精品久久久久久大师 | 偷窥日本少妇撒尿chinese | 狠狠色丁香久久婷婷综合五月 | 熟女体下毛毛黑森林 | 精品久久久久香蕉网 | 国产香蕉尹人视频在线 | 性色av无码免费一区二区三区 | 久久精品中文闷骚内射 | √天堂中文官网8在线 | 亚洲s码欧洲m码国产av | 久久国内精品自在自线 | 国产尤物精品视频 | 欧美午夜特黄aaaaaa片 | 无码乱肉视频免费大全合集 | 捆绑白丝粉色jk震动捧喷白浆 | 精品亚洲成av人在线观看 | 人人澡人人透人人爽 | 日韩成人一区二区三区在线观看 | 婷婷综合久久中文字幕蜜桃三电影 | 久久亚洲精品成人无码 | 国内精品久久久久久中文字幕 | 国产尤物精品视频 | yw尤物av无码国产在线观看 | 久久久国产精品无码免费专区 | 日产精品99久久久久久 | 国产超碰人人爽人人做人人添 | 中国大陆精品视频xxxx | 强奷人妻日本中文字幕 | 沈阳熟女露脸对白视频 | 国产成人一区二区三区在线观看 | 国产在线一区二区三区四区五区 | 中文精品无码中文字幕无码专区 | 人人爽人人爽人人片av亚洲 | 亚洲色大成网站www | 国产97人人超碰caoprom | 亚洲精品一区二区三区婷婷月 | 精品久久综合1区2区3区激情 | 国产亚洲精品久久久闺蜜 | 欧美老人巨大xxxx做受 | 国产精品欧美成人 | 色一情一乱一伦 | а√资源新版在线天堂 | 日本熟妇乱子伦xxxx | 99国产精品白浆在线观看免费 | 青草视频在线播放 | 国产高清不卡无码视频 | 男人扒开女人内裤强吻桶进去 | 国产xxx69麻豆国语对白 | 人人妻人人藻人人爽欧美一区 | 黑人大群体交免费视频 | 午夜男女很黄的视频 | 性史性农村dvd毛片 | 亚洲成av人在线观看网址 | 国产精品自产拍在线观看 | 乱码午夜-极国产极内射 | 牛和人交xxxx欧美 | 亚洲日韩av一区二区三区中文 | 国产午夜福利100集发布 | 中文字幕av无码一区二区三区电影 | 国内精品人妻无码久久久影院蜜桃 | 一区二区三区高清视频一 | 国产精品久久久久久久影院 | 大肉大捧一进一出视频出来呀 | 国产熟妇另类久久久久 | 夜夜夜高潮夜夜爽夜夜爰爰 | 夜夜躁日日躁狠狠久久av | 大乳丰满人妻中文字幕日本 | 欧美放荡的少妇 | 国内精品九九久久久精品 | 亚洲欧洲日本无在线码 | 天堂无码人妻精品一区二区三区 | 亚洲国产高清在线观看视频 | 精品日本一区二区三区在线观看 | 日欧一片内射va在线影院 | 午夜嘿嘿嘿影院 | 亚洲自偷自拍另类第1页 | 国产精品无码mv在线观看 | 无码福利日韩神码福利片 | 国产 精品 自在自线 | 国内精品久久久久久中文字幕 | 学生妹亚洲一区二区 | 亚洲精品成人av在线 | 久久久久人妻一区精品色欧美 | 亚洲国产欧美在线成人 | 亚洲 a v无 码免 费 成 人 a v | 欧美精品国产综合久久 | 久久久中文久久久无码 | 色噜噜亚洲男人的天堂 | 亚洲国产欧美在线成人 | 国产人成高清在线视频99最全资源 | 国产av无码专区亚洲awww | 夜夜高潮次次欢爽av女 | 野外少妇愉情中文字幕 | 亚洲色偷偷男人的天堂 | 中文字幕人妻丝袜二区 | 免费人成在线观看网站 | 99久久久无码国产aaa精品 | 99久久久无码国产aaa精品 | 草草网站影院白丝内射 | av香港经典三级级 在线 | 免费国产成人高清在线观看网站 | 成人毛片一区二区 | 熟妇人妻无乱码中文字幕 | 最新国产麻豆aⅴ精品无码 | 日本丰满护士爆乳xxxx | 亚洲日韩乱码中文无码蜜桃臀网站 | 久久人妻内射无码一区三区 | 亚洲色www成人永久网址 | 亚洲 激情 小说 另类 欧美 | 亚洲va中文字幕无码久久不卡 | 国产熟妇另类久久久久 | 午夜无码人妻av大片色欲 | 天堂亚洲免费视频 | 无遮无挡爽爽免费视频 | 老熟女乱子伦 | 国产精品人人妻人人爽 | 水蜜桃色314在线观看 | 免费无码的av片在线观看 | 无码人妻久久一区二区三区不卡 | 99视频精品全部免费免费观看 | 日本xxxx色视频在线观看免费 | 日韩成人一区二区三区在线观看 | 日本xxxx色视频在线观看免费 | 欧美日本免费一区二区三区 | 亚洲一区二区三区国产精华液 | 九九热爱视频精品 | 粗大的内捧猛烈进出视频 | 精品久久久久久人妻无码中文字幕 | 久久亚洲中文字幕无码 | 少妇性俱乐部纵欲狂欢电影 | 日欧一片内射va在线影院 | 无码人妻久久一区二区三区不卡 | 真人与拘做受免费视频 | 亚洲精品鲁一鲁一区二区三区 | av无码不卡在线观看免费 | а√天堂www在线天堂小说 | 国产成人人人97超碰超爽8 | 久久久久久亚洲精品a片成人 | 99国产精品白浆在线观看免费 | 中文字幕无线码免费人妻 | 大地资源中文第3页 | 狠狠色噜噜狠狠狠7777奇米 | 色噜噜亚洲男人的天堂 | 国产精品视频免费播放 | 色综合久久久无码中文字幕 | 亚洲熟熟妇xxxx | 国产成人人人97超碰超爽8 | 欧美性色19p | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲精品无码人妻无码 | 国产农村妇女高潮大叫 | 香蕉久久久久久av成人 | 国产成人综合美国十次 | 国产精品99爱免费视频 | 国产成人精品必看 | 日本大乳高潮视频在线观看 | 成人亚洲精品久久久久软件 | 国产精品人妻一区二区三区四 | 国产偷自视频区视频 | 大地资源网第二页免费观看 | 亚洲欧美日韩综合久久久 | 日本在线高清不卡免费播放 | 国产成人无码av在线影院 | 日韩无套无码精品 | 欧美人与牲动交xxxx | 日本熟妇人妻xxxxx人hd | 午夜理论片yy44880影院 | 好爽又高潮了毛片免费下载 | 亚洲精品国偷拍自产在线观看蜜桃 | 88国产精品欧美一区二区三区 | 亚洲 欧美 激情 小说 另类 | 在线播放无码字幕亚洲 | 2019nv天堂香蕉在线观看 | 中文字幕无码免费久久99 | 国产精品怡红院永久免费 | 中文字幕无码人妻少妇免费 | 国产精品无码一区二区三区不卡 | 国产成人综合美国十次 | 亚洲精品鲁一鲁一区二区三区 | 牲欲强的熟妇农村老妇女 | 丝袜足控一区二区三区 | 久热国产vs视频在线观看 | 成人免费无码大片a毛片 | 欧美真人作爱免费视频 | 少妇高潮一区二区三区99 | 97资源共享在线视频 | 最近免费中文字幕中文高清百度 | 老司机亚洲精品影院无码 | 久久 国产 尿 小便 嘘嘘 | 国产国语老龄妇女a片 | 毛片内射-百度 | 少妇无码av无码专区在线观看 | 中文字幕无码日韩专区 | 国产激情精品一区二区三区 | 久久久久久久人妻无码中文字幕爆 | 中文字幕无码热在线视频 | 日本大乳高潮视频在线观看 | 亚洲中文字幕成人无码 | 亚洲日韩av一区二区三区中文 | 99国产欧美久久久精品 | 国产人妻大战黑人第1集 | 性欧美熟妇videofreesex | 久久久精品欧美一区二区免费 | 精品国产国产综合精品 | 荫蒂被男人添的好舒服爽免费视频 | 国产婷婷色一区二区三区在线 | 亚洲欧美日韩综合久久久 | 日韩欧美群交p片內射中文 | 日本成熟视频免费视频 | 四虎永久在线精品免费网址 | 亚洲精品综合五月久久小说 | 四十如虎的丰满熟妇啪啪 | 丰满少妇人妻久久久久久 | 国产凸凹视频一区二区 | 国产综合久久久久鬼色 | 人人妻人人澡人人爽欧美一区九九 | 亚洲精品一区二区三区大桥未久 | 色欲av亚洲一区无码少妇 | 中文久久乱码一区二区 | 精品成在人线av无码免费看 | 九月婷婷人人澡人人添人人爽 | 国产亚洲精品精品国产亚洲综合 | 久久久国产一区二区三区 | 乱人伦人妻中文字幕无码 | 国产亚洲欧美日韩亚洲中文色 | 国产成人无码av片在线观看不卡 | 欧美怡红院免费全部视频 | 色婷婷综合中文久久一本 | 九月婷婷人人澡人人添人人爽 | 日本一卡二卡不卡视频查询 | 黑人巨大精品欧美一区二区 | 精品无码一区二区三区的天堂 | 亚洲经典千人经典日产 | 日日干夜夜干 | 成人精品视频一区二区三区尤物 | 中国大陆精品视频xxxx | 国产精品自产拍在线观看 | 丰满人妻精品国产99aⅴ | 亚洲日本va午夜在线电影 | 色综合久久网 | 国产精品.xx视频.xxtv | 蜜臀av在线播放 久久综合激激的五月天 | 成人无码视频在线观看网站 | 亚洲欧美精品伊人久久 | 国产人成高清在线视频99最全资源 | 成在人线av无码免费 | 亚洲欧美精品aaaaaa片 | 亚洲а∨天堂久久精品2021 | 日本欧美一区二区三区乱码 | 动漫av网站免费观看 | 少妇无码av无码专区在线观看 | 亚洲熟妇色xxxxx亚洲 | 老头边吃奶边弄进去呻吟 | 蜜桃av抽搐高潮一区二区 | 人人妻人人澡人人爽人人精品 | 帮老师解开蕾丝奶罩吸乳网站 | 无遮挡啪啪摇乳动态图 | 性做久久久久久久免费看 | 国产精品美女久久久网av | 激情爆乳一区二区三区 | 午夜不卡av免费 一本久久a久久精品vr综合 | 亚洲中文字幕在线无码一区二区 | 中文精品久久久久人妻不卡 | 成 人 免费观看网站 | 国产人妻人伦精品 | 性欧美大战久久久久久久 | 精品人妻中文字幕有码在线 | 中文字幕无码日韩欧毛 | 国产欧美熟妇另类久久久 | 日韩人妻少妇一区二区三区 | 亚洲国精产品一二二线 | 国产免费观看黄av片 | 久久99精品久久久久久 | 亚洲精品一区三区三区在线观看 | 国产人成高清在线视频99最全资源 |