diff options
author | Etan Cohen <etancohen@google.com> | 2017-04-25 13:46:50 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-04-25 13:46:50 +0000 |
commit | fc927dffb22be14b003e3343646982cd2dab2d4e (patch) | |
tree | f0dd8c82aeb9440f1ce3c7f5857ed38c17af0f9a /tests | |
parent | 3fe2643aff2fda817167e3274252ae183ecbbd85 (diff) | |
parent | d4965bdcb7c0ac8c443b058ea8eec9f232ea69e5 (diff) |
Merge "[AWARE] Add UID checking to WifiAware network specifier" am: 960b599df6 am: 7a8a570d36 am: d1d46404fe
am: d4965bdcb7
Change-Id: I0be89376ebf13f55a87f6e6a495641be59fe67e2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/aware/WifiAwareDataPathStateManagerTest.java | 99 |
1 files changed, 95 insertions, 4 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/aware/WifiAwareDataPathStateManagerTest.java b/tests/wifitests/src/com/android/server/wifi/aware/WifiAwareDataPathStateManagerTest.java index e7a383c5e..a2e7c77cf 100644 --- a/tests/wifitests/src/com/android/server/wifi/aware/WifiAwareDataPathStateManagerTest.java +++ b/tests/wifitests/src/com/android/server/wifi/aware/WifiAwareDataPathStateManagerTest.java @@ -57,6 +57,7 @@ import android.os.Handler; import android.os.INetworkManagementService; import android.os.Message; import android.os.Messenger; +import android.os.Process; import android.os.test.TestLooper; import android.test.suitebuilder.annotation.SmallTest; import android.util.Pair; @@ -302,6 +303,23 @@ public class WifiAwareDataPathStateManagerTest { testDataPathInitiatorResponderMismatchUtility(true); } + /** + * Validate the fail flow of an Initiator (subscriber) with its UID unset + */ + @Test + public void testDataPathInitiatorUidUnsetError() throws Exception { + testDataPathInitiatorResponderInvalidUidUtility(false, false); + } + + /** + * Validate the fail flow of an Initiator (subscriber) with its UID set as a malicious + * attacker (i.e. mismatched to its requested client's UID). + */ + @Test + public void testDataPathInitiatorUidSetIncorrectlyError() throws Exception { + testDataPathInitiatorResponderInvalidUidUtility(false, true); + } + /* * Responder tests */ @@ -395,6 +413,23 @@ public class WifiAwareDataPathStateManagerTest { testDataPathInitiatorResponderMismatchUtility(false); } + /** + * Validate the fail flow of an Initiator (subscriber) with its UID unset + */ + @Test + public void testDataPathResponderUidUnsetError() throws Exception { + testDataPathInitiatorResponderInvalidUidUtility(true, false); + } + + /** + * Validate the fail flow of an Initiator (subscriber) with its UID set as a malicious + * attacker (i.e. mismatched to its requested client's UID). + */ + @Test + public void testDataPathResponderUidSetIncorrectlyError() throws Exception { + testDataPathInitiatorResponderInvalidUidUtility(true, true); + } + /* * Utilities */ @@ -428,10 +463,66 @@ public class WifiAwareDataPathStateManagerTest { ns.peerId, ns.peerMac, ns.pmk, - ns.passphrase - ); + ns.passphrase, + ns.requestorUid); + nr.networkCapabilities.setNetworkSpecifier(ns); + + Message reqNetworkMsg = Message.obtain(); + reqNetworkMsg.what = NetworkFactory.CMD_REQUEST_NETWORK; + reqNetworkMsg.obj = nr; + reqNetworkMsg.arg1 = 0; + res.second.send(reqNetworkMsg); + mMockLooper.dispatchAll(); + + // consequences of failure: + // Responder (publisher): responds with a rejection to any data-path requests + // Initiator (subscribe): doesn't initiate (i.e. no HAL requests) + if (doPublish) { + // (2) get request & respond + mDut.onDataPathRequestNotification(pubSubId, peerDiscoveryMac, ndpId); + mMockLooper.dispatchAll(); + inOrder.verify(mMockNative).respondToDataPathRequest(anyShort(), eq(false), + eq(ndpId), eq(""), eq(null), eq(null), any()); + } + + verifyNoMoreInteractions(mMockNative, mMockCm); + } + + private void testDataPathInitiatorResponderInvalidUidUtility(boolean doPublish, + boolean isUidSet) throws Exception { + final int clientId = 123; + final int pubSubId = 11234; + final int ndpId = 2; + final byte[] pmk = "some bytes".getBytes(); + final PeerHandle peerHandle = new PeerHandle(1341234); + final byte[] peerDiscoveryMac = HexEncoding.decode("000102030405".toCharArray(), false); + + InOrder inOrder = inOrder(mMockNative, mMockCm, mMockCallback, mMockSessionCallback); + + // (0) initialize + Pair<Integer, Messenger> res = initDataPathEndPoint(clientId, pubSubId, peerHandle, + peerDiscoveryMac, inOrder, doPublish); + + // (1) create network request + NetworkRequest nr = getSessionNetworkRequest(clientId, res.first, peerHandle, pmk, + doPublish); + + // (2) corrupt request's UID + WifiAwareNetworkSpecifier ns = + (WifiAwareNetworkSpecifier) nr.networkCapabilities.getNetworkSpecifier(); + ns = new WifiAwareNetworkSpecifier( + ns.type, + ns.role, + ns.clientId, + ns.sessionId, + ns.peerId, + ns.peerMac, + ns.pmk, + ns.passphrase, + ns.requestorUid + 1); // corruption hack nr.networkCapabilities.setNetworkSpecifier(ns); + // (3) request network Message reqNetworkMsg = Message.obtain(); reqNetworkMsg.what = NetworkFactory.CMD_REQUEST_NETWORK; reqNetworkMsg.obj = nr; @@ -751,7 +842,6 @@ public class WifiAwareDataPathStateManagerTest { PeerHandle peerHandle, byte[] peerDiscoveryMac, InOrder inOrder, boolean doPublish) throws Exception { - final int uid = 1000; final int pid = 2000; final String callingPackage = "com.android.somePackage"; final String someMsg = "some arbitrary message from peer"; @@ -790,7 +880,8 @@ public class WifiAwareDataPathStateManagerTest { mMockLooper.dispatchAll(); // (3) create client & session & rx message - mDut.connect(clientId, uid, pid, callingPackage, mMockCallback, configRequest, false); + mDut.connect(clientId, Process.myUid(), pid, callingPackage, mMockCallback, configRequest, + false); mMockLooper.dispatchAll(); inOrder.verify(mMockNative).enableAndConfigure(transactionId.capture(), eq(configRequest), eq(false), eq(true)); |