文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android selinux策略文件怎么编译与加载

2023-07-05 10:16

关注

本文小编为大家详细介绍“Android selinux策略文件怎么编译与加载”,内容详细,步骤清晰,细节处理妥当,希望这篇“Android selinux策略文件怎么编译与加载”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

编译

用法1:

编译selinux

make sepolicy -j48 或 make selinux_policy -j48

把生成的文件 \out\target\product\XXXX\obj\ETC\vendor_sepolicy.cil_intermediates\vendor_sepolicy.cil push(out\target\product\XXXX\vendor\etc\selinux\vendor_sepolicy.cil)到 /vendor/etc/selinux 目录下

注:当前以规则文件 vendor_sepolicy.cil 为例。

用法2(推荐):

编译selinux

make selinux_policy -j48

make编译大约 3~17分钟 如果make编译过了,可使用ninja编译,不到一分钟就可以编译完成

time prebuilts/build-tools/linux-x86/bin/ninja -f out/combined-XXXX.ninja -j48 selinux_policy

time prebuilts/build-tools/linux-x86/bin/ninja -f out/combined-XXXX.ninja -j48 sepolicy.recovery

注:App上下文seapp_contexts,文件上下文 file_contexts ,属性上下文 property_contexts 的修改生效方法,见文末

原理简介:

手机启动后,进入加载selinux政策流程,会使用/odm/etc/selinux/目录下的两个sha256文件中的值分别同/system/etc/selinux,/product/etc/selinux 目录的sha256文件中的值对比,如果都相等,则加载/odm/etc/selinux/目录下的/odm/etc/selinux/precompiled_sepolicy 预编译的selinux二进制政策文件。如果不同,则使用/system/etc/selinux 和 /vendor/etc/selinux 等目录下的文件重新编译 selinux二进制政策文件,然后加载新的 sepolicy 文件。

1、selinux政策加载流程(加载sepolicy 二进制文件流程)

函数调用流程:

system/core/init/main.cpp

---> selinux.cpp ---> int SetupSelinux(char** argv)

---> SelinuxInitialize();

---> LoadPolicy()

---> LoadSplitPolicy()

---> FindPrecompiledSplitPolicy(std::string* file) // 关键函数

函数调用流程讲解:

开机启动时会加载selinux政策。main.cpp 中调用 selinux.cpp 中的 int SetupSelinux(char** argv) 函数,SetupSelinux 调用SelinuxInitialize(),SelinuxInitialize() 调用 LoadPolicy() 函数

int SetupSelinux(char** argv) {···    // Set up SELinux, loading the SELinux policy.    SelinuxSetupKernelLogging();    SelinuxInitialize();···    return 1;}
void SelinuxInitialize() {    ···    LOG(INFO) << "Loading SELinux policy";    if (!LoadPolicy()) {        LOG(FATAL) << "Unable to load SELinux policy";    }···}

LoadPolicy 方法中会判断 /system/etc/selinux/plat_sepolicy.cil 文件是否存在,存在调用LoadSplitPolicy,不存在调用LoadMonolithicPolicy方法从根目录/sepolicy(此路径在 /external/selinux/libselinux/src/android/android_platform.c sepolicy_file变量写死)下加载selinux政策(这是以前的版本)

【根据此处代码逻辑,make sepolicy 后,把生成的文件out\target\product\klein\root\sepolicy,push到根目录下,顺便删除/system/etc/selinux/plat_sepolicy.cil 文件

应该也可以使新的selinux政策生效(经测试无法push到根目录:Read-only file system)】

bool LoadPolicy() {    return IsSplitPolicyDevice() ? LoadSplitPolicy() : LoadMonolithicPolicy();}constexpr const char plat_policy_cil_file[] = "/system/etc/selinux/plat_sepolicy.cil";bool IsSplitPolicyDevice() {    return access(plat_policy_cil_file, R_OK) != -1;}bool LoadMonolithicPolicy() {    LOG(VERBOSE) << "Loading SELinux policy from monolithic file";    if (selinux_android_load_policy() < 0) {        PLOG(ERROR) << "Failed to load monolithic SELinux policy";        return false;    }    return true;}

/external/selinux/libselinux/src/android/android_platform.c

static const char *const sepolicy_file = "/sepolicy";int selinux_android_load_policy(){int fd = -1;fd = open(sepolicy_file, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);if (fd < 0) {selinux_log(SELINUX_ERROR, "SELinux:  Could not open %s:  %s\n",sepolicy_file, strerror(errno));return -1;}int ret = selinux_android_load_policy_from_fd(fd, sepolicy_file);close(fd);return ret;}

LoadSplitPolicy() 方法

use_userdebug_policy 由环境变量 INIT_FORCE_DEBUGGABLE 决定,使用adb shell命令 echo $INIT_FORCE_DEBUGGABLE 查看此变量为空,所以 use_userdebug_policy == false

代码进入 FindPrecompiledSplitPolicy方法.

bool LoadSplitPolicy() {    // IMPLEMENTATION NOTE: Split policy consists of three CIL files:    // * platform -- policy needed due to logic contained in the system image,    // * non-platform -- policy needed due to logic contained in the vendor image,    // * mapping -- mapping policy which helps preserve forward-compatibility of non-platform policy    //   with newer versions of platform policy.    //    // secilc is invoked to compile the above three policy files into a single monolithic policy    // file. This file is then loaded into the kernel.    // See if we need to load userdebug_plat_sepolicy.cil instead of plat_sepolicy.cil.    const char* force_debuggable_env = getenv("INIT_FORCE_DEBUGGABLE");    // 可使用adb shell命令 echo $INIT_FORCE_DEBUGGABLE 查看此环境变量的值    // 此变量为空,所以 use_userdebug_policy == false    bool use_userdebug_policy =            ((force_debuggable_env && "true"s == force_debuggable_env) &&             AvbHandle::IsDeviceUnlocked() && access(kDebugRamdiskSEPolicy, F_OK) == 0);    if (use_userdebug_policy) {        LOG(WARNING) << "Using userdebug system sepolicy";    }    // Load precompiled policy from vendor image, if a matching policy is found there. The policy    // must match the platform policy on the system image.    std::string precompiled_sepolicy_file;    // use_userdebug_policy requires compiling sepolicy with userdebug_plat_sepolicy.cil.    // Thus it cannot use the precompiled policy from vendor image.    // 核心代码 !use_userdebug_policy == true ,进入 FindPrecompiledSplitPolicy 函数    if (!use_userdebug_policy && FindPrecompiledSplitPolicy(&precompiled_sepolicy_file)) {        unique_fd fd(open(precompiled_sepolicy_file.c_str(), O_RDONLY | O_CLOEXEC | O_BINARY));        if (fd != -1) {            if (selinux_android_load_policy_from_fd(fd, precompiled_sepolicy_file.c_str()) < 0) {                LOG(ERROR) << "Failed to load SELinux policy from " << precompiled_sepolicy_file;                return false;            }            return true;        }    }    // No suitable precompiled policy could be loaded    LOG(INFO) << "Compiling SELinux policy";    // We store the output of the compilation on /dev because this is the most convenient tmpfs    // storage mount available this early in the boot sequence.    char compiled_sepolicy[] = "/dev/sepolicy.XXXXXX";    unique_fd compiled_sepolicy_fd(mkostemp(compiled_sepolicy, O_CLOEXEC));//创建临时文件    if (compiled_sepolicy_fd < 0) {        PLOG(ERROR) << "Failed to create temporary file " << compiled_sepolicy;        return false;    }···    unlink(compiled_sepolicy);// 临时文件如果不再被使用后,文件会被自动删除    LOG(INFO) << "Loading compiled SELinux policy";    // 编译完成,加载新的selinux文件    if (selinux_android_load_policy_from_fd(compiled_sepolicy_fd, compiled_sepolicy) < 0) {        LOG(ERROR) << "Failed to load SELinux policy from " << compiled_sepolicy;        return false;    }    return true;}

FindPrecompiledSplitPolicy 此方法主要工作:

/odm/etc/selinux/precompiled_sepolicy.plat_sepolicy_and_mapping.sha256

/system/etc/selinux/plat_sepolicy_and_mapping.sha256

对比两个文件中的sha值

/odm/etc/selinux/precompiled_sepolicy.product_sepolicy_and_mapping.sha256

/product/etc/selinux/product_sepolicy_and_mapping.sha256

并且对比这两个文件中的sha值

如果这两对文件中的值一致,FindPrecompiledSplitPolicy返回true,不一致返回false。

如果/odm/etc/selinux/目录下没有precompiled_sepolicy文件,

则会去/vendor/etc/selinux/目录下找相关的mapping.sha256去和system product 中的文件对比,

(我们的手机没有/vendor/etc/selinux/precompiled_sepolicy文件)

如果/vendor/etc/selinux/目录下也没有precompiled_sepolicy文件,

则FindPrecompiledSplitPolicy返回 false。

如果FindPrecompiledSplitPolicy返回true,加载预编译的政策

FindPrecompiledSplitPolicy返回false,则重新编译selinux政策,完成后加载新政策

【由此,可推测,修改/odm/etc/selinux/precompiled_sepolicy.plat_sepolicy_and_mapping.sha256文件中的值,

或,修改/odm/etc/selinux/precompiled_sepolicy.product_sepolicy_and_mapping.sha256的值

或,修改/system/etc/selinux/plat_sepolicy_and_mapping.sha256的值

或,修改/product/etc/selinux/product_sepolicy_and_mapping.sha256的值

或,删除/odm/etc/selinux/precompiled_sepolicy文件

都能引起重启后,重新编译新的sepolicy文件,使新的selinux政策生效】

bool FindPrecompiledSplitPolicy(std::string* file) {    file->clear();    // If there is an odm partition, precompiled_sepolicy will be in    // odm/etc/selinux. Otherwise it will be in vendor/etc/selinux.    static constexpr const char vendor_precompiled_sepolicy[] =        "/vendor/etc/selinux/precompiled_sepolicy";    static constexpr const char odm_precompiled_sepolicy[] =        "/odm/etc/selinux/precompiled_sepolicy";    if (access(odm_precompiled_sepolicy, R_OK) == 0) {        *file = odm_precompiled_sepolicy;    } else if (access(vendor_precompiled_sepolicy, R_OK) == 0) {        *file = vendor_precompiled_sepolicy;    } else {        PLOG(INFO) << "No precompiled sepolicy";        return false;    }    std::string actual_plat_id;    if (!ReadFirstLine("/system/etc/selinux/plat_sepolicy_and_mapping.sha256", &actual_plat_id)) {        PLOG(INFO) << "Failed to read "                      "/system/etc/selinux/plat_sepolicy_and_mapping.sha256";        return false;    }    std::string actual_product_id;    if (!ReadFirstLine("/product/etc/selinux/product_sepolicy_and_mapping.sha256",                       &actual_product_id)) {        PLOG(INFO) << "Failed to read "                      "/product/etc/selinux/product_sepolicy_and_mapping.sha256";        return false;    }    std::string precompiled_plat_id;    std::string precompiled_plat_sha256 = *file + ".plat_sepolicy_and_mapping.sha256";    if (!ReadFirstLine(precompiled_plat_sha256.c_str(), &precompiled_plat_id)) {        PLOG(INFO) << "Failed to read " << precompiled_plat_sha256;        file->clear();        return false;    }    std::string precompiled_product_id;    std::string precompiled_product_sha256 = *file + ".product_sepolicy_and_mapping.sha256";    if (!ReadFirstLine(precompiled_product_sha256.c_str(), &precompiled_product_id)) {        PLOG(INFO) << "Failed to read " << precompiled_product_sha256;        file->clear();        return false;    }    // 核心代码    if (actual_plat_id.empty() || actual_plat_id != precompiled_plat_id ||        actual_product_id.empty() || actual_product_id != precompiled_product_id) {        file->clear();        return false;    }    return true;}

2、综上使新的selinux政策生效的方法有:

3、关于开机编译sepolicy文件

开机时重新编译的sepolicy文件,会编译一个临时文件/dev/sepolicy.XXXXXX,新的selinux生效后,此文件会被删除。

当前测试发现:开机时编译sepolicy文件会导致开机时间变长,并且每次开机都编译一次。

有没有其他副作用?暂时未发现。

4、开机 SELinux 相关 log

1970-01-01 11:56:20.738 0-0/? I/SELinux: Initializing. 1970-01-01 11:56:31.265 0-0/? I/init: Loading SELinux policy 1970-01-01 11:56:31.271 0-0/? I/init: Compiling SELinux policy // log中出现此日志表明在编译新的selinux,selinux将会生效 1970-01-01 11:56:32.034 0-0/? I/init: Loading compiled SELinux policy1970-01-01 11:56:32.255 0-0/? I/SELinux: policy capability network_peer_controls=1 1970-01-01 11:56:32.255 0-0/? I/SELinux: policy capability open_perms=1 1970-01-01 11:56:32.255 0-0/? I/SELinux: policy capability extended_socket_class=1 1970-01-01 11:56:32.255 0-0/? I/SELinux: policy capability always_check_network=0 1970-01-01 11:56:32.255 0-0/? I/SELinux: policy capability cgroup_seclabel=0 1970-01-01 11:56:32.255 0-0/? I/SELinux: policy capability nnp_nosuid_transition=1 1970-01-01 11:56:32.461 0-0/? I/selinux: SELinux: Loaded policy from /dev/sepolicy.ys2KNm // 新的selinux生效,如果没有编译新的selinux,此处加载的是/odm/etc/selinux/precompiled_sepolicy 1970-01-01 11:56:32.467 0-0/? W/selinux: SELinux: Skipping /product/etc/selinux/product_file_contexts: empty file 1970-01-01 11:56:32.467 0-0/? I/selinux: SELinux: Loaded file_contexts 1970-01-01 11:56:32.524 0-0/? W/selinux: SELinux: Skipping /product/etc/selinux/product_file_contexts: empty file 1970-01-01 11:56:32.524 0-0/? I/selinux: SELinux: Loaded file_contexts

其他技巧

chcon : 随意修改某个文件(夹)的selinux lable。Ex: chcon u:object_r:system_data_file:s0 /data/app

restorecon : 依照sepolicy Rule中定义的规则,重新relable指定的文件(夹)。

修改 /system/bin/toybox 上下文示例:把junkserver的上下文修改为 shell_exec

进入手机shell 执行以下命令

# restorecon 命令需要跟参数,无法执行单个命令mobius:/ # restorecon system/bin/toybox -vSELinux:  Skipping /product/etc/selinux/product_file_contexts:  empty fileSELinux: Loaded file_contextsSELinux:  Relabeling /system/bin/toybox from u:object_r:toolbox_exec:s0 to u:object_r:shell_exec:s0.
mobius:/ # ls system/bin/toybox -lZ-rwxrwxrwx 1 root shell u:object_r:shell_exec:s0 432976 2009-01-01 08:00 system/bin/toybox

chcon

# androidchcon  <安全上下文> 文件chcon -R  <安全上下文> 目录# 示例klein:/ # chcon -v u:object_r:junkserverd_d_file:s0  /data/junk-server/junk.txtchcon '/data/junk-server/junk.txt' to u:object_r:junkserverd_d_file:s0# chcon -R -v u:object_r:system_data_file:s0 ./0# linux:chcon -t <安全上下文> 文件chcon -R -t <安全上下文> 目录

读到这里,这篇“Android selinux策略文件怎么编译与加载”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-人工智能
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯