blob: c7d664730582579c4dc2a88cdd8a2404afe4c627 [file] [log] [blame]
Tom Cherryc3692b32017-08-10 12:22:44 -07001/*
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
17#ifndef _INIT_SELINUX_H
18#define _INIT_SELINUX_H
19
20#include <string>
21#include <vector>
22
23namespace android {
24namespace init {
25
Tom Cherry7bfea3d2018-11-06 14:12:05 -080026int SetupSelinux(char** argv);
Tom Cherryc3692b32017-08-10 12:22:44 -070027void SelinuxRestoreContext();
28
29void SelinuxSetupKernelLogging();
Tom Cherry40acb372018-08-01 13:41:12 -070030int SelinuxGetVendorAndroidVersion();
Tom Cherryc3692b32017-08-10 12:22:44 -070031
32void SelabelInitialize();
33bool SelabelLookupFileContext(const std::string& key, int type, std::string* result);
34bool SelabelLookupFileContextBestMatch(const std::string& key,
35 const std::vector<std::string>& aliases, int type,
36 std::string* result);
37
Mark Salyzyn44505ec2019-05-08 12:44:50 -070038static constexpr char kEnvSelinuxStartedAt[] = "SELINUX_STARTED_AT";
39
Tom Cherryc3692b32017-08-10 12:22:44 -070040} // namespace init
41} // namespace android
42
43#endif