blob: e4af687f7896605f11df50bd3f35429084b29619 [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;
Nick Pellyf242b7b2009-10-08 00:12:45 +020020import android.bluetooth.BluetoothAdapter;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040021import android.content.ComponentName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.content.Context;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040024import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.pm.IPackageManager;
Matthew Xie1dd01eb32013-04-26 12:37:54 -070026import android.content.pm.PackageManager;
Joe Onoratodc565f42010-10-04 15:27:22 -040027import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.media.AudioService;
Irfan Sherifff6d09842011-08-03 15:37:08 -070029import android.net.wifi.p2p.WifiP2pService;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070030import android.os.Environment;
Jeff Brownbd6e1502012-08-28 03:27:37 -070031import android.os.Handler;
32import android.os.HandlerThread;
Jeff Hamilton35eef702010-06-09 15:45:18 -050033import android.os.Looper;
34import android.os.RemoteException;
35import android.os.ServiceManager;
Brad Fitzpatrickc74a1b442010-09-10 16:03:29 -070036import android.os.StrictMode;
Jeff Hamilton35eef702010-06-09 15:45:18 -050037import android.os.SystemClock;
38import android.os.SystemProperties;
Amith Yamasanicd757062012-10-19 18:23:52 -070039import android.os.UserHandle;
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -070040import android.service.dreams.DreamService;
Joe Onoratodc565f42010-10-04 15:27:22 -040041import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.util.EventLog;
Dianne Hackborn661cd522011-08-22 00:26:20 -070043import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080044import android.util.Slog;
Brad Fitzpatrick5fdc0c72010-10-12 13:12:18 -070045import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
Dan Morrille4d9a012013-03-28 18:10:43 -070047import com.android.internal.R;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070048import com.android.internal.os.BinderInternal;
49import com.android.internal.os.SamplingProfilerIntegration;
50import com.android.server.accessibility.AccessibilityManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080051import com.android.server.accounts.AccountManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070052import com.android.server.am.ActivityManagerService;
Jeff Brown96307042012-07-27 15:51:34 -070053import com.android.server.am.BatteryStatsService;
Amith Yamasani30f8eb42013-11-06 14:54:50 -080054import com.android.server.appwidget.AppWidgetService;
55import com.android.server.backup.BackupManagerService;
56import com.android.server.clipboard.ClipboardService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080057import com.android.server.content.ContentService;
Amith Yamasani30f8eb42013-11-06 14:54:50 -080058import com.android.server.devicepolicy.DevicePolicyManagerService;
Jeff Brownfa25bf52012-07-23 19:26:30 -070059import com.android.server.display.DisplayManagerService;
Jeff Browncef440f2012-09-25 18:58:48 -070060import com.android.server.dreams.DreamManagerService;
Jeff Brown6ec6f792012-04-17 16:52:41 -070061import com.android.server.input.InputManagerService;
Jeff Brown69b07162013-11-07 00:30:16 -080062import com.android.server.media.MediaRouterService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070063import com.android.server.net.NetworkPolicyManagerService;
Jeff Sharkey75279902011-05-24 18:39:45 -070064import com.android.server.net.NetworkStatsService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080065import com.android.server.os.SchedulingPolicyService;
Jeff Brownf69c8122012-09-12 17:00:34 -070066import com.android.server.pm.Installer;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070067import com.android.server.pm.PackageManagerService;
Amith Yamasani258848d2012-08-10 17:06:33 -070068import com.android.server.pm.UserManagerService;
Jeff Brown4f8ecd82012-06-18 18:29:13 -070069import com.android.server.power.PowerManagerService;
70import com.android.server.power.ShutdownThread;
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070071import com.android.server.print.PrintManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080072import com.android.server.search.SearchManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070073import com.android.server.usb.UsbService;
Amith Yamasani30f8eb42013-11-06 14:54:50 -080074import com.android.server.wallpaper.WallpaperManagerService;
Irfan Sheriffd017f352013-02-20 13:30:44 -080075import com.android.server.wifi.WifiService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070076import com.android.server.wm.WindowManagerService;
77
78import dalvik.system.VMRuntime;
79import dalvik.system.Zygote;
80
Dan Egnor4410ec82009-09-11 16:40:01 -070081import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070082import java.util.Timer;
83import java.util.TimerTask;
84
Dianne Hackbornefa92b22013-05-03 14:11:43 -070085class ServerThread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 private static final String TAG = "SystemServer";
Ben Komalo553acf02011-09-19 14:25:28 -070087 private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
Ben Komalo3573d402011-09-23 15:08:24 -070088 private static final String ENCRYPTED_STATE = "1";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089
Jeff Hamilton35eef702010-06-09 15:45:18 -050090 ContentResolver mContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091
Dianne Hackborn661cd522011-08-22 00:26:20 -070092 void reportWtf(String msg, Throwable e) {
93 Slog.w(TAG, "***********************************************");
94 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
95 }
96
Dianne Hackbornefa92b22013-05-03 14:11:43 -070097 public void initAndLoop() {
Doug Zongkerab5c49c2009-12-04 10:31:43 -080098 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 SystemClock.uptimeMillis());
100
Vairavan Srinivasan04b74ec2012-02-02 22:12:19 -0800101 Looper.prepareMainLooper();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102
103 android.os.Process.setThreadPriority(
104 android.os.Process.THREAD_PRIORITY_FOREGROUND);
105
Dianne Hackborn887f3552009-12-07 17:59:37 -0800106 BinderInternal.disableBackgroundScheduling(true);
Christopher Tate160edb32010-06-30 17:46:30 -0700107 android.os.Process.setCanSelfBackground(false);
Sen Hubde75702010-05-28 01:54:03 -0700108
Kenny Rootf547d672010-09-22 10:36:48 -0700109 // Check whether we failed to shut down last time we tried.
110 {
111 final String shutdownAction = SystemProperties.get(
112 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
113 if (shutdownAction != null && shutdownAction.length() > 0) {
114 boolean reboot = (shutdownAction.charAt(0) == '1');
115
116 final String reason;
117 if (shutdownAction.length() > 1) {
118 reason = shutdownAction.substring(1, shutdownAction.length());
119 } else {
120 reason = null;
121 }
122
123 ShutdownThread.rebootOrShutdown(reboot, reason);
124 }
125 }
126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 String factoryTestStr = SystemProperties.get("ro.factorytest");
128 int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
129 : Integer.parseInt(factoryTestStr);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700130 final boolean headless = "1".equals(SystemProperties.get("ro.config.headless", "0"));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131
Jeff Brownf69c8122012-09-12 17:00:34 -0700132 Installer installer = null;
Kenny Root26ff6622012-07-30 12:58:03 -0700133 AccountManagerService accountManager = null;
134 ContentService contentService = null;
Mike Lockwood3a322132009-11-24 00:30:52 -0500135 LightsService lights = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 PowerManagerService power = null;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700137 DisplayManagerService display = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -0400138 BatteryService battery = null;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700139 VibratorService vibrator = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700140 AlarmManagerService alarm = null;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700141 MountService mountService = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700142 NetworkManagementService networkManagement = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700143 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700144 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400145 ConnectivityService connectivity = null;
repo sync55bc5f32011-06-24 14:23:07 -0700146 WifiP2pService wifiP2p = null;
repo syncaea743a2011-07-29 23:55:49 -0700147 WifiService wifi = null;
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700148 NsdService serviceDiscovery= null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 IPackageManager pm = null;
150 Context context = null;
151 WindowManagerService wm = null;
fredc0f420372012-04-12 00:02:00 -0700152 BluetoothManagerService bluetooth = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500153 DockObserver dock = null;
Mike Lockwood770126a2010-12-09 22:30:37 -0800154 UsbService usb = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400155 SerialService serial = null;
Jeff Brown2416e092012-08-21 22:12:20 -0700156 TwilightService twilight = null;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800157 UiModeManagerService uiMode = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800158 RecognitionManagerService recognition = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700159 NetworkTimeUpdateService networkTimeUpdater = null;
John Grossmanc1576732012-02-01 15:23:33 -0800160 CommonTimeManagementService commonTimeMgmtService = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700161 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700162 TelephonyRegistry telephonyRegistry = null;
Erik Gilling51e95df2013-06-26 11:06:51 -0700163 ConsumerIrService consumerIr = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164
Jeff Brownbd6e1502012-08-28 03:27:37 -0700165 // Create a handler thread just for the window manager to enjoy.
166 HandlerThread wmHandlerThread = new HandlerThread("WindowManager");
167 wmHandlerThread.start();
168 Handler wmHandler = new Handler(wmHandlerThread.getLooper());
169 wmHandler.post(new Runnable() {
170 @Override
171 public void run() {
172 //Looper.myLooper().setMessageLogging(new LogPrinter(
173 // android.util.Log.DEBUG, TAG, android.util.Log.LOG_ID_SYSTEM));
174 android.os.Process.setThreadPriority(
175 android.os.Process.THREAD_PRIORITY_DISPLAY);
176 android.os.Process.setCanSelfBackground(false);
177
178 // For debug builds, log event loop stalls to dropbox for analysis.
179 if (StrictMode.conditionallyEnableDebugLogging()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700180 Slog.i(TAG, "Enabled StrictMode logging for WM Looper");
Jeff Brownbd6e1502012-08-28 03:27:37 -0700181 }
182 }
183 });
184
Dan Morrille4d9a012013-03-28 18:10:43 -0700185 // bootstrap services
Jeff Brownbd6e1502012-08-28 03:27:37 -0700186 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700187 boolean firstBoot = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 try {
Jeff Brownf69c8122012-09-12 17:00:34 -0700189 // Wait for installd to finished starting up so that it has a chance to
190 // create critical directories such as /data/user with the appropriate
191 // permissions. We need this to complete before we initialize other services.
192 Slog.i(TAG, "Waiting for installd to be ready.");
193 installer = new Installer();
194 installer.ping();
195
Joe Onorato8a9b2202010-02-26 18:56:32 -0800196 Slog.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 power = new PowerManagerService();
198 ServiceManager.addService(Context.POWER_SERVICE, power);
199
Joe Onorato8a9b2202010-02-26 18:56:32 -0800200 Slog.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201 context = ActivityManagerService.main(factoryTest);
Dan Morrille4d9a012013-03-28 18:10:43 -0700202 } catch (RuntimeException e) {
203 Slog.e("System", "******************************************");
204 Slog.e("System", "************ Failure starting bootstrap service", e);
205 }
Jeff Brown848c2dc2012-08-19 20:18:08 -0700206
Dan Morrille4d9a012013-03-28 18:10:43 -0700207 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
208 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
209 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
210 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
211 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
212 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
213 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
214 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
215
216 try {
Jeff Brown848c2dc2012-08-19 20:18:08 -0700217 Slog.i(TAG, "Display Manager");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700218 display = new DisplayManagerService(context, wmHandler);
Jeff Brown848c2dc2012-08-19 20:18:08 -0700219 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220
Joe Onorato8a9b2202010-02-26 18:56:32 -0800221 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700222 telephonyRegistry = new TelephonyRegistry(context);
223 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224
Glenn Kasten07b04652012-04-23 15:00:43 -0700225 Slog.i(TAG, "Scheduling Policy");
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700226 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Glenn Kasten07b04652012-04-23 15:00:43 -0700227
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228 AttributeCache.init(context);
229
Jeff Brownbd6e1502012-08-28 03:27:37 -0700230 if (!display.waitForDefaultDisplay()) {
231 reportWtf("Timeout waiting for default display to be initialized.",
232 new Throwable());
233 }
234
Joe Onorato8a9b2202010-02-26 18:56:32 -0800235 Slog.i(TAG, "Package Manager");
Ben Komalo553acf02011-09-19 14:25:28 -0700236 // Only run "core" apps if we're encrypting the device.
237 String cryptState = SystemProperties.get("vold.decrypt");
Ben Komalo3573d402011-09-23 15:08:24 -0700238 if (ENCRYPTING_STATE.equals(cryptState)) {
Ben Komalo553acf02011-09-19 14:25:28 -0700239 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
Ben Komalo3573d402011-09-23 15:08:24 -0700240 onlyCore = true;
241 } else if (ENCRYPTED_STATE.equals(cryptState)) {
242 Slog.w(TAG, "Device encrypted - only parsing core apps");
243 onlyCore = true;
Ben Komalo553acf02011-09-19 14:25:28 -0700244 }
Ben Komalo3573d402011-09-23 15:08:24 -0700245
Jeff Brownf69c8122012-09-12 17:00:34 -0700246 pm = PackageManagerService.main(context, installer,
Dianne Hackbornd2509fd2011-09-12 12:29:43 -0700247 factoryTest != SystemServer.FACTORY_TEST_OFF,
Ben Komalo553acf02011-09-19 14:25:28 -0700248 onlyCore);
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700249 try {
250 firstBoot = pm.isFirstBoot();
251 } catch (RemoteException e) {
252 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253
254 ActivityManagerService.setSystemProcess();
Svetoslavb3038ec2013-02-13 14:39:30 -0800255
Nick Kralevich79619dd2013-03-04 13:05:32 -0800256 Slog.i(TAG, "Entropy Mixer");
257 ServiceManager.addService("entropy", new EntropyMixer(context));
258
Amith Yamasani258848d2012-08-10 17:06:33 -0700259 Slog.i(TAG, "User Service");
260 ServiceManager.addService(Context.USER_SERVICE,
Dianne Hackborn4428e172012-08-24 17:43:05 -0700261 UserManagerService.getInstance());
Amith Yamasani258848d2012-08-10 17:06:33 -0700262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 mContentResolver = context.getContentResolver();
264
Fred Quintanae91ebe22009-09-29 20:44:30 -0700265 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700266 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700267 // TODO: seems like this should be disable-able, but req'd by ContentService
Joe Onorato8a9b2202010-02-26 18:56:32 -0800268 Slog.i(TAG, "Account Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700269 accountManager = new AccountManagerService(context);
270 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
Fred Quintana60307342009-03-24 22:48:12 -0700271 } catch (Throwable e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800272 Slog.e(TAG, "Failure starting Account Manager", e);
Fred Quintana60307342009-03-24 22:48:12 -0700273 }
274
Joe Onorato8a9b2202010-02-26 18:56:32 -0800275 Slog.i(TAG, "Content Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700276 contentService = ContentService.main(context,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
278
Joe Onorato8a9b2202010-02-26 18:56:32 -0800279 Slog.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 ActivityManagerService.installSystemProviders();
281
Joe Onorato8a9b2202010-02-26 18:56:32 -0800282 Slog.i(TAG, "Lights Service");
Mike Lockwood3a322132009-11-24 00:30:52 -0500283 lights = new LightsService(context);
284
Joe Onoratode1b3592010-10-25 20:36:47 -0700285 Slog.i(TAG, "Battery Service");
286 battery = new BatteryService(context, lights);
287 ServiceManager.addService("battery", battery);
288
Joe Onorato8a9b2202010-02-26 18:56:32 -0800289 Slog.i(TAG, "Vibrator Service");
Jeff Brown7f6c2312012-04-13 20:38:38 -0700290 vibrator = new VibratorService(context);
291 ServiceManager.addService("vibrator", vibrator);
The Android Open Source Project10592532009-03-18 17:39:46 -0700292
Erik Gilling51e95df2013-06-26 11:06:51 -0700293 Slog.i(TAG, "Consumer IR Service");
294 consumerIr = new ConsumerIrService(context);
295 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
296
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500298 // lights service, content providers and the battery service.
Jeff Brown96307042012-07-27 15:51:34 -0700299 power.init(context, lights, ActivityManagerService.self(), battery,
Dianne Hackborn713df152013-05-17 11:27:57 -0700300 BatteryStatsService.getService(),
301 ActivityManagerService.self().getAppOpsService(), display);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302
Joe Onorato8a9b2202010-02-26 18:56:32 -0800303 Slog.i(TAG, "Alarm Manager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700304 alarm = new AlarmManagerService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
306
Joe Onorato8a9b2202010-02-26 18:56:32 -0800307 Slog.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 Watchdog.getInstance().init(context, battery, power, alarm,
309 ActivityManagerService.self());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700310 Watchdog.getInstance().addThread(wmHandler, "WindowManager thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311
Jeff Browna9d131c2012-09-20 16:48:17 -0700312 Slog.i(TAG, "Input Manager");
313 inputManager = new InputManagerService(context, wmHandler);
314
Joe Onorato8a9b2202010-02-26 18:56:32 -0800315 Slog.i(TAG, "Window Manager");
Jeff Browna9d131c2012-09-20 16:48:17 -0700316 wm = WindowManagerService.main(context, power, display, inputManager,
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700317 wmHandler, factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700318 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700320 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700322 ActivityManagerService.self().setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700323
324 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
325 inputManager.start();
326
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700327 display.setWindowManager(wm);
Jeff Brownd728bf52012-09-08 18:05:28 -0700328 display.setInputManager(inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329
330 // Skip Bluetooth if we have an emulator kernel
331 // TODO: Use a more reliable check to see if this product should
332 // support Bluetooth - see bug 988521
333 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100334 Slog.i(TAG, "No Bluetooh Service (emulator)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100336 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700337 } else if (!context.getPackageManager().hasSystemFeature
338 (PackageManager.FEATURE_BLUETOOTH)) {
339 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700340 } else if (disableBluetooth) {
341 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 } else {
fredc0f420372012-04-12 00:02:00 -0700343 Slog.i(TAG, "Bluetooth Manager Service");
344 bluetooth = new BluetoothManagerService(context);
345 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700348 Slog.e("System", "******************************************");
349 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 }
351
Dianne Hackbornd6847842010-01-12 18:14:19 -0800352 DevicePolicyManagerService devicePolicy = null;
Joe Onorato089de882010-04-12 08:18:45 -0700353 StatusBarManagerService statusBar = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700355 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700356 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700357 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500358 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800359 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900360 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700361 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500362 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700363 AssetAtlasService atlas = null;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700364 PrintManagerService printManager = null;
Jeff Brown69b07162013-11-07 00:30:16 -0800365 MediaRouterService mediaRouter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366
Dianne Hackborn661cd522011-08-22 00:26:20 -0700367 // Bring up services needed for UI.
368 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700369 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
370 if (true) {
371 try {
372 Slog.i(TAG, "Input Method Service");
373 imm = new InputMethodManagerService(context, wm);
374 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
375 } catch (Throwable e) {
376 reportWtf("starting Input Manager Service", e);
377 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700378
Dan Morrille4d9a012013-03-28 18:10:43 -0700379 try {
380 Slog.i(TAG, "Accessibility Manager");
381 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
382 new AccessibilityManagerService(context));
383 } catch (Throwable e) {
384 reportWtf("starting Accessibility Manager", e);
385 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700386 }
387 }
388
389 try {
390 wm.displayReady();
391 } catch (Throwable e) {
392 reportWtf("making display ready", e);
393 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700394
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700395 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700396 pm.performBootDexOpt();
397 } catch (Throwable e) {
398 reportWtf("performing boot dexopt", e);
399 }
400
401 try {
402 ActivityManagerNative.getDefault().showBootMessage(
403 context.getResources().getText(
404 com.android.internal.R.string.android_upgrading_starting_apps),
405 false);
406 } catch (RemoteException e) {
407 }
408
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700410 if (!disableStorage &&
411 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700412 try {
413 /*
414 * NotificationManagerService is dependant on MountService,
415 * (for media / usb notifications) so we must start MountService first.
416 */
417 Slog.i(TAG, "Mount Service");
418 mountService = new MountService(context);
419 ServiceManager.addService("mount", mountService);
420 } catch (Throwable e) {
421 reportWtf("starting Mount Service", e);
422 }
423 }
424
Dan Morrille4d9a012013-03-28 18:10:43 -0700425 if (!disableNonCoreServices) {
426 try {
427 Slog.i(TAG, "LockSettingsService");
428 lockSettings = new LockSettingsService(context);
429 ServiceManager.addService("lock_settings", lockSettings);
430 } catch (Throwable e) {
431 reportWtf("starting LockSettingsService service", e);
432 }
433
434 try {
435 Slog.i(TAG, "Device Policy");
436 devicePolicy = new DevicePolicyManagerService(context);
437 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
438 } catch (Throwable e) {
439 reportWtf("starting DevicePolicyService", e);
440 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700441 }
442
Dan Morrille4d9a012013-03-28 18:10:43 -0700443 if (!disableSystemUI) {
444 try {
445 Slog.i(TAG, "Status Bar");
446 statusBar = new StatusBarManagerService(context, wm);
447 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
448 } catch (Throwable e) {
449 reportWtf("starting StatusBarManagerService", e);
450 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800451 }
452
Dan Morrille4d9a012013-03-28 18:10:43 -0700453 if (!disableNonCoreServices) {
454 try {
455 Slog.i(TAG, "Clipboard Service");
456 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
457 new ClipboardService(context));
458 } catch (Throwable e) {
459 reportWtf("starting Clipboard Service", e);
460 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 }
462
Dan Morrille4d9a012013-03-28 18:10:43 -0700463 if (!disableNetwork) {
464 try {
465 Slog.i(TAG, "NetworkManagement Service");
466 networkManagement = NetworkManagementService.create(context);
467 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
468 } catch (Throwable e) {
469 reportWtf("starting NetworkManagement Service", e);
470 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800471 }
472
Dan Morrille4d9a012013-03-28 18:10:43 -0700473 if (!disableNonCoreServices) {
474 try {
475 Slog.i(TAG, "Text Service Manager Service");
476 tsms = new TextServicesManagerService(context);
477 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
478 } catch (Throwable e) {
479 reportWtf("starting Text Service Manager Service", e);
480 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800481 }
482
Dan Morrille4d9a012013-03-28 18:10:43 -0700483 if (!disableNetwork) {
484 try {
485 Slog.i(TAG, "NetworkStats Service");
486 networkStats = new NetworkStatsService(context, networkManagement, alarm);
487 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
488 } catch (Throwable e) {
489 reportWtf("starting NetworkStats Service", e);
490 }
491
492 try {
493 Slog.i(TAG, "NetworkPolicy Service");
494 networkPolicy = new NetworkPolicyManagerService(
495 context, ActivityManagerService.self(), power,
496 networkStats, networkManagement);
497 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
498 } catch (Throwable e) {
499 reportWtf("starting NetworkPolicy Service", e);
500 }
501
502 try {
503 Slog.i(TAG, "Wi-Fi P2pService");
504 wifiP2p = new WifiP2pService(context);
505 ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p);
506 } catch (Throwable e) {
507 reportWtf("starting Wi-Fi P2pService", e);
508 }
509
510 try {
511 Slog.i(TAG, "Wi-Fi Service");
512 wifi = new WifiService(context);
513 ServiceManager.addService(Context.WIFI_SERVICE, wifi);
514 } catch (Throwable e) {
515 reportWtf("starting Wi-Fi Service", e);
516 }
517
518 try {
519 Slog.i(TAG, "Connectivity Service");
520 connectivity = new ConnectivityService(
521 context, networkManagement, networkStats, networkPolicy);
522 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
523 networkStats.bindConnectivityManager(connectivity);
524 networkPolicy.bindConnectivityManager(connectivity);
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700525
Dan Morrille4d9a012013-03-28 18:10:43 -0700526 wifiP2p.connectivityServiceReady();
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700527 wifi.checkAndStartWifi();
Dan Morrille4d9a012013-03-28 18:10:43 -0700528 } catch (Throwable e) {
529 reportWtf("starting Connectivity Service", e);
530 }
531
532 try {
533 Slog.i(TAG, "Network Service Discovery Service");
534 serviceDiscovery = NsdService.create(context);
535 ServiceManager.addService(
536 Context.NSD_SERVICE, serviceDiscovery);
537 } catch (Throwable e) {
538 reportWtf("starting Service Discovery Service", e);
539 }
satok988323c2011-06-22 16:38:13 +0900540 }
541
Dan Morrille4d9a012013-03-28 18:10:43 -0700542 if (!disableNonCoreServices) {
543 try {
544 Slog.i(TAG, "UpdateLock Service");
545 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
546 new UpdateLockService(context));
547 } catch (Throwable e) {
548 reportWtf("starting UpdateLockService", e);
549 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800550 }
551
Kenny Root51a573c2012-05-17 13:30:28 -0700552 /*
553 * MountService has a few dependencies: Notification Manager and
554 * AppWidget Provider. Make sure MountService is completely started
555 * first before continuing.
556 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700557 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700558 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800559 }
560
561 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700562 if (accountManager != null)
563 accountManager.systemReady();
564 } catch (Throwable e) {
565 reportWtf("making Account Manager Service ready", e);
566 }
567
568 try {
569 if (contentService != null)
570 contentService.systemReady();
571 } catch (Throwable e) {
572 reportWtf("making Content Service ready", e);
573 }
574
575 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800576 Slog.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500577 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700578 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700579 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700581 reportWtf("starting Notification Manager", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 }
583
584 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800585 Slog.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800586 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
587 new DeviceStorageMonitorService(context));
588 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700589 reportWtf("starting DeviceStorageMonitor service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800590 }
591
Dan Morrille4d9a012013-03-28 18:10:43 -0700592 if (!disableLocation) {
593 try {
594 Slog.i(TAG, "Location Manager");
595 location = new LocationManagerService(context);
596 ServiceManager.addService(Context.LOCATION_SERVICE, location);
597 } catch (Throwable e) {
598 reportWtf("starting Location Manager", e);
599 }
600
601 try {
602 Slog.i(TAG, "Country Detector");
603 countryDetector = new CountryDetectorService(context);
604 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
605 } catch (Throwable e) {
606 reportWtf("starting Country Detector", e);
607 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608 }
609
Dan Morrille4d9a012013-03-28 18:10:43 -0700610 if (!disableNonCoreServices) {
611 try {
612 Slog.i(TAG, "Search Service");
613 ServiceManager.addService(Context.SEARCH_SERVICE,
614 new SearchManagerService(context));
615 } catch (Throwable e) {
616 reportWtf("starting Search Service", e);
617 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 }
619
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800621 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700622 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800623 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700624 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700625 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700626 }
627
Dan Morrille4d9a012013-03-28 18:10:43 -0700628 if (!disableNonCoreServices && context.getResources().getBoolean(
629 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400630 try {
631 Slog.i(TAG, "Wallpaper Service");
632 if (!headless) {
633 wallpaper = new WallpaperManagerService(context);
634 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
635 }
636 } catch (Throwable e) {
637 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700638 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800639 }
640
Dan Morrille4d9a012013-03-28 18:10:43 -0700641 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700642 try {
643 Slog.i(TAG, "Audio Service");
644 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
645 } catch (Throwable e) {
646 reportWtf("starting Audio Service", e);
647 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 }
649
Dan Morrille4d9a012013-03-28 18:10:43 -0700650 if (!disableNonCoreServices) {
651 try {
652 Slog.i(TAG, "Dock Observer");
653 // Listen for dock station changes
654 dock = new DockObserver(context);
655 } catch (Throwable e) {
656 reportWtf("starting DockObserver", e);
657 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500658 }
659
Dan Morrille4d9a012013-03-28 18:10:43 -0700660 if (!disableMedia) {
661 try {
662 Slog.i(TAG, "Wired Accessory Manager");
663 // Listen for wired headset changes
664 inputManager.setWiredAccessoryCallbacks(
665 new WiredAccessoryManager(context, inputManager));
666 } catch (Throwable e) {
667 reportWtf("starting WiredAccessoryManager", e);
668 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500669 }
670
Dan Morrille4d9a012013-03-28 18:10:43 -0700671 if (!disableNonCoreServices) {
672 try {
673 Slog.i(TAG, "USB Service");
674 // Manage USB host and device support
675 usb = new UsbService(context);
676 ServiceManager.addService(Context.USB_SERVICE, usb);
677 } catch (Throwable e) {
678 reportWtf("starting UsbService", e);
679 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400680
Dan Morrille4d9a012013-03-28 18:10:43 -0700681 try {
682 Slog.i(TAG, "Serial Service");
683 // Serial port support
684 serial = new SerialService(context);
685 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
686 } catch (Throwable e) {
687 Slog.e(TAG, "Failure starting SerialService", e);
688 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400689 }
690
691 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700692 Slog.i(TAG, "Twilight Service");
693 twilight = new TwilightService(context);
694 } catch (Throwable e) {
695 reportWtf("starting TwilightService", e);
696 }
697
698 try {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800699 Slog.i(TAG, "UI Mode Manager Service");
Mike Lockwood57c798a2010-06-23 17:36:36 -0400700 // Listen for UI mode changes
Jeff Brown2416e092012-08-21 22:12:20 -0700701 uiMode = new UiModeManagerService(context, twilight);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800702 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700703 reportWtf("starting UiModeManagerService", e);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800704 }
705
Dan Morrille4d9a012013-03-28 18:10:43 -0700706 if (!disableNonCoreServices) {
707 try {
708 Slog.i(TAG, "Backup Service");
709 ServiceManager.addService(Context.BACKUP_SERVICE,
710 new BackupManagerService(context));
711 } catch (Throwable e) {
712 Slog.e(TAG, "Failure starting Backup Service", e);
713 }
Christopher Tate487529a2009-04-29 14:03:25 -0700714
Dan Morrille4d9a012013-03-28 18:10:43 -0700715 try {
716 Slog.i(TAG, "AppWidget Service");
717 appWidget = new AppWidgetService(context);
718 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
719 } catch (Throwable e) {
720 reportWtf("starting AppWidget Service", e);
721 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722
Dan Morrille4d9a012013-03-28 18:10:43 -0700723 try {
724 Slog.i(TAG, "Recognition Service");
725 recognition = new RecognitionManagerService(context);
726 } catch (Throwable e) {
727 reportWtf("starting Recognition Service", e);
728 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800729 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700730
Nick Pelly038cabe2010-09-23 16:12:11 -0700731 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700732 Slog.i(TAG, "DiskStats Service");
733 ServiceManager.addService("diskstats", new DiskStatsService(context));
734 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700735 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700736 }
Sen Hubde75702010-05-28 01:54:03 -0700737
738 try {
739 // need to add this service even if SamplingProfilerIntegration.isEnabled()
740 // is false, because it is this service that detects system property change and
741 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
742 // there is little overhead for running this service.
743 Slog.i(TAG, "SamplingProfiler Service");
744 ServiceManager.addService("samplingprofiler",
745 new SamplingProfilerService(context));
746 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700747 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700748 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800749
Dan Morrille4d9a012013-03-28 18:10:43 -0700750 if (!disableNetwork) {
751 try {
752 Slog.i(TAG, "NetworkTimeUpdateService");
753 networkTimeUpdater = new NetworkTimeUpdateService(context);
754 } catch (Throwable e) {
755 reportWtf("starting NetworkTimeUpdate service", e);
756 }
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700757 }
John Grossmanc1576732012-02-01 15:23:33 -0800758
Dan Morrille4d9a012013-03-28 18:10:43 -0700759 if (!disableMedia) {
760 try {
761 Slog.i(TAG, "CommonTimeManagementService");
762 commonTimeMgmtService = new CommonTimeManagementService(context);
763 ServiceManager.addService("commontime_management", commonTimeMgmtService);
764 } catch (Throwable e) {
765 reportWtf("starting CommonTimeManagementService service", e);
766 }
John Grossmanc1576732012-02-01 15:23:33 -0800767 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700768
Dan Morrille4d9a012013-03-28 18:10:43 -0700769 if (!disableNetwork) {
770 try {
771 Slog.i(TAG, "CertBlacklister");
772 CertBlacklister blacklister = new CertBlacklister(context);
773 } catch (Throwable e) {
774 reportWtf("starting CertBlacklister", e);
775 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700776 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800777
Dan Morrille4d9a012013-03-28 18:10:43 -0700778 if (!disableNonCoreServices &&
779 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500780 try {
781 Slog.i(TAG, "Dreams Service");
782 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown62c82e42012-09-26 01:30:41 -0700783 dreamy = new DreamManagerService(context, wmHandler);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700784 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500785 } catch (Throwable e) {
786 reportWtf("starting DreamManagerService", e);
787 }
788 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800789
Romain Guy3b748a42013-04-17 18:54:38 -0700790 if (!disableNonCoreServices) {
791 try {
792 Slog.i(TAG, "Assets Atlas Service");
793 atlas = new AssetAtlasService(context);
794 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
795 } catch (Throwable e) {
796 reportWtf("starting AssetAtlasService", e);
797 }
798 }
799
Svetoslavb3038ec2013-02-13 14:39:30 -0800800 try {
801 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700802 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800803 } catch (Throwable e) {
804 reportWtf("starting IdleMaintenanceService", e);
805 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700806
807 try {
808 Slog.i(TAG, "Print Service");
Svetoslav Ganova0027152013-06-25 14:59:53 -0700809 printManager = new PrintManagerService(context);
810 ServiceManager.addService(Context.PRINT_SERVICE, printManager);
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700811 } catch (Throwable e) {
812 reportWtf("starting Print Service", e);
813 }
Jeff Brown69b07162013-11-07 00:30:16 -0800814
815 if (!disableNonCoreServices) {
816 try {
817 Slog.i(TAG, "Media Router Service");
818 mediaRouter = new MediaRouterService(context);
819 ServiceManager.addService(Context.MEDIA_ROUTER_SERVICE, mediaRouter);
820 } catch (Throwable e) {
821 reportWtf("starting MediaRouterService", e);
822 }
823 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824 }
825
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700826 // Before things start rolling, be sure we have decided whether
827 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700828 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700829 if (safeMode) {
Jeff Brownb09abc12011-01-13 21:08:27 -0800830 ActivityManagerService.self().enterSafeMode();
831 // Post the safe mode state in the Zygote class
832 Zygote.systemInSafeMode = true;
833 // Disable the JIT for the system_server process
834 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800835 } else {
836 // Enable the JIT for the system_server process
837 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700838 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800839
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700840 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700841
Jeff Brown7f6c2312012-04-13 20:38:38 -0700842 try {
843 vibrator.systemReady();
844 } catch (Throwable e) {
845 reportWtf("making Vibrator Service ready", e);
846 }
847
Dan Morrille4d9a012013-03-28 18:10:43 -0700848 if (lockSettings != null) {
849 try {
850 lockSettings.systemReady();
851 } catch (Throwable e) {
852 reportWtf("making Lock Settings Service ready", e);
853 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300854 }
855
Dianne Hackbornd6847842010-01-12 18:14:19 -0800856 if (devicePolicy != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700857 try {
858 devicePolicy.systemReady();
859 } catch (Throwable e) {
860 reportWtf("making Device Policy Service ready", e);
861 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800862 }
863
Joe Onorato30275482009-07-08 17:09:14 -0700864 if (notification != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700865 try {
866 notification.systemReady();
867 } catch (Throwable e) {
868 reportWtf("making Notification Service ready", e);
869 }
Joe Onorato30275482009-07-08 17:09:14 -0700870 }
871
Dianne Hackborn661cd522011-08-22 00:26:20 -0700872 try {
873 wm.systemReady();
874 } catch (Throwable e) {
875 reportWtf("making Window Manager Service ready", e);
876 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400877
Jeff Brownb09abc12011-01-13 21:08:27 -0800878 if (safeMode) {
879 ActivityManagerService.self().showSafeModeOverlay();
880 }
881
Joe Onoratodc565f42010-10-04 15:27:22 -0400882 // Update the configuration for this context by hand, because we're going
883 // to start using it before the config change done in wm.systemReady() will
884 // propagate to it.
885 Configuration config = wm.computeNewConfiguration();
886 DisplayMetrics metrics = new DisplayMetrics();
887 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
888 w.getDefaultDisplay().getMetrics(metrics);
889 context.getResources().updateConfiguration(config, metrics);
890
Jeff Brownaa202a62012-08-21 22:14:26 -0700891 try {
Jeff Brown62c82e42012-09-26 01:30:41 -0700892 power.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700893 } catch (Throwable e) {
894 reportWtf("making Power Manager Service ready", e);
895 }
896
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897 try {
898 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700899 } catch (Throwable e) {
900 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800902
Jeff Brownbd6e1502012-08-28 03:27:37 -0700903 try {
904 display.systemReady(safeMode, onlyCore);
905 } catch (Throwable e) {
906 reportWtf("making Display Manager Service ready", e);
907 }
908
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700909 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400910 final Context contextF = context;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700911 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700912 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700913 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700914 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700915 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700916 final ConnectivityService connectivityF = connectivity;
917 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800918 final UsbService usbF = usb;
Jeff Brown2416e092012-08-21 22:12:20 -0700919 final TwilightService twilightF = twilight;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800920 final UiModeManagerService uiModeF = uiMode;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700921 final AppWidgetService appWidgetF = appWidget;
922 final WallpaperManagerService wallpaperF = wallpaper;
923 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800924 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500925 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800926 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700927 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800928 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900929 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700930 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500931 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -0700932 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700933 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -0700934 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700935 final PrintManagerService printManagerF = printManager;
Jeff Brown69b07162013-11-07 00:30:16 -0800936 final MediaRouterService mediaRouterF = mediaRouter;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800937
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700938 // We now tell the activity manager it is okay to run third party
939 // code. It will call back into us once it has gotten to the state
940 // where third party code can really run (but before it has actually
941 // started launching the initial applications), for us to complete our
942 // initialization.
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700943 ActivityManagerService.self().systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700944 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800945 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800946
Christopher Tate58d380d2013-03-19 13:10:03 -0700947 try {
948 ActivityManagerService.self().startObservingNativeCrashes();
949 } catch (Throwable e) {
950 reportWtf("observing native crashes", e);
951 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800952 if (!headless) {
953 startSystemUi(contextF);
954 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700955 try {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700956 if (mountServiceF != null) mountServiceF.systemReady();
957 } catch (Throwable e) {
958 reportWtf("making Mount Service ready", e);
959 }
960 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700961 if (batteryF != null) batteryF.systemReady();
962 } catch (Throwable e) {
963 reportWtf("making Battery Service ready", e);
964 }
965 try {
966 if (networkManagementF != null) networkManagementF.systemReady();
967 } catch (Throwable e) {
968 reportWtf("making Network Managment Service ready", e);
969 }
970 try {
971 if (networkStatsF != null) networkStatsF.systemReady();
972 } catch (Throwable e) {
973 reportWtf("making Network Stats Service ready", e);
974 }
975 try {
976 if (networkPolicyF != null) networkPolicyF.systemReady();
977 } catch (Throwable e) {
978 reportWtf("making Network Policy Service ready", e);
979 }
980 try {
981 if (connectivityF != null) connectivityF.systemReady();
982 } catch (Throwable e) {
983 reportWtf("making Connectivity Service ready", e);
984 }
985 try {
986 if (dockF != null) dockF.systemReady();
987 } catch (Throwable e) {
988 reportWtf("making Dock Service ready", e);
989 }
990 try {
991 if (usbF != null) usbF.systemReady();
992 } catch (Throwable e) {
993 reportWtf("making USB Service ready", e);
994 }
995 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700996 if (twilightF != null) twilightF.systemReady();
997 } catch (Throwable e) {
998 reportWtf("makin Twilight Service ready", e);
999 }
1000 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001001 if (uiModeF != null) uiModeF.systemReady();
1002 } catch (Throwable e) {
1003 reportWtf("making UI Mode Service ready", e);
1004 }
1005 try {
1006 if (recognitionF != null) recognitionF.systemReady();
1007 } catch (Throwable e) {
1008 reportWtf("making Recognition Service ready", e);
1009 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001010 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001011
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001012 // It is now okay to let the various system services start their
1013 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001014
Dianne Hackborn661cd522011-08-22 00:26:20 -07001015 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001016 if (appWidgetF != null) appWidgetF.systemRunning(safeMode);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001017 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001018 reportWtf("Notifying AppWidgetService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001019 }
1020 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001021 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001022 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001023 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001024 }
1025 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001026 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001027 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001028 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001029 }
1030 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001031 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001032 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001033 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001034 }
1035 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001036 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001037 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001038 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001039 }
1040 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001041 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001042 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001043 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001044 }
1045 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001046 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001047 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001048 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001049 }
1050 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001051 if (textServiceManagerServiceF != null)
1052 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001053 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001054 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001055 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001056 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001057 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001058 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001059 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001060 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001061 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001062 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001063 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001064 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001065 }
1066 try {
Matthew Xie96313142012-06-29 16:57:31 -07001067 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001068 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001069 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001070 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001071 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001072
Wink Savillea12a7b32012-09-20 10:09:45 -07001073 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001074 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001075 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001076 reportWtf("Notifying TelephonyRegistry running", e);
1077 }
1078
1079 try {
1080 if (printManagerF != null) printManagerF.systemRuning();
1081 } catch (Throwable e) {
1082 reportWtf("Notifying PrintManagerService running", e);
Wink Savillea12a7b32012-09-20 10:09:45 -07001083 }
Jeff Brown69b07162013-11-07 00:30:16 -08001084
1085 try {
1086 if (mediaRouterF != null) mediaRouterF.systemRunning();
1087 } catch (Throwable e) {
1088 reportWtf("Notifying MediaRouterService running", e);
1089 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001090 }
1091 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001092
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001093 // For debug builds, log event loop stalls to dropbox for analysis.
Brad Fitzpatrick50d66f92010-09-13 21:29:05 -07001094 if (StrictMode.conditionallyEnableDebugLogging()) {
1095 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001096 }
1097
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098 Looper.loop();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001099 Slog.d(TAG, "System ServerThread is exiting!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001101
1102 static final void startSystemUi(Context context) {
1103 Intent intent = new Intent();
1104 intent.setComponent(new ComponentName("com.android.systemui",
1105 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001106 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001107 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001108 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001109}
1110
Jeff Hamilton35eef702010-06-09 15:45:18 -05001111public class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112 private static final String TAG = "SystemServer";
1113
1114 public static final int FACTORY_TEST_OFF = 0;
1115 public static final int FACTORY_TEST_LOW_LEVEL = 1;
1116 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001117
Bob Leee5408332009-09-04 18:31:17 -07001118 static Timer timer;
1119 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
1120
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001121 // The earliest supported time. We pick one day into 1970, to
1122 // give any timezone code room without going into negative time.
1123 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
1124
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001125 /**
Jeff Brownef691172013-07-15 13:22:04 -07001126 * Called to initialize native system services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001127 */
Jeff Brownef691172013-07-15 13:22:04 -07001128 private static native void nativeInit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129
1130 public static void main(String[] args) {
Brian Carlstrom5637ffc2013-11-01 14:51:58 -07001131
1132 /*
1133 * In case the runtime switched since last boot (such as when
1134 * the old runtime was removed in an OTA), set the system
1135 * property so that it is in sync. We can't do this in
1136 * libnativehelper's JniInvocation::Init code where we already
1137 * had to fallback to a different runtime because it is
1138 * running as root and we need to be the system user to set
1139 * the property. http://b/11463182
1140 */
1141 SystemProperties.set("persist.sys.dalvik.vm.lib",
1142 VMRuntime.getRuntime().vmLibrary());
1143
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001144 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001145 // If a device's clock is before 1970 (before 0), a lot of
1146 // APIs crash dealing with negative numbers, notably
1147 // java.io.File#setLastModified, so instead we fake it and
1148 // hope that time from cell towers or NTP fixes it
1149 // shortly.
1150 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001151 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001152 }
1153
Bob Leee5408332009-09-04 18:31:17 -07001154 if (SamplingProfilerIntegration.isEnabled()) {
1155 SamplingProfilerIntegration.start();
1156 timer = new Timer();
1157 timer.schedule(new TimerTask() {
1158 @Override
1159 public void run() {
Sen Hubde75702010-05-28 01:54:03 -07001160 SamplingProfilerIntegration.writeSnapshot("system_server", null);
Bob Leee5408332009-09-04 18:31:17 -07001161 }
1162 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
1163 }
1164
Dianne Hackbornac1471a2011-02-03 13:46:06 -08001165 // Mmmmmm... more memory!
1166 dalvik.system.VMRuntime.getRuntime().clearGrowthLimit();
1167
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001168 // The system server has to run all of the time, so it needs to be
1169 // as efficient as possible with its memory usage.
1170 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Sen Hubde75702010-05-28 01:54:03 -07001171
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001172 Environment.setUserRequired(true);
1173
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001174 System.loadLibrary("android_servers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001175
Joe Onorato8a9b2202010-02-26 18:56:32 -08001176 Slog.i(TAG, "Entered the Android system server!");
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001177
Jeff Brownef691172013-07-15 13:22:04 -07001178 // Initialize native services.
1179 nativeInit();
1180
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001181 // This used to be its own separate thread, but now it is
1182 // just the loop we run on the main thread.
1183 ServerThread thr = new ServerThread();
1184 thr.initAndLoop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 }
1186}