blob: 76638b878b4dbf80e57c17c5eb94ce9fc8f5deb8 [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
Tom Cherry40acb372018-08-01 13:41:12 -070019#include <android/api-level.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070020#include <ctype.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070021#include <errno.h>
22#include <fcntl.h>
Keun-young Park7d320262017-02-17 17:48:56 -080023#include <inttypes.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070024#include <limits.h>
25#include <netinet/in.h>
26#include <stdarg.h>
Tom Cherryf57c0bf2017-04-07 13:46:21 -070027#include <stddef.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#include <stdio.h>
29#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030#include <string.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070031#include <sys/mman.h>
JP Abgrall4515d812014-01-31 14:37:07 -080032#include <sys/poll.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070033#include <sys/select.h>
34#include <sys/types.h>
35#include <sys/un.h>
36#include <unistd.h>
Tom Cherry8702dcb2017-10-13 16:20:19 -070037#include <wchar.h>
Elliott Hughes81399e12015-03-10 08:39:45 -070038
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080039#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
40#include <sys/_system_properties.h>
41
Tom Cherry3f5eaae52017-04-06 16:30:22 -070042#include <memory>
Tom Marshall62696902017-06-09 18:29:23 +000043#include <queue>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070044#include <vector>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080045
Tom Cherryede0d532017-07-06 14:20:11 -070046#include <android-base/chrono_utils.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080047#include <android-base/file.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070048#include <android-base/logging.h>
Jaekyun Seok0cf3a072017-04-24 18:52:54 +090049#include <android-base/properties.h>
Tom Cherrya84e14d2017-09-05 12:38:30 -070050#include <android-base/stringprintf.h>
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000051#include <android-base/strings.h>
Tom Cherry2ae2f602017-12-14 01:58:17 +000052#include <property_info_parser/property_info_parser.h>
53#include <property_info_serializer/property_info_serializer.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070054#include <selinux/android.h>
55#include <selinux/label.h>
56#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070057
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070058#include "epoll.h"
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"
Logan Chien837b2a42018-05-03 14:33:52 +080062#include "selinux.h"
Tom Cherrydc375862018-02-28 10:39:01 -080063#include "subcontext.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070064#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065
Tom Cherrydc375862018-02-28 10:39:01 -080066using namespace std::literals;
67
Steven Laver57a740e2019-01-29 20:19:05 -080068using android::base::GetProperty;
Tom Cherry2ae2f602017-12-14 01:58:17 +000069using android::base::ReadFileToString;
70using android::base::Split;
Tom Cherry1cf8d692017-10-10 13:35:01 -070071using android::base::StartsWith;
Tom Cherrya84e14d2017-09-05 12:38:30 -070072using android::base::StringPrintf;
Tom Cherryede0d532017-07-06 14:20:11 -070073using android::base::Timer;
Tom Cherry2ae2f602017-12-14 01:58:17 +000074using android::base::Trim;
75using android::base::WriteStringToFile;
76using android::properties::BuildTrie;
Tom Cherry919458c2018-01-03 14:39:28 -080077using android::properties::ParsePropertyInfoFile;
Tom Cherry2ae2f602017-12-14 01:58:17 +000078using android::properties::PropertyInfoAreaFile;
79using android::properties::PropertyInfoEntry;
Tom Cherryede0d532017-07-06 14:20:11 -070080
Tom Cherry81f5d3e2017-06-22 12:53:17 -070081namespace android {
82namespace init {
83
Tom Cherry16fad422017-08-04 15:59:03 -070084static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080085
Colin Crossd11beb22010-04-13 19:33:37 -070086static int property_set_fd = -1;
87
Tom Cherry2ae2f602017-12-14 01:58:17 +000088static PropertyInfoAreaFile property_info_area;
89
Tom Cherry32228482018-01-18 16:14:25 -080090uint32_t InitPropertySet(const std::string& name, const std::string& value);
91
92uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet;
93
Tom Cherry2ae2f602017-12-14 01:58:17 +000094void CreateSerializedPropertyInfo();
Tom Cherryc3692b32017-08-10 12:22:44 -070095
Tom Cherry5ab2e1c2018-05-03 16:57:19 -070096struct PropertyAuditData {
97 const ucred* cr;
98 const char* name;
99};
100
Elliott Hughesda40c002015-03-27 23:20:44 -0700101void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000102 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
103 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -0700104 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -0700105 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -0700106 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000107 if (!property_info_area.LoadDefaultPath()) {
108 LOG(FATAL) << "Failed to load serialized property info file";
109 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800110}
Tom Cherryb35f8272018-10-22 14:50:52 -0700111
112bool CanReadProperty(const std::string& source_context, const std::string& name) {
113 const char* target_context = nullptr;
114 property_info_area->GetPropertyInfo(name.c_str(), &target_context, nullptr);
115
116 PropertyAuditData audit_data;
117
118 audit_data.name = name.c_str();
119
120 ucred cr = {.pid = 0, .uid = 0, .gid = 0};
121 audit_data.cr = &cr;
122
123 return selinux_check_access(source_context.c_str(), target_context, "file", "read",
124 &audit_data) == 0;
125}
126
Tom Cherry927c5d52017-12-11 01:40:07 -0800127static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800128 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800129 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000130 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000131 }
132
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700133 PropertyAuditData audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400134
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000135 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800136 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700137
Tom Cherry927c5d52017-12-11 01:40:07 -0800138 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
139 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400140
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000141 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400142}
143
Tom Cherry69d47aa2018-03-01 11:00:57 -0800144static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000145 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800146
Tom Cherryde6bd502018-02-13 16:50:08 -0800147 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800148 *error = "Illegal property name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000149 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000150 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000151
Tom Cherry1cf8d692017-10-10 13:35:01 -0700152 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800153 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000154 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000155 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800156
Tom Cherry8702dcb2017-10-13 16:20:19 -0700157 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800158 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700159 return PROP_ERROR_INVALID_VALUE;
160 }
161
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000162 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000163 if (pi != nullptr) {
164 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700165 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800166 *error = "Read-only property was 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) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800174 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000175 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200176 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800177 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000178
Elliott Hughes4f915812016-12-05 13:12:48 -0800179 // Don't write properties to disk until after we have read all default
180 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700181 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700182 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800183 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700184 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000185 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800186}
187
Tom Marshall62696902017-06-09 18:29:23 +0000188typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
189
190struct PropertyChildInfo {
191 pid_t pid;
192 PropertyAsyncFunc func;
193 std::string name;
194 std::string value;
195};
196
197static std::queue<PropertyChildInfo> property_children;
198
199static void PropertyChildLaunch() {
200 auto& info = property_children.front();
201 pid_t pid = fork();
202 if (pid < 0) {
203 LOG(ERROR) << "Failed to fork for property_set_async";
204 while (!property_children.empty()) {
205 property_children.pop();
206 }
207 return;
208 }
209 if (pid != 0) {
210 info.pid = pid;
211 } else {
212 if (info.func(info.name, info.value) != 0) {
213 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
214 << "\") failed";
215 }
Tom Cherry4a679452017-09-26 16:30:03 -0700216 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000217 }
218}
219
220bool PropertyChildReap(pid_t pid) {
221 if (property_children.empty()) {
222 return false;
223 }
224 auto& info = property_children.front();
225 if (info.pid != pid) {
226 return false;
227 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800228 std::string error;
229 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
230 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
231 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000232 }
233 property_children.pop();
234 if (!property_children.empty()) {
235 PropertyChildLaunch();
236 }
237 return true;
238}
239
240static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800241 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000242 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800243 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000244 }
245
246 PropertyChildInfo info;
247 info.func = func;
248 info.name = name;
249 info.value = value;
250 property_children.push(info);
251 if (property_children.size() == 1) {
252 PropertyChildLaunch();
253 }
254 return PROP_SUCCESS;
255}
256
257static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
258 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
259}
260
Tom Cherry32228482018-01-18 16:14:25 -0800261uint32_t InitPropertySet(const std::string& name, const std::string& value) {
262 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800263 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
264 "functions directly";
265 return PROP_ERROR_INVALID_NAME;
266 }
267 if (name == "selinux.restorecon_recursive") {
268 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
269 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800270 return PROP_ERROR_INVALID_NAME;
271 }
272
Tom Cherry69d47aa2018-03-01 11:00:57 -0800273 uint32_t result = 0;
274 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
275 std::string error;
276 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
277 if (result != PROP_SUCCESS) {
278 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800279 }
280
Tom Cherry69d47aa2018-03-01 11:00:57 -0800281 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800282}
283
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000284class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800285 public:
286 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000287
Tom Cherry32228482018-01-18 16:14:25 -0800288 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000289
Tom Cherry32228482018-01-18 16:14:25 -0800290 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
291 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000292 }
293
Tom Cherry32228482018-01-18 16:14:25 -0800294 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
295 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000296 }
297
Tom Cherry32228482018-01-18 16:14:25 -0800298 bool RecvString(std::string* value, uint32_t* timeout_ms) {
299 uint32_t len = 0;
300 if (!RecvUint32(&len, timeout_ms)) {
301 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000302 }
Tom Cherry32228482018-01-18 16:14:25 -0800303
304 if (len == 0) {
305 *value = "";
306 return true;
307 }
308
309 // http://b/35166374: don't allow init to make arbitrarily large allocations.
310 if (len > 0xffff) {
311 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
312 errno = ENOMEM;
313 return false;
314 }
315
316 std::vector<char> chars(len);
317 if (!RecvChars(&chars[0], len, timeout_ms)) {
318 return false;
319 }
320
321 *value = std::string(&chars[0], len);
322 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000323 }
324
Tom Cherry32228482018-01-18 16:14:25 -0800325 bool SendUint32(uint32_t value) {
326 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
327 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000328 }
329
Tom Cherry32228482018-01-18 16:14:25 -0800330 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000331
Tom Cherry32228482018-01-18 16:14:25 -0800332 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000333
Tom Cherry32228482018-01-18 16:14:25 -0800334 std::string source_context() const {
335 char* source_context = nullptr;
336 getpeercon(socket_, &source_context);
337 std::string result = source_context;
338 freecon(source_context);
339 return result;
340 }
341
342 private:
343 bool PollIn(uint32_t* timeout_ms) {
344 struct pollfd ufds[1];
345 ufds[0].fd = socket_;
346 ufds[0].events = POLLIN;
347 ufds[0].revents = 0;
348 while (*timeout_ms > 0) {
349 auto start_time = std::chrono::steady_clock::now();
350 int nr = poll(ufds, 1, *timeout_ms);
351 auto now = std::chrono::steady_clock::now();
352 auto time_elapsed =
353 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
354 uint64_t millis = time_elapsed.count();
355 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
356
357 if (nr > 0) {
358 return true;
359 }
360
361 if (nr == 0) {
362 // Timeout
363 break;
364 }
365
366 if (nr < 0 && errno != EINTR) {
367 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
368 << " to send property message";
369 return false;
370 } else { // errno == EINTR
371 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
372 // to avoid slowing init down by causing EINTR with under millisecond timeout.
373 if (*timeout_ms > 0) {
374 --(*timeout_ms);
375 }
376 }
377 }
378
379 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
380 << " to send property message.";
381 return false;
382 }
383
384 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
385 size_t bytes_left = size;
386 char* data = static_cast<char*>(data_ptr);
387 while (*timeout_ms > 0 && bytes_left > 0) {
388 if (!PollIn(timeout_ms)) {
389 return false;
390 }
391
392 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
393 if (result <= 0) {
DuXiao40533592018-05-21 14:43:56 +0800394 PLOG(ERROR) << "sys_prop: recv error";
Tom Cherry32228482018-01-18 16:14:25 -0800395 return false;
396 }
397
398 bytes_left -= result;
399 data += result;
400 }
401
DuXiao40533592018-05-21 14:43:56 +0800402 if (bytes_left != 0) {
403 LOG(ERROR) << "sys_prop: recv data is not properly obtained.";
404 }
405
Tom Cherry32228482018-01-18 16:14:25 -0800406 return bytes_left == 0;
407 }
408
409 int socket_;
410 ucred cred_;
411
412 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000413};
414
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700415bool CheckControlPropertyPerms(const std::string& name, const std::string& value,
416 const std::string& source_context, const ucred& cr) {
417 // We check the legacy method first but these properties are dontaudit, so we only log an audit
418 // if the newer method fails as well. We only do this with the legacy ctl. properties.
419 if (name == "ctl.start" || name == "ctl.stop" || name == "ctl.restart") {
420 // The legacy permissions model is that ctl. properties have their name ctl.<action> and
421 // their value is the name of the service to apply that action to. Permissions for these
422 // actions are based on the service, so we must create a fake name of ctl.<service> to
423 // check permissions.
424 auto control_string_legacy = "ctl." + value;
425 const char* target_context_legacy = nullptr;
426 const char* type_legacy = nullptr;
427 property_info_area->GetPropertyInfo(control_string_legacy.c_str(), &target_context_legacy,
428 &type_legacy);
429
430 if (CheckMacPerms(control_string_legacy, target_context_legacy, source_context.c_str(), cr)) {
431 return true;
432 }
433 }
434
435 auto control_string_full = name + "$" + value;
436 const char* target_context_full = nullptr;
437 const char* type_full = nullptr;
438 property_info_area->GetPropertyInfo(control_string_full.c_str(), &target_context_full,
439 &type_full);
440
441 return CheckMacPerms(control_string_full, target_context_full, source_context.c_str(), cr);
442}
443
Tom Cherry32228482018-01-18 16:14:25 -0800444// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
445uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800446 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800447 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800448 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800449 return PROP_ERROR_INVALID_NAME;
450 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000451
Tom Cherry32228482018-01-18 16:14:25 -0800452 if (StartsWith(name, "ctl.")) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700453 if (!CheckControlPropertyPerms(name, value, source_context, cr)) {
454 *error = StringPrintf("Invalid permissions to perform '%s' on '%s'", name.c_str() + 4,
455 value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800456 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
457 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000458
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800459 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800460 return PROP_SUCCESS;
461 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800462
Tom Cherry32228482018-01-18 16:14:25 -0800463 const char* target_context = nullptr;
464 const char* type = nullptr;
465 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700466
Tom Cherry32228482018-01-18 16:14:25 -0800467 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800468 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800469 return PROP_ERROR_PERMISSION_DENIED;
470 }
471
472 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800473 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
474 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800475 return PROP_ERROR_INVALID_VALUE;
476 }
477
478 // sys.powerctl is a special property that is used to make the device reboot. We want to log
479 // any process that sets this property to be able to accurately blame the cause of a shutdown.
480 if (name == "sys.powerctl") {
481 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
482 std::string process_cmdline;
483 std::string process_log_string;
484 if (ReadFileToString(cmdline_path, &process_cmdline)) {
485 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
486 // path.
487 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
488 }
489 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
490 << process_log_string;
491 }
492
Tom Cherry69d47aa2018-03-01 11:00:57 -0800493 if (name == "selinux.restorecon_recursive") {
494 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
495 }
496
497 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000498}
499
500static void handle_property_set_fd() {
501 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800502
Robert Sesekca2da602017-01-25 08:08:51 -0500503 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700504 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800505 return;
506 }
507
Tom Cherry32228482018-01-18 16:14:25 -0800508 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700509 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800510 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
511 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800512 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800513 return;
514 }
515
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000516 SocketConnection socket(s, cr);
517 uint32_t timeout_ms = kDefaultSocketTimeout;
518
519 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000520 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
521 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
522 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800523 return;
524 }
525
Elliott Hughesb005d902017-02-22 14:54:15 -0800526 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000527 case PROP_MSG_SETPROP: {
528 char prop_name[PROP_NAME_MAX];
529 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800530
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000531 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
532 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
533 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
534 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700535 }
536
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000537 prop_name[PROP_NAME_MAX-1] = 0;
538 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400539
Tom Cherry69d47aa2018-03-01 11:00:57 -0800540 const auto& cr = socket.cred();
541 std::string error;
542 uint32_t result =
543 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
544 if (result != PROP_SUCCESS) {
545 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
546 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
547 << error;
548 }
549
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800550 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000551 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000552
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000553 case PROP_MSG_SETPROP2: {
554 std::string name;
555 std::string value;
556 if (!socket.RecvString(&name, &timeout_ms) ||
557 !socket.RecvString(&value, &timeout_ms)) {
558 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
559 socket.SendUint32(PROP_ERROR_READ_DATA);
560 return;
561 }
562
Tom Cherry69d47aa2018-03-01 11:00:57 -0800563 const auto& cr = socket.cred();
564 std::string error;
565 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
566 if (result != PROP_SUCCESS) {
567 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
568 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
569 << error;
570 }
Tom Cherry32228482018-01-18 16:14:25 -0800571 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000572 break;
573 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800574
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800575 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800576 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000577 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800578 break;
579 }
580}
581
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800582static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800583
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800584/*
585 * Filter is used to decide which properties to load: NULL loads all keys,
586 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
587 */
Tom Cherrydc375862018-02-28 10:39:01 -0800588static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800589 char *key, *value, *eol, *sol, *tmp, *fn;
590 size_t flen = 0;
591
Tom Cherrydc375862018-02-28 10:39:01 -0800592 const char* context = kInitContext.c_str();
Tom Cherry40acb372018-08-01 13:41:12 -0700593 if (SelinuxGetVendorAndroidVersion() >= __ANDROID_API_P__) {
Tom Cherrya1dbeb82018-04-11 15:50:00 -0700594 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
595 if (StartsWith(filename, path_prefix)) {
596 context = secontext;
597 }
Tom Cherrydc375862018-02-28 10:39:01 -0800598 }
599 }
600
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800601 if (filter) {
602 flen = strlen(filter);
603 }
604
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800605 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800606 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800607 key = sol;
608 *eol++ = 0;
609 sol = eol;
610
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800611 while (isspace(*key)) key++;
612 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800613
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800614 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800615 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800616
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800617 if (!strncmp(key, "import ", 7) && flen == 0) {
618 fn = key + 7;
619 while (isspace(*fn)) fn++;
620
621 key = strchr(fn, ' ');
622 if (key) {
623 *key++ = 0;
624 while (isspace(*key)) key++;
625 }
626
627 load_properties_from_file(fn, key);
628
629 } else {
630 value = strchr(key, '=');
631 if (!value) continue;
632 *value++ = 0;
633
634 tmp = value - 2;
635 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
636
637 while (isspace(*value)) value++;
638
639 if (flen > 0) {
640 if (filter[flen - 1] == '*') {
641 if (strncmp(key, filter, flen - 1)) continue;
642 } else {
643 if (strcmp(key, filter)) continue;
644 }
645 }
646
Tom Cherrydc375862018-02-28 10:39:01 -0800647 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
648 key == "selinux.restorecon_recursive"s) {
649 LOG(ERROR) << "Ignoring disallowed property '" << key
650 << "' with special meaning in prop file '" << filename << "'";
651 continue;
652 }
653
654 uint32_t result = 0;
655 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
656 std::string error;
657 result = HandlePropertySet(key, value, context, cr, &error);
658 if (result != PROP_SUCCESS) {
659 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
660 << "' in property file '" << filename << "': " << error;
661 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800662 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800663 }
664}
665
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700666// Filter is used to decide which properties to load: NULL loads all keys,
667// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800668static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700669 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700670 auto file_contents = ReadFile(filename);
671 if (!file_contents) {
672 PLOG(WARNING) << "Couldn't load property file '" << filename
673 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800674 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800675 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700676 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800677
678 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000679 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800680 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800681}
682
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900683// persist.sys.usb.config values can't be combined on build-time when property
684// files are split into each partition.
685// So we need to apply the same rule of build/make/tools/post_process_props.py
686// on runtime.
687static void update_sys_usb_config() {
688 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
689 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
690 if (config.empty()) {
691 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
692 } else if (is_debuggable && config.find("adb") == std::string::npos &&
693 config.length() + 4 < PROP_VALUE_MAX) {
694 config.append(",adb");
695 property_set("persist.sys.usb.config", config);
696 }
697}
698
Nick Kralevich32b90232012-09-19 11:15:24 -0700699static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800700 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800701 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700702 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700703}
704
Ken Sumrallc5c51032011-03-08 17:01:29 -0800705/* When booting an encrypted system, /data is not mounted when the
706 * property service is started, so any properties stored there are
707 * not loaded. Vold triggers init to load these properties once it
708 * has mounted /data.
709 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700710void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700711 // Devices with FDE have load_persist_props called twice; the first time when the temporary
712 // /data partition is mounted and then again once /data is truly mounted. We do not want to
713 // read persistent properties from the temporary /data partition or mark persistent properties
714 // as having been loaded during the first call, so we return in that case.
715 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
716 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
717 if (crypto_state == "encrypted" && crypto_type == "block") {
718 static size_t num_calls = 0;
719 if (++num_calls == 1) return;
720 }
721
Nick Kralevich32b90232012-09-19 11:15:24 -0700722 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800723 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700724 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700725 for (const auto& persistent_property_record : persistent_properties.properties()) {
726 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700727 }
728 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800729 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800730}
731
Steven Laver57a740e2019-01-29 20:19:05 -0800732// If the ro.product.[brand|device|manufacturer|model|name] properties have not been explicitly
733// set, derive them from ro.product.${partition}.* properties
734static void property_initialize_ro_product_props() {
735 const char* RO_PRODUCT_PROPS_PREFIX = "ro.product.";
736 const char* RO_PRODUCT_PROPS[] = {
737 "brand", "device", "manufacturer", "model", "name",
738 };
739 const char* RO_PRODUCT_PROPS_ALLOWED_SOURCES[] = {
740 "odm", "product", "product_services", "system", "vendor",
741 };
742 const char* RO_PRODUCT_PROPS_DEFAULT_SOURCE_ORDER =
743 "product,product_services,odm,vendor,system";
744 const std::string EMPTY = "";
745
746 std::string ro_product_props_source_order =
747 GetProperty("ro.product.property_source_order", EMPTY);
748
749 if (!ro_product_props_source_order.empty()) {
750 // Verify that all specified sources are valid
751 for (const auto& source : Split(ro_product_props_source_order, ",")) {
752 // Verify that the specified source is valid
753 bool is_allowed_source = false;
754 for (const auto& allowed_source : RO_PRODUCT_PROPS_ALLOWED_SOURCES) {
755 if (source == allowed_source) {
756 is_allowed_source = true;
757 break;
758 }
759 }
760 if (!is_allowed_source) {
761 LOG(ERROR) << "Found unexpected source in ro.product.property_source_order; "
762 "using the default property source order";
763 ro_product_props_source_order = RO_PRODUCT_PROPS_DEFAULT_SOURCE_ORDER;
764 break;
765 }
766 }
767 } else {
768 ro_product_props_source_order = RO_PRODUCT_PROPS_DEFAULT_SOURCE_ORDER;
769 }
770
771 for (const auto& ro_product_prop : RO_PRODUCT_PROPS) {
772 std::string base_prop(RO_PRODUCT_PROPS_PREFIX);
773 base_prop += ro_product_prop;
774
775 std::string base_prop_val = GetProperty(base_prop, EMPTY);
776 if (!base_prop_val.empty()) {
777 continue;
778 }
779
780 for (const auto& source : Split(ro_product_props_source_order, ",")) {
781 std::string target_prop(RO_PRODUCT_PROPS_PREFIX);
782 target_prop += source;
783 target_prop += '.';
784 target_prop += ro_product_prop;
785
786 std::string target_prop_val = GetProperty(target_prop, EMPTY);
787 if (!target_prop_val.empty()) {
788 LOG(INFO) << "Setting product property " << base_prop << " to '" << target_prop_val
789 << "' (from " << target_prop << ")";
790 std::string error;
791 uint32_t res = PropertySet(base_prop, target_prop_val, &error);
792 if (res != PROP_SUCCESS) {
793 LOG(ERROR) << "Error setting product property " << base_prop << ": err=" << res
794 << " (" << error << ")";
795 }
796 break;
797 }
798 }
799 }
800}
801
802// If the ro.build.fingerprint property has not been set, derive it from constituent pieces
803static void property_derive_build_fingerprint() {
804 std::string build_fingerprint = GetProperty("ro.build.fingerprint", "");
805 if (!build_fingerprint.empty()) {
806 return;
807 }
808
809 const std::string UNKNOWN = "unknown";
810 build_fingerprint = GetProperty("ro.product.brand", UNKNOWN);
811 build_fingerprint += '/';
812 build_fingerprint += GetProperty("ro.product.name", UNKNOWN);
813 build_fingerprint += '/';
814 build_fingerprint += GetProperty("ro.product.device", UNKNOWN);
815 build_fingerprint += ':';
816 build_fingerprint += GetProperty("ro.build.version.release", UNKNOWN);
817 build_fingerprint += '/';
818 build_fingerprint += GetProperty("ro.build.id", UNKNOWN);
819 build_fingerprint += '/';
820 build_fingerprint += GetProperty("ro.build.version.incremental", UNKNOWN);
821 build_fingerprint += ':';
822 build_fingerprint += GetProperty("ro.build.type", UNKNOWN);
823 build_fingerprint += '/';
824 build_fingerprint += GetProperty("ro.build.tags", UNKNOWN);
825
826 LOG(INFO) << "Setting property 'ro.build.fingerprint' to '" << build_fingerprint << "'";
827
828 std::string error;
829 uint32_t res = PropertySet("ro.build.fingerprint", build_fingerprint, &error);
830 if (res != PROP_SUCCESS) {
831 LOG(ERROR) << "Error setting property 'ro.build.fingerprint': err=" << res << " (" << error
832 << ")";
833 }
834}
835
Jiyong Park3b316ee2019-01-13 02:42:31 +0900836void property_load_boot_defaults() {
837 // TODO(b/117892318): merge prop.default and build.prop files into one
838 // TODO(b/122864654): read the prop files from all partitions and then
839 // resolve the duplication by their origin so that RO and non-RO properties
840 // have a consistent overriding order.
841 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
842 // Try recovery path
843 if (!load_properties_from_file("/prop.default", NULL)) {
844 // Try legacy path
845 load_properties_from_file("/default.prop", NULL);
846 }
847 }
848 load_properties_from_file("/product/build.prop", NULL);
849 load_properties_from_file("/product_services/build.prop", NULL);
850 load_properties_from_file("/odm/default.prop", NULL);
851 load_properties_from_file("/vendor/default.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800852 load_properties_from_file("/system/build.prop", NULL);
853 load_properties_from_file("/odm/build.prop", NULL);
854 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800855 load_properties_from_file("/factory/factory.prop", "ro.*");
Jiyong Park3b316ee2019-01-13 02:42:31 +0900856
Steven Laver57a740e2019-01-29 20:19:05 -0800857 property_initialize_ro_product_props();
858 property_derive_build_fingerprint();
859
Jiyong Park3b316ee2019-01-13 02:42:31 +0900860 update_sys_usb_config();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700861}
862
Tom Cherryc3692b32017-08-10 12:22:44 -0700863static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700864 auto* d = reinterpret_cast<PropertyAuditData*>(data);
Tom Cherryc3692b32017-08-10 12:22:44 -0700865
866 if (!d || !d->name || !d->cr) {
867 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
868 return 0;
869 }
870
871 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
872 d->cr->gid);
873 return 0;
874}
875
Tom Cherry2ae2f602017-12-14 01:58:17 +0000876bool LoadPropertyInfoFromFile(const std::string& filename,
877 std::vector<PropertyInfoEntry>* property_infos) {
878 auto file_contents = std::string();
879 if (!ReadFileToString(filename, &file_contents)) {
880 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
881 return false;
882 }
883
Tom Cherry919458c2018-01-03 14:39:28 -0800884 auto errors = std::vector<std::string>{};
885 ParsePropertyInfoFile(file_contents, property_infos, &errors);
886 // Individual parsing errors are reported but do not cause a failed boot, which is what
887 // returning false would do here.
888 for (const auto& error : errors) {
889 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000890 }
Tom Cherry919458c2018-01-03 14:39:28 -0800891
Tom Cherry2ae2f602017-12-14 01:58:17 +0000892 return true;
893}
894
895void CreateSerializedPropertyInfo() {
896 auto property_infos = std::vector<PropertyInfoEntry>();
897 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
898 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
899 &property_infos)) {
900 return;
901 }
902 // Don't check for failure here, so we always have a sane list of properties.
903 // E.g. In case of recovery, the vendor partition will not have mounted and we
904 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800905 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
906 &property_infos)) {
907 // Fallback to nonplat_* if vendor_* doesn't exist.
908 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
909 &property_infos);
910 }
Jinguang Dongf42e08d2019-02-15 16:56:28 +0800911 if (access("/product/etc/selinux/product_property_contexts", R_OK) != -1) {
912 LoadPropertyInfoFromFile("/product/etc/selinux/product_property_contexts",
913 &property_infos);
914 }
915 if (access("/odm/etc/selinux/odm_property_contexts", R_OK) != -1) {
916 LoadPropertyInfoFromFile("/odm/etc/selinux/odm_property_contexts", &property_infos);
917 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000918 } else {
919 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
920 return;
921 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800922 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
923 // Fallback to nonplat_* if vendor_* doesn't exist.
924 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
925 }
Jinguang Dongf42e08d2019-02-15 16:56:28 +0800926 LoadPropertyInfoFromFile("/product_property_contexts", &property_infos);
927 LoadPropertyInfoFromFile("/odm_property_contexts", &property_infos);
Tom Cherry2ae2f602017-12-14 01:58:17 +0000928 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800929
Tom Cherry2ae2f602017-12-14 01:58:17 +0000930 auto serialized_contexts = std::string();
931 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800932 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000933 &error)) {
934 LOG(ERROR) << "Unable to serialize property contexts: " << error;
935 return;
936 }
937
938 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
939 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
940 PLOG(ERROR) << "Unable to write serialized property infos to file";
941 }
942 selinux_android_restorecon(kPropertyInfosPath, 0);
943}
944
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700945void StartPropertyService(Epoll* epoll) {
Tom Cherryc3692b32017-08-10 12:22:44 -0700946 selinux_callback cb;
947 cb.func_audit = SelinuxAuditCallback;
948 selinux_set_callback(SELINUX_CB_AUDIT, cb);
949
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000950 property_set("ro.property_service.version", "2");
951
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700952 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700953 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700954 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700955 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700956 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800957
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700958 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700959
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700960 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) {
961 PLOG(FATAL) << result.error();
962 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800963}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700964
965} // namespace init
966} // namespace android