blob: c66a8491015852de88ccaad5e2278971d20785f9 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
17package com.android.server;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.app.ActivityManagerNative;
Jeff Brown6f357d32014-01-15 20:40:55 -080020import android.app.ActivityThread;
Adam Lesinski182f73f2013-12-05 16:48:06 -080021import android.app.IAlarmManager;
22import android.app.INotificationManager;
Nick Pellyf242b7b2009-10-08 00:12:45 +020023import android.bluetooth.BluetoothAdapter;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040024import android.content.ComponentName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.content.Context;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040027import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.pm.IPackageManager;
Matthew Xie1dd01eb32013-04-26 12:37:54 -070029import android.content.pm.PackageManager;
Joe Onoratodc565f42010-10-04 15:27:22 -040030import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.media.AudioService;
Irfan Sherifff6d09842011-08-03 15:37:08 -070032import android.net.wifi.p2p.WifiP2pService;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070033import android.os.Environment;
Jeff Brown6f357d32014-01-15 20:40:55 -080034import android.os.FactoryTest;
Jeff Brownbd6e1502012-08-28 03:27:37 -070035import android.os.Handler;
Amith Yamasani817ec492013-12-20 13:27:30 -080036import android.os.IBinder;
Jeff Brown6f357d32014-01-15 20:40:55 -080037import android.os.IPowerManager;
Jeff Hamilton35eef702010-06-09 15:45:18 -050038import android.os.Looper;
39import android.os.RemoteException;
40import android.os.ServiceManager;
Brad Fitzpatrickc74a1b442010-09-10 16:03:29 -070041import android.os.StrictMode;
Jeff Hamilton35eef702010-06-09 15:45:18 -050042import android.os.SystemClock;
43import android.os.SystemProperties;
Amith Yamasanicd757062012-10-19 18:23:52 -070044import android.os.UserHandle;
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -070045import android.service.dreams.DreamService;
Joe Onoratodc565f42010-10-04 15:27:22 -040046import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import android.util.EventLog;
Dianne Hackborn661cd522011-08-22 00:26:20 -070048import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080049import android.util.Slog;
Brad Fitzpatrick5fdc0c72010-10-12 13:12:18 -070050import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051
Dan Morrille4d9a012013-03-28 18:10:43 -070052import com.android.internal.R;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070053import com.android.internal.os.BinderInternal;
54import com.android.internal.os.SamplingProfilerIntegration;
55import com.android.server.accessibility.AccessibilityManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080056import com.android.server.accounts.AccountManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070057import com.android.server.am.ActivityManagerService;
Jeff Brown96307042012-07-27 15:51:34 -070058import com.android.server.am.BatteryStatsService;
Amith Yamasani09e9cdc2013-11-06 14:54:50 -080059import com.android.server.clipboard.ClipboardService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080060import com.android.server.content.ContentService;
Jeff Brownfa25bf52012-07-23 19:26:30 -070061import com.android.server.display.DisplayManagerService;
Jeff Browncef440f2012-09-25 18:58:48 -070062import com.android.server.dreams.DreamManagerService;
Jeff Brown6ec6f792012-04-17 16:52:41 -070063import com.android.server.input.InputManagerService;
Adam Lesinski182f73f2013-12-05 16:48:06 -080064import com.android.server.lights.LightsManager;
65import com.android.server.lights.LightsService;
Jeff Brown69b07162013-11-07 00:30:16 -080066import com.android.server.media.MediaRouterService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070067import com.android.server.net.NetworkPolicyManagerService;
Jeff Sharkey75279902011-05-24 18:39:45 -070068import com.android.server.net.NetworkStatsService;
Adam Lesinski182f73f2013-12-05 16:48:06 -080069import com.android.server.notification.NotificationManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080070import com.android.server.os.SchedulingPolicyService;
Jeff Brownf69c8122012-09-12 17:00:34 -070071import com.android.server.pm.Installer;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070072import com.android.server.pm.PackageManagerService;
Amith Yamasani258848d2012-08-10 17:06:33 -070073import com.android.server.pm.UserManagerService;
Jeff Brown4f8ecd82012-06-18 18:29:13 -070074import com.android.server.power.PowerManagerService;
75import com.android.server.power.ShutdownThread;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080076import com.android.server.search.SearchManagerService;
Adam Lesinski182f73f2013-12-05 16:48:06 -080077import com.android.server.statusbar.StatusBarManagerService;
78import com.android.server.storage.DeviceStorageMonitorService;
79import com.android.server.twilight.TwilightManager;
80import com.android.server.twilight.TwilightService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070081import com.android.server.usb.UsbService;
Amith Yamasani09e9cdc2013-11-06 14:54:50 -080082import com.android.server.wallpaper.WallpaperManagerService;
Irfan Sheriffd017f352013-02-20 13:30:44 -080083import com.android.server.wifi.WifiService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070084import com.android.server.wm.WindowManagerService;
85
86import dalvik.system.VMRuntime;
87import dalvik.system.Zygote;
88
Dan Egnor4410ec82009-09-11 16:40:01 -070089import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070090import java.util.Timer;
91import java.util.TimerTask;
92
Jeff Brown6f357d32014-01-15 20:40:55 -080093public final class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 private static final String TAG = "SystemServer";
Jeff Brown6f357d32014-01-15 20:40:55 -080095
Ben Komalo553acf02011-09-19 14:25:28 -070096 private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
Ben Komalo3573d402011-09-23 15:08:24 -070097 private static final String ENCRYPTED_STATE = "1";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098
Jeff Brown6f357d32014-01-15 20:40:55 -080099 private static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
100
101 // The earliest supported time. We pick one day into 1970, to
102 // give any timezone code room without going into negative time.
103 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104
Amith Yamasani817ec492013-12-20 13:27:30 -0800105 /*
106 * Implementation class names. TODO: Move them to a codegen class or load
107 * them from the build system somehow.
108 */
109 private static final String BACKUP_MANAGER_SERVICE_CLASS =
110 "com.android.server.backup.BackupManagerSystemService";
111 private static final String DEVICE_POLICY_MANAGER_SERVICE_CLASS =
112 "com.android.server.devicepolicy.DevicePolicyManagerSystemService";
113 private static final String APPWIDGET_SERVICE_CLASS =
114 "com.android.server.appwidget.AppWidgetService";
115 private static final String PRINT_MANAGER_SERVICE_CLASS =
116 "com.android.server.print.PrintManagerService";
117
Jeff Brown6f357d32014-01-15 20:40:55 -0800118 private final int mFactoryTestMode;
119 private Timer mProfilerSnapshotTimer;
120
121 private Context mSystemContext;
122 private SystemServiceManager mSystemServiceManager;
123
124 private Installer mInstaller; // TODO: remove this
125 private PowerManagerService mPowerManagerService; // TODO: remove this
126 private ContentResolver mContentResolver;
127
128 /**
129 * Called to initialize native system services.
130 */
131 private static native void nativeInit();
132
133 /**
134 * The main entry point from zygote.
135 */
136 public static void main(String[] args) {
137 new SystemServer().run();
138 }
139
140 public SystemServer() {
141 mFactoryTestMode = FactoryTest.getMode();
142 }
143
144 private void run() {
145 // If a device's clock is before 1970 (before 0), a lot of
146 // APIs crash dealing with negative numbers, notably
147 // java.io.File#setLastModified, so instead we fake it and
148 // hope that time from cell towers or NTP fixes it shortly.
149 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
150 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
151 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
152 }
153
154 // Here we go!
155 Slog.i(TAG, "Entered the Android system server!");
156 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN, SystemClock.uptimeMillis());
157
158 // In case the runtime switched since last boot (such as when
159 // the old runtime was removed in an OTA), set the system
160 // property so that it is in sync. We can't do this in
161 // libnativehelper's JniInvocation::Init code where we already
162 // had to fallback to a different runtime because it is
163 // running as root and we need to be the system user to set
164 // the property. http://b/11463182
165 SystemProperties.set("persist.sys.dalvik.vm.lib", VMRuntime.getRuntime().vmLibrary());
166
167 // Enable the sampling profiler.
168 if (SamplingProfilerIntegration.isEnabled()) {
169 SamplingProfilerIntegration.start();
170 mProfilerSnapshotTimer = new Timer();
171 mProfilerSnapshotTimer.schedule(new TimerTask() {
172 @Override
173 public void run() {
174 SamplingProfilerIntegration.writeSnapshot("system_server", null);
175 }
176 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
177 }
178
179 // Mmmmmm... more memory!
180 VMRuntime.getRuntime().clearGrowthLimit();
181
182 // The system server has to run all of the time, so it needs to be
183 // as efficient as possible with its memory usage.
184 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
185
186 // Within the system server, it is an error to access Environment paths without
187 // explicitly specifying a user.
188 Environment.setUserRequired(true);
189
190 // Ensure binder calls into the system always run at foreground priority.
191 BinderInternal.disableBackgroundScheduling(true);
192
193 // Prepare the main looper thread (this thread).
194 android.os.Process.setThreadPriority(
195 android.os.Process.THREAD_PRIORITY_FOREGROUND);
196 android.os.Process.setCanSelfBackground(false);
197 Looper.prepareMainLooper();
198
199 // Initialize native services.
200 System.loadLibrary("android_servers");
201 nativeInit();
202
203 // Check whether we failed to shut down last time we tried.
204 // This call may not return.
205 performPendingShutdown();
206
207 // Initialize the system context.
208 createSystemContext();
209
210 // Create the system service manager.
211 mSystemServiceManager = new SystemServiceManager(mSystemContext);
212
213 // Start services.
214 try {
215 startBootstrapServices();
216 startOtherServices();
217 } catch (RuntimeException ex) {
218 Slog.e("System", "******************************************");
219 Slog.e("System", "************ Failure starting system services", ex);
220 throw ex;
221 }
222
223 // For debug builds, log event loop stalls to dropbox for analysis.
224 if (StrictMode.conditionallyEnableDebugLogging()) {
225 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
226 }
227
228 // Loop forever.
229 Looper.loop();
230 throw new RuntimeException("Main thread loop unexpectedly exited");
231 }
232
233 private void reportWtf(String msg, Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700234 Slog.w(TAG, "***********************************************");
235 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
236 }
237
Jeff Brown6f357d32014-01-15 20:40:55 -0800238 private void performPendingShutdown() {
239 final String shutdownAction = SystemProperties.get(
240 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
241 if (shutdownAction != null && shutdownAction.length() > 0) {
242 boolean reboot = (shutdownAction.charAt(0) == '1');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243
Jeff Brown6f357d32014-01-15 20:40:55 -0800244 final String reason;
245 if (shutdownAction.length() > 1) {
246 reason = shutdownAction.substring(1, shutdownAction.length());
247 } else {
248 reason = null;
Kenny Rootf547d672010-09-22 10:36:48 -0700249 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800250
251 ShutdownThread.rebootOrShutdown(reboot, reason);
Kenny Rootf547d672010-09-22 10:36:48 -0700252 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800253 }
Kenny Rootf547d672010-09-22 10:36:48 -0700254
Jeff Brown6f357d32014-01-15 20:40:55 -0800255 private void createSystemContext() {
256 ActivityThread activityThread = ActivityThread.systemMain();
257 mSystemContext = activityThread.getSystemContext();
258 mSystemContext.setTheme(android.R.style.Theme_Holo);
259 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260
Jeff Brown6f357d32014-01-15 20:40:55 -0800261 private void startBootstrapServices() {
262 // Wait for installd to finish starting up so that it has a chance to
263 // create critical directories such as /data/user with the appropriate
264 // permissions. We need this to complete before we initialize other services.
265 mInstaller = mSystemServiceManager.startService(Installer.class);
266
267 // Power manager needs to be started early because other services need it.
268 // TODO: The conversion to the new pattern is incomplete. We need to switch
269 // the power manager's dependencies over then we can use boot phases to arrange
270 // initialization order and remove the mPowerManagerService field.
271 mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class);
272
273 // Activity manager runs the show.
274 mSystemServiceManager.startService(ActivityManagerService.Lifecycle.class);
275 }
276
277 private void startOtherServices() {
278 // Create a handler thread that window manager will use.
279 final ServiceThread windowManagerThread = new ServiceThread("WindowManager",
280 android.os.Process.THREAD_PRIORITY_DISPLAY);
281 windowManagerThread.start();
282 final Handler windowManagerHandler = new Handler(windowManagerThread.getLooper());
283 Watchdog.getInstance().addThread(windowManagerHandler);
284
285 final Context context = mSystemContext;
Kenny Root26ff6622012-07-30 12:58:03 -0700286 AccountManagerService accountManager = null;
287 ContentService contentService = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800288 LightsManager lights = null;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700289 DisplayManagerService display = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -0400290 BatteryService battery = null;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700291 VibratorService vibrator = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800292 IAlarmManager alarm = null;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700293 MountService mountService = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700294 NetworkManagementService networkManagement = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700295 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700296 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400297 ConnectivityService connectivity = null;
repo sync55bc5f32011-06-24 14:23:07 -0700298 WifiP2pService wifiP2p = null;
repo syncaea743a2011-07-29 23:55:49 -0700299 WifiService wifi = null;
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700300 NsdService serviceDiscovery= null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 IPackageManager pm = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 WindowManagerService wm = null;
fredc0f420372012-04-12 00:02:00 -0700303 BluetoothManagerService bluetooth = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500304 DockObserver dock = null;
Mike Lockwood770126a2010-12-09 22:30:37 -0800305 UsbService usb = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400306 SerialService serial = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800307 TwilightManager twilight = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800308 RecognitionManagerService recognition = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700309 NetworkTimeUpdateService networkTimeUpdater = null;
John Grossmanc1576732012-02-01 15:23:33 -0800310 CommonTimeManagementService commonTimeMgmtService = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700311 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700312 TelephonyRegistry telephonyRegistry = null;
Erik Gilling51e95df2013-06-26 11:06:51 -0700313 ConsumerIrService consumerIr = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314
Jeff Brownbd6e1502012-08-28 03:27:37 -0700315 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700316 boolean firstBoot = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700317 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
318 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
319 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
320 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
321 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
322 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
323 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
324 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
325
326 try {
Jeff Brown848c2dc2012-08-19 20:18:08 -0700327 Slog.i(TAG, "Display Manager");
Jeff Brown6f357d32014-01-15 20:40:55 -0800328 display = new DisplayManagerService(context, windowManagerHandler);
Jeff Brown848c2dc2012-08-19 20:18:08 -0700329 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330
Joe Onorato8a9b2202010-02-26 18:56:32 -0800331 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700332 telephonyRegistry = new TelephonyRegistry(context);
333 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334
Glenn Kasten07b04652012-04-23 15:00:43 -0700335 Slog.i(TAG, "Scheduling Policy");
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700336 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Glenn Kasten07b04652012-04-23 15:00:43 -0700337
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 AttributeCache.init(context);
339
Jeff Brownbd6e1502012-08-28 03:27:37 -0700340 if (!display.waitForDefaultDisplay()) {
341 reportWtf("Timeout waiting for default display to be initialized.",
342 new Throwable());
343 }
344
Joe Onorato8a9b2202010-02-26 18:56:32 -0800345 Slog.i(TAG, "Package Manager");
Ben Komalo553acf02011-09-19 14:25:28 -0700346 // Only run "core" apps if we're encrypting the device.
347 String cryptState = SystemProperties.get("vold.decrypt");
Ben Komalo3573d402011-09-23 15:08:24 -0700348 if (ENCRYPTING_STATE.equals(cryptState)) {
Ben Komalo553acf02011-09-19 14:25:28 -0700349 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
Ben Komalo3573d402011-09-23 15:08:24 -0700350 onlyCore = true;
351 } else if (ENCRYPTED_STATE.equals(cryptState)) {
352 Slog.w(TAG, "Device encrypted - only parsing core apps");
353 onlyCore = true;
Ben Komalo553acf02011-09-19 14:25:28 -0700354 }
Ben Komalo3573d402011-09-23 15:08:24 -0700355
Jeff Brown6f357d32014-01-15 20:40:55 -0800356 pm = PackageManagerService.main(context, mInstaller,
357 mFactoryTestMode != FactoryTest.FACTORY_TEST_OFF,
Ben Komalo553acf02011-09-19 14:25:28 -0700358 onlyCore);
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700359 try {
360 firstBoot = pm.isFirstBoot();
361 } catch (RemoteException e) {
362 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363
364 ActivityManagerService.setSystemProcess();
Svetoslavb3038ec2013-02-13 14:39:30 -0800365
Nick Kralevich79619dd2013-03-04 13:05:32 -0800366 Slog.i(TAG, "Entropy Mixer");
367 ServiceManager.addService("entropy", new EntropyMixer(context));
368
Amith Yamasani258848d2012-08-10 17:06:33 -0700369 Slog.i(TAG, "User Service");
370 ServiceManager.addService(Context.USER_SERVICE,
Dianne Hackborn4428e172012-08-24 17:43:05 -0700371 UserManagerService.getInstance());
Amith Yamasani258848d2012-08-10 17:06:33 -0700372
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 mContentResolver = context.getContentResolver();
374
Fred Quintanae91ebe22009-09-29 20:44:30 -0700375 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700376 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700377 // TODO: seems like this should be disable-able, but req'd by ContentService
Joe Onorato8a9b2202010-02-26 18:56:32 -0800378 Slog.i(TAG, "Account Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700379 accountManager = new AccountManagerService(context);
380 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
Fred Quintana60307342009-03-24 22:48:12 -0700381 } catch (Throwable e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800382 Slog.e(TAG, "Failure starting Account Manager", e);
Fred Quintana60307342009-03-24 22:48:12 -0700383 }
384
Joe Onorato8a9b2202010-02-26 18:56:32 -0800385 Slog.i(TAG, "Content Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700386 contentService = ContentService.main(context,
Jeff Brown6f357d32014-01-15 20:40:55 -0800387 mFactoryTestMode == FactoryTest.FACTORY_TEST_LOW_LEVEL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388
Joe Onorato8a9b2202010-02-26 18:56:32 -0800389 Slog.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800390 ActivityManagerService.installSystemProviders();
391
Jeff Brown6f357d32014-01-15 20:40:55 -0800392 mSystemServiceManager.startService(LightsService.class);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800393 lights = LocalServices.getService(LightsManager.class);
Mike Lockwood3a322132009-11-24 00:30:52 -0500394
Joe Onoratode1b3592010-10-25 20:36:47 -0700395 Slog.i(TAG, "Battery Service");
396 battery = new BatteryService(context, lights);
397 ServiceManager.addService("battery", battery);
398
Joe Onorato8a9b2202010-02-26 18:56:32 -0800399 Slog.i(TAG, "Vibrator Service");
Jeff Brown7f6c2312012-04-13 20:38:38 -0700400 vibrator = new VibratorService(context);
401 ServiceManager.addService("vibrator", vibrator);
The Android Open Source Project10592532009-03-18 17:39:46 -0700402
Jeff Brown6f357d32014-01-15 20:40:55 -0800403 // TODO: use boot phase
404 // only initialize the power service after we have started the
405 // lights service, content providers and the battery service.
406 mPowerManagerService.init(lights, battery,
407 BatteryStatsService.getService(),
408 ActivityManagerService.self().getAppOpsService(), display);
409
Erik Gilling51e95df2013-06-26 11:06:51 -0700410 Slog.i(TAG, "Consumer IR Service");
411 consumerIr = new ConsumerIrService(context);
412 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
413
Jeff Brown6f357d32014-01-15 20:40:55 -0800414 mSystemServiceManager.startService(AlarmManagerService.class);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800415 alarm = IAlarmManager.Stub.asInterface(
416 ServiceManager.getService(Context.ALARM_SERVICE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417
Joe Onorato8a9b2202010-02-26 18:56:32 -0800418 Slog.i(TAG, "Init Watchdog");
Jeff Brown6f357d32014-01-15 20:40:55 -0800419 final Watchdog watchdog = Watchdog.getInstance();
420 watchdog.init(context, ActivityManagerService.self());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421
Jeff Browna9d131c2012-09-20 16:48:17 -0700422 Slog.i(TAG, "Input Manager");
Jeff Brown6f357d32014-01-15 20:40:55 -0800423 inputManager = new InputManagerService(context, windowManagerHandler);
Jeff Browna9d131c2012-09-20 16:48:17 -0700424
Joe Onorato8a9b2202010-02-26 18:56:32 -0800425 Slog.i(TAG, "Window Manager");
Jeff Brown6f357d32014-01-15 20:40:55 -0800426 wm = WindowManagerService.main(context, display, inputManager,
427 windowManagerHandler,
428 mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700429 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800430 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700431 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800432
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700433 ActivityManagerService.self().setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700434
435 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
436 inputManager.start();
437
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700438 display.setWindowManager(wm);
Jeff Brownd728bf52012-09-08 18:05:28 -0700439 display.setInputManager(inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800440
441 // Skip Bluetooth if we have an emulator kernel
442 // TODO: Use a more reliable check to see if this product should
443 // support Bluetooth - see bug 988521
444 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100445 Slog.i(TAG, "No Bluetooh Service (emulator)");
Jeff Brown6f357d32014-01-15 20:40:55 -0800446 } else if (mFactoryTestMode == FactoryTest.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100447 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700448 } else if (!context.getPackageManager().hasSystemFeature
449 (PackageManager.FEATURE_BLUETOOTH)) {
450 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700451 } else if (disableBluetooth) {
452 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 } else {
fredc0f420372012-04-12 00:02:00 -0700454 Slog.i(TAG, "Bluetooth Manager Service");
455 bluetooth = new BluetoothManagerService(context);
456 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700459 Slog.e("System", "******************************************");
460 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 }
462
Joe Onorato089de882010-04-12 08:18:45 -0700463 StatusBarManagerService statusBar = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800464 INotificationManager notification = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 InputMethodManagerService imm = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700466 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500467 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800468 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900469 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700470 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500471 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700472 AssetAtlasService atlas = null;
Jeff Brown69b07162013-11-07 00:30:16 -0800473 MediaRouterService mediaRouter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474
Dianne Hackborn661cd522011-08-22 00:26:20 -0700475 // Bring up services needed for UI.
Jeff Brown6f357d32014-01-15 20:40:55 -0800476 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700477 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
478 if (true) {
479 try {
480 Slog.i(TAG, "Input Method Service");
481 imm = new InputMethodManagerService(context, wm);
482 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
483 } catch (Throwable e) {
484 reportWtf("starting Input Manager Service", e);
485 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700486
Dan Morrille4d9a012013-03-28 18:10:43 -0700487 try {
488 Slog.i(TAG, "Accessibility Manager");
489 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
490 new AccessibilityManagerService(context));
491 } catch (Throwable e) {
492 reportWtf("starting Accessibility Manager", e);
493 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700494 }
495 }
496
497 try {
498 wm.displayReady();
499 } catch (Throwable e) {
500 reportWtf("making display ready", e);
501 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700502
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700503 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700504 pm.performBootDexOpt();
505 } catch (Throwable e) {
506 reportWtf("performing boot dexopt", e);
507 }
508
509 try {
510 ActivityManagerNative.getDefault().showBootMessage(
511 context.getResources().getText(
512 com.android.internal.R.string.android_upgrading_starting_apps),
Adam Lesinski182f73f2013-12-05 16:48:06 -0800513 false);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700514 } catch (RemoteException e) {
515 }
516
Jeff Brown6f357d32014-01-15 20:40:55 -0800517 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700518 if (!disableStorage &&
519 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700520 try {
521 /*
522 * NotificationManagerService is dependant on MountService,
523 * (for media / usb notifications) so we must start MountService first.
524 */
525 Slog.i(TAG, "Mount Service");
526 mountService = new MountService(context);
527 ServiceManager.addService("mount", mountService);
528 } catch (Throwable e) {
529 reportWtf("starting Mount Service", e);
530 }
531 }
532
Dan Morrille4d9a012013-03-28 18:10:43 -0700533 if (!disableNonCoreServices) {
534 try {
535 Slog.i(TAG, "LockSettingsService");
536 lockSettings = new LockSettingsService(context);
537 ServiceManager.addService("lock_settings", lockSettings);
538 } catch (Throwable e) {
539 reportWtf("starting LockSettingsService service", e);
540 }
541
542 try {
543 Slog.i(TAG, "Device Policy");
Jeff Brown6f357d32014-01-15 20:40:55 -0800544 mSystemServiceManager.startServiceIfExists(DEVICE_POLICY_MANAGER_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -0700545 } catch (Throwable e) {
546 reportWtf("starting DevicePolicyService", e);
547 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700548 }
549
Dan Morrille4d9a012013-03-28 18:10:43 -0700550 if (!disableSystemUI) {
551 try {
552 Slog.i(TAG, "Status Bar");
553 statusBar = new StatusBarManagerService(context, wm);
554 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
555 } catch (Throwable e) {
556 reportWtf("starting StatusBarManagerService", e);
557 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800558 }
559
Dan Morrille4d9a012013-03-28 18:10:43 -0700560 if (!disableNonCoreServices) {
561 try {
562 Slog.i(TAG, "Clipboard Service");
563 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
564 new ClipboardService(context));
565 } catch (Throwable e) {
566 reportWtf("starting Clipboard Service", e);
567 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 }
569
Dan Morrille4d9a012013-03-28 18:10:43 -0700570 if (!disableNetwork) {
571 try {
572 Slog.i(TAG, "NetworkManagement Service");
573 networkManagement = NetworkManagementService.create(context);
574 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
575 } catch (Throwable e) {
576 reportWtf("starting NetworkManagement Service", e);
577 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 }
579
Dan Morrille4d9a012013-03-28 18:10:43 -0700580 if (!disableNonCoreServices) {
581 try {
582 Slog.i(TAG, "Text Service Manager Service");
583 tsms = new TextServicesManagerService(context);
584 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
585 } catch (Throwable e) {
586 reportWtf("starting Text Service Manager Service", e);
587 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800588 }
589
Dan Morrille4d9a012013-03-28 18:10:43 -0700590 if (!disableNetwork) {
591 try {
592 Slog.i(TAG, "NetworkStats Service");
593 networkStats = new NetworkStatsService(context, networkManagement, alarm);
594 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
595 } catch (Throwable e) {
596 reportWtf("starting NetworkStats Service", e);
597 }
598
599 try {
600 Slog.i(TAG, "NetworkPolicy Service");
601 networkPolicy = new NetworkPolicyManagerService(
Jeff Brown6f357d32014-01-15 20:40:55 -0800602 context, ActivityManagerService.self(),
603 (IPowerManager)ServiceManager.getService(Context.POWER_SERVICE),
Dan Morrille4d9a012013-03-28 18:10:43 -0700604 networkStats, networkManagement);
605 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
606 } catch (Throwable e) {
607 reportWtf("starting NetworkPolicy Service", e);
608 }
609
610 try {
611 Slog.i(TAG, "Wi-Fi P2pService");
612 wifiP2p = new WifiP2pService(context);
613 ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p);
614 } catch (Throwable e) {
615 reportWtf("starting Wi-Fi P2pService", e);
616 }
617
618 try {
619 Slog.i(TAG, "Wi-Fi Service");
620 wifi = new WifiService(context);
621 ServiceManager.addService(Context.WIFI_SERVICE, wifi);
622 } catch (Throwable e) {
623 reportWtf("starting Wi-Fi Service", e);
624 }
625
626 try {
627 Slog.i(TAG, "Connectivity Service");
628 connectivity = new ConnectivityService(
629 context, networkManagement, networkStats, networkPolicy);
630 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
631 networkStats.bindConnectivityManager(connectivity);
632 networkPolicy.bindConnectivityManager(connectivity);
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700633
Dan Morrille4d9a012013-03-28 18:10:43 -0700634 wifiP2p.connectivityServiceReady();
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700635 wifi.checkAndStartWifi();
Dan Morrille4d9a012013-03-28 18:10:43 -0700636 } catch (Throwable e) {
637 reportWtf("starting Connectivity Service", e);
638 }
639
640 try {
641 Slog.i(TAG, "Network Service Discovery Service");
642 serviceDiscovery = NsdService.create(context);
643 ServiceManager.addService(
644 Context.NSD_SERVICE, serviceDiscovery);
645 } catch (Throwable e) {
646 reportWtf("starting Service Discovery Service", e);
647 }
satok988323c2011-06-22 16:38:13 +0900648 }
649
Dan Morrille4d9a012013-03-28 18:10:43 -0700650 if (!disableNonCoreServices) {
651 try {
652 Slog.i(TAG, "UpdateLock Service");
653 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
654 new UpdateLockService(context));
655 } catch (Throwable e) {
656 reportWtf("starting UpdateLockService", e);
657 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800658 }
659
Kenny Root51a573c2012-05-17 13:30:28 -0700660 /*
661 * MountService has a few dependencies: Notification Manager and
662 * AppWidget Provider. Make sure MountService is completely started
663 * first before continuing.
664 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700665 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700666 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800667 }
668
669 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700670 if (accountManager != null)
671 accountManager.systemReady();
672 } catch (Throwable e) {
673 reportWtf("making Account Manager Service ready", e);
674 }
675
676 try {
677 if (contentService != null)
678 contentService.systemReady();
679 } catch (Throwable e) {
680 reportWtf("making Content Service ready", e);
681 }
682
Jeff Brown6f357d32014-01-15 20:40:55 -0800683 mSystemServiceManager.startService(NotificationManagerService.class);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800684 notification = INotificationManager.Stub.asInterface(
685 ServiceManager.getService(Context.NOTIFICATION_SERVICE));
686 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800687
Jeff Brown6f357d32014-01-15 20:40:55 -0800688 mSystemServiceManager.startService(DeviceStorageMonitorService.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689
Dan Morrille4d9a012013-03-28 18:10:43 -0700690 if (!disableLocation) {
691 try {
692 Slog.i(TAG, "Location Manager");
693 location = new LocationManagerService(context);
694 ServiceManager.addService(Context.LOCATION_SERVICE, location);
695 } catch (Throwable e) {
696 reportWtf("starting Location Manager", e);
697 }
698
699 try {
700 Slog.i(TAG, "Country Detector");
701 countryDetector = new CountryDetectorService(context);
702 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
703 } catch (Throwable e) {
704 reportWtf("starting Country Detector", e);
705 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800706 }
707
Dan Morrille4d9a012013-03-28 18:10:43 -0700708 if (!disableNonCoreServices) {
709 try {
710 Slog.i(TAG, "Search Service");
711 ServiceManager.addService(Context.SEARCH_SERVICE,
712 new SearchManagerService(context));
713 } catch (Throwable e) {
714 reportWtf("starting Search Service", e);
715 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 }
717
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800719 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700720 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800721 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700722 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700723 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700724 }
725
Dan Morrille4d9a012013-03-28 18:10:43 -0700726 if (!disableNonCoreServices && context.getResources().getBoolean(
727 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400728 try {
729 Slog.i(TAG, "Wallpaper Service");
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800730 wallpaper = new WallpaperManagerService(context);
731 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400732 } catch (Throwable e) {
733 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700734 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735 }
736
Dan Morrille4d9a012013-03-28 18:10:43 -0700737 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700738 try {
739 Slog.i(TAG, "Audio Service");
740 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
741 } catch (Throwable e) {
742 reportWtf("starting Audio Service", e);
743 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800744 }
745
Dan Morrille4d9a012013-03-28 18:10:43 -0700746 if (!disableNonCoreServices) {
747 try {
748 Slog.i(TAG, "Dock Observer");
749 // Listen for dock station changes
750 dock = new DockObserver(context);
751 } catch (Throwable e) {
752 reportWtf("starting DockObserver", e);
753 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500754 }
755
Dan Morrille4d9a012013-03-28 18:10:43 -0700756 if (!disableMedia) {
757 try {
758 Slog.i(TAG, "Wired Accessory Manager");
759 // Listen for wired headset changes
760 inputManager.setWiredAccessoryCallbacks(
761 new WiredAccessoryManager(context, inputManager));
762 } catch (Throwable e) {
763 reportWtf("starting WiredAccessoryManager", e);
764 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500765 }
766
Dan Morrille4d9a012013-03-28 18:10:43 -0700767 if (!disableNonCoreServices) {
768 try {
769 Slog.i(TAG, "USB Service");
770 // Manage USB host and device support
771 usb = new UsbService(context);
772 ServiceManager.addService(Context.USB_SERVICE, usb);
773 } catch (Throwable e) {
774 reportWtf("starting UsbService", e);
775 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400776
Dan Morrille4d9a012013-03-28 18:10:43 -0700777 try {
778 Slog.i(TAG, "Serial Service");
779 // Serial port support
780 serial = new SerialService(context);
781 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
782 } catch (Throwable e) {
783 Slog.e(TAG, "Failure starting SerialService", e);
784 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400785 }
786
Jeff Brown6f357d32014-01-15 20:40:55 -0800787 mSystemServiceManager.startService(TwilightService.class);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800788 twilight = LocalServices.getService(TwilightManager.class);
Jeff Brown2416e092012-08-21 22:12:20 -0700789
Jeff Brown6f357d32014-01-15 20:40:55 -0800790 mSystemServiceManager.startService(UiModeManagerService.class);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800791
Dan Morrille4d9a012013-03-28 18:10:43 -0700792 if (!disableNonCoreServices) {
793 try {
794 Slog.i(TAG, "Backup Service");
Jeff Brown6f357d32014-01-15 20:40:55 -0800795 mSystemServiceManager.startServiceIfExists(BACKUP_MANAGER_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -0700796 } catch (Throwable e) {
797 Slog.e(TAG, "Failure starting Backup Service", e);
798 }
Christopher Tate487529a2009-04-29 14:03:25 -0700799
Dan Morrille4d9a012013-03-28 18:10:43 -0700800 try {
801 Slog.i(TAG, "AppWidget Service");
Jeff Brown6f357d32014-01-15 20:40:55 -0800802 mSystemServiceManager.startServiceIfExists(APPWIDGET_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -0700803 } catch (Throwable e) {
804 reportWtf("starting AppWidget Service", e);
805 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806
Dan Morrille4d9a012013-03-28 18:10:43 -0700807 try {
808 Slog.i(TAG, "Recognition Service");
809 recognition = new RecognitionManagerService(context);
810 } catch (Throwable e) {
811 reportWtf("starting Recognition Service", e);
812 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800813 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700814
Nick Pelly038cabe2010-09-23 16:12:11 -0700815 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700816 Slog.i(TAG, "DiskStats Service");
817 ServiceManager.addService("diskstats", new DiskStatsService(context));
818 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700819 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700820 }
Sen Hubde75702010-05-28 01:54:03 -0700821
822 try {
823 // need to add this service even if SamplingProfilerIntegration.isEnabled()
824 // is false, because it is this service that detects system property change and
825 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
826 // there is little overhead for running this service.
827 Slog.i(TAG, "SamplingProfiler Service");
828 ServiceManager.addService("samplingprofiler",
829 new SamplingProfilerService(context));
830 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700831 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700832 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800833
Dan Morrille4d9a012013-03-28 18:10:43 -0700834 if (!disableNetwork) {
835 try {
836 Slog.i(TAG, "NetworkTimeUpdateService");
837 networkTimeUpdater = new NetworkTimeUpdateService(context);
838 } catch (Throwable e) {
839 reportWtf("starting NetworkTimeUpdate service", e);
840 }
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700841 }
John Grossmanc1576732012-02-01 15:23:33 -0800842
Dan Morrille4d9a012013-03-28 18:10:43 -0700843 if (!disableMedia) {
844 try {
845 Slog.i(TAG, "CommonTimeManagementService");
846 commonTimeMgmtService = new CommonTimeManagementService(context);
847 ServiceManager.addService("commontime_management", commonTimeMgmtService);
848 } catch (Throwable e) {
849 reportWtf("starting CommonTimeManagementService service", e);
850 }
John Grossmanc1576732012-02-01 15:23:33 -0800851 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700852
Dan Morrille4d9a012013-03-28 18:10:43 -0700853 if (!disableNetwork) {
854 try {
855 Slog.i(TAG, "CertBlacklister");
856 CertBlacklister blacklister = new CertBlacklister(context);
857 } catch (Throwable e) {
858 reportWtf("starting CertBlacklister", e);
859 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700860 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800861
Dan Morrille4d9a012013-03-28 18:10:43 -0700862 if (!disableNonCoreServices &&
863 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500864 try {
865 Slog.i(TAG, "Dreams Service");
866 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown6f357d32014-01-15 20:40:55 -0800867 dreamy = new DreamManagerService(context, windowManagerHandler);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700868 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500869 } catch (Throwable e) {
870 reportWtf("starting DreamManagerService", e);
871 }
872 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800873
Romain Guy3b748a42013-04-17 18:54:38 -0700874 if (!disableNonCoreServices) {
875 try {
876 Slog.i(TAG, "Assets Atlas Service");
877 atlas = new AssetAtlasService(context);
878 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
879 } catch (Throwable e) {
880 reportWtf("starting AssetAtlasService", e);
881 }
882 }
883
Svetoslavb3038ec2013-02-13 14:39:30 -0800884 try {
885 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700886 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800887 } catch (Throwable e) {
888 reportWtf("starting IdleMaintenanceService", e);
889 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700890
891 try {
892 Slog.i(TAG, "Print Service");
Jeff Brown6f357d32014-01-15 20:40:55 -0800893 mSystemServiceManager.startServiceIfExists(PRINT_MANAGER_SERVICE_CLASS);
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700894 } catch (Throwable e) {
895 reportWtf("starting Print Service", e);
896 }
Jeff Brown69b07162013-11-07 00:30:16 -0800897
898 if (!disableNonCoreServices) {
899 try {
900 Slog.i(TAG, "Media Router Service");
901 mediaRouter = new MediaRouterService(context);
902 ServiceManager.addService(Context.MEDIA_ROUTER_SERVICE, mediaRouter);
903 } catch (Throwable e) {
904 reportWtf("starting MediaRouterService", e);
905 }
906 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800907 }
908
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700909 // Before things start rolling, be sure we have decided whether
910 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700911 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700912 if (safeMode) {
Jeff Brownb09abc12011-01-13 21:08:27 -0800913 ActivityManagerService.self().enterSafeMode();
914 // Post the safe mode state in the Zygote class
915 Zygote.systemInSafeMode = true;
916 // Disable the JIT for the system_server process
917 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800918 } else {
919 // Enable the JIT for the system_server process
920 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700921 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800922
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700923 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700924
Jeff Brown7f6c2312012-04-13 20:38:38 -0700925 try {
926 vibrator.systemReady();
927 } catch (Throwable e) {
928 reportWtf("making Vibrator Service ready", e);
929 }
930
Dan Morrille4d9a012013-03-28 18:10:43 -0700931 if (lockSettings != null) {
932 try {
933 lockSettings.systemReady();
934 } catch (Throwable e) {
935 reportWtf("making Lock Settings Service ready", e);
936 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300937 }
938
Amith Yamasani817ec492013-12-20 13:27:30 -0800939 // Needed by DevicePolicyManager for initialization
Jeff Brown6f357d32014-01-15 20:40:55 -0800940 mSystemServiceManager.startBootPhase(SystemService.PHASE_LOCK_SETTINGS_READY);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800941
Jeff Brown6f357d32014-01-15 20:40:55 -0800942 mSystemServiceManager.startBootPhase(SystemService.PHASE_SYSTEM_SERVICES_READY);
Joe Onorato30275482009-07-08 17:09:14 -0700943
Dianne Hackborn661cd522011-08-22 00:26:20 -0700944 try {
945 wm.systemReady();
946 } catch (Throwable e) {
947 reportWtf("making Window Manager Service ready", e);
948 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400949
Jeff Brownb09abc12011-01-13 21:08:27 -0800950 if (safeMode) {
951 ActivityManagerService.self().showSafeModeOverlay();
952 }
953
Joe Onoratodc565f42010-10-04 15:27:22 -0400954 // Update the configuration for this context by hand, because we're going
955 // to start using it before the config change done in wm.systemReady() will
956 // propagate to it.
957 Configuration config = wm.computeNewConfiguration();
958 DisplayMetrics metrics = new DisplayMetrics();
959 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
960 w.getDefaultDisplay().getMetrics(metrics);
961 context.getResources().updateConfiguration(config, metrics);
962
Jeff Brownaa202a62012-08-21 22:14:26 -0700963 try {
Jeff Brown6f357d32014-01-15 20:40:55 -0800964 // TODO: use boot phase
965 mPowerManagerService.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700966 } catch (Throwable e) {
967 reportWtf("making Power Manager Service ready", e);
968 }
969
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800970 try {
971 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700972 } catch (Throwable e) {
973 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800975
Jeff Brownbd6e1502012-08-28 03:27:37 -0700976 try {
977 display.systemReady(safeMode, onlyCore);
978 } catch (Throwable e) {
979 reportWtf("making Display Manager Service ready", e);
980 }
981
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700982 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400983 final Context contextF = context;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700984 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700985 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700986 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700987 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700988 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700989 final ConnectivityService connectivityF = connectivity;
990 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800991 final UsbService usbF = usb;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700992 final WallpaperManagerService wallpaperF = wallpaper;
993 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800994 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500995 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800996 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700997 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800998 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900999 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001000 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001001 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -07001002 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -07001003 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -07001004 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Jeff Brown69b07162013-11-07 00:30:16 -08001005 final MediaRouterService mediaRouterF = mediaRouter;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001006
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001007 // We now tell the activity manager it is okay to run third party
1008 // code. It will call back into us once it has gotten to the state
1009 // where third party code can really run (but before it has actually
1010 // started launching the initial applications), for us to complete our
1011 // initialization.
Dianne Hackborn295e3c22011-08-25 13:19:08 -07001012 ActivityManagerService.self().systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001013 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001014 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001015
Christopher Tate58d380d2013-03-19 13:10:03 -07001016 try {
1017 ActivityManagerService.self().startObservingNativeCrashes();
1018 } catch (Throwable e) {
1019 reportWtf("observing native crashes", e);
1020 }
Amith Yamasanid50d41e2013-11-14 19:24:44 -08001021 try {
1022 startSystemUi(contextF);
1023 } catch (Throwable e) {
1024 reportWtf("starting System UI", e);
1025 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001026 try {
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001027 if (mountServiceF != null) mountServiceF.systemReady();
1028 } catch (Throwable e) {
1029 reportWtf("making Mount Service ready", e);
1030 }
1031 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001032 if (batteryF != null) batteryF.systemReady();
1033 } catch (Throwable e) {
1034 reportWtf("making Battery Service ready", e);
1035 }
1036 try {
1037 if (networkManagementF != null) networkManagementF.systemReady();
1038 } catch (Throwable e) {
1039 reportWtf("making Network Managment Service ready", e);
1040 }
1041 try {
1042 if (networkStatsF != null) networkStatsF.systemReady();
1043 } catch (Throwable e) {
1044 reportWtf("making Network Stats Service ready", e);
1045 }
1046 try {
1047 if (networkPolicyF != null) networkPolicyF.systemReady();
1048 } catch (Throwable e) {
1049 reportWtf("making Network Policy Service ready", e);
1050 }
1051 try {
1052 if (connectivityF != null) connectivityF.systemReady();
1053 } catch (Throwable e) {
1054 reportWtf("making Connectivity Service ready", e);
1055 }
1056 try {
1057 if (dockF != null) dockF.systemReady();
1058 } catch (Throwable e) {
1059 reportWtf("making Dock Service ready", e);
1060 }
1061 try {
1062 if (usbF != null) usbF.systemReady();
1063 } catch (Throwable e) {
1064 reportWtf("making USB Service ready", e);
1065 }
1066 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001067 if (recognitionF != null) recognitionF.systemReady();
1068 } catch (Throwable e) {
1069 reportWtf("making Recognition Service ready", e);
1070 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001071 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001072
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001073 // It is now okay to let the various system services start their
1074 // third party code...
Jeff Brown6f357d32014-01-15 20:40:55 -08001075 mSystemServiceManager.startBootPhase(SystemService.PHASE_THIRD_PARTY_APPS_CAN_START);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001076
Dianne Hackborn661cd522011-08-22 00:26:20 -07001077 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001078 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001079 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001080 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001081 }
1082 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001083 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001084 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001085 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001086 }
1087 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001088 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001089 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001090 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001091 }
1092 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001093 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001094 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001095 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001096 }
1097 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001098 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001099 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001100 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001101 }
1102 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001103 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001104 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001105 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001106 }
1107 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001108 if (textServiceManagerServiceF != null)
1109 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001110 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001111 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001112 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001113 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001114 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001115 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001116 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001117 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001118 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001119 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001120 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001121 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001122 }
1123 try {
Matthew Xie96313142012-06-29 16:57:31 -07001124 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001125 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001126 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001127 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001128 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001129
Wink Savillea12a7b32012-09-20 10:09:45 -07001130 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001131 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001132 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001133 reportWtf("Notifying TelephonyRegistry running", e);
1134 }
1135
1136 try {
Jeff Brown69b07162013-11-07 00:30:16 -08001137 if (mediaRouterF != null) mediaRouterF.systemRunning();
1138 } catch (Throwable e) {
1139 reportWtf("Notifying MediaRouterService running", e);
1140 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001141
Jeff Brown6f357d32014-01-15 20:40:55 -08001142 mSystemServiceManager.startBootPhase(SystemService.PHASE_BOOT_COMPLETE);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001143 }
1144 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001145 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001146
1147 static final void startSystemUi(Context context) {
1148 Intent intent = new Intent();
1149 intent.setComponent(new ComponentName("com.android.systemui",
1150 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001151 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001152 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001153 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001154}