blob: cd2f630ca2ec37a02d22594ae8a2cf1ea6e2326c [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 Cherry3f5eaae52017-04-06 16:30:22 -070052#include <bootimg.h>
53#include <fs_mgr.h>
Tom Cherry2ae2f602017-12-14 01:58:17 +000054#include <property_info_parser/property_info_parser.h>
55#include <property_info_serializer/property_info_serializer.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070056#include <selinux/android.h>
57#include <selinux/label.h>
58#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070059
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070060#include "epoll.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080061#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070062#include "persistent_properties.h"
Tom Cherry927c5d52017-12-11 01:40:07 -080063#include "property_type.h"
Logan Chien837b2a42018-05-03 14:33:52 +080064#include "selinux.h"
Tom Cherrydc375862018-02-28 10:39:01 -080065#include "subcontext.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070066#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080067
Tom Cherrydc375862018-02-28 10:39:01 -080068using namespace std::literals;
69
Tom Cherry2ae2f602017-12-14 01:58:17 +000070using android::base::ReadFileToString;
71using android::base::Split;
Tom Cherry1cf8d692017-10-10 13:35:01 -070072using android::base::StartsWith;
Tom Cherrya84e14d2017-09-05 12:38:30 -070073using android::base::StringPrintf;
Tom Cherryede0d532017-07-06 14:20:11 -070074using android::base::Timer;
Tom Cherry2ae2f602017-12-14 01:58:17 +000075using android::base::Trim;
76using android::base::WriteStringToFile;
77using android::properties::BuildTrie;
Tom Cherry919458c2018-01-03 14:39:28 -080078using android::properties::ParsePropertyInfoFile;
Tom Cherry2ae2f602017-12-14 01:58:17 +000079using android::properties::PropertyInfoAreaFile;
80using android::properties::PropertyInfoEntry;
Tom Cherryede0d532017-07-06 14:20:11 -070081
Andres Moralesdb5f5d42015-05-08 08:30:33 -070082#define RECOVERY_MOUNT_POINT "/recovery"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080083
Tom Cherry81f5d3e2017-06-22 12:53:17 -070084namespace android {
85namespace init {
86
Tom Cherry16fad422017-08-04 15:59:03 -070087static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080088
Colin Crossd11beb22010-04-13 19:33:37 -070089static int property_set_fd = -1;
90
Tom Cherry2ae2f602017-12-14 01:58:17 +000091static PropertyInfoAreaFile property_info_area;
92
Tom Cherry32228482018-01-18 16:14:25 -080093uint32_t InitPropertySet(const std::string& name, const std::string& value);
94
95uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet;
96
Tom Cherry2ae2f602017-12-14 01:58:17 +000097void CreateSerializedPropertyInfo();
Tom Cherryc3692b32017-08-10 12:22:44 -070098
Tom Cherry5ab2e1c2018-05-03 16:57:19 -070099struct PropertyAuditData {
100 const ucred* cr;
101 const char* name;
102};
103
Elliott Hughesda40c002015-03-27 23:20:44 -0700104void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000105 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
106 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -0700107 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -0700108 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -0700109 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000110 if (!property_info_area.LoadDefaultPath()) {
111 LOG(FATAL) << "Failed to load serialized property info file";
112 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113}
Tom Cherry927c5d52017-12-11 01:40:07 -0800114static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800115 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800116 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000117 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000118 }
119
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700120 PropertyAuditData audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400121
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000122 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800123 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700124
Tom Cherry927c5d52017-12-11 01:40:07 -0800125 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
126 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400127
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000128 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400129}
130
Tom Cherry69d47aa2018-03-01 11:00:57 -0800131static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000132 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800133
Tom Cherryde6bd502018-02-13 16:50:08 -0800134 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800135 *error = "Illegal property name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000136 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000137 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000138
Tom Cherry1cf8d692017-10-10 13:35:01 -0700139 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800140 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000141 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000142 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800143
Tom Cherry8702dcb2017-10-13 16:20:19 -0700144 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800145 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700146 return PROP_ERROR_INVALID_VALUE;
147 }
148
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000149 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000150 if (pi != nullptr) {
151 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700152 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800153 *error = "Read-only property was already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000154 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000155 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800156
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000157 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800158 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000159 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700160 if (rc < 0) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800161 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000162 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200163 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800164 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000165
Elliott Hughes4f915812016-12-05 13:12:48 -0800166 // Don't write properties to disk until after we have read all default
167 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700168 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700169 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800170 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700171 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000172 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800173}
174
Tom Marshall62696902017-06-09 18:29:23 +0000175typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
176
177struct PropertyChildInfo {
178 pid_t pid;
179 PropertyAsyncFunc func;
180 std::string name;
181 std::string value;
182};
183
184static std::queue<PropertyChildInfo> property_children;
185
186static void PropertyChildLaunch() {
187 auto& info = property_children.front();
188 pid_t pid = fork();
189 if (pid < 0) {
190 LOG(ERROR) << "Failed to fork for property_set_async";
191 while (!property_children.empty()) {
192 property_children.pop();
193 }
194 return;
195 }
196 if (pid != 0) {
197 info.pid = pid;
198 } else {
199 if (info.func(info.name, info.value) != 0) {
200 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
201 << "\") failed";
202 }
Tom Cherry4a679452017-09-26 16:30:03 -0700203 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000204 }
205}
206
207bool PropertyChildReap(pid_t pid) {
208 if (property_children.empty()) {
209 return false;
210 }
211 auto& info = property_children.front();
212 if (info.pid != pid) {
213 return false;
214 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800215 std::string error;
216 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
217 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
218 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000219 }
220 property_children.pop();
221 if (!property_children.empty()) {
222 PropertyChildLaunch();
223 }
224 return true;
225}
226
227static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800228 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000229 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800230 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000231 }
232
233 PropertyChildInfo info;
234 info.func = func;
235 info.name = name;
236 info.value = value;
237 property_children.push(info);
238 if (property_children.size() == 1) {
239 PropertyChildLaunch();
240 }
241 return PROP_SUCCESS;
242}
243
244static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
245 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
246}
247
Tom Cherry32228482018-01-18 16:14:25 -0800248uint32_t InitPropertySet(const std::string& name, const std::string& value) {
249 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800250 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
251 "functions directly";
252 return PROP_ERROR_INVALID_NAME;
253 }
254 if (name == "selinux.restorecon_recursive") {
255 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
256 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800257 return PROP_ERROR_INVALID_NAME;
258 }
259
Tom Cherry69d47aa2018-03-01 11:00:57 -0800260 uint32_t result = 0;
261 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
262 std::string error;
263 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
264 if (result != PROP_SUCCESS) {
265 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800266 }
267
Tom Cherry69d47aa2018-03-01 11:00:57 -0800268 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800269}
270
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000271class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800272 public:
273 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000274
Tom Cherry32228482018-01-18 16:14:25 -0800275 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000276
Tom Cherry32228482018-01-18 16:14:25 -0800277 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
278 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000279 }
280
Tom Cherry32228482018-01-18 16:14:25 -0800281 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
282 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000283 }
284
Tom Cherry32228482018-01-18 16:14:25 -0800285 bool RecvString(std::string* value, uint32_t* timeout_ms) {
286 uint32_t len = 0;
287 if (!RecvUint32(&len, timeout_ms)) {
288 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000289 }
Tom Cherry32228482018-01-18 16:14:25 -0800290
291 if (len == 0) {
292 *value = "";
293 return true;
294 }
295
296 // http://b/35166374: don't allow init to make arbitrarily large allocations.
297 if (len > 0xffff) {
298 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
299 errno = ENOMEM;
300 return false;
301 }
302
303 std::vector<char> chars(len);
304 if (!RecvChars(&chars[0], len, timeout_ms)) {
305 return false;
306 }
307
308 *value = std::string(&chars[0], len);
309 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000310 }
311
Tom Cherry32228482018-01-18 16:14:25 -0800312 bool SendUint32(uint32_t value) {
313 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
314 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000315 }
316
Tom Cherry32228482018-01-18 16:14:25 -0800317 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000318
Tom Cherry32228482018-01-18 16:14:25 -0800319 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000320
Tom Cherry32228482018-01-18 16:14:25 -0800321 std::string source_context() const {
322 char* source_context = nullptr;
323 getpeercon(socket_, &source_context);
324 std::string result = source_context;
325 freecon(source_context);
326 return result;
327 }
328
329 private:
330 bool PollIn(uint32_t* timeout_ms) {
331 struct pollfd ufds[1];
332 ufds[0].fd = socket_;
333 ufds[0].events = POLLIN;
334 ufds[0].revents = 0;
335 while (*timeout_ms > 0) {
336 auto start_time = std::chrono::steady_clock::now();
337 int nr = poll(ufds, 1, *timeout_ms);
338 auto now = std::chrono::steady_clock::now();
339 auto time_elapsed =
340 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
341 uint64_t millis = time_elapsed.count();
342 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
343
344 if (nr > 0) {
345 return true;
346 }
347
348 if (nr == 0) {
349 // Timeout
350 break;
351 }
352
353 if (nr < 0 && errno != EINTR) {
354 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
355 << " to send property message";
356 return false;
357 } else { // errno == EINTR
358 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
359 // to avoid slowing init down by causing EINTR with under millisecond timeout.
360 if (*timeout_ms > 0) {
361 --(*timeout_ms);
362 }
363 }
364 }
365
366 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
367 << " to send property message.";
368 return false;
369 }
370
371 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
372 size_t bytes_left = size;
373 char* data = static_cast<char*>(data_ptr);
374 while (*timeout_ms > 0 && bytes_left > 0) {
375 if (!PollIn(timeout_ms)) {
376 return false;
377 }
378
379 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
380 if (result <= 0) {
DuXiao40533592018-05-21 14:43:56 +0800381 PLOG(ERROR) << "sys_prop: recv error";
Tom Cherry32228482018-01-18 16:14:25 -0800382 return false;
383 }
384
385 bytes_left -= result;
386 data += result;
387 }
388
DuXiao40533592018-05-21 14:43:56 +0800389 if (bytes_left != 0) {
390 LOG(ERROR) << "sys_prop: recv data is not properly obtained.";
391 }
392
Tom Cherry32228482018-01-18 16:14:25 -0800393 return bytes_left == 0;
394 }
395
396 int socket_;
397 ucred cred_;
398
399 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000400};
401
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700402bool CheckControlPropertyPerms(const std::string& name, const std::string& value,
403 const std::string& source_context, const ucred& cr) {
404 // We check the legacy method first but these properties are dontaudit, so we only log an audit
405 // if the newer method fails as well. We only do this with the legacy ctl. properties.
406 if (name == "ctl.start" || name == "ctl.stop" || name == "ctl.restart") {
407 // The legacy permissions model is that ctl. properties have their name ctl.<action> and
408 // their value is the name of the service to apply that action to. Permissions for these
409 // actions are based on the service, so we must create a fake name of ctl.<service> to
410 // check permissions.
411 auto control_string_legacy = "ctl." + value;
412 const char* target_context_legacy = nullptr;
413 const char* type_legacy = nullptr;
414 property_info_area->GetPropertyInfo(control_string_legacy.c_str(), &target_context_legacy,
415 &type_legacy);
416
417 if (CheckMacPerms(control_string_legacy, target_context_legacy, source_context.c_str(), cr)) {
418 return true;
419 }
420 }
421
422 auto control_string_full = name + "$" + value;
423 const char* target_context_full = nullptr;
424 const char* type_full = nullptr;
425 property_info_area->GetPropertyInfo(control_string_full.c_str(), &target_context_full,
426 &type_full);
427
428 return CheckMacPerms(control_string_full, target_context_full, source_context.c_str(), cr);
429}
430
Tom Cherry32228482018-01-18 16:14:25 -0800431// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
432uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800433 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800434 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800435 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800436 return PROP_ERROR_INVALID_NAME;
437 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000438
Tom Cherry32228482018-01-18 16:14:25 -0800439 if (StartsWith(name, "ctl.")) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700440 if (!CheckControlPropertyPerms(name, value, source_context, cr)) {
441 *error = StringPrintf("Invalid permissions to perform '%s' on '%s'", name.c_str() + 4,
442 value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800443 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
444 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000445
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800446 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800447 return PROP_SUCCESS;
448 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800449
Tom Cherry32228482018-01-18 16:14:25 -0800450 const char* target_context = nullptr;
451 const char* type = nullptr;
452 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700453
Tom Cherry32228482018-01-18 16:14:25 -0800454 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800455 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800456 return PROP_ERROR_PERMISSION_DENIED;
457 }
458
459 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800460 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
461 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800462 return PROP_ERROR_INVALID_VALUE;
463 }
464
465 // sys.powerctl is a special property that is used to make the device reboot. We want to log
466 // any process that sets this property to be able to accurately blame the cause of a shutdown.
467 if (name == "sys.powerctl") {
468 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
469 std::string process_cmdline;
470 std::string process_log_string;
471 if (ReadFileToString(cmdline_path, &process_cmdline)) {
472 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
473 // path.
474 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
475 }
476 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
477 << process_log_string;
478 }
479
Tom Cherry69d47aa2018-03-01 11:00:57 -0800480 if (name == "selinux.restorecon_recursive") {
481 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
482 }
483
484 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000485}
486
487static void handle_property_set_fd() {
488 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800489
Robert Sesekca2da602017-01-25 08:08:51 -0500490 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700491 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800492 return;
493 }
494
Tom Cherry32228482018-01-18 16:14:25 -0800495 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700496 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800497 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
498 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800499 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800500 return;
501 }
502
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000503 SocketConnection socket(s, cr);
504 uint32_t timeout_ms = kDefaultSocketTimeout;
505
506 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000507 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
508 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
509 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800510 return;
511 }
512
Elliott Hughesb005d902017-02-22 14:54:15 -0800513 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000514 case PROP_MSG_SETPROP: {
515 char prop_name[PROP_NAME_MAX];
516 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800517
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000518 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
519 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
520 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
521 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700522 }
523
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000524 prop_name[PROP_NAME_MAX-1] = 0;
525 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400526
Tom Cherry69d47aa2018-03-01 11:00:57 -0800527 const auto& cr = socket.cred();
528 std::string error;
529 uint32_t result =
530 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
531 if (result != PROP_SUCCESS) {
532 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
533 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
534 << error;
535 }
536
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800537 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000538 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000539
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000540 case PROP_MSG_SETPROP2: {
541 std::string name;
542 std::string value;
543 if (!socket.RecvString(&name, &timeout_ms) ||
544 !socket.RecvString(&value, &timeout_ms)) {
545 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
546 socket.SendUint32(PROP_ERROR_READ_DATA);
547 return;
548 }
549
Tom Cherry69d47aa2018-03-01 11:00:57 -0800550 const auto& cr = socket.cred();
551 std::string error;
552 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
553 if (result != PROP_SUCCESS) {
554 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
555 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
556 << error;
557 }
Tom Cherry32228482018-01-18 16:14:25 -0800558 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000559 break;
560 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800561
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800562 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800563 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000564 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800565 break;
566 }
567}
568
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800569static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800570
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800571/*
572 * Filter is used to decide which properties to load: NULL loads all keys,
573 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
574 */
Tom Cherrydc375862018-02-28 10:39:01 -0800575static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800576 char *key, *value, *eol, *sol, *tmp, *fn;
577 size_t flen = 0;
578
Tom Cherrydc375862018-02-28 10:39:01 -0800579 const char* context = kInitContext.c_str();
Tom Cherry40acb372018-08-01 13:41:12 -0700580 if (SelinuxGetVendorAndroidVersion() >= __ANDROID_API_P__) {
Tom Cherrya1dbeb82018-04-11 15:50:00 -0700581 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
582 if (StartsWith(filename, path_prefix)) {
583 context = secontext;
584 }
Tom Cherrydc375862018-02-28 10:39:01 -0800585 }
586 }
587
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800588 if (filter) {
589 flen = strlen(filter);
590 }
591
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800592 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800593 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800594 key = sol;
595 *eol++ = 0;
596 sol = eol;
597
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800598 while (isspace(*key)) key++;
599 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800600
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800601 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800602 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800603
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800604 if (!strncmp(key, "import ", 7) && flen == 0) {
605 fn = key + 7;
606 while (isspace(*fn)) fn++;
607
608 key = strchr(fn, ' ');
609 if (key) {
610 *key++ = 0;
611 while (isspace(*key)) key++;
612 }
613
614 load_properties_from_file(fn, key);
615
616 } else {
617 value = strchr(key, '=');
618 if (!value) continue;
619 *value++ = 0;
620
621 tmp = value - 2;
622 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
623
624 while (isspace(*value)) value++;
625
626 if (flen > 0) {
627 if (filter[flen - 1] == '*') {
628 if (strncmp(key, filter, flen - 1)) continue;
629 } else {
630 if (strcmp(key, filter)) continue;
631 }
632 }
633
Tom Cherrydc375862018-02-28 10:39:01 -0800634 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
635 key == "selinux.restorecon_recursive"s) {
636 LOG(ERROR) << "Ignoring disallowed property '" << key
637 << "' with special meaning in prop file '" << filename << "'";
638 continue;
639 }
640
641 uint32_t result = 0;
642 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
643 std::string error;
644 result = HandlePropertySet(key, value, context, cr, &error);
645 if (result != PROP_SUCCESS) {
646 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
647 << "' in property file '" << filename << "': " << error;
648 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800649 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800650 }
651}
652
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700653// Filter is used to decide which properties to load: NULL loads all keys,
654// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800655static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700656 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700657 auto file_contents = ReadFile(filename);
658 if (!file_contents) {
659 PLOG(WARNING) << "Couldn't load property file '" << filename
660 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800661 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800662 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700663 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800664
665 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000666 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800667 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800668}
669
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900670// persist.sys.usb.config values can't be combined on build-time when property
671// files are split into each partition.
672// So we need to apply the same rule of build/make/tools/post_process_props.py
673// on runtime.
674static void update_sys_usb_config() {
675 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
676 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
677 if (config.empty()) {
678 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
679 } else if (is_debuggable && config.find("adb") == std::string::npos &&
680 config.length() + 4 < PROP_VALUE_MAX) {
681 config.append(",adb");
682 property_set("persist.sys.usb.config", config);
683 }
684}
685
Elliott Hughesda40c002015-03-27 23:20:44 -0700686void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800687 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
688 // Try recovery path
689 if (!load_properties_from_file("/prop.default", NULL)) {
690 // Try legacy path
691 load_properties_from_file("/default.prop", NULL);
692 }
693 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900694 load_properties_from_file("/product/build.prop", NULL);
Dario Freni36137102018-05-25 16:07:19 +0100695 load_properties_from_file("/product-services/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800696 load_properties_from_file("/odm/default.prop", NULL);
697 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900698
699 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800700}
701
Nick Kralevich32b90232012-09-19 11:15:24 -0700702static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800703 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800704 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700705 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700706}
707
Ken Sumrallc5c51032011-03-08 17:01:29 -0800708/* When booting an encrypted system, /data is not mounted when the
709 * property service is started, so any properties stored there are
710 * not loaded. Vold triggers init to load these properties once it
711 * has mounted /data.
712 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700713void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700714 // Devices with FDE have load_persist_props called twice; the first time when the temporary
715 // /data partition is mounted and then again once /data is truly mounted. We do not want to
716 // read persistent properties from the temporary /data partition or mark persistent properties
717 // as having been loaded during the first call, so we return in that case.
718 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
719 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
720 if (crypto_state == "encrypted" && crypto_type == "block") {
721 static size_t num_calls = 0;
722 if (++num_calls == 1) return;
723 }
724
Nick Kralevich32b90232012-09-19 11:15:24 -0700725 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800726 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700727 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700728 for (const auto& persistent_property_record : persistent_properties.properties()) {
729 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700730 }
731 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800732 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800733}
734
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700735void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800736 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
737 fs_mgr_free_fstab);
738 if (!fstab) {
739 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700740 return;
741 }
742
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800743 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700744 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700745 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700746 return;
747 }
748
749 int fd = open(rec->blk_device, O_RDONLY);
750 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700751 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700752 return;
753 }
754
755 boot_img_hdr hdr;
756 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
757 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700758 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700759 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700760 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700761 }
762
763 close(fd);
764}
765
Paul Lawrence948410a2015-07-01 14:40:56 -0700766void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800767 load_properties_from_file("/system/build.prop", NULL);
768 load_properties_from_file("/odm/build.prop", NULL);
769 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800770 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700771 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700772}
773
Tom Cherryc3692b32017-08-10 12:22:44 -0700774static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700775 auto* d = reinterpret_cast<PropertyAuditData*>(data);
Tom Cherryc3692b32017-08-10 12:22:44 -0700776
777 if (!d || !d->name || !d->cr) {
778 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
779 return 0;
780 }
781
782 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
783 d->cr->gid);
784 return 0;
785}
786
Tom Cherry2ae2f602017-12-14 01:58:17 +0000787bool LoadPropertyInfoFromFile(const std::string& filename,
788 std::vector<PropertyInfoEntry>* property_infos) {
789 auto file_contents = std::string();
790 if (!ReadFileToString(filename, &file_contents)) {
791 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
792 return false;
793 }
794
Tom Cherry919458c2018-01-03 14:39:28 -0800795 auto errors = std::vector<std::string>{};
796 ParsePropertyInfoFile(file_contents, property_infos, &errors);
797 // Individual parsing errors are reported but do not cause a failed boot, which is what
798 // returning false would do here.
799 for (const auto& error : errors) {
800 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000801 }
Tom Cherry919458c2018-01-03 14:39:28 -0800802
Tom Cherry2ae2f602017-12-14 01:58:17 +0000803 return true;
804}
805
806void CreateSerializedPropertyInfo() {
807 auto property_infos = std::vector<PropertyInfoEntry>();
808 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
809 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
810 &property_infos)) {
811 return;
812 }
813 // Don't check for failure here, so we always have a sane list of properties.
814 // E.g. In case of recovery, the vendor partition will not have mounted and we
815 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800816 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
817 &property_infos)) {
818 // Fallback to nonplat_* if vendor_* doesn't exist.
819 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
820 &property_infos);
821 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000822 } else {
823 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
824 return;
825 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800826 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
827 // Fallback to nonplat_* if vendor_* doesn't exist.
828 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
829 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000830 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800831
Tom Cherry2ae2f602017-12-14 01:58:17 +0000832 auto serialized_contexts = std::string();
833 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800834 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000835 &error)) {
836 LOG(ERROR) << "Unable to serialize property contexts: " << error;
837 return;
838 }
839
840 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
841 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
842 PLOG(ERROR) << "Unable to write serialized property infos to file";
843 }
844 selinux_android_restorecon(kPropertyInfosPath, 0);
845}
846
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700847void StartPropertyService(Epoll* epoll) {
Tom Cherryc3692b32017-08-10 12:22:44 -0700848 selinux_callback cb;
849 cb.func_audit = SelinuxAuditCallback;
850 selinux_set_callback(SELINUX_CB_AUDIT, cb);
851
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000852 property_set("ro.property_service.version", "2");
853
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700854 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700855 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700856 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700857 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700858 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800859
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700860 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700861
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700862 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) {
863 PLOG(FATAL) << result.error();
864 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800865}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700866
867} // namespace init
868} // namespace android