blob: d1c427dba4d2b75ee4a96906eabac2859d8895a7 [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
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070059#include "epoll.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070061#include "persistent_properties.h"
Tom Cherry927c5d52017-12-11 01:40:07 -080062#include "property_type.h"
Logan Chien837b2a42018-05-03 14:33:52 +080063#include "selinux.h"
Tom Cherrydc375862018-02-28 10:39:01 -080064#include "subcontext.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070065#include "util.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 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
Andres Moralesdb5f5d42015-05-08 08:30:33 -070081#define RECOVERY_MOUNT_POINT "/recovery"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080082
Tom Cherry81f5d3e2017-06-22 12:53:17 -070083namespace android {
84namespace init {
85
Tom Cherry16fad422017-08-04 15:59:03 -070086static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080087
Colin Crossd11beb22010-04-13 19:33:37 -070088static int property_set_fd = -1;
89
Tom Cherry2ae2f602017-12-14 01:58:17 +000090static PropertyInfoAreaFile property_info_area;
91
Tom Cherry32228482018-01-18 16:14:25 -080092uint32_t InitPropertySet(const std::string& name, const std::string& value);
93
94uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet;
95
Tom Cherry2ae2f602017-12-14 01:58:17 +000096void CreateSerializedPropertyInfo();
Tom Cherryc3692b32017-08-10 12:22:44 -070097
Tom Cherry5ab2e1c2018-05-03 16:57:19 -070098struct PropertyAuditData {
99 const ucred* cr;
100 const char* name;
101};
102
Elliott Hughesda40c002015-03-27 23:20:44 -0700103void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000104 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
105 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -0700106 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -0700107 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -0700108 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000109 if (!property_info_area.LoadDefaultPath()) {
110 LOG(FATAL) << "Failed to load serialized property info file";
111 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800112}
Tom Cherry927c5d52017-12-11 01:40:07 -0800113static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800114 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800115 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000116 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000117 }
118
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700119 PropertyAuditData audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400120
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000121 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800122 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700123
Tom Cherry927c5d52017-12-11 01:40:07 -0800124 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
125 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400126
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000127 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400128}
129
Tom Cherry69d47aa2018-03-01 11:00:57 -0800130static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000131 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800132
Tom Cherryde6bd502018-02-13 16:50:08 -0800133 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800134 *error = "Illegal property name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000135 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000136 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000137
Tom Cherry1cf8d692017-10-10 13:35:01 -0700138 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800139 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000140 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000141 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800142
Tom Cherry8702dcb2017-10-13 16:20:19 -0700143 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800144 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700145 return PROP_ERROR_INVALID_VALUE;
146 }
147
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000148 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000149 if (pi != nullptr) {
150 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700151 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800152 *error = "Read-only property was already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000153 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000154 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800155
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000156 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000158 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700159 if (rc < 0) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800160 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000161 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200162 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800163 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000164
Elliott Hughes4f915812016-12-05 13:12:48 -0800165 // Don't write properties to disk until after we have read all default
166 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700167 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700168 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800169 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700170 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000171 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800172}
173
Tom Marshall62696902017-06-09 18:29:23 +0000174typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
175
176struct PropertyChildInfo {
177 pid_t pid;
178 PropertyAsyncFunc func;
179 std::string name;
180 std::string value;
181};
182
183static std::queue<PropertyChildInfo> property_children;
184
185static void PropertyChildLaunch() {
186 auto& info = property_children.front();
187 pid_t pid = fork();
188 if (pid < 0) {
189 LOG(ERROR) << "Failed to fork for property_set_async";
190 while (!property_children.empty()) {
191 property_children.pop();
192 }
193 return;
194 }
195 if (pid != 0) {
196 info.pid = pid;
197 } else {
198 if (info.func(info.name, info.value) != 0) {
199 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
200 << "\") failed";
201 }
Tom Cherry4a679452017-09-26 16:30:03 -0700202 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000203 }
204}
205
206bool PropertyChildReap(pid_t pid) {
207 if (property_children.empty()) {
208 return false;
209 }
210 auto& info = property_children.front();
211 if (info.pid != pid) {
212 return false;
213 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800214 std::string error;
215 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
216 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
217 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000218 }
219 property_children.pop();
220 if (!property_children.empty()) {
221 PropertyChildLaunch();
222 }
223 return true;
224}
225
226static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800227 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000228 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800229 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000230 }
231
232 PropertyChildInfo info;
233 info.func = func;
234 info.name = name;
235 info.value = value;
236 property_children.push(info);
237 if (property_children.size() == 1) {
238 PropertyChildLaunch();
239 }
240 return PROP_SUCCESS;
241}
242
243static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
244 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
245}
246
Tom Cherry32228482018-01-18 16:14:25 -0800247uint32_t InitPropertySet(const std::string& name, const std::string& value) {
248 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800249 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
250 "functions directly";
251 return PROP_ERROR_INVALID_NAME;
252 }
253 if (name == "selinux.restorecon_recursive") {
254 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
255 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800256 return PROP_ERROR_INVALID_NAME;
257 }
258
Tom Cherry69d47aa2018-03-01 11:00:57 -0800259 uint32_t result = 0;
260 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
261 std::string error;
262 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
263 if (result != PROP_SUCCESS) {
264 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800265 }
266
Tom Cherry69d47aa2018-03-01 11:00:57 -0800267 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800268}
269
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000270class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800271 public:
272 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000273
Tom Cherry32228482018-01-18 16:14:25 -0800274 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000275
Tom Cherry32228482018-01-18 16:14:25 -0800276 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
277 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000278 }
279
Tom Cherry32228482018-01-18 16:14:25 -0800280 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
281 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000282 }
283
Tom Cherry32228482018-01-18 16:14:25 -0800284 bool RecvString(std::string* value, uint32_t* timeout_ms) {
285 uint32_t len = 0;
286 if (!RecvUint32(&len, timeout_ms)) {
287 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000288 }
Tom Cherry32228482018-01-18 16:14:25 -0800289
290 if (len == 0) {
291 *value = "";
292 return true;
293 }
294
295 // http://b/35166374: don't allow init to make arbitrarily large allocations.
296 if (len > 0xffff) {
297 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
298 errno = ENOMEM;
299 return false;
300 }
301
302 std::vector<char> chars(len);
303 if (!RecvChars(&chars[0], len, timeout_ms)) {
304 return false;
305 }
306
307 *value = std::string(&chars[0], len);
308 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000309 }
310
Tom Cherry32228482018-01-18 16:14:25 -0800311 bool SendUint32(uint32_t value) {
312 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
313 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000314 }
315
Tom Cherry32228482018-01-18 16:14:25 -0800316 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000317
Tom Cherry32228482018-01-18 16:14:25 -0800318 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000319
Tom Cherry32228482018-01-18 16:14:25 -0800320 std::string source_context() const {
321 char* source_context = nullptr;
322 getpeercon(socket_, &source_context);
323 std::string result = source_context;
324 freecon(source_context);
325 return result;
326 }
327
328 private:
329 bool PollIn(uint32_t* timeout_ms) {
330 struct pollfd ufds[1];
331 ufds[0].fd = socket_;
332 ufds[0].events = POLLIN;
333 ufds[0].revents = 0;
334 while (*timeout_ms > 0) {
335 auto start_time = std::chrono::steady_clock::now();
336 int nr = poll(ufds, 1, *timeout_ms);
337 auto now = std::chrono::steady_clock::now();
338 auto time_elapsed =
339 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
340 uint64_t millis = time_elapsed.count();
341 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
342
343 if (nr > 0) {
344 return true;
345 }
346
347 if (nr == 0) {
348 // Timeout
349 break;
350 }
351
352 if (nr < 0 && errno != EINTR) {
353 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
354 << " to send property message";
355 return false;
356 } else { // errno == EINTR
357 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
358 // to avoid slowing init down by causing EINTR with under millisecond timeout.
359 if (*timeout_ms > 0) {
360 --(*timeout_ms);
361 }
362 }
363 }
364
365 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
366 << " to send property message.";
367 return false;
368 }
369
370 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
371 size_t bytes_left = size;
372 char* data = static_cast<char*>(data_ptr);
373 while (*timeout_ms > 0 && bytes_left > 0) {
374 if (!PollIn(timeout_ms)) {
375 return false;
376 }
377
378 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
379 if (result <= 0) {
DuXiao40533592018-05-21 14:43:56 +0800380 PLOG(ERROR) << "sys_prop: recv error";
Tom Cherry32228482018-01-18 16:14:25 -0800381 return false;
382 }
383
384 bytes_left -= result;
385 data += result;
386 }
387
DuXiao40533592018-05-21 14:43:56 +0800388 if (bytes_left != 0) {
389 LOG(ERROR) << "sys_prop: recv data is not properly obtained.";
390 }
391
Tom Cherry32228482018-01-18 16:14:25 -0800392 return bytes_left == 0;
393 }
394
395 int socket_;
396 ucred cred_;
397
398 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000399};
400
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700401bool CheckControlPropertyPerms(const std::string& name, const std::string& value,
402 const std::string& source_context, const ucred& cr) {
403 // We check the legacy method first but these properties are dontaudit, so we only log an audit
404 // if the newer method fails as well. We only do this with the legacy ctl. properties.
405 if (name == "ctl.start" || name == "ctl.stop" || name == "ctl.restart") {
406 // The legacy permissions model is that ctl. properties have their name ctl.<action> and
407 // their value is the name of the service to apply that action to. Permissions for these
408 // actions are based on the service, so we must create a fake name of ctl.<service> to
409 // check permissions.
410 auto control_string_legacy = "ctl." + value;
411 const char* target_context_legacy = nullptr;
412 const char* type_legacy = nullptr;
413 property_info_area->GetPropertyInfo(control_string_legacy.c_str(), &target_context_legacy,
414 &type_legacy);
415
416 if (CheckMacPerms(control_string_legacy, target_context_legacy, source_context.c_str(), cr)) {
417 return true;
418 }
419 }
420
421 auto control_string_full = name + "$" + value;
422 const char* target_context_full = nullptr;
423 const char* type_full = nullptr;
424 property_info_area->GetPropertyInfo(control_string_full.c_str(), &target_context_full,
425 &type_full);
426
427 return CheckMacPerms(control_string_full, target_context_full, source_context.c_str(), cr);
428}
429
Tom Cherry32228482018-01-18 16:14:25 -0800430// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
431uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800432 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800433 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800434 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800435 return PROP_ERROR_INVALID_NAME;
436 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000437
Tom Cherry32228482018-01-18 16:14:25 -0800438 if (StartsWith(name, "ctl.")) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700439 if (!CheckControlPropertyPerms(name, value, source_context, cr)) {
440 *error = StringPrintf("Invalid permissions to perform '%s' on '%s'", name.c_str() + 4,
441 value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800442 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
443 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000444
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800445 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800446 return PROP_SUCCESS;
447 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800448
Tom Cherry32228482018-01-18 16:14:25 -0800449 const char* target_context = nullptr;
450 const char* type = nullptr;
451 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700452
Tom Cherry32228482018-01-18 16:14:25 -0800453 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800454 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800455 return PROP_ERROR_PERMISSION_DENIED;
456 }
457
458 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800459 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
460 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800461 return PROP_ERROR_INVALID_VALUE;
462 }
463
464 // sys.powerctl is a special property that is used to make the device reboot. We want to log
465 // any process that sets this property to be able to accurately blame the cause of a shutdown.
466 if (name == "sys.powerctl") {
467 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
468 std::string process_cmdline;
469 std::string process_log_string;
470 if (ReadFileToString(cmdline_path, &process_cmdline)) {
471 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
472 // path.
473 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
474 }
475 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
476 << process_log_string;
477 }
478
Tom Cherry69d47aa2018-03-01 11:00:57 -0800479 if (name == "selinux.restorecon_recursive") {
480 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
481 }
482
483 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000484}
485
486static void handle_property_set_fd() {
487 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800488
Robert Sesekca2da602017-01-25 08:08:51 -0500489 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700490 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800491 return;
492 }
493
Tom Cherry32228482018-01-18 16:14:25 -0800494 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700495 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800496 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
497 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800498 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800499 return;
500 }
501
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000502 SocketConnection socket(s, cr);
503 uint32_t timeout_ms = kDefaultSocketTimeout;
504
505 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000506 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
507 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
508 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800509 return;
510 }
511
Elliott Hughesb005d902017-02-22 14:54:15 -0800512 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000513 case PROP_MSG_SETPROP: {
514 char prop_name[PROP_NAME_MAX];
515 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800516
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000517 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
518 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
519 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
520 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700521 }
522
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000523 prop_name[PROP_NAME_MAX-1] = 0;
524 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400525
Tom Cherry69d47aa2018-03-01 11:00:57 -0800526 const auto& cr = socket.cred();
527 std::string error;
528 uint32_t result =
529 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
530 if (result != PROP_SUCCESS) {
531 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
532 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
533 << error;
534 }
535
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800536 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000537 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000538
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000539 case PROP_MSG_SETPROP2: {
540 std::string name;
541 std::string value;
542 if (!socket.RecvString(&name, &timeout_ms) ||
543 !socket.RecvString(&value, &timeout_ms)) {
544 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
545 socket.SendUint32(PROP_ERROR_READ_DATA);
546 return;
547 }
548
Tom Cherry69d47aa2018-03-01 11:00:57 -0800549 const auto& cr = socket.cred();
550 std::string error;
551 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
552 if (result != PROP_SUCCESS) {
553 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
554 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
555 << error;
556 }
Tom Cherry32228482018-01-18 16:14:25 -0800557 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000558 break;
559 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800560
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800561 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800562 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000563 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800564 break;
565 }
566}
567
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800568static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800569
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800570/*
571 * Filter is used to decide which properties to load: NULL loads all keys,
572 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
573 */
Tom Cherrydc375862018-02-28 10:39:01 -0800574static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800575 char *key, *value, *eol, *sol, *tmp, *fn;
576 size_t flen = 0;
577
Tom Cherrydc375862018-02-28 10:39:01 -0800578 const char* context = kInitContext.c_str();
Logan Chien837b2a42018-05-03 14:33:52 +0800579 if (SelinuxHasVendorInit()) {
Tom Cherrya1dbeb82018-04-11 15:50:00 -0700580 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
581 if (StartsWith(filename, path_prefix)) {
582 context = secontext;
583 }
Tom Cherrydc375862018-02-28 10:39:01 -0800584 }
585 }
586
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800587 if (filter) {
588 flen = strlen(filter);
589 }
590
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800591 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800592 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800593 key = sol;
594 *eol++ = 0;
595 sol = eol;
596
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800597 while (isspace(*key)) key++;
598 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800599
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800600 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800601 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800602
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800603 if (!strncmp(key, "import ", 7) && flen == 0) {
604 fn = key + 7;
605 while (isspace(*fn)) fn++;
606
607 key = strchr(fn, ' ');
608 if (key) {
609 *key++ = 0;
610 while (isspace(*key)) key++;
611 }
612
613 load_properties_from_file(fn, key);
614
615 } else {
616 value = strchr(key, '=');
617 if (!value) continue;
618 *value++ = 0;
619
620 tmp = value - 2;
621 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
622
623 while (isspace(*value)) value++;
624
625 if (flen > 0) {
626 if (filter[flen - 1] == '*') {
627 if (strncmp(key, filter, flen - 1)) continue;
628 } else {
629 if (strcmp(key, filter)) continue;
630 }
631 }
632
Tom Cherrydc375862018-02-28 10:39:01 -0800633 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
634 key == "selinux.restorecon_recursive"s) {
635 LOG(ERROR) << "Ignoring disallowed property '" << key
636 << "' with special meaning in prop file '" << filename << "'";
637 continue;
638 }
639
640 uint32_t result = 0;
641 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
642 std::string error;
643 result = HandlePropertySet(key, value, context, cr, &error);
644 if (result != PROP_SUCCESS) {
645 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
646 << "' in property file '" << filename << "': " << error;
647 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800648 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800649 }
650}
651
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700652// Filter is used to decide which properties to load: NULL loads all keys,
653// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800654static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700655 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700656 auto file_contents = ReadFile(filename);
657 if (!file_contents) {
658 PLOG(WARNING) << "Couldn't load property file '" << filename
659 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800660 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800661 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700662 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800663
664 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000665 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800666 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800667}
668
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900669// persist.sys.usb.config values can't be combined on build-time when property
670// files are split into each partition.
671// So we need to apply the same rule of build/make/tools/post_process_props.py
672// on runtime.
673static void update_sys_usb_config() {
674 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
675 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
676 if (config.empty()) {
677 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
678 } else if (is_debuggable && config.find("adb") == std::string::npos &&
679 config.length() + 4 < PROP_VALUE_MAX) {
680 config.append(",adb");
681 property_set("persist.sys.usb.config", config);
682 }
683}
684
Elliott Hughesda40c002015-03-27 23:20:44 -0700685void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800686 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
687 // Try recovery path
688 if (!load_properties_from_file("/prop.default", NULL)) {
689 // Try legacy path
690 load_properties_from_file("/default.prop", NULL);
691 }
692 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900693 load_properties_from_file("/product/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800694 load_properties_from_file("/odm/default.prop", NULL);
695 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900696
697 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800698}
699
Nick Kralevich32b90232012-09-19 11:15:24 -0700700static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800701 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800702 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700703 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700704}
705
Ken Sumrallc5c51032011-03-08 17:01:29 -0800706/* When booting an encrypted system, /data is not mounted when the
707 * property service is started, so any properties stored there are
708 * not loaded. Vold triggers init to load these properties once it
709 * has mounted /data.
710 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700711void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700712 // Devices with FDE have load_persist_props called twice; the first time when the temporary
713 // /data partition is mounted and then again once /data is truly mounted. We do not want to
714 // read persistent properties from the temporary /data partition or mark persistent properties
715 // as having been loaded during the first call, so we return in that case.
716 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
717 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
718 if (crypto_state == "encrypted" && crypto_type == "block") {
719 static size_t num_calls = 0;
720 if (++num_calls == 1) return;
721 }
722
Nick Kralevich32b90232012-09-19 11:15:24 -0700723 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800724 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700725 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700726 for (const auto& persistent_property_record : persistent_properties.properties()) {
727 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700728 }
729 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800730 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800731}
732
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700733void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800734 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
735 fs_mgr_free_fstab);
736 if (!fstab) {
737 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700738 return;
739 }
740
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800741 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700742 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700743 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700744 return;
745 }
746
747 int fd = open(rec->blk_device, O_RDONLY);
748 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700749 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700750 return;
751 }
752
753 boot_img_hdr hdr;
754 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
755 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700756 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700757 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700758 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700759 }
760
761 close(fd);
762}
763
Paul Lawrence948410a2015-07-01 14:40:56 -0700764void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800765 load_properties_from_file("/system/build.prop", NULL);
766 load_properties_from_file("/odm/build.prop", NULL);
767 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800768 load_properties_from_file("/factory/factory.prop", "ro.*");
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 Cherry5ab2e1c2018-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
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700845void StartPropertyService(Epoll* epoll) {
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
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700860 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) {
861 PLOG(FATAL) << result.error();
862 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800863}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700864
865} // namespace init
866} // namespace android