blob: 711cb91772b3062b0aa98f960395547dafcd80db [file] [log] [blame]
/*
* Copyright (C) 2014 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.content.Context;
import android.content.res.AssetManager;
import android.test.AndroidTestCase;
import junit.framework.TestCase;
import org.xmlpull.v1.XmlPullParserException;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.HashSet;
/**
* Verify that the SELinux configuration is sane.
*/
public class SELinuxTest extends AndroidTestCase {
static {
System.loadLibrary("ctssecurity_jni");
}
public void testMyJni() {
try {
checkSELinuxAccess(null, null, null, null, null);
fail("checkSELinuxAccess should have thrown");
} catch (NullPointerException e) {
// expected
}
try {
checkSELinuxContext(null);
fail("checkSELinuxContext should have thrown");
} catch (NullPointerException e) {
// expected
}
}
public void testCheckAccessSane() {
assertFalse(checkSELinuxAccess("a", "b", "c", "d", "e"));
}
public void testCheckContextSane() {
assertFalse(checkSELinuxContext("a"));
}
public void testZygoteContext() {
assertTrue(checkSELinuxContext("u:r:zygote:s0"));
}
public void testZygote() {
assertFalse(checkSELinuxAccess("u:r:zygote:s0", "u:object_r:runas_exec:s0", "file", "getattr", "/system/bin/run-as"));
// Also check init, just as a sanity check (init is unconfined, so it should pass)
assertTrue(checkSELinuxAccess("u:r:init:s0", "u:object_r:runas_exec:s0", "file", "getattr", "/system/bin/run-as"));
}
public void testNoBooleans() throws Exception {
// Intentionally not using JNI bindings to keep things simple
File[] files = new File("/sys/fs/selinux/booleans/").listFiles();
assertEquals(0, files.length);
}
private static native boolean checkSELinuxAccess(String scon, String tcon, String tclass, String perm, String extra);
private static native boolean checkSELinuxContext(String con);
}