Commit Graph

11480 Commits

Author SHA1 Message Date
Lorenzo Colitti
7c00b2f055 Clear calling identity in registerNetworkAgent. am: 4b1cd16a76 am: 964f7c7e4d
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1511317

Change-Id: Ia731c724f32a52d609db513f07ac4615343ee0ad
2020-11-28 04:09:14 +00:00
Lorenzo Colitti
bb06c82637 Allow tests to create TRANSPORT_TEST|TRANSPORT_VPN networks. am: 4b4fcc7a72 am: 04c831319e
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1511312

Change-Id: Ib262f33cf2f467bf6610e2910d96fbcacb733a54
2020-11-28 04:09:11 +00:00
Lorenzo Colitti
ed3589c104 Move applying underlying caps from Vpn to ConnectivityService. am: 220987b38d am: a27c332849
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501815

Change-Id: I8f4dc858bf45095102b583f528eac296637132b4
2020-11-28 04:09:07 +00:00
Lorenzo Colitti
964f7c7e4d Clear calling identity in registerNetworkAgent. am: 4b1cd16a76
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1511317

Change-Id: I0f93630527cfe352f5d8f5c69b5276dadbb8c3e4
2020-11-28 03:27:05 +00:00
Lorenzo Colitti
04c831319e Allow tests to create TRANSPORT_TEST|TRANSPORT_VPN networks. am: 4b4fcc7a72
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1511312

Change-Id: Id28ea9f3b72e5cae0232ffc7698120512359be49
2020-11-28 03:24:32 +00:00
Lorenzo Colitti
a27c332849 Move applying underlying caps from Vpn to ConnectivityService. am: 220987b38d
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501815

Change-Id: I10147f9b86661243e654a16a760e183128493042
2020-11-28 03:20:40 +00:00
Lorenzo Colitti
4b1cd16a76 Clear calling identity in registerNetworkAgent.
Much of registerNetworkAgent calls internal ConnectivityService
methods which generally assume that they are not processing an
IPC and are running under the system's calling identity.

However, only the call to makeNetworkMonitor is run with caller
identity cleared. Expand the scope of clearing the caller
identity over the creation of the nai.

Bug: 173331190
Test: passes existing tests in ConnectivityServiceTest
Change-Id: Icad28601a612fb5e1ed0451ec9e2066f4e766d0e
2020-11-27 15:35:38 +09:00
Lorenzo Colitti
4b4fcc7a72 Allow tests to create TRANSPORT_TEST|TRANSPORT_VPN networks.
This CL allows an app that has the MANAGE_TEST_NETWORKS
permission to create test VPN networks.

The code enforces that such networks can never apply to any UIDs
and thus will never carry any traffic.

Bug: 173331190
Test: passes existing tests, moved tests pass
Change-Id: I5befea0e3b4b6dce4ca0c6a04471a055186b644c
2020-11-27 15:35:38 +09:00
Lorenzo Colitti
220987b38d Move applying underlying caps from Vpn to ConnectivityService.
Add support to ConnectivityService to track underlying networks
directly instead of through the Vpn class.

1. Communicate all information necessary to propagate underlying
   network capabilities to ConnectivityService via NetworkAgent.
   This includes:
   a. Underlying networks:
      - Add SystemApi for NetworkAgent to declare its underlying
        networks to ConnectivityService, and use it in Vpn.
      - Add a new declaredUnderlyingNetworks member to
        NetworkAgentInfo and store the underlying networks in it.
	Move propagation of underlying network capabilities to
	mixInCapabilities, which is a natural place for it.
   b. "Always metered" bit:
      - Communicate this to ConnectivityService via the existing
        NOT_METERED capability. Store it in a new declaredMetered
	boolean in NetworkAgentInfo to separate it cleanly from
	the NOT_METERED bit in the capabilities, which depends on
	whether the underlying networks are metered or not. In
	order to ensure that this is only ever changed when a NC
	update is received from a NetworkAgent, define a new
	processCapabilitiesFromAgent similar to the existing
        processLinkPropertiesFromAgent.

2. Ensure that propagating underlying network capabilities does
   not read the VPN's NetworkCapabilities. In order to do this,
   ensure that all relevant information on underlying networks
   and metering is sent to ConnectivityService at NetworkAgent
   registration time. CS still calls Vpn#updateCapabilities when
   a user is added/removed, but that is deleted in a future CL.

3. Slightly generalize propagating underlying network
   capabilities because there may be other network types that
   also have underlying networks that aren't VPNs (e.g., VCN).
   - Introduce a new supportsUnderlyingNetworks() boolean method
     in NetworkAgentInfo.
   - Rename updateAllVpnsCapabilities to
     propagateUnderlyingNetworkCapabilities.

This commit does not move the actual logic of calculating the
underlying capabilities out of Vpn.java. That can be done in a
subsequent change once CS stops calling getUnderlyingNetworks().

This commit also does not modify any of the other code in CS that
directly accesses VPNs' underlying networks.

Bug: 173331190
Test: passes existing tests in ConnectivityServiceTest
Test: CTS test in r.android.com/1511114
Test: atest CtsNetTestCases:Ikev2VpnTest HostsideVpnTests
Change-Id: I5f76cb1aa4866efed3d5c4590e931fdb0e994f8d
2020-11-27 15:35:38 +09:00
Treehugger Robot
22c43689ce Merge changes Id4632e1b,I31985822,Ibbf96a25 am: b459e5166d am: 7814aeda39
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1511309

Change-Id: I56294df5aa7773f9ed2caab4e14ed2a77b8f2a10
2020-11-26 05:11:03 +00:00
Treehugger Robot
7814aeda39 Merge changes Id4632e1b,I31985822,Ibbf96a25 am: b459e5166d
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1511309

Change-Id: Iabe10bcb42333e1046add1be5090c19733b7887d
2020-11-26 03:58:57 +00:00
Treehugger Robot
b459e5166d Merge changes Id4632e1b,I31985822,Ibbf96a25
* changes:
  Test passing an underlying network array with null network in it.
  Make testVpnNetworkActive more deterministic.
  Add a test for restricted profile added/removed with VPN up.
2020-11-26 03:40:44 +00:00
Lorenzo Colitti
c64d177ed9 Test passing an underlying network array with null network in it.
Current code treats these nulls as if they weren't there.

Bug: 173331190
Test: test-only change
Change-Id: Id4632e1b004c09910b4b7613f7233d2c19e2f0ac
2020-11-26 10:33:23 +09:00
Lorenzo Colitti
621f5a9e8f Make testVpnNetworkActive more deterministic.
This test is a bit brittle because it sets the underlying
networks while the VPN is undergoing validation by
NetworkMonitor. The test does attempt to disable validation,
but that's not actually possible - the only thing that's possible
is to tell NetworkMonitor to validate immediately without sending
any probes. So the underlying network change races with the
validation. I'm not sure why the test isn't flaky. It might be
because both the network change and the validation result in a
capabilities change, and the test expects "a capabilities change"
without expressing what change that should be.

Make this a bit more predictable by ensuring that the network
validates before the underlying networks are set.

This is useful because an upcoming CL will change the way
underlying network capabilities are propagated. With this test
CL, both the old and the new code pass.

Bug: 173331190
Test: test-only change
Change-Id: I319858228e8d097c0b60a107029f296385f91269
2020-11-26 10:33:23 +09:00
Lorenzo Colitti
97ade70ce8 Add a test for restricted profile added/removed with VPN up.
Bug: 173331190
Test: test-only change
Change-Id: Ibbf96a259a73068d110a159d54059720121117cc
2020-11-26 10:33:23 +09:00
Lucas Lin
828066d4ea Merge "Ignore verifying canBeSatisfiedBy() on Android Q" am: dad3c929a3 am: 8203949d52
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1508137

Change-Id: I473bf0f260309a9b1a30b1957714032f1f06b9f6
2020-11-24 04:37:14 +00:00
Lucas Lin
8203949d52 Merge "Ignore verifying canBeSatisfiedBy() on Android Q" am: dad3c929a3
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1508137

Change-Id: Ia287b39a2f7d9a5b1ef9baf60bcf90048d66af7b
2020-11-24 04:16:28 +00:00
Lucas Lin
dad3c929a3 Merge "Ignore verifying canBeSatisfiedBy() on Android Q" 2020-11-24 03:38:34 +00:00
lucaslin
aa00183916 Ignore verifying canBeSatisfiedBy() on Android Q
The method - satisfiedBy() has changed to canBeSatisfiedBy()
starting from Android R, so the method - canBeSatisfiedBy()
cannot be found when running this test on Android Q.
Ignore verifying canBeSatisfiedBy() on Android Q to fix this
problem.

Bug: 173911834
Test: Run MatchAllNetworkSpecifierTest on Android Q, R, S.
Change-Id: Ibe317b56f82d3ea100b1d78c3907dce4f2fd964d
2020-11-23 23:40:23 +08:00
James Mattis
0905ca74db Merge changes Ibed6cdd4,I51e3c00d,Ibf37f94b am: 6e4b94388a am: d7bc7d7e29
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1498660

Change-Id: Ie8d1a80486061a6ba2ca6a5f58c0e92201b8da6f
2020-11-21 01:28:23 +00:00
James Mattis
d7bc7d7e29 Merge changes Ibed6cdd4,I51e3c00d,Ibf37f94b am: 6e4b94388a
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1498660

Change-Id: Idb3243ae752270a66b32acd0b8a3cc5161e695b2
2020-11-21 00:54:09 +00:00
James Mattis
6e4b94388a Merge changes Ibed6cdd4,I51e3c00d,Ibf37f94b
* changes:
  Update toString() to use the correct request
  Update requestsSortedById() to sort by collection
  Allow a way to track the active request in an NRI
2020-11-21 00:24:11 +00:00
Chiachang Wang
f645c0e447 Merge changes from topic "move_BSCH" am: f383d088a5 am: e757414483 am: 3c5243c309
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1503395

Change-Id: I09068be6ac4d220c3e9e9242f3e0eb2cf5d01e23
2020-11-20 09:04:31 +00:00
Chiachang Wang
1b3dbf900a Move BasicShellCommandHandler to frameworks/lib/modules-utils am: 2d7e03cd61 am: 7f0b4d266e am: 30a6c316d0
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1483965

Change-Id: Ib09544e292d472e8dcd7dcf218035a0ec6de293c
2020-11-20 09:04:26 +00:00
Chiachang Wang
3c5243c309 Merge changes from topic "move_BSCH" am: f383d088a5 am: e757414483
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1503395

Change-Id: I3c14ab887a0c8529f17b9ed1eb49e1d01bc02be1
2020-11-20 08:21:56 +00:00
Chiachang Wang
30a6c316d0 Move BasicShellCommandHandler to frameworks/lib/modules-utils am: 2d7e03cd61 am: 7f0b4d266e
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1483965

Change-Id: I0c01c2355d990e6e819ba6ac368ead2166f068f4
2020-11-20 08:21:53 +00:00
Chiachang Wang
e757414483 Merge changes from topic "move_BSCH" am: f383d088a5
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1503395

Change-Id: I1e27a7fcde0ba83ffcad525ca091af7fc5ced2db
2020-11-20 07:49:31 +00:00
Chiachang Wang
7f0b4d266e Move BasicShellCommandHandler to frameworks/lib/modules-utils am: 2d7e03cd61
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1483965

Change-Id: Ib2a99f1aeb31b89e69a5b313ca3774ba145dde33
2020-11-20 07:47:11 +00:00
Chiachang Wang
f383d088a5 Merge changes from topic "move_BSCH"
* changes:
  Remove BasicShellCommandHandler from frameworks/base
  Move BasicShellCommandHandler to frameworks/lib/modules-utils
2020-11-20 07:29:56 +00:00
Benedict Wong
be4ea27157 Merge "Expose MIN_MTU_V6 as a public, @hide constant" am: 26aa9c68f7 am: f7e4ee16aa am: b4ad0c6822
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1505072

Change-Id: I0b91313fdf767e66200b61d74f7d59f5128411d2
2020-11-20 02:31:18 +00:00
Lucas Lin
4edbf528ce Merge "Remove a comment from ConnectivityService" am: 21b62782dd am: b80c635dc3 am: 59af781c54
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1494040

Change-Id: I37083babeee918dc1b8653bd5908e71bcdb3e028
2020-11-20 02:28:56 +00:00
Benedict Wong
b4ad0c6822 Merge "Expose MIN_MTU_V6 as a public, @hide constant" am: 26aa9c68f7 am: f7e4ee16aa
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1505072

Change-Id: I9c0715a6028e4a8deb66a63f656006c2949c5e81
2020-11-20 02:11:42 +00:00
Lucas Lin
59af781c54 Merge "Remove a comment from ConnectivityService" am: 21b62782dd am: b80c635dc3
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1494040

Change-Id: I5438ae75425761d4f25123b52f3329f272145c14
2020-11-20 02:11:32 +00:00
Benedict Wong
f7e4ee16aa Merge "Expose MIN_MTU_V6 as a public, @hide constant" am: 26aa9c68f7
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1505072

Change-Id: I9ef7cc8f84d6a9a49d754b39cc2bd66209d6343f
2020-11-20 01:38:30 +00:00
Lucas Lin
b80c635dc3 Merge "Remove a comment from ConnectivityService" am: 21b62782dd
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1494040

Change-Id: I20fa62c5dbe2d1e8e9cce19a8fb9a932f21722f7
2020-11-20 01:34:29 +00:00
Benedict Wong
26aa9c68f7 Merge "Expose MIN_MTU_V6 as a public, @hide constant" 2020-11-20 01:30:18 +00:00
Lucas Lin
21b62782dd Merge "Remove a comment from ConnectivityService" 2020-11-20 01:10:21 +00:00
James Mattis
b465e5c116 Update toString() to use the correct request
Update ConnectivityService.NetworkReassignment#toString to use either
the current satisfier's request otherwise highest priority request when
executing toString(). This is part of the mulilayered request changes.

Bug: 173336774
Bug: 171991028
Test: atest FrameworksNetTests
Change-Id: Ibed6cdd4522133164b2b919f62ecc9411943f026
2020-11-19 17:04:02 -08:00
James Mattis
f8eb49ab6b Update requestsSortedById() to sort by collection
Update requestsSortedById() to sort NetworkRequestInfo by their
nested collection of NetworkRequest objects vs a single request.
Before the NetworkRequestInfo with the request with the lowest
requestId would be sorted to the top. Now the NetworkRequestInfo
which contains the request with the lowest requestId will be
sorted to the top.

Bug: 173292541
Bug: 171991028
Test: atest FrameworksNetTests
Change-Id: I51e3c00d59443e37ddbf168c423d13df8d14fa64
2020-11-19 17:04:02 -08:00
James Mattis
3f93a3146a Allow a way to track the active request in an NRI
As we are now allowing for multi-layered requests in NetworkRequestInfo
(NRI), we need a way to track which of those requests ended up being
satisfied. This also includes updates to NetworkRequestInfo itself to
support multilayared requests.

Bug: 173146509
Bug: 171991028
Test: atest FrameworksNetTests
atest FrameworksNetIntegrationTests
atest CtsNetTestCasesLatestSdk
Change-Id: I7bb5a564769c90928871fe28de05195c9cfae6b5

Change-Id: Ibf37f94b53eb2e833821553e00d76fe38bfea266
2020-11-19 17:03:51 -08:00
Sarah Chin
b236e66cfc Merge "Clarify documentation on TEMP_NOT_METERED API" am: ca4f15b079 am: 783560bffd am: de759e0ebe
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1504954

Change-Id: Ia98f52ff73000267b6c716e5033d35836d5d5f39
2020-11-19 19:13:46 +00:00
Sarah Chin
de759e0ebe Merge "Clarify documentation on TEMP_NOT_METERED API" am: ca4f15b079 am: 783560bffd
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1504954

Change-Id: I9c1c671478ea4e7e8db8a55f7d5a4b4fe119ff2d
2020-11-19 18:39:26 +00:00
Sarah Chin
783560bffd Merge "Clarify documentation on TEMP_NOT_METERED API" am: ca4f15b079
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1504954

Change-Id: I36d911d227ed4ac8e7b23f52036ff384977e2248
2020-11-19 18:02:28 +00:00
Sarah Chin
ca4f15b079 Merge "Clarify documentation on TEMP_NOT_METERED API" 2020-11-19 17:50:35 +00:00
Lorenzo Colitti
d591886ab8 Merge "Make MockVpn more realistic and easier to use." am: 0dd10f43c7 am: c927d555cd am: 49156dc401
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501814

Change-Id: I949afe9dfa706ecce66f3b80a7f3e330dcc49413
2020-11-19 12:14:27 +00:00
Lorenzo Colitti
3dea488951 Merge changes I3711b362,I49421183,Icc0701cb,I2f5ccc1d am: 40b4ef6dd7 am: 49038a76c2 am: 3968347b84
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501951

Change-Id: I5e26e04f0ec77a2ea54681100d9dcfb991acdc95
2020-11-19 12:14:00 +00:00
Lorenzo Colitti
49156dc401 Merge "Make MockVpn more realistic and easier to use." am: 0dd10f43c7 am: c927d555cd
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501814

Change-Id: I96385c6463b791920199fd008743cddeaae6d348
2020-11-19 11:58:00 +00:00
Lorenzo Colitti
3968347b84 Merge changes I3711b362,I49421183,Icc0701cb,I2f5ccc1d am: 40b4ef6dd7 am: 49038a76c2
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501951

Change-Id: If8bab0ac75da87f417bc9bd925822a73002cecb7
2020-11-19 11:57:47 +00:00
Lorenzo Colitti
c927d555cd Merge "Make MockVpn more realistic and easier to use." am: 0dd10f43c7
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501814

Change-Id: I6584e231913841dc218573dc586429cd720621a3
2020-11-19 10:42:04 +00:00
Lorenzo Colitti
49038a76c2 Merge changes I3711b362,I49421183,Icc0701cb,I2f5ccc1d am: 40b4ef6dd7
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1501951

Change-Id: I021b2719e8b6d76cbb64d979f1ce5f661a1a25a5
2020-11-19 10:37:25 +00:00