blob: 4c0c52f0018bae95491ab3e9048f5ea017b761fe [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -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//
Alex Deymob7ca0962014-10-01 17:58:07 -070016
17#include "update_engine/daemon.h"
18
19#include <sysexits.h>
20
21#include <base/bind.h>
22#include <base/location.h>
23#include <base/time/time.h>
Casey Dahlina93cd532016-01-14 16:55:11 -080024#if USE_WEAVE || USE_BINDER
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080025#include <binderwrapper/binder_wrapper.h>
Casey Dahlina93cd532016-01-14 16:55:11 -080026#endif // USE_WEAVE || USE_BINDER
Alex Deymob7ca0962014-10-01 17:58:07 -070027
Alex Deymoe97b39c2016-01-20 13:22:17 -080028#if defined(__BRILLO__) || defined(__CHROMEOS__)
Alex Deymofa78f142016-01-26 21:36:16 -080029#include "update_engine/real_system_state.h"
30#else // !(defined(__BRILLO__) || defined(__CHROMEOS__))
31#include "update_engine/daemon_state_android.h"
Alex Deymoe97b39c2016-01-20 13:22:17 -080032#endif // defined(__BRILLO__) || defined(__CHROMEOS__)
Alex Deymob7ca0962014-10-01 17:58:07 -070033
Alex Deymoe97b39c2016-01-20 13:22:17 -080034#if USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -070035namespace {
36const int kDBusSystemMaxWaitSeconds = 2 * 60;
37} // namespace
Alex Deymofa78f142016-01-26 21:36:16 -080038#endif // USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -070039
40namespace chromeos_update_engine {
41
Alex Deymob7ca0962014-10-01 17:58:07 -070042int UpdateEngineDaemon::OnInit() {
43 // Register the |subprocess_| singleton with this Daemon as the signal
44 // handler.
45 subprocess_.Init(this);
46
Alex Deymob7ca0962014-10-01 17:58:07 -070047 int exit_code = Daemon::OnInit();
48 if (exit_code != EX_OK)
49 return exit_code;
50
Casey Dahlina93cd532016-01-14 16:55:11 -080051#if USE_WEAVE || USE_BINDER
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080052 android::BinderWrapper::Create();
53 binder_watcher_.Init();
Casey Dahlina93cd532016-01-14 16:55:11 -080054#endif // USE_WEAVE || USE_BINDER
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080055
Alex Deymoe97b39c2016-01-20 13:22:17 -080056#if USE_DBUS
Alex Deymoa91cc482016-01-20 16:51:56 -080057 // We wait for the D-Bus connection for up two minutes to avoid re-spawning
58 // the daemon too fast causing thrashing if dbus-daemon is not running.
59 scoped_refptr<dbus::Bus> bus = dbus_connection_.ConnectWithTimeout(
60 base::TimeDelta::FromSeconds(kDBusSystemMaxWaitSeconds));
Alex Deymob7ca0962014-10-01 17:58:07 -070061
Alex Deymoa91cc482016-01-20 16:51:56 -080062 if (!bus) {
Alex Deymob7ca0962014-10-01 17:58:07 -070063 // TODO(deymo): Make it possible to run update_engine even if dbus-daemon
64 // is not running or constantly crashing.
65 LOG(ERROR) << "Failed to initialize DBus, aborting.";
66 return 1;
67 }
68
Alex Deymoa91cc482016-01-20 16:51:56 -080069 CHECK(bus->SetUpAsyncOperations());
Alex Deymofa78f142016-01-26 21:36:16 -080070#endif // USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -070071
Alex Deymoe97b39c2016-01-20 13:22:17 -080072#if defined(__BRILLO__) || defined(__CHROMEOS__)
Alex Deymob7ca0962014-10-01 17:58:07 -070073 // Initialize update engine global state but continue if something fails.
Alex Deymofa78f142016-01-26 21:36:16 -080074 // TODO(deymo): Move the daemon_state_ initialization to a factory method
75 // avoiding the explicit re-usage of the |bus| instance, shared between
76 // D-Bus service and D-Bus client calls.
77 RealSystemState* real_system_state = new RealSystemState(bus);
78 daemon_state_.reset(real_system_state);
79 LOG_IF(ERROR, !real_system_state->Initialize())
Alex Deymob7ca0962014-10-01 17:58:07 -070080 << "Failed to initialize system state.";
Alex Deymoe97b39c2016-01-20 13:22:17 -080081#else // !(defined(__BRILLO__) || defined(__CHROMEOS__))
Alex Deymofa78f142016-01-26 21:36:16 -080082 DaemonStateAndroid* daemon_state_android = new DaemonStateAndroid();
83 daemon_state_.reset(daemon_state_android);
84 LOG_IF(ERROR, !daemon_state_android->Initialize())
85 << "Failed to initialize system state.";
86#endif // defined(__BRILLO__) || defined(__CHROMEOS__)
Alex Deymob7ca0962014-10-01 17:58:07 -070087
Casey Dahlina93cd532016-01-14 16:55:11 -080088#if USE_BINDER
Alex Deymoe97b39c2016-01-20 13:22:17 -080089 // Create the Binder Service.
90#if defined(__BRILLO__) || defined(__CHROMEOS__)
Alex Deymofa78f142016-01-26 21:36:16 -080091 binder_service_ = new BinderUpdateEngineBrilloService{real_system_state};
Alex Deymoe97b39c2016-01-20 13:22:17 -080092#else // !(defined(__BRILLO__) || defined(__CHROMEOS__))
Alex Deymof8bfcff2016-02-02 21:22:11 -080093 binder_service_ = new BinderUpdateEngineAndroidService{
94 daemon_state_android->service_delegate()};
Alex Deymofa78f142016-01-26 21:36:16 -080095#endif // defined(__BRILLO__) || defined(__CHROMEOS__)
Casey Dahlina93cd532016-01-14 16:55:11 -080096 auto binder_wrapper = android::BinderWrapper::Get();
Alex Deymofa78f142016-01-26 21:36:16 -080097 if (!binder_wrapper->RegisterService(binder_service_->ServiceName(),
98 binder_service_)) {
Casey Dahlina93cd532016-01-14 16:55:11 -080099 LOG(ERROR) << "Failed to register binder service.";
100 }
Casey Dahlin40892492016-01-25 16:55:28 -0800101
Alex Deymofa78f142016-01-26 21:36:16 -0800102 daemon_state_->AddObserver(binder_service_.get());
Casey Dahlina93cd532016-01-14 16:55:11 -0800103#endif // USE_BINDER
104
Alex Deymoe97b39c2016-01-20 13:22:17 -0800105#if USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -0700106 // Create the DBus service.
Alex Deymofa78f142016-01-26 21:36:16 -0800107 dbus_adaptor_.reset(new UpdateEngineAdaptor(real_system_state, bus));
108 daemon_state_->AddObserver(dbus_adaptor_.get());
Alex Deymob7ca0962014-10-01 17:58:07 -0700109
110 dbus_adaptor_->RegisterAsync(base::Bind(&UpdateEngineDaemon::OnDBusRegistered,
111 base::Unretained(this)));
112 LOG(INFO) << "Waiting for DBus object to be registered.";
Alex Deymoe97b39c2016-01-20 13:22:17 -0800113#else // !USE_DBUS
Alex Deymofa78f142016-01-26 21:36:16 -0800114 daemon_state_->StartUpdater();
115#endif // USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -0700116 return EX_OK;
117}
118
Alex Deymoe97b39c2016-01-20 13:22:17 -0800119#if USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -0700120void UpdateEngineDaemon::OnDBusRegistered(bool succeeded) {
121 if (!succeeded) {
122 LOG(ERROR) << "Registering the UpdateEngineAdaptor";
123 QuitWithExitCode(1);
124 return;
125 }
126
127 // Take ownership of the service now that everything is initialized. We need
128 // to this now and not before to avoid exposing a well known DBus service
129 // path that doesn't have the service it is supposed to implement.
130 if (!dbus_adaptor_->RequestOwnership()) {
131 LOG(ERROR) << "Unable to take ownership of the DBus service, is there "
132 << "other update_engine daemon running?";
133 QuitWithExitCode(1);
134 return;
135 }
Alex Deymofa78f142016-01-26 21:36:16 -0800136 daemon_state_->StartUpdater();
Alex Deymob7ca0962014-10-01 17:58:07 -0700137}
Alex Deymoe97b39c2016-01-20 13:22:17 -0800138#endif // USE_DBUS
Alex Deymob7ca0962014-10-01 17:58:07 -0700139
140} // namespace chromeos_update_engine