blob: 14b549725b2ae3d0be7303d6f828597ad7046190 [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"
Logan Chienc50144e2018-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"
David Ngd3eb4472013-09-23 18:50:24 -070065#include "vendor_init.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066
Tom Cherrydc375862018-02-28 10:39:01 -080067using namespace std::literals;
68
Tom Cherry12578122018-04-11 15:50:00 -070069using android::base::GetIntProperty;
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 Cherry1debdcf2018-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 Cherry1debdcf2018-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) {
381 return false;
382 }
383
384 bytes_left -= result;
385 data += result;
386 }
387
388 return bytes_left == 0;
389 }
390
391 int socket_;
392 ucred cred_;
393
394 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000395};
396
Tom Cherry1debdcf2018-05-03 16:57:19 -0700397bool CheckControlPropertyPerms(const std::string& name, const std::string& value,
398 const std::string& source_context, const ucred& cr) {
399 // We check the legacy method first but these properties are dontaudit, so we only log an audit
400 // if the newer method fails as well. We only do this with the legacy ctl. properties.
401 if (name == "ctl.start" || name == "ctl.stop" || name == "ctl.restart") {
402 // The legacy permissions model is that ctl. properties have their name ctl.<action> and
403 // their value is the name of the service to apply that action to. Permissions for these
404 // actions are based on the service, so we must create a fake name of ctl.<service> to
405 // check permissions.
406 auto control_string_legacy = "ctl." + value;
407 const char* target_context_legacy = nullptr;
408 const char* type_legacy = nullptr;
409 property_info_area->GetPropertyInfo(control_string_legacy.c_str(), &target_context_legacy,
410 &type_legacy);
411
412 if (CheckMacPerms(control_string_legacy, target_context_legacy, source_context.c_str(), cr)) {
413 return true;
414 }
415 }
416
417 auto control_string_full = name + "$" + value;
418 const char* target_context_full = nullptr;
419 const char* type_full = nullptr;
420 property_info_area->GetPropertyInfo(control_string_full.c_str(), &target_context_full,
421 &type_full);
422
423 return CheckMacPerms(control_string_full, target_context_full, source_context.c_str(), cr);
424}
425
Tom Cherry32228482018-01-18 16:14:25 -0800426// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
427uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800428 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800429 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800430 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800431 return PROP_ERROR_INVALID_NAME;
432 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000433
Tom Cherry32228482018-01-18 16:14:25 -0800434 if (StartsWith(name, "ctl.")) {
Tom Cherry1debdcf2018-05-03 16:57:19 -0700435 if (!CheckControlPropertyPerms(name, value, source_context, cr)) {
436 *error = StringPrintf("Invalid permissions to perform '%s' on '%s'", name.c_str() + 4,
437 value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800438 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
439 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000440
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800441 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800442 return PROP_SUCCESS;
443 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800444
Tom Cherry32228482018-01-18 16:14:25 -0800445 const char* target_context = nullptr;
446 const char* type = nullptr;
447 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700448
Tom Cherry32228482018-01-18 16:14:25 -0800449 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800450 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800451 return PROP_ERROR_PERMISSION_DENIED;
452 }
453
454 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800455 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
456 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800457 return PROP_ERROR_INVALID_VALUE;
458 }
459
460 // sys.powerctl is a special property that is used to make the device reboot. We want to log
461 // any process that sets this property to be able to accurately blame the cause of a shutdown.
462 if (name == "sys.powerctl") {
463 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
464 std::string process_cmdline;
465 std::string process_log_string;
466 if (ReadFileToString(cmdline_path, &process_cmdline)) {
467 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
468 // path.
469 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
470 }
471 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
472 << process_log_string;
473 }
474
Tom Cherry69d47aa2018-03-01 11:00:57 -0800475 if (name == "selinux.restorecon_recursive") {
476 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
477 }
478
479 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000480}
481
482static void handle_property_set_fd() {
483 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800484
Robert Sesekca2da602017-01-25 08:08:51 -0500485 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700486 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800487 return;
488 }
489
Tom Cherry32228482018-01-18 16:14:25 -0800490 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700491 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800492 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
493 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800494 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800495 return;
496 }
497
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000498 SocketConnection socket(s, cr);
499 uint32_t timeout_ms = kDefaultSocketTimeout;
500
501 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000502 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
503 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
504 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800505 return;
506 }
507
Elliott Hughesb005d902017-02-22 14:54:15 -0800508 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000509 case PROP_MSG_SETPROP: {
510 char prop_name[PROP_NAME_MAX];
511 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800512
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000513 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
514 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
515 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
516 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700517 }
518
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000519 prop_name[PROP_NAME_MAX-1] = 0;
520 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400521
Tom Cherry69d47aa2018-03-01 11:00:57 -0800522 const auto& cr = socket.cred();
523 std::string error;
524 uint32_t result =
525 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
526 if (result != PROP_SUCCESS) {
527 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
528 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
529 << error;
530 }
531
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800532 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000533 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000534
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000535 case PROP_MSG_SETPROP2: {
536 std::string name;
537 std::string value;
538 if (!socket.RecvString(&name, &timeout_ms) ||
539 !socket.RecvString(&value, &timeout_ms)) {
540 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
541 socket.SendUint32(PROP_ERROR_READ_DATA);
542 return;
543 }
544
Tom Cherry69d47aa2018-03-01 11:00:57 -0800545 const auto& cr = socket.cred();
546 std::string error;
547 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
548 if (result != PROP_SUCCESS) {
549 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
550 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
551 << error;
552 }
Tom Cherry32228482018-01-18 16:14:25 -0800553 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000554 break;
555 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800556
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800557 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800558 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000559 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800560 break;
561 }
562}
563
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800564static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800565
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800566/*
567 * Filter is used to decide which properties to load: NULL loads all keys,
568 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
569 */
Tom Cherrydc375862018-02-28 10:39:01 -0800570static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800571 char *key, *value, *eol, *sol, *tmp, *fn;
572 size_t flen = 0;
573
Tom Cherrydc375862018-02-28 10:39:01 -0800574 const char* context = kInitContext.c_str();
Logan Chienc50144e2018-05-03 14:33:52 +0800575 if (SelinuxHasVendorInit()) {
Tom Cherry12578122018-04-11 15:50:00 -0700576 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
577 if (StartsWith(filename, path_prefix)) {
578 context = secontext;
579 }
Tom Cherrydc375862018-02-28 10:39:01 -0800580 }
581 }
582
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800583 if (filter) {
584 flen = strlen(filter);
585 }
586
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800587 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800588 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800589 key = sol;
590 *eol++ = 0;
591 sol = eol;
592
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800593 while (isspace(*key)) key++;
594 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800595
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800596 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800597 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800598
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800599 if (!strncmp(key, "import ", 7) && flen == 0) {
600 fn = key + 7;
601 while (isspace(*fn)) fn++;
602
603 key = strchr(fn, ' ');
604 if (key) {
605 *key++ = 0;
606 while (isspace(*key)) key++;
607 }
608
609 load_properties_from_file(fn, key);
610
611 } else {
612 value = strchr(key, '=');
613 if (!value) continue;
614 *value++ = 0;
615
616 tmp = value - 2;
617 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
618
619 while (isspace(*value)) value++;
620
621 if (flen > 0) {
622 if (filter[flen - 1] == '*') {
623 if (strncmp(key, filter, flen - 1)) continue;
624 } else {
625 if (strcmp(key, filter)) continue;
626 }
627 }
628
Tom Cherrydc375862018-02-28 10:39:01 -0800629 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
630 key == "selinux.restorecon_recursive"s) {
631 LOG(ERROR) << "Ignoring disallowed property '" << key
632 << "' with special meaning in prop file '" << filename << "'";
633 continue;
634 }
635
636 uint32_t result = 0;
637 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
638 std::string error;
639 result = HandlePropertySet(key, value, context, cr, &error);
640 if (result != PROP_SUCCESS) {
641 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
642 << "' in property file '" << filename << "': " << error;
643 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800644 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800645 }
646}
647
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700648// Filter is used to decide which properties to load: NULL loads all keys,
649// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800650static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700651 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700652 auto file_contents = ReadFile(filename);
653 if (!file_contents) {
654 PLOG(WARNING) << "Couldn't load property file '" << filename
655 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800656 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800657 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700658 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800659
660 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000661 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800662 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800663}
664
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900665// persist.sys.usb.config values can't be combined on build-time when property
666// files are split into each partition.
667// So we need to apply the same rule of build/make/tools/post_process_props.py
668// on runtime.
669static void update_sys_usb_config() {
670 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
671 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
672 if (config.empty()) {
673 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
674 } else if (is_debuggable && config.find("adb") == std::string::npos &&
675 config.length() + 4 < PROP_VALUE_MAX) {
676 config.append(",adb");
677 property_set("persist.sys.usb.config", config);
678 }
679}
680
Elliott Hughesda40c002015-03-27 23:20:44 -0700681void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800682 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
683 // Try recovery path
684 if (!load_properties_from_file("/prop.default", NULL)) {
685 // Try legacy path
686 load_properties_from_file("/default.prop", NULL);
687 }
688 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900689 load_properties_from_file("/product/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800690 load_properties_from_file("/odm/default.prop", NULL);
691 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900692
693 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800694}
695
Nick Kralevich32b90232012-09-19 11:15:24 -0700696static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800697 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800698 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700699 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700700}
701
Ken Sumrallc5c51032011-03-08 17:01:29 -0800702/* When booting an encrypted system, /data is not mounted when the
703 * property service is started, so any properties stored there are
704 * not loaded. Vold triggers init to load these properties once it
705 * has mounted /data.
706 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700707void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700708 // Devices with FDE have load_persist_props called twice; the first time when the temporary
709 // /data partition is mounted and then again once /data is truly mounted. We do not want to
710 // read persistent properties from the temporary /data partition or mark persistent properties
711 // as having been loaded during the first call, so we return in that case.
712 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
713 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
714 if (crypto_state == "encrypted" && crypto_type == "block") {
715 static size_t num_calls = 0;
716 if (++num_calls == 1) return;
717 }
718
Nick Kralevich32b90232012-09-19 11:15:24 -0700719 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800720 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700721 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700722 for (const auto& persistent_property_record : persistent_properties.properties()) {
723 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700724 }
725 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800726 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800727}
728
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700729void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800730 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
731 fs_mgr_free_fstab);
732 if (!fstab) {
733 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700734 return;
735 }
736
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800737 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700738 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700739 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700740 return;
741 }
742
743 int fd = open(rec->blk_device, O_RDONLY);
744 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700745 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700746 return;
747 }
748
749 boot_img_hdr hdr;
750 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
751 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700752 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700753 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700754 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700755 }
756
757 close(fd);
758}
759
Paul Lawrence948410a2015-07-01 14:40:56 -0700760void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800761 load_properties_from_file("/system/build.prop", NULL);
762 load_properties_from_file("/odm/build.prop", NULL);
763 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800764 load_properties_from_file("/factory/factory.prop", "ro.*");
David Ngd3eb4472013-09-23 18:50:24 -0700765
766 // Update with vendor-specific property runtime overrides
767 vendor_load_properties();
768
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700769 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700770}
771
Tom Cherryc3692b32017-08-10 12:22:44 -0700772static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
Tom Cherry1debdcf2018-05-03 16:57:19 -0700773 auto* d = reinterpret_cast<PropertyAuditData*>(data);
Tom Cherryc3692b32017-08-10 12:22:44 -0700774
775 if (!d || !d->name || !d->cr) {
776 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
777 return 0;
778 }
779
780 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
781 d->cr->gid);
782 return 0;
783}
784
Tom Cherry2ae2f602017-12-14 01:58:17 +0000785bool LoadPropertyInfoFromFile(const std::string& filename,
786 std::vector<PropertyInfoEntry>* property_infos) {
787 auto file_contents = std::string();
788 if (!ReadFileToString(filename, &file_contents)) {
789 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
790 return false;
791 }
792
Tom Cherry919458c2018-01-03 14:39:28 -0800793 auto errors = std::vector<std::string>{};
794 ParsePropertyInfoFile(file_contents, property_infos, &errors);
795 // Individual parsing errors are reported but do not cause a failed boot, which is what
796 // returning false would do here.
797 for (const auto& error : errors) {
798 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000799 }
Tom Cherry919458c2018-01-03 14:39:28 -0800800
Tom Cherry2ae2f602017-12-14 01:58:17 +0000801 return true;
802}
803
804void CreateSerializedPropertyInfo() {
805 auto property_infos = std::vector<PropertyInfoEntry>();
806 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
807 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
808 &property_infos)) {
809 return;
810 }
811 // Don't check for failure here, so we always have a sane list of properties.
812 // E.g. In case of recovery, the vendor partition will not have mounted and we
813 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800814 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
815 &property_infos)) {
816 // Fallback to nonplat_* if vendor_* doesn't exist.
817 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
818 &property_infos);
819 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000820 } else {
821 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
822 return;
823 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800824 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
825 // Fallback to nonplat_* if vendor_* doesn't exist.
826 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
827 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000828 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800829
Tom Cherry2ae2f602017-12-14 01:58:17 +0000830 auto serialized_contexts = std::string();
831 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800832 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000833 &error)) {
834 LOG(ERROR) << "Unable to serialize property contexts: " << error;
835 return;
836 }
837
838 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
839 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
840 PLOG(ERROR) << "Unable to write serialized property infos to file";
841 }
842 selinux_android_restorecon(kPropertyInfosPath, 0);
843}
844
845void start_property_service() {
Tom Cherryc3692b32017-08-10 12:22:44 -0700846 selinux_callback cb;
847 cb.func_audit = SelinuxAuditCallback;
848 selinux_set_callback(SELINUX_CB_AUDIT, cb);
849
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000850 property_set("ro.property_service.version", "2");
851
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700852 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700853 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700854 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700855 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700856 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800857
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700858 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700859
Elliott Hughes929f4072015-04-24 21:13:44 -0700860 register_epoll_handler(property_set_fd, handle_property_set_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800861}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700862
863} // namespace init
864} // namespace android