blob: 338c05aec34a5a76ccb936cc7e7ef3be17ffa80d [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>
Tom Cherry8702dcb2017-10-13 16:20:19 -070036#include <wchar.h>
Elliott Hughes81399e12015-03-10 08:39:45 -070037
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080038#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
39#include <sys/_system_properties.h>
40
Tom Cherry3f5eaae52017-04-06 16:30:22 -070041#include <memory>
Tom Marshall62696902017-06-09 18:29:23 +000042#include <queue>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070043#include <vector>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080044
Tom Cherryede0d532017-07-06 14:20:11 -070045#include <android-base/chrono_utils.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080046#include <android-base/file.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070047#include <android-base/logging.h>
Jaekyun Seok0cf3a072017-04-24 18:52:54 +090048#include <android-base/properties.h>
Tom Cherrya84e14d2017-09-05 12:38:30 -070049#include <android-base/stringprintf.h>
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000050#include <android-base/strings.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070051#include <bootimg.h>
52#include <fs_mgr.h>
Tom Cherry2ae2f602017-12-14 01:58:17 +000053#include <property_info_parser/property_info_parser.h>
54#include <property_info_serializer/property_info_serializer.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070055#include <selinux/android.h>
56#include <selinux/label.h>
57#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070058
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070060#include "persistent_properties.h"
Tom Cherry927c5d52017-12-11 01:40:07 -080061#include "property_type.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070062#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063
Tom Cherry2ae2f602017-12-14 01:58:17 +000064using android::base::ReadFileToString;
65using android::base::Split;
Tom Cherry1cf8d692017-10-10 13:35:01 -070066using android::base::StartsWith;
Tom Cherrya84e14d2017-09-05 12:38:30 -070067using android::base::StringPrintf;
Tom Cherryede0d532017-07-06 14:20:11 -070068using android::base::Timer;
Tom Cherry2ae2f602017-12-14 01:58:17 +000069using android::base::Trim;
70using android::base::WriteStringToFile;
71using android::properties::BuildTrie;
Tom Cherry919458c2018-01-03 14:39:28 -080072using android::properties::ParsePropertyInfoFile;
Tom Cherry2ae2f602017-12-14 01:58:17 +000073using android::properties::PropertyInfoAreaFile;
74using android::properties::PropertyInfoEntry;
Tom Cherryede0d532017-07-06 14:20:11 -070075
Andres Moralesdb5f5d42015-05-08 08:30:33 -070076#define RECOVERY_MOUNT_POINT "/recovery"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077
Tom Cherry81f5d3e2017-06-22 12:53:17 -070078namespace android {
79namespace init {
80
Tom Cherry16fad422017-08-04 15:59:03 -070081static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080082
Colin Crossd11beb22010-04-13 19:33:37 -070083static int property_set_fd = -1;
84
Tom Cherry2ae2f602017-12-14 01:58:17 +000085static PropertyInfoAreaFile property_info_area;
86
Tom Cherry32228482018-01-18 16:14:25 -080087uint32_t InitPropertySet(const std::string& name, const std::string& value);
88
89uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet;
90
Tom Cherry2ae2f602017-12-14 01:58:17 +000091void CreateSerializedPropertyInfo();
Tom Cherryc3692b32017-08-10 12:22:44 -070092
Elliott Hughesda40c002015-03-27 23:20:44 -070093void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +000094 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
95 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -070096 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -070097 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -070098 }
Tom Cherry2ae2f602017-12-14 01:58:17 +000099 if (!property_info_area.LoadDefaultPath()) {
100 LOG(FATAL) << "Failed to load serialized property info file";
101 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102}
Tom Cherry927c5d52017-12-11 01:40:07 -0800103static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800104 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800105 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000106 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000107 }
108
William Robertsd7aea442015-10-01 16:03:47 -0700109 property_audit_data audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400110
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000111 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800112 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700113
Tom Cherry927c5d52017-12-11 01:40:07 -0800114 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
115 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400116
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000117 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400118}
119
Tom Marshall62696902017-06-09 18:29:23 +0000120static uint32_t PropertySetImpl(const std::string& name, const std::string& value) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000121 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800122
Tom Cherryde6bd502018-02-13 16:50:08 -0800123 if (!IsLegalPropertyName(name)) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000124 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: bad name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000125 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000126 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000127
Tom Cherry1cf8d692017-10-10 13:35:01 -0700128 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000129 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
130 << "value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000131 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000132 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800133
Tom Cherry8702dcb2017-10-13 16:20:19 -0700134 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
135 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
136 << "value not a UTF8 encoded string";
137 return PROP_ERROR_INVALID_VALUE;
138 }
139
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000140 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000141 if (pi != nullptr) {
142 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700143 if (StartsWith(name, "ro.")) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000144 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
145 << "property already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000146 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000147 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800148
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000149 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800150 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000151 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700152 if (rc < 0) {
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000153 LOG(ERROR) << "property_set(\"" << name << "\", \"" << value << "\") failed: "
154 << "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000155 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200156 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000158
Elliott Hughes4f915812016-12-05 13:12:48 -0800159 // Don't write properties to disk until after we have read all default
160 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700161 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700162 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800163 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700164 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000165 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800166}
167
Tom Marshall62696902017-06-09 18:29:23 +0000168typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
169
170struct PropertyChildInfo {
171 pid_t pid;
172 PropertyAsyncFunc func;
173 std::string name;
174 std::string value;
175};
176
177static std::queue<PropertyChildInfo> property_children;
178
179static void PropertyChildLaunch() {
180 auto& info = property_children.front();
181 pid_t pid = fork();
182 if (pid < 0) {
183 LOG(ERROR) << "Failed to fork for property_set_async";
184 while (!property_children.empty()) {
185 property_children.pop();
186 }
187 return;
188 }
189 if (pid != 0) {
190 info.pid = pid;
191 } else {
192 if (info.func(info.name, info.value) != 0) {
193 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
194 << "\") failed";
195 }
Tom Cherry4a679452017-09-26 16:30:03 -0700196 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000197 }
198}
199
200bool PropertyChildReap(pid_t pid) {
201 if (property_children.empty()) {
202 return false;
203 }
204 auto& info = property_children.front();
205 if (info.pid != pid) {
206 return false;
207 }
208 if (PropertySetImpl(info.name, info.value) != PROP_SUCCESS) {
209 LOG(ERROR) << "Failed to set async property " << info.name;
210 }
211 property_children.pop();
212 if (!property_children.empty()) {
213 PropertyChildLaunch();
214 }
215 return true;
216}
217
218static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
219 PropertyAsyncFunc func) {
220 if (value.empty()) {
221 return PropertySetImpl(name, value);
222 }
223
224 PropertyChildInfo info;
225 info.func = func;
226 info.name = name;
227 info.value = value;
228 property_children.push(info);
229 if (property_children.size() == 1) {
230 PropertyChildLaunch();
231 }
232 return PROP_SUCCESS;
233}
234
235static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
236 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
237}
238
Tom Cherry32228482018-01-18 16:14:25 -0800239uint32_t PropertySet(const std::string& name, const std::string& value) {
Tom Marshall62696902017-06-09 18:29:23 +0000240 if (name == "selinux.restorecon_recursive") {
241 return PropertySetAsync(name, value, RestoreconRecursiveAsync);
242 }
243
244 return PropertySetImpl(name, value);
245}
246
Tom Cherry32228482018-01-18 16:14:25 -0800247uint32_t InitPropertySet(const std::string& name, const std::string& value) {
248 if (StartsWith(name, "ctl.")) {
249 LOG(ERROR) << "Do not set ctl. properties from init; call the Service functions directly";
250 return PROP_ERROR_INVALID_NAME;
251 }
252
253 const char* type = nullptr;
254 property_info_area->GetPropertyInfo(name.c_str(), nullptr, &type);
255
256 if (type == nullptr || !CheckType(type, value)) {
257 LOG(ERROR) << "property_set: name: '" << name << "' type check failed, type: '"
258 << (type ?: "(null)") << "' value: '" << value << "'";
259 return PROP_ERROR_INVALID_VALUE;
260 }
261
262 return PropertySet(name, value);
263}
264
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000265class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800266 public:
267 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000268
Tom Cherry32228482018-01-18 16:14:25 -0800269 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000270
Tom Cherry32228482018-01-18 16:14:25 -0800271 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
272 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000273 }
274
Tom Cherry32228482018-01-18 16:14:25 -0800275 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
276 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000277 }
278
Tom Cherry32228482018-01-18 16:14:25 -0800279 bool RecvString(std::string* value, uint32_t* timeout_ms) {
280 uint32_t len = 0;
281 if (!RecvUint32(&len, timeout_ms)) {
282 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000283 }
Tom Cherry32228482018-01-18 16:14:25 -0800284
285 if (len == 0) {
286 *value = "";
287 return true;
288 }
289
290 // http://b/35166374: don't allow init to make arbitrarily large allocations.
291 if (len > 0xffff) {
292 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
293 errno = ENOMEM;
294 return false;
295 }
296
297 std::vector<char> chars(len);
298 if (!RecvChars(&chars[0], len, timeout_ms)) {
299 return false;
300 }
301
302 *value = std::string(&chars[0], len);
303 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000304 }
305
Tom Cherry32228482018-01-18 16:14:25 -0800306 bool SendUint32(uint32_t value) {
307 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
308 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000309 }
310
Tom Cherry32228482018-01-18 16:14:25 -0800311 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000312
Tom Cherry32228482018-01-18 16:14:25 -0800313 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000314
Tom Cherry32228482018-01-18 16:14:25 -0800315 std::string source_context() const {
316 char* source_context = nullptr;
317 getpeercon(socket_, &source_context);
318 std::string result = source_context;
319 freecon(source_context);
320 return result;
321 }
322
323 private:
324 bool PollIn(uint32_t* timeout_ms) {
325 struct pollfd ufds[1];
326 ufds[0].fd = socket_;
327 ufds[0].events = POLLIN;
328 ufds[0].revents = 0;
329 while (*timeout_ms > 0) {
330 auto start_time = std::chrono::steady_clock::now();
331 int nr = poll(ufds, 1, *timeout_ms);
332 auto now = std::chrono::steady_clock::now();
333 auto time_elapsed =
334 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
335 uint64_t millis = time_elapsed.count();
336 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
337
338 if (nr > 0) {
339 return true;
340 }
341
342 if (nr == 0) {
343 // Timeout
344 break;
345 }
346
347 if (nr < 0 && errno != EINTR) {
348 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
349 << " 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
361 << " to send property message.";
362 return false;
363 }
364
365 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
366 size_t bytes_left = size;
367 char* data = static_cast<char*>(data_ptr);
368 while (*timeout_ms > 0 && bytes_left > 0) {
369 if (!PollIn(timeout_ms)) {
370 return false;
371 }
372
373 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
374 if (result <= 0) {
375 return false;
376 }
377
378 bytes_left -= result;
379 data += result;
380 }
381
382 return bytes_left == 0;
383 }
384
385 int socket_;
386 ucred cred_;
387
388 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000389};
390
Tom Cherry32228482018-01-18 16:14:25 -0800391// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
392uint32_t HandlePropertySet(const std::string& name, const std::string& value,
393 const std::string& source_context, const ucred& cr) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800394 if (!IsLegalPropertyName(name)) {
Tom Cherry32228482018-01-18 16:14:25 -0800395 LOG(ERROR) << "PropertySet: illegal property name \"" << name << "\"";
396 return PROP_ERROR_INVALID_NAME;
397 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000398
Tom Cherry32228482018-01-18 16:14:25 -0800399 if (StartsWith(name, "ctl.")) {
400 // ctl. properties have their name ctl.<action> and their value is the name of the service
401 // to apply that action to. Permissions for these actions are based on the service, so we
402 // must create a fake name of ctl.<service> to check permissions.
403 auto control_string = "ctl." + value;
404 const char* target_context = nullptr;
405 const char* type = nullptr;
406 property_info_area->GetPropertyInfo(control_string.c_str(), &target_context, &type);
407 if (!CheckMacPerms(control_string, target_context, source_context.c_str(), cr)) {
408 LOG(ERROR) << "PropertySet: Unable to " << (name.c_str() + 4) << " service ctl ["
409 << value << "]"
410 << " uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid;
411 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
412 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000413
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800414 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800415 return PROP_SUCCESS;
416 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800417
Tom Cherry32228482018-01-18 16:14:25 -0800418 const char* target_context = nullptr;
419 const char* type = nullptr;
420 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700421
Tom Cherry32228482018-01-18 16:14:25 -0800422 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
423 LOG(ERROR) << "PropertySet: permission denied uid:" << cr.uid << " name:" << name;
424 return PROP_ERROR_PERMISSION_DENIED;
425 }
426
427 if (type == nullptr || !CheckType(type, value)) {
428 LOG(ERROR) << "PropertySet: name: '" << name << "' type check failed, type: '"
429 << (type ?: "(null)") << "' value: '" << value << "'";
430 return PROP_ERROR_INVALID_VALUE;
431 }
432
433 // sys.powerctl is a special property that is used to make the device reboot. We want to log
434 // any process that sets this property to be able to accurately blame the cause of a shutdown.
435 if (name == "sys.powerctl") {
436 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
437 std::string process_cmdline;
438 std::string process_log_string;
439 if (ReadFileToString(cmdline_path, &process_cmdline)) {
440 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
441 // path.
442 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
443 }
444 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
445 << process_log_string;
446 }
447
448 return PropertySet(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000449}
450
451static void handle_property_set_fd() {
452 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800453
Robert Sesekca2da602017-01-25 08:08:51 -0500454 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700455 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800456 return;
457 }
458
Tom Cherry32228482018-01-18 16:14:25 -0800459 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700460 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
462 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800463 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800464 return;
465 }
466
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000467 SocketConnection socket(s, cr);
468 uint32_t timeout_ms = kDefaultSocketTimeout;
469
470 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000471 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
472 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
473 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800474 return;
475 }
476
Elliott Hughesb005d902017-02-22 14:54:15 -0800477 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000478 case PROP_MSG_SETPROP: {
479 char prop_name[PROP_NAME_MAX];
480 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800481
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000482 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
483 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
484 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
485 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700486 }
487
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000488 prop_name[PROP_NAME_MAX-1] = 0;
489 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400490
Tom Cherry32228482018-01-18 16:14:25 -0800491 HandlePropertySet(prop_value, prop_value, socket.source_context(), socket.cred());
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800492 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000493 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000494
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000495 case PROP_MSG_SETPROP2: {
496 std::string name;
497 std::string value;
498 if (!socket.RecvString(&name, &timeout_ms) ||
499 !socket.RecvString(&value, &timeout_ms)) {
500 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
501 socket.SendUint32(PROP_ERROR_READ_DATA);
502 return;
503 }
504
Tom Cherry32228482018-01-18 16:14:25 -0800505 auto result = HandlePropertySet(name, value, socket.source_context(), socket.cred());
506 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000507 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 Tyanaef2b092017-06-02 18:59:46 +0800517static bool 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 Tyanaef2b092017-06-02 18:59:46 +0800581static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700582 Timer t;
Tom Cherry62ca6632017-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 Tyanaef2b092017-06-02 18:59:46 +0800587 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800588 }
Tom Cherry62ca6632017-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 << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800592 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800593}
594
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900595// persist.sys.usb.config values can't be combined on build-time when property
596// files are split into each partition.
597// So we need to apply the same rule of build/make/tools/post_process_props.py
598// on runtime.
599static void update_sys_usb_config() {
600 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
601 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
602 if (config.empty()) {
603 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
604 } else if (is_debuggable && config.find("adb") == std::string::npos &&
605 config.length() + 4 < PROP_VALUE_MAX) {
606 config.append(",adb");
607 property_set("persist.sys.usb.config", config);
608 }
609}
610
Elliott Hughesda40c002015-03-27 23:20:44 -0700611void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800612 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
613 // Try recovery path
614 if (!load_properties_from_file("/prop.default", NULL)) {
615 // Try legacy path
616 load_properties_from_file("/default.prop", NULL);
617 }
618 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900619 load_properties_from_file("/product/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800620 load_properties_from_file("/odm/default.prop", NULL);
621 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900622
623 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800624}
625
Nick Kralevich32b90232012-09-19 11:15:24 -0700626static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800627 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800628 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700629 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700630}
631
Ken Sumrallc5c51032011-03-08 17:01:29 -0800632/* When booting an encrypted system, /data is not mounted when the
633 * property service is started, so any properties stored there are
634 * not loaded. Vold triggers init to load these properties once it
635 * has mounted /data.
636 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700637void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700638 // Devices with FDE have load_persist_props called twice; the first time when the temporary
639 // /data partition is mounted and then again once /data is truly mounted. We do not want to
640 // read persistent properties from the temporary /data partition or mark persistent properties
641 // as having been loaded during the first call, so we return in that case.
642 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
643 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
644 if (crypto_state == "encrypted" && crypto_type == "block") {
645 static size_t num_calls = 0;
646 if (++num_calls == 1) return;
647 }
648
Nick Kralevich32b90232012-09-19 11:15:24 -0700649 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800650 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700651 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700652 for (const auto& persistent_property_record : persistent_properties.properties()) {
653 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700654 }
655 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800656 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800657}
658
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700659void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800660 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
661 fs_mgr_free_fstab);
662 if (!fstab) {
663 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700664 return;
665 }
666
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800667 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700668 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700669 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700670 return;
671 }
672
673 int fd = open(rec->blk_device, O_RDONLY);
674 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700675 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700676 return;
677 }
678
679 boot_img_hdr hdr;
680 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
681 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700682 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700683 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700684 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700685 }
686
687 close(fd);
688}
689
Paul Lawrence948410a2015-07-01 14:40:56 -0700690void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800691 load_properties_from_file("/system/build.prop", NULL);
692 load_properties_from_file("/odm/build.prop", NULL);
693 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800694 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700695 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700696}
697
Tom Cherryc3692b32017-08-10 12:22:44 -0700698static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
699 property_audit_data* d = reinterpret_cast<property_audit_data*>(data);
700
701 if (!d || !d->name || !d->cr) {
702 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
703 return 0;
704 }
705
706 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
707 d->cr->gid);
708 return 0;
709}
710
Tom Cherry2ae2f602017-12-14 01:58:17 +0000711bool LoadPropertyInfoFromFile(const std::string& filename,
712 std::vector<PropertyInfoEntry>* property_infos) {
713 auto file_contents = std::string();
714 if (!ReadFileToString(filename, &file_contents)) {
715 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
716 return false;
717 }
718
Tom Cherry919458c2018-01-03 14:39:28 -0800719 auto errors = std::vector<std::string>{};
720 ParsePropertyInfoFile(file_contents, property_infos, &errors);
721 // Individual parsing errors are reported but do not cause a failed boot, which is what
722 // returning false would do here.
723 for (const auto& error : errors) {
724 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000725 }
Tom Cherry919458c2018-01-03 14:39:28 -0800726
Tom Cherry2ae2f602017-12-14 01:58:17 +0000727 return true;
728}
729
730void CreateSerializedPropertyInfo() {
731 auto property_infos = std::vector<PropertyInfoEntry>();
732 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
733 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
734 &property_infos)) {
735 return;
736 }
737 // Don't check for failure here, so we always have a sane list of properties.
738 // E.g. In case of recovery, the vendor partition will not have mounted and we
739 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800740 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
741 &property_infos)) {
742 // Fallback to nonplat_* if vendor_* doesn't exist.
743 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
744 &property_infos);
745 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000746 } else {
747 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
748 return;
749 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800750 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
751 // Fallback to nonplat_* if vendor_* doesn't exist.
752 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
753 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000754 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800755
Tom Cherry2ae2f602017-12-14 01:58:17 +0000756 auto serialized_contexts = std::string();
757 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800758 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000759 &error)) {
760 LOG(ERROR) << "Unable to serialize property contexts: " << error;
761 return;
762 }
763
764 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
765 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
766 PLOG(ERROR) << "Unable to write serialized property infos to file";
767 }
768 selinux_android_restorecon(kPropertyInfosPath, 0);
769}
770
771void start_property_service() {
Tom Cherryc3692b32017-08-10 12:22:44 -0700772 selinux_callback cb;
773 cb.func_audit = SelinuxAuditCallback;
774 selinux_set_callback(SELINUX_CB_AUDIT, cb);
775
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000776 property_set("ro.property_service.version", "2");
777
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700778 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700779 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700780 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700781 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700782 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800783
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700784 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700785
Elliott Hughes929f4072015-04-24 21:13:44 -0700786 register_epoll_handler(property_set_fd, handle_property_set_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800787}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700788
789} // namespace init
790} // namespace android