| <html devsite><head> |
| <title>自定义 SELinux</title> |
| <meta name="project_path" value="/_project.yaml"/> |
| <meta name="book_path" value="/_book.yaml"/> |
| </head> |
| <body> |
| <!-- |
| Copyright 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. |
| --> |
| |
| <p>集成这一基本级别的功能并全面分析结果后,您可以添加自己的政策设置,以便涵盖自己对 Android 操作系统进行的自定义。当然,这些政策仍必须要满足 <a href="/compatibility/index.html">Android 兼容性计划</a>的要求,并且不会移除默认的 SELinux 设置。</p> |
| |
| <p>制造商不得移除现有的安全设置,否则可能会破坏 Android SELinux 实现及其管控的应用。这包括可能需要进行改进以符合政策并正常运行的第三方应用。应用必须无需进行任何修改即可继续在启用了 SELinux 的设备上正常运行。</p> |
| |
| <p>当开始着手自定义 SELinux 时,制造商应记得做以下事情:</p> |
| |
| <ul> |
| <li>为所有新的守护进程编写 SELinux 政策</li><li>尽可能使用预定义的域</li><li>为作为 <code>init</code> 服务衍生的所有进程分配域</li><li>在编写政策之前先熟悉相关的宏</li><li>向 AOSP 提交对核心政策进行的更改</li></ul> |
| |
| <p>不要做以下事情:</p> |
| |
| <ul> |
| <li>创建不兼容的政策</li><li>允许对最终用户政策进行自定义</li><li>允许对 MDM 政策进行自定义</li><li>恐吓违反政策的用户</li><li>添加后门程序</li></ul> |
| |
| <p><em></em>如需查看具体要求,请参阅 <a href="/compatibility/android-cdd.pdf">Android 兼容性定义文档</a>中的“内核安全功能”部分。</p> |
| |
| <p>SELinux 采用白名单方法,这意味着只能授予政策中明确允许的访问权限。由于 Android 的默认 SELinux 政策已经支持 Android 开放源代码项目,因此原始设备制造商 (OEM) 无需以任何方式修改 SELinux 设置。如果他们要自定义 SELinux 设置,则应格外谨慎,以免破坏现有应用。以下是我们建议的做法:</p> |
| |
| <ol> |
| <li>使用<a href="https://android.googlesource.com/kernel/common/">最新的 Android 内核</a>。 |
| </li><li>采用<a href="http://en.wikipedia.org/wiki/Principle_of_least_privilege">最小权限原则</a>。 |
| </li><li>仅针对您向 Android 添加的内容调整 SELinux 政策。默认政策能够自动适用于 <a href="https://android.googlesource.com/">Android 开放源代码项目</a>代码库。 |
| </li><li>将各个软件组件拆分成多个负责执行单项任务的模块。 |
| </li><li>创建用于将这些任务与无关功能隔离开来的 SELinux 政策。 |
| </li><li>将这些政策放在 <code>/device/manufacturer/device-name/sepolicy</code> 目录中的 *.te 文件(te 是 SELinux 政策源代码文件使用的扩展名)内,然后使用 <code>BOARD_SEPOLICY</code> 变量将它们纳入到您的版本中。 |
| </li><li>先将新域设为宽容域。通过在相应域的 .te 文件中使用宽容声明,可以做到这一点。 |
| </li><li>分析结果并优化域定义。 |
| </li><li>当 userdebug 版本中不再出现拒绝事件时,移除宽容声明。 |
| </li></ol> |
| |
| <p>集成工作完成后,原始设备制造商 (OEM) 的 Android 开发过程还应包含一个确保向前兼容 SELinux 的步骤。在理想的软件开发过程中,仅当软件模型发生变化时,SELinux 政策才需要进行更改,而当实际实现发生变化时,SELinux 政策将不需要进行更改。</p> |
| |
| <p>当设备制造商开始自定义 SELinux 时,他们应首先审核自己向 Android 添加的内容。如果他们添加了执行新功能的组件,在开启强制模式之前,他们需要先确认该组件是否符合 Android 采用的安全政策,以及原始设备制造商 (OEM) 制定的所有相关政策。</p> |
| |
| <p>为了防止出现不必要的问题,过度宽泛和过度兼容要好于过度限制和不兼容,后者会导致设备功能损坏。不过,如果制造商进行的更改能够惠及其他人,则应将这些更改作为<a href="/source/submit-patches.html">补丁程序</a>提供给默认 SELinux 政策。如果相应补丁程序已应用于默认安全政策,制造商将不再需要针对每个新的 Android 版本进行此项更改。</p> |
| |
| <h2 id="example_policy_statements">政策声明示例</h2> |
| |
| <p>首先请注意,SELinux 基于 <a href="https://www.gnu.org/software/m4/manual/index.html">M4</a> 计算机语言,因此支持多种有助于节省时间的宏。</p> |
| |
| <p>在以下示例中,所有域都被授予从 <code>/dev/null</code> 读取数据或向其写入数据的权限以及从 <code>/dev/zero</code> 读取数据的权限。</p> |
| |
| <pre> |
| # Allow read / write access to /dev/null |
| allow domain null_device:chr_file { getattr open read ioctl lock append write}; |
| |
| # Allow read-only access to /dev/zero |
| allow domain zero_device:chr_file { getattr open read ioctl lock }; |
| </pre> |
| |
| <p>可以使用 SELinux <code>*_file_perms</code> 宏编写相同的声明(代码非常简短):</p> |
| |
| <pre> |
| # Allow read / write access to /dev/null |
| allow domain null_device:chr_file rw_file_perms; |
| |
| # Allow read-only access to /dev/zero |
| allow domain zero_device:chr_file r_file_perms; |
| </pre> |
| |
| <h2 id="example_policy">政策示例</h2> |
| |
| <p>以下是一个完整的 DHCP 政策示例,我们将在下文中对其进行分析:</p> |
| |
| <pre> |
| type dhcp, domain; |
| permissive dhcp; |
| type dhcp_exec, exec_type, file_type; |
| type dhcp_data_file, file_type, data_file_type; |
| |
| init_daemon_domain(dhcp) |
| net_domain(dhcp) |
| |
| allow dhcp self:capability { setgid setuid net_admin net_raw net_bind_service |
| }; |
| allow dhcp self:packet_socket create_socket_perms; |
| allow dhcp self:netlink_route_socket { create_socket_perms nlmsg_write }; |
| allow dhcp shell_exec:file rx_file_perms; |
| allow dhcp system_file:file rx_file_perms; |
| # For /proc/sys/net/ipv4/conf/*/promote_secondaries |
| allow dhcp proc_net:file write; |
| allow dhcp system_prop:property_service set ; |
| unix_socket_connect(dhcp, property, init) |
| |
| type_transition dhcp system_data_file:{ dir file } dhcp_data_file; |
| allow dhcp dhcp_data_file:dir create_dir_perms; |
| allow dhcp dhcp_data_file:file create_file_perms; |
| |
| allow dhcp netd:fd use; |
| allow dhcp netd:fifo_file rw_file_perms; |
| allow dhcp netd:{ dgram_socket_class_set unix_stream_socket } { read write }; |
| allow dhcp netd:{ netlink_kobject_uevent_socket netlink_route_socket |
| netlink_nflog_socket } { read write }; |
| </pre> |
| |
| <p>下面我们来分析一下该示例:</p> |
| |
| <p>在第一行(即类型声明)中,该政策声明 DHCP 守护进程将沿用基本的安全政策 (<code>domain</code>)。从前面的声明示例中,我们知道 DHCP 可以从 <code>/dev/null.</code> 读取数据以及向其写入数据。</p> |
| |
| <p>在第二行中,DHCP 被声明为宽容域。</p> |
| |
| <p>在 <code>init_daemon_domain(dhcp)</code> 这一行中,该政策声明 DHCP 是从 <code>init</code> 衍生而来的,并且可以与其进行通信。</p> |
| |
| <p>在 <code>net_domain(dhcp)</code> 这一行中,该政策允许 DHCP 使用 <code>net</code> 域中的常用网络功能,例如读取和写入 TCP 数据包、通过套接字进行通信,以及执行 DNS 请求。</p> |
| |
| <p>在 <code>allow dhcp proc_net:file write;</code> 这一行中,该政策声明 DHCP 可以向 <code>/proc</code> 中的特定文件写入数据。这一行显示了 SELinux 的详细文件标签。它使用 <code>proc_net</code> 标签来限定 DHCP 仅对 <code>/proc/sys/net</code> 中的文件具有写入权限。</p> |
| |
| <p>该示例的最后一部分以 <code>allow dhcp netd:fd use;</code> 开头,描述了允许应用之间如何进行交互。该政策声明 DHCP 和 netd 之间可通过文件描述符、FIFO 文件、数据报套接字以及 UNIX 信息流套接字进行通信。DHCP 只能从数据报套接字和 UNIX 信息流套接字中读取数据以及向它们写入数据,但不能创建或打开此类套接字。</p> |
| |
| <h2 id="available_controls">可用控件</h2> |
| |
| <table> |
| <tbody><tr> |
| <td> |
| <p><strong>类</strong></p> |
| </td> |
| <td> |
| <p><strong>权限</strong></p> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>文件</p> |
| </td> |
| <td> |
| <pre> |
| |
| ioctl read write create getattr setattr lock relabelfrom relabelto append |
| unlink link rename execute swapon quotaon mounton</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>目录</p> |
| </td> |
| <td> |
| <pre> |
| |
| add_name remove_name reparent search rmdir open audit_access execmod</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>套接字</p> |
| </td> |
| <td> |
| <pre> |
| |
| ioctl read write create getattr setattr lock relabelfrom relabelto append bind |
| connect listen accept getopt setopt shutdown recvfrom sendto recv_msg send_msg |
| name_bind</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>文件系统</p> |
| </td> |
| <td> |
| <pre> |
| |
| mount remount unmount getattr relabelfrom relabelto transition associate |
| quotamod quotaget</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>进程</p> |
| </td> |
| <td> |
| <pre> |
| |
| fork transition sigchld sigkill sigstop signull signal ptrace getsched setsched |
| getsession getpgid setpgid getcap setcap share getattr setexec setfscreate |
| noatsecure siginh setrlimit rlimitinh dyntransition setcurrent execmem |
| execstack execheap setkeycreate setsockcreate</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>安全</p> |
| </td> |
| <td> |
| <pre> |
| |
| compute_av compute_create compute_member check_context load_policy |
| compute_relabel compute_user setenforce setbool setsecparam setcheckreqprot |
| read_policy</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p>功能</p> |
| </td> |
| <td> |
| <pre> |
| |
| chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap |
| linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock |
| ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin |
| sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write |
| audit_control setfcap</pre> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p><strong>更多</strong></p> |
| </td> |
| <td> |
| <p><strong>还有更多</strong></p> |
| </td> |
| </tr> |
| </tbody></table> |
| |
| <h2 id="neverallow">neverallow 规则</h2> |
| |
| <p>SELinux <code>neverallow</code> 规则用于禁止在任何情况下都不应该发生的行为。通过<a href="/compatibility/index.html">兼容性</a>测试,现在各种合作伙伴设备上都会强制执行 SELinux <code>neverallow</code> 规则。</p> |
| |
| <p>以下准则旨在协助制造商在自定义过程中避免与 <code>neverallow</code> 规则相关的错误。此处使用的规则编号与 Android 5.1 中使用的编号一致,并且会因版本而异。</p> |
| |
| <p>规则 48:<code>neverallow { domain -debuggerd -vold -dumpstate |
| -system_server } self:capability sys_ptrace;</code><br />请参阅 <code>ptrace</code> 的帮助页面。<code>sys_ptrace</code> 功能用于授予对任何进程执行 <code>ptrace</code> 命令的权限。拥有该权限后,可以对其他进程进行广泛的控制。应该只有该规则中列出的指定系统组件享有该权限。如果需要该功能,则通常表明存在的某些内容不适用于面向用户的版本或存在不需要的功能。请移除不必要的组件。</p> |
| |
| <p>规则 76:<code>neverallow { domain -appdomain -dumpstate -shell -system_server -zygote } { file_type -system_file -exec_type }:file execute;</code><br />该规则旨在防止执行系统中的任意代码。具体来说就是,该规则声明仅执行 <code>/system</code> 中的代码,以便通过验证启动等机制实现安全保证。通常情况下,当遇到与这个 <code>neverallow</code> 规则相关的问题时,最好的解决办法是将违规代码移到 <code>/system</code> 分区。</p> |
| |
| </body></html> |