blob: 8c592cb417ad5cbaa802cb9271616fd1c7dcfe3e [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>
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000048#include <android-base/strings.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070049#include <bootimg.h>
50#include <fs_mgr.h>
51#include <selinux/android.h>
52#include <selinux/label.h>
53#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070054
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070056#include "persistent_properties.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070057#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080058
Tom Cherryede0d532017-07-06 14:20:11 -070059using android::base::Timer;
60
Andres Moralesdb5f5d42015-05-08 08:30:33 -070061#define RECOVERY_MOUNT_POINT "/recovery"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062
Tom Cherry81f5d3e2017-06-22 12:53:17 -070063namespace android {
64namespace init {
65
Tom Cherry16fad422017-08-04 15:59:03 -070066static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080067
Colin Crossd11beb22010-04-13 19:33:37 -070068static int property_set_fd = -1;
69
Tom Cherry0c8d6d22017-08-10 12:22:44 -070070static struct selabel_handle* sehandle_prop;
71
Elliott Hughesda40c002015-03-27 23:20:44 -070072void property_init() {
Elliott Hughesda40c002015-03-27 23:20:44 -070073 if (__system_property_area_init()) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070074 LOG(ERROR) << "Failed to initialize property area";
Tom Cherry60361142015-12-01 17:16:53 -080075 exit(1);
Elliott Hughesda40c002015-03-27 23:20:44 -070076 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077}
78
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000079static bool check_mac_perms(const std::string& name, char* sctx, struct ucred* cr) {
80
81 if (!sctx) {
82 return false;
83 }
84
85 if (!sehandle_prop) {
86 return false;
87 }
88
89 char* tctx = nullptr;
90 if (selabel_lookup(sehandle_prop, &tctx, name.c_str(), 1) != 0) {
91 return false;
92 }
93
William Robertsd7aea442015-10-01 16:03:47 -070094 property_audit_data audit_data;
rpcraig63207cd2012-08-09 10:05:49 -040095
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000096 audit_data.name = name.c_str();
William Robertsd7aea442015-10-01 16:03:47 -070097 audit_data.cr = cr;
98
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000099 bool has_access = (selinux_check_access(sctx, tctx, "property_service", "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400100
101 freecon(tctx);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000102 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400103}
104
William Robertsd7aea442015-10-01 16:03:47 -0700105static int check_control_mac_perms(const char *name, char *sctx, struct ucred *cr)
rpcraig63207cd2012-08-09 10:05:49 -0400106{
rpcraig63207cd2012-08-09 10:05:49 -0400107 /*
108 * Create a name prefix out of ctl.<service name>
109 * The new prefix allows the use of the existing
110 * property service backend labeling while avoiding
111 * mislabels based on true property prefixes.
112 */
113 char ctl_name[PROP_VALUE_MAX+4];
114 int ret = snprintf(ctl_name, sizeof(ctl_name), "ctl.%s", name);
115
116 if (ret < 0 || (size_t) ret >= sizeof(ctl_name))
117 return 0;
118
William Robertsd7aea442015-10-01 16:03:47 -0700119 return check_mac_perms(ctl_name, sctx, cr);
rpcraig63207cd2012-08-09 10:05:49 -0400120}
121
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000122bool is_legal_property_name(const std::string& name) {
Iliyan Malchevf6554802016-09-19 20:58:20 -0700123 size_t namelen = name.size();
124
Nick Kralevich69463612013-09-13 17:21:28 -0700125 if (namelen < 1) return false;
126 if (name[0] == '.') return false;
127 if (name[namelen - 1] == '.') return false;
128
Tom Cherry13693792017-05-30 13:45:28 -0700129 /* Only allow alphanumeric, plus '.', '-', '@', ':', or '_' */
Nick Kralevich69463612013-09-13 17:21:28 -0700130 /* Don't allow ".." to appear in a property name */
Iliyan Malchevf6554802016-09-19 20:58:20 -0700131 for (size_t i = 0; i < namelen; i++) {
Nick Kralevich69463612013-09-13 17:21:28 -0700132 if (name[i] == '.') {
Nick Kralevichc2c5a242013-09-16 11:30:48 -0700133 // i=0 is guaranteed to never have a dot. See above.
134 if (name[i-1] == '.') return false;
Nick Kralevich69463612013-09-13 17:21:28 -0700135 continue;
136 }
Tom Cherry13693792017-05-30 13:45:28 -0700137 if (name[i] == '_' || name[i] == '-' || name[i] == '@' || name[i] == ':') continue;
Nick Kralevich69463612013-09-13 17:21:28 -0700138 if (name[i] >= 'a' && name[i] <= 'z') continue;
139 if (name[i] >= 'A' && name[i] <= 'Z') continue;
140 if (name[i] >= '0' && name[i] <= '9') continue;
141 return false;
142 }
143
144 return true;
145}
146
Tom Marshall62696902017-06-09 18:29:23 +0000147static uint32_t PropertySetImpl(const std::string& name, const std::string& value) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000148 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800149
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000150 if (!is_legal_property_name(name)) {
151 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: bad name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000152 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000153 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000154
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000155 if (valuelen >= PROP_VALUE_MAX) {
156 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
157 << "value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000158 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000159 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800160
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000161 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000162 if (pi != nullptr) {
163 // ro.* properties are actually "write-once".
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000164 if (android::base::StartsWith(name, "ro.")) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000165 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
166 << "property already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000167 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000168 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800169
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000170 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800171 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000172 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700173 if (rc < 0) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000174 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
175 << "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000176 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200177 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800178 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000179
Elliott Hughes4f915812016-12-05 13:12:48 -0800180 // Don't write properties to disk until after we have read all default
181 // properties to prevent them from being overwritten by default values.
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000182 if (persistent_properties_loaded && android::base::StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700183 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800184 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700185 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000186 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800187}
188
Tom Marshall62696902017-06-09 18:29:23 +0000189typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
190
191struct PropertyChildInfo {
192 pid_t pid;
193 PropertyAsyncFunc func;
194 std::string name;
195 std::string value;
196};
197
198static std::queue<PropertyChildInfo> property_children;
199
200static void PropertyChildLaunch() {
201 auto& info = property_children.front();
202 pid_t pid = fork();
203 if (pid < 0) {
204 LOG(ERROR) << "Failed to fork for property_set_async";
205 while (!property_children.empty()) {
206 property_children.pop();
207 }
208 return;
209 }
210 if (pid != 0) {
211 info.pid = pid;
212 } else {
213 if (info.func(info.name, info.value) != 0) {
214 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
215 << "\") failed";
216 }
217 exit(0);
218 }
219}
220
221bool PropertyChildReap(pid_t pid) {
222 if (property_children.empty()) {
223 return false;
224 }
225 auto& info = property_children.front();
226 if (info.pid != pid) {
227 return false;
228 }
229 if (PropertySetImpl(info.name, info.value) != PROP_SUCCESS) {
230 LOG(ERROR) << "Failed to set async property " << info.name;
231 }
232 property_children.pop();
233 if (!property_children.empty()) {
234 PropertyChildLaunch();
235 }
236 return true;
237}
238
239static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
240 PropertyAsyncFunc func) {
241 if (value.empty()) {
242 return PropertySetImpl(name, value);
243 }
244
245 PropertyChildInfo info;
246 info.func = func;
247 info.name = name;
248 info.value = value;
249 property_children.push(info);
250 if (property_children.size() == 1) {
251 PropertyChildLaunch();
252 }
253 return PROP_SUCCESS;
254}
255
256static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
257 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
258}
259
260uint32_t property_set(const std::string& name, const std::string& value) {
261 if (name == "selinux.restorecon_recursive") {
262 return PropertySetAsync(name, value, RestoreconRecursiveAsync);
263 }
264
265 return PropertySetImpl(name, value);
266}
267
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000268class SocketConnection {
269 public:
270 SocketConnection(int socket, const struct ucred& cred)
271 : socket_(socket), cred_(cred) {}
272
273 ~SocketConnection() {
274 close(socket_);
275 }
276
277 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
278 return RecvFully(value, sizeof(*value), timeout_ms);
279 }
280
281 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
282 return RecvFully(chars, size, timeout_ms);
283 }
284
285 bool RecvString(std::string* value, uint32_t* timeout_ms) {
286 uint32_t len = 0;
287 if (!RecvUint32(&len, timeout_ms)) {
288 return false;
289 }
290
291 if (len == 0) {
292 *value = "";
293 return true;
294 }
295
Elliott Hughesb005d902017-02-22 14:54:15 -0800296 // http://b/35166374: don't allow init to make arbitrarily large allocations.
297 if (len > 0xffff) {
298 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
299 errno = ENOMEM;
300 return false;
301 }
302
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000303 std::vector<char> chars(len);
304 if (!RecvChars(&chars[0], len, timeout_ms)) {
305 return false;
306 }
307
308 *value = std::string(&chars[0], len);
309 return true;
310 }
311
312 bool SendUint32(uint32_t value) {
313 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
314 return result == sizeof(value);
315 }
316
317 int socket() {
318 return socket_;
319 }
320
321 const struct ucred& cred() {
322 return cred_;
323 }
324
325 private:
326 bool PollIn(uint32_t* timeout_ms) {
327 struct pollfd ufds[1];
328 ufds[0].fd = socket_;
329 ufds[0].events = POLLIN;
330 ufds[0].revents = 0;
331 while (*timeout_ms > 0) {
332 Timer timer;
333 int nr = poll(ufds, 1, *timeout_ms);
Tom Cherryede0d532017-07-06 14:20:11 -0700334 uint64_t millis = timer.duration().count();
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000335 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
336
337 if (nr > 0) {
338 return true;
339 }
340
341 if (nr == 0) {
342 // Timeout
343 break;
344 }
345
346 if (nr < 0 && errno != EINTR) {
347 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid << " to send property message";
348 return false;
349 } else { // errno == EINTR
350 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
351 // to avoid slowing init down by causing EINTR with under millisecond timeout.
352 if (*timeout_ms > 0) {
353 --(*timeout_ms);
354 }
355 }
356 }
357
358 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid << " to send property message.";
359 return false;
360 }
361
362 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
363 size_t bytes_left = size;
364 char* data = static_cast<char*>(data_ptr);
365 while (*timeout_ms > 0 && bytes_left > 0) {
366 if (!PollIn(timeout_ms)) {
367 return false;
368 }
369
370 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
371 if (result <= 0) {
372 return false;
373 }
374
375 bytes_left -= result;
376 data += result;
377 }
378
379 return bytes_left == 0;
380 }
381
382 int socket_;
383 struct ucred cred_;
384
385 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
386};
387
388static void handle_property_set(SocketConnection& socket,
389 const std::string& name,
390 const std::string& value,
391 bool legacy_protocol) {
392 const char* cmd_name = legacy_protocol ? "PROP_MSG_SETPROP" : "PROP_MSG_SETPROP2";
393 if (!is_legal_property_name(name)) {
394 LOG(ERROR) << "sys_prop(" << cmd_name << "): illegal property name \"" << name << "\"";
395 socket.SendUint32(PROP_ERROR_INVALID_NAME);
396 return;
397 }
398
399 struct ucred cr = socket.cred();
400 char* source_ctx = nullptr;
401 getpeercon(socket.socket(), &source_ctx);
402
403 if (android::base::StartsWith(name, "ctl.")) {
404 if (check_control_mac_perms(value.c_str(), source_ctx, &cr)) {
405 handle_control_message(name.c_str() + 4, value.c_str());
406 if (!legacy_protocol) {
407 socket.SendUint32(PROP_SUCCESS);
408 }
409 } else {
410 LOG(ERROR) << "sys_prop(" << cmd_name << "): Unable to " << (name.c_str() + 4)
411 << " service ctl [" << value << "]"
412 << " uid:" << cr.uid
413 << " gid:" << cr.gid
414 << " pid:" << cr.pid;
415 if (!legacy_protocol) {
416 socket.SendUint32(PROP_ERROR_HANDLE_CONTROL_MESSAGE);
417 }
418 }
419 } else {
420 if (check_mac_perms(name, source_ctx, &cr)) {
421 uint32_t result = property_set(name, value);
422 if (!legacy_protocol) {
423 socket.SendUint32(result);
424 }
425 } else {
426 LOG(ERROR) << "sys_prop(" << cmd_name << "): permission denied uid:" << cr.uid << " name:" << name;
427 if (!legacy_protocol) {
428 socket.SendUint32(PROP_ERROR_PERMISSION_DENIED);
429 }
430 }
431 }
432
433 freecon(source_ctx);
434}
435
436static void handle_property_set_fd() {
437 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800438
Robert Sesekca2da602017-01-25 08:08:51 -0500439 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700440 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800441 return;
442 }
443
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700444 struct ucred cr;
445 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800446 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
447 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800448 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800449 return;
450 }
451
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000452 SocketConnection socket(s, cr);
453 uint32_t timeout_ms = kDefaultSocketTimeout;
454
455 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000456 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
457 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
458 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800459 return;
460 }
461
Elliott Hughesb005d902017-02-22 14:54:15 -0800462 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000463 case PROP_MSG_SETPROP: {
464 char prop_name[PROP_NAME_MAX];
465 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800466
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000467 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
468 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
469 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
470 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700471 }
472
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000473 prop_name[PROP_NAME_MAX-1] = 0;
474 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400475
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000476 handle_property_set(socket, prop_value, prop_value, true);
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800477 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000478 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000479
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000480 case PROP_MSG_SETPROP2: {
481 std::string name;
482 std::string value;
483 if (!socket.RecvString(&name, &timeout_ms) ||
484 !socket.RecvString(&value, &timeout_ms)) {
485 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
486 socket.SendUint32(PROP_ERROR_READ_DATA);
487 return;
488 }
489
490 handle_property_set(socket, name, value, false);
491 break;
492 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800493
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800494 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800495 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000496 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800497 break;
498 }
499}
500
Hung-ying Tyan33463382017-05-25 19:18:17 +0800501static void load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800502
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800503/*
504 * Filter is used to decide which properties to load: NULL loads all keys,
505 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
506 */
507static void load_properties(char *data, const char *filter)
508{
509 char *key, *value, *eol, *sol, *tmp, *fn;
510 size_t flen = 0;
511
512 if (filter) {
513 flen = strlen(filter);
514 }
515
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800516 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800517 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800518 key = sol;
519 *eol++ = 0;
520 sol = eol;
521
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800522 while (isspace(*key)) key++;
523 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800524
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800525 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800526 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800527
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800528 if (!strncmp(key, "import ", 7) && flen == 0) {
529 fn = key + 7;
530 while (isspace(*fn)) fn++;
531
532 key = strchr(fn, ' ');
533 if (key) {
534 *key++ = 0;
535 while (isspace(*key)) key++;
536 }
537
538 load_properties_from_file(fn, key);
539
540 } else {
541 value = strchr(key, '=');
542 if (!value) continue;
543 *value++ = 0;
544
545 tmp = value - 2;
546 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
547
548 while (isspace(*value)) value++;
549
550 if (flen > 0) {
551 if (filter[flen - 1] == '*') {
552 if (strncmp(key, filter, flen - 1)) continue;
553 } else {
554 if (strcmp(key, filter)) continue;
555 }
556 }
557
558 property_set(key, value);
559 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800560 }
561}
562
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700563// Filter is used to decide which properties to load: NULL loads all keys,
564// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyan33463382017-05-25 19:18:17 +0800565static void load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700566 Timer t;
Tom Cherry11a3aee2017-08-03 12:54:07 -0700567 auto file_contents = ReadFile(filename);
568 if (!file_contents) {
569 PLOG(WARNING) << "Couldn't load property file '" << filename
570 << "': " << file_contents.error();
Hung-ying Tyan33463382017-05-25 19:18:17 +0800571 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800572 }
Tom Cherry11a3aee2017-08-03 12:54:07 -0700573 file_contents->push_back('\n');
574 load_properties(file_contents->data(), filter);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000575 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800576}
577
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900578// 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.
582static 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 Hughesda40c002015-03-27 23:20:44 -0700594void property_load_boot_defaults() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800595 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 Seok0cf3a072017-04-24 18:52:54 +0900598
599 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800600}
601
Nick Kralevich32b90232012-09-19 11:15:24 -0700602static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800603 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800604 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700605 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700606}
607
Ken Sumrallc5c51032011-03-08 17:01:29 -0800608/* 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 Hughesda40c002015-03-27 23:20:44 -0700613void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700614 // Devices with FDE have load_persist_props called twice; the first time when the temporary
615 // /data partition is mounted and then again once /data is truly mounted. We do not want to
616 // read persistent properties from the temporary /data partition or mark persistent properties
617 // as having been loaded during the first call, so we return in that case.
618 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
619 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
620 if (crypto_state == "encrypted" && crypto_type == "block") {
621 static size_t num_calls = 0;
622 if (++num_calls == 1) return;
623 }
624
Nick Kralevich32b90232012-09-19 11:15:24 -0700625 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800626 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700627 auto persistent_properties = LoadPersistentProperties();
628 for (const auto& [name, value] : persistent_properties) {
629 property_set(name, value);
630 }
631 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800632 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800633}
634
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700635void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800636 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
637 fs_mgr_free_fstab);
638 if (!fstab) {
639 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700640 return;
641 }
642
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800643 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700644 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700645 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700646 return;
647 }
648
649 int fd = open(rec->blk_device, O_RDONLY);
650 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700651 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700652 return;
653 }
654
655 boot_img_hdr hdr;
656 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
657 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700658 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700659 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700660 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700661 }
662
663 close(fd);
664}
665
Paul Lawrence948410a2015-07-01 14:40:56 -0700666void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800667 load_properties_from_file("/system/build.prop", NULL);
668 load_properties_from_file("/odm/build.prop", NULL);
669 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800670 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700671 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700672}
673
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700674static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
675 property_audit_data* d = reinterpret_cast<property_audit_data*>(data);
676
677 if (!d || !d->name || !d->cr) {
678 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
679 return 0;
680 }
681
682 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
683 d->cr->gid);
684 return 0;
685}
686
Elliott Hughesda40c002015-03-27 23:20:44 -0700687void start_property_service() {
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700688 sehandle_prop = selinux_android_prop_context_handle();
689
690 selinux_callback cb;
691 cb.func_audit = SelinuxAuditCallback;
692 selinux_set_callback(SELINUX_CB_AUDIT, cb);
693
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000694 property_set("ro.property_service.version", "2");
695
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700696 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700697 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700698 if (property_set_fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700699 PLOG(ERROR) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700700 exit(1);
701 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800702
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700703 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700704
Elliott Hughes929f4072015-04-24 21:13:44 -0700705 register_epoll_handler(property_set_fd, handle_property_set_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800706}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700707
708} // namespace init
709} // namespace android