blob: 4451ac8b9d862be42b6f33c41cc840f8b8865950 [file] [log] [blame]
Tom Cherryde6bd502018-02-13 16:50:08 -08001/*
2 * Copyright (C) 2018 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#include "host_init_stubs.h"
18
19// unistd.h
20int setgroups(size_t __size, const gid_t* __list) {
21 return 0;
22}
23
24namespace android {
25namespace base {
26
27std::string GetProperty(const std::string&, const std::string& default_value) {
28 return default_value;
29}
30
31bool GetBoolProperty(const std::string&, bool default_value) {
32 return default_value;
33}
34
35} // namespace base
36} // namespace android
37
38namespace android {
39namespace init {
40
41// init.h
42std::string default_console = "/dev/console";
43
44// property_service.h
45uint32_t (*property_set)(const std::string& name, const std::string& value) = nullptr;
Tom Cherry69d47aa2018-03-01 11:00:57 -080046uint32_t HandlePropertySet(const std::string&, const std::string&, const std::string&, const ucred&,
47 std::string*) {
Tom Cherryde6bd502018-02-13 16:50:08 -080048 return 0;
49}
50
51// selinux.h
Logan Chienc50144e2018-05-03 14:33:52 +080052bool SelinuxHasVendorInit() {
53 return true;
54}
55
Tom Cherryde6bd502018-02-13 16:50:08 -080056void SelabelInitialize() {}
57
58bool SelabelLookupFileContext(const std::string& key, int type, std::string* result) {
59 return false;
60}
61
62} // namespace init
63} // namespace android