blob: 44658c5d06c7552925c953532e4e59c81da70139 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
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 Abgrall4515d812014-01-31 14:37:07 -080027#include <sys/poll.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028
29#include <cutils/misc.h>
30#include <cutils/sockets.h>
Matthew Xie40a91a22013-05-20 14:22:01 -070031#include <cutils/multiuser.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032
33#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
34#include <sys/_system_properties.h>
35
36#include <sys/socket.h>
37#include <sys/un.h>
38#include <sys/select.h>
39#include <sys/types.h>
40#include <netinet/in.h>
41#include <sys/mman.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080042#include <private/android_filesystem_config.h>
43
rpcraig63207cd2012-08-09 10:05:49 -040044#include <selinux/selinux.h>
45#include <selinux/label.h>
rpcraig63207cd2012-08-09 10:05:49 -040046
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047#include "property_service.h"
48#include "init.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070049#include "util.h"
Colin Crossed8a7d82010-04-19 17:05:34 -070050#include "log.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080051
52#define PERSISTENT_PROPERTY_DIR "/data/property"
53
54static int persistent_properties_loaded = 0;
Colin Cross3294bbb2010-04-19 17:11:33 -070055static int property_area_inited = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
Colin Crossd11beb22010-04-13 19:33:37 -070057static int property_set_fd = -1;
58
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059typedef struct {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060 size_t size;
Nick Kralevich28406472013-01-22 12:46:09 -080061 int fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062} workspace;
63
64static int init_workspace(workspace *w, size_t size)
65{
66 void *data;
Greg Hackmannf14eef02013-02-12 14:39:31 -080067 int fd = open(PROP_FILENAME, O_RDONLY | O_NOFOLLOW);
Brian Swetland25b15be2010-07-13 16:43:56 -070068 if (fd < 0)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080069 return -1;
70
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071 w->size = size;
Nick Kralevich28406472013-01-22 12:46:09 -080072 w->fd = fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080073 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074}
75
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080076static workspace pa_workspace;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077
78static int init_property_area(void)
79{
Colin Cross9f5af632013-01-23 23:09:48 -080080 if (property_area_inited)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081 return -1;
82
Greg Hackmannf14eef02013-02-12 14:39:31 -080083 if(__system_property_area_init())
84 return -1;
85
86 if(init_workspace(&pa_workspace, 0))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080087 return -1;
88
Nick Kralevich28406472013-01-22 12:46:09 -080089 fcntl(pa_workspace.fd, F_SETFD, FD_CLOEXEC);
90
Colin Cross3294bbb2010-04-19 17:11:33 -070091 property_area_inited = 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080092 return 0;
93}
94
rpcraig63207cd2012-08-09 10:05:49 -040095static int check_mac_perms(const char *name, char *sctx)
96{
rpcraig63207cd2012-08-09 10:05:49 -040097 if (is_selinux_enabled() <= 0)
98 return 1;
99
100 char *tctx = NULL;
101 const char *class = "property_service";
102 const char *perm = "set";
103 int result = 0;
104
105 if (!sctx)
106 goto err;
107
108 if (!sehandle_prop)
109 goto err;
110
111 if (selabel_lookup(sehandle_prop, &tctx, name, 1) != 0)
112 goto err;
113
Elliott Hughesccecf142014-01-16 10:53:11 -0800114 if (selinux_check_access(sctx, tctx, class, perm, (void*) name) == 0)
rpcraig63207cd2012-08-09 10:05:49 -0400115 result = 1;
116
117 freecon(tctx);
118 err:
119 return result;
rpcraig63207cd2012-08-09 10:05:49 -0400120}
121
122static int check_control_mac_perms(const char *name, char *sctx)
123{
rpcraig63207cd2012-08-09 10:05:49 -0400124 /*
125 * Create a name prefix out of ctl.<service name>
126 * The new prefix allows the use of the existing
127 * property service backend labeling while avoiding
128 * mislabels based on true property prefixes.
129 */
130 char ctl_name[PROP_VALUE_MAX+4];
131 int ret = snprintf(ctl_name, sizeof(ctl_name), "ctl.%s", name);
132
133 if (ret < 0 || (size_t) ret >= sizeof(ctl_name))
134 return 0;
135
136 return check_mac_perms(ctl_name, sctx);
rpcraig63207cd2012-08-09 10:05:49 -0400137}
138
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800139/*
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800140 * Checks permissions for setting system properties.
141 * Returns 1 if uid allowed, 0 otherwise.
142 */
Nick Kralevich528c13e2014-06-17 22:23:54 -0700143static int check_perms(const char *name, char *sctx)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800144{
145 int i;
Matthew Xie40a91a22013-05-20 14:22:01 -0700146 unsigned int app_id;
147
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800148 if(!strncmp(name, "ro.", 3))
149 name +=3;
150
Nick Kralevich528c13e2014-06-17 22:23:54 -0700151 return check_mac_perms(name, sctx);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152}
153
Colin Cross88ac54a2013-01-29 14:58:57 -0800154int __property_get(const char *name, char *value)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800155{
Colin Cross2deedfe2013-01-28 17:13:35 -0800156 return __system_property_get(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157}
158
Tammo Spalink3dfe6c62009-08-26 10:13:20 +0800159static void write_persistent_property(const char *name, const char *value)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800160{
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700161 char tempPath[PATH_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162 char path[PATH_MAX];
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700163 int fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800164
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700165 snprintf(tempPath, sizeof(tempPath), "%s/.temp.XXXXXX", PERSISTENT_PROPERTY_DIR);
166 fd = mkstemp(tempPath);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800167 if (fd < 0) {
168 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno);
Tammo Spalink3dfe6c62009-08-26 10:13:20 +0800169 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800170 }
171 write(fd, value, strlen(value));
OPPOde73a0c2014-03-28 19:12:47 +0800172 fsync(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800173 close(fd);
174
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700175 snprintf(path, sizeof(path), "%s/%s", PERSISTENT_PROPERTY_DIR, name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800176 if (rename(tempPath, path)) {
177 unlink(tempPath);
178 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path);
179 }
180}
181
Nick Kralevich69463612013-09-13 17:21:28 -0700182static bool is_legal_property_name(const char* name, size_t namelen)
183{
184 size_t i;
Nick Kralevich69463612013-09-13 17:21:28 -0700185 if (namelen >= PROP_NAME_MAX) return false;
186 if (namelen < 1) return false;
187 if (name[0] == '.') return false;
188 if (name[namelen - 1] == '.') return false;
189
190 /* Only allow alphanumeric, plus '.', '-', or '_' */
191 /* Don't allow ".." to appear in a property name */
192 for (i = 0; i < namelen; i++) {
193 if (name[i] == '.') {
Nick Kralevichc2c5a242013-09-16 11:30:48 -0700194 // i=0 is guaranteed to never have a dot. See above.
195 if (name[i-1] == '.') return false;
Nick Kralevich69463612013-09-13 17:21:28 -0700196 continue;
197 }
Nick Kralevich69463612013-09-13 17:21:28 -0700198 if (name[i] == '_' || name[i] == '-') continue;
199 if (name[i] >= 'a' && name[i] <= 'z') continue;
200 if (name[i] >= 'A' && name[i] <= 'Z') continue;
201 if (name[i] >= '0' && name[i] <= '9') continue;
202 return false;
203 }
204
205 return true;
206}
207
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800208int property_set(const char *name, const char *value)
209{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800210 prop_info *pi;
Colin Cross9f5af632013-01-23 23:09:48 -0800211 int ret;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700213 size_t namelen = strlen(name);
214 size_t valuelen = strlen(value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800215
Nick Kralevich69463612013-09-13 17:21:28 -0700216 if (!is_legal_property_name(name, namelen)) return -1;
217 if (valuelen >= PROP_VALUE_MAX) return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800218
219 pi = (prop_info*) __system_property_find(name);
220
221 if(pi != 0) {
222 /* ro.* properties may NEVER be modified once set */
223 if(!strncmp(name, "ro.", 3)) return -1;
224
Colin Cross9f5af632013-01-23 23:09:48 -0800225 __system_property_update(pi, value, valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226 } else {
Colin Cross9f5af632013-01-23 23:09:48 -0800227 ret = __system_property_add(name, namelen, value, valuelen);
228 if (ret < 0) {
Nick Kralevich69463612013-09-13 17:21:28 -0700229 ERROR("Failed to set '%s'='%s'\n", name, value);
Colin Cross9f5af632013-01-23 23:09:48 -0800230 return ret;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200231 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800232 }
233 /* If name starts with "net." treat as a DNS property. */
Mike Lockwoodb3779552009-05-08 14:27:42 -0400234 if (strncmp("net.", name, strlen("net.")) == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800235 if (strcmp("net.change", name) == 0) {
236 return 0;
237 }
Tammo Spalink3dfe6c62009-08-26 10:13:20 +0800238 /*
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239 * The 'net.change' property is a special property used track when any
240 * 'net.*' property name is updated. It is _ONLY_ updated here. Its value
241 * contains the last updated 'net.*' property.
242 */
243 property_set("net.change", name);
244 } else if (persistent_properties_loaded &&
Mike Lockwoodb3779552009-05-08 14:27:42 -0400245 strncmp("persist.", name, strlen("persist.")) == 0) {
Tammo Spalink3dfe6c62009-08-26 10:13:20 +0800246 /*
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800247 * Don't write properties to disk until after we have read all default properties
248 * to prevent them from being overwritten by default values.
249 */
Tammo Spalink3dfe6c62009-08-26 10:13:20 +0800250 write_persistent_property(name, value);
repo sync8a387872013-05-17 12:47:04 -0700251 } else if (strcmp("selinux.reload_policy", name) == 0 &&
252 strcmp("1", value) == 0) {
253 selinux_reload_policy();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800254 }
255 property_changed(name, value);
256 return 0;
257}
258
Colin Crossd11beb22010-04-13 19:33:37 -0700259void handle_property_set_fd()
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260{
261 prop_msg msg;
262 int s;
263 int r;
264 int res;
265 struct ucred cr;
266 struct sockaddr_un addr;
267 socklen_t addr_size = sizeof(addr);
268 socklen_t cr_size = sizeof(cr);
rpcraig63207cd2012-08-09 10:05:49 -0400269 char * source_ctx = NULL;
JP Abgrall4515d812014-01-31 14:37:07 -0800270 struct pollfd ufds[1];
271 const int timeout_ms = 2 * 1000; /* Default 2 sec timeout for caller to send property. */
272 int nr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800273
Colin Crossd11beb22010-04-13 19:33:37 -0700274 if ((s = accept(property_set_fd, (struct sockaddr *) &addr, &addr_size)) < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800275 return;
276 }
277
278 /* Check socket options here */
279 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
280 close(s);
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700281 ERROR("Unable to receive socket options\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800282 return;
283 }
284
JP Abgrall4515d812014-01-31 14:37:07 -0800285 ufds[0].fd = s;
286 ufds[0].events = POLLIN;
287 ufds[0].revents = 0;
288 nr = TEMP_FAILURE_RETRY(poll(ufds, 1, timeout_ms));
289 if (nr == 0) {
290 ERROR("sys_prop: timeout waiting for uid=%d to send property message.\n", cr.uid);
291 close(s);
292 return;
293 } else if (nr < 0) {
294 ERROR("sys_prop: error waiting for uid=%d to send property message. err=%d %s\n", cr.uid, errno, strerror(errno));
295 close(s);
296 return;
297 }
298
299 r = TEMP_FAILURE_RETRY(recv(s, &msg, sizeof(msg), MSG_DONTWAIT));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800300 if(r != sizeof(prop_msg)) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800301 ERROR("sys_prop: mis-match msg size received: %d expected: %zu errno: %d\n",
Mike Lockwoodd18678f2011-07-01 14:48:50 -0400302 r, sizeof(prop_msg), errno);
Brad Fitzpatrick9f1e0e32011-03-30 12:39:56 -0700303 close(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800304 return;
305 }
306
307 switch(msg.cmd) {
308 case PROP_MSG_SETPROP:
309 msg.name[PROP_NAME_MAX-1] = 0;
310 msg.value[PROP_VALUE_MAX-1] = 0;
311
Nick Kralevich69463612013-09-13 17:21:28 -0700312 if (!is_legal_property_name(msg.name, strlen(msg.name))) {
313 ERROR("sys_prop: illegal property name. Got: \"%s\"\n", msg.name);
314 close(s);
315 return;
316 }
317
rpcraig63207cd2012-08-09 10:05:49 -0400318 getpeercon(s, &source_ctx);
rpcraig63207cd2012-08-09 10:05:49 -0400319
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800320 if(memcmp(msg.name,"ctl.",4) == 0) {
Brad Fitzpatrick71ead182011-04-01 08:24:13 -0700321 // Keep the old close-socket-early behavior when handling
322 // ctl.* properties.
323 close(s);
Nick Kralevich528c13e2014-06-17 22:23:54 -0700324 if (check_control_mac_perms(msg.value, source_ctx)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800325 handle_control_message((char*) msg.name + 4, (char*) msg.value);
326 } else {
Wink Savillecfa0d842010-10-03 13:30:11 -0700327 ERROR("sys_prop: Unable to %s service ctl [%s] uid:%d gid:%d pid:%d\n",
328 msg.name + 4, msg.value, cr.uid, cr.gid, cr.pid);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800329 }
330 } else {
Nick Kralevich528c13e2014-06-17 22:23:54 -0700331 if (check_perms(msg.name, source_ctx)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800332 property_set((char*) msg.name, (char*) msg.value);
333 } else {
334 ERROR("sys_prop: permission denied uid:%d name:%s\n",
335 cr.uid, msg.name);
336 }
Brad Fitzpatrick71ead182011-04-01 08:24:13 -0700337
338 // Note: bionic's property client code assumes that the
339 // property server will not close the socket until *AFTER*
340 // the property is written to memory.
341 close(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800342 }
rpcraig63207cd2012-08-09 10:05:49 -0400343 freecon(source_ctx);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800344 break;
345
346 default:
Brad Fitzpatrick71ead182011-04-01 08:24:13 -0700347 close(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800348 break;
349 }
350}
351
Nick Kralevich28406472013-01-22 12:46:09 -0800352void get_property_workspace(int *fd, int *sz)
353{
354 *fd = pa_workspace.fd;
355 *sz = pa_workspace.size;
356}
357
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800358static void load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800359
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800360/*
361 * Filter is used to decide which properties to load: NULL loads all keys,
362 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
363 */
364static void load_properties(char *data, const char *filter)
365{
366 char *key, *value, *eol, *sol, *tmp, *fn;
367 size_t flen = 0;
368
369 if (filter) {
370 flen = strlen(filter);
371 }
372
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800373 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800374 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800375 key = sol;
376 *eol++ = 0;
377 sol = eol;
378
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800379 while (isspace(*key)) key++;
380 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800381
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800382 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800383 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800384
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800385 if (!strncmp(key, "import ", 7) && flen == 0) {
386 fn = key + 7;
387 while (isspace(*fn)) fn++;
388
389 key = strchr(fn, ' ');
390 if (key) {
391 *key++ = 0;
392 while (isspace(*key)) key++;
393 }
394
395 load_properties_from_file(fn, key);
396
397 } else {
398 value = strchr(key, '=');
399 if (!value) continue;
400 *value++ = 0;
401
402 tmp = value - 2;
403 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
404
405 while (isspace(*value)) value++;
406
407 if (flen > 0) {
408 if (filter[flen - 1] == '*') {
409 if (strncmp(key, filter, flen - 1)) continue;
410 } else {
411 if (strcmp(key, filter)) continue;
412 }
413 }
414
415 property_set(key, value);
416 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800417 }
418}
419
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800420/*
421 * Filter is used to decide which properties to load: NULL loads all keys,
422 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
423 */
424static void load_properties_from_file(const char *fn, const char *filter)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800425{
426 char *data;
427 unsigned sz;
428
429 data = read_file(fn, &sz);
430
431 if(data != 0) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800432 load_properties(data, filter);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800433 free(data);
434 }
435}
436
437static void load_persistent_properties()
438{
439 DIR* dir = opendir(PERSISTENT_PROPERTY_DIR);
Yi-wei Zhaoe41bc312012-10-23 21:09:56 +0800440 int dir_fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800441 struct dirent* entry;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800442 char value[PROP_VALUE_MAX];
443 int fd, length;
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700444 struct stat sb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800445
446 if (dir) {
Yi-wei Zhaoe41bc312012-10-23 21:09:56 +0800447 dir_fd = dirfd(dir);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800448 while ((entry = readdir(dir)) != NULL) {
Mike Lockwoodb3779552009-05-08 14:27:42 -0400449 if (strncmp("persist.", entry->d_name, strlen("persist.")))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800450 continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800451 if (entry->d_type != DT_REG)
452 continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800453 /* open the file and read the property value */
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700454 fd = openat(dir_fd, entry->d_name, O_RDONLY | O_NOFOLLOW);
455 if (fd < 0) {
456 ERROR("Unable to open persistent property file \"%s\" errno: %d\n",
457 entry->d_name, errno);
458 continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800459 }
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700460 if (fstat(fd, &sb) < 0) {
461 ERROR("fstat on property file \"%s\" failed errno: %d\n", entry->d_name, errno);
462 close(fd);
463 continue;
464 }
465
466 // File must not be accessible to others, be owned by root/root, and
467 // not be a hard link to any other file.
468 if (((sb.st_mode & (S_IRWXG | S_IRWXO)) != 0)
469 || (sb.st_uid != 0)
470 || (sb.st_gid != 0)
471 || (sb.st_nlink != 1)) {
Mark Salyzyn0aff05e2014-03-17 08:38:37 -0700472 ERROR("skipping insecure property file %s (uid=%u gid=%u nlink=%d mode=%o)\n",
473 entry->d_name, (unsigned int)sb.st_uid, (unsigned int)sb.st_gid,
474 sb.st_nlink, sb.st_mode);
Nick Kralevich7ecfe6a2012-10-02 14:59:59 -0700475 close(fd);
476 continue;
477 }
478
479 length = read(fd, value, sizeof(value) - 1);
480 if (length >= 0) {
481 value[length] = 0;
482 property_set(entry->d_name, value);
483 } else {
484 ERROR("Unable to read persistent property file %s errno: %d\n",
485 entry->d_name, errno);
486 }
487 close(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800488 }
489 closedir(dir);
490 } else {
491 ERROR("Unable to open persistent property directory %s errno: %d\n", PERSISTENT_PROPERTY_DIR, errno);
492 }
Tammo Spalink3dfe6c62009-08-26 10:13:20 +0800493
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800494 persistent_properties_loaded = 1;
495}
496
Dima Zavin88861122011-12-19 11:21:32 -0800497void property_init(void)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800498{
499 init_property_area();
Dima Zavin88861122011-12-19 11:21:32 -0800500}
501
502void property_load_boot_defaults(void)
503{
Andrew Boie3899f522012-10-12 15:23:40 -0700504 load_properties_from_file(PROP_PATH_RAMDISK_DEFAULT, NULL);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800505}
506
Colin Cross3294bbb2010-04-19 17:11:33 -0700507int properties_inited(void)
508{
509 return property_area_inited;
510}
511
Nick Kralevich32b90232012-09-19 11:15:24 -0700512static void load_override_properties() {
513#ifdef ALLOW_LOCAL_PROP_OVERRIDE
Colin Cross2deedfe2013-01-28 17:13:35 -0800514 char debuggable[PROP_VALUE_MAX];
515 int ret;
516
517 ret = property_get("ro.debuggable", debuggable);
518 if (ret && (strcmp(debuggable, "1") == 0)) {
Andrew Boie3899f522012-10-12 15:23:40 -0700519 load_properties_from_file(PROP_PATH_LOCAL_OVERRIDE, NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700520 }
521#endif /* ALLOW_LOCAL_PROP_OVERRIDE */
522}
523
524
Ken Sumrallc5c51032011-03-08 17:01:29 -0800525/* When booting an encrypted system, /data is not mounted when the
526 * property service is started, so any properties stored there are
527 * not loaded. Vold triggers init to load these properties once it
528 * has mounted /data.
529 */
530void load_persist_props(void)
531{
Nick Kralevich32b90232012-09-19 11:15:24 -0700532 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800533 /* Read persistent properties after all default values have been loaded. */
534 load_persistent_properties();
535}
536
Riley Andrewse4b7b292014-06-16 15:06:21 -0700537void load_all_props(void)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800538{
Andrew Boie3899f522012-10-12 15:23:40 -0700539 load_properties_from_file(PROP_PATH_SYSTEM_BUILD, NULL);
540 load_properties_from_file(PROP_PATH_SYSTEM_DEFAULT, NULL);
Daniel Rosenbergb9512222014-11-10 17:01:33 -0800541 load_properties_from_file(PROP_PATH_VENDOR_BUILD, NULL);
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800542 load_properties_from_file(PROP_PATH_FACTORY, "ro.*");
543
Nick Kralevich32b90232012-09-19 11:15:24 -0700544 load_override_properties();
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800545
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800546 /* Read persistent properties after all default values have been loaded. */
547 load_persistent_properties();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700548}
549
550void start_property_service(void)
551{
552 int fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800553
Stephen Smalley8348d272013-05-13 12:37:04 -0400554 fd = create_socket(PROP_SERVICE_NAME, SOCK_STREAM, 0666, 0, 0, NULL);
Colin Crossd11beb22010-04-13 19:33:37 -0700555 if(fd < 0) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800556 fcntl(fd, F_SETFD, FD_CLOEXEC);
557 fcntl(fd, F_SETFL, O_NONBLOCK);
558
559 listen(fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700560 property_set_fd = fd;
561}
562
563int get_property_set_fd()
564{
565 return property_set_fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800566}