| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2007 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 |  | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 17 | #include "property_service.h" | 
|  | 18 |  | 
|  | 19 | #include <ctype.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 20 | #include <errno.h> | 
|  | 21 | #include <fcntl.h> | 
| Keun-young Park | 7d32026 | 2017-02-17 17:48:56 -0800 | [diff] [blame] | 22 | #include <inttypes.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 23 | #include <limits.h> | 
|  | 24 | #include <netinet/in.h> | 
|  | 25 | #include <stdarg.h> | 
| Tom Cherry | f57c0bf | 2017-04-07 13:46:21 -0700 | [diff] [blame] | 26 | #include <stddef.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 27 | #include <stdio.h> | 
|  | 28 | #include <stdlib.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 29 | #include <string.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 30 | #include <sys/mman.h> | 
| JP Abgrall | 4515d81 | 2014-01-31 14:37:07 -0800 | [diff] [blame] | 31 | #include <sys/poll.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 32 | #include <sys/select.h> | 
|  | 33 | #include <sys/types.h> | 
|  | 34 | #include <sys/un.h> | 
|  | 35 | #include <unistd.h> | 
| Tom Cherry | 8702dcb | 2017-10-13 16:20:19 -0700 | [diff] [blame] | 36 | #include <wchar.h> | 
| Elliott Hughes | 81399e1 | 2015-03-10 08:39:45 -0700 | [diff] [blame] | 37 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 38 | #define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_ | 
|  | 39 | #include <sys/_system_properties.h> | 
|  | 40 |  | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 41 | #include <memory> | 
| Tom Marshall | 6269690 | 2017-06-09 18:29:23 +0000 | [diff] [blame] | 42 | #include <queue> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 43 | #include <vector> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 44 |  | 
| Tom Cherry | ede0d53 | 2017-07-06 14:20:11 -0700 | [diff] [blame] | 45 | #include <android-base/chrono_utils.h> | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 46 | #include <android-base/file.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 47 | #include <android-base/logging.h> | 
| Jaekyun Seok | 0cf3a07 | 2017-04-24 18:52:54 +0900 | [diff] [blame] | 48 | #include <android-base/properties.h> | 
| Tom Cherry | a84e14d | 2017-09-05 12:38:30 -0700 | [diff] [blame] | 49 | #include <android-base/stringprintf.h> | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 50 | #include <android-base/strings.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 51 | #include <bootimg.h> | 
|  | 52 | #include <fs_mgr.h> | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 53 | #include <property_info_parser/property_info_parser.h> | 
|  | 54 | #include <property_info_serializer/property_info_serializer.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 55 | #include <selinux/android.h> | 
|  | 56 | #include <selinux/label.h> | 
|  | 57 | #include <selinux/selinux.h> | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 58 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 | #include "init.h" | 
| Tom Cherry | 16fad42 | 2017-08-04 15:59:03 -0700 | [diff] [blame] | 60 | #include "persistent_properties.h" | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 61 | #include "property_type.h" | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 62 | #include "subcontext.h" | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 63 | #include "util.h" | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 |  | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 65 | using namespace std::literals; | 
|  | 66 |  | 
| Tom Cherry | a1dbeb8 | 2018-04-11 15:50:00 -0700 | [diff] [blame] | 67 | using android::base::GetIntProperty; | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 68 | using android::base::ReadFileToString; | 
|  | 69 | using android::base::Split; | 
| Tom Cherry | 1cf8d69 | 2017-10-10 13:35:01 -0700 | [diff] [blame] | 70 | using android::base::StartsWith; | 
| Tom Cherry | a84e14d | 2017-09-05 12:38:30 -0700 | [diff] [blame] | 71 | using android::base::StringPrintf; | 
| Tom Cherry | ede0d53 | 2017-07-06 14:20:11 -0700 | [diff] [blame] | 72 | using android::base::Timer; | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 73 | using android::base::Trim; | 
|  | 74 | using android::base::WriteStringToFile; | 
|  | 75 | using android::properties::BuildTrie; | 
| Tom Cherry | 919458c | 2018-01-03 14:39:28 -0800 | [diff] [blame] | 76 | using android::properties::ParsePropertyInfoFile; | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 77 | using android::properties::PropertyInfoAreaFile; | 
|  | 78 | using android::properties::PropertyInfoEntry; | 
| Tom Cherry | ede0d53 | 2017-07-06 14:20:11 -0700 | [diff] [blame] | 79 |  | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 80 | #define RECOVERY_MOUNT_POINT "/recovery" | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 81 |  | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 82 | namespace android { | 
|  | 83 | namespace init { | 
|  | 84 |  | 
| Tom Cherry | 16fad42 | 2017-08-04 15:59:03 -0700 | [diff] [blame] | 85 | static bool persistent_properties_loaded = false; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 86 |  | 
| Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 87 | static int property_set_fd = -1; | 
|  | 88 |  | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 89 | static PropertyInfoAreaFile property_info_area; | 
|  | 90 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 91 | uint32_t InitPropertySet(const std::string& name, const std::string& value); | 
|  | 92 |  | 
|  | 93 | uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet; | 
|  | 94 |  | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 95 | void CreateSerializedPropertyInfo(); | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 96 |  | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 97 | void property_init() { | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 98 | mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH); | 
|  | 99 | CreateSerializedPropertyInfo(); | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 100 | if (__system_property_area_init()) { | 
| Tom Cherry | 4a67945 | 2017-09-26 16:30:03 -0700 | [diff] [blame] | 101 | LOG(FATAL) << "Failed to initialize property area"; | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 102 | } | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 103 | if (!property_info_area.LoadDefaultPath()) { | 
|  | 104 | LOG(FATAL) << "Failed to load serialized property info file"; | 
|  | 105 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 106 | } | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 107 | static bool CheckMacPerms(const std::string& name, const char* target_context, | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 108 | const char* source_context, const ucred& cr) { | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 109 | if (!target_context || !source_context) { | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 110 | return false; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 111 | } | 
|  | 112 |  | 
| William Roberts | d7aea44 | 2015-10-01 16:03:47 -0700 | [diff] [blame] | 113 | property_audit_data audit_data; | 
| rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 114 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 115 | audit_data.name = name.c_str(); | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 116 | audit_data.cr = &cr; | 
| William Roberts | d7aea44 | 2015-10-01 16:03:47 -0700 | [diff] [blame] | 117 |  | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 118 | bool has_access = (selinux_check_access(source_context, target_context, "property_service", | 
|  | 119 | "set", &audit_data) == 0); | 
| rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 120 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 121 | return has_access; | 
| rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 122 | } | 
|  | 123 |  | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 124 | static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) { | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 125 | size_t valuelen = value.size(); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 126 |  | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 127 | if (!IsLegalPropertyName(name)) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 128 | *error = "Illegal property name"; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 129 | return PROP_ERROR_INVALID_NAME; | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 130 | } | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 131 |  | 
| Tom Cherry | 1cf8d69 | 2017-10-10 13:35:01 -0700 | [diff] [blame] | 132 | if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 133 | *error = "Property value too long"; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 134 | return PROP_ERROR_INVALID_VALUE; | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 135 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 136 |  | 
| Tom Cherry | 8702dcb | 2017-10-13 16:20:19 -0700 | [diff] [blame] | 137 | if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 138 | *error = "Value is not a UTF8 encoded string"; | 
| Tom Cherry | 8702dcb | 2017-10-13 16:20:19 -0700 | [diff] [blame] | 139 | return PROP_ERROR_INVALID_VALUE; | 
|  | 140 | } | 
|  | 141 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 142 | prop_info* pi = (prop_info*) __system_property_find(name.c_str()); | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 143 | if (pi != nullptr) { | 
|  | 144 | // ro.* properties are actually "write-once". | 
| Tom Cherry | 1cf8d69 | 2017-10-10 13:35:01 -0700 | [diff] [blame] | 145 | if (StartsWith(name, "ro.")) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 146 | *error = "Read-only property was already set"; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 147 | return PROP_ERROR_READ_ONLY_PROPERTY; | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 148 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 149 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 150 | __system_property_update(pi, value.c_str(), valuelen); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 151 | } else { | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 152 | int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen); | 
| Elliott Hughes | db3f267 | 2015-03-20 09:45:18 -0700 | [diff] [blame] | 153 | if (rc < 0) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 154 | *error = "__system_property_add failed"; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 155 | return PROP_ERROR_SET_FAILED; | 
| Johan Redestig | fd7ffb1 | 2013-04-29 09:11:57 +0200 | [diff] [blame] | 156 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 157 | } | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 158 |  | 
| Elliott Hughes | 4f91581 | 2016-12-05 13:12:48 -0800 | [diff] [blame] | 159 | // Don't write properties to disk until after we have read all default | 
|  | 160 | // properties to prevent them from being overwritten by default values. | 
| Tom Cherry | 1cf8d69 | 2017-10-10 13:35:01 -0700 | [diff] [blame] | 161 | if (persistent_properties_loaded && StartsWith(name, "persist.")) { | 
| Tom Cherry | 16fad42 | 2017-08-04 15:59:03 -0700 | [diff] [blame] | 162 | WritePersistentProperty(name, value); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 163 | } | 
| Tom Cherry | 98ad32a | 2017-04-17 16:34:20 -0700 | [diff] [blame] | 164 | property_changed(name, value); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 165 | return PROP_SUCCESS; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 166 | } | 
|  | 167 |  | 
| Tom Marshall | 6269690 | 2017-06-09 18:29:23 +0000 | [diff] [blame] | 168 | typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&); | 
|  | 169 |  | 
|  | 170 | struct PropertyChildInfo { | 
|  | 171 | pid_t pid; | 
|  | 172 | PropertyAsyncFunc func; | 
|  | 173 | std::string name; | 
|  | 174 | std::string value; | 
|  | 175 | }; | 
|  | 176 |  | 
|  | 177 | static std::queue<PropertyChildInfo> property_children; | 
|  | 178 |  | 
|  | 179 | static void PropertyChildLaunch() { | 
|  | 180 | auto& info = property_children.front(); | 
|  | 181 | pid_t pid = fork(); | 
|  | 182 | if (pid < 0) { | 
|  | 183 | LOG(ERROR) << "Failed to fork for property_set_async"; | 
|  | 184 | while (!property_children.empty()) { | 
|  | 185 | property_children.pop(); | 
|  | 186 | } | 
|  | 187 | return; | 
|  | 188 | } | 
|  | 189 | if (pid != 0) { | 
|  | 190 | info.pid = pid; | 
|  | 191 | } else { | 
|  | 192 | if (info.func(info.name, info.value) != 0) { | 
|  | 193 | LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value | 
|  | 194 | << "\") failed"; | 
|  | 195 | } | 
| Tom Cherry | 4a67945 | 2017-09-26 16:30:03 -0700 | [diff] [blame] | 196 | _exit(0); | 
| Tom Marshall | 6269690 | 2017-06-09 18:29:23 +0000 | [diff] [blame] | 197 | } | 
|  | 198 | } | 
|  | 199 |  | 
|  | 200 | bool PropertyChildReap(pid_t pid) { | 
|  | 201 | if (property_children.empty()) { | 
|  | 202 | return false; | 
|  | 203 | } | 
|  | 204 | auto& info = property_children.front(); | 
|  | 205 | if (info.pid != pid) { | 
|  | 206 | return false; | 
|  | 207 | } | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 208 | std::string error; | 
|  | 209 | if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) { | 
|  | 210 | LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": " | 
|  | 211 | << error; | 
| Tom Marshall | 6269690 | 2017-06-09 18:29:23 +0000 | [diff] [blame] | 212 | } | 
|  | 213 | property_children.pop(); | 
|  | 214 | if (!property_children.empty()) { | 
|  | 215 | PropertyChildLaunch(); | 
|  | 216 | } | 
|  | 217 | return true; | 
|  | 218 | } | 
|  | 219 |  | 
|  | 220 | static uint32_t PropertySetAsync(const std::string& name, const std::string& value, | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 221 | PropertyAsyncFunc func, std::string* error) { | 
| Tom Marshall | 6269690 | 2017-06-09 18:29:23 +0000 | [diff] [blame] | 222 | if (value.empty()) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 223 | return PropertySet(name, value, error); | 
| Tom Marshall | 6269690 | 2017-06-09 18:29:23 +0000 | [diff] [blame] | 224 | } | 
|  | 225 |  | 
|  | 226 | PropertyChildInfo info; | 
|  | 227 | info.func = func; | 
|  | 228 | info.name = name; | 
|  | 229 | info.value = value; | 
|  | 230 | property_children.push(info); | 
|  | 231 | if (property_children.size() == 1) { | 
|  | 232 | PropertyChildLaunch(); | 
|  | 233 | } | 
|  | 234 | return PROP_SUCCESS; | 
|  | 235 | } | 
|  | 236 |  | 
|  | 237 | static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) { | 
|  | 238 | return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE); | 
|  | 239 | } | 
|  | 240 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 241 | uint32_t InitPropertySet(const std::string& name, const std::string& value) { | 
|  | 242 | if (StartsWith(name, "ctl.")) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 243 | LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service " | 
|  | 244 | "functions directly"; | 
|  | 245 | return PROP_ERROR_INVALID_NAME; | 
|  | 246 | } | 
|  | 247 | if (name == "selinux.restorecon_recursive") { | 
|  | 248 | LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the " | 
|  | 249 | "restorecon builtin directly"; | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 250 | return PROP_ERROR_INVALID_NAME; | 
|  | 251 | } | 
|  | 252 |  | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 253 | uint32_t result = 0; | 
|  | 254 | ucred cr = {.pid = 1, .uid = 0, .gid = 0}; | 
|  | 255 | std::string error; | 
|  | 256 | result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error); | 
|  | 257 | if (result != PROP_SUCCESS) { | 
|  | 258 | LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error; | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 259 | } | 
|  | 260 |  | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 261 | return result; | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 262 | } | 
|  | 263 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 264 | class SocketConnection { | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 265 | public: | 
|  | 266 | SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {} | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 267 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 268 | ~SocketConnection() { close(socket_); } | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 269 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 270 | bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) { | 
|  | 271 | return RecvFully(value, sizeof(*value), timeout_ms); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 272 | } | 
|  | 273 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 274 | bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) { | 
|  | 275 | return RecvFully(chars, size, timeout_ms); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 276 | } | 
|  | 277 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 278 | bool RecvString(std::string* value, uint32_t* timeout_ms) { | 
|  | 279 | uint32_t len = 0; | 
|  | 280 | if (!RecvUint32(&len, timeout_ms)) { | 
|  | 281 | return false; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 282 | } | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 283 |  | 
|  | 284 | if (len == 0) { | 
|  | 285 | *value = ""; | 
|  | 286 | return true; | 
|  | 287 | } | 
|  | 288 |  | 
|  | 289 | // http://b/35166374: don't allow init to make arbitrarily large allocations. | 
|  | 290 | if (len > 0xffff) { | 
|  | 291 | LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len; | 
|  | 292 | errno = ENOMEM; | 
|  | 293 | return false; | 
|  | 294 | } | 
|  | 295 |  | 
|  | 296 | std::vector<char> chars(len); | 
|  | 297 | if (!RecvChars(&chars[0], len, timeout_ms)) { | 
|  | 298 | return false; | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 | *value = std::string(&chars[0], len); | 
|  | 302 | return true; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 303 | } | 
|  | 304 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 305 | bool SendUint32(uint32_t value) { | 
|  | 306 | int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0)); | 
|  | 307 | return result == sizeof(value); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 308 | } | 
|  | 309 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 310 | int socket() { return socket_; } | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 311 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 312 | const ucred& cred() { return cred_; } | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 313 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 314 | std::string source_context() const { | 
|  | 315 | char* source_context = nullptr; | 
|  | 316 | getpeercon(socket_, &source_context); | 
|  | 317 | std::string result = source_context; | 
|  | 318 | freecon(source_context); | 
|  | 319 | return result; | 
|  | 320 | } | 
|  | 321 |  | 
|  | 322 | private: | 
|  | 323 | bool PollIn(uint32_t* timeout_ms) { | 
|  | 324 | struct pollfd ufds[1]; | 
|  | 325 | ufds[0].fd = socket_; | 
|  | 326 | ufds[0].events = POLLIN; | 
|  | 327 | ufds[0].revents = 0; | 
|  | 328 | while (*timeout_ms > 0) { | 
|  | 329 | auto start_time = std::chrono::steady_clock::now(); | 
|  | 330 | int nr = poll(ufds, 1, *timeout_ms); | 
|  | 331 | auto now = std::chrono::steady_clock::now(); | 
|  | 332 | auto time_elapsed = | 
|  | 333 | std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time); | 
|  | 334 | uint64_t millis = time_elapsed.count(); | 
|  | 335 | *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis; | 
|  | 336 |  | 
|  | 337 | if (nr > 0) { | 
|  | 338 | return true; | 
|  | 339 | } | 
|  | 340 |  | 
|  | 341 | if (nr == 0) { | 
|  | 342 | // Timeout | 
|  | 343 | break; | 
|  | 344 | } | 
|  | 345 |  | 
|  | 346 | if (nr < 0 && errno != EINTR) { | 
|  | 347 | PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid | 
|  | 348 | << " to send property message"; | 
|  | 349 | return false; | 
|  | 350 | } else {  // errno == EINTR | 
|  | 351 | // Timer rounds milliseconds down in case of EINTR we want it to be rounded up | 
|  | 352 | // to avoid slowing init down by causing EINTR with under millisecond timeout. | 
|  | 353 | if (*timeout_ms > 0) { | 
|  | 354 | --(*timeout_ms); | 
|  | 355 | } | 
|  | 356 | } | 
|  | 357 | } | 
|  | 358 |  | 
|  | 359 | LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid | 
|  | 360 | << " to send property message."; | 
|  | 361 | return false; | 
|  | 362 | } | 
|  | 363 |  | 
|  | 364 | bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) { | 
|  | 365 | size_t bytes_left = size; | 
|  | 366 | char* data = static_cast<char*>(data_ptr); | 
|  | 367 | while (*timeout_ms > 0 && bytes_left > 0) { | 
|  | 368 | if (!PollIn(timeout_ms)) { | 
|  | 369 | return false; | 
|  | 370 | } | 
|  | 371 |  | 
|  | 372 | int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT)); | 
|  | 373 | if (result <= 0) { | 
|  | 374 | return false; | 
|  | 375 | } | 
|  | 376 |  | 
|  | 377 | bytes_left -= result; | 
|  | 378 | data += result; | 
|  | 379 | } | 
|  | 380 |  | 
|  | 381 | return bytes_left == 0; | 
|  | 382 | } | 
|  | 383 |  | 
|  | 384 | int socket_; | 
|  | 385 | ucred cred_; | 
|  | 386 |  | 
|  | 387 | DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 388 | }; | 
|  | 389 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 390 | // This returns one of the enum of PROP_SUCCESS or PROP_ERROR*. | 
|  | 391 | uint32_t HandlePropertySet(const std::string& name, const std::string& value, | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 392 | const std::string& source_context, const ucred& cr, std::string* error) { | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 393 | if (!IsLegalPropertyName(name)) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 394 | *error = "Illegal property name"; | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 395 | return PROP_ERROR_INVALID_NAME; | 
|  | 396 | } | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 397 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 398 | if (StartsWith(name, "ctl.")) { | 
|  | 399 | // ctl. properties have their name ctl.<action> and their value is the name of the service | 
|  | 400 | // to apply that action to.  Permissions for these actions are based on the service, so we | 
|  | 401 | // must create a fake name of ctl.<service> to check permissions. | 
|  | 402 | auto control_string = "ctl." + value; | 
|  | 403 | const char* target_context = nullptr; | 
|  | 404 | const char* type = nullptr; | 
|  | 405 | property_info_area->GetPropertyInfo(control_string.c_str(), &target_context, &type); | 
|  | 406 | if (!CheckMacPerms(control_string, target_context, source_context.c_str(), cr)) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 407 | *error = StringPrintf("Unable to '%s' service %s", name.c_str() + 4, value.c_str()); | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 408 | return PROP_ERROR_HANDLE_CONTROL_MESSAGE; | 
|  | 409 | } | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 410 |  | 
| Tom Cherry | 6f2d56d | 2018-02-21 10:37:44 -0800 | [diff] [blame] | 411 | HandleControlMessage(name.c_str() + 4, value, cr.pid); | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 412 | return PROP_SUCCESS; | 
|  | 413 | } | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 414 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 415 | const char* target_context = nullptr; | 
|  | 416 | const char* type = nullptr; | 
|  | 417 | property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type); | 
| Tom Cherry | a84e14d | 2017-09-05 12:38:30 -0700 | [diff] [blame] | 418 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 419 | if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 420 | *error = "SELinux permission check failed"; | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 421 | return PROP_ERROR_PERMISSION_DENIED; | 
|  | 422 | } | 
|  | 423 |  | 
|  | 424 | if (type == nullptr || !CheckType(type, value)) { | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 425 | *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'", | 
|  | 426 | (type ?: "(null)")); | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 427 | return PROP_ERROR_INVALID_VALUE; | 
|  | 428 | } | 
|  | 429 |  | 
|  | 430 | // sys.powerctl is a special property that is used to make the device reboot.  We want to log | 
|  | 431 | // any process that sets this property to be able to accurately blame the cause of a shutdown. | 
|  | 432 | if (name == "sys.powerctl") { | 
|  | 433 | std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid); | 
|  | 434 | std::string process_cmdline; | 
|  | 435 | std::string process_log_string; | 
|  | 436 | if (ReadFileToString(cmdline_path, &process_cmdline)) { | 
|  | 437 | // Since cmdline is null deliminated, .c_str() conveniently gives us just the process | 
|  | 438 | // path. | 
|  | 439 | process_log_string = StringPrintf(" (%s)", process_cmdline.c_str()); | 
|  | 440 | } | 
|  | 441 | LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid | 
|  | 442 | << process_log_string; | 
|  | 443 | } | 
|  | 444 |  | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 445 | if (name == "selinux.restorecon_recursive") { | 
|  | 446 | return PropertySetAsync(name, value, RestoreconRecursiveAsync, error); | 
|  | 447 | } | 
|  | 448 |  | 
|  | 449 | return PropertySet(name, value, error); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 450 | } | 
|  | 451 |  | 
|  | 452 | static void handle_property_set_fd() { | 
|  | 453 | static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */ | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 454 |  | 
| Robert Sesek | ca2da60 | 2017-01-25 08:08:51 -0500 | [diff] [blame] | 455 | int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC); | 
| Elliott Hughes | 3dcfa3f | 2016-08-23 12:50:00 -0700 | [diff] [blame] | 456 | if (s == -1) { | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 457 | return; | 
|  | 458 | } | 
|  | 459 |  | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 460 | ucred cr; | 
| Elliott Hughes | 3dcfa3f | 2016-08-23 12:50:00 -0700 | [diff] [blame] | 461 | socklen_t cr_size = sizeof(cr); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 462 | if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) { | 
|  | 463 | close(s); | 
| Elliott Hughes | b005d90 | 2017-02-22 14:54:15 -0800 | [diff] [blame] | 464 | PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 465 | return; | 
|  | 466 | } | 
|  | 467 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 468 | SocketConnection socket(s, cr); | 
|  | 469 | uint32_t timeout_ms = kDefaultSocketTimeout; | 
|  | 470 |  | 
|  | 471 | uint32_t cmd = 0; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 472 | if (!socket.RecvUint32(&cmd, &timeout_ms)) { | 
|  | 473 | PLOG(ERROR) << "sys_prop: error while reading command from the socket"; | 
|  | 474 | socket.SendUint32(PROP_ERROR_READ_CMD); | 
| JP Abgrall | 4515d81 | 2014-01-31 14:37:07 -0800 | [diff] [blame] | 475 | return; | 
|  | 476 | } | 
|  | 477 |  | 
| Elliott Hughes | b005d90 | 2017-02-22 14:54:15 -0800 | [diff] [blame] | 478 | switch (cmd) { | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 479 | case PROP_MSG_SETPROP: { | 
|  | 480 | char prop_name[PROP_NAME_MAX]; | 
|  | 481 | char prop_value[PROP_VALUE_MAX]; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 482 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 483 | if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) || | 
|  | 484 | !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) { | 
|  | 485 | PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket"; | 
|  | 486 | return; | 
| Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 487 | } | 
|  | 488 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 489 | prop_name[PROP_NAME_MAX-1] = 0; | 
|  | 490 | prop_value[PROP_VALUE_MAX-1] = 0; | 
| rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 491 |  | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 492 | const auto& cr = socket.cred(); | 
|  | 493 | std::string error; | 
|  | 494 | uint32_t result = | 
|  | 495 | HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error); | 
|  | 496 | if (result != PROP_SUCCESS) { | 
|  | 497 | LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value | 
|  | 498 | << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": " | 
|  | 499 | << error; | 
|  | 500 | } | 
|  | 501 |  | 
| Dimitry Ivanov | dee4bd2 | 2017-01-19 14:53:00 -0800 | [diff] [blame] | 502 | break; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 503 | } | 
| Dimitry Ivanov | 70c4ecf | 2017-01-24 18:38:09 +0000 | [diff] [blame] | 504 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 505 | case PROP_MSG_SETPROP2: { | 
|  | 506 | std::string name; | 
|  | 507 | std::string value; | 
|  | 508 | if (!socket.RecvString(&name, &timeout_ms) || | 
|  | 509 | !socket.RecvString(&value, &timeout_ms)) { | 
|  | 510 | PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket"; | 
|  | 511 | socket.SendUint32(PROP_ERROR_READ_DATA); | 
|  | 512 | return; | 
|  | 513 | } | 
|  | 514 |  | 
| Tom Cherry | 69d47aa | 2018-03-01 11:00:57 -0800 | [diff] [blame] | 515 | const auto& cr = socket.cred(); | 
|  | 516 | std::string error; | 
|  | 517 | uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error); | 
|  | 518 | if (result != PROP_SUCCESS) { | 
|  | 519 | LOG(ERROR) << "Unable to set property '" << name << "' to '" << value | 
|  | 520 | << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": " | 
|  | 521 | << error; | 
|  | 522 | } | 
| Tom Cherry | 3222848 | 2018-01-18 16:14:25 -0800 | [diff] [blame] | 523 | socket.SendUint32(result); | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 524 | break; | 
|  | 525 | } | 
| Elliott Hughes | b005d90 | 2017-02-22 14:54:15 -0800 | [diff] [blame] | 526 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 527 | default: | 
| Elliott Hughes | b005d90 | 2017-02-22 14:54:15 -0800 | [diff] [blame] | 528 | LOG(ERROR) << "sys_prop: invalid command " << cmd; | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 529 | socket.SendUint32(PROP_ERROR_INVALID_CMD); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 530 | break; | 
|  | 531 | } | 
|  | 532 | } | 
|  | 533 |  | 
| Hung-ying Tyan | aef2b09 | 2017-06-02 18:59:46 +0800 | [diff] [blame] | 534 | static bool load_properties_from_file(const char *, const char *); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 535 |  | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 536 | /* | 
|  | 537 | * Filter is used to decide which properties to load: NULL loads all keys, | 
|  | 538 | * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match. | 
|  | 539 | */ | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 540 | static void LoadProperties(char* data, const char* filter, const char* filename) { | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 541 | char *key, *value, *eol, *sol, *tmp, *fn; | 
|  | 542 | size_t flen = 0; | 
|  | 543 |  | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 544 | const char* context = kInitContext.c_str(); | 
| Tom Cherry | a1dbeb8 | 2018-04-11 15:50:00 -0700 | [diff] [blame] | 545 | if (GetIntProperty("ro.vndk.version", 28) >= 28) { | 
|  | 546 | for (const auto& [path_prefix, secontext] : paths_and_secontexts) { | 
|  | 547 | if (StartsWith(filename, path_prefix)) { | 
|  | 548 | context = secontext; | 
|  | 549 | } | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 550 | } | 
|  | 551 | } | 
|  | 552 |  | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 553 | if (filter) { | 
|  | 554 | flen = strlen(filter); | 
|  | 555 | } | 
|  | 556 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 557 | sol = data; | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 558 | while ((eol = strchr(sol, '\n'))) { | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 559 | key = sol; | 
|  | 560 | *eol++ = 0; | 
|  | 561 | sol = eol; | 
|  | 562 |  | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 563 | while (isspace(*key)) key++; | 
|  | 564 | if (*key == '#') continue; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 565 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 566 | tmp = eol - 2; | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 567 | while ((tmp > key) && isspace(*tmp)) *tmp-- = 0; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 568 |  | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 569 | if (!strncmp(key, "import ", 7) && flen == 0) { | 
|  | 570 | fn = key + 7; | 
|  | 571 | while (isspace(*fn)) fn++; | 
|  | 572 |  | 
|  | 573 | key = strchr(fn, ' '); | 
|  | 574 | if (key) { | 
|  | 575 | *key++ = 0; | 
|  | 576 | while (isspace(*key)) key++; | 
|  | 577 | } | 
|  | 578 |  | 
|  | 579 | load_properties_from_file(fn, key); | 
|  | 580 |  | 
|  | 581 | } else { | 
|  | 582 | value = strchr(key, '='); | 
|  | 583 | if (!value) continue; | 
|  | 584 | *value++ = 0; | 
|  | 585 |  | 
|  | 586 | tmp = value - 2; | 
|  | 587 | while ((tmp > key) && isspace(*tmp)) *tmp-- = 0; | 
|  | 588 |  | 
|  | 589 | while (isspace(*value)) value++; | 
|  | 590 |  | 
|  | 591 | if (flen > 0) { | 
|  | 592 | if (filter[flen - 1] == '*') { | 
|  | 593 | if (strncmp(key, filter, flen - 1)) continue; | 
|  | 594 | } else { | 
|  | 595 | if (strcmp(key, filter)) continue; | 
|  | 596 | } | 
|  | 597 | } | 
|  | 598 |  | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 599 | if (StartsWith(key, "ctl.") || key == "sys.powerctl"s || | 
|  | 600 | key == "selinux.restorecon_recursive"s) { | 
|  | 601 | LOG(ERROR) << "Ignoring disallowed property '" << key | 
|  | 602 | << "' with special meaning in prop file '" << filename << "'"; | 
|  | 603 | continue; | 
|  | 604 | } | 
|  | 605 |  | 
|  | 606 | uint32_t result = 0; | 
|  | 607 | ucred cr = {.pid = 1, .uid = 0, .gid = 0}; | 
|  | 608 | std::string error; | 
|  | 609 | result = HandlePropertySet(key, value, context, cr, &error); | 
|  | 610 | if (result != PROP_SUCCESS) { | 
|  | 611 | LOG(ERROR) << "Unable to set property '" << key << "' to '" << value | 
|  | 612 | << "' in property file '" << filename << "': " << error; | 
|  | 613 | } | 
| Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 614 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 615 | } | 
|  | 616 | } | 
|  | 617 |  | 
| Elliott Hughes | 5a7ad84 | 2016-09-30 14:12:33 -0700 | [diff] [blame] | 618 | // Filter is used to decide which properties to load: NULL loads all keys, | 
|  | 619 | // "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match. | 
| Hung-ying Tyan | aef2b09 | 2017-06-02 18:59:46 +0800 | [diff] [blame] | 620 | static bool load_properties_from_file(const char* filename, const char* filter) { | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 621 | Timer t; | 
| Tom Cherry | 62ca663 | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 622 | auto file_contents = ReadFile(filename); | 
|  | 623 | if (!file_contents) { | 
|  | 624 | PLOG(WARNING) << "Couldn't load property file '" << filename | 
|  | 625 | << "': " << file_contents.error(); | 
| Hung-ying Tyan | aef2b09 | 2017-06-02 18:59:46 +0800 | [diff] [blame] | 626 | return false; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 627 | } | 
| Tom Cherry | 62ca663 | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 628 | file_contents->push_back('\n'); | 
| Tom Cherry | dc37586 | 2018-02-28 10:39:01 -0800 | [diff] [blame] | 629 |  | 
|  | 630 | LoadProperties(file_contents->data(), filter, filename); | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 631 | LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)"; | 
| Hung-ying Tyan | aef2b09 | 2017-06-02 18:59:46 +0800 | [diff] [blame] | 632 | return true; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 633 | } | 
|  | 634 |  | 
| Jaekyun Seok | 0cf3a07 | 2017-04-24 18:52:54 +0900 | [diff] [blame] | 635 | // persist.sys.usb.config values can't be combined on build-time when property | 
|  | 636 | // files are split into each partition. | 
|  | 637 | // So we need to apply the same rule of build/make/tools/post_process_props.py | 
|  | 638 | // on runtime. | 
|  | 639 | static void update_sys_usb_config() { | 
|  | 640 | bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false); | 
|  | 641 | std::string config = android::base::GetProperty("persist.sys.usb.config", ""); | 
|  | 642 | if (config.empty()) { | 
|  | 643 | property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none"); | 
|  | 644 | } else if (is_debuggable && config.find("adb") == std::string::npos && | 
|  | 645 | config.length() + 4 < PROP_VALUE_MAX) { | 
|  | 646 | config.append(",adb"); | 
|  | 647 | property_set("persist.sys.usb.config", config); | 
|  | 648 | } | 
|  | 649 | } | 
|  | 650 |  | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 651 | void property_load_boot_defaults() { | 
| Hung-ying Tyan | aef2b09 | 2017-06-02 18:59:46 +0800 | [diff] [blame] | 652 | if (!load_properties_from_file("/system/etc/prop.default", NULL)) { | 
|  | 653 | // Try recovery path | 
|  | 654 | if (!load_properties_from_file("/prop.default", NULL)) { | 
|  | 655 | // Try legacy path | 
|  | 656 | load_properties_from_file("/default.prop", NULL); | 
|  | 657 | } | 
|  | 658 | } | 
| Jaekyun Seok | dff165d | 2017-11-28 12:10:10 +0900 | [diff] [blame] | 659 | load_properties_from_file("/product/build.prop", NULL); | 
| Hung-ying Tyan | 3346338 | 2017-05-25 19:18:17 +0800 | [diff] [blame] | 660 | load_properties_from_file("/odm/default.prop", NULL); | 
|  | 661 | load_properties_from_file("/vendor/default.prop", NULL); | 
| Jaekyun Seok | 0cf3a07 | 2017-04-24 18:52:54 +0900 | [diff] [blame] | 662 |  | 
|  | 663 | update_sys_usb_config(); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 664 | } | 
|  | 665 |  | 
| Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 666 | static void load_override_properties() { | 
| Elliott Hughes | c0e919c | 2015-02-04 14:46:36 -0800 | [diff] [blame] | 667 | if (ALLOW_LOCAL_PROP_OVERRIDE) { | 
| Hung-ying Tyan | 3346338 | 2017-05-25 19:18:17 +0800 | [diff] [blame] | 668 | load_properties_from_file("/data/local.prop", NULL); | 
| Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 669 | } | 
| Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 670 | } | 
|  | 671 |  | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 672 | /* When booting an encrypted system, /data is not mounted when the | 
|  | 673 | * property service is started, so any properties stored there are | 
|  | 674 | * not loaded.  Vold triggers init to load these properties once it | 
|  | 675 | * has mounted /data. | 
|  | 676 | */ | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 677 | void load_persist_props(void) { | 
| Tom Cherry | 9951b79 | 2017-08-24 14:01:25 -0700 | [diff] [blame] | 678 | // Devices with FDE have load_persist_props called twice; the first time when the temporary | 
|  | 679 | // /data partition is mounted and then again once /data is truly mounted.  We do not want to | 
|  | 680 | // read persistent properties from the temporary /data partition or mark persistent properties | 
|  | 681 | // as having been loaded during the first call, so we return in that case. | 
|  | 682 | std::string crypto_state = android::base::GetProperty("ro.crypto.state", ""); | 
|  | 683 | std::string crypto_type = android::base::GetProperty("ro.crypto.type", ""); | 
|  | 684 | if (crypto_state == "encrypted" && crypto_type == "block") { | 
|  | 685 | static size_t num_calls = 0; | 
|  | 686 | if (++num_calls == 1) return; | 
|  | 687 | } | 
|  | 688 |  | 
| Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 689 | load_override_properties(); | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 690 | /* Read persistent properties after all default values have been loaded. */ | 
| Tom Cherry | 16fad42 | 2017-08-04 15:59:03 -0700 | [diff] [blame] | 691 | auto persistent_properties = LoadPersistentProperties(); | 
| Tom Cherry | a97faba | 2017-09-15 15:44:04 -0700 | [diff] [blame] | 692 | for (const auto& persistent_property_record : persistent_properties.properties()) { | 
|  | 693 | property_set(persistent_property_record.name(), persistent_property_record.value()); | 
| Tom Cherry | 16fad42 | 2017-08-04 15:59:03 -0700 | [diff] [blame] | 694 | } | 
|  | 695 | persistent_properties_loaded = true; | 
| Keun-young Park | 404906d | 2017-02-28 19:20:38 -0800 | [diff] [blame] | 696 | property_set("ro.persistent_properties.ready", "true"); | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 697 | } | 
|  | 698 |  | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 699 | void load_recovery_id_prop() { | 
| Bowgo Tsai | c9a1842 | 2017-03-09 22:36:34 +0800 | [diff] [blame] | 700 | std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(), | 
|  | 701 | fs_mgr_free_fstab); | 
|  | 702 | if (!fstab) { | 
|  | 703 | PLOG(ERROR) << "unable to read default fstab"; | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 704 | return; | 
|  | 705 | } | 
|  | 706 |  | 
| Bowgo Tsai | c9a1842 | 2017-03-09 22:36:34 +0800 | [diff] [blame] | 707 | fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT); | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 708 | if (rec == NULL) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 709 | LOG(ERROR) << "/recovery not specified in fstab"; | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 710 | return; | 
|  | 711 | } | 
|  | 712 |  | 
|  | 713 | int fd = open(rec->blk_device, O_RDONLY); | 
|  | 714 | if (fd == -1) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 715 | PLOG(ERROR) << "error opening block device " << rec->blk_device; | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 716 | return; | 
|  | 717 | } | 
|  | 718 |  | 
|  | 719 | boot_img_hdr hdr; | 
|  | 720 | if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) { | 
|  | 721 | std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id)); | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 722 | property_set("ro.recovery_id", hex); | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 723 | } else { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 724 | PLOG(ERROR) << "error reading /recovery"; | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 725 | } | 
|  | 726 |  | 
|  | 727 | close(fd); | 
|  | 728 | } | 
|  | 729 |  | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 730 | void load_system_props() { | 
| Hung-ying Tyan | 3346338 | 2017-05-25 19:18:17 +0800 | [diff] [blame] | 731 | load_properties_from_file("/system/build.prop", NULL); | 
|  | 732 | load_properties_from_file("/odm/build.prop", NULL); | 
|  | 733 | load_properties_from_file("/vendor/build.prop", NULL); | 
| Elliott Hughes | 795798d | 2017-01-27 16:21:55 -0800 | [diff] [blame] | 734 | load_properties_from_file("/factory/factory.prop", "ro.*"); | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 735 | load_recovery_id_prop(); | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 736 | } | 
|  | 737 |  | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 738 | static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) { | 
|  | 739 | property_audit_data* d = reinterpret_cast<property_audit_data*>(data); | 
|  | 740 |  | 
|  | 741 | if (!d || !d->name || !d->cr) { | 
|  | 742 | LOG(ERROR) << "AuditCallback invoked with null data arguments!"; | 
|  | 743 | return 0; | 
|  | 744 | } | 
|  | 745 |  | 
|  | 746 | snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid, | 
|  | 747 | d->cr->gid); | 
|  | 748 | return 0; | 
|  | 749 | } | 
|  | 750 |  | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 751 | bool LoadPropertyInfoFromFile(const std::string& filename, | 
|  | 752 | std::vector<PropertyInfoEntry>* property_infos) { | 
|  | 753 | auto file_contents = std::string(); | 
|  | 754 | if (!ReadFileToString(filename, &file_contents)) { | 
|  | 755 | PLOG(ERROR) << "Could not read properties from '" << filename << "'"; | 
|  | 756 | return false; | 
|  | 757 | } | 
|  | 758 |  | 
| Tom Cherry | 919458c | 2018-01-03 14:39:28 -0800 | [diff] [blame] | 759 | auto errors = std::vector<std::string>{}; | 
|  | 760 | ParsePropertyInfoFile(file_contents, property_infos, &errors); | 
|  | 761 | // Individual parsing errors are reported but do not cause a failed boot, which is what | 
|  | 762 | // returning false would do here. | 
|  | 763 | for (const auto& error : errors) { | 
|  | 764 | LOG(ERROR) << "Could not read line from '" << filename << "': " << error; | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 765 | } | 
| Tom Cherry | 919458c | 2018-01-03 14:39:28 -0800 | [diff] [blame] | 766 |  | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 767 | return true; | 
|  | 768 | } | 
|  | 769 |  | 
|  | 770 | void CreateSerializedPropertyInfo() { | 
|  | 771 | auto property_infos = std::vector<PropertyInfoEntry>(); | 
|  | 772 | if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) { | 
|  | 773 | if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts", | 
|  | 774 | &property_infos)) { | 
|  | 775 | return; | 
|  | 776 | } | 
|  | 777 | // Don't check for failure here, so we always have a sane list of properties. | 
|  | 778 | // E.g. In case of recovery, the vendor partition will not have mounted and we | 
|  | 779 | // still need the system / platform properties to function. | 
| Bowgo Tsai | 36cf353 | 2017-12-07 16:05:25 +0800 | [diff] [blame] | 780 | if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts", | 
|  | 781 | &property_infos)) { | 
|  | 782 | // Fallback to nonplat_* if vendor_* doesn't exist. | 
|  | 783 | LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts", | 
|  | 784 | &property_infos); | 
|  | 785 | } | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 786 | } else { | 
|  | 787 | if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) { | 
|  | 788 | return; | 
|  | 789 | } | 
| Bowgo Tsai | 36cf353 | 2017-12-07 16:05:25 +0800 | [diff] [blame] | 790 | if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) { | 
|  | 791 | // Fallback to nonplat_* if vendor_* doesn't exist. | 
|  | 792 | LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos); | 
|  | 793 | } | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 794 | } | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 795 |  | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 796 | auto serialized_contexts = std::string(); | 
|  | 797 | auto error = std::string(); | 
| Tom Cherry | 927c5d5 | 2017-12-11 01:40:07 -0800 | [diff] [blame] | 798 | if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts, | 
| Tom Cherry | 2ae2f60 | 2017-12-14 01:58:17 +0000 | [diff] [blame] | 799 | &error)) { | 
|  | 800 | LOG(ERROR) << "Unable to serialize property contexts: " << error; | 
|  | 801 | return; | 
|  | 802 | } | 
|  | 803 |  | 
|  | 804 | constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info"; | 
|  | 805 | if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) { | 
|  | 806 | PLOG(ERROR) << "Unable to write serialized property infos to file"; | 
|  | 807 | } | 
|  | 808 | selinux_android_restorecon(kPropertyInfosPath, 0); | 
|  | 809 | } | 
|  | 810 |  | 
|  | 811 | void start_property_service() { | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 812 | selinux_callback cb; | 
|  | 813 | cb.func_audit = SelinuxAuditCallback; | 
|  | 814 | selinux_set_callback(SELINUX_CB_AUDIT, cb); | 
|  | 815 |  | 
| Dimitry Ivanov | c9bb033 | 2017-01-24 20:43:58 +0000 | [diff] [blame] | 816 | property_set("ro.property_service.version", "2"); | 
|  | 817 |  | 
| Mark Salyzyn | b066fcc | 2017-05-05 14:44:35 -0700 | [diff] [blame] | 818 | property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 819 | false, 0666, 0, 0, nullptr); | 
| Elliott Hughes | c6c26ed | 2015-04-24 18:50:30 -0700 | [diff] [blame] | 820 | if (property_set_fd == -1) { | 
| Tom Cherry | 4a67945 | 2017-09-26 16:30:03 -0700 | [diff] [blame] | 821 | PLOG(FATAL) << "start_property_service socket creation failed"; | 
| Elliott Hughes | c6c26ed | 2015-04-24 18:50:30 -0700 | [diff] [blame] | 822 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 823 |  | 
| Elliott Hughes | c6c26ed | 2015-04-24 18:50:30 -0700 | [diff] [blame] | 824 | listen(property_set_fd, 8); | 
| Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 825 |  | 
| Elliott Hughes | 929f407 | 2015-04-24 21:13:44 -0700 | [diff] [blame] | 826 | register_epoll_handler(property_set_fd, handle_property_set_fd); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 827 | } | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 828 |  | 
|  | 829 | }  // namespace init | 
|  | 830 | }  // namespace android |