blob: 624780f64a97a5cfec253d1969b0704cf89878d8 [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 Cherry69d47aa2018-03-01 11:00:57 -0800120static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
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)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800124 *error = "Illegal property 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.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800129 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000130 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000131 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800132
Tom Cherry8702dcb2017-10-13 16:20:19 -0700133 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800134 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700135 return PROP_ERROR_INVALID_VALUE;
136 }
137
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000138 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000139 if (pi != nullptr) {
140 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700141 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800142 *error = "Read-only property was already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000143 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000144 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800145
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000146 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800147 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000148 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700149 if (rc < 0) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800150 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000151 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200152 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800153 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000154
Elliott Hughes4f915812016-12-05 13:12:48 -0800155 // Don't write properties to disk until after we have read all default
156 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700157 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700158 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800159 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700160 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000161 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162}
163
Tom Marshall62696902017-06-09 18:29:23 +0000164typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
165
166struct PropertyChildInfo {
167 pid_t pid;
168 PropertyAsyncFunc func;
169 std::string name;
170 std::string value;
171};
172
173static std::queue<PropertyChildInfo> property_children;
174
175static void PropertyChildLaunch() {
176 auto& info = property_children.front();
177 pid_t pid = fork();
178 if (pid < 0) {
179 LOG(ERROR) << "Failed to fork for property_set_async";
180 while (!property_children.empty()) {
181 property_children.pop();
182 }
183 return;
184 }
185 if (pid != 0) {
186 info.pid = pid;
187 } else {
188 if (info.func(info.name, info.value) != 0) {
189 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
190 << "\") failed";
191 }
Tom Cherry4a679452017-09-26 16:30:03 -0700192 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000193 }
194}
195
196bool PropertyChildReap(pid_t pid) {
197 if (property_children.empty()) {
198 return false;
199 }
200 auto& info = property_children.front();
201 if (info.pid != pid) {
202 return false;
203 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800204 std::string error;
205 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
206 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
207 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000208 }
209 property_children.pop();
210 if (!property_children.empty()) {
211 PropertyChildLaunch();
212 }
213 return true;
214}
215
216static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800217 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000218 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800219 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000220 }
221
222 PropertyChildInfo info;
223 info.func = func;
224 info.name = name;
225 info.value = value;
226 property_children.push(info);
227 if (property_children.size() == 1) {
228 PropertyChildLaunch();
229 }
230 return PROP_SUCCESS;
231}
232
233static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
234 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
235}
236
Tom Cherry32228482018-01-18 16:14:25 -0800237uint32_t InitPropertySet(const std::string& name, const std::string& value) {
238 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800239 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
240 "functions directly";
241 return PROP_ERROR_INVALID_NAME;
242 }
243 if (name == "selinux.restorecon_recursive") {
244 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
245 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800246 return PROP_ERROR_INVALID_NAME;
247 }
248
Tom Cherry69d47aa2018-03-01 11:00:57 -0800249 uint32_t result = 0;
250 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
251 std::string error;
252 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
253 if (result != PROP_SUCCESS) {
254 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800255 }
256
Tom Cherry69d47aa2018-03-01 11:00:57 -0800257 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800258}
259
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000260class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800261 public:
262 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000263
Tom Cherry32228482018-01-18 16:14:25 -0800264 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000265
Tom Cherry32228482018-01-18 16:14:25 -0800266 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
267 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000268 }
269
Tom Cherry32228482018-01-18 16:14:25 -0800270 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
271 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000272 }
273
Tom Cherry32228482018-01-18 16:14:25 -0800274 bool RecvString(std::string* value, uint32_t* timeout_ms) {
275 uint32_t len = 0;
276 if (!RecvUint32(&len, timeout_ms)) {
277 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000278 }
Tom Cherry32228482018-01-18 16:14:25 -0800279
280 if (len == 0) {
281 *value = "";
282 return true;
283 }
284
285 // http://b/35166374: don't allow init to make arbitrarily large allocations.
286 if (len > 0xffff) {
287 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
288 errno = ENOMEM;
289 return false;
290 }
291
292 std::vector<char> chars(len);
293 if (!RecvChars(&chars[0], len, timeout_ms)) {
294 return false;
295 }
296
297 *value = std::string(&chars[0], len);
298 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000299 }
300
Tom Cherry32228482018-01-18 16:14:25 -0800301 bool SendUint32(uint32_t value) {
302 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
303 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000304 }
305
Tom Cherry32228482018-01-18 16:14:25 -0800306 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000307
Tom Cherry32228482018-01-18 16:14:25 -0800308 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000309
Tom Cherry32228482018-01-18 16:14:25 -0800310 std::string source_context() const {
311 char* source_context = nullptr;
312 getpeercon(socket_, &source_context);
313 std::string result = source_context;
314 freecon(source_context);
315 return result;
316 }
317
318 private:
319 bool PollIn(uint32_t* timeout_ms) {
320 struct pollfd ufds[1];
321 ufds[0].fd = socket_;
322 ufds[0].events = POLLIN;
323 ufds[0].revents = 0;
324 while (*timeout_ms > 0) {
325 auto start_time = std::chrono::steady_clock::now();
326 int nr = poll(ufds, 1, *timeout_ms);
327 auto now = std::chrono::steady_clock::now();
328 auto time_elapsed =
329 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
330 uint64_t millis = time_elapsed.count();
331 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
332
333 if (nr > 0) {
334 return true;
335 }
336
337 if (nr == 0) {
338 // Timeout
339 break;
340 }
341
342 if (nr < 0 && errno != EINTR) {
343 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
344 << " to send property message";
345 return false;
346 } else { // errno == EINTR
347 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
348 // to avoid slowing init down by causing EINTR with under millisecond timeout.
349 if (*timeout_ms > 0) {
350 --(*timeout_ms);
351 }
352 }
353 }
354
355 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
356 << " to send property message.";
357 return false;
358 }
359
360 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
361 size_t bytes_left = size;
362 char* data = static_cast<char*>(data_ptr);
363 while (*timeout_ms > 0 && bytes_left > 0) {
364 if (!PollIn(timeout_ms)) {
365 return false;
366 }
367
368 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
369 if (result <= 0) {
370 return false;
371 }
372
373 bytes_left -= result;
374 data += result;
375 }
376
377 return bytes_left == 0;
378 }
379
380 int socket_;
381 ucred cred_;
382
383 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000384};
385
Tom Cherry32228482018-01-18 16:14:25 -0800386// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
387uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800388 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800389 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800390 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800391 return PROP_ERROR_INVALID_NAME;
392 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000393
Tom Cherry32228482018-01-18 16:14:25 -0800394 if (StartsWith(name, "ctl.")) {
395 // ctl. properties have their name ctl.<action> and their value is the name of the service
396 // to apply that action to. Permissions for these actions are based on the service, so we
397 // must create a fake name of ctl.<service> to check permissions.
398 auto control_string = "ctl." + value;
399 const char* target_context = nullptr;
400 const char* type = nullptr;
401 property_info_area->GetPropertyInfo(control_string.c_str(), &target_context, &type);
402 if (!CheckMacPerms(control_string, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800403 *error = StringPrintf("Unable to '%s' service %s", name.c_str() + 4, value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800404 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
405 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000406
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800407 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800408 return PROP_SUCCESS;
409 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800410
Tom Cherry32228482018-01-18 16:14:25 -0800411 const char* target_context = nullptr;
412 const char* type = nullptr;
413 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700414
Tom Cherry32228482018-01-18 16:14:25 -0800415 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800416 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800417 return PROP_ERROR_PERMISSION_DENIED;
418 }
419
420 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800421 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
422 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800423 return PROP_ERROR_INVALID_VALUE;
424 }
425
426 // sys.powerctl is a special property that is used to make the device reboot. We want to log
427 // any process that sets this property to be able to accurately blame the cause of a shutdown.
428 if (name == "sys.powerctl") {
429 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
430 std::string process_cmdline;
431 std::string process_log_string;
432 if (ReadFileToString(cmdline_path, &process_cmdline)) {
433 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
434 // path.
435 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
436 }
437 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
438 << process_log_string;
439 }
440
Tom Cherry69d47aa2018-03-01 11:00:57 -0800441 if (name == "selinux.restorecon_recursive") {
442 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
443 }
444
445 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000446}
447
448static void handle_property_set_fd() {
449 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800450
Robert Sesekca2da602017-01-25 08:08:51 -0500451 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700452 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800453 return;
454 }
455
Tom Cherry32228482018-01-18 16:14:25 -0800456 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700457 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800458 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
459 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800460 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 return;
462 }
463
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000464 SocketConnection socket(s, cr);
465 uint32_t timeout_ms = kDefaultSocketTimeout;
466
467 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000468 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
469 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
470 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800471 return;
472 }
473
Elliott Hughesb005d902017-02-22 14:54:15 -0800474 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000475 case PROP_MSG_SETPROP: {
476 char prop_name[PROP_NAME_MAX];
477 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800478
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000479 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
480 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
481 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
482 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700483 }
484
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000485 prop_name[PROP_NAME_MAX-1] = 0;
486 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400487
Tom Cherry69d47aa2018-03-01 11:00:57 -0800488 const auto& cr = socket.cred();
489 std::string error;
490 uint32_t result =
491 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
492 if (result != PROP_SUCCESS) {
493 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
494 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
495 << error;
496 }
497
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800498 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000499 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000500
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000501 case PROP_MSG_SETPROP2: {
502 std::string name;
503 std::string value;
504 if (!socket.RecvString(&name, &timeout_ms) ||
505 !socket.RecvString(&value, &timeout_ms)) {
506 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
507 socket.SendUint32(PROP_ERROR_READ_DATA);
508 return;
509 }
510
Tom Cherry69d47aa2018-03-01 11:00:57 -0800511 const auto& cr = socket.cred();
512 std::string error;
513 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
514 if (result != PROP_SUCCESS) {
515 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
516 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
517 << error;
518 }
Tom Cherry32228482018-01-18 16:14:25 -0800519 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000520 break;
521 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800522
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800523 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800524 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000525 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800526 break;
527 }
528}
529
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800530static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800531
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800532/*
533 * Filter is used to decide which properties to load: NULL loads all keys,
534 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
535 */
536static void load_properties(char *data, const char *filter)
537{
538 char *key, *value, *eol, *sol, *tmp, *fn;
539 size_t flen = 0;
540
541 if (filter) {
542 flen = strlen(filter);
543 }
544
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800545 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800546 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800547 key = sol;
548 *eol++ = 0;
549 sol = eol;
550
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800551 while (isspace(*key)) key++;
552 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800553
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800554 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800555 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800556
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800557 if (!strncmp(key, "import ", 7) && flen == 0) {
558 fn = key + 7;
559 while (isspace(*fn)) fn++;
560
561 key = strchr(fn, ' ');
562 if (key) {
563 *key++ = 0;
564 while (isspace(*key)) key++;
565 }
566
567 load_properties_from_file(fn, key);
568
569 } else {
570 value = strchr(key, '=');
571 if (!value) continue;
572 *value++ = 0;
573
574 tmp = value - 2;
575 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
576
577 while (isspace(*value)) value++;
578
579 if (flen > 0) {
580 if (filter[flen - 1] == '*') {
581 if (strncmp(key, filter, flen - 1)) continue;
582 } else {
583 if (strcmp(key, filter)) continue;
584 }
585 }
586
587 property_set(key, value);
588 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800589 }
590}
591
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700592// Filter is used to decide which properties to load: NULL loads all keys,
593// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800594static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700595 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700596 auto file_contents = ReadFile(filename);
597 if (!file_contents) {
598 PLOG(WARNING) << "Couldn't load property file '" << filename
599 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800600 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800601 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700602 file_contents->push_back('\n');
603 load_properties(file_contents->data(), filter);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000604 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800605 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800606}
607
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900608// persist.sys.usb.config values can't be combined on build-time when property
609// files are split into each partition.
610// So we need to apply the same rule of build/make/tools/post_process_props.py
611// on runtime.
612static void update_sys_usb_config() {
613 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
614 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
615 if (config.empty()) {
616 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
617 } else if (is_debuggable && config.find("adb") == std::string::npos &&
618 config.length() + 4 < PROP_VALUE_MAX) {
619 config.append(",adb");
620 property_set("persist.sys.usb.config", config);
621 }
622}
623
Elliott Hughesda40c002015-03-27 23:20:44 -0700624void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800625 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
626 // Try recovery path
627 if (!load_properties_from_file("/prop.default", NULL)) {
628 // Try legacy path
629 load_properties_from_file("/default.prop", NULL);
630 }
631 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900632 load_properties_from_file("/product/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800633 load_properties_from_file("/odm/default.prop", NULL);
634 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900635
636 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800637}
638
Nick Kralevich32b90232012-09-19 11:15:24 -0700639static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800640 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800641 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700642 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700643}
644
Ken Sumrallc5c51032011-03-08 17:01:29 -0800645/* When booting an encrypted system, /data is not mounted when the
646 * property service is started, so any properties stored there are
647 * not loaded. Vold triggers init to load these properties once it
648 * has mounted /data.
649 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700650void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700651 // Devices with FDE have load_persist_props called twice; the first time when the temporary
652 // /data partition is mounted and then again once /data is truly mounted. We do not want to
653 // read persistent properties from the temporary /data partition or mark persistent properties
654 // as having been loaded during the first call, so we return in that case.
655 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
656 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
657 if (crypto_state == "encrypted" && crypto_type == "block") {
658 static size_t num_calls = 0;
659 if (++num_calls == 1) return;
660 }
661
Nick Kralevich32b90232012-09-19 11:15:24 -0700662 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800663 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700664 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700665 for (const auto& persistent_property_record : persistent_properties.properties()) {
666 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700667 }
668 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800669 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800670}
671
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700672void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800673 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
674 fs_mgr_free_fstab);
675 if (!fstab) {
676 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700677 return;
678 }
679
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800680 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700681 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700682 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700683 return;
684 }
685
686 int fd = open(rec->blk_device, O_RDONLY);
687 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700688 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700689 return;
690 }
691
692 boot_img_hdr hdr;
693 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
694 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700695 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700696 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700697 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700698 }
699
700 close(fd);
701}
702
Paul Lawrence948410a2015-07-01 14:40:56 -0700703void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800704 load_properties_from_file("/system/build.prop", NULL);
705 load_properties_from_file("/odm/build.prop", NULL);
706 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800707 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700708 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700709}
710
Tom Cherryc3692b32017-08-10 12:22:44 -0700711static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
712 property_audit_data* d = reinterpret_cast<property_audit_data*>(data);
713
714 if (!d || !d->name || !d->cr) {
715 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
716 return 0;
717 }
718
719 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
720 d->cr->gid);
721 return 0;
722}
723
Tom Cherry2ae2f602017-12-14 01:58:17 +0000724bool LoadPropertyInfoFromFile(const std::string& filename,
725 std::vector<PropertyInfoEntry>* property_infos) {
726 auto file_contents = std::string();
727 if (!ReadFileToString(filename, &file_contents)) {
728 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
729 return false;
730 }
731
Tom Cherry919458c2018-01-03 14:39:28 -0800732 auto errors = std::vector<std::string>{};
733 ParsePropertyInfoFile(file_contents, property_infos, &errors);
734 // Individual parsing errors are reported but do not cause a failed boot, which is what
735 // returning false would do here.
736 for (const auto& error : errors) {
737 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000738 }
Tom Cherry919458c2018-01-03 14:39:28 -0800739
Tom Cherry2ae2f602017-12-14 01:58:17 +0000740 return true;
741}
742
743void CreateSerializedPropertyInfo() {
744 auto property_infos = std::vector<PropertyInfoEntry>();
745 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
746 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
747 &property_infos)) {
748 return;
749 }
750 // Don't check for failure here, so we always have a sane list of properties.
751 // E.g. In case of recovery, the vendor partition will not have mounted and we
752 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800753 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
754 &property_infos)) {
755 // Fallback to nonplat_* if vendor_* doesn't exist.
756 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
757 &property_infos);
758 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000759 } else {
760 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
761 return;
762 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800763 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
764 // Fallback to nonplat_* if vendor_* doesn't exist.
765 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
766 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000767 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800768
Tom Cherry2ae2f602017-12-14 01:58:17 +0000769 auto serialized_contexts = std::string();
770 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800771 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000772 &error)) {
773 LOG(ERROR) << "Unable to serialize property contexts: " << error;
774 return;
775 }
776
777 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
778 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
779 PLOG(ERROR) << "Unable to write serialized property infos to file";
780 }
781 selinux_android_restorecon(kPropertyInfosPath, 0);
782}
783
784void start_property_service() {
Tom Cherryc3692b32017-08-10 12:22:44 -0700785 selinux_callback cb;
786 cb.func_audit = SelinuxAuditCallback;
787 selinux_set_callback(SELINUX_CB_AUDIT, cb);
788
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000789 property_set("ro.property_service.version", "2");
790
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700791 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700792 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700793 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700794 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700795 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800796
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700797 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700798
Elliott Hughes929f4072015-04-24 21:13:44 -0700799 register_epoll_handler(property_set_fd, handle_property_set_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800800}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700801
802} // namespace init
803} // namespace android