Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2012 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 | // |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 16 | |
Tianjie Xu | c08140b | 2018-01-19 14:31:31 -0800 | [diff] [blame] | 17 | #include <inttypes.h> |
Alex Deymo | 2e71f90 | 2015-09-30 01:25:48 -0700 | [diff] [blame] | 18 | #include <sys/stat.h> |
| 19 | #include <sys/types.h> |
Alex Deymo | 67363ee | 2014-09-23 23:07:44 -0700 | [diff] [blame] | 20 | #include <unistd.h> |
Alex Deymo | 2e71f90 | 2015-09-30 01:25:48 -0700 | [diff] [blame] | 21 | #include <xz.h> |
Alex Deymo | 67363ee | 2014-09-23 23:07:44 -0700 | [diff] [blame] | 22 | |
Tianjie Xu | c08140b | 2018-01-19 14:31:31 -0800 | [diff] [blame] | 23 | #include <algorithm> |
Andrew de los Reyes | 4fe15d0 | 2009-12-10 19:01:36 -0800 | [diff] [blame] | 24 | #include <string> |
Tianjie Xu | c08140b | 2018-01-19 14:31:31 -0800 | [diff] [blame] | 25 | #include <vector> |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 26 | |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 27 | #include <base/at_exit.h> |
| 28 | #include <base/command_line.h> |
Tianjie Xu | c08140b | 2018-01-19 14:31:31 -0800 | [diff] [blame] | 29 | #include <base/files/dir_reader_posix.h> |
Ben Chan | 06c76a4 | 2014-09-05 08:21:06 -0700 | [diff] [blame] | 30 | #include <base/files/file_util.h> |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 31 | #include <base/logging.h> |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 32 | #include <base/strings/string_util.h> |
| 33 | #include <base/strings/stringprintf.h> |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 34 | #include <brillo/flag_helper.h> |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 35 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 36 | #include "update_engine/common/terminator.h" |
| 37 | #include "update_engine/common/utils.h" |
Alex Deymo | b7ca096 | 2014-10-01 17:58:07 -0700 | [diff] [blame] | 38 | #include "update_engine/daemon.h" |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 39 | |
Andrew de los Reyes | 4fe15d0 | 2009-12-10 19:01:36 -0800 | [diff] [blame] | 40 | using std::string; |
Alex Deymo | 67363ee | 2014-09-23 23:07:44 -0700 | [diff] [blame] | 41 | |
Andrew de los Reyes | 4fe15d0 | 2009-12-10 19:01:36 -0800 | [diff] [blame] | 42 | namespace chromeos_update_engine { |
Andrew de los Reyes | 7352067 | 2010-05-10 13:44:58 -0700 | [diff] [blame] | 43 | namespace { |
| 44 | |
Tianjie Xu | c08140b | 2018-01-19 14:31:31 -0800 | [diff] [blame] | 45 | string GetTimeAsString(time_t utime) { |
| 46 | struct tm tm; |
| 47 | CHECK_EQ(localtime_r(&utime, &tm), &tm); |
| 48 | char str[16]; |
| 49 | CHECK_EQ(strftime(str, sizeof(str), "%Y%m%d-%H%M%S", &tm), 15u); |
| 50 | return str; |
| 51 | } |
| 52 | |
| 53 | #ifdef __ANDROID__ |
| 54 | constexpr char kSystemLogsRoot[] = "/data/misc/update_engine_log"; |
| 55 | constexpr size_t kLogCount = 5; |
| 56 | |
| 57 | // Keep the most recent |kLogCount| logs but remove the old ones in |
| 58 | // "/data/misc/update_engine_log/". |
| 59 | void DeleteOldLogs(const string& kLogsRoot) { |
| 60 | base::DirReaderPosix reader(kLogsRoot.c_str()); |
| 61 | if (!reader.IsValid()) { |
| 62 | LOG(ERROR) << "Failed to read " << kLogsRoot; |
| 63 | return; |
| 64 | } |
| 65 | |
| 66 | std::vector<string> old_logs; |
| 67 | while (reader.Next()) { |
| 68 | if (reader.name()[0] == '.') |
| 69 | continue; |
| 70 | |
| 71 | // Log files are in format "update_engine.%Y%m%d-%H%M%S", |
| 72 | // e.g. update_engine.20090103-231425 |
| 73 | uint64_t date; |
| 74 | uint64_t local_time; |
| 75 | if (sscanf(reader.name(), |
| 76 | "update_engine.%" PRIu64 "-%" PRIu64 "", |
| 77 | &date, |
| 78 | &local_time) == 2) { |
| 79 | old_logs.push_back(reader.name()); |
| 80 | } else { |
| 81 | LOG(WARNING) << "Unrecognized log file " << reader.name(); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | std::sort(old_logs.begin(), old_logs.end(), std::greater<string>()); |
| 86 | for (size_t i = kLogCount; i < old_logs.size(); i++) { |
| 87 | string log_path = kLogsRoot + "/" + old_logs[i]; |
| 88 | if (unlink(log_path.c_str()) == -1) { |
| 89 | PLOG(WARNING) << "Failed to unlink " << log_path; |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | string SetupLogFile(const string& kLogsRoot) { |
| 95 | DeleteOldLogs(kLogsRoot); |
| 96 | |
| 97 | return base::StringPrintf("%s/update_engine.%s", |
| 98 | kLogsRoot.c_str(), |
| 99 | GetTimeAsString(::time(nullptr)).c_str()); |
| 100 | } |
| 101 | #else |
| 102 | constexpr char kSystemLogsRoot[] = "/var/log"; |
| 103 | |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 104 | void SetupLogSymlink(const string& symlink_path, const string& log_path) { |
| 105 | // TODO(petkov): To ensure a smooth transition between non-timestamped and |
| 106 | // timestamped logs, move an existing log to start the first timestamped |
| 107 | // one. This code can go away once all clients are switched to this version or |
| 108 | // we stop caring about the old-style logs. |
| 109 | if (utils::FileExists(symlink_path.c_str()) && |
| 110 | !utils::IsSymlink(symlink_path.c_str())) { |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame^] | 111 | base::ReplaceFile( |
| 112 | base::FilePath(symlink_path), base::FilePath(log_path), nullptr); |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 113 | } |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 114 | base::DeleteFile(base::FilePath(symlink_path), true); |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 115 | if (symlink(log_path.c_str(), symlink_path.c_str()) == -1) { |
| 116 | PLOG(ERROR) << "Unable to create symlink " << symlink_path |
| 117 | << " pointing at " << log_path; |
| 118 | } |
| 119 | } |
| 120 | |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 121 | string SetupLogFile(const string& kLogsRoot) { |
| 122 | const string kLogSymlink = kLogsRoot + "/update_engine.log"; |
| 123 | const string kLogsDir = kLogsRoot + "/update_engine"; |
| 124 | const string kLogPath = |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 125 | base::StringPrintf("%s/update_engine.%s", |
| 126 | kLogsDir.c_str(), |
| 127 | GetTimeAsString(::time(nullptr)).c_str()); |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 128 | mkdir(kLogsDir.c_str(), 0755); |
| 129 | SetupLogSymlink(kLogSymlink, kLogPath); |
| 130 | return kLogSymlink; |
| 131 | } |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 132 | #endif // __ANDROID__ |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 133 | |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 134 | void SetupLogging(bool log_to_system, bool log_to_file) { |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 135 | logging::LoggingSettings log_settings; |
| 136 | log_settings.lock_log = logging::DONT_LOCK_LOG_FILE; |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 137 | log_settings.logging_dest = static_cast<logging::LoggingDestination>( |
| 138 | (log_to_system ? logging::LOG_TO_SYSTEM_DEBUG_LOG : 0) | |
| 139 | (log_to_file ? logging::LOG_TO_FILE : 0)); |
| 140 | log_settings.log_file = nullptr; |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 141 | |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 142 | string log_file; |
| 143 | if (log_to_file) { |
Tianjie Xu | c08140b | 2018-01-19 14:31:31 -0800 | [diff] [blame] | 144 | log_file = SetupLogFile(kSystemLogsRoot); |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 145 | log_settings.delete_old = logging::APPEND_TO_OLD_LOG_FILE; |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 146 | log_settings.log_file = log_file.c_str(); |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 147 | } |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 148 | logging::InitLogging(log_settings); |
Tianjie Xu | 1e2750a | 2017-11-02 15:34:18 -0700 | [diff] [blame] | 149 | |
| 150 | #ifdef __ANDROID__ |
| 151 | // The log file will have AID_LOG as group ID; this GID is inherited from the |
| 152 | // parent directory "/data/misc/update_engine_log" which sets the SGID bit. |
| 153 | chmod(log_file.c_str(), 0640); |
| 154 | #endif |
Darin Petkov | 30291ed | 2010-11-12 10:23:06 -0800 | [diff] [blame] | 155 | } |
Andrew de los Reyes | 000d895 | 2011-03-02 15:21:14 -0800 | [diff] [blame] | 156 | |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 157 | } // namespace |
Andrew de los Reyes | 4fe15d0 | 2009-12-10 19:01:36 -0800 | [diff] [blame] | 158 | } // namespace chromeos_update_engine |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 159 | |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 160 | int main(int argc, char** argv) { |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 161 | DEFINE_bool(logtofile, false, "Write logs to a file in log_dir."); |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame^] | 162 | DEFINE_bool(logtostderr, |
| 163 | false, |
Steve Fung | d570820 | 2014-09-28 23:24:06 -0700 | [diff] [blame] | 164 | "Write logs to stderr instead of to a file in log_dir."); |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame^] | 165 | DEFINE_bool(foreground, false, "Don't daemon()ize; run in foreground."); |
Steve Fung | d570820 | 2014-09-28 23:24:06 -0700 | [diff] [blame] | 166 | |
Darin Petkov | 9c0baf8 | 2010-10-07 13:44:48 -0700 | [diff] [blame] | 167 | chromeos_update_engine::Terminator::Init(); |
Sen Jiang | 49a0897 | 2017-07-26 15:54:18 -0700 | [diff] [blame] | 168 | brillo::FlagHelper::Init(argc, argv, "A/B Update Engine"); |
Tianjie Xu | 6c863b7 | 2017-09-17 15:44:51 -0700 | [diff] [blame] | 169 | |
| 170 | // We have two logging flags "--logtostderr" and "--logtofile"; and the logic |
| 171 | // to choose the logging destination is: |
| 172 | // 1. --logtostderr --logtofile -> logs to both |
| 173 | // 2. --logtostderr -> logs to system debug |
| 174 | // 3. --logtofile or no flags -> logs to file |
| 175 | bool log_to_system = FLAGS_logtostderr; |
| 176 | bool log_to_file = FLAGS_logtofile || !FLAGS_logtostderr; |
| 177 | chromeos_update_engine::SetupLogging(log_to_system, log_to_file); |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 178 | if (!FLAGS_foreground) |
| 179 | PLOG_IF(FATAL, daemon(0, 0) == 1) << "daemon() failed"; |
| 180 | |
Sen Jiang | 49a0897 | 2017-07-26 15:54:18 -0700 | [diff] [blame] | 181 | LOG(INFO) << "A/B Update Engine starting"; |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 182 | |
Alex Deymo | 2e71f90 | 2015-09-30 01:25:48 -0700 | [diff] [blame] | 183 | // xz-embedded requires to initialize its CRC-32 table once on startup. |
| 184 | xz_crc32_init(); |
| 185 | |
Chris Masone | 4dc2ada | 2010-09-23 12:43:03 -0700 | [diff] [blame] | 186 | // Ensure that all written files have safe permissions. |
Alex Deymo | a9fea84 | 2015-09-17 13:53:29 -0700 | [diff] [blame] | 187 | // This is a mask, so we _block_ all permissions for the group owner and other |
| 188 | // users but allow all permissions for the user owner. We allow execution |
| 189 | // for the owner so we can create directories. |
Chris Masone | 4dc2ada | 2010-09-23 12:43:03 -0700 | [diff] [blame] | 190 | // Done _after_ log file creation. |
Alex Deymo | a9fea84 | 2015-09-17 13:53:29 -0700 | [diff] [blame] | 191 | umask(S_IRWXG | S_IRWXO); |
Chris Masone | 4dc2ada | 2010-09-23 12:43:03 -0700 | [diff] [blame] | 192 | |
Alex Deymo | b7ca096 | 2014-10-01 17:58:07 -0700 | [diff] [blame] | 193 | chromeos_update_engine::UpdateEngineDaemon update_engine_daemon; |
| 194 | int exit_code = update_engine_daemon.Run(); |
Andrew de los Reyes | 4fe15d0 | 2009-12-10 19:01:36 -0800 | [diff] [blame] | 195 | |
Amin Hassani | a885954 | 2018-03-07 16:24:43 -0800 | [diff] [blame] | 196 | chromeos_update_engine::Subprocess::Get().FlushBufferedLogsAtExit(); |
| 197 | |
Sen Jiang | 49a0897 | 2017-07-26 15:54:18 -0700 | [diff] [blame] | 198 | LOG(INFO) << "A/B Update Engine terminating with exit code " << exit_code; |
Alex Deymo | b7ca096 | 2014-10-01 17:58:07 -0700 | [diff] [blame] | 199 | return exit_code; |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 200 | } |