blob: 741fde0b91d142729b400ad11e755fabfb2422fb [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
Elliott Hughesda40c002015-03-27 23:20:44 -070098void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +000099 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
100 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -0700101 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -0700102 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -0700103 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000104 if (!property_info_area.LoadDefaultPath()) {
105 LOG(FATAL) << "Failed to load serialized property info file";
106 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800107}
Tom Cherry927c5d52017-12-11 01:40:07 -0800108static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800109 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800110 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000111 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000112 }
113
William Robertsd7aea442015-10-01 16:03:47 -0700114 property_audit_data audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400115
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000116 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800117 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700118
Tom Cherry927c5d52017-12-11 01:40:07 -0800119 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
120 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400121
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000122 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400123}
124
Tom Cherry69d47aa2018-03-01 11:00:57 -0800125static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000126 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800127
Tom Cherryde6bd502018-02-13 16:50:08 -0800128 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800129 *error = "Illegal property name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000130 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000131 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000132
Tom Cherry1cf8d692017-10-10 13:35:01 -0700133 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800134 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000135 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000136 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800137
Tom Cherry8702dcb2017-10-13 16:20:19 -0700138 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800139 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700140 return PROP_ERROR_INVALID_VALUE;
141 }
142
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000143 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000144 if (pi != nullptr) {
145 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700146 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800147 *error = "Read-only property was already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000148 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000149 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800150
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000151 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000153 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700154 if (rc < 0) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800155 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000156 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200157 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800158 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000159
Elliott Hughes4f915812016-12-05 13:12:48 -0800160 // Don't write properties to disk until after we have read all default
161 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700162 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700163 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800164 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700165 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000166 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800167}
168
Tom Marshall62696902017-06-09 18:29:23 +0000169typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
170
171struct PropertyChildInfo {
172 pid_t pid;
173 PropertyAsyncFunc func;
174 std::string name;
175 std::string value;
176};
177
178static std::queue<PropertyChildInfo> property_children;
179
180static void PropertyChildLaunch() {
181 auto& info = property_children.front();
182 pid_t pid = fork();
183 if (pid < 0) {
184 LOG(ERROR) << "Failed to fork for property_set_async";
185 while (!property_children.empty()) {
186 property_children.pop();
187 }
188 return;
189 }
190 if (pid != 0) {
191 info.pid = pid;
192 } else {
193 if (info.func(info.name, info.value) != 0) {
194 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
195 << "\") failed";
196 }
Tom Cherry4a679452017-09-26 16:30:03 -0700197 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000198 }
199}
200
201bool PropertyChildReap(pid_t pid) {
202 if (property_children.empty()) {
203 return false;
204 }
205 auto& info = property_children.front();
206 if (info.pid != pid) {
207 return false;
208 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800209 std::string error;
210 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
211 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
212 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000213 }
214 property_children.pop();
215 if (!property_children.empty()) {
216 PropertyChildLaunch();
217 }
218 return true;
219}
220
221static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800222 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000223 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800224 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000225 }
226
227 PropertyChildInfo info;
228 info.func = func;
229 info.name = name;
230 info.value = value;
231 property_children.push(info);
232 if (property_children.size() == 1) {
233 PropertyChildLaunch();
234 }
235 return PROP_SUCCESS;
236}
237
238static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
239 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
240}
241
Tom Cherry32228482018-01-18 16:14:25 -0800242uint32_t InitPropertySet(const std::string& name, const std::string& value) {
243 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800244 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
245 "functions directly";
246 return PROP_ERROR_INVALID_NAME;
247 }
248 if (name == "selinux.restorecon_recursive") {
249 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
250 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800251 return PROP_ERROR_INVALID_NAME;
252 }
253
Tom Cherry69d47aa2018-03-01 11:00:57 -0800254 uint32_t result = 0;
255 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
256 std::string error;
257 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
258 if (result != PROP_SUCCESS) {
259 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800260 }
261
Tom Cherry69d47aa2018-03-01 11:00:57 -0800262 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800263}
264
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000265class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800266 public:
267 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000268
Tom Cherry32228482018-01-18 16:14:25 -0800269 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000270
Tom Cherry32228482018-01-18 16:14:25 -0800271 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
272 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000273 }
274
Tom Cherry32228482018-01-18 16:14:25 -0800275 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
276 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000277 }
278
Tom Cherry32228482018-01-18 16:14:25 -0800279 bool RecvString(std::string* value, uint32_t* timeout_ms) {
280 uint32_t len = 0;
281 if (!RecvUint32(&len, timeout_ms)) {
282 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000283 }
Tom Cherry32228482018-01-18 16:14:25 -0800284
285 if (len == 0) {
286 *value = "";
287 return true;
288 }
289
290 // http://b/35166374: don't allow init to make arbitrarily large allocations.
291 if (len > 0xffff) {
292 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
293 errno = ENOMEM;
294 return false;
295 }
296
297 std::vector<char> chars(len);
298 if (!RecvChars(&chars[0], len, timeout_ms)) {
299 return false;
300 }
301
302 *value = std::string(&chars[0], len);
303 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000304 }
305
Tom Cherry32228482018-01-18 16:14:25 -0800306 bool SendUint32(uint32_t value) {
307 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
308 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000309 }
310
Tom Cherry32228482018-01-18 16:14:25 -0800311 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000312
Tom Cherry32228482018-01-18 16:14:25 -0800313 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000314
Tom Cherry32228482018-01-18 16:14:25 -0800315 std::string source_context() const {
316 char* source_context = nullptr;
317 getpeercon(socket_, &source_context);
318 std::string result = source_context;
319 freecon(source_context);
320 return result;
321 }
322
323 private:
324 bool PollIn(uint32_t* timeout_ms) {
325 struct pollfd ufds[1];
326 ufds[0].fd = socket_;
327 ufds[0].events = POLLIN;
328 ufds[0].revents = 0;
329 while (*timeout_ms > 0) {
330 auto start_time = std::chrono::steady_clock::now();
331 int nr = poll(ufds, 1, *timeout_ms);
332 auto now = std::chrono::steady_clock::now();
333 auto time_elapsed =
334 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
335 uint64_t millis = time_elapsed.count();
336 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
337
338 if (nr > 0) {
339 return true;
340 }
341
342 if (nr == 0) {
343 // Timeout
344 break;
345 }
346
347 if (nr < 0 && errno != EINTR) {
348 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
349 << " to send property message";
350 return false;
351 } else { // errno == EINTR
352 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
353 // to avoid slowing init down by causing EINTR with under millisecond timeout.
354 if (*timeout_ms > 0) {
355 --(*timeout_ms);
356 }
357 }
358 }
359
360 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
361 << " to send property message.";
362 return false;
363 }
364
365 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
366 size_t bytes_left = size;
367 char* data = static_cast<char*>(data_ptr);
368 while (*timeout_ms > 0 && bytes_left > 0) {
369 if (!PollIn(timeout_ms)) {
370 return false;
371 }
372
373 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
374 if (result <= 0) {
DuXiao40533592018-05-21 14:43:56 +0800375 PLOG(ERROR) << "sys_prop: recv error";
Tom Cherry32228482018-01-18 16:14:25 -0800376 return false;
377 }
378
379 bytes_left -= result;
380 data += result;
381 }
382
DuXiao40533592018-05-21 14:43:56 +0800383 if (bytes_left != 0) {
384 LOG(ERROR) << "sys_prop: recv data is not properly obtained.";
385 }
386
Tom Cherry32228482018-01-18 16:14:25 -0800387 return bytes_left == 0;
388 }
389
390 int socket_;
391 ucred cred_;
392
393 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000394};
395
Tom Cherry32228482018-01-18 16:14:25 -0800396// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
397uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800398 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800399 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800400 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800401 return PROP_ERROR_INVALID_NAME;
402 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000403
Tom Cherry32228482018-01-18 16:14:25 -0800404 if (StartsWith(name, "ctl.")) {
405 // ctl. properties have their name ctl.<action> and their value is the name of the service
406 // to apply that action to. Permissions for these actions are based on the service, so we
407 // must create a fake name of ctl.<service> to check permissions.
408 auto control_string = "ctl." + value;
409 const char* target_context = nullptr;
410 const char* type = nullptr;
411 property_info_area->GetPropertyInfo(control_string.c_str(), &target_context, &type);
412 if (!CheckMacPerms(control_string, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800413 *error = StringPrintf("Unable to '%s' service %s", name.c_str() + 4, value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800414 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
415 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000416
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800417 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800418 return PROP_SUCCESS;
419 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800420
Tom Cherry32228482018-01-18 16:14:25 -0800421 const char* target_context = nullptr;
422 const char* type = nullptr;
423 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700424
Tom Cherry32228482018-01-18 16:14:25 -0800425 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800426 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800427 return PROP_ERROR_PERMISSION_DENIED;
428 }
429
430 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800431 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
432 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800433 return PROP_ERROR_INVALID_VALUE;
434 }
435
436 // sys.powerctl is a special property that is used to make the device reboot. We want to log
437 // any process that sets this property to be able to accurately blame the cause of a shutdown.
438 if (name == "sys.powerctl") {
439 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
440 std::string process_cmdline;
441 std::string process_log_string;
442 if (ReadFileToString(cmdline_path, &process_cmdline)) {
443 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
444 // path.
445 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
446 }
447 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
448 << process_log_string;
449 }
450
Tom Cherry69d47aa2018-03-01 11:00:57 -0800451 if (name == "selinux.restorecon_recursive") {
452 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
453 }
454
455 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000456}
457
458static void handle_property_set_fd() {
459 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800460
Robert Sesekca2da602017-01-25 08:08:51 -0500461 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700462 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463 return;
464 }
465
Tom Cherry32228482018-01-18 16:14:25 -0800466 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700467 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800468 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
469 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800470 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800471 return;
472 }
473
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000474 SocketConnection socket(s, cr);
475 uint32_t timeout_ms = kDefaultSocketTimeout;
476
477 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000478 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
479 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
480 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800481 return;
482 }
483
Elliott Hughesb005d902017-02-22 14:54:15 -0800484 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000485 case PROP_MSG_SETPROP: {
486 char prop_name[PROP_NAME_MAX];
487 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800488
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000489 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
490 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
491 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
492 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700493 }
494
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000495 prop_name[PROP_NAME_MAX-1] = 0;
496 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400497
Tom Cherry69d47aa2018-03-01 11:00:57 -0800498 const auto& cr = socket.cred();
499 std::string error;
500 uint32_t result =
501 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
502 if (result != PROP_SUCCESS) {
503 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
504 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
505 << error;
506 }
507
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800508 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000509 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000510
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000511 case PROP_MSG_SETPROP2: {
512 std::string name;
513 std::string value;
514 if (!socket.RecvString(&name, &timeout_ms) ||
515 !socket.RecvString(&value, &timeout_ms)) {
516 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
517 socket.SendUint32(PROP_ERROR_READ_DATA);
518 return;
519 }
520
Tom Cherry69d47aa2018-03-01 11:00:57 -0800521 const auto& cr = socket.cred();
522 std::string error;
523 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
524 if (result != PROP_SUCCESS) {
525 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
526 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
527 << error;
528 }
Tom Cherry32228482018-01-18 16:14:25 -0800529 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000530 break;
531 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800532
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800533 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800534 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000535 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800536 break;
537 }
538}
539
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800540static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800541
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800542/*
543 * Filter is used to decide which properties to load: NULL loads all keys,
544 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
545 */
Tom Cherrydc375862018-02-28 10:39:01 -0800546static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800547 char *key, *value, *eol, *sol, *tmp, *fn;
548 size_t flen = 0;
549
Tom Cherrydc375862018-02-28 10:39:01 -0800550 const char* context = kInitContext.c_str();
Logan Chien837b2a42018-05-03 14:33:52 +0800551 if (SelinuxHasVendorInit()) {
Tom Cherrya1dbeb82018-04-11 15:50:00 -0700552 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
553 if (StartsWith(filename, path_prefix)) {
554 context = secontext;
555 }
Tom Cherrydc375862018-02-28 10:39:01 -0800556 }
557 }
558
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800559 if (filter) {
560 flen = strlen(filter);
561 }
562
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800563 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800564 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800565 key = sol;
566 *eol++ = 0;
567 sol = eol;
568
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800569 while (isspace(*key)) key++;
570 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800571
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800572 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800573 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800574
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800575 if (!strncmp(key, "import ", 7) && flen == 0) {
576 fn = key + 7;
577 while (isspace(*fn)) fn++;
578
579 key = strchr(fn, ' ');
580 if (key) {
581 *key++ = 0;
582 while (isspace(*key)) key++;
583 }
584
585 load_properties_from_file(fn, key);
586
587 } else {
588 value = strchr(key, '=');
589 if (!value) continue;
590 *value++ = 0;
591
592 tmp = value - 2;
593 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
594
595 while (isspace(*value)) value++;
596
597 if (flen > 0) {
598 if (filter[flen - 1] == '*') {
599 if (strncmp(key, filter, flen - 1)) continue;
600 } else {
601 if (strcmp(key, filter)) continue;
602 }
603 }
604
Tom Cherrydc375862018-02-28 10:39:01 -0800605 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
606 key == "selinux.restorecon_recursive"s) {
607 LOG(ERROR) << "Ignoring disallowed property '" << key
608 << "' with special meaning in prop file '" << filename << "'";
609 continue;
610 }
611
612 uint32_t result = 0;
613 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
614 std::string error;
615 result = HandlePropertySet(key, value, context, cr, &error);
616 if (result != PROP_SUCCESS) {
617 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
618 << "' in property file '" << filename << "': " << error;
619 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800620 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800621 }
622}
623
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700624// Filter is used to decide which properties to load: NULL loads all keys,
625// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800626static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700627 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700628 auto file_contents = ReadFile(filename);
629 if (!file_contents) {
630 PLOG(WARNING) << "Couldn't load property file '" << filename
631 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800632 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800633 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700634 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800635
636 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000637 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800638 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800639}
640
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900641// persist.sys.usb.config values can't be combined on build-time when property
642// files are split into each partition.
643// So we need to apply the same rule of build/make/tools/post_process_props.py
644// on runtime.
645static void update_sys_usb_config() {
646 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
647 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
648 if (config.empty()) {
649 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
650 } else if (is_debuggable && config.find("adb") == std::string::npos &&
651 config.length() + 4 < PROP_VALUE_MAX) {
652 config.append(",adb");
653 property_set("persist.sys.usb.config", config);
654 }
655}
656
Elliott Hughesda40c002015-03-27 23:20:44 -0700657void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800658 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
659 // Try recovery path
660 if (!load_properties_from_file("/prop.default", NULL)) {
661 // Try legacy path
662 load_properties_from_file("/default.prop", NULL);
663 }
664 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900665 load_properties_from_file("/product/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800666 load_properties_from_file("/odm/default.prop", NULL);
667 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900668
669 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800670}
671
Nick Kralevich32b90232012-09-19 11:15:24 -0700672static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800673 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800674 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700675 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700676}
677
Ken Sumrallc5c51032011-03-08 17:01:29 -0800678/* When booting an encrypted system, /data is not mounted when the
679 * property service is started, so any properties stored there are
680 * not loaded. Vold triggers init to load these properties once it
681 * has mounted /data.
682 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700683void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700684 // Devices with FDE have load_persist_props called twice; the first time when the temporary
685 // /data partition is mounted and then again once /data is truly mounted. We do not want to
686 // read persistent properties from the temporary /data partition or mark persistent properties
687 // as having been loaded during the first call, so we return in that case.
688 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
689 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
690 if (crypto_state == "encrypted" && crypto_type == "block") {
691 static size_t num_calls = 0;
692 if (++num_calls == 1) return;
693 }
694
Nick Kralevich32b90232012-09-19 11:15:24 -0700695 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800696 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700697 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700698 for (const auto& persistent_property_record : persistent_properties.properties()) {
699 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700700 }
701 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800702 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800703}
704
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700705void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800706 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
707 fs_mgr_free_fstab);
708 if (!fstab) {
709 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700710 return;
711 }
712
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800713 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700714 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700715 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700716 return;
717 }
718
719 int fd = open(rec->blk_device, O_RDONLY);
720 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700721 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700722 return;
723 }
724
725 boot_img_hdr hdr;
726 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
727 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700728 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700729 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700730 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700731 }
732
733 close(fd);
734}
735
Paul Lawrence948410a2015-07-01 14:40:56 -0700736void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800737 load_properties_from_file("/system/build.prop", NULL);
738 load_properties_from_file("/odm/build.prop", NULL);
739 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800740 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700741 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700742}
743
Tom Cherryc3692b32017-08-10 12:22:44 -0700744static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
745 property_audit_data* d = reinterpret_cast<property_audit_data*>(data);
746
747 if (!d || !d->name || !d->cr) {
748 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
749 return 0;
750 }
751
752 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
753 d->cr->gid);
754 return 0;
755}
756
Tom Cherry2ae2f602017-12-14 01:58:17 +0000757bool LoadPropertyInfoFromFile(const std::string& filename,
758 std::vector<PropertyInfoEntry>* property_infos) {
759 auto file_contents = std::string();
760 if (!ReadFileToString(filename, &file_contents)) {
761 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
762 return false;
763 }
764
Tom Cherry919458c2018-01-03 14:39:28 -0800765 auto errors = std::vector<std::string>{};
766 ParsePropertyInfoFile(file_contents, property_infos, &errors);
767 // Individual parsing errors are reported but do not cause a failed boot, which is what
768 // returning false would do here.
769 for (const auto& error : errors) {
770 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000771 }
Tom Cherry919458c2018-01-03 14:39:28 -0800772
Tom Cherry2ae2f602017-12-14 01:58:17 +0000773 return true;
774}
775
776void CreateSerializedPropertyInfo() {
777 auto property_infos = std::vector<PropertyInfoEntry>();
778 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
779 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
780 &property_infos)) {
781 return;
782 }
783 // Don't check for failure here, so we always have a sane list of properties.
784 // E.g. In case of recovery, the vendor partition will not have mounted and we
785 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800786 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
787 &property_infos)) {
788 // Fallback to nonplat_* if vendor_* doesn't exist.
789 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
790 &property_infos);
791 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000792 } else {
793 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
794 return;
795 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800796 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
797 // Fallback to nonplat_* if vendor_* doesn't exist.
798 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
799 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000800 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800801
Tom Cherry2ae2f602017-12-14 01:58:17 +0000802 auto serialized_contexts = std::string();
803 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800804 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000805 &error)) {
806 LOG(ERROR) << "Unable to serialize property contexts: " << error;
807 return;
808 }
809
810 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
811 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
812 PLOG(ERROR) << "Unable to write serialized property infos to file";
813 }
814 selinux_android_restorecon(kPropertyInfosPath, 0);
815}
816
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700817void StartPropertyService(Epoll* epoll) {
Tom Cherryc3692b32017-08-10 12:22:44 -0700818 selinux_callback cb;
819 cb.func_audit = SelinuxAuditCallback;
820 selinux_set_callback(SELINUX_CB_AUDIT, cb);
821
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000822 property_set("ro.property_service.version", "2");
823
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700824 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700825 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700826 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700827 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700828 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800829
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700830 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700831
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700832 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) {
833 PLOG(FATAL) << result.error();
834 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800835}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700836
837} // namespace init
838} // namespace android