blob: f07763f9c4b39d123d7a7c319da5d802e98b4cd4 [file] [log] [blame]
/**
* Copyright (C) 2017 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;
import android.platform.test.annotations.SecurityTest;
public class Poc17_03 extends SecurityTestCase {
/**
* b/31824853
*/
@SecurityTest
public void testPocCVE_2016_8479() throws Exception {
if (containsDriver(getDevice(), "/dev/kgsl-3d0")) {
AdbUtils.runPocNoOutput("CVE-2016-8479", getDevice(), 180);
// CTS begins the next test before device finishes rebooting,
// sleep to allow time for device to reboot.
Thread.sleep(30000);
}
}
/**
* b/33940449
*/
@SecurityTest
public void testPocCVE_2017_0508() throws Exception {
if (containsDriver(getDevice(), "/dev/ion") &&
containsDriver(getDevice(), "/dev/dri/renderD129")) {
AdbUtils.runPocNoOutput("CVE-2017-0508", getDevice(), 30);
// CTS begins the next test before device finishes rebooting,
// sleep to allow time for device to reboot.
Thread.sleep(60000);
}
}
/**
* b/33899363
*/
@SecurityTest
public void testPocCVE_2017_0333() throws Exception {
if (containsDriver(getDevice(), "/dev/dri/renderD128")) {
AdbUtils.runPocNoOutput("CVE-2017-0333", getDevice(), 30);
// Device takes up to 30 seconds to crash after ioctl call
Thread.sleep(30000);
}
}
/**
* b/33277611
*/
@SecurityTest
public void testPocCVE_2017_0463() throws Exception {
enableAdbRoot(getDevice());
AdbUtils.runPocNoOutput("CVE-2017-0463", getDevice(), 30);
// CTS begins the next test before device finishes rebooting,
// sleep to allow time for device to reboot.
Thread.sleep(30000);
}
/**
* b/32372915
*/
@SecurityTest
public void testPocCVE_2017_0519() throws Exception {
enableAdbRoot(getDevice());
if (containsDriver(getDevice(), "/dev/qbt1000")) {
AdbUtils.runPocNoOutput("CVE-2017-0519", getDevice(), 30);
}
}
/**
* b/31750232
*/
@SecurityTest
public void testPocCVE_2017_0520() throws Exception {
enableAdbRoot(getDevice());
if (containsDriver(getDevice(), "/dev/qce")) {
AdbUtils.runPocNoOutput("CVE-2017-0520", getDevice(), 30);
// CTS begins the next test before device finishes rebooting,
// sleep to allow time for device to reboot.
Thread.sleep(60000);
}
}
/**
* b/31695439
*/
@SecurityTest
public void testPocCVE_2017_0457() throws Exception {
enableAdbRoot(getDevice());
if (containsDriver(getDevice(), "/dev/adsprpc-smd")) {
AdbUtils.runPocNoOutput("CVE-2017-0457", getDevice(), 30);
// CTS begins the next test before device finishes rebooting,
// sleep to allow time for device to reboot.
Thread.sleep(60000);
}
}
/**
* b/31252965
*/
@SecurityTest
public void testPocCVE_2017_0460() throws Exception {
enableAdbRoot(getDevice());
AdbUtils.runPocNoOutput("CVE-2017-0460", getDevice(), 60);
}
/**
* b/33106520
*/
@SecurityTest
public void testPocCVE_2017_0456() throws Exception {
enableAdbRoot(getDevice());
if (containsDriver(getDevice(), "/dev/ipa")) {
AdbUtils.runPocNoOutput("CVE-2017-0456", getDevice(), 30);
// CTS begins the next test before device finishes rebooting,
// sleep to allow time for device to reboot.
Thread.sleep(60000);
}
}
/**
* b/32919951
*/
@SecurityTest
public void testPocCVE_2017_0521() throws Exception {
enableAdbRoot(getDevice());
if (containsDriver(getDevice(), "/dev/ion")) {
AdbUtils.runPocNoOutput("CVE-2017-0521", getDevice(), 30);
}
}
/**
* b/33979145
*/
@SecurityTest
public void testPocCVE_2017_0453() throws Exception {
enableAdbRoot(getDevice());
AdbUtils.runPocNoOutput("CVE-2017-0453", getDevice(), 30);
// Device takes up to 90 seconds to crash after PoC run.
Thread.sleep(90000);
}
}