blob: e79157029ba1d233fcb1a6bd7fc7a24444da917c [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tom Cherry3f5eaae52017-04-06 16:30:22 -070017#include "property_service.h"
18
19#include <ctype.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070020#include <errno.h>
21#include <fcntl.h>
Keun-young Park7d320262017-02-17 17:48:56 -080022#include <inttypes.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070023#include <limits.h>
24#include <netinet/in.h>
25#include <stdarg.h>
Tom Cherryf57c0bf2017-04-07 13:46:21 -070026#include <stddef.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027#include <stdio.h>
28#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080029#include <string.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070030#include <sys/mman.h>
JP Abgrall4515d812014-01-31 14:37:07 -080031#include <sys/poll.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070032#include <sys/select.h>
33#include <sys/types.h>
34#include <sys/un.h>
35#include <unistd.h>
Tom Cherry8702dcb2017-10-13 16:20:19 -070036#include <wchar.h>
Elliott Hughes81399e12015-03-10 08:39:45 -070037
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080038#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
39#include <sys/_system_properties.h>
40
Tom Cherry3f5eaae52017-04-06 16:30:22 -070041#include <memory>
Tom Marshall62696902017-06-09 18:29:23 +000042#include <queue>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070043#include <vector>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080044
Tom Cherryede0d532017-07-06 14:20:11 -070045#include <android-base/chrono_utils.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080046#include <android-base/file.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070047#include <android-base/logging.h>
Jaekyun Seok0cf3a072017-04-24 18:52:54 +090048#include <android-base/properties.h>
Tom Cherrya84e14d2017-09-05 12:38:30 -070049#include <android-base/stringprintf.h>
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +000050#include <android-base/strings.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070051#include <bootimg.h>
52#include <fs_mgr.h>
Tom Cherry2ae2f602017-12-14 01:58:17 +000053#include <property_info_parser/property_info_parser.h>
54#include <property_info_serializer/property_info_serializer.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070055#include <selinux/android.h>
56#include <selinux/label.h>
57#include <selinux/selinux.h>
Andres Moralesdb5f5d42015-05-08 08:30:33 -070058
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059#include "init.h"
Tom Cherry16fad422017-08-04 15:59:03 -070060#include "persistent_properties.h"
Tom Cherry927c5d52017-12-11 01:40:07 -080061#include "property_type.h"
Logan 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
Andres Moralesdb5f5d42015-05-08 08:30:33 -070080#define RECOVERY_MOUNT_POINT "/recovery"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081
Tom Cherry81f5d3e2017-06-22 12:53:17 -070082namespace android {
83namespace init {
84
Tom Cherry16fad422017-08-04 15:59:03 -070085static bool persistent_properties_loaded = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080086
Colin Crossd11beb22010-04-13 19:33:37 -070087static int property_set_fd = -1;
88
Tom Cherry2ae2f602017-12-14 01:58:17 +000089static PropertyInfoAreaFile property_info_area;
90
Tom Cherry32228482018-01-18 16:14:25 -080091uint32_t InitPropertySet(const std::string& name, const std::string& value);
92
93uint32_t (*property_set)(const std::string& name, const std::string& value) = InitPropertySet;
94
Tom Cherry2ae2f602017-12-14 01:58:17 +000095void CreateSerializedPropertyInfo();
Tom Cherryc3692b32017-08-10 12:22:44 -070096
Elliott Hughesda40c002015-03-27 23:20:44 -070097void property_init() {
Tom Cherry2ae2f602017-12-14 01:58:17 +000098 mkdir("/dev/__properties__", S_IRWXU | S_IXGRP | S_IXOTH);
99 CreateSerializedPropertyInfo();
Elliott Hughesda40c002015-03-27 23:20:44 -0700100 if (__system_property_area_init()) {
Tom Cherry4a679452017-09-26 16:30:03 -0700101 LOG(FATAL) << "Failed to initialize property area";
Elliott Hughesda40c002015-03-27 23:20:44 -0700102 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000103 if (!property_info_area.LoadDefaultPath()) {
104 LOG(FATAL) << "Failed to load serialized property info file";
105 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800106}
Tom Cherry927c5d52017-12-11 01:40:07 -0800107static bool CheckMacPerms(const std::string& name, const char* target_context,
Tom Cherry32228482018-01-18 16:14:25 -0800108 const char* source_context, const ucred& cr) {
Tom Cherry927c5d52017-12-11 01:40:07 -0800109 if (!target_context || !source_context) {
Tom Cherry2ae2f602017-12-14 01:58:17 +0000110 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000111 }
112
William Robertsd7aea442015-10-01 16:03:47 -0700113 property_audit_data audit_data;
rpcraig63207cd2012-08-09 10:05:49 -0400114
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000115 audit_data.name = name.c_str();
Tom Cherry32228482018-01-18 16:14:25 -0800116 audit_data.cr = &cr;
William Robertsd7aea442015-10-01 16:03:47 -0700117
Tom Cherry927c5d52017-12-11 01:40:07 -0800118 bool has_access = (selinux_check_access(source_context, target_context, "property_service",
119 "set", &audit_data) == 0);
rpcraig63207cd2012-08-09 10:05:49 -0400120
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000121 return has_access;
rpcraig63207cd2012-08-09 10:05:49 -0400122}
123
Tom Cherry69d47aa2018-03-01 11:00:57 -0800124static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000125 size_t valuelen = value.size();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800126
Tom Cherryde6bd502018-02-13 16:50:08 -0800127 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800128 *error = "Illegal property name";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000129 return PROP_ERROR_INVALID_NAME;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000130 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000131
Tom Cherry1cf8d692017-10-10 13:35:01 -0700132 if (valuelen >= PROP_VALUE_MAX && !StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800133 *error = "Property value too long";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000134 return PROP_ERROR_INVALID_VALUE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000135 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800136
Tom Cherry8702dcb2017-10-13 16:20:19 -0700137 if (mbstowcs(nullptr, value.data(), 0) == static_cast<std::size_t>(-1)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800138 *error = "Value is not a UTF8 encoded string";
Tom Cherry8702dcb2017-10-13 16:20:19 -0700139 return PROP_ERROR_INVALID_VALUE;
140 }
141
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000142 prop_info* pi = (prop_info*) __system_property_find(name.c_str());
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000143 if (pi != nullptr) {
144 // ro.* properties are actually "write-once".
Tom Cherry1cf8d692017-10-10 13:35:01 -0700145 if (StartsWith(name, "ro.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800146 *error = "Read-only property was already set";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000147 return PROP_ERROR_READ_ONLY_PROPERTY;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000148 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800149
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000150 __system_property_update(pi, value.c_str(), valuelen);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800151 } else {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000152 int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700153 if (rc < 0) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800154 *error = "__system_property_add failed";
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000155 return PROP_ERROR_SET_FAILED;
Johan Redestigfd7ffb12013-04-29 09:11:57 +0200156 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000158
Elliott Hughes4f915812016-12-05 13:12:48 -0800159 // Don't write properties to disk until after we have read all default
160 // properties to prevent them from being overwritten by default values.
Tom Cherry1cf8d692017-10-10 13:35:01 -0700161 if (persistent_properties_loaded && StartsWith(name, "persist.")) {
Tom Cherry16fad422017-08-04 15:59:03 -0700162 WritePersistentProperty(name, value);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800163 }
Tom Cherry98ad32a2017-04-17 16:34:20 -0700164 property_changed(name, value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000165 return PROP_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800166}
167
Tom Marshall62696902017-06-09 18:29:23 +0000168typedef int (*PropertyAsyncFunc)(const std::string&, const std::string&);
169
170struct PropertyChildInfo {
171 pid_t pid;
172 PropertyAsyncFunc func;
173 std::string name;
174 std::string value;
175};
176
177static std::queue<PropertyChildInfo> property_children;
178
179static void PropertyChildLaunch() {
180 auto& info = property_children.front();
181 pid_t pid = fork();
182 if (pid < 0) {
183 LOG(ERROR) << "Failed to fork for property_set_async";
184 while (!property_children.empty()) {
185 property_children.pop();
186 }
187 return;
188 }
189 if (pid != 0) {
190 info.pid = pid;
191 } else {
192 if (info.func(info.name, info.value) != 0) {
193 LOG(ERROR) << "property_set_async(\"" << info.name << "\", \"" << info.value
194 << "\") failed";
195 }
Tom Cherry4a679452017-09-26 16:30:03 -0700196 _exit(0);
Tom Marshall62696902017-06-09 18:29:23 +0000197 }
198}
199
200bool PropertyChildReap(pid_t pid) {
201 if (property_children.empty()) {
202 return false;
203 }
204 auto& info = property_children.front();
205 if (info.pid != pid) {
206 return false;
207 }
Tom Cherry69d47aa2018-03-01 11:00:57 -0800208 std::string error;
209 if (PropertySet(info.name, info.value, &error) != PROP_SUCCESS) {
210 LOG(ERROR) << "Failed to set async property " << info.name << " to " << info.value << ": "
211 << error;
Tom Marshall62696902017-06-09 18:29:23 +0000212 }
213 property_children.pop();
214 if (!property_children.empty()) {
215 PropertyChildLaunch();
216 }
217 return true;
218}
219
220static uint32_t PropertySetAsync(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800221 PropertyAsyncFunc func, std::string* error) {
Tom Marshall62696902017-06-09 18:29:23 +0000222 if (value.empty()) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800223 return PropertySet(name, value, error);
Tom Marshall62696902017-06-09 18:29:23 +0000224 }
225
226 PropertyChildInfo info;
227 info.func = func;
228 info.name = name;
229 info.value = value;
230 property_children.push(info);
231 if (property_children.size() == 1) {
232 PropertyChildLaunch();
233 }
234 return PROP_SUCCESS;
235}
236
237static int RestoreconRecursiveAsync(const std::string& name, const std::string& value) {
238 return selinux_android_restorecon(value.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE);
239}
240
Tom Cherry32228482018-01-18 16:14:25 -0800241uint32_t InitPropertySet(const std::string& name, const std::string& value) {
242 if (StartsWith(name, "ctl.")) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800243 LOG(ERROR) << "InitPropertySet: Do not set ctl. properties from init; call the Service "
244 "functions directly";
245 return PROP_ERROR_INVALID_NAME;
246 }
247 if (name == "selinux.restorecon_recursive") {
248 LOG(ERROR) << "InitPropertySet: Do not set selinux.restorecon_recursive from init; use the "
249 "restorecon builtin directly";
Tom Cherry32228482018-01-18 16:14:25 -0800250 return PROP_ERROR_INVALID_NAME;
251 }
252
Tom Cherry69d47aa2018-03-01 11:00:57 -0800253 uint32_t result = 0;
254 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
255 std::string error;
256 result = HandlePropertySet(name, value, kInitContext.c_str(), cr, &error);
257 if (result != PROP_SUCCESS) {
258 LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
Tom Cherry32228482018-01-18 16:14:25 -0800259 }
260
Tom Cherry69d47aa2018-03-01 11:00:57 -0800261 return result;
Tom Cherry32228482018-01-18 16:14:25 -0800262}
263
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000264class SocketConnection {
Tom Cherry32228482018-01-18 16:14:25 -0800265 public:
266 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000267
Tom Cherry32228482018-01-18 16:14:25 -0800268 ~SocketConnection() { close(socket_); }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000269
Tom Cherry32228482018-01-18 16:14:25 -0800270 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
271 return RecvFully(value, sizeof(*value), timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000272 }
273
Tom Cherry32228482018-01-18 16:14:25 -0800274 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
275 return RecvFully(chars, size, timeout_ms);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000276 }
277
Tom Cherry32228482018-01-18 16:14:25 -0800278 bool RecvString(std::string* value, uint32_t* timeout_ms) {
279 uint32_t len = 0;
280 if (!RecvUint32(&len, timeout_ms)) {
281 return false;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000282 }
Tom Cherry32228482018-01-18 16:14:25 -0800283
284 if (len == 0) {
285 *value = "";
286 return true;
287 }
288
289 // http://b/35166374: don't allow init to make arbitrarily large allocations.
290 if (len > 0xffff) {
291 LOG(ERROR) << "sys_prop: RecvString asked to read huge string: " << len;
292 errno = ENOMEM;
293 return false;
294 }
295
296 std::vector<char> chars(len);
297 if (!RecvChars(&chars[0], len, timeout_ms)) {
298 return false;
299 }
300
301 *value = std::string(&chars[0], len);
302 return true;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000303 }
304
Tom Cherry32228482018-01-18 16:14:25 -0800305 bool SendUint32(uint32_t value) {
306 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0));
307 return result == sizeof(value);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000308 }
309
Tom Cherry32228482018-01-18 16:14:25 -0800310 int socket() { return socket_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000311
Tom Cherry32228482018-01-18 16:14:25 -0800312 const ucred& cred() { return cred_; }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000313
Tom Cherry32228482018-01-18 16:14:25 -0800314 std::string source_context() const {
315 char* source_context = nullptr;
316 getpeercon(socket_, &source_context);
317 std::string result = source_context;
318 freecon(source_context);
319 return result;
320 }
321
322 private:
323 bool PollIn(uint32_t* timeout_ms) {
324 struct pollfd ufds[1];
325 ufds[0].fd = socket_;
326 ufds[0].events = POLLIN;
327 ufds[0].revents = 0;
328 while (*timeout_ms > 0) {
329 auto start_time = std::chrono::steady_clock::now();
330 int nr = poll(ufds, 1, *timeout_ms);
331 auto now = std::chrono::steady_clock::now();
332 auto time_elapsed =
333 std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
334 uint64_t millis = time_elapsed.count();
335 *timeout_ms = (millis > *timeout_ms) ? 0 : *timeout_ms - millis;
336
337 if (nr > 0) {
338 return true;
339 }
340
341 if (nr == 0) {
342 // Timeout
343 break;
344 }
345
346 if (nr < 0 && errno != EINTR) {
347 PLOG(ERROR) << "sys_prop: error waiting for uid " << cred_.uid
348 << " to send property message";
349 return false;
350 } else { // errno == EINTR
351 // Timer rounds milliseconds down in case of EINTR we want it to be rounded up
352 // to avoid slowing init down by causing EINTR with under millisecond timeout.
353 if (*timeout_ms > 0) {
354 --(*timeout_ms);
355 }
356 }
357 }
358
359 LOG(ERROR) << "sys_prop: timeout waiting for uid " << cred_.uid
360 << " to send property message.";
361 return false;
362 }
363
364 bool RecvFully(void* data_ptr, size_t size, uint32_t* timeout_ms) {
365 size_t bytes_left = size;
366 char* data = static_cast<char*>(data_ptr);
367 while (*timeout_ms > 0 && bytes_left > 0) {
368 if (!PollIn(timeout_ms)) {
369 return false;
370 }
371
372 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
373 if (result <= 0) {
DuXiao40533592018-05-21 14:43:56 +0800374 PLOG(ERROR) << "sys_prop: recv error";
Tom Cherry32228482018-01-18 16:14:25 -0800375 return false;
376 }
377
378 bytes_left -= result;
379 data += result;
380 }
381
DuXiao40533592018-05-21 14:43:56 +0800382 if (bytes_left != 0) {
383 LOG(ERROR) << "sys_prop: recv data is not properly obtained.";
384 }
385
Tom Cherry32228482018-01-18 16:14:25 -0800386 return bytes_left == 0;
387 }
388
389 int socket_;
390 ucred cred_;
391
392 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000393};
394
Tom Cherry32228482018-01-18 16:14:25 -0800395// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
396uint32_t HandlePropertySet(const std::string& name, const std::string& value,
Tom Cherry69d47aa2018-03-01 11:00:57 -0800397 const std::string& source_context, const ucred& cr, std::string* error) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800398 if (!IsLegalPropertyName(name)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800399 *error = "Illegal property name";
Tom Cherry32228482018-01-18 16:14:25 -0800400 return PROP_ERROR_INVALID_NAME;
401 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000402
Tom Cherry32228482018-01-18 16:14:25 -0800403 if (StartsWith(name, "ctl.")) {
404 // ctl. properties have their name ctl.<action> and their value is the name of the service
405 // to apply that action to. Permissions for these actions are based on the service, so we
406 // must create a fake name of ctl.<service> to check permissions.
407 auto control_string = "ctl." + value;
408 const char* target_context = nullptr;
409 const char* type = nullptr;
410 property_info_area->GetPropertyInfo(control_string.c_str(), &target_context, &type);
411 if (!CheckMacPerms(control_string, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800412 *error = StringPrintf("Unable to '%s' service %s", name.c_str() + 4, value.c_str());
Tom Cherry32228482018-01-18 16:14:25 -0800413 return PROP_ERROR_HANDLE_CONTROL_MESSAGE;
414 }
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000415
Tom Cherry6f2d56d2018-02-21 10:37:44 -0800416 HandleControlMessage(name.c_str() + 4, value, cr.pid);
Tom Cherry32228482018-01-18 16:14:25 -0800417 return PROP_SUCCESS;
418 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800419
Tom Cherry32228482018-01-18 16:14:25 -0800420 const char* target_context = nullptr;
421 const char* type = nullptr;
422 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
Tom Cherrya84e14d2017-09-05 12:38:30 -0700423
Tom Cherry32228482018-01-18 16:14:25 -0800424 if (!CheckMacPerms(name, target_context, source_context.c_str(), cr)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800425 *error = "SELinux permission check failed";
Tom Cherry32228482018-01-18 16:14:25 -0800426 return PROP_ERROR_PERMISSION_DENIED;
427 }
428
429 if (type == nullptr || !CheckType(type, value)) {
Tom Cherry69d47aa2018-03-01 11:00:57 -0800430 *error = StringPrintf("Property type check failed, value doesn't match expected type '%s'",
431 (type ?: "(null)"));
Tom Cherry32228482018-01-18 16:14:25 -0800432 return PROP_ERROR_INVALID_VALUE;
433 }
434
435 // sys.powerctl is a special property that is used to make the device reboot. We want to log
436 // any process that sets this property to be able to accurately blame the cause of a shutdown.
437 if (name == "sys.powerctl") {
438 std::string cmdline_path = StringPrintf("proc/%d/cmdline", cr.pid);
439 std::string process_cmdline;
440 std::string process_log_string;
441 if (ReadFileToString(cmdline_path, &process_cmdline)) {
442 // Since cmdline is null deliminated, .c_str() conveniently gives us just the process
443 // path.
444 process_log_string = StringPrintf(" (%s)", process_cmdline.c_str());
445 }
446 LOG(INFO) << "Received sys.powerctl='" << value << "' from pid: " << cr.pid
447 << process_log_string;
448 }
449
Tom Cherry69d47aa2018-03-01 11:00:57 -0800450 if (name == "selinux.restorecon_recursive") {
451 return PropertySetAsync(name, value, RestoreconRecursiveAsync, error);
452 }
453
454 return PropertySet(name, value, error);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000455}
456
457static void handle_property_set_fd() {
458 static constexpr uint32_t kDefaultSocketTimeout = 2000; /* ms */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800459
Robert Sesekca2da602017-01-25 08:08:51 -0500460 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC);
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700461 if (s == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462 return;
463 }
464
Tom Cherry32228482018-01-18 16:14:25 -0800465 ucred cr;
Elliott Hughes3dcfa3f2016-08-23 12:50:00 -0700466 socklen_t cr_size = sizeof(cr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800467 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cr_size) < 0) {
468 close(s);
Elliott Hughesb005d902017-02-22 14:54:15 -0800469 PLOG(ERROR) << "sys_prop: unable to get SO_PEERCRED";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800470 return;
471 }
472
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000473 SocketConnection socket(s, cr);
474 uint32_t timeout_ms = kDefaultSocketTimeout;
475
476 uint32_t cmd = 0;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000477 if (!socket.RecvUint32(&cmd, &timeout_ms)) {
478 PLOG(ERROR) << "sys_prop: error while reading command from the socket";
479 socket.SendUint32(PROP_ERROR_READ_CMD);
JP Abgrall4515d812014-01-31 14:37:07 -0800480 return;
481 }
482
Elliott Hughesb005d902017-02-22 14:54:15 -0800483 switch (cmd) {
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000484 case PROP_MSG_SETPROP: {
485 char prop_name[PROP_NAME_MAX];
486 char prop_value[PROP_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800487
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000488 if (!socket.RecvChars(prop_name, PROP_NAME_MAX, &timeout_ms) ||
489 !socket.RecvChars(prop_value, PROP_VALUE_MAX, &timeout_ms)) {
490 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP): error while reading name/value from the socket";
491 return;
Nick Kralevich69463612013-09-13 17:21:28 -0700492 }
493
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000494 prop_name[PROP_NAME_MAX-1] = 0;
495 prop_value[PROP_VALUE_MAX-1] = 0;
rpcraig63207cd2012-08-09 10:05:49 -0400496
Tom Cherry69d47aa2018-03-01 11:00:57 -0800497 const auto& cr = socket.cred();
498 std::string error;
499 uint32_t result =
500 HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error);
501 if (result != PROP_SUCCESS) {
502 LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value
503 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
504 << error;
505 }
506
Dimitry Ivanovdee4bd22017-01-19 14:53:00 -0800507 break;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000508 }
Dimitry Ivanov70c4ecf2017-01-24 18:38:09 +0000509
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000510 case PROP_MSG_SETPROP2: {
511 std::string name;
512 std::string value;
513 if (!socket.RecvString(&name, &timeout_ms) ||
514 !socket.RecvString(&value, &timeout_ms)) {
515 PLOG(ERROR) << "sys_prop(PROP_MSG_SETPROP2): error while reading name/value from the socket";
516 socket.SendUint32(PROP_ERROR_READ_DATA);
517 return;
518 }
519
Tom Cherry69d47aa2018-03-01 11:00:57 -0800520 const auto& cr = socket.cred();
521 std::string error;
522 uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error);
523 if (result != PROP_SUCCESS) {
524 LOG(ERROR) << "Unable to set property '" << name << "' to '" << value
525 << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": "
526 << error;
527 }
Tom Cherry32228482018-01-18 16:14:25 -0800528 socket.SendUint32(result);
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000529 break;
530 }
Elliott Hughesb005d902017-02-22 14:54:15 -0800531
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800532 default:
Elliott Hughesb005d902017-02-22 14:54:15 -0800533 LOG(ERROR) << "sys_prop: invalid command " << cmd;
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000534 socket.SendUint32(PROP_ERROR_INVALID_CMD);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800535 break;
536 }
537}
538
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800539static bool load_properties_from_file(const char *, const char *);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800540
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800541/*
542 * Filter is used to decide which properties to load: NULL loads all keys,
543 * "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
544 */
Tom Cherrydc375862018-02-28 10:39:01 -0800545static void LoadProperties(char* data, const char* filter, const char* filename) {
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800546 char *key, *value, *eol, *sol, *tmp, *fn;
547 size_t flen = 0;
548
Tom Cherrydc375862018-02-28 10:39:01 -0800549 const char* context = kInitContext.c_str();
Logan Chien837b2a42018-05-03 14:33:52 +0800550 if (SelinuxHasVendorInit()) {
Tom Cherrya1dbeb82018-04-11 15:50:00 -0700551 for (const auto& [path_prefix, secontext] : paths_and_secontexts) {
552 if (StartsWith(filename, path_prefix)) {
553 context = secontext;
554 }
Tom Cherrydc375862018-02-28 10:39:01 -0800555 }
556 }
557
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800558 if (filter) {
559 flen = strlen(filter);
560 }
561
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800562 sol = data;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800563 while ((eol = strchr(sol, '\n'))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800564 key = sol;
565 *eol++ = 0;
566 sol = eol;
567
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800568 while (isspace(*key)) key++;
569 if (*key == '#') continue;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800570
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800571 tmp = eol - 2;
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800572 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800573
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800574 if (!strncmp(key, "import ", 7) && flen == 0) {
575 fn = key + 7;
576 while (isspace(*fn)) fn++;
577
578 key = strchr(fn, ' ');
579 if (key) {
580 *key++ = 0;
581 while (isspace(*key)) key++;
582 }
583
584 load_properties_from_file(fn, key);
585
586 } else {
587 value = strchr(key, '=');
588 if (!value) continue;
589 *value++ = 0;
590
591 tmp = value - 2;
592 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
593
594 while (isspace(*value)) value++;
595
596 if (flen > 0) {
597 if (filter[flen - 1] == '*') {
598 if (strncmp(key, filter, flen - 1)) continue;
599 } else {
600 if (strcmp(key, filter)) continue;
601 }
602 }
603
Tom Cherrydc375862018-02-28 10:39:01 -0800604 if (StartsWith(key, "ctl.") || key == "sys.powerctl"s ||
605 key == "selinux.restorecon_recursive"s) {
606 LOG(ERROR) << "Ignoring disallowed property '" << key
607 << "' with special meaning in prop file '" << filename << "'";
608 continue;
609 }
610
611 uint32_t result = 0;
612 ucred cr = {.pid = 1, .uid = 0, .gid = 0};
613 std::string error;
614 result = HandlePropertySet(key, value, context, cr, &error);
615 if (result != PROP_SUCCESS) {
616 LOG(ERROR) << "Unable to set property '" << key << "' to '" << value
617 << "' in property file '" << filename << "': " << error;
618 }
Jeff Sharkeyf96b0442014-03-06 14:26:36 -0800619 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800620 }
621}
622
Elliott Hughes5a7ad842016-09-30 14:12:33 -0700623// Filter is used to decide which properties to load: NULL loads all keys,
624// "ro.foo.*" is a prefix match, and "ro.foo.bar" is an exact match.
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800625static bool load_properties_from_file(const char* filename, const char* filter) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700626 Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700627 auto file_contents = ReadFile(filename);
628 if (!file_contents) {
629 PLOG(WARNING) << "Couldn't load property file '" << filename
630 << "': " << file_contents.error();
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800631 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800632 }
Tom Cherry62ca6632017-08-03 12:54:07 -0700633 file_contents->push_back('\n');
Tom Cherrydc375862018-02-28 10:39:01 -0800634
635 LoadProperties(file_contents->data(), filter, filename);
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000636 LOG(VERBOSE) << "(Loading properties from " << filename << " took " << t << ".)";
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800637 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800638}
639
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900640// persist.sys.usb.config values can't be combined on build-time when property
641// files are split into each partition.
642// So we need to apply the same rule of build/make/tools/post_process_props.py
643// on runtime.
644static void update_sys_usb_config() {
645 bool is_debuggable = android::base::GetBoolProperty("ro.debuggable", false);
646 std::string config = android::base::GetProperty("persist.sys.usb.config", "");
647 if (config.empty()) {
648 property_set("persist.sys.usb.config", is_debuggable ? "adb" : "none");
649 } else if (is_debuggable && config.find("adb") == std::string::npos &&
650 config.length() + 4 < PROP_VALUE_MAX) {
651 config.append(",adb");
652 property_set("persist.sys.usb.config", config);
653 }
654}
655
Elliott Hughesda40c002015-03-27 23:20:44 -0700656void property_load_boot_defaults() {
Hung-ying Tyanaef2b092017-06-02 18:59:46 +0800657 if (!load_properties_from_file("/system/etc/prop.default", NULL)) {
658 // Try recovery path
659 if (!load_properties_from_file("/prop.default", NULL)) {
660 // Try legacy path
661 load_properties_from_file("/default.prop", NULL);
662 }
663 }
Jaekyun Seokdff165d2017-11-28 12:10:10 +0900664 load_properties_from_file("/product/build.prop", NULL);
Hung-ying Tyan33463382017-05-25 19:18:17 +0800665 load_properties_from_file("/odm/default.prop", NULL);
666 load_properties_from_file("/vendor/default.prop", NULL);
Jaekyun Seok0cf3a072017-04-24 18:52:54 +0900667
668 update_sys_usb_config();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800669}
670
Nick Kralevich32b90232012-09-19 11:15:24 -0700671static void load_override_properties() {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800672 if (ALLOW_LOCAL_PROP_OVERRIDE) {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800673 load_properties_from_file("/data/local.prop", NULL);
Nick Kralevich32b90232012-09-19 11:15:24 -0700674 }
Nick Kralevich32b90232012-09-19 11:15:24 -0700675}
676
Ken Sumrallc5c51032011-03-08 17:01:29 -0800677/* When booting an encrypted system, /data is not mounted when the
678 * property service is started, so any properties stored there are
679 * not loaded. Vold triggers init to load these properties once it
680 * has mounted /data.
681 */
Elliott Hughesda40c002015-03-27 23:20:44 -0700682void load_persist_props(void) {
Tom Cherry9951b792017-08-24 14:01:25 -0700683 // Devices with FDE have load_persist_props called twice; the first time when the temporary
684 // /data partition is mounted and then again once /data is truly mounted. We do not want to
685 // read persistent properties from the temporary /data partition or mark persistent properties
686 // as having been loaded during the first call, so we return in that case.
687 std::string crypto_state = android::base::GetProperty("ro.crypto.state", "");
688 std::string crypto_type = android::base::GetProperty("ro.crypto.type", "");
689 if (crypto_state == "encrypted" && crypto_type == "block") {
690 static size_t num_calls = 0;
691 if (++num_calls == 1) return;
692 }
693
Nick Kralevich32b90232012-09-19 11:15:24 -0700694 load_override_properties();
Ken Sumrallc5c51032011-03-08 17:01:29 -0800695 /* Read persistent properties after all default values have been loaded. */
Tom Cherry16fad422017-08-04 15:59:03 -0700696 auto persistent_properties = LoadPersistentProperties();
Tom Cherrya97faba2017-09-15 15:44:04 -0700697 for (const auto& persistent_property_record : persistent_properties.properties()) {
698 property_set(persistent_property_record.name(), persistent_property_record.value());
Tom Cherry16fad422017-08-04 15:59:03 -0700699 }
700 persistent_properties_loaded = true;
Keun-young Park404906d2017-02-28 19:20:38 -0800701 property_set("ro.persistent_properties.ready", "true");
Ken Sumrallc5c51032011-03-08 17:01:29 -0800702}
703
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700704void load_recovery_id_prop() {
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800705 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
706 fs_mgr_free_fstab);
707 if (!fstab) {
708 PLOG(ERROR) << "unable to read default fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700709 return;
710 }
711
Bowgo Tsaic9a18422017-03-09 22:36:34 +0800712 fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), RECOVERY_MOUNT_POINT);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700713 if (rec == NULL) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700714 LOG(ERROR) << "/recovery not specified in fstab";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700715 return;
716 }
717
718 int fd = open(rec->blk_device, O_RDONLY);
719 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700720 PLOG(ERROR) << "error opening block device " << rec->blk_device;
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700721 return;
722 }
723
724 boot_img_hdr hdr;
725 if (android::base::ReadFully(fd, &hdr, sizeof(hdr))) {
726 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id));
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700727 property_set("ro.recovery_id", hex);
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700728 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700729 PLOG(ERROR) << "error reading /recovery";
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700730 }
731
732 close(fd);
733}
734
Paul Lawrence948410a2015-07-01 14:40:56 -0700735void load_system_props() {
Hung-ying Tyan33463382017-05-25 19:18:17 +0800736 load_properties_from_file("/system/build.prop", NULL);
737 load_properties_from_file("/odm/build.prop", NULL);
738 load_properties_from_file("/vendor/build.prop", NULL);
Elliott Hughes795798d2017-01-27 16:21:55 -0800739 load_properties_from_file("/factory/factory.prop", "ro.*");
Andres Moralesdb5f5d42015-05-08 08:30:33 -0700740 load_recovery_id_prop();
Riley Andrewse4b7b292014-06-16 15:06:21 -0700741}
742
Tom Cherryc3692b32017-08-10 12:22:44 -0700743static int SelinuxAuditCallback(void* data, security_class_t /*cls*/, char* buf, size_t len) {
744 property_audit_data* d = reinterpret_cast<property_audit_data*>(data);
745
746 if (!d || !d->name || !d->cr) {
747 LOG(ERROR) << "AuditCallback invoked with null data arguments!";
748 return 0;
749 }
750
751 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name, d->cr->pid, d->cr->uid,
752 d->cr->gid);
753 return 0;
754}
755
Tom Cherry2ae2f602017-12-14 01:58:17 +0000756bool LoadPropertyInfoFromFile(const std::string& filename,
757 std::vector<PropertyInfoEntry>* property_infos) {
758 auto file_contents = std::string();
759 if (!ReadFileToString(filename, &file_contents)) {
760 PLOG(ERROR) << "Could not read properties from '" << filename << "'";
761 return false;
762 }
763
Tom Cherry919458c2018-01-03 14:39:28 -0800764 auto errors = std::vector<std::string>{};
765 ParsePropertyInfoFile(file_contents, property_infos, &errors);
766 // Individual parsing errors are reported but do not cause a failed boot, which is what
767 // returning false would do here.
768 for (const auto& error : errors) {
769 LOG(ERROR) << "Could not read line from '" << filename << "': " << error;
Tom Cherry2ae2f602017-12-14 01:58:17 +0000770 }
Tom Cherry919458c2018-01-03 14:39:28 -0800771
Tom Cherry2ae2f602017-12-14 01:58:17 +0000772 return true;
773}
774
775void CreateSerializedPropertyInfo() {
776 auto property_infos = std::vector<PropertyInfoEntry>();
777 if (access("/system/etc/selinux/plat_property_contexts", R_OK) != -1) {
778 if (!LoadPropertyInfoFromFile("/system/etc/selinux/plat_property_contexts",
779 &property_infos)) {
780 return;
781 }
782 // Don't check for failure here, so we always have a sane list of properties.
783 // E.g. In case of recovery, the vendor partition will not have mounted and we
784 // still need the system / platform properties to function.
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800785 if (!LoadPropertyInfoFromFile("/vendor/etc/selinux/vendor_property_contexts",
786 &property_infos)) {
787 // Fallback to nonplat_* if vendor_* doesn't exist.
788 LoadPropertyInfoFromFile("/vendor/etc/selinux/nonplat_property_contexts",
789 &property_infos);
790 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000791 } else {
792 if (!LoadPropertyInfoFromFile("/plat_property_contexts", &property_infos)) {
793 return;
794 }
Bowgo Tsai36cf3532017-12-07 16:05:25 +0800795 if (!LoadPropertyInfoFromFile("/vendor_property_contexts", &property_infos)) {
796 // Fallback to nonplat_* if vendor_* doesn't exist.
797 LoadPropertyInfoFromFile("/nonplat_property_contexts", &property_infos);
798 }
Tom Cherry2ae2f602017-12-14 01:58:17 +0000799 }
Tom Cherry927c5d52017-12-11 01:40:07 -0800800
Tom Cherry2ae2f602017-12-14 01:58:17 +0000801 auto serialized_contexts = std::string();
802 auto error = std::string();
Tom Cherry927c5d52017-12-11 01:40:07 -0800803 if (!BuildTrie(property_infos, "u:object_r:default_prop:s0", "string", &serialized_contexts,
Tom Cherry2ae2f602017-12-14 01:58:17 +0000804 &error)) {
805 LOG(ERROR) << "Unable to serialize property contexts: " << error;
806 return;
807 }
808
809 constexpr static const char kPropertyInfosPath[] = "/dev/__properties__/property_info";
810 if (!WriteStringToFile(serialized_contexts, kPropertyInfosPath, 0444, 0, 0, false)) {
811 PLOG(ERROR) << "Unable to write serialized property infos to file";
812 }
813 selinux_android_restorecon(kPropertyInfosPath, 0);
814}
815
816void start_property_service() {
Tom Cherryc3692b32017-08-10 12:22:44 -0700817 selinux_callback cb;
818 cb.func_audit = SelinuxAuditCallback;
819 selinux_set_callback(SELINUX_CB_AUDIT, cb);
820
Dimitry Ivanovc9bb0332017-01-24 20:43:58 +0000821 property_set("ro.property_service.version", "2");
822
Mark Salyzynb066fcc2017-05-05 14:44:35 -0700823 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
Tom Cherryc3692b32017-08-10 12:22:44 -0700824 false, 0666, 0, 0, nullptr);
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700825 if (property_set_fd == -1) {
Tom Cherry4a679452017-09-26 16:30:03 -0700826 PLOG(FATAL) << "start_property_service socket creation failed";
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700827 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800828
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700829 listen(property_set_fd, 8);
Colin Crossd11beb22010-04-13 19:33:37 -0700830
Elliott Hughes929f4072015-04-24 21:13:44 -0700831 register_epoll_handler(property_set_fd, handle_property_set_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800832}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700833
834} // namespace init
835} // namespace android