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