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