2009-03-04 04:32:55 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-06-26 23:44:37 +02:00
|
|
|
#pragma once
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2018-02-21 19:37:44 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2015-06-13 03:02:20 +02:00
|
|
|
#include <string>
|
2017-06-22 21:53:17 +02:00
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
#include "action.h"
|
2018-02-14 00:36:14 +01:00
|
|
|
#include "action_manager.h"
|
2017-07-27 21:54:48 +02:00
|
|
|
#include "parser.h"
|
2019-06-26 19:46:20 +02:00
|
|
|
#include "service_list.h"
|
2017-07-27 21:54:48 +02:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
2017-07-28 01:20:58 +02:00
|
|
|
Parser CreateParser(ActionManager& action_manager, ServiceList& service_list);
|
2022-05-09 20:16:51 +02:00
|
|
|
Parser CreateApexConfigParser(ActionManager& action_manager, ServiceList& service_list);
|
2017-07-27 21:54:48 +02:00
|
|
|
|
2017-02-02 19:52:39 +01:00
|
|
|
bool start_waiting_for_property(const char *name, const char *value);
|
2017-01-26 01:27:03 +01:00
|
|
|
|
2017-04-20 00:31:58 +02:00
|
|
|
void DumpState();
|
|
|
|
|
2017-06-28 07:08:45 +02:00
|
|
|
void ResetWaitForProp();
|
|
|
|
|
2019-04-23 02:46:37 +02:00
|
|
|
void SendLoadPersistentPropertiesMessage();
|
init: handle property messages asynchronously #2
A previous change moved property_service into its own thread, since
there was otherwise a deadlock whenever a process called by init would
try to set a property. This new thread, however, would send a message
via a blocking socket to init for each property that it received,
since init may need to take action depending on which property it is.
Unfortunately, this means that the deadlock is still possible, the
only difference is the socket's buffer must be filled before init deadlocks.
This change, therefore, adds the following:
1) A lock for instructing init to reboot
2) A lock for waiting on properties
3) A lock for queueing new properties
A previous version of this change was reverted and added locks around
all service operations and allowed the property thread to spawn
services directly. This was complex due to the fact that this code
was not designed to be multi-threaded. It was reverted due to
apparent issues during reboot. This change keeps a queue of processes
pending control messages, which it will then handle in the future. It
is less flexible but safer.
Bug: 146877356
Bug: 148236233
Bug: 150863651
Bug: 151251827
Test: multiple reboot tests, safely restarting hwservicemanager
Change-Id: Ice773436e85d3bf636bb0a892f3f6002bdf996b6
2020-03-12 22:29:25 +01:00
|
|
|
|
|
|
|
void PropertyChanged(const std::string& name, const std::string& value);
|
|
|
|
bool QueueControlMessage(const std::string& message, const std::string& name, pid_t pid, int fd);
|
2019-04-23 02:46:37 +02:00
|
|
|
|
2018-11-06 23:12:05 +01:00
|
|
|
int SecondStageMain(int argc, char** argv);
|
2018-01-19 23:25:48 +01:00
|
|
|
|
2022-07-16 00:02:14 +02:00
|
|
|
int StopServicesFromApex(const std::string& apex_name);
|
|
|
|
|
2022-07-22 01:05:13 +02:00
|
|
|
void RemoveServiceAndActionFromApex(const std::string& apex_name);
|
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|