blob: 4453aaac10371be1d32560d97faaaa545eb5188f [file] [log] [blame]
Tom Cherry67dee622017-07-27 12:54:48 -07001/*
2 * Copyright (C) 2010 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
Elliott Hughesc0e919c2015-02-04 14:46:36 -080017#include "parser.h"
18
Tom Cherry67dee622017-07-27 12:54:48 -070019#include <dirent.h>
20
21#include <android-base/chrono_utils.h>
22#include <android-base/logging.h>
23#include <android-base/stringprintf.h>
24#include <android-base/strings.h>
25
26#include "tokenizer.h"
27#include "util.h"
28
Tom Cherry81f5d3e2017-06-22 12:53:17 -070029namespace android {
30namespace init {
31
Tom Cherry67dee622017-07-27 12:54:48 -070032Parser::Parser() {}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080033
Tom Cherry67dee622017-07-27 12:54:48 -070034void Parser::AddSectionParser(const std::string& name, std::unique_ptr<SectionParser> parser) {
35 section_parsers_[name] = std::move(parser);
36}
37
38void Parser::AddSingleLineParser(const std::string& prefix, LineCallback callback) {
39 line_callbacks_.emplace_back(prefix, callback);
40}
41
Tom Cherryde6bd502018-02-13 16:50:08 -080042void Parser::ParseData(const std::string& filename, const std::string& data, size_t* parse_errors) {
Tom Cherry67dee622017-07-27 12:54:48 -070043 // TODO: Use a parser with const input and remove this copy
44 std::vector<char> data_copy(data.begin(), data.end());
45 data_copy.push_back('\0');
46
47 parse_state state;
48 state.line = 0;
49 state.ptr = &data_copy[0];
50 state.nexttoken = 0;
51
52 SectionParser* section_parser = nullptr;
Steven Moreland7d0a5c32017-11-10 14:20:47 -080053 int section_start_line = -1;
Tom Cherry67dee622017-07-27 12:54:48 -070054 std::vector<std::string> args;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055
Steven Moreland7d0a5c32017-11-10 14:20:47 -080056 auto end_section = [&] {
57 if (section_parser == nullptr) return;
58
59 if (auto result = section_parser->EndSection(); !result) {
Tom Cherryde6bd502018-02-13 16:50:08 -080060 (*parse_errors)++;
Steven Moreland7d0a5c32017-11-10 14:20:47 -080061 LOG(ERROR) << filename << ": " << section_start_line << ": " << result.error();
62 }
63
64 section_parser = nullptr;
65 section_start_line = -1;
66 };
67
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080068 for (;;) {
Tom Cherry67dee622017-07-27 12:54:48 -070069 switch (next_token(&state)) {
70 case T_EOF:
Steven Moreland7d0a5c32017-11-10 14:20:47 -080071 end_section();
Tom Cherry67dee622017-07-27 12:54:48 -070072 return;
73 case T_NEWLINE:
74 state.line++;
75 if (args.empty()) break;
76 // If we have a line matching a prefix we recognize, call its callback and unset any
77 // current section parsers. This is meant for /sys/ and /dev/ line entries for
78 // uevent.
79 for (const auto& [prefix, callback] : line_callbacks_) {
Elliott Hughes579e6822017-12-20 09:41:00 -080080 if (android::base::StartsWith(args[0], prefix)) {
Steven Moreland7d0a5c32017-11-10 14:20:47 -080081 end_section();
Tom Cherry67dee622017-07-27 12:54:48 -070082
Tom Cherryb592dd82017-08-02 17:01:36 -070083 if (auto result = callback(std::move(args)); !result) {
Tom Cherryde6bd502018-02-13 16:50:08 -080084 (*parse_errors)++;
Tom Cherryb592dd82017-08-02 17:01:36 -070085 LOG(ERROR) << filename << ": " << state.line << ": " << result.error();
Tom Cherry67dee622017-07-27 12:54:48 -070086 }
Tom Cherry67dee622017-07-27 12:54:48 -070087 break;
88 }
89 }
90 if (section_parsers_.count(args[0])) {
Steven Moreland7d0a5c32017-11-10 14:20:47 -080091 end_section();
Tom Cherry67dee622017-07-27 12:54:48 -070092 section_parser = section_parsers_[args[0]].get();
Steven Moreland7d0a5c32017-11-10 14:20:47 -080093 section_start_line = state.line;
Tom Cherryb592dd82017-08-02 17:01:36 -070094 if (auto result =
95 section_parser->ParseSection(std::move(args), filename, state.line);
96 !result) {
Tom Cherryde6bd502018-02-13 16:50:08 -080097 (*parse_errors)++;
Tom Cherryb592dd82017-08-02 17:01:36 -070098 LOG(ERROR) << filename << ": " << state.line << ": " << result.error();
Tom Cherry67dee622017-07-27 12:54:48 -070099 section_parser = nullptr;
100 }
101 } else if (section_parser) {
Tom Cherryb592dd82017-08-02 17:01:36 -0700102 if (auto result = section_parser->ParseLineSection(std::move(args), state.line);
103 !result) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800104 (*parse_errors)++;
Tom Cherryb592dd82017-08-02 17:01:36 -0700105 LOG(ERROR) << filename << ": " << state.line << ": " << result.error();
Tom Cherry67dee622017-07-27 12:54:48 -0700106 }
107 }
108 args.clear();
109 break;
110 case T_TEXT:
111 args.emplace_back(state.text);
112 break;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113 }
114 }
Tom Cherry67dee622017-07-27 12:54:48 -0700115}
116
Tom Cherryde6bd502018-02-13 16:50:08 -0800117bool Parser::ParseConfigFile(const std::string& path, size_t* parse_errors) {
Tom Cherry67dee622017-07-27 12:54:48 -0700118 LOG(INFO) << "Parsing file " << path << "...";
119 android::base::Timer t;
Tom Cherry62ca6632017-08-03 12:54:07 -0700120 auto config_contents = ReadFile(path);
121 if (!config_contents) {
122 LOG(ERROR) << "Unable to read config file '" << path << "': " << config_contents.error();
Tom Cherry67dee622017-07-27 12:54:48 -0700123 return false;
124 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800125
Tom Cherry62ca6632017-08-03 12:54:07 -0700126 config_contents->push_back('\n'); // TODO: fix parse_config.
Tom Cherryde6bd502018-02-13 16:50:08 -0800127 ParseData(path, *config_contents, parse_errors);
Tom Cherry67dee622017-07-27 12:54:48 -0700128 for (const auto& [section_name, section_parser] : section_parsers_) {
129 section_parser->EndFile();
130 }
131
132 LOG(VERBOSE) << "(Parsing " << path << " took " << t << ".)";
133 return true;
134}
135
Tom Cherryde6bd502018-02-13 16:50:08 -0800136bool Parser::ParseConfigDir(const std::string& path, size_t* parse_errors) {
Tom Cherry67dee622017-07-27 12:54:48 -0700137 LOG(INFO) << "Parsing directory " << path << "...";
138 std::unique_ptr<DIR, decltype(&closedir)> config_dir(opendir(path.c_str()), closedir);
139 if (!config_dir) {
140 PLOG(ERROR) << "Could not import directory '" << path << "'";
141 return false;
142 }
143 dirent* current_file;
144 std::vector<std::string> files;
145 while ((current_file = readdir(config_dir.get()))) {
146 // Ignore directories and only process regular files.
147 if (current_file->d_type == DT_REG) {
148 std::string current_path =
149 android::base::StringPrintf("%s/%s", path.c_str(), current_file->d_name);
150 files.emplace_back(current_path);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800151 }
152 }
Tom Cherry67dee622017-07-27 12:54:48 -0700153 // Sort first so we load files in a consistent order (bug 31996208)
154 std::sort(files.begin(), files.end());
155 for (const auto& file : files) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800156 if (!ParseConfigFile(file, parse_errors)) {
Tom Cherry67dee622017-07-27 12:54:48 -0700157 LOG(ERROR) << "could not import file '" << file << "'";
158 }
159 }
160 return true;
161}
162
163bool Parser::ParseConfig(const std::string& path) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800164 size_t parse_errors;
165 return ParseConfig(path, &parse_errors);
166}
167
168bool Parser::ParseConfig(const std::string& path, size_t* parse_errors) {
169 *parse_errors = 0;
Tom Cherry67dee622017-07-27 12:54:48 -0700170 if (is_dir(path.c_str())) {
Tom Cherryde6bd502018-02-13 16:50:08 -0800171 return ParseConfigDir(path, parse_errors);
Tom Cherry67dee622017-07-27 12:54:48 -0700172 }
Tom Cherryde6bd502018-02-13 16:50:08 -0800173 return ParseConfigFile(path, parse_errors);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800174}
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700175
176} // namespace init
177} // namespace android