成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術文章
文章詳情頁

android 禁止第三方apk安裝和卸載的方法詳解

瀏覽:8日期:2022-09-21 17:29:43

需求是這樣的,客戶要求提供系統的接口來控制apk的安裝和卸載,接口如下

boolean setAppInstallationPolicies(int mode, String[] appPackageNames)mode:應用名單類型0:黑名單(應用包名列表中的所有項都不允許安裝);1:白名單(只允許安裝應用包名列表中的項)。appPackageNames:應用包名列表。當appPackageNames為空時,取消所有已設定的應用。成功返回true;失敗返回false。String[] getAppInstallationPolicies()返回值為當前應用安裝管控狀態string[0]:功能模式,參見setAppInstallationPolicies方法的mode參數。string[1]至string[n-1]:應用包名列表。 boolean setAppUninstallationPolicies(int mode, String[] appPackageNames)mode:應用名單類型0:黑名單(應用包名列表中的所有項均強制卸載);1:白名單(應用包名列表中的所有項禁止卸載)。appPackageNames:應用包名列表。當appPackageNames為空時,取消所有已設定的應用。成功返回true;失敗返回false。String[] getAppUninstallationPolicies()返回值為當前應用卸載管控狀態string[0]:功能模式,參見setAppUninstallationPolicies方法的mode參數。string[1]至string[n-1]:應用包名列表。

android版本為9.0,首先想到的是在系統里面添加一個自己的service,分別在frameworks/base/core/java/android/app/添加IPolicyManager.aidl,frameworks/base/services/core/java/com/android/server/添加PolicyManagerService.java,在frameworks/base/添加policy/java/ga/mdm/PolicyManager.java,內容如下

package android.app; /** {@hide} */interface IPolicyManager{boolean setAppInstallationPolicies(int mode,inout String[] appPackageNames);String[] getAppInstallationPolicies();boolean setAppUninstallationPolicies(int mode,inout String[] appPackageNames);String[] getAppUninstallationPolicies();}

package com.android.server; import android.content.Context;import android.content.Intent;import android.content.IntentFilter; import android.os.ServiceManager;import android.os.SystemProperties;import android.provider.Settings;import android.util.Slog; import java.lang.reflect.Field;import java.util.ArrayList; import android.app.IPolicyManager;import android.net.wifi.WifiManager;import android.content.pm.PackageManager;import android.app.ActivityManager;import android.content.pm.IPackageDataObserver; public class PolicyManagerService extends IPolicyManager.Stub {private final String TAG = 'PolicyManagerService';private Context mContext;private String[] mAppPackageNames = null;private String[] mAppUninstallPackageNames = null; public PolicyManagerService(Context context) { mContext = context; }@Overridepublic boolean setAppInstallationPolicies(int mode, String[] appPackageNames){if(mode==0){Settings.System.putInt(mContext.getContentResolver(),'customer_app_status', 0);}else if(mode==1){Settings.System.putInt(mContext.getContentResolver(),'customer_app_status', 1);}else{return false;}mAppPackageNames = appPackageNames;return true;}@Overridepublic String[] getAppInstallationPolicies(){return mAppPackageNames;}@Overridepublic boolean setAppUninstallationPolicies(int mode,String[] appPackageNames){if(mode==0){Settings.System.putInt(mContext.getContentResolver(),'customer_appuninstall_status', 0);}else if(mode==1){Settings.System.putInt(mContext.getContentResolver(),'customer_appuninstall_status', 1);}else{return false;}mAppUninstallPackageNames = appPackageNames;return true;}@Overridepublic String[] getAppUninstallationPolicies(){return mAppUninstallPackageNames;}}

package ga.mdm; import android.util.Slog;import android.os.RemoteException;import android.content.Context;import android.app.IPolicyManager; public class PolicyManager {private final String TAG = 'PolicyManager';Context mContext; private final IPolicyManager mService; public PolicyManager(Context context,IPolicyManager mService) {mContext = context; this.mService = mService; } public boolean setAppInstallationPolicies(int mode,String[] appPackageNames){try { return mService.setAppInstallationPolicies(mode,appPackageNames); } catch (RemoteException ex) { ex.printStackTrace();return false; } }public String[] getAppInstallationPolicies(){try { return mService.getAppInstallationPolicies(); } catch (RemoteException ex) { ex.printStackTrace();return null; } }public boolean setAppUninstallationPolicies(int mode,String[] appPackageNames){try { return mService.setAppUninstallationPolicies(mode,appPackageNames); } catch (RemoteException ex) { ex.printStackTrace();return false; } }public String[] getAppUninstallationPolicies(){try { return mService.getAppUninstallationPolicies(); } catch (RemoteException ex) { ex.printStackTrace();return null; } }}

同時在frameworks/base/policy/添加Android.mk

# Copyright (C) 2014 The Android Open Source Project## Licensed under the Apache License, Version 2.0 (the 'License');# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an 'AS IS' BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License. LOCAL_PATH := $(call my-dir) # Build the java code# ============================================================ include $(CLEAR_VARS) LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/javaLOCAL_SRC_FILES := $(call all-java-files-under, java) $(call all-Iaidl-files-under, java) $(call all-logtags-files-under, java) LOCAL_JAVA_LIBRARIES := servicesLOCAL_MODULE := policy include $(BUILD_JAVA_LIBRARY) include $(call all-makefiles-under,$(LOCAL_PATH))

這里為什么將PolicyManager.java單獨出來,因為PolicyManager.java是提供給客戶用的,單獨生成一個jar包,客戶只需要使用policy.jar就可以調用,同時需要添加

--- frameworks/base/Android.bp(revision 221)+++ frameworks/base/Android.bp(working copy)@@ -46,7 +46,8 @@ 'wifi/java/**/*.java', 'keystore/java/**/*.java', 'rs/java/**/*.java',-+'policy/java/**/*.java',+ ':framework-javastream-protos', 'core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl',@@ -105,6 +106,7 @@ 'core/java/android/app/usage/ICacheQuotaService.aidl', 'core/java/android/app/usage/IStorageStatsManager.aidl', 'core/java/android/app/usage/IUsageStatsManager.aidl',+'core/java/android/app/IPolicyManager.aidl', ':libbluetooth-binder-aidl', 'core/java/android/content/IClipboard.aidl', 'core/java/android/content/IContentService.aidl',

將路徑添加到,否則不會編譯

-- build/make/core/pathmap.mk(revision 221)+++ build/make/core/pathmap.mk(working copy)@@ -83,6 +83,7 @@ lowpan keystore rs +policy )

添加模塊

--- build/make/target/product/base.mk(revision 221)+++ build/make/target/product/base.mk(working copy)@@ -142,7 +142,8 @@ traced_probes vdc vold - wm+ wm +policy

添加注冊服務的代碼

--- frameworks/base/core/java/android/content/Context.java(revision 221)+++ frameworks/base/core/java/android/content/Context.java(working copy)@@ -4198,6 +4198,9 @@ * @see #getSystemService(String) */ public static final String CROSS_PROFILE_APPS_SERVICE = 'crossprofileapps';+++public static final String POLICY_SERVICE = 'policy';

+import ga.mdm.PolicyManager;+ /** * Manages all of the system services that can be returned by {@link Context#getSystemService}. * Used by {@link ContextImpl}.@@ -982,6 +984,15 @@ return new VrManager(IVrManager.Stub.asInterface(b)); } });++registerService(Context.POLICY_SERVICE, PolicyManager.class,+new CachedServiceFetcher<PolicyManager>() {+ @Override+ public PolicyManager createService(ContextImpl ctx) {+IBinder b = ServiceManager.getService(Context.POLICY_SERVICE);+IPolicyManager service = IPolicyManager.Stub.asInterface(b);+return new PolicyManager(ctx, service);+ }});

+import com.android.server.PolicyManagerService;+ public final class SystemServer { private static final String TAG = 'SystemServer'; @@ -1287,7 +1289,14 @@ } traceEnd(); }-++try { +Slog.i(TAG, 'ClassMonitor Service is create'); +ServiceManager.addService(Context.POLICY_SERVICE, new PolicyManagerService(context));+} catch (Throwable e) { +reportWtf('starting ClassMonitorService', e); +}

還需要添加selinux權限

--- system/sepolicy/Android.mk(revision 221)+++ system/sepolicy/Android.mk(working copy)@@ -244,10 +244,10 @@ ifneq ($(with_asan),true) ifneq ($(SELINUX_IGNORE_NEVERALLOWS),true)-LOCAL_REQUIRED_MODULES += - sepolicy_tests - treble_sepolicy_tests_26.0 - treble_sepolicy_tests_27.0 +#LOCAL_REQUIRED_MODULES += +# sepolicy_tests +# treble_sepolicy_tests_26.0 +# treble_sepolicy_tests_27.0 endif endifIndex: system/sepolicy/prebuilts/api/26.0/nonplat_sepolicy.cil===================================================================--- system/sepolicy/prebuilts/api/26.0/nonplat_sepolicy.cil(revision 221)+++ system/sepolicy/prebuilts/api/26.0/nonplat_sepolicy.cil(working copy)@@ -135,6 +135,8 @@ (typeattributeset hal_wifi_supplicant_server (hal_wifi_supplicant_default)) (typeattribute adbd_26_0) (roletype object_r adbd_26_0)+(typeattribute policy_service_26_0)+(roletype object_r policy_service_26_0) (typeattribute audioserver_26_0) (roletype object_r audioserver_26_0) (typeattribute blkid_26_0)Index: system/sepolicy/prebuilts/api/27.0/nonplat_sepolicy.cil===================================================================--- system/sepolicy/prebuilts/api/27.0/nonplat_sepolicy.cil(revision 221)+++ system/sepolicy/prebuilts/api/27.0/nonplat_sepolicy.cil(working copy)@@ -267,6 +267,8 @@ (typeattributeset hal_wifi_supplicant_server (hal_wifi_supplicant_default)) (typeattribute adbd_27_0) (roletype object_r adbd_27_0)+(typeattribute policy_service_26_0)+(roletype object_r policy_service_26_0) (typeattribute adbd_exec_27_0) (roletype object_r adbd_exec_27_0) (typeattribute audioserver_27_0)Index: system/sepolicy/prebuilts/api/28.0/private/app_neverallows.te===================================================================--- system/sepolicy/prebuilts/api/28.0/private/app_neverallows.te(revision 221)+++ system/sepolicy/prebuilts/api/28.0/private/app_neverallows.te(working copy)@@ -128,7 +128,6 @@ proc_stat proc_swaps proc_uptime- proc_version proc_vmallocinfo proc_vmstat }:file { no_rw_file_perms no_x_file_perms };Index: system/sepolicy/prebuilts/api/28.0/private/compat/26.0/26.0.cil===================================================================--- system/sepolicy/prebuilts/api/28.0/private/compat/26.0/26.0.cil(revision 221)+++ system/sepolicy/prebuilts/api/28.0/private/compat/26.0/26.0.cil(working copy)@@ -15,6 +15,7 @@ (type rild) (typeattributeset accessibility_service_26_0 (accessibility_service))+(typeattributeset policy_service_26_0 (policy_service)) (typeattributeset account_service_26_0 (account_service)) (typeattributeset activity_service_26_0 (activity_service)) (typeattributeset adbd_26_0 (adbd))Index: system/sepolicy/prebuilts/api/28.0/private/compat/27.0/27.0.cil===================================================================--- system/sepolicy/prebuilts/api/28.0/private/compat/27.0/27.0.cil(revision 221)+++ system/sepolicy/prebuilts/api/28.0/private/compat/27.0/27.0.cil(working copy)@@ -718,6 +718,7 @@ (expandtypeattribute (zygote_exec_27_0) true) (expandtypeattribute (zygote_socket_27_0) true) (typeattributeset accessibility_service_27_0 (accessibility_service))+(typeattributeset policy_service_27_0 (policy_service)) (typeattributeset account_service_27_0 (account_service)) (typeattributeset activity_service_27_0 (activity_service)) (typeattributeset adbd_27_0 (adbd))Index: system/sepolicy/prebuilts/api/28.0/private/service_contexts===================================================================--- system/sepolicy/prebuilts/api/28.0/private/service_contexts(revision 221)+++ system/sepolicy/prebuilts/api/28.0/private/service_contexts(working copy)@@ -186,3 +186,4 @@ wifirtt u:object_r:rttmanager_service:s0 window u:object_r:window_service:s0 * u:object_r:default_android_service:s0+policy u:object_r:policy_service:s0Index: system/sepolicy/prebuilts/api/28.0/private/system_server.te===================================================================--- system/sepolicy/prebuilts/api/28.0/private/system_server.te(revision 221)+++ system/sepolicy/prebuilts/api/28.0/private/system_server.te(working copy)@@ -806,7 +806,7 @@ # Do not allow opening files from external storage as unsafe ejection # could cause the kernel to kill the system_server. neverallow system_server sdcard_type:dir { open read write };-neverallow system_server sdcard_type:file rw_file_perms;+# neverallow system_server sdcard_type:file rw_file_perms; # system server should never be operating on zygote spawned app data # files directly. Rather, they should always be passed via aIndex: system/sepolicy/prebuilts/api/28.0/public/service.te===================================================================--- system/sepolicy/prebuilts/api/28.0/public/service.te(revision 221)+++ system/sepolicy/prebuilts/api/28.0/public/service.te(working copy)@@ -32,6 +32,7 @@ type virtual_touchpad_service, service_manager_type; type vold_service, service_manager_type; type vr_hwc_service, service_manager_type;+type policy_service, system_api_service, system_server_service, service_manager_type; # system_server_services broken down type accessibility_service, app_api_service, ephemeral_app_api_service, system_server_service, service_manager_type;Index: system/sepolicy/private/app_neverallows.te===================================================================--- system/sepolicy/private/app_neverallows.te(revision 221)+++ system/sepolicy/private/app_neverallows.te(working copy)@@ -128,7 +128,6 @@ proc_stat proc_swaps proc_uptime- proc_version proc_vmallocinfo proc_vmstat }:file { no_rw_file_perms no_x_file_perms };Index: system/sepolicy/private/compat/26.0/26.0.cil===================================================================--- system/sepolicy/private/compat/26.0/26.0.cil(revision 221)+++ system/sepolicy/private/compat/26.0/26.0.cil(working copy)@@ -15,6 +15,7 @@ (type rild) (typeattributeset accessibility_service_26_0 (accessibility_service))+(typeattributeset policy_service_26_0 (policy_service)) (typeattributeset account_service_26_0 (account_service)) (typeattributeset activity_service_26_0 (activity_service)) (typeattributeset adbd_26_0 (adbd))Index: system/sepolicy/private/compat/27.0/27.0.cil===================================================================--- system/sepolicy/private/compat/27.0/27.0.cil(revision 221)+++ system/sepolicy/private/compat/27.0/27.0.cil(working copy)@@ -718,6 +718,7 @@ (expandtypeattribute (zygote_exec_27_0) true) (expandtypeattribute (zygote_socket_27_0) true) (typeattributeset accessibility_service_27_0 (accessibility_service))+(typeattributeset policy_service_27_0 (policy_service)) (typeattributeset account_service_27_0 (account_service)) (typeattributeset activity_service_27_0 (activity_service)) (typeattributeset adbd_27_0 (adbd))Index: system/sepolicy/private/service_contexts===================================================================--- system/sepolicy/private/service_contexts(revision 221)+++ system/sepolicy/private/service_contexts(working copy)@@ -186,3 +186,4 @@ wifirtt u:object_r:rttmanager_service:s0 window u:object_r:window_service:s0 * u:object_r:default_android_service:s0+policy u:object_r:policy_service:s0Index: system/sepolicy/private/system_server.te===================================================================--- system/sepolicy/private/system_server.te(revision 221)+++ system/sepolicy/private/system_server.te(working copy)@@ -806,7 +806,7 @@ # Do not allow opening files from external storage as unsafe ejection # could cause the kernel to kill the system_server. neverallow system_server sdcard_type:dir { open read write };-neverallow system_server sdcard_type:file rw_file_perms;+# neverallow system_server sdcard_type:file rw_file_perms; # system server should never be operating on zygote spawned app data # files directly. Rather, they should always be passed via aIndex: system/sepolicy/public/service.te===================================================================--- system/sepolicy/public/service.te(revision 221)+++ system/sepolicy/public/service.te(working copy)@@ -32,6 +32,7 @@ type virtual_touchpad_service, service_manager_type; type vold_service, service_manager_type; type vr_hwc_service, service_manager_type;+type policy_service, system_api_service, system_server_service, service_manager_type; # system_server_services broken down type accessibility_service, app_api_service, ephemeral_app_api_service, system_server_service, service_manager_type;

這樣就行了,燒錄重新開機使用adb shell service list可以看到添加的service

policy: [android.app.IPolicyManager]

在outtargetcommonobjJAVA_LIBRARIESpolicy_intermediates找到classes.jar,這就是提供給客戶用的jar

具體的禁止和卸載方法如下:

禁止安裝可以修改PackageManagerService.java,在handleStartCopy方法中添加下面的代碼

public void handleStartCopy() throws RemoteException { int ret = PackageManager.INSTALL_SUCCEEDED; // If we’re already staged, we’ve firmly committed to an install location if (origin.staged) {if (origin.file != null) { installFlags |= PackageManager.INSTALL_INTERNAL; installFlags &= ~PackageManager.INSTALL_EXTERNAL;} else { throw new IllegalStateException('Invalid stage location');} } final boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0; final boolean onInt = (installFlags & PackageManager.INSTALL_INTERNAL) != 0; final boolean ephemeral = (installFlags & PackageManager.INSTALL_INSTANT_APP) != 0; PackageInfoLite pkgLite = null; if (onInt && onSd) {// Check if both bits are set.Slog.w(TAG, 'Conflicting flags specified for installing on both internal and external');ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION; } else if (onSd && ephemeral) {Slog.w(TAG, 'Conflicting flags specified for installing ephemeral on external');ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION; } else {pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath, installFlags, packageAbiOverride);//add by juemePolicyManager policyManager = (PolicyManager)mContext.getSystemService('policy');String[] appNames = policyManager.getAppInstallationPolicies();if(appNames!=null && appNames.length>0){int app_status = android.provider.Settings.System.getInt(mContext.getContentResolver(),'customer_app_status', -1);Slog.w(TAG,'app_status '+app_status);if(app_status==0){for (int i = 0; i < appNames.length; i++) {Slog.w(TAG,'appNames 0 '+appNames[i]);if (pkgLite.packageName.equals(appNames[i])){ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;break;}}}else if(app_status==1){for (int i = 0; i < appNames.length; i++) {Slog.w(TAG,'appNames 1 '+appNames[i]);if (pkgLite.packageName.equals(appNames[i])){ret = PackageManager.INSTALL_SUCCEEDED;break;}else{ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;}}}}//add end

這樣在安裝時候就會報安裝位置不對的信息。

接著是禁止卸載,在PackageInstallerService.java的uninstall添加下面的方法。

@Override public void uninstall(VersionedPackage versionedPackage, String callerPackageName, int flags,IntentSender statusReceiver, int userId) throws RemoteException {//add by juemePolicyManager policyManager = (PolicyManager)mContext.getSystemService('policy');String[] appNames = policyManager.getAppUninstallationPolicies();if(appNames!=null && appNames.length>0){int appuninstall_status = android.provider.Settings.System.getInt(mContext.getContentResolver(),'customer_appuninstall_status', -1);Slog.w(TAG,'appuninstall_status '+appuninstall_status+' mInstallerPackageName '+versionedPackage.getPackageName());boolean isUninstall = true;//默認都是可卸載if(appuninstall_status==0){for (int i = 0; i < appNames.length; i++) {if (versionedPackage.getPackageName().equals(appNames[i])){isUninstall = true;break;}else{isUninstall = false;}}if(!isUninstall){return;}}else if(appuninstall_status==1){//應用包名列表中的所有項禁止卸載for (int i = 0; i < appNames.length; i++) {if (versionedPackage.getPackageName().equals(appNames[i])){isUninstall = false;break;}else{isUninstall = true;}}if(!isUninstall){return;}}}//add end

到此這篇關于android 禁止第三方apk安裝和卸載的方法詳解的文章就介紹到這了,更多相關android 禁止第三方apk內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Android
相關文章:
成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久
日韩精品久久理论片| 国产中文一区| 激情综合网址| 精品国产污污免费网站入口| 国内外成人在线视频| 国产一区二区三区的电影 | av一本久道久久综合久久鬼色| 在线成人午夜影院| 国产一区二区三区av电影| 欧美久久一区二区| 国产在线播放一区三区四| 欧美性感一类影片在线播放| 日本亚洲电影天堂| 在线视频国产一区| 激情六月婷婷久久| 91精品国产全国免费观看| 韩国成人在线视频| 91精品婷婷国产综合久久| 韩国女主播一区二区三区| 在线视频你懂得一区二区三区| 奇米影视一区二区三区小说| 欧美中文一区二区三区| 久久成人18免费观看| 欧美日韩在线三级| 韩国午夜理伦三级不卡影院| 91精品国产aⅴ一区二区| 国产电影精品久久禁18| 日韩精品一区二区三区四区| 99国产欧美久久久精品| 国产欧美中文在线| 欧美激情一级片一区二区| 国产精品久久免费看| 亚洲黄色一区二区三区| 亚洲国产cao| 色婷婷av一区二区三区软件| 蜜桃传媒麻豆第一区在线观看| 欧美蜜桃一区二区三区| 国产91高潮流白浆在线麻豆 | 婷婷一区二区三区| 欧美亚洲丝袜传媒另类| 毛片一区二区三区| 91超碰这里只有精品国产| 成人性视频网站| 久久精品人人做人人综合| 韩日视频一区| 亚洲一区影音先锋| 欧美吞精做爰啪啪高潮| 国产成人午夜电影网| 久久久国际精品| 亚洲欧洲日夜超级视频| 午夜精品123| 欧美日韩激情一区二区| 成人18视频在线播放| 国产精品高潮呻吟久久| 国产日韩免费| 麻豆久久久久久久| 久久久99久久| 一区二区av| 看片的网站亚洲| 欧美精品一区二区三| 在线成人黄色| 日韩成人免费在线| 亚洲精品一区二区三区精华液 | 亚洲超碰精品一区二区| 欧美三级视频在线| 成人av资源网站| 亚洲欧美成人一区二区三区| 色婷婷一区二区| 成人av在线电影| 亚洲免费观看高清完整版在线观看| 久久精品午夜| 福利一区福利二区| 亚洲欧美日韩综合aⅴ视频| 欧美午夜一区二区三区| 成人国产精品免费网站| 亚洲麻豆国产自偷在线| 欧美伊人久久大香线蕉综合69| 成人一区在线看| 中文字幕一区不卡| 色94色欧美sute亚洲线路一久| 国产91丝袜在线播放0| 亚洲免费观看在线视频| 欧美乱熟臀69xxxxxx| 国产精品chinese| 美女视频第一区二区三区免费观看网站| 精品久久久久久无| 亚洲欧美日韩国产综合精品二区| 国产一区二区三区美女| 最新国产精品久久精品| 欧美性videosxxxxx| 欧美性天天影院| 激情综合一区二区三区| 国产精品久久久久久福利一牛影视| 91国产精品成人| 欧美不卡一区| 免费在线观看一区二区三区| 国产欧美一区二区三区网站| 久久婷婷人人澡人人喊人人爽| 91亚洲国产成人精品一区二区三 | 亚洲精品综合| 国产成人免费视频网站| 亚洲女同女同女同女同女同69| 91精品啪在线观看国产60岁| av成人激情| eeuss鲁一区二区三区| 舔着乳尖日韩一区| 国产欧美日韩在线视频| 欧美日韩在线播放三区| 国产欧美二区| 99精品视频一区| 麻豆国产欧美一区二区三区| 日韩理论片中文av| 精品国产乱码久久久久久影片| 久久国产精品亚洲77777| 91老师片黄在线观看| 狠狠色丁香久久婷婷综合丁香| 一级特黄大欧美久久久| 欧美激情在线看| 日韩美女主播在线视频一区二区三区 | 国产成人夜色高潮福利影视| 亚洲动漫第一页| 欧美激情在线一区二区三区| 欧美二区三区的天堂| 中文一区在线| 欧美aⅴ99久久黑人专区| 国模娜娜一区二区三区| 亚洲图片欧美色图| 亚洲国产经典视频| 欧美精品777| 久久先锋资源| 亚洲日产国产精品| 91污在线观看| 国产一区二区三区国产| 日韩精品国产欧美| 亚洲色图制服诱惑| 久久久激情视频| 日韩欧美一二三| 欧美视频精品在线观看| 亚洲在线播放| 狠狠色噜噜狠狠狠狠色吗综合| 成人一区在线看| 国产一区在线精品| 视频一区二区不卡| 亚洲一区二区高清| 中文字幕佐山爱一区二区免费| 久久久亚洲精品石原莉奈 | 亚洲成人在线| thepron国产精品| 国产激情91久久精品导航| 日韩高清欧美激情| 亚洲一级二级三级| 中文字幕制服丝袜成人av| 久久久精品中文字幕麻豆发布| 欧美大片一区二区| 欧美日韩中字一区| 在线一区二区三区四区五区| 亚洲一区二区在| 国产日韩欧美亚洲一区| 亚洲国产精品一区制服丝袜| 欧美99久久| 99re热视频精品| 懂色av一区二区三区蜜臀 | 一区免费视频| 国产一区二区在线观看免费播放| 91丨porny丨中文| 不卡的av网站| 成人精品电影在线观看| 国产成人免费在线观看不卡| 狠狠色丁香婷综合久久| 狠狠色丁香久久婷婷综合丁香| 久久er精品视频| 精品一区二区三区久久| 久久精品国产99| 久久97超碰色| 紧缚奴在线一区二区三区| 全部av―极品视觉盛宴亚洲| 日韩高清欧美激情| 蜜桃视频一区二区| 久久机这里只有精品| 久久不见久久见中文字幕免费| 韩国v欧美v日本v亚洲v| 国产在线播放一区三区四| 国产一区二区成人久久免费影院| 国产一区二区精品久久| 国产高清久久久| 高清日韩电视剧大全免费| 粉嫩av亚洲一区二区图片| 成人av网站免费| 99精品欧美一区二区三区小说| av福利精品导航| 欧美日韩精品免费看| 亚洲视频久久| 99在线精品免费视频九九视| 亚洲一区中文| 色老汉一区二区三区| 欧美午夜影院一区| 日韩一区二区在线免费观看| 26uuu精品一区二区在线观看| 中文字幕乱码一区二区免费| 亚洲男人的天堂在线观看|