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