2017-07-27 21:54:48 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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.
|
|
|
|
*/
|
|
|
|
|
2015-02-04 23:46:36 +01:00
|
|
|
#include "parser.h"
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
#include <android-base/chrono_utils.h>
|
2018-06-20 00:18:40 +02:00
|
|
|
#include <android-base/file.h>
|
2017-07-27 21:54:48 +02:00
|
|
|
#include <android-base/logging.h>
|
|
|
|
#include <android-base/stringprintf.h>
|
|
|
|
#include <android-base/strings.h>
|
|
|
|
|
|
|
|
#include "tokenizer.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
Parser::Parser() {}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
void Parser::AddSectionParser(const std::string& name, std::unique_ptr<SectionParser> parser) {
|
|
|
|
section_parsers_[name] = std::move(parser);
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
void Parser::AddSingleLineParser(const std::string& prefix, LineCallback callback) {
|
2019-07-10 20:18:24 +02:00
|
|
|
line_callbacks_.emplace_back(prefix, std::move(callback));
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
|
|
|
|
2018-06-20 00:18:40 +02:00
|
|
|
void Parser::ParseData(const std::string& filename, std::string* data) {
|
2020-04-10 19:15:30 +02:00
|
|
|
data->push_back('\n');
|
2018-06-20 00:18:40 +02:00
|
|
|
data->push_back('\0');
|
2017-07-27 21:54:48 +02:00
|
|
|
|
|
|
|
parse_state state;
|
|
|
|
state.line = 0;
|
2018-06-20 00:18:40 +02:00
|
|
|
state.ptr = data->data();
|
2017-07-27 21:54:48 +02:00
|
|
|
state.nexttoken = 0;
|
|
|
|
|
|
|
|
SectionParser* section_parser = nullptr;
|
2017-11-10 23:20:47 +01:00
|
|
|
int section_start_line = -1;
|
2017-07-27 21:54:48 +02:00
|
|
|
std::vector<std::string> args;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2018-10-26 21:33:52 +02:00
|
|
|
// If we encounter a bad section start, there is no valid parser object to parse the subsequent
|
|
|
|
// sections, so we must suppress errors until the next valid section is found.
|
|
|
|
bool bad_section_found = false;
|
|
|
|
|
2017-11-10 23:20:47 +01:00
|
|
|
auto end_section = [&] {
|
2018-10-26 21:33:52 +02:00
|
|
|
bad_section_found = false;
|
2017-11-10 23:20:47 +01:00
|
|
|
if (section_parser == nullptr) return;
|
|
|
|
|
2020-02-05 19:49:33 +01:00
|
|
|
if (auto result = section_parser->EndSection(); !result.ok()) {
|
2018-05-10 02:38:30 +02:00
|
|
|
parse_error_count_++;
|
2017-11-10 23:20:47 +01:00
|
|
|
LOG(ERROR) << filename << ": " << section_start_line << ": " << result.error();
|
|
|
|
}
|
|
|
|
|
|
|
|
section_parser = nullptr;
|
|
|
|
section_start_line = -1;
|
|
|
|
};
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
for (;;) {
|
2017-07-27 21:54:48 +02:00
|
|
|
switch (next_token(&state)) {
|
|
|
|
case T_EOF:
|
2017-11-10 23:20:47 +01:00
|
|
|
end_section();
|
2018-06-20 00:18:40 +02:00
|
|
|
|
|
|
|
for (const auto& [section_name, section_parser] : section_parsers_) {
|
|
|
|
section_parser->EndFile();
|
|
|
|
}
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
return;
|
2018-06-12 19:57:35 +02:00
|
|
|
case T_NEWLINE: {
|
2017-07-27 21:54:48 +02:00
|
|
|
state.line++;
|
|
|
|
if (args.empty()) break;
|
|
|
|
// If we have a line matching a prefix we recognize, call its callback and unset any
|
|
|
|
// current section parsers. This is meant for /sys/ and /dev/ line entries for
|
|
|
|
// uevent.
|
2018-06-12 19:57:35 +02:00
|
|
|
auto line_callback = std::find_if(
|
|
|
|
line_callbacks_.begin(), line_callbacks_.end(),
|
|
|
|
[&args](const auto& c) { return android::base::StartsWith(args[0], c.first); });
|
|
|
|
if (line_callback != line_callbacks_.end()) {
|
|
|
|
end_section();
|
|
|
|
|
2020-02-05 19:49:33 +01:00
|
|
|
if (auto result = line_callback->second(std::move(args)); !result.ok()) {
|
2018-06-12 19:57:35 +02:00
|
|
|
parse_error_count_++;
|
|
|
|
LOG(ERROR) << filename << ": " << state.line << ": " << result.error();
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
2018-06-12 19:57:35 +02:00
|
|
|
} else if (section_parsers_.count(args[0])) {
|
2017-11-10 23:20:47 +01:00
|
|
|
end_section();
|
2017-07-27 21:54:48 +02:00
|
|
|
section_parser = section_parsers_[args[0]].get();
|
2017-11-10 23:20:47 +01:00
|
|
|
section_start_line = state.line;
|
2017-08-03 02:01:36 +02:00
|
|
|
if (auto result =
|
2020-02-05 19:49:33 +01:00
|
|
|
section_parser->ParseSection(std::move(args), filename, state.line);
|
|
|
|
!result.ok()) {
|
2018-05-10 02:38:30 +02:00
|
|
|
parse_error_count_++;
|
2017-08-03 02:01:36 +02:00
|
|
|
LOG(ERROR) << filename << ": " << state.line << ": " << result.error();
|
2017-07-27 21:54:48 +02:00
|
|
|
section_parser = nullptr;
|
2018-10-26 21:33:52 +02:00
|
|
|
bad_section_found = true;
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
|
|
|
} else if (section_parser) {
|
2017-08-03 02:01:36 +02:00
|
|
|
if (auto result = section_parser->ParseLineSection(std::move(args), state.line);
|
2020-02-05 19:49:33 +01:00
|
|
|
!result.ok()) {
|
2018-05-10 02:38:30 +02:00
|
|
|
parse_error_count_++;
|
2017-08-03 02:01:36 +02:00
|
|
|
LOG(ERROR) << filename << ": " << state.line << ": " << result.error();
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
2018-10-26 21:33:52 +02:00
|
|
|
} else if (!bad_section_found) {
|
2018-05-10 02:38:30 +02:00
|
|
|
parse_error_count_++;
|
|
|
|
LOG(ERROR) << filename << ": " << state.line
|
|
|
|
<< ": Invalid section keyword found";
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
|
|
|
args.clear();
|
2009-03-04 04:32:55 +01:00
|
|
|
break;
|
2018-06-12 19:57:35 +02:00
|
|
|
}
|
2017-07-27 21:54:48 +02:00
|
|
|
case T_TEXT:
|
|
|
|
args.emplace_back(state.text);
|
2009-03-04 04:32:55 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
|
|
|
|
2018-06-20 00:18:40 +02:00
|
|
|
bool Parser::ParseConfigFileInsecure(const std::string& path) {
|
|
|
|
std::string config_contents;
|
|
|
|
if (!android::base::ReadFileToString(path, &config_contents)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ParseData(path, &config_contents);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-10 02:38:30 +02:00
|
|
|
bool Parser::ParseConfigFile(const std::string& path) {
|
2017-07-27 21:54:48 +02:00
|
|
|
LOG(INFO) << "Parsing file " << path << "...";
|
|
|
|
android::base::Timer t;
|
2017-08-03 21:54:07 +02:00
|
|
|
auto config_contents = ReadFile(path);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!config_contents.ok()) {
|
2018-05-10 02:38:30 +02:00
|
|
|
LOG(INFO) << "Unable to read config file '" << path << "': " << config_contents.error();
|
2017-07-27 21:54:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-20 00:18:40 +02:00
|
|
|
ParseData(path, &config_contents.value());
|
2017-07-27 21:54:48 +02:00
|
|
|
|
|
|
|
LOG(VERBOSE) << "(Parsing " << path << " took " << t << ".)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-10 02:38:30 +02:00
|
|
|
bool Parser::ParseConfigDir(const std::string& path) {
|
2017-07-27 21:54:48 +02:00
|
|
|
LOG(INFO) << "Parsing directory " << path << "...";
|
|
|
|
std::unique_ptr<DIR, decltype(&closedir)> config_dir(opendir(path.c_str()), closedir);
|
|
|
|
if (!config_dir) {
|
2018-05-10 02:38:30 +02:00
|
|
|
PLOG(INFO) << "Could not import directory '" << path << "'";
|
2017-07-27 21:54:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
dirent* current_file;
|
|
|
|
std::vector<std::string> files;
|
|
|
|
while ((current_file = readdir(config_dir.get()))) {
|
|
|
|
// Ignore directories and only process regular files.
|
|
|
|
if (current_file->d_type == DT_REG) {
|
|
|
|
std::string current_path =
|
|
|
|
android::base::StringPrintf("%s/%s", path.c_str(), current_file->d_name);
|
|
|
|
files.emplace_back(current_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Sort first so we load files in a consistent order (bug 31996208)
|
|
|
|
std::sort(files.begin(), files.end());
|
|
|
|
for (const auto& file : files) {
|
2018-05-10 02:38:30 +02:00
|
|
|
if (!ParseConfigFile(file)) {
|
2017-07-27 21:54:48 +02:00
|
|
|
LOG(ERROR) << "could not import file '" << file << "'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Parser::ParseConfig(const std::string& path) {
|
|
|
|
if (is_dir(path.c_str())) {
|
2018-05-10 02:38:30 +02:00
|
|
|
return ParseConfigDir(path);
|
2017-07-27 21:54:48 +02:00
|
|
|
}
|
2018-05-10 02:38:30 +02:00
|
|
|
return ParseConfigFile(path);
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2017-06-22 21:53:17 +02:00
|
|
|
|
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|