Remove LOCKDOWN from FirewallChain IntDef
LOCKDOWN_VPN was in the FirewallChain IntDef but this was not a right place because LOCKDOWN_VPN was not a valid value for Connectivity APIs that take an argument annotated with @FirewallChain(setUidFirewallRule, setFirewallChainEnabled, replaceFirewallChain). LOCKDOWN_VPN was in the FirewallChain IntDef because BpfNetMaps#setUidRule was used to add/remove LOCKDOWN_VPN entries. This commit adds BpfNetMaps#updateUidLockdownRule and uses this to add/remove LOCKDOWN_VPN entries instead of BpfNetMaps#setUidRule and removes LOCKDOWN from FirewallChain. Bug: 206482423 Test: atest TrafficControllerTest ConnectivityServiceTest PermissionMonitorTest HostsideVpnTests#testBlockIncomingPacket Change-Id: Iff9b9792fc0f208f153e10e396c6d5034b412d7c
This commit is contained in:
@@ -982,16 +982,6 @@ public class ConnectivityManager {
|
||||
@SystemApi(client = MODULE_LIBRARIES)
|
||||
public static final int FIREWALL_CHAIN_LOW_POWER_STANDBY = 5;
|
||||
|
||||
/**
|
||||
* Firewall chain used for lockdown VPN.
|
||||
* Denylist of apps that cannot receive incoming packets except on loopback because they are
|
||||
* subject to an always-on VPN which is not currently connected.
|
||||
*
|
||||
* @see #BLOCKED_REASON_LOCKDOWN_VPN
|
||||
* @hide
|
||||
*/
|
||||
public static final int FIREWALL_CHAIN_LOCKDOWN_VPN = 6;
|
||||
|
||||
/**
|
||||
* Firewall chain used for OEM-specific application restrictions.
|
||||
* Denylist of apps that will not have network access due to OEM-specific restrictions.
|
||||
@@ -1021,7 +1011,6 @@ public class ConnectivityManager {
|
||||
FIREWALL_CHAIN_POWERSAVE,
|
||||
FIREWALL_CHAIN_RESTRICTED,
|
||||
FIREWALL_CHAIN_LOW_POWER_STANDBY,
|
||||
FIREWALL_CHAIN_LOCKDOWN_VPN,
|
||||
FIREWALL_CHAIN_OEM_DENY_1,
|
||||
FIREWALL_CHAIN_OEM_DENY_2,
|
||||
FIREWALL_CHAIN_OEM_DENY_3
|
||||
|
||||
Reference in New Issue
Block a user