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