blob: 91b7dddf974f7d1ed7e08f5708da4d3588617b9b [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tom Cherry3f5eaae52017-04-06 16:30:22 -070017#include "property_service.h"
18
Tom Cherry40acb372018-08-01 13:41:12 -070019#include <android/api-level.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070020#include <ctype.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070021#include <errno.h>
22#include <fcntl.h>
Keun-young Park7d320262017-02-17 17:48:56 -080023#include <inttypes.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070024#include <limits.h>
25#include <netinet/in.h>
26#include <stdarg.h>
Tom Cherryf57c0bf2017-04-07 13:46:21 -070027#include <stddef.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#include <stdio.h>
29#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030#include <string.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070031#include <sys/mman.h>
JP Abgrall4515d812014-01-31 14:37:07 -080032#include <sys/poll.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070033#include <sys/select.h>
34#include <sys/types.h>
35#include <sys/un.h>
36#include <unistd.h>
Tom Cherry8702dcb2017-10-13 16:20:19 -070037#include <wchar.h>
Elliott Hughes81399e12015-03-10 08:39:45 -070038
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080039#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
40#include <sys/_system_properties.h>
41
Tom Cherry3f5eaae52017-04-06 16:30:22 -070042#include <memory>
Tom Marshall62696902017-06-09 18:29:23 +000043#include <queue>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070044#include <vector>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080045
Tom Cherryede0d532017-07-06 14:20:11 -070046#include <android-base/chrono_utils.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080047#include <android-base/file.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070048#include <android-base/logging.h>
Jaekyun Seok0cf3a072017-04-24 18:52:54 +090049#include <android-base/properties.h>
Tom Cherrya84e14d2017-09-05 12:38:30 -070050#include <android-base/stringprintf.h>
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000051#include <android-base/strings.h>
Tom Cherry2ae2f602017-12-14 01:58:17 +000052#include <property_info_parser/property_info_parser.h>
53#include <property_info_serializer/property_info_serializer.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070054#include <selinux/android.h>
55#include <selinux/label.h>
56#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070057
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070058#include "epoll.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070060#include "persistent_properties.h"
Tom Cherry927c5d52017-12-11 01:40:07 -080061#include "property_type.h"
Logan Chien837b2a42018-05-03 14:33:52 +080062#include "selinux.h"
Tom Cherrydc375862018-02-28 10:39:01 -080063#include "subcontext.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070064#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065
Tom Cherrydc375862018-02-28 10:39:01 -080066using namespace std::literals;
67
Tom Cherry2ae2f602017-12-14 01:58:17 +000068using android::base::ReadFileToString;
69using android::base::Split;
Tom Cherry1cf8d692017-10-10 13:35:01 -070070using android::base::StartsWith;
Tom Cherrya84e14d2017-09-05 12:38:30 -070071using android::base::StringPrintf;
Tom Cherryede0d532017-07-06 14:20:11 -070072using android::base::Timer;
Tom Cherry2ae2f602017-12-14 01:58:17 +000073using android::base::Trim;
74using android::base::WriteStringToFile;
75using android::properties::BuildTrie;
Tom Cherry919458c2018-01-03 14:39:28 -080076using android::properties::ParsePropertyInfoFile;
Tom Cherry2ae2f602017-12-14 01:58:17 +000077using android::properties::PropertyInfoAreaFile;
78using android::properties::PropertyInfoEntry;
Tom Cherryede0d532017-07-06 14:20:11 -070079
Tom Cherry81f5d3e2017-06-22 12:53:17 -070080namespace android {
81namespace init {
82
Tom Cherry16fad422017-08-04 15:59:03 -070083static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080084
Colin Crossd11beb22010-04-13 19:33:37 -070085static int property_set_fd = -1;
86
Tom Cherry2ae2f602017-12-14 01:58:17 +000087static PropertyInfoAreaFile property_info_area;
88
Tom Cherry32228482018-01-18 16:14:25 -080089uint32_t InitPropertySet(const std::string& name, const std::string& value);
90
91uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet;
92
Tom Cherry2ae2f602017-12-14 01:58:17 +000093void CreateSerializedPropertyInfo();
Tom Cherryc3692b32017-08-10 12:22:44 -070094
Tom Cherry5ab2e1c2018-05-03 16:57:19 -070095struct PropertyAuditData {
96 const ucred* cr;
97 const char* name;
98};
99
Elliott Hughesda40c002015-03-27 23:20:44 -0700100void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000101 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
102 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -0700103 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -0700104 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -0700105 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000106 if (!property_info_area.LoadDefaultPath()) {
107 LOG(FATAL) << "Failed to load serialized property info file";
108 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800109}
Tom Cherryb35f8272018-10-22 14:50:52 -0700110
111bool CanReadProperty(const std::string& source_context, const std::string& name) {
112 const char* target_context = nullptr;
113 property_info_area->GetPropertyInfo(name.c_str(), &target_context, nullptr);
114
115 PropertyAuditData audit_data;
116
117 audit_data.name = name.c_str();
118
119 ucred cr = {.pid = 0, .uid = 0, .gid = 0};
120 audit_data.cr = &cr;
121
122 return selinux_check_access(source_context.c_str(), target_context, "file", "read",
123 &audit_data) == 0;
124}
125
Tom Cherry927c5d52017-12-11 01:40:07 -0800126static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800127 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800128 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000129 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000130 }
131
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700132 PropertyAuditData audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400133
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000134 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800135 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700136
Tom Cherry927c5d52017-12-11 01:40:07 -0800137 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
138 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400139
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000140 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400141}
142
Tom Cherry69d47aa2018-03-01 11:00:57 -0800143static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000144 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800145
Tom Cherryde6bd502018-02-13 16:50:08 -0800146 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800147 *error = "Illegal property name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000148 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000149 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000150
Tom Cherry1cf8d692017-10-10 13:35:01 -0700151 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800152 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000153 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000154 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800155
Tom Cherry8702dcb2017-10-13 16:20:19 -0700156 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800157 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700158 return PROP_ERROR_INVALID_VALUE;
159 }
160
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000161 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000162 if (pi != nullptr) {
163 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700164 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800165 *error = "Read-only property was already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000166 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000167 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800168
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000169 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800170 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000171 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700172 if (rc < 0) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800173 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000174 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200175 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800176 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000177
Elliott Hughes4f915812016-12-05 13:12:48 -0800178 // Don't write properties to disk until after we have read all default
179 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700180 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700181 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800182 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700183 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000184 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800185}
186
Tom Marshall62696902017-06-09 18:29:23 +0000187typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
188
189struct PropertyChildInfo {
190 pid_t pid;
191 PropertyAsyncFunc func;
192 std::string name;
193 std::string value;
194};
195
196static std::queue<PropertyChildInfo> property_children;
197
198static void PropertyChildLaunch() {
199 auto& info = property_children.front();
200 pid_t pid = fork();
201 if (pid < 0) {
202 LOG(ERROR) << "Failed to fork for property_set_async";
203 while (!property_children.empty()) {
204 property_children.pop();
205 }
206 return;
207 }
208 if (pid != 0) {
209 info.pid = pid;
210 } else {
211 if (info.func(info.name, info.value) != 0) {
212 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
213 << "\") failed";
214 }
Tom Cherry4a679452017-09-26 16:30:03 -0700215 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000216 }
217}
218
219bool PropertyChildReap(pid_t pid) {
220 if (property_children.empty()) {
221 return false;
222 }
223 auto& info = property_children.front();
224 if (info.pid != pid) {
225 return false;
226 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800227 std::string error;
228 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
229 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
230 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000231 }
232 property_children.pop();
233 if (!property_children.empty()) {
234 PropertyChildLaunch();
235 }
236 return true;
237}
238
239static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800240 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000241 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800242 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000243 }
244
245 PropertyChildInfo info;
246 info.func = func;
247 info.name = name;
248 info.value = value;
249 property_children.push(info);
250 if (property_children.size() == 1) {
251 PropertyChildLaunch();
252 }
253 return PROP_SUCCESS;
254}
255
256static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
257 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
258}
259
Tom Cherry32228482018-01-18 16:14:25 -0800260uint32_t InitPropertySet(const std::string& name, const std::string& value) {
261 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800262 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
263 "functions directly";
264 return PROP_ERROR_INVALID_NAME;
265 }
266 if (name == "selinux.restorecon_recursive") {
267 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
268 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800269 return PROP_ERROR_INVALID_NAME;
270 }
271
Tom Cherry69d47aa2018-03-01 11:00:57 -0800272 uint32_t result = 0;
273 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
274 std::string error;
275 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
276 if (result != PROP_SUCCESS) {
277 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800278 }
279
Tom Cherry69d47aa2018-03-01 11:00:57 -0800280 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800281}
282
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000283class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800284 public:
285 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000286
Tom Cherry32228482018-01-18 16:14:25 -0800287 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000288
Tom Cherry32228482018-01-18 16:14:25 -0800289 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
290 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000291 }
292
Tom Cherry32228482018-01-18 16:14:25 -0800293 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
294 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000295 }
296
Tom Cherry32228482018-01-18 16:14:25 -0800297 bool RecvString(std::string* value, uint32_t* timeout_ms) {
298 uint32_t len = 0;
299 if (!RecvUint32(&len, timeout_ms)) {
300 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000301 }
Tom Cherry32228482018-01-18 16:14:25 -0800302
303 if (len == 0) {
304 *value = "";
305 return true;
306 }
307
308 // http://b/35166374: don't allow init to make arbitrarily large allocations.
309 if (len > 0xffff) {
310 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
311 errno = ENOMEM;
312 return false;
313 }
314
315 std::vector<char> chars(len);
316 if (!RecvChars(&chars[0], len, timeout_ms)) {
317 return false;
318 }
319
320 *value = std::string(&chars[0], len);
321 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000322 }
323
Tom Cherry32228482018-01-18 16:14:25 -0800324 bool SendUint32(uint32_t value) {
325 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
326 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000327 }
328
Tom Cherry32228482018-01-18 16:14:25 -0800329 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000330
Tom Cherry32228482018-01-18 16:14:25 -0800331 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000332
Tom Cherry32228482018-01-18 16:14:25 -0800333 std::string source_context() const {
334 char* source_context = nullptr;
335 getpeercon(socket_, &source_context);
336 std::string result = source_context;
337 freecon(source_context);
338 return result;
339 }
340
341 private:
342 bool PollIn(uint32_t* timeout_ms) {
343 struct pollfd ufds[1];
344 ufds[0].fd = socket_;
345 ufds[0].events = POLLIN;
346 ufds[0].revents = 0;
347 while (*timeout_ms > 0) {
348 auto start_time = std::chrono::steady_clock::now();
349 int nr = poll(ufds, 1, *timeout_ms);
350 auto now = std::chrono::steady_clock::now();
351 auto time_elapsed =
352 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
353 uint64_t millis = time_elapsed.count();
354 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
355
356 if (nr > 0) {
357 return true;
358 }
359
360 if (nr == 0) {
361 // Timeout
362 break;
363 }
364
365 if (nr < 0 && errno != EINTR) {
366 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
367 << " to send property message";
368 return false;
369 } else { // errno == EINTR
370 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
371 // to avoid slowing init down by causing EINTR with under millisecond timeout.
372 if (*timeout_ms > 0) {
373 --(*timeout_ms);
374 }
375 }
376 }
377
378 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
379 << " to send property message.";
380 return false;
381 }
382
383 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
384 size_t bytes_left = size;
385 char* data = static_cast<char*>(data_ptr);
386 while (*timeout_ms > 0 && bytes_left > 0) {
387 if (!PollIn(timeout_ms)) {
388 return false;
389 }
390
391 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
392 if (result <= 0) {
DuXiao40533592018-05-21 14:43:56 +0800393 PLOG(ERROR) << "sys_prop: recv error";
Tom Cherry32228482018-01-18 16:14:25 -0800394 return false;
395 }
396
397 bytes_left -= result;
398 data += result;
399 }
400
DuXiao40533592018-05-21 14:43:56 +0800401 if (bytes_left != 0) {
402 LOG(ERROR) << "sys_prop: recv data is not properly obtained.";
403 }
404
Tom Cherry32228482018-01-18 16:14:25 -0800405 return bytes_left == 0;
406 }
407
408 int socket_;
409 ucred cred_;
410
411 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000412};
413
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700414bool CheckControlPropertyPerms(const std::string& name, const std::string& value,
415 const std::string& source_context, const ucred& cr) {
416 // We check the legacy method first but these properties are dontaudit, so we only log an audit
417 // if the newer method fails as well. We only do this with the legacy ctl. properties.
418 if (name == "ctl.start" || name == "ctl.stop" || name == "ctl.restart") {
419 // The legacy permissions model is that ctl. properties have their name ctl.<action> and
420 // their value is the name of the service to apply that action to. Permissions for these
421 // actions are based on the service, so we must create a fake name of ctl.<service> to
422 // check permissions.
423 auto control_string_legacy = "ctl." + value;
424 const char* target_context_legacy = nullptr;
425 const char* type_legacy = nullptr;
426 property_info_area->GetPropertyInfo(control_string_legacy.c_str(), &target_context_legacy,
427 &type_legacy);
428
429 if (CheckMacPerms(control_string_legacy, target_context_legacy, source_context.c_str(), cr)) {
430 return true;
431 }
432 }
433
434 auto control_string_full = name + "$" + value;
435 const char* target_context_full = nullptr;
436 const char* type_full = nullptr;
437 property_info_area->GetPropertyInfo(control_string_full.c_str(), &target_context_full,
438 &type_full);
439
440 return CheckMacPerms(control_string_full, target_context_full, source_context.c_str(), cr);
441}
442
Tom Cherry32228482018-01-18 16:14:25 -0800443// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
444uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800445 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800446 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800447 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800448 return PROP_ERROR_INVALID_NAME;
449 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000450
Tom Cherry32228482018-01-18 16:14:25 -0800451 if (StartsWith(name, "ctl.")) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700452 if (!CheckControlPropertyPerms(name, value, source_context, cr)) {
453 *error = StringPrintf("Invalid permissions to perform '%s' on '%s'", name.c_str() + 4,
454 value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800455 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
456 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000457
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800458 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800459 return PROP_SUCCESS;
460 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800461
Tom Cherry32228482018-01-18 16:14:25 -0800462 const char* target_context = nullptr;
463 const char* type = nullptr;
464 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700465
Tom Cherry32228482018-01-18 16:14:25 -0800466 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800467 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800468 return PROP_ERROR_PERMISSION_DENIED;
469 }
470
471 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800472 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
473 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800474 return PROP_ERROR_INVALID_VALUE;
475 }
476
477 // sys.powerctl is a special property that is used to make the device reboot. We want to log
478 // any process that sets this property to be able to accurately blame the cause of a shutdown.
479 if (name == "sys.powerctl") {
480 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
481 std::string process_cmdline;
482 std::string process_log_string;
483 if (ReadFileToString(cmdline_path, &process_cmdline)) {
484 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
485 // path.
486 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
487 }
488 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
489 << process_log_string;
490 }
491
Tom Cherry69d47aa2018-03-01 11:00:57 -0800492 if (name == "selinux.restorecon_recursive") {
493 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
494 }
495
496 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000497}
498
499static void handle_property_set_fd() {
500 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800501
Robert Sesekca2da602017-01-25 08:08:51 -0500502 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700503 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800504 return;
505 }
506
Tom Cherry32228482018-01-18 16:14:25 -0800507 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700508 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800509 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
510 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800511 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800512 return;
513 }
514
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000515 SocketConnection socket(s, cr);
516 uint32_t timeout_ms = kDefaultSocketTimeout;
517
518 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000519 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
520 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
521 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800522 return;
523 }
524
Elliott Hughesb005d902017-02-22 14:54:15 -0800525 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000526 case PROP_MSG_SETPROP: {
527 char prop_name[PROP_NAME_MAX];
528 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800529
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000530 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
531 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
532 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
533 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700534 }
535
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000536 prop_name[PROP_NAME_MAX-1] = 0;
537 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400538
Tom Cherry69d47aa2018-03-01 11:00:57 -0800539 const auto& cr = socket.cred();
540 std::string error;
541 uint32_t result =
542 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
543 if (result != PROP_SUCCESS) {
544 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
545 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
546 << error;
547 }
548
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800549 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000550 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000551
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000552 case PROP_MSG_SETPROP2: {
553 std::string name;
554 std::string value;
555 if (!socket.RecvString(&name, &timeout_ms) ||
556 !socket.RecvString(&value, &timeout_ms)) {
557 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
558 socket.SendUint32(PROP_ERROR_READ_DATA);
559 return;
560 }
561
Tom Cherry69d47aa2018-03-01 11:00:57 -0800562 const auto& cr = socket.cred();
563 std::string error;
564 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
565 if (result != PROP_SUCCESS) {
566 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
567 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
568 << error;
569 }
Tom Cherry32228482018-01-18 16:14:25 -0800570 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000571 break;
572 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800573
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800574 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800575 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000576 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800577 break;
578 }
579}
580
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800581static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800582
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800583/*
584 * Filter is used to decide which properties to load: NULL loads all keys,
585 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
586 */
Tom Cherrydc375862018-02-28 10:39:01 -0800587static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800588 char *key, *value, *eol, *sol, *tmp, *fn;
589 size_t flen = 0;
590
Tom Cherrydc375862018-02-28 10:39:01 -0800591 const char* context = kInitContext.c_str();
Tom Cherry40acb372018-08-01 13:41:12 -0700592 if (SelinuxGetVendorAndroidVersion() >= __ANDROID_API_P__) {
Tom Cherrya1dbeb82018-04-11 15:50:00 -0700593 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
594 if (StartsWith(filename, path_prefix)) {
595 context = secontext;
596 }
Tom Cherrydc375862018-02-28 10:39:01 -0800597 }
598 }
599
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800600 if (filter) {
601 flen = strlen(filter);
602 }
603
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800604 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800605 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800606 key = sol;
607 *eol++ = 0;
608 sol = eol;
609
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800610 while (isspace(*key)) key++;
611 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800612
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800613 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800614 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800615
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800616 if (!strncmp(key, "import ", 7) && flen == 0) {
617 fn = key + 7;
618 while (isspace(*fn)) fn++;
619
620 key = strchr(fn, ' ');
621 if (key) {
622 *key++ = 0;
623 while (isspace(*key)) key++;
624 }
625
626 load_properties_from_file(fn, key);
627
628 } else {
629 value = strchr(key, '=');
630 if (!value) continue;
631 *value++ = 0;
632
633 tmp = value - 2;
634 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
635
636 while (isspace(*value)) value++;
637
638 if (flen > 0) {
639 if (filter[flen - 1] == '*') {
640 if (strncmp(key, filter, flen - 1)) continue;
641 } else {
642 if (strcmp(key, filter)) continue;
643 }
644 }
645
Tom Cherrydc375862018-02-28 10:39:01 -0800646 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
647 key == "selinux.restorecon_recursive"s) {
648 LOG(ERROR) << "Ignoring disallowed property '" << key
649 << "' with special meaning in prop file '" << filename << "'";
650 continue;
651 }
652
653 uint32_t result = 0;
654 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
655 std::string error;
656 result = HandlePropertySet(key, value, context, cr, &error);
657 if (result != PROP_SUCCESS) {
658 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
659 << "' in property file '" << filename << "': " << error;
660 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800661 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800662 }
663}
664
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700665// Filter is used to decide which properties to load: NULL loads all keys,
666// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800667static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700668 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700669 auto file_contents = ReadFile(filename);
670 if (!file_contents) {
671 PLOG(WARNING) << "Couldn't load property file '" << filename
672 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800673 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800674 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700675 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800676
677 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000678 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800679 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800680}
681
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900682// persist.sys.usb.config values can't be combined on build-time when property
683// files are split into each partition.
684// So we need to apply the same rule of build/make/tools/post_process_props.py
685// on runtime.
686static void update_sys_usb_config() {
687 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
688 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
689 if (config.empty()) {
690 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
691 } else if (is_debuggable && config.find("adb") == std::string::npos &&
692 config.length() + 4 < PROP_VALUE_MAX) {
693 config.append(",adb");
694 property_set("persist.sys.usb.config", config);
695 }
696}
697
Nick Kralevich32b90232012-09-19 11:15:24 -0700698static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800699 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800700 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700701 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700702}
703
Ken Sumrallc5c51032011-03-08 17:01:29 -0800704/* When booting an encrypted system, /data is not mounted when the
705 * property service is started, so any properties stored there are
706 * not loaded. Vold triggers init to load these properties once it
707 * has mounted /data.
708 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700709void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700710 // Devices with FDE have load_persist_props called twice; the first time when the temporary
711 // /data partition is mounted and then again once /data is truly mounted. We do not want to
712 // read persistent properties from the temporary /data partition or mark persistent properties
713 // as having been loaded during the first call, so we return in that case.
714 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
715 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
716 if (crypto_state == "encrypted" && crypto_type == "block") {
717 static size_t num_calls = 0;
718 if (++num_calls == 1) return;
719 }
720
Nick Kralevich32b90232012-09-19 11:15:24 -0700721 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800722 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700723 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700724 for (const auto& persistent_property_record : persistent_properties.properties()) {
725 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700726 }
727 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800728 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800729}
730
Jiyong Park3b316ee2019-01-13 02:42:31 +0900731void property_load_boot_defaults() {
732 // TODO(b/117892318): merge prop.default and build.prop files into one
733 // TODO(b/122864654): read the prop files from all partitions and then
734 // resolve the duplication by their origin so that RO and non-RO properties
735 // have a consistent overriding order.
736 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
737 // Try recovery path
738 if (!load_properties_from_file("/prop.default", NULL)) {
739 // Try legacy path
740 load_properties_from_file("/default.prop", NULL);
741 }
742 }
743 load_properties_from_file("/product/build.prop", NULL);
744 load_properties_from_file("/product_services/build.prop", NULL);
745 load_properties_from_file("/odm/default.prop", NULL);
746 load_properties_from_file("/vendor/default.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800747 load_properties_from_file("/system/build.prop", NULL);
748 load_properties_from_file("/odm/build.prop", NULL);
749 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800750 load_properties_from_file("/factory/factory.prop", "ro.*");
Jiyong Park3b316ee2019-01-13 02:42:31 +0900751
752 update_sys_usb_config();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700753}
754
Tom Cherryc3692b32017-08-10 12:22:44 -0700755static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
Tom Cherry5ab2e1c2018-05-03 16:57:19 -0700756 auto* d = reinterpret_cast<PropertyAuditData*>(data);
Tom Cherryc3692b32017-08-10 12:22:44 -0700757
758 if (!d || !d->name || !d->cr) {
759 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
760 return 0;
761 }
762
763 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
764 d->cr->gid);
765 return 0;
766}
767
Tom Cherry2ae2f602017-12-14 01:58:17 +0000768bool LoadPropertyInfoFromFile(const std::string& filename,
769 std::vector<PropertyInfoEntry>* property_infos) {
770 auto file_contents = std::string();
771 if (!ReadFileToString(filename, &file_contents)) {
772 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
773 return false;
774 }
775
Tom Cherry919458c2018-01-03 14:39:28 -0800776 auto errors = std::vector<std::string>{};
777 ParsePropertyInfoFile(file_contents, property_infos, &errors);
778 // Individual parsing errors are reported but do not cause a failed boot, which is what
779 // returning false would do here.
780 for (const auto& error : errors) {
781 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000782 }
Tom Cherry919458c2018-01-03 14:39:28 -0800783
Tom Cherry2ae2f602017-12-14 01:58:17 +0000784 return true;
785}
786
787void CreateSerializedPropertyInfo() {
788 auto property_infos = std::vector<PropertyInfoEntry>();
789 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
790 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
791 &property_infos)) {
792 return;
793 }
794 // Don't check for failure here, so we always have a sane list of properties.
795 // E.g. In case of recovery, the vendor partition will not have mounted and we
796 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800797 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
798 &property_infos)) {
799 // Fallback to nonplat_* if vendor_* doesn't exist.
800 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
801 &property_infos);
802 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000803 } else {
804 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
805 return;
806 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800807 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
808 // Fallback to nonplat_* if vendor_* doesn't exist.
809 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
810 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000811 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800812
Tom Cherry2ae2f602017-12-14 01:58:17 +0000813 auto serialized_contexts = std::string();
814 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800815 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000816 &error)) {
817 LOG(ERROR) << "Unable to serialize property contexts: " << error;
818 return;
819 }
820
821 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
822 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
823 PLOG(ERROR) << "Unable to write serialized property infos to file";
824 }
825 selinux_android_restorecon(kPropertyInfosPath, 0);
826}
827
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700828void StartPropertyService(Epoll* epoll) {
Tom Cherryc3692b32017-08-10 12:22:44 -0700829 selinux_callback cb;
830 cb.func_audit = SelinuxAuditCallback;
831 selinux_set_callback(SELINUX_CB_AUDIT, cb);
832
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000833 property_set("ro.property_service.version", "2");
834
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700835 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700836 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700837 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700838 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700839 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800840
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700841 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700842
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700843 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) {
844 PLOG(FATAL) << result.error();
845 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800846}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700847
848} // namespace init
849} // namespace android