Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Vic Yang | 92c236e | 2019-05-28 15:58:35 -0700 | [diff] [blame] | 17 | #pragma once |
Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 18 | |
| 19 | namespace android { |
| 20 | namespace init { |
| 21 | |
Paul Crowley | f831f10 | 2019-11-05 09:46:59 -0800 | [diff] [blame] | 22 | // Initialize SELinux, then exec init to run in the init SELinux context. |
Tom Cherry | 7bfea3d | 2018-11-06 14:12:05 -0800 | [diff] [blame] | 23 | int SetupSelinux(char** argv); |
Paul Crowley | f831f10 | 2019-11-05 09:46:59 -0800 | [diff] [blame] | 24 | |
| 25 | // Restore the proper security context to files and directories on ramdisk, and |
| 26 | // those that were created before initial sepolicy load. |
| 27 | // This must happen before /dev is populated by ueventd. |
Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 28 | void SelinuxRestoreContext(); |
| 29 | |
Paul Crowley | f831f10 | 2019-11-05 09:46:59 -0800 | [diff] [blame] | 30 | // Set up SELinux logging to be written to kmsg, to match init's logging. |
Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 31 | void SelinuxSetupKernelLogging(); |
Paul Crowley | f831f10 | 2019-11-05 09:46:59 -0800 | [diff] [blame] | 32 | |
| 33 | // Return the Android API level with which the vendor SEPolicy was compiled. |
| 34 | // Used for version checks such as whether or not vendor_init should be used. |
Tom Cherry | 40acb37 | 2018-08-01 13:41:12 -0700 | [diff] [blame] | 35 | int SelinuxGetVendorAndroidVersion(); |
Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 36 | |
Mark Salyzyn | 44505ec | 2019-05-08 12:44:50 -0700 | [diff] [blame] | 37 | static constexpr char kEnvSelinuxStartedAt[] = "SELINUX_STARTED_AT"; |
| 38 | |
Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 39 | } // namespace init |
| 40 | } // namespace android |