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