• Home
Name Date Size #Lines LOC

..--

checkpolicy/03-May-2024-13,11111,106

dbus/03-May-2024-654530

gui/03-May-2024-7,9877,200

libselinux/03-May-2024-34,26227,637

libsemanage/03-May-2024-30,16921,670

libsepol/03-May-2024-133,727100,208

mcstrans/03-May-2024-6,1914,722

policycoreutils/03-May-2024-577,137457,179

prebuilts/bin/03-May-2024-2,0741,674

python/03-May-2024-57,69649,116

restorecond/03-May-2024-1,9831,421

sandbox/03-May-2024-2,4391,932

scripts/03-May-2024-290187

secilc/03-May-2024-8,0926,416

semodule-utils/03-May-2024-1,4841,232

.gitignoreD03-May-2024277 2825

.travis.ymlD03-May-20246.1 KiB166107

Android.bpD03-May-202481 76

CleanSpec.mkD03-May-2024310 73

MODULE_LICENSE_GPLD03-May-20240

MakefileD03-May-20241.1 KiB4740

NOTICED03-May-2024106.1 KiB2,0611,704

OWNERSD03-May-202453 43

READMED03-May-20241.1 KiB2619

README.androidD03-May-20241.7 KiB4231

README

1Please submit all bug reports and patches to selinux@vger.kernel.org.
2Subscribe by sending "subscribe selinux" in the body of an email
3to majordomo@vger.kernel.org.
4
5Build dependencies on Fedora:
6yum install audit-libs-devel bison bzip2-devel dbus-devel dbus-glib-devel flex flex-devel flex-static glib2-devel libcap-devel libcap-ng-devel pam-devel pcre-devel python3-devel python3-setools swig xmlto redhat-rpm-config
7
8To build and install everything under a private directory, run:
9make DESTDIR=~/obj install install-pywrap
10
11To install as the default system libraries and binaries
12(overwriting any previously installed ones - dangerous!),
13on x86_64, run:
14make LIBDIR=/usr/lib64 SHLIBDIR=/lib64 install install-pywrap relabel
15or on x86 (32-bit), run:
16make install install-pywrap relabel
17
18This may render your system unusable if the upstream SELinux userspace
19lacks library functions or other dependencies relied upon by your
20distribution.  If it breaks, you get to keep both pieces.
21
22To install libsepol on macOS (mainly for policy analysis):
23cd libsepol; make PREFIX=/usr/local install
24
25This requires GNU coreutils (brew install coreutils).
26

README.android

1This fork of Android differs in the following ways:
2 - README.android
3 - All Android.mk and Android.bp files
4 - ALL MODULE_LICENSE_* files
5 - libselinux/include/selinux/android.h
6 - libselinux/src/android/android.c
7
8All other changes should be upstreamed to selinux as
9Android no longer carries changes outside of those files.
10
11The upstream project can be found at:
12https://github.com/SELinuxProject/selinux
13
14Thus, since all changes are in separate files, updates merged from
15upstream should occur with no merge conflicts.
16
17This fork differs from upstream libselinux in at least the following ways:
18
19* The Android fork omits compiling many of the src files and specifies
20  custom build configurations. The exact details, are encoded in the
21  Android.bp and Android.mk files.
22
23* The SELinux policy files are all located in / rather than under
24  /etc/selinux since /etc is not available in Android until /system
25  is mounted and use fixed paths, not dependent on /etc/selinux/config.
26
27* The kernel policy file (sepolicy in Android, policy.N in Linux) does
28  not include a version suffix since Android does not need to support
29  booting multiple kernels.
30
31* The policy loading logic does not support automatic downgrading of
32  the kernel policy file to a version known to the kernel, since this
33  requires libsepol on the device and is only needed to support mixing
34  and matching kernels and userspace easily.
35
36* restorecon functionality, including recursive restorecon, has been
37  been upstreamed as selinux_restorecon(), but there are residual
38  differences between it and selinux_android_restorecon().
39
40* Support for seapp_contexts, a new Android-specific SELinux
41  configuration file has been added within android.c.
42