Commit Graph

269 Commits

Author SHA1 Message Date
Lorenzo Colitti
b7e4058b07 Fix querying Ethernet availability for unprivileged callers. am: bc7ff5d89f am: 6b4862dfc8 am: 4815281295
Change-Id: Iafb673e949d06a327327d2ff043d8929a35974fa
2020-03-27 14:45:43 +00:00
Lorenzo Colitti
4815281295 Fix querying Ethernet availability for unprivileged callers. am: bc7ff5d89f am: 6b4862dfc8
Change-Id: I3004ec6456f68f9423d11009bdc7df51132cc155
2020-03-27 14:35:14 +00:00
Lorenzo Colitti
6b4862dfc8 Fix querying Ethernet availability for unprivileged callers. am: bc7ff5d89f
Change-Id: I7b670de0724e00ee48fe234b2bd193501c7c783c
2020-03-27 14:17:36 +00:00
Lorenzo Colitti
bc7ff5d89f Fix querying Ethernet availability for unprivileged callers.
Both EthernetManager#getAvailableInterfaces() and the no-arg
version of EthernetManager#isAvailable() end up calling
EthernetServiceImpl#getAvailableInterfaces. This method attempts
to filter out restricted interfaces if the caller does not have
the CONNECTIVITY_USE_RESTRICTED_NETWORKS permission.

Unfortunately EthernetNetworkFactory's notion of a restricted
interface is the opposite of what it should be. This means that
while privileged callers can see all interfaces, unprivileged
callers can only see restricted interfaces which they cannot use.

Fix this by correcting NetworkInterfaceState#isRestricted(), so
that unprivileged callers can see only unrestricted interfaces.
Privileged callers are unaffected.

This bug probably went unnoticed because restricted Ethernet
interfaces are rare (likely used only on auto devices) and
because the callers that care about those restricted interfaces
are generally privileged.

Bug: 148824036
Test: atest android.net.EthernetTetheringTest#testPhysicalEthernet
Merged-In: Idff3b05a193a80c581d80d0e4fe9c2d3fc0d8a25
Change-Id: Idff3b05a193a80c581d80d0e4fe9c2d3fc0d8a25
2020-03-27 11:38:33 +00:00
Lorenzo Colitti
c9fb72bbe0 Send tethered interface callbacks based on interface existence. am: 0c30d949df am: 32a1f9a35c am: 87c64dc6b3
Change-Id: Ide34e6cff966a9cd01948a4cb030f4d256cf1782
2020-03-20 02:15:58 +00:00
Lorenzo Colitti
4d5310692c Support setting the default interface to null again. am: 876e5e16a9 am: 65c1bc7c5d am: ac350dddc6
Change-Id: Ifad7deba00f8e40a50014ec5922ecb9fae465188
2020-03-20 02:15:35 +00:00
Lorenzo Colitti
87c64dc6b3 Send tethered interface callbacks based on interface existence. am: 0c30d949df am: 32a1f9a35c
Change-Id: I4ff59ff4ff51b312ff66afa42fae660775dda987
2020-03-20 01:17:01 +00:00
Lorenzo Colitti
ac350dddc6 Support setting the default interface to null again. am: 876e5e16a9 am: 65c1bc7c5d
Change-Id: I957babd740b0cef5f437467af7ebcac5fb373350
2020-03-20 01:16:54 +00:00
Lorenzo Colitti
32a1f9a35c Send tethered interface callbacks based on interface existence. am: 0c30d949df
Change-Id: I34e7e1ee8e1cbceb8f3941543dac9299e96a7e27
2020-03-20 00:44:59 +00:00
Lorenzo Colitti
65c1bc7c5d Support setting the default interface to null again. am: 876e5e16a9
Change-Id: I88a98acb57b48fb9eedf104ed783a7d27b12e47f
2020-03-20 00:44:42 +00:00
Lorenzo Colitti
0c30d949df Send tethered interface callbacks based on interface existence.
Currently, callbacks for tethered interface availability are sent
based on interface link state. This is incorrect:

- It is acceptable and expected to be able to enable tethering on
  an interface that does not yet have link up.
- It doesn't seem useful to disable Ethernet tethering if link
  temporarily goes down.

Instead, only base the callbacks on whether an interface exists
or not.

Bug: 150644681
Test: WIP tests in aosp/1260100 pass
Change-Id: I015219cbd03626c38fb5156d0cb2991ba7d7def7
Merged-In: I015219cbd03626c38fb5156d0cb2991ba7d7def7
(cherry picked from commit 64d12ea20ce3cd822518e0f15ed7483a2fb91a50)
2020-03-19 15:54:05 +00:00
Lorenzo Colitti
876e5e16a9 Support setting the default interface to null again.
Currently, the default interface can only ever go from null to
non-null. This is correct for fixed interfaces (because they
don't get unplugged) and it's generally correct for USB
interfaces that use ethX as their device name (because when
they are unplugged and plugged in again, the device name won't
change). But it is not correct if, for example, the default
interface is a test interface. So, allow mDefaultInterface to go
back to null.

This CL also fixes a crash if a tethered interface request is
added and removed when there is no default interface.

Also, make dump() report tethered interface requests.

Also remove an unused variable that I missed in the previous CL.

Bug: 150644681
Test: tested by EthernetTetheringTest in same topic
Change-Id: I5109d8da3aeb6c1f6523291d9e2ec92c64b5ad2d
Merged-In: I5109d8da3aeb6c1f6523291d9e2ec92c64b5ad2d
(cherry picked from commit cc156c2f7793731b2699e194d4b164138ee4cf62)
2020-03-19 15:53:13 +00:00
Lorenzo Colitti
2af1f3b8b0 Make Ethernet interfaces more testable. am: fb336e9296 am: 5cc44b3cdd am: ab6fe7445b
Change-Id: I17fc6f115accd82ca6c8eed18a495cab28972751
2020-03-19 15:16:54 +00:00
Lorenzo Colitti
ab6fe7445b Make Ethernet interfaces more testable. am: fb336e9296 am: 5cc44b3cdd
Change-Id: I437fe3a5462d64a20675642264fc0742469bebd2
2020-03-19 15:00:14 +00:00
Lorenzo Colitti
5cc44b3cdd Make Ethernet interfaces more testable. am: fb336e9296
Change-Id: I99a104ce76bbf3ceaca5497ab22b468d716769e0
2020-03-19 14:44:04 +00:00
Lorenzo Colitti
fb336e9296 Make Ethernet interfaces more testable.
This CL adds a setIncludeTestInterfaces method to EthernetManager
that, when called, causes the Ethernet service to recognize and
manage test interfaces created by TestNetworkManager.

Bug: 150644681
Test: Tested by EthernetTetheringTest in same topic
Change-Id: I86eef7a93267f800dbfc8eafd307effa76a344ca
Merged-In: I86eef7a93267f800dbfc8eafd307effa76a344ca
(cherry picked from commit 4978dbd5fb6592fc4e7be08d02783752245da634)
2020-03-19 12:29:35 +00:00
Automerger Merge Worker
8af676004d Revert part of 79eb7ba87b am: fd99009c52 am: 3379686f41
Change-Id: I8fe2ef8f60e07a0ef5eea665c5fb350984781595
2020-03-03 00:04:07 +00:00
Automerger Merge Worker
3379686f41 Revert part of 79eb7ba87b am: fd99009c52
Change-Id: I764110dd3cacb3c2953afd38983b6f43b83811a2
2020-03-02 23:46:05 +00:00
Chalard Jean
fd99009c52 Revert part of 79eb7ba87b
This reverts the parts of the above commit that have to do
with NetworkScore. The parts that convert the factory to the
new NetworkAgent API are conserved.

Bug: 113554781
Test: FrameworksNetTests
Change-Id: If2c368e084e29f9f358f43dcd547d42e8c7c4846
2020-02-28 06:26:20 +00:00
Automerger Merge Worker
6da0ed9d03 Set Ethernet default mode as CLIENT am: f85c0b301c am: dceced7bca am: 97b0e8d67c
Change-Id: Icba5166843dd4741493f2b22b519fbd1ed26489e
2020-02-01 16:17:11 +00:00
Automerger Merge Worker
dceced7bca Set Ethernet default mode as CLIENT am: f85c0b301c
Change-Id: Ib3e9b501c8a9bbc8862fc97f1bcddd2a92bbe46d
2020-02-01 16:00:23 +00:00
Milim Lee
f85c0b301c Set Ethernet default mode as CLIENT
Bug: 130840861
Test: build, boot
      atest EthernetTrackerTest
      manual test (using Ethernet)

Change-Id: I935ea2e5f214aced67fb60f4aec2744077177545
2020-02-01 05:48:53 +09:00
Chalard Jean
05c71a36c9 Merge "Make NetworkScore system API" 2020-01-31 03:06:15 +00:00
Chalard Jean
79eb7ba87b Make NetworkScore system API
Bug: 146583853
Test: FrameworksNetTests
Change-Id: Ie7b70750ef0e17141080f4266dea6155c3601569
2020-01-30 15:14:56 +09:00
Automerger Merge Worker
b1a5c68cee [automerger skipped] Support one Ethernet interface in server mode. am: 32327808e1 am: c5d03c8ca4 am: 8695bd42d3 -s ours
am skip reason: Change-Id I78f85bc36aaceb62ce274003a75ea99d0b6bc8b7 with SHA-1 c750566a77 is in history

Change-Id: I54f24efc6379337a48c54e8ef551117974d6ac04
2020-01-28 09:17:08 +00:00
Lorenzo Colitti
c5d03c8ca4 Support one Ethernet interface in server mode.
am: 32327808e1

Change-Id: I49dd9ef3d199508782e77e3b362ad3135ba82fa0
2020-01-28 00:37:36 -08:00
Lorenzo Colitti
32327808e1 Support one Ethernet interface in server mode.
Currently, Ethernet only supports interfaces in client mode
(e.g., to connect to the Internet). Add minimal support to
Ethernet to support interfaces in server mode. This simple
implementation only works on the default interface, which is the
first interface that is detected on boot (even if the interface
is later removed).

This also provides (but does not yet unhide) a simple API for
Tethering to request that the next-plugged-in interface to be
placed into server mode.

Test: Enabling tethering with change on top
Bug: 130840861
Merged-In: I78f85bc36aaceb62ce274003a75ea99d0b6bc8b7
Change-Id: I78f85bc36aaceb62ce274003a75ea99d0b6bc8b7
(clean cherry-pick from internal branch)
2020-01-28 16:22:46 +09:00
Lorenzo Colitti
c750566a77 Support one Ethernet interface in server mode.
Currently, Ethernet only supports interfaces in client mode
(e.g., to connect to the Internet). Add minimal support to
Ethernet to support interfaces in server mode. This simple
implementation only works on the default interface, which is the
first interface that is detected on boot (even if the interface
is later removed).

This also provides (but does not yet unhide) a simple API for
Tethering to request that the next-plugged-in interface to be
placed into server mode.

Test: Enabling tethering with change on top
Bug: 130840861
Change-Id: I78f85bc36aaceb62ce274003a75ea99d0b6bc8b7
2020-01-27 19:07:56 +09:00
Automerger Merge Worker
6a38d3aa4b Merge "Avoid creating IpClient if ethernet cable is unplugged." am: 918f68fce9 am: 35cc5e821e am: 91a297efc6
Change-Id: I6037008fa8c864a3f006bccf969ba2c1d7aad654
2020-01-09 05:53:55 +00:00
Automerger Merge Worker
91a297efc6 Merge "Avoid creating IpClient if ethernet cable is unplugged." am: 918f68fce9 am: 35cc5e821e
Change-Id: I8c8310da8935ffbdc3b18d7b05db55b81919c774
2020-01-09 05:37:15 +00:00
Lorenzo Colitti
35cc5e821e Merge "Avoid creating IpClient if ethernet cable is unplugged."
am: 918f68fce9

Change-Id: I097f2f68ea5b40997de7d312bbf6946c44e3b011
2020-01-08 21:27:48 -08:00
Lorenzo Colitti
918f68fce9 Merge "Avoid creating IpClient if ethernet cable is unplugged." 2020-01-09 05:26:34 +00:00
Automerger Merge Worker
8b65e6f8ce Fix refCount check at releaseNetworkFor am: b92d1f5513 am: 26965f92c3 am: 01e5c5a98c
Change-Id: Ib743575eb1f1c804182a50f14561ee5491f7087c
2019-12-17 12:47:48 +00:00
Automerger Merge Worker
01e5c5a98c Fix refCount check at releaseNetworkFor am: b92d1f5513 am: 26965f92c3
Change-Id: I82859813cf1e51cba5c240f86e3df4d2e1e0e2f4
2019-12-17 12:31:21 +00:00
Junaid Babu
26965f92c3 Fix refCount check at releaseNetworkFor
am: b92d1f5513

Change-Id: Ie57a05d66df6ddac7dc5919c299c1f3c2539b037
2019-12-17 04:11:07 -08:00
Junaid Babu
b92d1f5513 Fix refCount check at releaseNetworkFor
When releaseNetworkFor is called, refCount should be equal to 1 for
network.stop() to be called. This is the same logic that is followed by
WifiNetworkFactory also.
In the current code, when refCount is 2 and releaseNetworkFor() is called,
network.stop() will be executed and will stop Ethernet

Bug: 146089778
Test: build and boot OK
Change-Id: Ib7d1b488a2943364a8ba4a89eec5de4c33cf1d5a
2019-12-17 15:09:01 +09:00
kevinwk_lee
13d5b86614 Avoid creating IpClient if ethernet cable is unplugged.
This change avoids calling start() on needNetworkFor() if ethernet
cable is unplugged. Fixed by adding isLinkUp validation.

Test: ./cts-tradefed run cts-dev -d -m CtsSecurityTestCases -t \
      android.security.cts.ListeningPortsTest#testNoRemotelyAccessibleListeningUdpPorts
      adb shell netstat -lnup

Change-Id: I2debd7367a20b665249f9c19d2d8a61737435803
2019-10-31 07:23:11 +00:00
Xin Li
e23b109683 [automerger skipped] DO NOT MERGE - qt-qpr1-dev-plus-aosp-without-vendor@5915889 into stage-aosp-master am: 39e7509859
am: ba1932f601 -s ours
am skip reason: subject contains skip directive

Change-Id: Ic5e8885bfbe7257dabe36dd11574c99bad0506c9
2019-10-30 15:37:47 -07:00
Xin Li
ba1932f601 DO NOT MERGE - qt-qpr1-dev-plus-aosp-without-vendor@5915889 into stage-aosp-master
am: 39e7509859

Change-Id: Idb13dc5c8e29cdfa6643b0686641f351a48f49eb
2019-10-30 15:14:04 -07:00
Xin Li
39e7509859 DO NOT MERGE - qt-qpr1-dev-plus-aosp-without-vendor@5915889 into stage-aosp-master
Bug: 142003500
Change-Id: I10598042b88b6509ed29dee05fe27ca9decf184e
2019-10-30 11:49:19 -07:00
Paul Hu
efc7f26d66 Merge "[Ethernet] Replace internal connectivity checks permission" am: cd73c22c96 am: 2afd43ff9f am: 63721ec401
am: 5b12a54294

Change-Id: I1c248170fd82697352ac0526e3dadd8cbdb7a28d
2019-09-20 00:55:40 -07:00
Paul Hu
5b12a54294 Merge "[Ethernet] Replace internal connectivity checks permission" am: cd73c22c96 am: 2afd43ff9f
am: 63721ec401

Change-Id: I3606bee0a292d70dd140b4e244b8f283e8205c96
2019-09-20 00:48:36 -07:00
Paul Hu
63721ec401 Merge "[Ethernet] Replace internal connectivity checks permission" am: cd73c22c96
am: 2afd43ff9f

Change-Id: I1ccd73bc12ceb18e4b7578454bbfd3428ce8f135
2019-09-20 00:42:42 -07:00
Paul Hu
2afd43ff9f Merge "[Ethernet] Replace internal connectivity checks permission"
am: cd73c22c96

Change-Id: Idafe2f4e829b70920ba1f423bf5273a766257cf2
2019-09-20 00:36:15 -07:00
Paul Hu
cd73c22c96 Merge "[Ethernet] Replace internal connectivity checks permission" 2019-09-20 07:23:07 +00:00
Chalard Jean
6cad7f20e1 Update Ethernet code for the NetworkFactory serial number. am: 91456a8c7a am: abb7a8c574 am: 8a5d92da6d
am: 761a9e0eea

Change-Id: Ib4a41c536d2a0b9c8914504cb5e5bffff06434b9
2019-09-18 05:32:30 -07:00
Chalard Jean
761a9e0eea Update Ethernet code for the NetworkFactory serial number. am: 91456a8c7a am: abb7a8c574
am: 8a5d92da6d

Change-Id: Ifcce756f31fc85bcba49731596a8fc270efc3c79
2019-09-18 05:27:47 -07:00
Chalard Jean
8a5d92da6d Update Ethernet code for the NetworkFactory serial number. am: 91456a8c7a
am: abb7a8c574

Change-Id: I36c6a101dc4dc67fe094a7ec6d12870f06c4cb78
2019-09-18 05:20:36 -07:00
Chalard Jean
abb7a8c574 Update Ethernet code for the NetworkFactory serial number.
am: 91456a8c7a

Change-Id: I4a0601db487d9d60d4bc7487601fb1b26ab748d8
2019-09-18 05:15:07 -07:00
Chalard Jean
91456a8c7a Update Ethernet code for the NetworkFactory serial number.
See aosp/708790

Bug: 18637384
Bug: 29030667
Test: manual
      cts
      runtest framework-net
      atest frameworks/opt/net/ethernet/tests

Change-Id: I5caa4cb89ca1441f3c84b5675ceede6ecacfd132
2019-09-09 11:03:51 +08:00