blob: 790fe739922b7a0033da99ba6b51b13e264c6d34 [file] [log] [blame]
Mike Frysinger8155d082012-04-06 15:23:18 -04001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
rspangler@google.com49fdf182009-10-10 00:57:34 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -08005#include <string>
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -08006#include <vector>
Darin Petkov9d65b7b2010-07-20 09:13:01 -07007
Darin Petkov1023a602010-08-30 13:47:51 -07008#include <base/at_exit.h>
9#include <base/command_line.h>
Darin Petkov30291ed2010-11-12 10:23:06 -080010#include <base/file_util.h>
Darin Petkov1023a602010-08-30 13:47:51 -070011#include <base/logging.h>
12#include <base/string_util.h>
Mike Frysinger8155d082012-04-06 15:23:18 -040013#include <base/stringprintf.h>
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080014#include <gflags/gflags.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +000015#include <glib.h>
Darin Petkov1023a602010-08-30 13:47:51 -070016#include <metrics/metrics_library.h>
Chris Masone4dc2ada2010-09-23 12:43:03 -070017#include <sys/types.h>
18#include <sys/stat.h>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070019
Bruno Rocha7f9aea22011-09-12 14:31:24 -070020#include "update_engine/certificate_checker.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070021#include "update_engine/dbus_constants.h"
Andrew de los Reyes45168102010-11-22 11:13:50 -080022#include "update_engine/dbus_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070023#include "update_engine/dbus_service.h"
Darin Petkov1cbd78f2010-07-29 12:38:34 -070024#include "update_engine/prefs.h"
Andrew de los Reyes3d6a2092010-08-23 18:23:26 -070025#include "update_engine/subprocess.h"
Darin Petkov9c0baf82010-10-07 13:44:48 -070026#include "update_engine/terminator.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070027#include "update_engine/update_attempter.h"
Darin Petkov1023a602010-08-30 13:47:51 -070028#include "update_engine/update_check_scheduler.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070029
30extern "C" {
31#include "update_engine/update_engine.dbusserver.h"
32}
33
34DEFINE_bool(logtostderr, false,
35 "Write logs to stderr instead of to a file in log_dir.");
Andrew de los Reyes6b78e292010-05-10 15:54:39 -070036DEFINE_bool(foreground, false,
37 "Don't daemon()ize; run in foreground.");
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080038
39using std::string;
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080040using std::vector;
41
42namespace chromeos_update_engine {
43
Andrew de los Reyes3d6a2092010-08-23 18:23:26 -070044gboolean UpdateBootFlags(void* arg) {
Darin Petkov61635a92011-05-18 16:20:36 -070045 reinterpret_cast<UpdateAttempter*>(arg)->UpdateBootFlags();
46 return FALSE; // Don't call this callback again
47}
48
49gboolean BroadcastStatus(void* arg) {
50 reinterpret_cast<UpdateAttempter*>(arg)->BroadcastStatus();
Andrew de los Reyes3d6a2092010-08-23 18:23:26 -070051 return FALSE; // Don't call this callback again
52}
53
Andrew de los Reyes73520672010-05-10 13:44:58 -070054namespace {
55
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070056void SetupDbusService(UpdateEngineService* service) {
57 DBusGConnection *bus;
58 DBusGProxy *proxy;
59 GError *error = NULL;
60
61 bus = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
Darin Petkova0b9e772011-10-06 05:05:56 -070062 LOG_IF(FATAL, !bus) << "Failed to get bus: "
63 << utils::GetAndFreeGError(&error);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070064 proxy = dbus_g_proxy_new_for_name(bus,
65 DBUS_SERVICE_DBUS,
66 DBUS_PATH_DBUS,
67 DBUS_INTERFACE_DBUS);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070068 guint32 request_name_ret;
69 if (!org_freedesktop_DBus_request_name(proxy,
70 kUpdateEngineServiceName,
71 0,
72 &request_name_ret,
73 &error)) {
Darin Petkova0b9e772011-10-06 05:05:56 -070074 LOG(FATAL) << "Failed to get name: " << utils::GetAndFreeGError(&error);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070075 }
76 if (request_name_ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
77 g_warning("Got result code %u from requesting name", request_name_ret);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070078 LOG(FATAL) << "Got result code " << request_name_ret
79 << " from requesting name, but expected "
80 << DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER;
81 }
82 dbus_g_connection_register_g_object(bus,
83 "/org/chromium/UpdateEngine",
84 G_OBJECT(service));
85}
86
Darin Petkov30291ed2010-11-12 10:23:06 -080087void SetupLogSymlink(const string& symlink_path, const string& log_path) {
88 // TODO(petkov): To ensure a smooth transition between non-timestamped and
89 // timestamped logs, move an existing log to start the first timestamped
90 // one. This code can go away once all clients are switched to this version or
91 // we stop caring about the old-style logs.
92 if (utils::FileExists(symlink_path.c_str()) &&
93 !utils::IsSymlink(symlink_path.c_str())) {
94 file_util::ReplaceFile(FilePath(symlink_path), FilePath(log_path));
95 }
96 file_util::Delete(FilePath(symlink_path), true);
97 if (symlink(log_path.c_str(), symlink_path.c_str()) == -1) {
98 PLOG(ERROR) << "Unable to create symlink " << symlink_path
99 << " pointing at " << log_path;
100 }
101}
102
103string GetTimeAsString(time_t utime) {
104 struct tm tm;
105 CHECK(localtime_r(&utime, &tm) == &tm);
106 char str[16];
107 CHECK(strftime(str, sizeof(str), "%Y%m%d-%H%M%S", &tm) == 15);
108 return str;
109}
110
111string SetupLogFile(const string& kLogsRoot) {
112 const string kLogSymlink = kLogsRoot + "/update_engine.log";
113 const string kLogsDir = kLogsRoot + "/update_engine";
114 const string kLogPath =
115 StringPrintf("%s/update_engine.%s",
116 kLogsDir.c_str(),
117 GetTimeAsString(::time(NULL)).c_str());
118 mkdir(kLogsDir.c_str(), 0755);
119 SetupLogSymlink(kLogSymlink, kLogPath);
120 return kLogSymlink;
121}
122
123void SetupLogging() {
124 // Log to stderr initially.
125 logging::InitLogging(NULL,
126 logging::LOG_ONLY_TO_SYSTEM_DEBUG_LOG,
127 logging::DONT_LOCK_LOG_FILE,
Chris Masoned903c3b2011-05-12 15:35:46 -0700128 logging::APPEND_TO_OLD_LOG_FILE,
129 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
Darin Petkov30291ed2010-11-12 10:23:06 -0800130 if (FLAGS_logtostderr) {
131 return;
132 }
133 const string log_file = SetupLogFile("/var/log");
134 logging::InitLogging(log_file.c_str(),
135 logging::LOG_ONLY_TO_FILE,
136 logging::DONT_LOCK_LOG_FILE,
Chris Masoned903c3b2011-05-12 15:35:46 -0700137 logging::APPEND_TO_OLD_LOG_FILE,
138 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
Darin Petkov30291ed2010-11-12 10:23:06 -0800139}
Andrew de los Reyes000d8952011-03-02 15:21:14 -0800140
Andrew de los Reyes73520672010-05-10 13:44:58 -0700141} // namespace {}
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800142} // namespace chromeos_update_engine
rspangler@google.com49fdf182009-10-10 00:57:34 +0000143
rspangler@google.com49fdf182009-10-10 00:57:34 +0000144int main(int argc, char** argv) {
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700145 ::g_type_init();
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000146 g_thread_init(NULL);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700147 dbus_g_thread_init();
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700148 base::AtExitManager exit_manager; // Required for base/rand_util.h.
Darin Petkov9c0baf82010-10-07 13:44:48 -0700149 chromeos_update_engine::Terminator::Init();
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000150 chromeos_update_engine::Subprocess::Init();
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800151 google::ParseCommandLineFlags(&argc, &argv, true);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700152 CommandLine::Init(argc, argv);
Darin Petkov30291ed2010-11-12 10:23:06 -0800153 chromeos_update_engine::SetupLogging();
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700154 if (!FLAGS_foreground)
155 PLOG_IF(FATAL, daemon(0, 0) == 1) << "daemon() failed";
156
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800157 LOG(INFO) << "Chrome OS Update Engine starting";
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700158
Chris Masone4dc2ada2010-09-23 12:43:03 -0700159 // Ensure that all written files have safe permissions.
160 // This is a mask, so we _block_ execute for the owner, and ALL
161 // permissions for other users.
162 // Done _after_ log file creation.
163 umask(S_IXUSR | S_IRWXG | S_IRWXO);
164
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800165 // Create the single GMainLoop
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700166 GMainLoop* loop = g_main_loop_new(g_main_context_default(), FALSE);
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800167
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700168 chromeos_update_engine::Prefs prefs;
169 LOG_IF(ERROR, !prefs.Init(FilePath("/var/lib/update_engine/prefs")))
170 << "Failed to initialize preferences.";
171
Darin Petkov9d65b7b2010-07-20 09:13:01 -0700172 MetricsLibrary metrics_lib;
173 metrics_lib.Init();
174
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700175 // Sets static members for the certificate checker.
176 chromeos_update_engine::CertificateChecker::set_metrics_lib(&metrics_lib);
177 chromeos_update_engine::CertificateChecker::set_prefs(&prefs);
178 chromeos_update_engine::OpenSSLWrapper openssl_wrapper;
179 chromeos_update_engine::CertificateChecker::set_openssl_wrapper(
180 &openssl_wrapper);
181
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700182 // Create the update attempter:
Andrew de los Reyes45168102010-11-22 11:13:50 -0800183 chromeos_update_engine::ConcreteDbusGlib dbus;
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700184 chromeos_update_engine::UpdateAttempter update_attempter(&prefs,
Andrew de los Reyes45168102010-11-22 11:13:50 -0800185 &metrics_lib,
186 &dbus);
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800187
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700188 // Create the dbus service object:
189 dbus_g_object_type_install_info(UPDATE_ENGINE_TYPE_SERVICE,
190 &dbus_glib_update_engine_service_object_info);
191 UpdateEngineService* service =
192 UPDATE_ENGINE_SERVICE(g_object_new(UPDATE_ENGINE_TYPE_SERVICE, NULL));
193 service->update_attempter_ = &update_attempter;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700194 update_attempter.set_dbus_service(service);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700195 chromeos_update_engine::SetupDbusService(service);
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800196
Darin Petkov1023a602010-08-30 13:47:51 -0700197 // Schedule periodic update checks.
198 chromeos_update_engine::UpdateCheckScheduler scheduler(&update_attempter);
199 scheduler.Run();
Andrew de los Reyes73520672010-05-10 13:44:58 -0700200
Darin Petkoveee26ee2010-10-22 11:05:46 -0700201 // Update boot flags after 45 seconds.
202 g_timeout_add_seconds(45,
203 &chromeos_update_engine::UpdateBootFlags,
204 &update_attempter);
Andrew de los Reyes3d6a2092010-08-23 18:23:26 -0700205
Darin Petkov61635a92011-05-18 16:20:36 -0700206 // Broadcast the update engine status on startup to ensure consistent system
207 // state on crashes.
208 g_idle_add(&chromeos_update_engine::BroadcastStatus, &update_attempter);
209
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700210 // Run the main loop until exit time:
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800211 g_main_loop_run(loop);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700212
213 // Cleanup:
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800214 g_main_loop_unref(loop);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700215 update_attempter.set_dbus_service(NULL);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700216 g_object_unref(G_OBJECT(service));
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -0800217
218 LOG(INFO) << "Chrome OS Update Engine terminating";
rspangler@google.com49fdf182009-10-10 00:57:34 +0000219 return 0;
220}