blob: 223d34e8a4d07182d22d8f5f9527bd0fd956c6e8 [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
Tom Cherry3f5eaae52017-04-06 16:30:22 -070017#include "property_service.h"
18
19#include <ctype.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070020#include <errno.h>
21#include <fcntl.h>
Keun-young Park7d320262017-02-17 17:48:56 -080022#include <inttypes.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070023#include <limits.h>
24#include <netinet/in.h>
25#include <stdarg.h>
Tom Cherryf57c0bf2017-04-07 13:46:21 -070026#include <stddef.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027#include <stdio.h>
28#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080029#include <string.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070030#include <sys/mman.h>
JP Abgrall4515d812014-01-31 14:37:07 -080031#include <sys/poll.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070032#include <sys/select.h>
33#include <sys/types.h>
34#include <sys/un.h>
35#include <unistd.h>
Elliott Hughes81399e12015-03-10 08:39:45 -070036
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080037#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
38#include <sys/_system_properties.h>
39
Tom Cherry3f5eaae52017-04-06 16:30:22 -070040#include <memory>
Tom Marshall62696902017-06-09 18:29:23 +000041#include <queue>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070042#include <vector>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043
Tom Cherryede0d532017-07-06 14:20:11 -070044#include <android-base/chrono_utils.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080045#include <android-base/file.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070046#include <android-base/logging.h>
Jaekyun Seok0cf3a072017-04-24 18:52:54 +090047#include <android-base/properties.h>
Tom Cherrya84e14d2017-09-05 12:38:30 -070048#include <android-base/stringprintf.h>
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000049#include <android-base/strings.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070050#include <bootimg.h>
51#include <fs_mgr.h>
52#include <selinux/android.h>
53#include <selinux/label.h>
54#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070055
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070057#include "persistent_properties.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070058#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059
Tom Cherry1cf8d692017-10-10 13:35:01 -070060using android::base::StartsWith;
Tom Cherrya84e14d2017-09-05 12:38:30 -070061using android::base::StringPrintf;
Tom Cherryede0d532017-07-06 14:20:11 -070062using android::base::Timer;
63
Andres Moralesdb5f5d42015-05-08 08:30:33 -070064#define RECOVERY_MOUNT_POINT "/recovery"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065
Tom Cherry81f5d3e2017-06-22 12:53:17 -070066namespace android {
67namespace init {
68
Tom Cherry16fad422017-08-04 15:59:03 -070069static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070
Colin Crossd11beb22010-04-13 19:33:37 -070071static int property_set_fd = -1;
72
Tom Cherry0c8d6d22017-08-10 12:22:44 -070073static struct selabel_handle* sehandle_prop;
74
Elliott Hughesda40c002015-03-27 23:20:44 -070075void property_init() {
Elliott Hughesda40c002015-03-27 23:20:44 -070076 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -070077 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -070078 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079}
80
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000081static bool check_mac_perms(const std::string& name, char* sctx, struct ucred* cr) {
82
83 if (!sctx) {
84 return false;
85 }
86
87 if (!sehandle_prop) {
88 return false;
89 }
90
91 char* tctx = nullptr;
92 if (selabel_lookup(sehandle_prop, &tctx, name.c_str(), 1) != 0) {
93 return false;
94 }
95
William Robertsd7aea442015-10-01 16:03:47 -070096 property_audit_data audit_data;
rpcraig63207cd2012-08-09 10:05:49 -040097
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000098 audit_data.name = name.c_str();
William Robertsd7aea442015-10-01 16:03:47 -070099 audit_data.cr = cr;
100
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000101 bool has_access = (selinux_check_access(sctx, tctx, "property_service", "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400102
103 freecon(tctx);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000104 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400105}
106
William Robertsd7aea442015-10-01 16:03:47 -0700107static int check_control_mac_perms(const char *name, char *sctx, struct ucred *cr)
rpcraig63207cd2012-08-09 10:05:49 -0400108{
rpcraig63207cd2012-08-09 10:05:49 -0400109 /*
110 * Create a name prefix out of ctl.<service name>
111 * The new prefix allows the use of the existing
112 * property service backend labeling while avoiding
113 * mislabels based on true property prefixes.
114 */
115 char ctl_name[PROP_VALUE_MAX+4];
116 int ret = snprintf(ctl_name, sizeof(ctl_name), "ctl.%s", name);
117
118 if (ret < 0 || (size_t) ret >= sizeof(ctl_name))
119 return 0;
120
William Robertsd7aea442015-10-01 16:03:47 -0700121 return check_mac_perms(ctl_name, sctx, cr);
rpcraig63207cd2012-08-09 10:05:49 -0400122}
123
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000124bool is_legal_property_name(const std::string& name) {
Iliyan Malchevf6554802016-09-19 20:58:20 -0700125 size_t namelen = name.size();
126
Nick Kralevich69463612013-09-13 17:21:28 -0700127 if (namelen < 1) return false;
128 if (name[0] == '.') return false;
129 if (name[namelen - 1] == '.') return false;
130
Tom Cherry13693792017-05-30 13:45:28 -0700131 /* Only allow alphanumeric, plus '.', '-', '@', ':', or '_' */
Nick Kralevich69463612013-09-13 17:21:28 -0700132 /* Don't allow ".." to appear in a property name */
Iliyan Malchevf6554802016-09-19 20:58:20 -0700133 for (size_t i = 0; i < namelen; i++) {
Nick Kralevich69463612013-09-13 17:21:28 -0700134 if (name[i] == '.') {
Nick Kralevichc2c5a242013-09-16 11:30:48 -0700135 // i=0 is guaranteed to never have a dot. See above.
136 if (name[i-1] == '.') return false;
Nick Kralevich69463612013-09-13 17:21:28 -0700137 continue;
138 }
Tom Cherry13693792017-05-30 13:45:28 -0700139 if (name[i] == '_' || name[i] == '-' || name[i] == '@' || name[i] == ':') continue;
Nick Kralevich69463612013-09-13 17:21:28 -0700140 if (name[i] >= 'a' && name[i] <= 'z') continue;
141 if (name[i] >= 'A' && name[i] <= 'Z') continue;
142 if (name[i] >= '0' && name[i] <= '9') continue;
143 return false;
144 }
145
146 return true;
147}
148
Tom Marshall62696902017-06-09 18:29:23 +0000149static uint32_t PropertySetImpl(const std::string& name, const std::string& value) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000150 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800151
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000152 if (!is_legal_property_name(name)) {
153 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: bad name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000154 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000155 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000156
Tom Cherry1cf8d692017-10-10 13:35:01 -0700157 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000158 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
159 << "value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000160 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000161 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000163 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000164 if (pi != nullptr) {
165 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700166 if (StartsWith(name, "ro.")) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000167 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
168 << "property already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000169 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000170 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800171
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000172 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800173 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000174 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700175 if (rc < 0) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000176 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
177 << "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000178 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200179 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800180 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000181
Elliott Hughes4f915812016-12-05 13:12:48 -0800182 // Don't write properties to disk until after we have read all default
183 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700184 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700185 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800186 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700187 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000188 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800189}
190
Tom Marshall62696902017-06-09 18:29:23 +0000191typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
192
193struct PropertyChildInfo {
194 pid_t pid;
195 PropertyAsyncFunc func;
196 std::string name;
197 std::string value;
198};
199
200static std::queue<PropertyChildInfo> property_children;
201
202static void PropertyChildLaunch() {
203 auto& info = property_children.front();
204 pid_t pid = fork();
205 if (pid < 0) {
206 LOG(ERROR) << "Failed to fork for property_set_async";
207 while (!property_children.empty()) {
208 property_children.pop();
209 }
210 return;
211 }
212 if (pid != 0) {
213 info.pid = pid;
214 } else {
215 if (info.func(info.name, info.value) != 0) {
216 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
217 << "\") failed";
218 }
Tom Cherry4a679452017-09-26 16:30:03 -0700219 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000220 }
221}
222
223bool PropertyChildReap(pid_t pid) {
224 if (property_children.empty()) {
225 return false;
226 }
227 auto& info = property_children.front();
228 if (info.pid != pid) {
229 return false;
230 }
231 if (PropertySetImpl(info.name, info.value) != PROP_SUCCESS) {
232 LOG(ERROR) << "Failed to set async property " << info.name;
233 }
234 property_children.pop();
235 if (!property_children.empty()) {
236 PropertyChildLaunch();
237 }
238 return true;
239}
240
241static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
242 PropertyAsyncFunc func) {
243 if (value.empty()) {
244 return PropertySetImpl(name, value);
245 }
246
247 PropertyChildInfo info;
248 info.func = func;
249 info.name = name;
250 info.value = value;
251 property_children.push(info);
252 if (property_children.size() == 1) {
253 PropertyChildLaunch();
254 }
255 return PROP_SUCCESS;
256}
257
258static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
259 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
260}
261
262uint32_t property_set(const std::string& name, const std::string& value) {
263 if (name == "selinux.restorecon_recursive") {
264 return PropertySetAsync(name, value, RestoreconRecursiveAsync);
265 }
266
267 return PropertySetImpl(name, value);
268}
269
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000270class SocketConnection {
271 public:
272 SocketConnection(int socket, const struct ucred& cred)
273 : socket_(socket), cred_(cred) {}
274
275 ~SocketConnection() {
276 close(socket_);
277 }
278
279 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
280 return RecvFully(value, sizeof(*value), timeout_ms);
281 }
282
283 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
284 return RecvFully(chars, size, timeout_ms);
285 }
286
287 bool RecvString(std::string* value, uint32_t* timeout_ms) {
288 uint32_t len = 0;
289 if (!RecvUint32(&len, timeout_ms)) {
290 return false;
291 }
292
293 if (len == 0) {
294 *value = "";
295 return true;
296 }
297
Elliott Hughesb005d902017-02-22 14:54:15 -0800298 // http://b/35166374: don't allow init to make arbitrarily large allocations.
299 if (len > 0xffff) {
300 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
301 errno = ENOMEM;
302 return false;
303 }
304
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000305 std::vector<char> chars(len);
306 if (!RecvChars(&chars[0], len, timeout_ms)) {
307 return false;
308 }
309
310 *value = std::string(&chars[0], len);
311 return true;
312 }
313
314 bool SendUint32(uint32_t value) {
315 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
316 return result == sizeof(value);
317 }
318
319 int socket() {
320 return socket_;
321 }
322
323 const struct ucred& cred() {
324 return cred_;
325 }
326
327 private:
328 bool PollIn(uint32_t* timeout_ms) {
329 struct pollfd ufds[1];
330 ufds[0].fd = socket_;
331 ufds[0].events = POLLIN;
332 ufds[0].revents = 0;
333 while (*timeout_ms > 0) {
334 Timer timer;
335 int nr = poll(ufds, 1, *timeout_ms);
Tom Cherryede0d532017-07-06 14:20:11 -0700336 uint64_t millis = timer.duration().count();
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000337 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
338
339 if (nr > 0) {
340 return true;
341 }
342
343 if (nr == 0) {
344 // Timeout
345 break;
346 }
347
348 if (nr < 0 && errno != EINTR) {
349 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid << " to send property message";
350 return false;
351 } else { // errno == EINTR
352 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
353 // to avoid slowing init down by causing EINTR with under millisecond timeout.
354 if (*timeout_ms > 0) {
355 --(*timeout_ms);
356 }
357 }
358 }
359
360 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid << " to send property message.";
361 return false;
362 }
363
364 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
365 size_t bytes_left = size;
366 char* data = static_cast<char*>(data_ptr);
367 while (*timeout_ms > 0 && bytes_left > 0) {
368 if (!PollIn(timeout_ms)) {
369 return false;
370 }
371
372 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
373 if (result <= 0) {
374 return false;
375 }
376
377 bytes_left -= result;
378 data += result;
379 }
380
381 return bytes_left == 0;
382 }
383
384 int socket_;
385 struct ucred cred_;
386
387 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
388};
389
390static void handle_property_set(SocketConnection& socket,
391 const std::string& name,
392 const std::string& value,
393 bool legacy_protocol) {
394 const char* cmd_name = legacy_protocol ? "PROP_MSG_SETPROP" : "PROP_MSG_SETPROP2";
395 if (!is_legal_property_name(name)) {
396 LOG(ERROR) << "sys_prop(" << cmd_name << "): illegal property name \"" << name << "\"";
397 socket.SendUint32(PROP_ERROR_INVALID_NAME);
398 return;
399 }
400
401 struct ucred cr = socket.cred();
402 char* source_ctx = nullptr;
403 getpeercon(socket.socket(), &source_ctx);
404
Tom Cherry1cf8d692017-10-10 13:35:01 -0700405 if (StartsWith(name, "ctl.")) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000406 if (check_control_mac_perms(value.c_str(), source_ctx, &cr)) {
407 handle_control_message(name.c_str() + 4, value.c_str());
408 if (!legacy_protocol) {
409 socket.SendUint32(PROP_SUCCESS);
410 }
411 } else {
412 LOG(ERROR) << "sys_prop(" << cmd_name << "): Unable to " << (name.c_str() + 4)
413 << " service ctl [" << value << "]"
414 << " uid:" << cr.uid
415 << " gid:" << cr.gid
416 << " pid:" << cr.pid;
417 if (!legacy_protocol) {
418 socket.SendUint32(PROP_ERROR_HANDLE_CONTROL_MESSAGE);
419 }
420 }
421 } else {
422 if (check_mac_perms(name, source_ctx, &cr)) {
Tom Cherrya84e14d2017-09-05 12:38:30 -0700423 // sys.powerctl is a special property that is used to make the device reboot. We want to log
424 // any process that sets this property to be able to accurately blame the cause of a shutdown.
425 if (name == "sys.powerctl") {
426 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
427 std::string process_cmdline;
428 std::string process_log_string;
429 if (android::base::ReadFileToString(cmdline_path, &process_cmdline)) {
430 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process path.
431 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
432 }
433 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
434 << process_log_string;
435 }
436
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000437 uint32_t result = property_set(name, value);
438 if (!legacy_protocol) {
439 socket.SendUint32(result);
440 }
441 } else {
442 LOG(ERROR) << "sys_prop(" << cmd_name << "): permission denied uid:" << cr.uid << " name:" << name;
443 if (!legacy_protocol) {
444 socket.SendUint32(PROP_ERROR_PERMISSION_DENIED);
445 }
446 }
447 }
448
449 freecon(source_ctx);
450}
451
452static void handle_property_set_fd() {
453 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800454
Robert Sesekca2da602017-01-25 08:08:51 -0500455 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700456 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800457 return;
458 }
459
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700460 struct ucred cr;
461 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
463 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800464 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800465 return;
466 }
467
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000468 SocketConnection socket(s, cr);
469 uint32_t timeout_ms = kDefaultSocketTimeout;
470
471 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000472 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
473 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
474 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800475 return;
476 }
477
Elliott Hughesb005d902017-02-22 14:54:15 -0800478 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000479 case PROP_MSG_SETPROP: {
480 char prop_name[PROP_NAME_MAX];
481 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800482
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000483 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
484 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
485 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
486 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700487 }
488
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000489 prop_name[PROP_NAME_MAX-1] = 0;
490 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400491
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000492 handle_property_set(socket, prop_value, prop_value, true);
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800493 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000494 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000495
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000496 case PROP_MSG_SETPROP2: {
497 std::string name;
498 std::string value;
499 if (!socket.RecvString(&name, &timeout_ms) ||
500 !socket.RecvString(&value, &timeout_ms)) {
501 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
502 socket.SendUint32(PROP_ERROR_READ_DATA);
503 return;
504 }
505
506 handle_property_set(socket, name, value, false);
507 break;
508 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800509
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800510 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800511 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000512 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800513 break;
514 }
515}
516
Hung-ying Tyan33463382017-05-25 19:18:17 +0800517static void load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800518
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800519/*
520 * Filter is used to decide which properties to load: NULL loads all keys,
521 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
522 */
523static void load_properties(char *data, const char *filter)
524{
525 char *key, *value, *eol, *sol, *tmp, *fn;
526 size_t flen = 0;
527
528 if (filter) {
529 flen = strlen(filter);
530 }
531
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800532 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800533 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800534 key = sol;
535 *eol++ = 0;
536 sol = eol;
537
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800538 while (isspace(*key)) key++;
539 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800540
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800541 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800542 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800543
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800544 if (!strncmp(key, "import ", 7) && flen == 0) {
545 fn = key + 7;
546 while (isspace(*fn)) fn++;
547
548 key = strchr(fn, ' ');
549 if (key) {
550 *key++ = 0;
551 while (isspace(*key)) key++;
552 }
553
554 load_properties_from_file(fn, key);
555
556 } else {
557 value = strchr(key, '=');
558 if (!value) continue;
559 *value++ = 0;
560
561 tmp = value - 2;
562 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
563
564 while (isspace(*value)) value++;
565
566 if (flen > 0) {
567 if (filter[flen - 1] == '*') {
568 if (strncmp(key, filter, flen - 1)) continue;
569 } else {
570 if (strcmp(key, filter)) continue;
571 }
572 }
573
574 property_set(key, value);
575 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800576 }
577}
578
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700579// Filter is used to decide which properties to load: NULL loads all keys,
580// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyan33463382017-05-25 19:18:17 +0800581static void load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700582 Timer t;
Tom Cherry11a3aee2017-08-03 12:54:07 -0700583 auto file_contents = ReadFile(filename);
584 if (!file_contents) {
585 PLOG(WARNING) << "Couldn't load property file '" << filename
586 << "': " << file_contents.error();
Hung-ying Tyan33463382017-05-25 19:18:17 +0800587 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800588 }
Tom Cherry11a3aee2017-08-03 12:54:07 -0700589 file_contents->push_back('\n');
590 load_properties(file_contents->data(), filter);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000591 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800592}
593
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900594// persist.sys.usb.config values can't be combined on build-time when property
595// files are split into each partition.
596// So we need to apply the same rule of build/make/tools/post_process_props.py
597// on runtime.
598static void update_sys_usb_config() {
599 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
600 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
601 if (config.empty()) {
602 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
603 } else if (is_debuggable && config.find("adb") == std::string::npos &&
604 config.length() + 4 < PROP_VALUE_MAX) {
605 config.append(",adb");
606 property_set("persist.sys.usb.config", config);
607 }
608}
609
Elliott Hughesda40c002015-03-27 23:20:44 -0700610void property_load_boot_defaults() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800611 load_properties_from_file("/default.prop", NULL);
612 load_properties_from_file("/odm/default.prop", NULL);
613 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900614
615 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800616}
617
Nick Kralevich32b90232012-09-19 11:15:24 -0700618static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800619 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800620 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700621 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700622}
623
Ken Sumrallc5c51032011-03-08 17:01:29 -0800624/* When booting an encrypted system, /data is not mounted when the
625 * property service is started, so any properties stored there are
626 * not loaded. Vold triggers init to load these properties once it
627 * has mounted /data.
628 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700629void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700630 // Devices with FDE have load_persist_props called twice; the first time when the temporary
631 // /data partition is mounted and then again once /data is truly mounted. We do not want to
632 // read persistent properties from the temporary /data partition or mark persistent properties
633 // as having been loaded during the first call, so we return in that case.
634 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
635 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
636 if (crypto_state == "encrypted" && crypto_type == "block") {
637 static size_t num_calls = 0;
638 if (++num_calls == 1) return;
639 }
640
Nick Kralevich32b90232012-09-19 11:15:24 -0700641 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800642 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700643 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700644 for (const auto& persistent_property_record : persistent_properties.properties()) {
645 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700646 }
647 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800648 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800649}
650
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700651void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800652 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
653 fs_mgr_free_fstab);
654 if (!fstab) {
655 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700656 return;
657 }
658
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800659 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700660 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700661 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700662 return;
663 }
664
665 int fd = open(rec->blk_device, O_RDONLY);
666 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700667 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700668 return;
669 }
670
671 boot_img_hdr hdr;
672 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
673 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700674 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700675 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700676 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700677 }
678
679 close(fd);
680}
681
Paul Lawrence948410a2015-07-01 14:40:56 -0700682void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800683 load_properties_from_file("/system/build.prop", NULL);
684 load_properties_from_file("/odm/build.prop", NULL);
685 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800686 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700687 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700688}
689
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700690static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
691 property_audit_data* d = reinterpret_cast<property_audit_data*>(data);
692
693 if (!d || !d->name || !d->cr) {
694 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
695 return 0;
696 }
697
698 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
699 d->cr->gid);
700 return 0;
701}
702
Elliott Hughesda40c002015-03-27 23:20:44 -0700703void start_property_service() {
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700704 sehandle_prop = selinux_android_prop_context_handle();
705
706 selinux_callback cb;
707 cb.func_audit = SelinuxAuditCallback;
708 selinux_set_callback(SELINUX_CB_AUDIT, cb);
709
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000710 property_set("ro.property_service.version", "2");
711
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700712 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700713 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700714 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700715 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700716 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800717
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700718 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700719
Elliott Hughes929f4072015-04-24 21:13:44 -0700720 register_epoll_handler(property_set_fd, handle_property_set_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800721}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700722
723} // namespace init
724} // namespace android