blob: f782b51c1c1ef2178c757c7fe8d3345d81f5d0c2 [file] [log] [blame]
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001/*
2 * Copyright (C) 2015 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
17#include "action.h"
18
Tom Cherryede0d532017-07-06 14:20:11 -070019#include <android-base/chrono_utils.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070020#include <android-base/logging.h>
Tom Cherryccf23532017-03-28 16:40:41 -070021#include <android-base/strings.h>
Tom Cherryfa0c21c2015-07-23 17:53:11 -070022
Tom Cherryfa0c21c2015-07-23 17:53:11 -070023#include "util.h"
24
Tom Cherryde6bd502018-02-13 16:50:08 -080025#if defined(__ANDROID__)
26#include <android-base/properties.h>
27#else
28#include "host_init_stubs.h"
29#endif
30
Tom Cherryb7349902015-08-26 11:43:36 -070031using android::base::Join;
Tom Cherryfa0c21c2015-07-23 17:53:11 -070032
Tom Cherry81f5d3e2017-06-22 12:53:17 -070033namespace android {
34namespace init {
35
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070036Result<Success> RunBuiltinFunction(const BuiltinFunction& function,
37 const std::vector<std::string>& args,
38 const std::string& context) {
39 auto builtin_arguments = BuiltinArguments(context);
Tom Cherryfa0c21c2015-07-23 17:53:11 -070040
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070041 builtin_arguments.args.resize(args.size());
42 builtin_arguments.args[0] = args[0];
43 for (std::size_t i = 1; i < args.size(); ++i) {
44 if (!expand_props(args[i], &builtin_arguments.args[i])) {
45 return Error() << "cannot expand '" << args[i] << "'";
Tom Cherryfa0c21c2015-07-23 17:53:11 -070046 }
47 }
48
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070049 return function(builtin_arguments);
50}
51
52Command::Command(BuiltinFunction f, bool execute_in_subcontext,
53 const std::vector<std::string>& args, int line)
54 : func_(std::move(f)), execute_in_subcontext_(execute_in_subcontext), args_(args), line_(line) {}
55
56Result<Success> Command::InvokeFunc(Subcontext* subcontext) const {
Tom Cherryc49719f2018-01-10 11:04:34 -080057 if (subcontext) {
58 if (execute_in_subcontext_) {
59 return subcontext->Execute(args_);
60 }
61
62 auto expanded_args = subcontext->ExpandArgs(args_);
63 if (!expanded_args) {
64 return expanded_args.error();
65 }
66 return RunBuiltinFunction(func_, *expanded_args, subcontext->context());
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070067 }
Tom Cherryc49719f2018-01-10 11:04:34 -080068
69 return RunBuiltinFunction(func_, args_, kInitContext);
Tom Cherryfa0c21c2015-07-23 17:53:11 -070070}
71
Tom Cherryb7349902015-08-26 11:43:36 -070072std::string Command::BuildCommandString() const {
73 return Join(args_, ' ');
Tom Cherryfa0c21c2015-07-23 17:53:11 -070074}
75
Tom Cherry9cbf5702018-02-13 16:24:51 -080076Action::Action(bool oneshot, Subcontext* subcontext, const std::string& filename, int line,
77 const std::string& event_trigger,
78 const std::map<std::string, std::string>& property_triggers)
79 : property_triggers_(property_triggers),
80 event_trigger_(event_trigger),
81 oneshot_(oneshot),
82 subcontext_(subcontext),
83 filename_(filename),
84 line_(line) {}
Tom Cherryfa0c21c2015-07-23 17:53:11 -070085
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070086const KeywordFunctionMap* Action::function_map_ = nullptr;
Tom Cherryb7349902015-08-26 11:43:36 -070087
Tom Cherry89bcc852017-08-02 17:01:36 -070088Result<Success> Action::AddCommand(const std::vector<std::string>& args, int line) {
Tom Cherryb7349902015-08-26 11:43:36 -070089 if (!function_map_) {
Tom Cherry89bcc852017-08-02 17:01:36 -070090 return Error() << "no function map available";
Tom Cherryb7349902015-08-26 11:43:36 -070091 }
92
Tom Cherry89bcc852017-08-02 17:01:36 -070093 auto function = function_map_->FindFunction(args);
94 if (!function) return Error() << function.error();
Tom Cherryb7349902015-08-26 11:43:36 -070095
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070096 commands_.emplace_back(function->second, function->first, args, line);
Tom Cherry89bcc852017-08-02 17:01:36 -070097 return Success();
Tom Cherryb7349902015-08-26 11:43:36 -070098}
99
Tom Cherry012c5732017-04-18 13:21:54 -0700100void Action::AddCommand(BuiltinFunction f, const std::vector<std::string>& args, int line) {
Tom Cherrycb0f9bb2017-09-12 15:58:47 -0700101 commands_.emplace_back(f, false, args, line);
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700102}
103
Tom Cherryb7349902015-08-26 11:43:36 -0700104std::size_t Action::NumCommands() const {
105 return commands_.size();
106}
107
108void Action::ExecuteOneCommand(std::size_t command) const {
Wei Wangd67a4ab2016-11-16 12:08:30 -0800109 // We need a copy here since some Command execution may result in
110 // changing commands_ vector by importing .rc files through parser
111 Command cmd = commands_[command];
112 ExecuteCommand(cmd);
Tom Cherryb7349902015-08-26 11:43:36 -0700113}
114
115void Action::ExecuteAllCommands() const {
116 for (const auto& c : commands_) {
117 ExecuteCommand(c);
118 }
119}
120
121void Action::ExecuteCommand(const Command& command) const {
Tom Cherryede0d532017-07-06 14:20:11 -0700122 android::base::Timer t;
Tom Cherrycb0f9bb2017-09-12 15:58:47 -0700123 auto result = command.InvokeFunc(subcontext_);
Tom Cherryede0d532017-07-06 14:20:11 -0700124 auto duration = t.duration();
Tom Cherry557946e2017-08-01 13:50:23 -0700125
Tom Cherry68f2a462017-08-22 16:15:26 -0700126 // There are many legacy paths in rootdir/init.rc that will virtually never exist on a new
127 // device, such as '/sys/class/leds/jogball-backlight/brightness'. As of this writing, there
128 // are 198 such failures on bullhead. Instead of spamming the log reporting them, we do not
129 // report such failures unless we're running at the DEBUG log level.
130 bool report_failure = !result.has_value();
131 if (report_failure && android::base::GetMinimumLogSeverity() > android::base::DEBUG &&
132 result.error_errno() == ENOENT) {
133 report_failure = false;
134 }
135
Wei Wang8b1d5262016-11-15 23:58:55 -0800136 // Any action longer than 50ms will be warned to user as slow operation
Tom Cherry68f2a462017-08-22 16:15:26 -0700137 if (report_failure || duration > 50ms ||
138 android::base::GetMinimumLogSeverity() <= android::base::DEBUG) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700139 std::string trigger_name = BuildTriggersString();
140 std::string cmd_str = command.BuildCommandString();
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700141
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700142 LOG(INFO) << "Command '" << cmd_str << "' action=" << trigger_name << " (" << filename_
Tom Cherry557946e2017-08-01 13:50:23 -0700143 << ":" << command.line() << ") took " << duration.count() << "ms and "
Tom Cherry130e3d72017-08-22 16:07:15 -0700144 << (result ? "succeeded" : "failed: " + result.error_string());
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700145 }
146}
147
Tom Cherryb7349902015-08-26 11:43:36 -0700148// This function checks that all property triggers are satisfied, that is
149// for each (name, value) in property_triggers_, check that the current
150// value of the property 'name' == value.
151//
152// It takes an optional (name, value) pair, which if provided must
153// be present in property_triggers_; it skips the check of the current
154// property value for this pair.
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700155bool Action::CheckPropertyTriggers(const std::string& name,
Tom Cherryb7349902015-08-26 11:43:36 -0700156 const std::string& value) const {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700157 if (property_triggers_.empty()) {
158 return true;
159 }
160
Tom Cherryb7349902015-08-26 11:43:36 -0700161 bool found = name.empty();
Tom Cherry2bc00142017-03-13 11:58:58 -0700162 for (const auto& [trigger_name, trigger_value] : property_triggers_) {
Tom Cherrycb716f92015-08-11 12:34:22 -0700163 if (trigger_name == name) {
164 if (trigger_value != "*" && trigger_value != value) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700165 return false;
166 } else {
167 found = true;
168 }
169 } else {
Tom Cherryccf23532017-03-28 16:40:41 -0700170 std::string prop_val = android::base::GetProperty(trigger_name, "");
171 if (prop_val.empty() || (trigger_value != "*" && trigger_value != prop_val)) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700172 return false;
173 }
174 }
175 }
176 return found;
177}
178
Tom Cherry26ed9cb2017-04-17 13:25:29 -0700179bool Action::CheckEvent(const EventTrigger& event_trigger) const {
180 return event_trigger == event_trigger_ && CheckPropertyTriggers();
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700181}
182
Tom Cherry26ed9cb2017-04-17 13:25:29 -0700183bool Action::CheckEvent(const PropertyChange& property_change) const {
184 const auto& [name, value] = property_change;
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700185 return event_trigger_.empty() && CheckPropertyTriggers(name, value);
186}
187
Tom Cherry26ed9cb2017-04-17 13:25:29 -0700188bool Action::CheckEvent(const BuiltinAction& builtin_action) const {
189 return this == builtin_action;
190}
191
Tom Cherryb7349902015-08-26 11:43:36 -0700192std::string Action::BuildTriggersString() const {
Tom Cherryd8a72572017-03-13 12:24:49 -0700193 std::vector<std::string> triggers;
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700194
Tom Cherry2bc00142017-03-13 11:58:58 -0700195 for (const auto& [trigger_name, trigger_value] : property_triggers_) {
Tom Cherryd8a72572017-03-13 12:24:49 -0700196 triggers.emplace_back(trigger_name + '=' + trigger_value);
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700197 }
198 if (!event_trigger_.empty()) {
Tom Cherryd8a72572017-03-13 12:24:49 -0700199 triggers.emplace_back(event_trigger_);
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700200 }
Tom Cherryd8a72572017-03-13 12:24:49 -0700201
202 return Join(triggers, " && ");
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700203}
204
Tom Cherryb7349902015-08-26 11:43:36 -0700205void Action::DumpState() const {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700206 std::string trigger_name = BuildTriggersString();
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700207 LOG(INFO) << "on " << trigger_name;
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700208
209 for (const auto& c : commands_) {
Tom Cherryb7349902015-08-26 11:43:36 -0700210 std::string cmd_str = c.BuildCommandString();
Tom Cherryd8a72572017-03-13 12:24:49 -0700211 LOG(INFO) << " " << cmd_str;
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700212 }
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700213}
214
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700215} // namespace init
216} // namespace android