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 | |
| 17 | #include <stdio.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <unistd.h> |
| 20 | #include <string.h> |
| 21 | #include <ctype.h> |
| 22 | #include <fcntl.h> |
| 23 | #include <stdarg.h> |
| 24 | #include <dirent.h> |
| 25 | #include <limits.h> |
| 26 | #include <errno.h> |
JP Abgrall | 4515d81 | 2014-01-31 14:37:07 -0800 | [diff] [blame] | 27 | #include <sys/poll.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 28 | |
Elliott Hughes | 81399e1 | 2015-03-10 08:39:45 -0700 | [diff] [blame] | 29 | #include <memory> |
| 30 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 31 | #include <cutils/misc.h> |
| 32 | #include <cutils/sockets.h> |
Matthew Xie | 40a91a2 | 2013-05-20 14:22:01 -0700 | [diff] [blame] | 33 | #include <cutils/multiuser.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 34 | |
| 35 | #define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_ |
| 36 | #include <sys/_system_properties.h> |
| 37 | |
| 38 | #include <sys/socket.h> |
| 39 | #include <sys/un.h> |
| 40 | #include <sys/select.h> |
| 41 | #include <sys/types.h> |
| 42 | #include <netinet/in.h> |
| 43 | #include <sys/mman.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 44 | #include <private/android_filesystem_config.h> |
| 45 | |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 46 | #include <selinux/selinux.h> |
| 47 | #include <selinux/label.h> |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 48 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 49 | #include "property_service.h" |
| 50 | #include "init.h" |
Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 51 | #include "util.h" |
Colin Cross | ed8a7d8 | 2010-04-19 17:05:34 -0700 | [diff] [blame] | 52 | #include "log.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 53 | |
| 54 | #define PERSISTENT_PROPERTY_DIR "/data/property" |
| 55 | |
| 56 | static int persistent_properties_loaded = 0; |
Colin Cross | 3294bbb | 2010-04-19 17:11:33 -0700 | [diff] [blame] | 57 | static int property_area_inited = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 58 | |
Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 59 | static int property_set_fd = -1; |
| 60 | |
Elliott Hughes | c0e919c | 2015-02-04 14:46:36 -0800 | [diff] [blame] | 61 | struct workspace { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 62 | size_t size; |
Nick Kralevich | 2840647 | 2013-01-22 12:46:09 -0800 | [diff] [blame] | 63 | int fd; |
Elliott Hughes | c0e919c | 2015-02-04 14:46:36 -0800 | [diff] [blame] | 64 | }; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 65 | |
| 66 | static int init_workspace(workspace *w, size_t size) |
| 67 | { |
Greg Hackmann | f14eef0 | 2013-02-12 14:39:31 -0800 | [diff] [blame] | 68 | int fd = open(PROP_FILENAME, O_RDONLY | O_NOFOLLOW); |
Brian Swetland | 25b15be | 2010-07-13 16:43:56 -0700 | [diff] [blame] | 69 | if (fd < 0) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 70 | return -1; |
| 71 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 72 | w->size = size; |
Nick Kralevich | 2840647 | 2013-01-22 12:46:09 -0800 | [diff] [blame] | 73 | w->fd = fd; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 74 | return 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 75 | } |
| 76 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 77 | static workspace pa_workspace; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 78 | |
| 79 | static int init_property_area(void) |
| 80 | { |
Colin Cross | 9f5af63 | 2013-01-23 23:09:48 -0800 | [diff] [blame] | 81 | if (property_area_inited) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 82 | return -1; |
| 83 | |
Greg Hackmann | f14eef0 | 2013-02-12 14:39:31 -0800 | [diff] [blame] | 84 | if(__system_property_area_init()) |
| 85 | return -1; |
| 86 | |
| 87 | if(init_workspace(&pa_workspace, 0)) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 88 | return -1; |
| 89 | |
Nick Kralevich | 2840647 | 2013-01-22 12:46:09 -0800 | [diff] [blame] | 90 | fcntl(pa_workspace.fd, F_SETFD, FD_CLOEXEC); |
| 91 | |
Colin Cross | 3294bbb | 2010-04-19 17:11:33 -0700 | [diff] [blame] | 92 | property_area_inited = 1; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 93 | return 0; |
| 94 | } |
| 95 | |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 96 | static int check_mac_perms(const char *name, char *sctx) |
| 97 | { |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 98 | if (is_selinux_enabled() <= 0) |
| 99 | return 1; |
| 100 | |
| 101 | char *tctx = NULL; |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 102 | int result = 0; |
| 103 | |
| 104 | if (!sctx) |
| 105 | goto err; |
| 106 | |
| 107 | if (!sehandle_prop) |
| 108 | goto err; |
| 109 | |
| 110 | if (selabel_lookup(sehandle_prop, &tctx, name, 1) != 0) |
| 111 | goto err; |
| 112 | |
Elliott Hughes | f3cf438 | 2015-02-03 17:12:07 -0800 | [diff] [blame] | 113 | if (selinux_check_access(sctx, tctx, "property_service", "set", (void*) name) == 0) |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 114 | result = 1; |
| 115 | |
| 116 | freecon(tctx); |
| 117 | err: |
| 118 | return result; |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static int check_control_mac_perms(const char *name, char *sctx) |
| 122 | { |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 123 | /* |
| 124 | * Create a name prefix out of ctl.<service name> |
| 125 | * The new prefix allows the use of the existing |
| 126 | * property service backend labeling while avoiding |
| 127 | * mislabels based on true property prefixes. |
| 128 | */ |
| 129 | char ctl_name[PROP_VALUE_MAX+4]; |
| 130 | int ret = snprintf(ctl_name, sizeof(ctl_name), "ctl.%s", name); |
| 131 | |
| 132 | if (ret < 0 || (size_t) ret >= sizeof(ctl_name)) |
| 133 | return 0; |
| 134 | |
| 135 | return check_mac_perms(ctl_name, sctx); |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 136 | } |
| 137 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 138 | /* |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 139 | * Checks permissions for setting system properties. |
| 140 | * Returns 1 if uid allowed, 0 otherwise. |
| 141 | */ |
Nick Kralevich | 528c13e | 2014-06-17 22:23:54 -0700 | [diff] [blame] | 142 | static int check_perms(const char *name, char *sctx) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 143 | { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 144 | if(!strncmp(name, "ro.", 3)) |
| 145 | name +=3; |
| 146 | |
Nick Kralevich | 528c13e | 2014-06-17 22:23:54 -0700 | [diff] [blame] | 147 | return check_mac_perms(name, sctx); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 148 | } |
| 149 | |
Colin Cross | 88ac54a | 2013-01-29 14:58:57 -0800 | [diff] [blame] | 150 | int __property_get(const char *name, char *value) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 151 | { |
Colin Cross | 2deedfe | 2013-01-28 17:13:35 -0800 | [diff] [blame] | 152 | return __system_property_get(name, value); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 153 | } |
| 154 | |
Tammo Spalink | 3dfe6c6 | 2009-08-26 10:13:20 +0800 | [diff] [blame] | 155 | 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] | 156 | { |
Nick Kralevich | 7ecfe6a | 2012-10-02 14:59:59 -0700 | [diff] [blame] | 157 | char tempPath[PATH_MAX]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 158 | char path[PATH_MAX]; |
Nick Kralevich | 7ecfe6a | 2012-10-02 14:59:59 -0700 | [diff] [blame] | 159 | int fd; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 160 | |
Nick Kralevich | 7ecfe6a | 2012-10-02 14:59:59 -0700 | [diff] [blame] | 161 | snprintf(tempPath, sizeof(tempPath), "%s/.temp.XXXXXX", PERSISTENT_PROPERTY_DIR); |
| 162 | fd = mkstemp(tempPath); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 163 | if (fd < 0) { |
Elliott Hughes | cd67f00 | 2015-03-20 17:05:56 -0700 | [diff] [blame] | 164 | ERROR("Unable to write persistent property to temp file %s: %s\n", tempPath, strerror(errno)); |
Tammo Spalink | 3dfe6c6 | 2009-08-26 10:13:20 +0800 | [diff] [blame] | 165 | return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 166 | } |
| 167 | write(fd, value, strlen(value)); |
OPPO | de73a0c | 2014-03-28 19:12:47 +0800 | [diff] [blame] | 168 | fsync(fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 169 | close(fd); |
| 170 | |
Nick Kralevich | 7ecfe6a | 2012-10-02 14:59:59 -0700 | [diff] [blame] | 171 | 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] | 172 | if (rename(tempPath, path)) { |
| 173 | unlink(tempPath); |
| 174 | ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path); |
| 175 | } |
| 176 | } |
| 177 | |
Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 178 | static bool is_legal_property_name(const char* name, size_t namelen) |
| 179 | { |
| 180 | size_t i; |
Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 181 | if (namelen >= PROP_NAME_MAX) return false; |
| 182 | if (namelen < 1) return false; |
| 183 | if (name[0] == '.') return false; |
| 184 | if (name[namelen - 1] == '.') return false; |
| 185 | |
| 186 | /* Only allow alphanumeric, plus '.', '-', or '_' */ |
| 187 | /* Don't allow ".." to appear in a property name */ |
| 188 | for (i = 0; i < namelen; i++) { |
| 189 | if (name[i] == '.') { |
Nick Kralevich | c2c5a24 | 2013-09-16 11:30:48 -0700 | [diff] [blame] | 190 | // i=0 is guaranteed to never have a dot. See above. |
| 191 | if (name[i-1] == '.') return false; |
Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 192 | continue; |
| 193 | } |
Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 194 | if (name[i] == '_' || name[i] == '-') continue; |
| 195 | if (name[i] >= 'a' && name[i] <= 'z') continue; |
| 196 | if (name[i] >= 'A' && name[i] <= 'Z') continue; |
| 197 | if (name[i] >= '0' && name[i] <= '9') continue; |
| 198 | return false; |
| 199 | } |
| 200 | |
| 201 | return true; |
| 202 | } |
| 203 | |
Elliott Hughes | db3f267 | 2015-03-20 09:45:18 -0700 | [diff] [blame] | 204 | static int property_set_impl(const char* name, const char* value) { |
Nick Kralevich | 7ecfe6a | 2012-10-02 14:59:59 -0700 | [diff] [blame] | 205 | size_t namelen = strlen(name); |
| 206 | size_t valuelen = strlen(value); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 207 | |
Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 208 | if (!is_legal_property_name(name, namelen)) return -1; |
| 209 | if (valuelen >= PROP_VALUE_MAX) return -1; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 210 | |
Elliott Hughes | db3f267 | 2015-03-20 09:45:18 -0700 | [diff] [blame] | 211 | prop_info* pi = (prop_info*) __system_property_find(name); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 212 | |
| 213 | if(pi != 0) { |
| 214 | /* ro.* properties may NEVER be modified once set */ |
| 215 | if(!strncmp(name, "ro.", 3)) return -1; |
| 216 | |
Colin Cross | 9f5af63 | 2013-01-23 23:09:48 -0800 | [diff] [blame] | 217 | __system_property_update(pi, value, valuelen); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 218 | } else { |
Elliott Hughes | db3f267 | 2015-03-20 09:45:18 -0700 | [diff] [blame] | 219 | int rc = __system_property_add(name, namelen, value, valuelen); |
| 220 | if (rc < 0) { |
| 221 | return rc; |
Johan Redestig | fd7ffb1 | 2013-04-29 09:11:57 +0200 | [diff] [blame] | 222 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 223 | } |
| 224 | /* If name starts with "net." treat as a DNS property. */ |
Mike Lockwood | b377955 | 2009-05-08 14:27:42 -0400 | [diff] [blame] | 225 | if (strncmp("net.", name, strlen("net.")) == 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 226 | if (strcmp("net.change", name) == 0) { |
| 227 | return 0; |
| 228 | } |
Tammo Spalink | 3dfe6c6 | 2009-08-26 10:13:20 +0800 | [diff] [blame] | 229 | /* |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 230 | * The 'net.change' property is a special property used track when any |
| 231 | * 'net.*' property name is updated. It is _ONLY_ updated here. Its value |
| 232 | * contains the last updated 'net.*' property. |
| 233 | */ |
| 234 | property_set("net.change", name); |
| 235 | } else if (persistent_properties_loaded && |
Mike Lockwood | b377955 | 2009-05-08 14:27:42 -0400 | [diff] [blame] | 236 | strncmp("persist.", name, strlen("persist.")) == 0) { |
Tammo Spalink | 3dfe6c6 | 2009-08-26 10:13:20 +0800 | [diff] [blame] | 237 | /* |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 238 | * Don't write properties to disk until after we have read all default properties |
| 239 | * to prevent them from being overwritten by default values. |
| 240 | */ |
Tammo Spalink | 3dfe6c6 | 2009-08-26 10:13:20 +0800 | [diff] [blame] | 241 | write_persistent_property(name, value); |
repo sync | 8a38787 | 2013-05-17 12:47:04 -0700 | [diff] [blame] | 242 | } else if (strcmp("selinux.reload_policy", name) == 0 && |
| 243 | strcmp("1", value) == 0) { |
| 244 | selinux_reload_policy(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 245 | } |
| 246 | property_changed(name, value); |
| 247 | return 0; |
| 248 | } |
| 249 | |
Elliott Hughes | db3f267 | 2015-03-20 09:45:18 -0700 | [diff] [blame] | 250 | int property_set(const char* name, const char* value) { |
| 251 | int rc = property_set_impl(name, value); |
| 252 | if (rc == -1) { |
Elliott Hughes | 930974c | 2015-03-23 08:07:19 -0700 | [diff] [blame] | 253 | ERROR("property_set(\"%s\", \"%s\") failed\n", name, value); |
Elliott Hughes | db3f267 | 2015-03-20 09:45:18 -0700 | [diff] [blame] | 254 | } |
| 255 | return rc; |
| 256 | } |
| 257 | |
Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 258 | void handle_property_set_fd() |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 259 | { |
| 260 | prop_msg msg; |
| 261 | int s; |
| 262 | int r; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 263 | struct ucred cr; |
| 264 | struct sockaddr_un addr; |
| 265 | socklen_t addr_size = sizeof(addr); |
| 266 | socklen_t cr_size = sizeof(cr); |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 267 | char * source_ctx = NULL; |
JP Abgrall | 4515d81 | 2014-01-31 14:37:07 -0800 | [diff] [blame] | 268 | struct pollfd ufds[1]; |
| 269 | const int timeout_ms = 2 * 1000; /* Default 2 sec timeout for caller to send property. */ |
| 270 | int nr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 271 | |
Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 272 | if ((s = accept(property_set_fd, (struct sockaddr *) &addr, &addr_size)) < 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 273 | return; |
| 274 | } |
| 275 | |
| 276 | /* Check socket options here */ |
| 277 | if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) { |
| 278 | close(s); |
Nick Kralevich | 7ecfe6a | 2012-10-02 14:59:59 -0700 | [diff] [blame] | 279 | ERROR("Unable to receive socket options\n"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 280 | return; |
| 281 | } |
| 282 | |
JP Abgrall | 4515d81 | 2014-01-31 14:37:07 -0800 | [diff] [blame] | 283 | ufds[0].fd = s; |
| 284 | ufds[0].events = POLLIN; |
| 285 | ufds[0].revents = 0; |
| 286 | nr = TEMP_FAILURE_RETRY(poll(ufds, 1, timeout_ms)); |
| 287 | if (nr == 0) { |
| 288 | ERROR("sys_prop: timeout waiting for uid=%d to send property message.\n", cr.uid); |
| 289 | close(s); |
| 290 | return; |
| 291 | } else if (nr < 0) { |
Elliott Hughes | cd67f00 | 2015-03-20 17:05:56 -0700 | [diff] [blame] | 292 | ERROR("sys_prop: error waiting for uid=%d to send property message: %s\n", cr.uid, strerror(errno)); |
JP Abgrall | 4515d81 | 2014-01-31 14:37:07 -0800 | [diff] [blame] | 293 | close(s); |
| 294 | return; |
| 295 | } |
| 296 | |
| 297 | r = TEMP_FAILURE_RETRY(recv(s, &msg, sizeof(msg), MSG_DONTWAIT)); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 298 | if(r != sizeof(prop_msg)) { |
Elliott Hughes | cd67f00 | 2015-03-20 17:05:56 -0700 | [diff] [blame] | 299 | ERROR("sys_prop: mis-match msg size received: %d expected: %zu: %s\n", |
| 300 | r, sizeof(prop_msg), strerror(errno)); |
Brad Fitzpatrick | 9f1e0e3 | 2011-03-30 12:39:56 -0700 | [diff] [blame] | 301 | close(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 302 | return; |
| 303 | } |
| 304 | |
| 305 | switch(msg.cmd) { |
| 306 | case PROP_MSG_SETPROP: |
| 307 | msg.name[PROP_NAME_MAX-1] = 0; |
| 308 | msg.value[PROP_VALUE_MAX-1] = 0; |
| 309 | |
Nick Kralevich | 6946361 | 2013-09-13 17:21:28 -0700 | [diff] [blame] | 310 | if (!is_legal_property_name(msg.name, strlen(msg.name))) { |
| 311 | ERROR("sys_prop: illegal property name. Got: \"%s\"\n", msg.name); |
| 312 | close(s); |
| 313 | return; |
| 314 | } |
| 315 | |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 316 | getpeercon(s, &source_ctx); |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 317 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 318 | if(memcmp(msg.name,"ctl.",4) == 0) { |
Brad Fitzpatrick | 71ead18 | 2011-04-01 08:24:13 -0700 | [diff] [blame] | 319 | // Keep the old close-socket-early behavior when handling |
| 320 | // ctl.* properties. |
| 321 | close(s); |
Nick Kralevich | 528c13e | 2014-06-17 22:23:54 -0700 | [diff] [blame] | 322 | if (check_control_mac_perms(msg.value, source_ctx)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 323 | handle_control_message((char*) msg.name + 4, (char*) msg.value); |
| 324 | } else { |
Wink Saville | cfa0d84 | 2010-10-03 13:30:11 -0700 | [diff] [blame] | 325 | ERROR("sys_prop: Unable to %s service ctl [%s] uid:%d gid:%d pid:%d\n", |
| 326 | msg.name + 4, msg.value, cr.uid, cr.gid, cr.pid); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 327 | } |
| 328 | } else { |
Nick Kralevich | 528c13e | 2014-06-17 22:23:54 -0700 | [diff] [blame] | 329 | if (check_perms(msg.name, source_ctx)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 330 | property_set((char*) msg.name, (char*) msg.value); |
| 331 | } else { |
| 332 | ERROR("sys_prop: permission denied uid:%d name:%s\n", |
| 333 | cr.uid, msg.name); |
| 334 | } |
Brad Fitzpatrick | 71ead18 | 2011-04-01 08:24:13 -0700 | [diff] [blame] | 335 | |
| 336 | // Note: bionic's property client code assumes that the |
| 337 | // property server will not close the socket until *AFTER* |
| 338 | // the property is written to memory. |
| 339 | close(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 340 | } |
rpcraig | 63207cd | 2012-08-09 10:05:49 -0400 | [diff] [blame] | 341 | freecon(source_ctx); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 342 | break; |
| 343 | |
| 344 | default: |
Brad Fitzpatrick | 71ead18 | 2011-04-01 08:24:13 -0700 | [diff] [blame] | 345 | close(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 346 | break; |
| 347 | } |
| 348 | } |
| 349 | |
Nick Kralevich | 2840647 | 2013-01-22 12:46:09 -0800 | [diff] [blame] | 350 | void get_property_workspace(int *fd, int *sz) |
| 351 | { |
| 352 | *fd = pa_workspace.fd; |
| 353 | *sz = pa_workspace.size; |
| 354 | } |
| 355 | |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 356 | 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] | 357 | |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 358 | /* |
| 359 | * Filter is used to decide which properties to load: NULL loads all keys, |
| 360 | * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match. |
| 361 | */ |
| 362 | static void load_properties(char *data, const char *filter) |
| 363 | { |
| 364 | char *key, *value, *eol, *sol, *tmp, *fn; |
| 365 | size_t flen = 0; |
| 366 | |
| 367 | if (filter) { |
| 368 | flen = strlen(filter); |
| 369 | } |
| 370 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 371 | sol = data; |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 372 | while ((eol = strchr(sol, '\n'))) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 373 | key = sol; |
| 374 | *eol++ = 0; |
| 375 | sol = eol; |
| 376 | |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 377 | while (isspace(*key)) key++; |
| 378 | if (*key == '#') continue; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 379 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 380 | tmp = eol - 2; |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 381 | while ((tmp > key) && isspace(*tmp)) *tmp-- = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 382 | |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 383 | if (!strncmp(key, "import ", 7) && flen == 0) { |
| 384 | fn = key + 7; |
| 385 | while (isspace(*fn)) fn++; |
| 386 | |
| 387 | key = strchr(fn, ' '); |
| 388 | if (key) { |
| 389 | *key++ = 0; |
| 390 | while (isspace(*key)) key++; |
| 391 | } |
| 392 | |
| 393 | load_properties_from_file(fn, key); |
| 394 | |
| 395 | } else { |
| 396 | value = strchr(key, '='); |
| 397 | if (!value) continue; |
| 398 | *value++ = 0; |
| 399 | |
| 400 | tmp = value - 2; |
| 401 | while ((tmp > key) && isspace(*tmp)) *tmp-- = 0; |
| 402 | |
| 403 | while (isspace(*value)) value++; |
| 404 | |
| 405 | if (flen > 0) { |
| 406 | if (filter[flen - 1] == '*') { |
| 407 | if (strncmp(key, filter, flen - 1)) continue; |
| 408 | } else { |
| 409 | if (strcmp(key, filter)) continue; |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | property_set(key, value); |
| 414 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 418 | /* |
| 419 | * Filter is used to decide which properties to load: NULL loads all keys, |
| 420 | * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match. |
| 421 | */ |
| 422 | static void load_properties_from_file(const char *fn, const char *filter) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 423 | { |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 424 | std::string data; |
| 425 | if (read_file(fn, &data)) { |
| 426 | load_properties(&data[0], filter); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 427 | } |
| 428 | } |
| 429 | |
Elliott Hughes | 81399e1 | 2015-03-10 08:39:45 -0700 | [diff] [blame] | 430 | static void load_persistent_properties() { |
| 431 | persistent_properties_loaded = 1; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 432 | |
Elliott Hughes | 81399e1 | 2015-03-10 08:39:45 -0700 | [diff] [blame] | 433 | std::unique_ptr<DIR, int(*)(DIR*)> dir(opendir(PERSISTENT_PROPERTY_DIR), closedir); |
| 434 | if (!dir) { |
| 435 | ERROR("Unable to open persistent property directory \"%s\": %s\n", |
| 436 | PERSISTENT_PROPERTY_DIR, strerror(errno)); |
| 437 | return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 438 | } |
Tammo Spalink | 3dfe6c6 | 2009-08-26 10:13:20 +0800 | [diff] [blame] | 439 | |
Elliott Hughes | 81399e1 | 2015-03-10 08:39:45 -0700 | [diff] [blame] | 440 | struct dirent* entry; |
| 441 | while ((entry = readdir(dir.get())) != NULL) { |
| 442 | if (strncmp("persist.", entry->d_name, strlen("persist."))) { |
| 443 | continue; |
| 444 | } |
| 445 | if (entry->d_type != DT_REG) { |
| 446 | continue; |
| 447 | } |
| 448 | |
| 449 | // Open the file and read the property value. |
| 450 | int fd = openat(dirfd(dir.get()), entry->d_name, O_RDONLY | O_NOFOLLOW); |
| 451 | if (fd == -1) { |
| 452 | ERROR("Unable to open persistent property file \"%s\": %s\n", |
| 453 | entry->d_name, strerror(errno)); |
| 454 | continue; |
| 455 | } |
| 456 | |
| 457 | struct stat sb; |
| 458 | if (fstat(fd, &sb) == -1) { |
| 459 | ERROR("fstat on property file \"%s\" failed: %s\n", entry->d_name, strerror(errno)); |
| 460 | close(fd); |
| 461 | continue; |
| 462 | } |
| 463 | |
| 464 | // File must not be accessible to others, be owned by root/root, and |
| 465 | // not be a hard link to any other file. |
| 466 | if (((sb.st_mode & (S_IRWXG | S_IRWXO)) != 0) || (sb.st_uid != 0) || (sb.st_gid != 0) || |
| 467 | (sb.st_nlink != 1)) { |
| 468 | ERROR("skipping insecure property file %s (uid=%u gid=%u nlink=%u mode=%o)\n", |
| 469 | entry->d_name, (unsigned int)sb.st_uid, (unsigned int)sb.st_gid, |
| 470 | (unsigned int)sb.st_nlink, sb.st_mode); |
| 471 | close(fd); |
| 472 | continue; |
| 473 | } |
| 474 | |
| 475 | char value[PROP_VALUE_MAX]; |
| 476 | int length = read(fd, value, sizeof(value) - 1); |
| 477 | if (length >= 0) { |
| 478 | value[length] = 0; |
| 479 | property_set(entry->d_name, value); |
| 480 | } else { |
| 481 | ERROR("Unable to read persistent property file %s: %s\n", |
| 482 | entry->d_name, strerror(errno)); |
| 483 | } |
| 484 | close(fd); |
| 485 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 486 | } |
| 487 | |
Dima Zavin | 8886112 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 488 | void property_init(void) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 489 | { |
| 490 | init_property_area(); |
Dima Zavin | 8886112 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | void property_load_boot_defaults(void) |
| 494 | { |
Andrew Boie | 3899f52 | 2012-10-12 15:23:40 -0700 | [diff] [blame] | 495 | load_properties_from_file(PROP_PATH_RAMDISK_DEFAULT, NULL); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 496 | } |
| 497 | |
Colin Cross | 3294bbb | 2010-04-19 17:11:33 -0700 | [diff] [blame] | 498 | int properties_inited(void) |
| 499 | { |
| 500 | return property_area_inited; |
| 501 | } |
| 502 | |
Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 503 | static void load_override_properties() { |
Elliott Hughes | c0e919c | 2015-02-04 14:46:36 -0800 | [diff] [blame] | 504 | if (ALLOW_LOCAL_PROP_OVERRIDE) { |
| 505 | char debuggable[PROP_VALUE_MAX]; |
| 506 | int ret = property_get("ro.debuggable", debuggable); |
| 507 | if (ret && (strcmp(debuggable, "1") == 0)) { |
| 508 | load_properties_from_file(PROP_PATH_LOCAL_OVERRIDE, NULL); |
| 509 | } |
Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 510 | } |
Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | |
Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 514 | /* When booting an encrypted system, /data is not mounted when the |
| 515 | * property service is started, so any properties stored there are |
| 516 | * not loaded. Vold triggers init to load these properties once it |
| 517 | * has mounted /data. |
| 518 | */ |
| 519 | void load_persist_props(void) |
| 520 | { |
Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 521 | load_override_properties(); |
Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 522 | /* Read persistent properties after all default values have been loaded. */ |
| 523 | load_persistent_properties(); |
| 524 | } |
| 525 | |
Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 526 | void load_all_props(void) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 527 | { |
Andrew Boie | 3899f52 | 2012-10-12 15:23:40 -0700 | [diff] [blame] | 528 | load_properties_from_file(PROP_PATH_SYSTEM_BUILD, NULL); |
| 529 | load_properties_from_file(PROP_PATH_SYSTEM_DEFAULT, NULL); |
Daniel Rosenberg | b951222 | 2014-11-10 17:01:33 -0800 | [diff] [blame] | 530 | load_properties_from_file(PROP_PATH_VENDOR_BUILD, NULL); |
Andres Morales | 1f1b058 | 2015-01-13 18:10:24 -0800 | [diff] [blame] | 531 | load_properties_from_file(PROP_PATH_BOOTIMAGE_BUILD, NULL); |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 532 | load_properties_from_file(PROP_PATH_FACTORY, "ro.*"); |
| 533 | |
Nick Kralevich | 32b9023 | 2012-09-19 11:15:24 -0700 | [diff] [blame] | 534 | load_override_properties(); |
Jeff Sharkey | f96b044 | 2014-03-06 14:26:36 -0800 | [diff] [blame] | 535 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 536 | /* Read persistent properties after all default values have been loaded. */ |
| 537 | load_persistent_properties(); |
Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | void start_property_service(void) |
| 541 | { |
| 542 | int fd; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 543 | |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 544 | fd = create_socket(PROP_SERVICE_NAME, SOCK_STREAM, 0666, 0, 0, NULL); |
Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 545 | if(fd < 0) return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 546 | fcntl(fd, F_SETFD, FD_CLOEXEC); |
| 547 | fcntl(fd, F_SETFL, O_NONBLOCK); |
| 548 | |
| 549 | listen(fd, 8); |
Colin Cross | d11beb2 | 2010-04-13 19:33:37 -0700 | [diff] [blame] | 550 | property_set_fd = fd; |
| 551 | } |
| 552 | |
| 553 | int get_property_set_fd() |
| 554 | { |
| 555 | return property_set_fd; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 556 | } |