2017-05-26 00:58:59 +02: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-09-06 19:52:31 +02:00
|
|
|
#pragma once
|
2017-05-26 00:58:59 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "devices.h"
|
2019-08-08 01:02:28 +02:00
|
|
|
#include "firmware_handler.h"
|
2017-05-26 00:58:59 +02:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
2018-07-14 00:32:02 +02:00
|
|
|
struct UeventdConfiguration {
|
|
|
|
std::vector<Subsystem> subsystems;
|
|
|
|
std::vector<SysfsPermissions> sysfs_permissions;
|
|
|
|
std::vector<Permissions> dev_permissions;
|
|
|
|
std::vector<std::string> firmware_directories;
|
2019-08-08 01:02:28 +02:00
|
|
|
std::vector<ExternalFirmwareHandler> external_firmware_handlers;
|
2021-05-01 08:36:58 +02:00
|
|
|
std::vector<std::string> parallel_restorecon_dirs;
|
2018-08-01 22:12:20 +02:00
|
|
|
bool enable_modalias_handling = false;
|
2018-12-06 22:29:30 +01:00
|
|
|
size_t uevent_socket_rcvbuf_size = 0;
|
2019-09-06 19:52:31 +02:00
|
|
|
bool enable_parallel_restorecon = false;
|
2017-05-26 00:58:59 +02:00
|
|
|
};
|
|
|
|
|
2020-12-11 18:26:55 +01:00
|
|
|
UeventdConfiguration ParseConfig(const std::vector<std::string>& configs);
|
2017-05-26 00:58:59 +02:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|