blob: e2f6196e4d5f22858865c30d491e242f1ade6904 [file] [log] [blame]
/*
* Copyright (C) 2022 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.
*/
package android.security.cts.CVE_2021_39692;
import static android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE;
import static android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME;
import static androidx.test.core.app.ApplicationProvider.getApplicationContext;
import static androidx.test.platform.app.InstrumentationRegistry.getInstrumentation;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeNoException;
import static org.junit.Assume.assumeTrue;
import android.content.ActivityNotFoundException;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.provider.Settings;
import androidx.test.runner.AndroidJUnit4;
import androidx.test.uiautomator.By;
import androidx.test.uiautomator.UiDevice;
import androidx.test.uiautomator.Until;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.io.IOException;
import java.util.regex.Pattern;
@RunWith(AndroidJUnit4.class)
public class DeviceTest {
private void startOverlayService() {
Context context = getApplicationContext();
assertNotNull(context);
Intent intent = new Intent(context, PocService.class);
assumeTrue(context.getString(R.string.canNotDrawOverlaysMsg),
Settings.canDrawOverlays(getApplicationContext()));
try {
context.startService(intent);
} catch (Exception e) {
assumeNoException(
context.getString(R.string.activityNotStartedException, "overlay service"), e);
}
}
private void startVulnerableActivity() {
Context context = getApplicationContext();
Intent intent = new Intent(context, PocActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
context.startActivity(intent);
} catch (ActivityNotFoundException e) {
assumeNoException(
context.getString(R.string.activityNotStartedException, "PocActivity"), e);
}
}
@Test
public void testOverlayButtonPresence() {
UiDevice mDevice = UiDevice.getInstance(getInstrumentation());
/* Start the overlay service */
startOverlayService();
/* Wait for the overlay window */
Context context = getApplicationContext();
Pattern overlayTextPattern = Pattern.compile(context.getString(R.string.overlayButtonText),
Pattern.CASE_INSENSITIVE);
final int launchTimeoutMs = 20000;
assumeTrue(context.getString(R.string.overlayUiScreenError),
mDevice.wait(Until.hasObject(By.text(overlayTextPattern)), launchTimeoutMs));
/* Start the vulnerable activity */
startVulnerableActivity();
/* Wait until the object of launcher activity is gone */
boolean overlayDisallowed = false;
if (mDevice.wait(Until.gone(By.pkg(context.getString(R.string.testPkg))),
launchTimeoutMs)) {
overlayDisallowed = true;
}
Intent intent = new Intent(ACTION_PROVISION_MANAGED_PROFILE);
intent.putExtra(EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME,
new ComponentName(context, PocDeviceAdminReceiver.class));
PackageManager pm = context.getPackageManager();
ResolveInfo ri = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
assumeTrue(context.getString(R.string.activityNotFoundMsg, intent), ri != null);
String testVulnerableActivity = ri.activityInfo.name;
/* Check if the currently running activity is the vulnerable activity */
String activityDump = "";
try {
activityDump = mDevice.executeShellCommand(
context.getString(R.string.dumpsysActivityCmd, testVulnerableActivity));
} catch (IOException e) {
assumeNoException(context.getString(R.string.dumpsysActivityException), e);
}
Pattern activityPattern =
Pattern.compile(context.getString(R.string.mResumedTrue), Pattern.CASE_INSENSITIVE);
assumeTrue(context.getString(R.string.vulActivityNotRunningError, testVulnerableActivity),
activityPattern.matcher(activityDump).find());
/* Failing the test as fix is not present */
assertTrue(context.getString(R.string.overlayErrorMessage, testVulnerableActivity),
overlayDisallowed);
}
}