blob: df2b9e932fbc79ec0b03499b8cdaf1aa5b33adbf [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
markchienae8aa642019-12-16 20:15:20 +080019import static android.net.NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK;
Felipe Lemee348dc32018-11-05 12:35:29 -080020import static android.os.IServiceManager.DUMP_FLAG_PRIORITY_CRITICAL;
21import static android.os.IServiceManager.DUMP_FLAG_PRIORITY_HIGH;
22import static android.os.IServiceManager.DUMP_FLAG_PRIORITY_NORMAL;
23import static android.os.IServiceManager.DUMP_FLAG_PROTO;
24import static android.view.Display.DEFAULT_DISPLAY;
25
Felipe Leme3aad1be2019-05-31 11:43:12 -070026import static com.android.server.utils.TimingsTraceAndSlog.SYSTEM_SERVER_TIMING_TAG;
27
Felipe Leme658c8e42018-11-30 12:49:45 -080028import android.annotation.NonNull;
Felipe Leme83e8f242019-08-14 16:57:56 +000029import android.annotation.StringRes;
Jeff Brown6f357d32014-01-15 20:40:55 -080030import android.app.ActivityThread;
Andrei Oneaf965d152019-10-30 18:08:24 +000031import android.app.AppCompatCallbacks;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080032import android.app.INotificationManager;
Adam Lesinski0debc9a2014-07-16 19:09:13 -070033import android.app.usage.UsageStatsManagerInternal;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.content.Context;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040036import android.content.Intent;
Jeff Sharkeyb0613dc2018-02-27 14:38:04 -070037import android.content.pm.PackageItemInfo;
Matthew Xie1dd01eb32013-04-26 12:37:54 -070038import android.content.pm.PackageManager;
Winson Chungf2b41772019-11-06 15:00:48 -080039import android.content.pm.PackageManagerInternal;
Joe Onoratodc565f42010-10-04 15:27:22 -040040import android.content.res.Configuration;
Alan Viverettee54d2452015-05-06 10:41:43 -070041import android.content.res.Resources.Theme;
Fyodor Kupolov7fcd6592017-12-15 11:56:36 -080042import android.database.sqlite.SQLiteCompatibilityWalFlags;
Makoto Onuki50e00c82018-08-07 15:57:13 -070043import android.database.sqlite.SQLiteGlobal;
Winson72dbe7e2019-04-29 14:55:30 -070044import android.hardware.display.DisplayManagerInternal;
Roshan Pius7e6f5f52019-06-27 14:14:40 -070045import android.net.ConnectivityModuleConnector;
markchienae8aa642019-12-16 20:15:20 +080046import android.net.ITetheringConnector;
Remi NGUYEN VAN310da6f2019-02-14 18:04:20 +090047import android.net.NetworkStackClient;
Jeff Sharkeyd136e512016-03-09 22:30:56 -070048import android.os.BaseBundle;
Jeff Sharkey0a17db12016-11-04 11:23:46 -060049import android.os.Binder;
Jeff Sharkey55687722014-04-09 18:07:19 -070050import android.os.Build;
David Sehr1a885392019-11-27 16:24:06 -080051import android.os.Debug;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070052import android.os.Environment;
Jeff Brown6f357d32014-01-15 20:40:55 -080053import android.os.FactoryTest;
Tao Bao4fd6c262016-01-19 14:22:24 -080054import android.os.FileUtils;
Joe Onorato1754d742016-11-21 17:51:35 -080055import android.os.IIncidentManager;
Jeff Hamilton35eef702010-06-09 15:45:18 -050056import android.os.Looper;
Alison Cichowlasf0afd8c2017-07-31 11:24:34 -040057import android.os.Message;
Fyodor Kupolova81b8c02017-11-13 15:51:03 -080058import android.os.Parcel;
Tao Bao4fd6c262016-01-19 14:22:24 -080059import android.os.PowerManager;
Narayan Kamath97780462017-02-06 20:24:08 +000060import android.os.Process;
Jeff Hamilton35eef702010-06-09 15:45:18 -050061import android.os.ServiceManager;
Brad Fitzpatrickc74a1b442010-09-10 16:03:29 -070062import android.os.StrictMode;
Jeff Hamilton35eef702010-06-09 15:45:18 -050063import android.os.SystemClock;
64import android.os.SystemProperties;
Amith Yamasanicd757062012-10-19 18:23:52 -070065import android.os.UserHandle;
Sudheer Shanka2250d562016-11-07 15:41:02 -080066import android.os.storage.IStorageManager;
Felipe Leme70bcf382019-01-24 14:55:03 -080067import android.provider.DeviceConfig;
Felipe Leme658c8e42018-11-30 12:49:45 -080068import android.provider.Settings;
Inseob Kimc1246e62018-11-08 13:13:54 +090069import android.sysprop.VoldProperties;
Felipe Leme658c8e42018-11-30 12:49:45 -080070import android.text.TextUtils;
Joe Onoratodc565f42010-10-04 15:27:22 -040071import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072import android.util.EventLog;
Joe Onorato8a9b2202010-02-26 18:56:32 -080073import android.util.Slog;
Keun young Park744f97f2020-01-14 13:53:45 -080074import android.util.StatsLog;
Brad Fitzpatrick5fdc0c72010-10-12 13:12:18 -070075import android.view.WindowManager;
Felipe Leme14ef4612019-02-07 12:24:38 -080076import android.view.contentcapture.ContentCaptureManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077
Dan Morrille4d9a012013-03-28 18:10:43 -070078import com.android.internal.R;
Geoffrey Pitschaf759c52017-02-15 09:35:38 -050079import com.android.internal.notification.SystemNotificationChannels;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070080import com.android.internal.os.BinderInternal;
Keun-young Parkd80e8942017-01-27 11:30:19 -080081import com.android.internal.util.ConcurrentUtils;
Tony Makb0d22622018-01-18 12:49:49 +000082import com.android.internal.util.EmergencyAffordanceManager;
Jeff Sharkeyd136e512016-03-09 22:30:56 -070083import com.android.internal.widget.ILockSettings;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070084import com.android.server.am.ActivityManagerService;
Makoto Onukidf7e4812018-09-24 14:31:25 -070085import com.android.server.appbinding.AppBindingService;
Alex Salob81472f2018-12-12 14:44:28 -080086import com.android.server.attention.AttentionManagerService;
John Spurlock61560172015-02-06 19:46:04 -050087import com.android.server.audio.AudioService;
Ilya Matyukhine4675b32019-11-07 16:07:19 -080088import com.android.server.biometrics.AuthService;
Kevin Chyn352adfe2018-09-20 22:28:50 -070089import com.android.server.biometrics.BiometricService;
Felipe Lemee348dc32018-11-05 12:35:29 -080090import com.android.server.biometrics.face.FaceService;
91import com.android.server.biometrics.fingerprint.FingerprintService;
Kevin Chyn51676d22018-11-05 18:00:43 -080092import com.android.server.biometrics.iris.IrisService;
Tony Makb0d22622018-01-18 12:49:49 +000093import com.android.server.broadcastradio.BroadcastRadioService;
Wei Wanged7f5482017-02-21 11:35:10 -080094import com.android.server.camera.CameraServiceProxy;
Amith Yamasani30f8eb42013-11-06 14:54:50 -080095import com.android.server.clipboard.ClipboardService;
Andrei Oneacf109842019-07-17 19:03:10 +010096import com.android.server.compat.PlatformCompat;
atrost87488352019-10-10 19:27:31 +010097import com.android.server.compat.PlatformCompatNative;
Hugo Benichieab511b2016-09-09 09:23:47 +090098import com.android.server.connectivity.IpConnectivityMetrics;
Felipe Leme141864d2019-02-27 17:01:51 -080099import com.android.server.contentcapture.ContentCaptureManagerInternal;
Allen Hair1f556e32016-11-11 15:42:50 -0800100import com.android.server.coverage.CoverageService;
Adam Lesinski2c8d67c2014-04-23 13:46:21 -0700101import com.android.server.devicepolicy.DevicePolicyManagerService;
Tony Makb0d22622018-01-18 12:49:49 +0000102import com.android.server.display.DisplayManagerService;
Christine Franks0ada2772019-02-25 13:54:57 -0800103import com.android.server.display.color.ColorDisplayService;
Jeff Browncef440f2012-09-25 18:58:48 -0700104import com.android.server.dreams.DreamManagerService;
Selim Cinek705442f2016-09-13 16:02:33 -0700105import com.android.server.emergency.EmergencyAffordanceService;
Peiyong Linfd71c202019-01-23 15:29:59 -0800106import com.android.server.gpu.GpuService;
Jungshik Jang0792d372014-04-23 17:57:26 +0900107import com.android.server.hdmi.HdmiControlService;
Joe Onoratoe21ab7e2018-12-18 15:00:25 -0800108import com.android.server.incident.IncidentCompanionService;
Songchun Fan43f18ea2019-12-11 17:54:38 -0800109import com.android.server.incremental.IncrementalManagerService;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700110import com.android.server.input.InputManagerService;
Yohei Yukawa603f4d02018-09-11 15:04:58 -0700111import com.android.server.inputmethod.InputMethodManagerService;
Tarandeep Singh07b318b2019-07-17 11:12:04 -0700112import com.android.server.inputmethod.InputMethodSystemProperty;
Yohei Yukawabae5bea2018-11-12 15:08:30 -0800113import com.android.server.inputmethod.MultiClientInputMethodManagerService;
Song Panf93a39c2019-11-19 00:58:31 +0000114import com.android.server.integrity.AppIntegrityManagerService;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800115import com.android.server.lights.LightsService;
Jeff Sharkeyd136e512016-03-09 22:30:56 -0700116import com.android.server.media.MediaResourceMonitorService;
Jeff Brown69b07162013-11-07 00:30:16 -0800117import com.android.server.media.MediaRouterService;
RoboErik01fe6612014-02-13 14:19:04 -0800118import com.android.server.media.MediaSessionService;
Michael Wrightc39d47a2014-07-08 18:07:36 -0700119import com.android.server.media.projection.MediaProjectionManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700120import com.android.server.net.NetworkPolicyManagerService;
Jeff Sharkey75279902011-05-24 18:39:45 -0700121import com.android.server.net.NetworkStatsService;
Ricky Wai1a6e6672017-10-27 14:46:01 +0100122import com.android.server.net.watchlist.NetworkWatchlistService;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800123import com.android.server.notification.NotificationManagerService;
Andrew Scull5d7027d2017-04-12 11:46:27 +0100124import com.android.server.oemlock.OemLockService;
MÃ¥rten Kongstad2e0d0f32016-06-02 09:35:31 +0200125import com.android.server.om.OverlayManagerService;
Nandana Duttd11850c2018-12-12 17:26:57 +0000126import com.android.server.os.BugreportManagerService;
Svet Ganov37e43272016-09-09 16:01:32 -0700127import com.android.server.os.DeviceIdentifiersPolicyService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -0800128import com.android.server.os.SchedulingPolicyService;
Danning Chen20b32ed2019-12-18 16:52:03 -0800129import com.android.server.people.PeopleService;
Calin Juravle91d40f12017-03-15 18:38:57 -0700130import com.android.server.pm.BackgroundDexOptService;
Tony Makb0d22622018-01-18 12:49:49 +0000131import com.android.server.pm.CrossProfileAppsService;
Songchun Fan6cde9d92019-12-10 10:23:54 -0800132import com.android.server.pm.DataLoaderManagerService;
Alan Stokesbe9ec972018-12-10 14:07:47 +0000133import com.android.server.pm.DynamicCodeLoggingService;
Jeff Brownf69c8122012-09-12 17:00:34 -0700134import com.android.server.pm.Installer;
Amith Yamasani4f582632014-02-19 14:31:52 -0800135import com.android.server.pm.LauncherAppsService;
Andreas Gampea8908752015-11-10 08:58:14 -0800136import com.android.server.pm.OtaDexoptService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700137import com.android.server.pm.PackageManagerService;
Makoto Onuki6f7362d92016-03-04 13:39:41 -0800138import com.android.server.pm.ShortcutService;
Amith Yamasani258848d2012-08-10 17:06:33 -0700139import com.android.server.pm.UserManagerService;
Svet Ganovd8eb8b22019-04-05 18:52:08 -0700140import com.android.server.policy.PermissionPolicyService;
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700141import com.android.server.policy.PhoneWindowManager;
Eugene Susla4ab95112018-12-17 14:45:11 -0800142import com.android.server.policy.role.LegacyRoleResolutionPolicy;
Jeff Brown4f8ecd82012-06-18 18:29:13 -0700143import com.android.server.power.PowerManagerService;
144import com.android.server.power.ShutdownThread;
Wei Wangbad7c202018-11-01 11:57:39 -0700145import com.android.server.power.ThermalManagerService;
Kenny Rootf96836e2019-11-19 17:11:34 -0800146import com.android.server.recoverysystem.RecoverySystemService;
Amith Yamasanif20d6402014-05-24 15:34:37 -0700147import com.android.server.restrictions.RestrictionsManagerService;
Eugene Susla6d4922722018-11-08 16:25:28 -0800148import com.android.server.role.RoleManagerService;
Richard Uhlerb29f1452018-09-12 16:38:15 +0100149import com.android.server.rollback.RollbackManagerService;
Victor Hsieh20fe1f62019-09-30 13:36:21 -0700150import com.android.server.security.FileIntegrityService;
Janis Danisevskis8ff1e192016-06-03 11:31:55 -0700151import com.android.server.security.KeyAttestationApplicationIdProviderService;
Robin Lee13935492017-03-23 15:28:37 +0000152import com.android.server.security.KeyChainSystemService;
Mathew Inwood4e2ed6a2018-11-26 15:31:16 +0000153import com.android.server.signedconfig.SignedConfigService;
Arunesh Mishraa772e5f2016-01-25 10:33:11 -0800154import com.android.server.soundtrigger.SoundTriggerService;
Ytai Ben-Tsvi93c117c862019-11-25 12:43:28 -0800155import com.android.server.soundtrigger_middleware.SoundTriggerMiddlewareService;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800156import com.android.server.statusbar.StatusBarManagerService;
157import com.android.server.storage.DeviceStorageMonitorService;
Santos Cordon5d2c1e62014-11-21 15:20:15 -0800158import com.android.server.telecom.TelecomLoaderService;
William Hestera96d3d32018-12-19 13:14:51 -0800159import com.android.server.testharness.TestHarnessModeService;
Abodunrinwa Tokid32906c2018-01-18 04:34:44 -0800160import com.android.server.textclassifier.TextClassificationManagerService;
Yohei Yukawaeb1e8042018-09-12 14:02:00 -0700161import com.android.server.textservices.TextServicesManagerService;
Adrian Roos82142c22014-03-27 14:56:59 +0100162import com.android.server.trust.TrustManagerService;
Jae Seo39570912014-02-20 18:23:25 -0800163import com.android.server.tv.TvInputManagerService;
Fyodor Kupolov3235e0c2016-11-17 11:44:49 -0800164import com.android.server.tv.TvRemoteService;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800165import com.android.server.twilight.TwilightService;
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700166import com.android.server.uri.UriGrantsManagerService;
Adam Lesinski0debc9a2014-07-16 19:09:13 -0700167import com.android.server.usage.UsageStatsService;
Felipe Leme3aad1be2019-05-31 11:43:12 -0700168import com.android.server.utils.TimingsTraceAndSlog;
Ruben Brunkdd18a0b2015-12-04 16:16:31 -0800169import com.android.server.vr.VrManagerService;
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100170import com.android.server.webkit.WebViewUpdateService;
Felipe Lemee348dc32018-11-05 12:35:29 -0800171import com.android.server.wm.ActivityTaskManagerService;
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800172import com.android.server.wm.WindowManagerGlobalLock;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700173import com.android.server.wm.WindowManagerService;
174
175import dalvik.system.VMRuntime;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700176
Alex Salob81472f2018-12-12 14:44:28 -0800177import com.google.android.startop.iorap.IorapForwardingService;
178
Tao Bao4fd6c262016-01-19 14:22:24 -0800179import java.io.File;
180import java.io.IOException;
Narayan Kamathbf882052015-08-11 15:40:34 +0100181import java.util.Locale;
Bob Leee5408332009-09-04 18:31:17 -0700182import java.util.Timer;
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800183import java.util.concurrent.CountDownLatch;
Keun-young Parkd80e8942017-01-27 11:30:19 -0800184import java.util.concurrent.Future;
Bob Leee5408332009-09-04 18:31:17 -0700185
Jeff Brown6f357d32014-01-15 20:40:55 -0800186public final class SystemServer {
Christine Franksea7d71b2018-07-03 14:46:07 -0700187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 private static final String TAG = "SystemServer";
Jeff Brown6f357d32014-01-15 20:40:55 -0800189
Ben Komalo553acf02011-09-19 14:25:28 -0700190 private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
Ben Komalo3573d402011-09-23 15:08:24 -0700191 private static final String ENCRYPTED_STATE = "1";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192
Jeff Brown6f357d32014-01-15 20:40:55 -0800193 private static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
194
195 // The earliest supported time. We pick one day into 1970, to
196 // give any timezone code room without going into negative time.
197 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198
Makoto Onuki712886f2018-04-27 15:22:50 -0700199 private static final long SLOW_DISPATCH_THRESHOLD_MS = 100;
200 private static final long SLOW_DELIVERY_THRESHOLD_MS = 200;
201
Amith Yamasani817ec492013-12-20 13:27:30 -0800202 /*
203 * Implementation class names. TODO: Move them to a codegen class or load
204 * them from the build system somehow.
205 */
206 private static final String BACKUP_MANAGER_SERVICE_CLASS =
Annie Meng384230f2018-11-28 10:58:08 +0000207 "com.android.server.backup.BackupManagerService$Lifecycle";
Amith Yamasani817ec492013-12-20 13:27:30 -0800208 private static final String APPWIDGET_SERVICE_CLASS =
209 "com.android.server.appwidget.AppWidgetService";
Dianne Hackborn91097de2014-04-04 18:02:06 -0700210 private static final String VOICE_RECOGNITION_MANAGER_SERVICE_CLASS =
211 "com.android.server.voiceinteraction.VoiceInteractionManagerService";
Amith Yamasani817ec492013-12-20 13:27:30 -0800212 private static final String PRINT_MANAGER_SERVICE_CLASS =
213 "com.android.server.print.PrintManagerService";
Eugene Susla6ed45d82017-01-22 13:52:51 -0800214 private static final String COMPANION_DEVICE_MANAGER_SERVICE_CLASS =
Eugene Susla0d3dd122017-04-18 10:56:37 -0700215 "com.android.server.companion.CompanionDeviceManagerService";
Tej Singhb2d68842020-01-08 15:03:38 -0800216 private static final String STATS_COMPANION_APEX_PATH =
217 "/apex/com.android.os.statsd/javalib/service-statsd.jar";
Jeffrey Huang8c1ae5a2019-12-12 10:56:24 -0800218 private static final String STATS_COMPANION_LIFECYCLE_CLASS =
219 "com.android.server.stats.StatsCompanion$Lifecycle";
Tej Singh953ad862020-01-03 12:47:07 -0800220 private static final String STATS_PULL_ATOM_SERVICE_CLASS =
Tej Singh250e7aa2020-01-16 13:16:21 -0800221 "com.android.server.stats.pull.StatsPullAtomService";
Adam Lesinski2cb6c602014-02-14 17:19:56 -0800222 private static final String USB_SERVICE_CLASS =
223 "com.android.server.usb.UsbService$Lifecycle";
Mike Lockwood5781cd52015-03-27 13:23:41 -0700224 private static final String MIDI_SERVICE_CLASS =
225 "com.android.server.midi.MidiService$Lifecycle";
Adam Lesinskif542a332014-02-19 12:29:58 -0800226 private static final String WIFI_SERVICE_CLASS =
227 "com.android.server.wifi.WifiService";
Etan Cohen04133272016-10-26 11:22:06 -0700228 private static final String WIFI_AWARE_SERVICE_CLASS =
229 "com.android.server.wifi.aware.WifiAwareService";
Adam Lesinskif542a332014-02-19 12:29:58 -0800230 private static final String WIFI_P2P_SERVICE_CLASS =
231 "com.android.server.wifi.p2p.WifiP2pService";
Robert Quattlebaum87a71042017-05-15 15:45:20 -0700232 private static final String LOWPAN_SERVICE_CLASS =
233 "com.android.server.lowpan.LowpanService";
Lorenzo Colittif9ff2c92014-05-21 16:32:11 -0700234 private static final String ETHERNET_SERVICE_CLASS =
235 "com.android.server.ethernet.EthernetService";
Christopher Tate7060b042014-06-09 19:50:00 -0700236 private static final String JOB_SCHEDULER_SERVICE_CLASS =
237 "com.android.server.job.JobSchedulerService";
Jim Miller4f93c582016-01-27 19:05:43 -0800238 private static final String LOCK_SETTINGS_SERVICE_CLASS =
Andrew Scull507d11c2017-05-03 17:19:01 +0100239 "com.android.server.locksettings.LockSettingsService$Lifecycle";
Sudheer Shanka2250d562016-11-07 15:41:02 -0800240 private static final String STORAGE_MANAGER_SERVICE_CLASS =
241 "com.android.server.StorageManagerService$Lifecycle";
Jeff Sharkeye8cece92017-01-04 11:33:33 -0700242 private static final String STORAGE_STATS_SERVICE_CLASS =
243 "com.android.server.usage.StorageStatsService$Lifecycle";
Jeff Sharkey4175be22016-01-09 14:57:45 -0700244 private static final String SEARCH_MANAGER_SERVICE_CLASS =
245 "com.android.server.search.SearchManagerService$Lifecycle";
Wei Liud699cf82016-03-25 16:32:10 -0700246 private static final String THERMAL_OBSERVER_CLASS =
247 "com.google.android.clockwork.ThermalObserver";
Calvin On5555bcc2017-02-21 16:41:43 -0800248 private static final String WEAR_CONNECTIVITY_SERVICE_CLASS =
Calvin On3cda1cf2018-02-14 13:57:07 -0800249 "com.android.clockwork.connectivity.WearConnectivityService";
Damien Bargiacchiae4cb672018-05-30 13:28:15 -0700250 private static final String WEAR_POWER_SERVICE_CLASS =
251 "com.android.clockwork.power.WearPowerService";
Chris Phoenixbc839a32017-10-21 14:46:15 -0700252 private static final String WEAR_SIDEKICK_SERVICE_CLASS =
253 "com.google.android.clockwork.sidekick.SidekickService";
Julius D'souza069f46c2017-03-22 13:27:00 -0700254 private static final String WEAR_DISPLAY_SERVICE_CLASS =
255 "com.google.android.clockwork.display.WearDisplayService";
Ivan Podogovf9973822017-05-11 15:51:34 +0100256 private static final String WEAR_LEFTY_SERVICE_CLASS =
257 "com.google.android.clockwork.lefty.WearLeftyService";
Damien Bargiacchi2d92eeb2016-04-07 14:01:03 -0700258 private static final String WEAR_TIME_SERVICE_CLASS =
259 "com.google.android.clockwork.time.WearTimeService";
Michael Kwan01ad0aa2018-02-28 15:19:04 -0800260 private static final String WEAR_GLOBAL_ACTIONS_SERVICE_CLASS =
261 "com.android.clockwork.globalactions.GlobalActionsService";
Jeff Sharkey1cab76a2016-04-12 18:23:31 -0600262 private static final String ACCOUNT_SERVICE_CLASS =
263 "com.android.server.accounts.AccountManagerService$Lifecycle";
Jeff Sharkeya3ebfec2016-04-04 08:58:04 -0600264 private static final String CONTENT_SERVICE_CLASS =
265 "com.android.server.content.ContentService$Lifecycle";
Jeff Sharkey1cab76a2016-04-12 18:23:31 -0600266 private static final String WALLPAPER_SERVICE_CLASS =
267 "com.android.server.wallpaper.WallpaperManagerService$Lifecycle";
Felipe Leme5381aa42016-10-13 09:02:32 -0700268 private static final String AUTO_FILL_MANAGER_SERVICE_CLASS =
Svet Ganov2f8fb1f2017-03-13 00:21:04 -0700269 "com.android.server.autofill.AutofillManagerService";
Felipe Leme749b8892018-12-03 16:30:30 -0800270 private static final String CONTENT_CAPTURE_MANAGER_SERVICE_CLASS =
271 "com.android.server.contentcapture.ContentCaptureManagerService";
Robert Berry835123d2019-03-18 16:33:42 -0400272 private static final String SYSTEM_CAPTIONS_MANAGER_SERVICE_CLASS =
273 "com.android.server.systemcaptions.SystemCaptionsManagerService";
Neil Fuller328532a2017-03-16 18:32:21 +0000274 private static final String TIME_ZONE_RULES_MANAGER_SERVICE_CLASS =
275 "com.android.server.timezone.RulesManagerService$Lifecycle";
Nick Felker1bfe59d2017-10-12 13:27:02 -0700276 private static final String IOT_SERVICE_CLASS =
Ralph Nathan090c2c32018-04-19 22:19:03 -0700277 "com.android.things.server.IoTSystemService";
Jason Monk8f5f7ff2017-10-17 14:12:42 -0400278 private static final String SLICE_MANAGER_SERVICE_CLASS =
279 "com.android.server.slice.SliceManagerService$Lifecycle";
Steve Paik94292a32018-01-26 17:16:53 -0800280 private static final String CAR_SERVICE_HELPER_SERVICE_CLASS =
281 "com.android.internal.car.CarServiceHelperService";
Neil Fullerfeeee682018-05-30 14:35:24 +0100282 private static final String TIME_DETECTOR_SERVICE_CLASS =
283 "com.android.server.timedetector.TimeDetectorService$Lifecycle";
Neil Fuller3e3b5402019-11-07 15:35:05 +0000284 private static final String TIME_ZONE_DETECTOR_SERVICE_CLASS =
285 "com.android.server.timezonedetector.TimeZoneDetectorService$Lifecycle";
Rhed Jao8a39cef2018-07-18 11:43:33 +0800286 private static final String ACCESSIBILITY_MANAGER_SERVICE_CLASS =
287 "com.android.server.accessibility.AccessibilityManagerService$Lifecycle";
Kenny Rootf74bfde2018-01-18 15:42:48 -0800288 private static final String ADB_SERVICE_CLASS =
289 "com.android.server.adb.AdbService$Lifecycle";
Sunny Goyal54e91342018-11-14 11:59:02 -0800290 private static final String APP_PREDICTION_MANAGER_SERVICE_CLASS =
291 "com.android.server.appprediction.AppPredictionManagerService";
Winson Chung3fb0f252019-01-08 17:41:55 -0800292 private static final String CONTENT_SUGGESTIONS_SERVICE_CLASS =
293 "com.android.server.contentsuggestions.ContentSuggestionsManagerService";
Makoto Onuki52c24b32019-08-23 10:18:28 -0700294 private static final String DEVICE_IDLE_CONTROLLER_CLASS =
295 "com.android.server.DeviceIdleController";
Sudheer Shankaf5b36962019-10-04 16:16:13 -0700296 private static final String BLOB_STORE_MANAGER_SERVICE_CLASS =
297 "com.android.server.blob.BlobStoreManagerService";
Terry Wangecc0d1b2019-10-17 17:05:18 -0700298 private static final String APP_SEARCH_MANAGER_SERVICE_CLASS =
299 "com.android.server.appsearch.AppSearchManagerService";
Andres Morales68d4acd2014-07-01 19:40:41 -0700300 private static final String PERSISTENT_DATA_BLOCK_PROP = "ro.frp.pst";
Amith Yamasani817ec492013-12-20 13:27:30 -0800301
Tao Bao4fd6c262016-01-19 14:22:24 -0800302 private static final String UNCRYPT_PACKAGE_FILE = "/cache/recovery/uncrypt_file";
303 private static final String BLOCK_MAP_FILE = "/cache/recovery/block.map";
304
David Andersona032a2b2019-02-07 14:07:23 -0800305 private static final String GSI_RUNNING_PROP = "ro.gsid.image_running";
306
Tim Murrayeef4a3d2016-04-19 14:14:20 -0700307 // maximum number of binder threads used for system_server
308 // will be higher than the system default
309 private static final int sMaxBinderThreads = 31;
310
Alan Viveretteba398ea2015-12-16 15:28:23 -0500311 /**
Christine Franksea7d71b2018-07-03 14:46:07 -0700312 * Default theme used by the system context. This is used to style system-provided dialogs, such
313 * as the Power Off dialog, and other visual content.
Alan Viveretteba398ea2015-12-16 15:28:23 -0500314 */
315 private static final int DEFAULT_SYSTEM_THEME =
Michael Kwan9c7274c2016-06-13 12:48:55 -0700316 com.android.internal.R.style.Theme_DeviceDefault_System;
Alan Viveretteba398ea2015-12-16 15:28:23 -0500317
Jeff Brown6f357d32014-01-15 20:40:55 -0800318 private final int mFactoryTestMode;
319 private Timer mProfilerSnapshotTimer;
320
321 private Context mSystemContext;
322 private SystemServiceManager mSystemServiceManager;
323
Jeff Brown4ccb8232014-01-16 22:16:42 -0800324 // TODO: remove all of these references by improving dependency resolution and boot phases
Jeff Brown4ccb8232014-01-16 22:16:42 -0800325 private PowerManagerService mPowerManagerService;
326 private ActivityManagerService mActivityManagerService;
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800327 private WindowManagerGlobalLock mWindowManagerGlobalLock;
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000328 private WebViewUpdateService mWebViewUpdateService;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800329 private DisplayManagerService mDisplayManagerService;
Jeff Brown2c43c332014-06-12 22:38:59 -0700330 private PackageManagerService mPackageManagerService;
331 private PackageManager mPackageManager;
Jeff Brown6f357d32014-01-15 20:40:55 -0800332 private ContentResolver mContentResolver;
Jeff Sharkey1cab76a2016-04-12 18:23:31 -0600333 private EntropyMixer mEntropyMixer;
Songchun Fan6cde9d92019-12-10 10:23:54 -0800334 private DataLoaderManagerService mDataLoaderManagerService;
Songchun Fan43f18ea2019-12-11 17:54:38 -0800335 private IncrementalManagerService mIncrementalManagerService;
Jeff Brown6f357d32014-01-15 20:40:55 -0800336
Jeff Brown2c43c332014-06-12 22:38:59 -0700337 private boolean mOnlyCore;
338 private boolean mFirstBoot;
Makoto Onukib4739d92019-02-15 15:22:04 -0800339 private final int mStartCount;
Fyodor Kupolov6733e6c2017-01-06 18:27:05 -0800340 private final boolean mRuntimeRestart;
Makoto Onukie8edbcf2018-03-02 16:49:29 -0800341 private final long mRuntimeStartElapsedTime;
342 private final long mRuntimeStartUptime;
Jeff Brown2c43c332014-06-12 22:38:59 -0700343
Keun-young Park9b73a542017-02-01 12:09:58 -0800344 private static final String START_SENSOR_SERVICE = "StartSensorService";
Yifan Hong26b421f2017-03-10 13:41:11 -0800345 private static final String START_HIDL_SERVICES = "StartHidlServices";
346
Makoto Onukib4739d92019-02-15 15:22:04 -0800347 private static final String SYSPROP_START_COUNT = "sys.system_server.start_count";
348 private static final String SYSPROP_START_ELAPSED = "sys.system_server.start_elapsed";
349 private static final String SYSPROP_START_UPTIME = "sys.system_server.start_uptime";
Yifan Hong26b421f2017-03-10 13:41:11 -0800350
Keun-young Park9b73a542017-02-01 12:09:58 -0800351 private Future<?> mSensorServiceStart;
Narayan Kamath97780462017-02-06 20:24:08 +0000352 private Future<?> mZygotePreload;
353
Jeff Brown6f357d32014-01-15 20:40:55 -0800354 /**
Keun-young Park9b73a542017-02-01 12:09:58 -0800355 * Start the sensor service. This is a blocking call and can take time.
Jeff Brown6f357d32014-01-15 20:40:55 -0800356 */
Svet Ganovb9d71a62015-04-30 10:38:13 -0700357 private static native void startSensorService();
Jeff Brown6f357d32014-01-15 20:40:55 -0800358
359 /**
Christine Franksea7d71b2018-07-03 14:46:07 -0700360 * Start all HIDL services that are run inside the system server. This may take some time.
Yifan Hong26b421f2017-03-10 13:41:11 -0800361 */
362 private static native void startHidlServices();
363
364 /**
Ryan Savitskicfdc1512018-12-14 16:20:52 +0000365 * Mark this process' heap as profileable. Only for debug builds.
366 */
367 private static native void initZygoteChildHeapProfiling();
368
369 /**
Jeff Brown6f357d32014-01-15 20:40:55 -0800370 * The main entry point from zygote.
371 */
372 public static void main(String[] args) {
373 new SystemServer().run();
374 }
375
376 public SystemServer() {
Jeff Brown2c43c332014-06-12 22:38:59 -0700377 // Check for factory test mode.
Jeff Brown6f357d32014-01-15 20:40:55 -0800378 mFactoryTestMode = FactoryTest.getMode();
Makoto Onukie8edbcf2018-03-02 16:49:29 -0800379
Makoto Onukib4739d92019-02-15 15:22:04 -0800380 // Record process start information.
381 // Note SYSPROP_START_COUNT will increment by *2* on a FDE device when it fully boots;
382 // one for the password screen, second for the actual boot.
383 mStartCount = SystemProperties.getInt(SYSPROP_START_COUNT, 0) + 1;
Makoto Onukie8edbcf2018-03-02 16:49:29 -0800384 mRuntimeStartElapsedTime = SystemClock.elapsedRealtime();
385 mRuntimeStartUptime = SystemClock.uptimeMillis();
Makoto Onukib4739d92019-02-15 15:22:04 -0800386
387 // Remember if it's runtime restart(when sys.boot_completed is already set) or reboot
388 // We don't use "mStartCount > 1" here because it'll be wrong on a FDE device.
389 // TODO: mRuntimeRestart will *not* be set to true if the proccess crashes before
390 // sys.boot_completed is set. Fix it.
391 mRuntimeRestart = "1".equals(SystemProperties.get("sys.boot_completed"));
Jeff Brown6f357d32014-01-15 20:40:55 -0800392 }
393
394 private void run() {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700395 TimingsTraceAndSlog t = new TimingsTraceAndSlog();
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900396 try {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700397 t.traceBegin("InitBeforeStartServices");
Makoto Onukib4739d92019-02-15 15:22:04 -0800398
399 // Record the process start information in sys props.
400 SystemProperties.set(SYSPROP_START_COUNT, String.valueOf(mStartCount));
401 SystemProperties.set(SYSPROP_START_ELAPSED, String.valueOf(mRuntimeStartElapsedTime));
402 SystemProperties.set(SYSPROP_START_UPTIME, String.valueOf(mRuntimeStartUptime));
403
404 EventLog.writeEvent(EventLogTags.SYSTEM_SERVER_START,
405 mStartCount, mRuntimeStartUptime, mRuntimeStartElapsedTime);
406
Przemyslaw Szczepaniakfbe00fa2017-07-28 13:21:48 +0000407 //
408 // Default the timezone property to GMT if not set.
409 //
Christine Franksea7d71b2018-07-03 14:46:07 -0700410 String timezoneProperty = SystemProperties.get("persist.sys.timezone");
Przemyslaw Szczepaniakfbe00fa2017-07-28 13:21:48 +0000411 if (timezoneProperty == null || timezoneProperty.isEmpty()) {
412 Slog.w(TAG, "Timezone not set; setting to GMT.");
413 SystemProperties.set("persist.sys.timezone", "GMT");
414 }
415
Yasuhiro Matsudaebf94652015-09-02 22:48:13 +0900416 // If the system has "persist.sys.language" and friends set, replace them with
417 // "persist.sys.locale". Note that the default locale at this point is calculated
418 // using the "-Duser.locale" command line flag. That flag is usually populated by
419 // AndroidRuntime using the same set of system properties, but only the system_server
420 // and system apps are allowed to set them.
421 //
422 // NOTE: Most changes made here will need an equivalent change to
423 // core/jni/AndroidRuntime.cpp
424 if (!SystemProperties.get("persist.sys.language").isEmpty()) {
425 final String languageTag = Locale.getDefault().toLanguageTag();
Narayan Kamathbf882052015-08-11 15:40:34 +0100426
Yasuhiro Matsudaebf94652015-09-02 22:48:13 +0900427 SystemProperties.set("persist.sys.locale", languageTag);
428 SystemProperties.set("persist.sys.language", "");
429 SystemProperties.set("persist.sys.country", "");
430 SystemProperties.set("persist.sys.localevar", "");
431 }
Narayan Kamathbf882052015-08-11 15:40:34 +0100432
Jeff Sharkey0a17db12016-11-04 11:23:46 -0600433 // The system server should never make non-oneway calls
434 Binder.setWarnOnBlocking(true);
Jeff Sharkeyb0613dc2018-02-27 14:38:04 -0700435 // The system server should always load safe labels
Philip P. Moltmann20dd4312018-10-08 16:56:49 -0700436 PackageItemInfo.forceSafeLabels();
Makoto Onuki50e00c82018-08-07 15:57:13 -0700437
438 // Default to FULL within the system server.
439 SQLiteGlobal.sDefaultSyncMode = SQLiteGlobal.SYNC_MODE_FULL;
440
Fyodor Kupolov7fcd6592017-12-15 11:56:36 -0800441 // Deactivate SQLiteCompatibilityWalFlags until settings provider is initialized
442 SQLiteCompatibilityWalFlags.init(null);
Jeff Sharkey0a17db12016-11-04 11:23:46 -0600443
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900444 // Here we go!
445 Slog.i(TAG, "Entered the Android system server!");
Keun young Park744f97f2020-01-14 13:53:45 -0800446 final long uptimeMillis = SystemClock.elapsedRealtime();
Fyodor Kupolov8d3e82b2016-11-10 17:58:50 -0800447 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN, uptimeMillis);
Fyodor Kupolov4ba91b92017-01-20 18:12:35 -0800448 if (!mRuntimeRestart) {
Keun young Park744f97f2020-01-14 13:53:45 -0800449 StatsLog.write(StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME_REPORTED,
450 StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME__EVENT__SYSTEM_SERVER_INIT_START,
451 uptimeMillis);
Fyodor Kupolov3235e0c2016-11-17 11:44:49 -0800452 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800453
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900454 // In case the runtime switched since last boot (such as when
455 // the old runtime was removed in an OTA), set the system
Eugene Suslad0999242019-11-04 10:08:13 -0800456 // property so that it is in sync. We can't do this in
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900457 // libnativehelper's JniInvocation::Init code where we already
458 // had to fallback to a different runtime because it is
459 // running as root and we need to be the system user to set
460 // the property. http://b/11463182
461 SystemProperties.set("persist.sys.dalvik.vm.lib.2", VMRuntime.getRuntime().vmLibrary());
Jeff Brown6f357d32014-01-15 20:40:55 -0800462
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900463 // Mmmmmm... more memory!
464 VMRuntime.getRuntime().clearGrowthLimit();
Jeff Brown6f357d32014-01-15 20:40:55 -0800465
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900466 // Some devices rely on runtime fingerprint generation, so make sure
467 // we've defined it before booting further.
468 Build.ensureFingerprintProperty();
Jeff Sharkey55687722014-04-09 18:07:19 -0700469
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900470 // Within the system server, it is an error to access Environment paths without
471 // explicitly specifying a user.
472 Environment.setUserRequired(true);
Jeff Brown6f357d32014-01-15 20:40:55 -0800473
Jeff Sharkeyd136e512016-03-09 22:30:56 -0700474 // Within the system server, any incoming Bundles should be defused
475 // to avoid throwing BadParcelableException.
476 BaseBundle.setShouldDefuse(true);
477
Fyodor Kupolova81b8c02017-11-13 15:51:03 -0800478 // Within the system server, when parceling exceptions, include the stack trace
479 Parcel.setStackTraceParceling(true);
480
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900481 // Ensure binder calls into the system always run at foreground priority.
482 BinderInternal.disableBackgroundScheduling(true);
Jeff Brown6f357d32014-01-15 20:40:55 -0800483
Tim Murrayeef4a3d2016-04-19 14:14:20 -0700484 // Increase the number of binder threads in system_server
485 BinderInternal.setMaxThreads(sMaxBinderThreads);
486
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900487 // Prepare the main looper thread (this thread).
488 android.os.Process.setThreadPriority(
Christine Franksea7d71b2018-07-03 14:46:07 -0700489 android.os.Process.THREAD_PRIORITY_FOREGROUND);
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900490 android.os.Process.setCanSelfBackground(false);
491 Looper.prepareMainLooper();
Makoto Onuki712886f2018-04-27 15:22:50 -0700492 Looper.getMainLooper().setSlowLogThresholdMs(
493 SLOW_DISPATCH_THRESHOLD_MS, SLOW_DELIVERY_THRESHOLD_MS);
Jeff Brown6f357d32014-01-15 20:40:55 -0800494
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900495 // Initialize native services.
496 System.loadLibrary("android_servers");
Jeff Brown6f357d32014-01-15 20:40:55 -0800497
Ryan Savitskicfdc1512018-12-14 16:20:52 +0000498 // Debug builds - allow heap profiling.
499 if (Build.IS_DEBUGGABLE) {
500 initZygoteChildHeapProfiling();
501 }
502
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900503 // Check whether we failed to shut down last time we tried.
504 // This call may not return.
505 performPendingShutdown();
Jeff Brown6f357d32014-01-15 20:40:55 -0800506
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900507 // Initialize the system context.
508 createSystemContext();
Jeff Brown6f357d32014-01-15 20:40:55 -0800509
Makoto Onuki6b0a7b82019-10-18 15:44:53 -0700510 // Call per-process mainline module initialization.
511 ActivityThread.initializeMainlineModules();
512
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900513 // Create the system service manager.
514 mSystemServiceManager = new SystemServiceManager(mSystemContext);
Makoto Onukie8edbcf2018-03-02 16:49:29 -0800515 mSystemServiceManager.setStartInfo(mRuntimeRestart,
516 mRuntimeStartElapsedTime, mRuntimeStartUptime);
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900517 LocalServices.addService(SystemServiceManager.class, mSystemServiceManager);
Fyodor Kupolove29a5a12016-12-16 16:14:17 -0800518 // Prepare the thread pool for init tasks that can be parallelized
Felipe Leme29f1ae92019-10-03 15:38:43 -0700519 SystemServerInitThreadPool.start();
David Sehr1a885392019-11-27 16:24:06 -0800520 // Attach JVMTI agent if this is a debuggable build and the system property is set.
521 if (Build.IS_DEBUGGABLE) {
522 // Property is of the form "library_path=parameters".
523 String jvmtiAgent = SystemProperties.get("persist.sys.dalvik.jvmtiagent");
524 if (!jvmtiAgent.isEmpty()) {
525 int equalIndex = jvmtiAgent.indexOf('=');
526 String libraryPath = jvmtiAgent.substring(0, equalIndex);
527 String parameterList =
528 jvmtiAgent.substring(equalIndex + 1, jvmtiAgent.length());
529 // Attach the agent.
530 try {
531 Debug.attachJvmtiAgent(libraryPath, parameterList, null);
532 } catch (Exception e) {
533 Slog.e("System", "*************************************************");
534 Slog.e("System", "********** Failed to load jvmti plugin: " + jvmtiAgent);
535 }
536 }
537 }
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900538 } finally {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700539 t.traceEnd(); // InitBeforeStartServices
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900540 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800541
542 // Start services.
543 try {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700544 t.traceBegin("StartServices");
545 startBootstrapServices(t);
546 startCoreServices(t);
547 startOtherServices(t);
Fyodor Kupolovcd824ef2017-02-07 11:25:14 -0800548 SystemServerInitThreadPool.shutdown();
Jeff Brown2c43c332014-06-12 22:38:59 -0700549 } catch (Throwable ex) {
Jeff Brown6f357d32014-01-15 20:40:55 -0800550 Slog.e("System", "******************************************");
551 Slog.e("System", "************ Failure starting system services", ex);
552 throw ex;
Yasuhiro Matsuda1ab43d52015-06-30 17:07:32 +0900553 } finally {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700554 t.traceEnd(); // StartServices
Jeff Brown6f357d32014-01-15 20:40:55 -0800555 }
556
Jeff Sharkey89182982017-11-01 19:02:56 -0600557 StrictMode.initVmDefaults(null);
558
Fyodor Kupolov4ba91b92017-01-20 18:12:35 -0800559 if (!mRuntimeRestart && !isFirstBootOrUpgrade()) {
Keun young Park744f97f2020-01-14 13:53:45 -0800560 final long uptimeMillis = SystemClock.elapsedRealtime();
561 StatsLog.write(StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME_REPORTED,
562 StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME__EVENT__SYSTEM_SERVER_READY,
563 uptimeMillis);
564 final long maxUptimeMillis = 60 * 1000;
565 if (uptimeMillis > maxUptimeMillis) {
Keun-young Park9b73a542017-02-01 12:09:58 -0800566 Slog.wtf(SYSTEM_SERVER_TIMING_TAG,
Fyodor Kupolov24e12dc2017-01-17 12:20:36 -0800567 "SystemServer init took too long. uptimeMillis=" + uptimeMillis);
568 }
Fyodor Kupolov6733e6c2017-01-06 18:27:05 -0800569 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800570
Andreas Gampee697a4f2018-10-09 10:40:52 -0700571 // Diagnostic to ensure that the system is in a base healthy state. Done here as a common
572 // non-zygote process.
573 if (!VMRuntime.hasBootImageSpaces()) {
574 Slog.wtf(TAG, "Runtime is not running with a boot image!");
575 }
576
Jeff Brown6f357d32014-01-15 20:40:55 -0800577 // Loop forever.
578 Looper.loop();
579 throw new RuntimeException("Main thread loop unexpectedly exited");
580 }
581
Fyodor Kupolov4ba91b92017-01-20 18:12:35 -0800582 private boolean isFirstBootOrUpgrade() {
Svet Ganovd8eb8b22019-04-05 18:52:08 -0700583 return mPackageManagerService.isFirstBoot() || mPackageManagerService.isDeviceUpgrading();
Fyodor Kupolov4ba91b92017-01-20 18:12:35 -0800584 }
585
Jeff Brown6f357d32014-01-15 20:40:55 -0800586 private void reportWtf(String msg, Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700587 Slog.w(TAG, "***********************************************");
Dianne Hackborn8d051722014-10-01 14:59:58 -0700588 Slog.wtf(TAG, "BOOT FAILURE " + msg, e);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700589 }
590
Jeff Brown6f357d32014-01-15 20:40:55 -0800591 private void performPendingShutdown() {
592 final String shutdownAction = SystemProperties.get(
593 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
594 if (shutdownAction != null && shutdownAction.length() > 0) {
595 boolean reboot = (shutdownAction.charAt(0) == '1');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596
Jeff Brown6f357d32014-01-15 20:40:55 -0800597 final String reason;
598 if (shutdownAction.length() > 1) {
599 reason = shutdownAction.substring(1, shutdownAction.length());
600 } else {
601 reason = null;
Kenny Rootf547d672010-09-22 10:36:48 -0700602 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800603
Tao Bao4fd6c262016-01-19 14:22:24 -0800604 // If it's a pending reboot into recovery to apply an update,
605 // always make sure uncrypt gets executed properly when needed.
606 // If '/cache/recovery/block.map' hasn't been created, stop the
607 // reboot which will fail for sure, and get a chance to capture a
Tao Baoe8a403d2015-12-31 07:44:55 -0800608 // bugreport when that's still feasible. (Bug: 26444951)
Tianjie Xu3a66fc42017-06-09 15:50:14 -0700609 if (reason != null && reason.startsWith(PowerManager.REBOOT_RECOVERY_UPDATE)) {
Tao Bao4fd6c262016-01-19 14:22:24 -0800610 File packageFile = new File(UNCRYPT_PACKAGE_FILE);
611 if (packageFile.exists()) {
612 String filename = null;
613 try {
614 filename = FileUtils.readTextFile(packageFile, 0, null);
615 } catch (IOException e) {
616 Slog.e(TAG, "Error reading uncrypt package file", e);
617 }
618
619 if (filename != null && filename.startsWith("/data")) {
620 if (!new File(BLOCK_MAP_FILE).exists()) {
621 Slog.e(TAG, "Can't find block map file, uncrypt failed or " +
Christine Franksea7d71b2018-07-03 14:46:07 -0700622 "unexpected runtime restart?");
Tao Bao4fd6c262016-01-19 14:22:24 -0800623 return;
624 }
625 }
626 }
627 }
Alison Cichowlasf0afd8c2017-07-31 11:24:34 -0400628 Runnable runnable = new Runnable() {
629 @Override
630 public void run() {
631 synchronized (this) {
632 ShutdownThread.rebootOrShutdown(null, reboot, reason);
633 }
634 }
635 };
636
637 // ShutdownThread must run on a looper capable of displaying the UI.
638 Message msg = Message.obtain(UiThread.getHandler(), runnable);
639 msg.setAsynchronous(true);
640 UiThread.getHandler().sendMessage(msg);
641
Kenny Rootf547d672010-09-22 10:36:48 -0700642 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800643 }
Kenny Rootf547d672010-09-22 10:36:48 -0700644
Jeff Brown6f357d32014-01-15 20:40:55 -0800645 private void createSystemContext() {
646 ActivityThread activityThread = ActivityThread.systemMain();
647 mSystemContext = activityThread.getSystemContext();
Alan Viveretteba398ea2015-12-16 15:28:23 -0500648 mSystemContext.setTheme(DEFAULT_SYSTEM_THEME);
Adam Lesinskia82b6262017-03-21 16:56:17 -0700649
650 final Context systemUiContext = activityThread.getSystemUiContext();
651 systemUiContext.setTheme(DEFAULT_SYSTEM_THEME);
Jeff Brown6f357d32014-01-15 20:40:55 -0800652 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800653
Jeff Brown2c43c332014-06-12 22:38:59 -0700654 /**
Christine Franksea7d71b2018-07-03 14:46:07 -0700655 * Starts the small tangle of critical services that are needed to get the system off the
656 * ground. These services have complex mutual dependencies which is why we initialize them all
657 * in one place here. Unless your service is also entwined in these dependencies, it should be
658 * initialized in one of the other functions.
Jeff Brown2c43c332014-06-12 22:38:59 -0700659 */
Felipe Leme3aad1be2019-05-31 11:43:12 -0700660 private void startBootstrapServices(@NonNull TimingsTraceAndSlog t) {
Felipe Leme137e7812019-06-10 11:38:05 -0700661 t.traceBegin("startBootstrapServices");
662
Zimuzob065b152019-04-16 13:33:01 +0100663 // Start the watchdog as early as possible so we can crash the system server
664 // if we deadlock during early boot
Felipe Leme3aad1be2019-05-31 11:43:12 -0700665 t.traceBegin("StartWatchdog");
Zimuzob065b152019-04-16 13:33:01 +0100666 final Watchdog watchdog = Watchdog.getInstance();
667 watchdog.start();
Felipe Leme3aad1be2019-05-31 11:43:12 -0700668 t.traceEnd();
Zimuzob065b152019-04-16 13:33:01 +0100669
Fyodor Kupolovb76e0fd2017-01-30 13:28:25 -0800670 Slog.i(TAG, "Reading configuration...");
671 final String TAG_SYSTEM_CONFIG = "ReadingSystemConfig";
Felipe Leme3aad1be2019-05-31 11:43:12 -0700672 t.traceBegin(TAG_SYSTEM_CONFIG);
Felipe Lemeb68b7692019-10-09 10:43:03 -0700673 SystemServerInitThreadPool.submit(SystemConfig::getInstance, TAG_SYSTEM_CONFIG);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700674 t.traceEnd();
Fyodor Kupolovb76e0fd2017-01-30 13:28:25 -0800675
atrostde54a8ac2019-08-15 16:53:01 +0100676 // Platform compat service is used by ActivityManagerService, PackageManagerService, and
677 // possibly others in the future. b/135010838.
678 t.traceBegin("PlatformCompat");
atrost87488352019-10-10 19:27:31 +0100679 PlatformCompat platformCompat = new PlatformCompat(mSystemContext);
680 ServiceManager.addService(Context.PLATFORM_COMPAT_SERVICE, platformCompat);
681 ServiceManager.addService(Context.PLATFORM_COMPAT_NATIVE_SERVICE,
682 new PlatformCompatNative(platformCompat));
Andrei Oneaf965d152019-10-30 18:08:24 +0000683 AppCompatCallbacks.install(new long[0]);
atrostde54a8ac2019-08-15 16:53:01 +0100684 t.traceEnd();
685
Victor Hsieh20fe1f62019-09-30 13:36:21 -0700686 // FileIntegrityService responds to requests from apps and the system. It needs to run after
687 // the source (i.e. keystore) is ready, and before the apps (or the first customer in the
688 // system) run.
689 t.traceBegin("StartFileIntegrityService");
690 mSystemServiceManager.startService(FileIntegrityService.class);
691 t.traceEnd();
692
Jeff Brown6f357d32014-01-15 20:40:55 -0800693 // Wait for installd to finish starting up so that it has a chance to
694 // create critical directories such as /data/user with the appropriate
695 // permissions. We need this to complete before we initialize other services.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700696 t.traceBegin("StartInstaller");
Narayan Kamath76a748e2014-11-10 14:23:41 +0000697 Installer installer = mSystemServiceManager.startService(Installer.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700698 t.traceEnd();
Jeff Brown6f357d32014-01-15 20:40:55 -0800699
Svet Ganov37e43272016-09-09 16:01:32 -0700700 // In some cases after launching an app we need to access device identifiers,
701 // therefore register the device identifier policy before the activity manager.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700702 t.traceBegin("DeviceIdentifiersPolicyService");
Svet Ganov37e43272016-09-09 16:01:32 -0700703 mSystemServiceManager.startService(DeviceIdentifiersPolicyService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700704 t.traceEnd();
Svet Ganov37e43272016-09-09 16:01:32 -0700705
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700706 // Uri Grants Manager.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700707 t.traceBegin("UriGrantsManagerService");
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700708 mSystemServiceManager.startService(UriGrantsManagerService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700709 t.traceEnd();
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700710
Jeff Brown6f357d32014-01-15 20:40:55 -0800711 // Activity manager runs the show.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700712 t.traceBegin("StartActivityManager");
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700713 // TODO: Might need to move after migration to WM.
714 ActivityTaskManagerService atm = mSystemServiceManager.startService(
715 ActivityTaskManagerService.Lifecycle.class).getService();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700716 mActivityManagerService = ActivityManagerService.Lifecycle.startService(
717 mSystemServiceManager, atm);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700718 mActivityManagerService.setSystemServiceManager(mSystemServiceManager);
Narayan Kamath76a748e2014-11-10 14:23:41 +0000719 mActivityManagerService.setInstaller(installer);
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800720 mWindowManagerGlobalLock = atm.getGlobalLock();
Felipe Leme3aad1be2019-05-31 11:43:12 -0700721 t.traceEnd();
Jeff Brown4ccb8232014-01-16 22:16:42 -0800722
Songchun Fan6cde9d92019-12-10 10:23:54 -0800723 // Data loader manager service needs to be started before package manager
724 t.traceBegin("StartDataLoaderManagerService");
725 mDataLoaderManagerService = mSystemServiceManager.startService(
726 DataLoaderManagerService.class);
727 t.traceEnd();
728
Songchun Fan43f18ea2019-12-11 17:54:38 -0800729 // Incremental service needs to be started before package manager
730 t.traceBegin("StartIncrementalManagerService");
731 mIncrementalManagerService = IncrementalManagerService.start(mSystemContext);
732 t.traceEnd();
733
Jeff Brown2c43c332014-06-12 22:38:59 -0700734 // Power manager needs to be started early because other services need it.
735 // Native daemons may be watching for it to be registered so it must be ready
736 // to handle incoming binder calls immediately (including being able to verify
737 // the permissions for those calls).
Felipe Leme3aad1be2019-05-31 11:43:12 -0700738 t.traceBegin("StartPowerManager");
Jeff Brown2c43c332014-06-12 22:38:59 -0700739 mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700740 t.traceEnd();
Jeff Brown2c43c332014-06-12 22:38:59 -0700741
Felipe Leme3aad1be2019-05-31 11:43:12 -0700742 t.traceBegin("StartThermalManager");
Wei Wangbad7c202018-11-01 11:57:39 -0700743 mSystemServiceManager.startService(ThermalManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700744 t.traceEnd();
Wei Wangbad7c202018-11-01 11:57:39 -0700745
Jeff Brown2c43c332014-06-12 22:38:59 -0700746 // Now that the power manager has been started, let the activity manager
747 // initialize power management features.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700748 t.traceBegin("InitPowerManagement");
Jeff Brown2c43c332014-06-12 22:38:59 -0700749 mActivityManagerService.initPowerManagement();
Felipe Leme3aad1be2019-05-31 11:43:12 -0700750 t.traceEnd();
Jeff Brown2c43c332014-06-12 22:38:59 -0700751
Jeff Sharkeyfe6f85c2017-01-20 10:42:57 -0700752 // Bring up recovery system in case a rescue party needs a reboot
Felipe Leme3aad1be2019-05-31 11:43:12 -0700753 t.traceBegin("StartRecoverySystemService");
Kenny Root96690bc2019-11-15 10:20:59 -0800754 mSystemServiceManager.startService(RecoverySystemService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700755 t.traceEnd();
Jeff Sharkeyfe6f85c2017-01-20 10:42:57 -0700756
757 // Now that we have the bare essentials of the OS up and running, take
758 // note that we just booted, which might send out a rescue party if
759 // we're stuck in a runtime restart loop.
Gavin Corkery69395652019-12-12 19:06:47 +0000760 RescueParty.registerHealthObserver(mSystemContext);
Gavin Corkeryaa57ef32019-12-17 19:02:54 +0000761 PackageWatchdog.getInstance(mSystemContext).noteBoot();
Jeff Sharkeyfe6f85c2017-01-20 10:42:57 -0700762
Jeff Brown5d6443b2015-04-10 20:15:01 -0700763 // Manages LEDs and display backlight so we need it to bring up the display.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700764 t.traceBegin("StartLightsService");
Jeff Brown5d6443b2015-04-10 20:15:01 -0700765 mSystemServiceManager.startService(LightsService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700766 t.traceEnd();
Jeff Brown5d6443b2015-04-10 20:15:01 -0700767
Felipe Leme3aad1be2019-05-31 11:43:12 -0700768 t.traceBegin("StartSidekickService");
Chris Phoenixbc839a32017-10-21 14:46:15 -0700769 // Package manager isn't started yet; need to use SysProp not hardware feature
770 if (SystemProperties.getBoolean("config.enable_sidekick_graphics", false)) {
771 mSystemServiceManager.startService(WEAR_SIDEKICK_SERVICE_CLASS);
772 }
Felipe Leme3aad1be2019-05-31 11:43:12 -0700773 t.traceEnd();
Chris Phoenixbc839a32017-10-21 14:46:15 -0700774
Jeff Brown4ccb8232014-01-16 22:16:42 -0800775 // Display manager is needed to provide display metrics before package manager
776 // starts up.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700777 t.traceBegin("StartDisplayManager");
Jeff Brown4ccb8232014-01-16 22:16:42 -0800778 mDisplayManagerService = mSystemServiceManager.startService(DisplayManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700779 t.traceEnd();
Jeff Brown2c43c332014-06-12 22:38:59 -0700780
781 // We need the default display before we can initialize the package manager.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700782 t.traceBegin("WaitForDisplay");
Felipe Leme137e7812019-06-10 11:38:05 -0700783 mSystemServiceManager.startBootPhase(t, SystemService.PHASE_WAIT_FOR_DEFAULT_DISPLAY);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700784 t.traceEnd();
Jeff Brown2c43c332014-06-12 22:38:59 -0700785
786 // Only run "core" apps if we're encrypting the device.
Inseob Kimc1246e62018-11-08 13:13:54 +0900787 String cryptState = VoldProperties.decrypt().orElse("");
Jeff Brown2c43c332014-06-12 22:38:59 -0700788 if (ENCRYPTING_STATE.equals(cryptState)) {
789 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
790 mOnlyCore = true;
791 } else if (ENCRYPTED_STATE.equals(cryptState)) {
792 Slog.w(TAG, "Device encrypted - only parsing core apps");
793 mOnlyCore = true;
794 }
795
796 // Start the package manager.
Fyodor Kupolov6733e6c2017-01-06 18:27:05 -0800797 if (!mRuntimeRestart) {
Keun young Park744f97f2020-01-14 13:53:45 -0800798 StatsLog.write(StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME_REPORTED,
799 StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME__EVENT__PACKAGE_MANAGER_INIT_START,
800 SystemClock.elapsedRealtime());
Fyodor Kupolov6733e6c2017-01-06 18:27:05 -0800801 }
Zimuzoe5cc6ab2019-06-14 11:47:45 +0100802
Felipe Leme3aad1be2019-05-31 11:43:12 -0700803 t.traceBegin("StartPackageManagerService");
Zimuzoe5cc6ab2019-06-14 11:47:45 +0100804 try {
805 Watchdog.getInstance().pauseWatchingCurrentThread("packagemanagermain");
806 mPackageManagerService = PackageManagerService.main(mSystemContext, installer,
807 mFactoryTestMode != FactoryTest.FACTORY_TEST_OFF, mOnlyCore);
808 } finally {
809 Watchdog.getInstance().resumeWatchingCurrentThread("packagemanagermain");
810 }
811
Jeff Brown2c43c332014-06-12 22:38:59 -0700812 mFirstBoot = mPackageManagerService.isFirstBoot();
813 mPackageManager = mSystemContext.getPackageManager();
Felipe Leme3aad1be2019-05-31 11:43:12 -0700814 t.traceEnd();
Fyodor Kupolov4ba91b92017-01-20 18:12:35 -0800815 if (!mRuntimeRestart && !isFirstBootOrUpgrade()) {
Keun young Park744f97f2020-01-14 13:53:45 -0800816 StatsLog.write(StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME_REPORTED,
817 StatsLog.BOOT_TIME_EVENT_ELAPSED_TIME__EVENT__PACKAGE_MANAGER_INIT_READY,
818 SystemClock.elapsedRealtime());
Fyodor Kupolov6733e6c2017-01-06 18:27:05 -0800819 }
Andreas Gampeabcbe2f2016-02-26 11:25:36 -0800820 // Manages A/B OTA dexopting. This is a bootstrap service as we need it to rename
821 // A/B artifacts after boot, before anything else might touch/need them.
822 // Note: this isn't needed during decryption (we don't have /data anyways).
823 if (!mOnlyCore) {
824 boolean disableOtaDexopt = SystemProperties.getBoolean("config.disable_otadexopt",
825 false);
826 if (!disableOtaDexopt) {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700827 t.traceBegin("StartOtaDexOptService");
Andreas Gampeabcbe2f2016-02-26 11:25:36 -0800828 try {
Zimuzof3c46142019-05-31 12:46:12 +0100829 Watchdog.getInstance().pauseWatchingCurrentThread("moveab");
Andreas Gampeabcbe2f2016-02-26 11:25:36 -0800830 OtaDexoptService.main(mSystemContext, mPackageManagerService);
831 } catch (Throwable e) {
832 reportWtf("starting OtaDexOptService", e);
833 } finally {
Zimuzof3c46142019-05-31 12:46:12 +0100834 Watchdog.getInstance().resumeWatchingCurrentThread("moveab");
Felipe Leme3aad1be2019-05-31 11:43:12 -0700835 t.traceEnd();
Andreas Gampeabcbe2f2016-02-26 11:25:36 -0800836 }
837 }
838 }
839
Felipe Leme3aad1be2019-05-31 11:43:12 -0700840 t.traceBegin("StartUserManagerService");
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700841 mSystemServiceManager.startService(UserManagerService.LifeCycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700842 t.traceEnd();
Adam Lesinski3c153512014-07-23 17:34:34 -0700843
Jeff Brown2c43c332014-06-12 22:38:59 -0700844 // Initialize attribute cache used to cache resources from packages.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700845 t.traceBegin("InitAttributerCache");
Jeff Brown2c43c332014-06-12 22:38:59 -0700846 AttributeCache.init(mSystemContext);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700847 t.traceEnd();
Jeff Brown2c43c332014-06-12 22:38:59 -0700848
849 // Set up the Application instance for the system process and get started.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700850 t.traceBegin("SetSystemProcess");
Jeff Brown2c43c332014-06-12 22:38:59 -0700851 mActivityManagerService.setSystemProcess();
Felipe Leme3aad1be2019-05-31 11:43:12 -0700852 t.traceEnd();
Svet Ganovb9d71a62015-04-30 10:38:13 -0700853
Zimuzob065b152019-04-16 13:33:01 +0100854 // Complete the watchdog setup with an ActivityManager instance and listen for reboots
855 // Do this only after the ActivityManagerService is properly started as a system process
Felipe Leme3aad1be2019-05-31 11:43:12 -0700856 t.traceBegin("InitWatchdog");
Zimuzob065b152019-04-16 13:33:01 +0100857 watchdog.init(mSystemContext, mActivityManagerService);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700858 t.traceEnd();
Zimuzob065b152019-04-16 13:33:01 +0100859
Joel Fernandes2d314e12017-04-04 16:32:15 -0700860 // DisplayManagerService needs to setup android.display scheduling related policies
861 // since setSystemProcess() would have overridden policies due to setProcessGroup
862 mDisplayManagerService.setupSchedulerPolicies();
863
MÃ¥rten Kongstad2e0d0f32016-06-02 09:35:31 +0200864 // Manages Overlay packages
Felipe Leme3aad1be2019-05-31 11:43:12 -0700865 t.traceBegin("StartOverlayManagerService");
MÃ¥rten Kongstad77b53b22019-10-01 08:29:21 +0200866 mSystemServiceManager.startService(new OverlayManagerService(mSystemContext));
Felipe Leme3aad1be2019-05-31 11:43:12 -0700867 t.traceEnd();
MÃ¥rten Kongstad2e0d0f32016-06-02 09:35:31 +0200868
Felipe Leme3aad1be2019-05-31 11:43:12 -0700869 t.traceBegin("StartSensorPrivacyService");
Chad Brubaker90f391f2018-10-19 10:26:19 -0700870 mSystemServiceManager.startService(new SensorPrivacyService(mSystemContext));
Felipe Leme3aad1be2019-05-31 11:43:12 -0700871 t.traceEnd();
Chad Brubaker90f391f2018-10-19 10:26:19 -0700872
Winson72dbe7e2019-04-29 14:55:30 -0700873 if (SystemProperties.getInt("persist.sys.displayinset.top", 0) > 0) {
874 // DisplayManager needs the overlay immediately.
875 mActivityManagerService.updateSystemUiContext();
876 LocalServices.getService(DisplayManagerInternal.class).onOverlayChanged();
877 }
878
Svet Ganovb9d71a62015-04-30 10:38:13 -0700879 // The sensor service needs access to package manager service, app ops
880 // service, and permissions service, therefore we start it after them.
Keun-young Park9b73a542017-02-01 12:09:58 -0800881 // Start sensor service in a separate thread. Completion should be checked
882 // before using it.
Felipe Lemeb68b7692019-10-09 10:43:03 -0700883 mSensorServiceStart = SystemServerInitThreadPool.submit(() -> {
Felipe Leme137e7812019-06-10 11:38:05 -0700884 TimingsTraceAndSlog traceLog = TimingsTraceAndSlog.newAsyncLog();
Keun-young Park9b73a542017-02-01 12:09:58 -0800885 traceLog.traceBegin(START_SENSOR_SERVICE);
886 startSensorService();
887 traceLog.traceEnd();
888 }, START_SENSOR_SERVICE);
Felipe Leme137e7812019-06-10 11:38:05 -0700889
890 t.traceEnd(); // startBootstrapServices
Jeff Brown6f357d32014-01-15 20:40:55 -0800891 }
892
Jeff Brown2c43c332014-06-12 22:38:59 -0700893 /**
894 * Starts some essential services that are not tangled up in the bootstrap process.
895 */
Felipe Leme3aad1be2019-05-31 11:43:12 -0700896 private void startCoreServices(@NonNull TimingsTraceAndSlog t) {
Felipe Leme137e7812019-06-10 11:38:05 -0700897 t.traceBegin("startCoreServices");
898
Hall Liub38ad5f2019-12-23 18:11:10 -0800899 // Service for system config
900 t.traceBegin("StartSystemConfigService");
901 mSystemServiceManager.startService(SystemConfigService.class);
902 t.traceEnd();
903
Felipe Leme3aad1be2019-05-31 11:43:12 -0700904 t.traceBegin("StartBatteryService");
Jeff Brown21392762014-06-13 19:00:36 -0700905 // Tracks the battery level. Requires LightService.
906 mSystemServiceManager.startService(BatteryService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700907 t.traceEnd();
Adam Lesinski0debc9a2014-07-16 19:09:13 -0700908
909 // Tracks application usage stats.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700910 t.traceBegin("StartUsageService");
Adam Lesinski0debc9a2014-07-16 19:09:13 -0700911 mSystemServiceManager.startService(UsageStatsService.class);
912 mActivityManagerService.setUsageStatsManager(
913 LocalServices.getService(UsageStatsManagerInternal.class));
Felipe Leme3aad1be2019-05-31 11:43:12 -0700914 t.traceEnd();
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100915
916 // Tracks whether the updatable WebView is in a ready state and watches for update installs.
Torne (Richard Coles)ff937ac2017-10-02 17:09:32 -0400917 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_WEBVIEW)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -0700918 t.traceBegin("StartWebViewUpdateService");
Torne (Richard Coles)ff937ac2017-10-02 17:09:32 -0400919 mWebViewUpdateService = mSystemServiceManager.startService(WebViewUpdateService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700920 t.traceEnd();
Torne (Richard Coles)ff937ac2017-10-02 17:09:32 -0400921 }
Fyodor Kupolovca348512018-01-10 18:05:53 -0800922
Marcin Oczeretkoc80c81a2018-08-30 20:15:52 +0100923 // Tracks and caches the device state.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700924 t.traceBegin("StartCachedDeviceStateService");
Marcin Oczeretkoc80c81a2018-08-30 20:15:52 +0100925 mSystemServiceManager.startService(CachedDeviceStateService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700926 t.traceEnd();
Marcin Oczeretkoc80c81a2018-08-30 20:15:52 +0100927
Fyodor Kupolovca348512018-01-10 18:05:53 -0800928 // Tracks cpu time spent in binder calls
Felipe Leme3aad1be2019-05-31 11:43:12 -0700929 t.traceBegin("StartBinderCallsStatsService");
Olivier Gaillard1d7f6152018-07-03 13:57:58 +0100930 mSystemServiceManager.startService(BinderCallsStatsService.LifeCycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700931 t.traceEnd();
Marcin Oczeretkod8cc8592018-08-22 16:07:36 +0100932
933 // Tracks time spent in handling messages in handlers.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700934 t.traceBegin("StartLooperStatsService");
Marcin Oczeretkod8cc8592018-08-22 16:07:36 +0100935 mSystemServiceManager.startService(LooperStatsService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700936 t.traceEnd();
Richard Uhlerb29f1452018-09-12 16:38:15 +0100937
938 // Manages apk rollbacks.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700939 t.traceBegin("StartRollbackManagerService");
Richard Uhlere95d0552018-12-27 15:03:41 +0000940 mSystemServiceManager.startService(RollbackManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700941 t.traceEnd();
Nandana Duttd11850c2018-12-12 17:26:57 +0000942
943 // Service to capture bugreports.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700944 t.traceBegin("StartBugreportManagerService");
Nandana Duttd11850c2018-12-12 17:26:57 +0000945 mSystemServiceManager.startService(BugreportManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700946 t.traceEnd();
Peiyong Linfd71c202019-01-23 15:29:59 -0800947
948 // Serivce for GPU and GPU driver.
Felipe Leme3aad1be2019-05-31 11:43:12 -0700949 t.traceBegin("GpuService");
Peiyong Linfd71c202019-01-23 15:29:59 -0800950 mSystemServiceManager.startService(GpuService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -0700951 t.traceEnd();
Felipe Leme137e7812019-06-10 11:38:05 -0700952
953 t.traceEnd(); // startCoreServices
Jeff Brown2c43c332014-06-12 22:38:59 -0700954 }
955
956 /**
Christine Franksea7d71b2018-07-03 14:46:07 -0700957 * Starts a miscellaneous grab bag of stuff that has yet to be refactored and organized.
Jeff Brown2c43c332014-06-12 22:38:59 -0700958 */
Felipe Leme3aad1be2019-05-31 11:43:12 -0700959 private void startOtherServices(@NonNull TimingsTraceAndSlog t) {
Felipe Leme137e7812019-06-10 11:38:05 -0700960 t.traceBegin("startOtherServices");
961
Jeff Brown6f357d32014-01-15 20:40:55 -0800962 final Context context = mSystemContext;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700963 VibratorService vibrator = null;
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +0800964 DynamicSystemService dynamicSystem = null;
Sudheer Shanka2250d562016-11-07 15:41:02 -0800965 IStorageManager storageManager = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700966 NetworkManagementService networkManagement = null;
Nathan Haroldb7282172017-09-11 19:50:19 -0700967 IpSecService ipSecService = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700968 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700969 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400970 ConnectivityService connectivity = null;
Christine Franksea7d71b2018-07-03 14:46:07 -0700971 NsdService serviceDiscovery = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972 WindowManagerService wm = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400973 SerialService serial = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700974 NetworkTimeUpdateService networkTimeUpdater = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700975 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700976 TelephonyRegistry telephonyRegistry = null;
Erik Gilling51e95df2013-06-26 11:06:51 -0700977 ConsumerIrService consumerIr = null;
Ye Wend97e1fd2014-07-24 12:56:45 -0700978 MmsServiceBroker mmsService = null;
Polina Bondarenkof8754ac2016-02-12 20:38:23 +0100979 HardwarePropertiesManagerService hardwarePropertiesService = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980
Abodunrinwa Tokid32906c2018-01-18 04:34:44 -0800981 boolean disableSystemTextClassifier = SystemProperties.getBoolean(
982 "config.disable_systemtextclassifier", false);
Felipe Leme29397ce2018-11-16 17:30:36 -0800983
Steve Paik117fcb02018-09-13 09:43:54 -0700984 boolean disableNetworkTime = SystemProperties.getBoolean("config.disable_networktime",
985 false);
Ivan Podogov8adaec02016-09-14 18:14:31 +0100986 boolean disableCameraService = SystemProperties.getBoolean("config.disable_cameraservice",
987 false);
Ivan Podogovf9973822017-05-11 15:51:34 +0100988 boolean enableLeftyService = SystemProperties.getBoolean("config.enable_lefty", false);
Wei Liu09de4192016-09-07 13:33:49 -0700989
Colin Cross039deed2017-02-18 20:05:47 +0000990 boolean isEmulator = SystemProperties.get("ro.kernel.qemu").equals("1");
991
Erik Wolsheimer640734f2018-01-29 13:57:44 -0800992 boolean isWatch = context.getPackageManager().hasSystemFeature(
993 PackageManager.FEATURE_WATCH);
994
paulhsia0a1b3222018-11-08 18:15:46 +0800995 boolean isArc = context.getPackageManager().hasSystemFeature(
996 "org.chromium.arc");
997
Rick Yiub2875922018-09-12 11:07:25 +0000998 boolean enableVrService = context.getPackageManager().hasSystemFeature(
999 PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE);
1000
Jeff Sharkeyfe6f85c2017-01-20 10:42:57 -07001001 // For debugging RescueParty
1002 if (Build.IS_DEBUGGABLE && SystemProperties.getBoolean("debug.crash_system", false)) {
1003 throw new RuntimeException();
1004 }
1005
Dan Morrille4d9a012013-03-28 18:10:43 -07001006 try {
Narayan Kamath97780462017-02-06 20:24:08 +00001007 final String SECONDARY_ZYGOTE_PRELOAD = "SecondaryZygotePreload";
1008 // We start the preload ~1s before the webview factory preparation, to
1009 // ensure that it completes before the 32 bit relro process is forked
1010 // from the zygote. In the event that it takes too long, the webview
1011 // RELRO process will block, but it will do so without holding any locks.
Felipe Lemeb68b7692019-10-09 10:43:03 -07001012 mZygotePreload = SystemServerInitThreadPool.submit(() -> {
Narayan Kamath97780462017-02-06 20:24:08 +00001013 try {
1014 Slog.i(TAG, SECONDARY_ZYGOTE_PRELOAD);
Felipe Leme137e7812019-06-10 11:38:05 -07001015 TimingsTraceAndSlog traceLog = TimingsTraceAndSlog.newAsyncLog();
Narayan Kamath97780462017-02-06 20:24:08 +00001016 traceLog.traceBegin(SECONDARY_ZYGOTE_PRELOAD);
Chris Wailesefce9292019-01-11 13:19:20 -08001017 if (!Process.ZYGOTE_PROCESS.preloadDefault(Build.SUPPORTED_32_BIT_ABIS[0])) {
Narayan Kamath97780462017-02-06 20:24:08 +00001018 Slog.e(TAG, "Unable to preload default resources");
1019 }
1020 traceLog.traceEnd();
1021 } catch (Exception ex) {
1022 Slog.e(TAG, "Exception preloading default resources", ex);
1023 }
1024 }, SECONDARY_ZYGOTE_PRELOAD);
1025
Felipe Leme3aad1be2019-05-31 11:43:12 -07001026 t.traceBegin("StartKeyAttestationApplicationIdProviderService");
Janis Danisevskis8ff1e192016-06-03 11:31:55 -07001027 ServiceManager.addService("sec_key_att_app_id_provider",
1028 new KeyAttestationApplicationIdProviderService(context));
Felipe Leme3aad1be2019-05-31 11:43:12 -07001029 t.traceEnd();
Janis Danisevskis8ff1e192016-06-03 11:31:55 -07001030
Felipe Leme3aad1be2019-05-31 11:43:12 -07001031 t.traceBegin("StartKeyChainSystemService");
Robin Lee13935492017-03-23 15:28:37 +00001032 mSystemServiceManager.startService(KeyChainSystemService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001033 t.traceEnd();
Robin Lee13935492017-03-23 15:28:37 +00001034
Felipe Leme3aad1be2019-05-31 11:43:12 -07001035 t.traceBegin("StartSchedulingPolicyService");
Dianne Hackborn35f72be2013-09-16 10:57:39 -07001036 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Felipe Leme3aad1be2019-05-31 11:43:12 -07001037 t.traceEnd();
Glenn Kasten07b04652012-04-23 15:00:43 -07001038
Felipe Leme3aad1be2019-05-31 11:43:12 -07001039 t.traceBegin("StartTelecomLoaderService");
Santos Cordon5d2c1e62014-11-21 15:20:15 -08001040 mSystemServiceManager.startService(TelecomLoaderService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001041 t.traceEnd();
Santos Cordon5d2c1e62014-11-21 15:20:15 -08001042
Felipe Leme3aad1be2019-05-31 11:43:12 -07001043 t.traceBegin("StartTelephonyRegistry");
Jeff Brown2c43c332014-06-12 22:38:59 -07001044 telephonyRegistry = new TelephonyRegistry(context);
1045 ServiceManager.addService("telephony.registry", telephonyRegistry);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001046 t.traceEnd();
Svetoslavb3038ec2013-02-13 14:39:30 -08001047
Felipe Leme3aad1be2019-05-31 11:43:12 -07001048 t.traceBegin("StartEntropyMixer");
Jeff Sharkey1cab76a2016-04-12 18:23:31 -06001049 mEntropyMixer = new EntropyMixer(context);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001050 t.traceEnd();
Nick Kralevich79619dd2013-03-04 13:05:32 -08001051
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001052 mContentResolver = context.getContentResolver();
1053
Fred Quintanae91ebe22009-09-29 20:44:30 -07001054 // The AccountManager must come before the ContentService
Felipe Leme3aad1be2019-05-31 11:43:12 -07001055 t.traceBegin("StartAccountManagerService");
Jeff Sharkey1cab76a2016-04-12 18:23:31 -06001056 mSystemServiceManager.startService(ACCOUNT_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001057 t.traceEnd();
Fred Quintana60307342009-03-24 22:48:12 -07001058
Felipe Leme3aad1be2019-05-31 11:43:12 -07001059 t.traceBegin("StartContentService");
Jeff Sharkeya3ebfec2016-04-04 08:58:04 -06001060 mSystemServiceManager.startService(CONTENT_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001061 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001062
Felipe Leme3aad1be2019-05-31 11:43:12 -07001063 t.traceBegin("InstallSystemProviders");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001064 mActivityManagerService.installSystemProviders();
Fyodor Kupolov7fcd6592017-12-15 11:56:36 -08001065 // Now that SettingsProvider is ready, reactivate SQLiteCompatibilityWalFlags
1066 SQLiteCompatibilityWalFlags.reset();
Felipe Leme3aad1be2019-05-31 11:43:12 -07001067 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001068
Yohei Yukawab8bbdaf2018-03-14 18:04:52 -07001069 // Records errors and logs, for example wtf()
1070 // Currently this service indirectly depends on SettingsProvider so do this after
1071 // InstallSystemProviders.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001072 t.traceBegin("StartDropBoxManager");
Yohei Yukawab8bbdaf2018-03-14 18:04:52 -07001073 mSystemServiceManager.startService(DropBoxManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001074 t.traceEnd();
Yohei Yukawab8bbdaf2018-03-14 18:04:52 -07001075
Felipe Leme3aad1be2019-05-31 11:43:12 -07001076 t.traceBegin("StartVibratorService");
Jeff Brown7f6c2312012-04-13 20:38:38 -07001077 vibrator = new VibratorService(context);
1078 ServiceManager.addService("vibrator", vibrator);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001079 t.traceEnd();
The Android Open Source Project10592532009-03-18 17:39:46 -07001080
Felipe Leme3aad1be2019-05-31 11:43:12 -07001081 t.traceBegin("StartDynamicSystemService");
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +08001082 dynamicSystem = new DynamicSystemService(context);
1083 ServiceManager.addService("dynamic_system", dynamicSystem);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001084 t.traceEnd();
Howard Chen0a947642019-01-07 14:10:44 +08001085
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001086 if (!isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001087 t.traceBegin("StartConsumerIrService");
Wei Liu09de4192016-09-07 13:33:49 -07001088 consumerIr = new ConsumerIrService(context);
1089 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001090 t.traceEnd();
Wei Liu09de4192016-09-07 13:33:49 -07001091 }
Erik Gilling51e95df2013-06-26 11:06:51 -07001092
Felipe Leme3aad1be2019-05-31 11:43:12 -07001093 t.traceBegin("StartAlarmManagerService");
Suprabh Shukla6226c2f2018-08-22 18:15:04 -07001094 mSystemServiceManager.startService(new AlarmManagerService(context));
Felipe Leme3aad1be2019-05-31 11:43:12 -07001095 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001096
Felipe Leme3aad1be2019-05-31 11:43:12 -07001097 t.traceBegin("StartInputManagerService");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001098 inputManager = new InputManagerService(context);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001099 t.traceEnd();
Jeff Browna9d131c2012-09-20 16:48:17 -07001100
Felipe Leme3aad1be2019-05-31 11:43:12 -07001101 t.traceBegin("StartWindowManagerService");
Keun-young Park9b73a542017-02-01 12:09:58 -08001102 // WMS needs sensor service ready
1103 ConcurrentUtils.waitForFutureNoInterrupt(mSensorServiceStart, START_SENSOR_SERVICE);
1104 mSensorServiceStart = null;
Yohei Yukawae24ed792018-08-28 19:10:32 -07001105 wm = WindowManagerService.main(context, inputManager, !mFirstBoot, mOnlyCore,
Yunfan Chenc2ff6cf2018-12-04 16:56:21 -08001106 new PhoneWindowManager(), mActivityManagerService.mActivityTaskManager);
Vishnu Naire9852f52017-10-11 18:09:55 -07001107 ServiceManager.addService(Context.WINDOW_SERVICE, wm, /* allowIsolated= */ false,
Vishnu Naire78b01a2017-10-26 10:11:54 -07001108 DUMP_FLAG_PRIORITY_CRITICAL | DUMP_FLAG_PROTO);
Vishnu Nair3764f4e2018-03-02 07:56:44 -08001109 ServiceManager.addService(Context.INPUT_SERVICE, inputManager,
1110 /* allowIsolated= */ false, DUMP_FLAG_PRIORITY_CRITICAL);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001111 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112
Felipe Leme3aad1be2019-05-31 11:43:12 -07001113 t.traceBegin("SetWindowManagerService");
Bryce Leef19cbe22018-02-02 15:09:21 -08001114 mActivityManagerService.setWindowManager(wm);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001115 t.traceEnd();
Bryce Leef19cbe22018-02-02 15:09:21 -08001116
Felipe Leme3aad1be2019-05-31 11:43:12 -07001117 t.traceBegin("WindowManagerServiceOnInitReady");
Bryce Leef19cbe22018-02-02 15:09:21 -08001118 wm.onInitReady();
Felipe Leme3aad1be2019-05-31 11:43:12 -07001119 t.traceEnd();
Bryce Leef19cbe22018-02-02 15:09:21 -08001120
Yifan Hong604c12c2017-03-20 10:57:44 -07001121 // Start receiving calls from HIDL services. Start in in a separate thread
1122 // because it need to connect to SensorManager. This have to start
1123 // after START_SENSOR_SERVICE is done.
Felipe Lemeb68b7692019-10-09 10:43:03 -07001124 SystemServerInitThreadPool.submit(() -> {
Felipe Leme137e7812019-06-10 11:38:05 -07001125 TimingsTraceAndSlog traceLog = TimingsTraceAndSlog.newAsyncLog();
Roger 1 Jönsson341b2c12017-05-17 14:21:55 +02001126 traceLog.traceBegin(START_HIDL_SERVICES);
Yifan Hong604c12c2017-03-20 10:57:44 -07001127 startHidlServices();
Roger 1 Jönsson341b2c12017-05-17 14:21:55 +02001128 traceLog.traceEnd();
Yifan Hong604c12c2017-03-20 10:57:44 -07001129 }, START_HIDL_SERVICES);
1130
Rick Yiub2875922018-09-12 11:07:25 +00001131 if (!isWatch && enableVrService) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001132 t.traceBegin("StartVrManagerService");
Wei Liuef89d212016-09-19 15:10:33 -07001133 mSystemServiceManager.startService(VrManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001134 t.traceEnd();
Wei Liuef89d212016-09-19 15:10:33 -07001135 }
Ruben Brunkdd18a0b2015-12-04 16:16:31 -08001136
Felipe Leme3aad1be2019-05-31 11:43:12 -07001137 t.traceBegin("StartInputManager");
Arthur Hung95b38a92018-07-20 18:56:12 +08001138 inputManager.setWindowManagerCallbacks(wm.getInputManagerCallback());
Jeff Browna9d131c2012-09-20 16:48:17 -07001139 inputManager.start();
Felipe Leme3aad1be2019-05-31 11:43:12 -07001140 t.traceEnd();
Jeff Browna9d131c2012-09-20 16:48:17 -07001141
Jeff Brown4ccb8232014-01-16 22:16:42 -08001142 // TODO: Use service dependencies instead.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001143 t.traceBegin("DisplayManagerWindowManagerAndInputReady");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001144 mDisplayManagerService.windowManagerAndInputReady();
Felipe Leme3aad1be2019-05-31 11:43:12 -07001145 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146
Hayden Gomes013a7f82019-05-14 09:30:39 -07001147 if (mFactoryTestMode == FactoryTest.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +01001148 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -07001149 } else if (!context.getPackageManager().hasSystemFeature
Christine Franksea7d71b2018-07-03 14:46:07 -07001150 (PackageManager.FEATURE_BLUETOOTH)) {
Matthew Xie1dd01eb32013-04-26 12:37:54 -07001151 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 } else {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001153 t.traceBegin("StartBluetoothService");
Miao Chou658bf2f2015-06-26 17:14:35 -07001154 mSystemServiceManager.startService(BluetoothService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001155 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001156 }
Pavel Zhamaitsiak02b3e6b2016-02-03 10:39:44 -08001157
Felipe Leme3aad1be2019-05-31 11:43:12 -07001158 t.traceBegin("IpConnectivityMetrics");
Hugo Benichieab511b2016-09-09 09:23:47 +09001159 mSystemServiceManager.startService(IpConnectivityMetrics.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001160 t.traceEnd();
Hugo Benichieab511b2016-09-09 09:23:47 +09001161
Felipe Leme3aad1be2019-05-31 11:43:12 -07001162 t.traceBegin("NetworkWatchlistService");
Ricky Wai1a6e6672017-10-27 14:46:01 +01001163 mSystemServiceManager.startService(NetworkWatchlistService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001164 t.traceEnd();
Ricky Wai1a6e6672017-10-27 14:46:01 +01001165
Felipe Leme3aad1be2019-05-31 11:43:12 -07001166 t.traceBegin("PinnerService");
Philip Cuadra7bd0fdd2016-04-28 15:26:49 -07001167 mSystemServiceManager.startService(PinnerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001168 t.traceEnd();
Mathew Inwood4e2ed6a2018-11-26 15:31:16 +00001169
Felipe Leme3aad1be2019-05-31 11:43:12 -07001170 t.traceBegin("IorapForwardingService");
Igor Murashkin4de1e162018-11-26 10:33:17 -08001171 mSystemServiceManager.startService(IorapForwardingService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001172 t.traceEnd();
Igor Murashkin4de1e162018-11-26 10:33:17 -08001173
Felipe Leme3aad1be2019-05-31 11:43:12 -07001174 t.traceBegin("SignedConfigService");
Mathew Inwood4e2ed6a2018-11-26 15:31:16 +00001175 SignedConfigService.registerUpdateReceiver(mSystemContext);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001176 t.traceEnd();
Andrei Oneacf109842019-07-17 19:03:10 +01001177
Song Panf93a39c2019-11-19 00:58:31 +00001178 t.traceBegin("AppIntegrityService");
1179 mSystemServiceManager.startService(AppIntegrityManagerService.class);
1180 t.traceEnd();
1181
Yohei Yukawa1382da32019-11-27 10:08:20 -08001182 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001183 Slog.e("System", "******************************************");
Yohei Yukawa1382da32019-11-27 10:08:20 -08001184 Slog.e("System", "************ Failure starting core service");
1185 throw e;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001186 }
1187
Rene Mayrhofer7d6c8e52018-11-28 11:32:40 -08001188 // Before things start rolling, be sure we have decided whether
1189 // we are in safe mode.
1190 final boolean safeMode = wm.detectSafeMode();
1191 if (safeMode) {
1192 // If yes, immediately turn on the global setting for airplane mode.
1193 // Note that this does not send broadcasts at this stage because
1194 // subsystems are not yet up. We will send broadcasts later to ensure
1195 // all listeners have the chance to react with special handling.
1196 Settings.Global.putInt(context.getContentResolver(),
1197 Settings.Global.AIRPLANE_MODE_ON, 1);
1198 }
1199
Joe Onorato089de882010-04-12 08:18:45 -07001200 StatusBarManagerService statusBar = null;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -08001201 INotificationManager notification = null;
Bai Taoa58a8752010-07-13 15:32:16 +08001202 CountryDetectorService countryDetector = null;
Jim Miller4f93c582016-01-27 19:05:43 -08001203 ILockSettings lockSettings = null;
Jeff Brown69b07162013-11-07 00:30:16 -08001204 MediaRouterService mediaRouter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001205
Dianne Hackborn661cd522011-08-22 00:26:20 -07001206 // Bring up services needed for UI.
Jeff Brown6f357d32014-01-15 20:40:55 -08001207 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001208 t.traceBegin("StartInputMethodManagerLifecycle");
Yohei Yukawa6048d892018-12-25 09:57:31 -08001209 if (InputMethodSystemProperty.MULTI_CLIENT_IME_ENABLED) {
Yohei Yukawabae5bea2018-11-12 15:08:30 -08001210 mSystemServiceManager.startService(
1211 MultiClientInputMethodManagerService.Lifecycle.class);
1212 } else {
1213 mSystemServiceManager.startService(InputMethodManagerService.Lifecycle.class);
1214 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001215 t.traceEnd();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001216
Felipe Leme3aad1be2019-05-31 11:43:12 -07001217 t.traceBegin("StartAccessibilityManagerService");
dcashman4e3f5d32014-11-25 15:33:26 -08001218 try {
Rhed Jao8a39cef2018-07-18 11:43:33 +08001219 mSystemServiceManager.startService(ACCESSIBILITY_MANAGER_SERVICE_CLASS);
dcashman4e3f5d32014-11-25 15:33:26 -08001220 } catch (Throwable e) {
1221 reportWtf("starting Accessibility Manager", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001222 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001223 t.traceEnd();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001224 }
1225
Felipe Leme3aad1be2019-05-31 11:43:12 -07001226 t.traceBegin("MakeDisplayReady");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001227 try {
1228 wm.displayReady();
1229 } catch (Throwable e) {
1230 reportWtf("making display ready", e);
1231 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001232 t.traceEnd();
Dianne Hackborn8795b602011-08-25 13:30:53 -07001233
Jeff Brown6f357d32014-01-15 20:40:55 -08001234 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Narayan Kamath1c888f62017-10-30 14:35:15 +00001235 if (!"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001236 t.traceBegin("StartStorageManagerService");
Kenny Root51a573c2012-05-17 13:30:28 -07001237 try {
1238 /*
Sudheer Shanka2250d562016-11-07 15:41:02 -08001239 * NotificationManagerService is dependant on StorageManagerService,
1240 * (for media / usb notifications) so we must start StorageManagerService first.
Kenny Root51a573c2012-05-17 13:30:28 -07001241 */
Sudheer Shanka2250d562016-11-07 15:41:02 -08001242 mSystemServiceManager.startService(STORAGE_MANAGER_SERVICE_CLASS);
1243 storageManager = IStorageManager.Stub.asInterface(
Jeff Sharkey56e62932015-03-21 20:41:00 -07001244 ServiceManager.getService("mount"));
Kenny Root51a573c2012-05-17 13:30:28 -07001245 } catch (Throwable e) {
Jeff Sharkeye8cece92017-01-04 11:33:33 -07001246 reportWtf("starting StorageManagerService", e);
1247 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001248 t.traceEnd();
Jeff Sharkeye8cece92017-01-04 11:33:33 -07001249
Felipe Leme3aad1be2019-05-31 11:43:12 -07001250 t.traceBegin("StartStorageStatsService");
Jeff Sharkeye8cece92017-01-04 11:33:33 -07001251 try {
1252 mSystemServiceManager.startService(STORAGE_STATS_SERVICE_CLASS);
1253 } catch (Throwable e) {
1254 reportWtf("starting StorageStatsService", e);
Kenny Root51a573c2012-05-17 13:30:28 -07001255 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001256 t.traceEnd();
Kenny Root51a573c2012-05-17 13:30:28 -07001257 }
padarshrada45412014-11-05 16:54:50 +05301258 }
Kenny Root51a573c2012-05-17 13:30:28 -07001259
Adam Lesinski05199e82015-03-19 14:37:11 -07001260 // We start this here so that we update our configuration to set watch or television
1261 // as appropriate.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001262 t.traceBegin("StartUiModeManager");
Adam Lesinski05199e82015-03-19 14:37:11 -07001263 mSystemServiceManager.startService(UiModeManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001264 t.traceEnd();
Adam Lesinski05199e82015-03-19 14:37:11 -07001265
David Brazdil89c80bb2016-06-02 15:31:30 +01001266 if (!mOnlyCore) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001267 t.traceBegin("UpdatePackagesIfNeeded");
David Brazdil89c80bb2016-06-02 15:31:30 +01001268 try {
Zimuzo2a050392019-05-09 12:51:33 +01001269 Watchdog.getInstance().pauseWatchingCurrentThread("dexopt");
David Brazdil89c80bb2016-06-02 15:31:30 +01001270 mPackageManagerService.updatePackagesIfNeeded();
1271 } catch (Throwable e) {
1272 reportWtf("update packages", e);
Zimuzo2a050392019-05-09 12:51:33 +01001273 } finally {
1274 Watchdog.getInstance().resumeWatchingCurrentThread("dexopt");
David Brazdil89c80bb2016-06-02 15:31:30 +01001275 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001276 t.traceEnd();
David Brazdilf5c444f2016-03-30 11:45:52 +01001277 }
David Brazdilf5c444f2016-03-30 11:45:52 +01001278
Felipe Leme3aad1be2019-05-31 11:43:12 -07001279 t.traceBegin("PerformFstrimIfNeeded");
padarshrada45412014-11-05 16:54:50 +05301280 try {
Nicolas Geoffray27c07372015-11-05 16:54:09 +00001281 mPackageManagerService.performFstrimIfNeeded();
padarshrada45412014-11-05 16:54:50 +05301282 } catch (Throwable e) {
Nicolas Geoffray27c07372015-11-05 16:54:09 +00001283 reportWtf("performing fstrim", e);
padarshrada45412014-11-05 16:54:50 +05301284 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001285 t.traceEnd();
padarshrada45412014-11-05 16:54:50 +05301286
padarshrada45412014-11-05 16:54:50 +05301287 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001288 t.traceBegin("StartLockSettingsService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001289 try {
1290 mSystemServiceManager.startService(LOCK_SETTINGS_SERVICE_CLASS);
1291 lockSettings = ILockSettings.Stub.asInterface(
Christine Franksea7d71b2018-07-03 14:46:07 -07001292 ServiceManager.getService("lock_settings"));
Narayan Kamath1c888f62017-10-30 14:35:15 +00001293 } catch (Throwable e) {
1294 reportWtf("starting LockSettingsService service", e);
1295 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001296 t.traceEnd();
Dan Morrille4d9a012013-03-28 18:10:43 -07001297
Narayan Kamath1c888f62017-10-30 14:35:15 +00001298 final boolean hasPdb = !SystemProperties.get(PERSISTENT_DATA_BLOCK_PROP).equals("");
David Andersona032a2b2019-02-07 14:07:23 -08001299 final boolean hasGsi = SystemProperties.getInt(GSI_RUNNING_PROP, 0) > 0;
1300 if (hasPdb && !hasGsi) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001301 t.traceBegin("StartPersistentDataBlock");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001302 mSystemServiceManager.startService(PersistentDataBlockService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001303 t.traceEnd();
Amith Yamasani52c489c2012-03-28 11:42:42 -07001304 }
1305
Felipe Leme3aad1be2019-05-31 11:43:12 -07001306 t.traceBegin("StartTestHarnessMode");
William Hester87ac4ea2019-05-06 16:23:47 -07001307 mSystemServiceManager.startService(TestHarnessModeService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001308 t.traceEnd();
William Hester87ac4ea2019-05-06 16:23:47 -07001309
Narayan Kamath1c888f62017-10-30 14:35:15 +00001310 if (hasPdb || OemLockService.isHalPresent()) {
1311 // Implementation depends on pdb or the OemLock HAL
Felipe Leme3aad1be2019-05-31 11:43:12 -07001312 t.traceBegin("StartOemLockService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001313 mSystemServiceManager.startService(OemLockService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001314 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001315 }
1316
Felipe Leme3aad1be2019-05-31 11:43:12 -07001317 t.traceBegin("StartDeviceIdleController");
Makoto Onuki52c24b32019-08-23 10:18:28 -07001318 mSystemServiceManager.startService(DEVICE_IDLE_CONTROLLER_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001319 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001320
1321 // Always start the Device Policy Manager, so that the API is compatible with
1322 // API8.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001323 t.traceBegin("StartDevicePolicyManager");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001324 mSystemServiceManager.startService(DevicePolicyManagerService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001325 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001326
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001327 if (!isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001328 t.traceBegin("StartStatusBarManagerService");
Dan Morrille4d9a012013-03-28 18:10:43 -07001329 try {
Dan Morrille4d9a012013-03-28 18:10:43 -07001330 statusBar = new StatusBarManagerService(context, wm);
1331 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
1332 } catch (Throwable e) {
1333 reportWtf("starting StatusBarManagerService", e);
1334 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001335 t.traceEnd();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001336 }
1337
Felipe Leme3aad1be2019-05-31 11:43:12 -07001338 startContentCaptureService(context, t);
1339 startAttentionService(context, t);
Felipe Leme927fbf02018-11-12 17:27:23 -08001340
Felipe Leme3aad1be2019-05-31 11:43:12 -07001341 startSystemCaptionsManagerService(context, t);
Robert Berry835123d2019-03-18 16:33:42 -04001342
Sunny Goyal54e91342018-11-14 11:59:02 -08001343 // App prediction manager service
Felipe Leme83e8f242019-08-14 16:57:56 +00001344 if (deviceHasConfigString(context, R.string.config_defaultAppPredictionService)) {
1345 t.traceBegin("StartAppPredictionService");
1346 mSystemServiceManager.startService(APP_PREDICTION_MANAGER_SERVICE_CLASS);
1347 t.traceEnd();
1348 } else {
1349 Slog.d(TAG, "AppPredictionService not defined by OEM");
1350 }
Sunny Goyal54e91342018-11-14 11:59:02 -08001351
Winson Chung3fb0f252019-01-08 17:41:55 -08001352 // Content suggestions manager service
Felipe Leme83e8f242019-08-14 16:57:56 +00001353 if (deviceHasConfigString(context, R.string.config_defaultContentSuggestionsService)) {
1354 t.traceBegin("StartContentSuggestionsService");
1355 mSystemServiceManager.startService(CONTENT_SUGGESTIONS_SERVICE_CLASS);
1356 t.traceEnd();
1357 } else {
1358 Slog.d(TAG, "ContentSuggestionsService not defined by OEM");
1359 }
Winson Chung3fb0f252019-01-08 17:41:55 -08001360
Roshan Pius7e6f5f52019-06-27 14:14:40 -07001361 t.traceBegin("InitConnectivityModuleConnector");
1362 try {
1363 ConnectivityModuleConnector.getInstance().init(context);
1364 } catch (Throwable e) {
1365 reportWtf("initializing ConnectivityModuleConnector", e);
1366 }
1367 t.traceEnd();
1368
Felipe Leme3aad1be2019-05-31 11:43:12 -07001369 t.traceBegin("InitNetworkStackClient");
Remi NGUYEN VAN389443c2019-03-15 08:21:27 +09001370 try {
1371 NetworkStackClient.getInstance().init();
1372 } catch (Throwable e) {
1373 reportWtf("initializing NetworkStackClient", e);
1374 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001375 t.traceEnd();
Remi NGUYEN VAN389443c2019-03-15 08:21:27 +09001376
Felipe Leme3aad1be2019-05-31 11:43:12 -07001377 t.traceBegin("StartNetworkManagementService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001378 try {
1379 networkManagement = NetworkManagementService.create(context);
1380 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
1381 } catch (Throwable e) {
1382 reportWtf("starting NetworkManagement Service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001383 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001384 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385
Chalard Jean8c141bd2018-12-04 20:20:56 +09001386
Felipe Leme3aad1be2019-05-31 11:43:12 -07001387 t.traceBegin("StartIpSecService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001388 try {
1389 ipSecService = IpSecService.create(context);
1390 ServiceManager.addService(Context.IPSEC_SERVICE, ipSecService);
1391 } catch (Throwable e) {
1392 reportWtf("starting IpSec Service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001394 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001395
Felipe Leme3aad1be2019-05-31 11:43:12 -07001396 t.traceBegin("StartTextServicesManager");
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001397 mSystemServiceManager.startService(TextServicesManagerService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001398 t.traceEnd();
San Mehatd1df8ac2010-01-26 06:17:26 -08001399
Abodunrinwa Tokid32906c2018-01-18 04:34:44 -08001400 if (!disableSystemTextClassifier) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001401 t.traceBegin("StartTextClassificationManagerService");
Christine Franksea7d71b2018-07-03 14:46:07 -07001402 mSystemServiceManager
1403 .startService(TextClassificationManagerService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001404 t.traceEnd();
Abodunrinwa Tokid32906c2018-01-18 04:34:44 -08001405 }
1406
Felipe Leme3aad1be2019-05-31 11:43:12 -07001407 t.traceBegin("StartNetworkScoreService");
Mehdi Alizadehce2d9632018-03-28 17:34:24 -07001408 mSystemServiceManager.startService(NetworkScoreService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001409 t.traceEnd();
vandwalle7c3606c2014-03-31 19:12:07 -07001410
Felipe Leme3aad1be2019-05-31 11:43:12 -07001411 t.traceBegin("StartNetworkStatsService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001412 try {
1413 networkStats = NetworkStatsService.create(context, networkManagement);
1414 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
1415 } catch (Throwable e) {
1416 reportWtf("starting NetworkStats Service", e);
1417 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001418 t.traceEnd();
Dan Morrille4d9a012013-03-28 18:10:43 -07001419
Felipe Leme3aad1be2019-05-31 11:43:12 -07001420 t.traceBegin("StartNetworkPolicyManagerService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001421 try {
Jeff Sharkeye0c29952018-02-20 17:24:55 -07001422 networkPolicy = new NetworkPolicyManagerService(context, mActivityManagerService,
1423 networkManagement);
Narayan Kamath1c888f62017-10-30 14:35:15 +00001424 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
1425 } catch (Throwable e) {
1426 reportWtf("starting NetworkPolicy Service", e);
1427 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001428 t.traceEnd();
Dan Morrille4d9a012013-03-28 18:10:43 -07001429
Roshan Piusc0bd9452019-01-28 10:03:07 -08001430 if (context.getPackageManager().hasSystemFeature(
Roshan Piusac76d482019-11-19 06:45:41 -08001431 PackageManager.FEATURE_WIFI)) {
1432 // Wifi Service must be started first for wifi-related services.
1433 t.traceBegin("StartWifi");
Sravan Kumar Reddy Kallufba0b262020-01-21 22:31:00 +00001434 mSystemServiceManager.startService(WIFI_SERVICE_CLASS);
Roshan Piusac76d482019-11-19 06:45:41 -08001435 t.traceEnd();
1436 t.traceBegin("StartWifiScanning");
Sravan Kumar Reddy Kallufba0b262020-01-21 22:31:00 +00001437 mSystemServiceManager.startService(
1438 "com.android.server.wifi.scanner.WifiScanningService");
Roshan Piusac76d482019-11-19 06:45:41 -08001439 t.traceEnd();
1440 }
1441
1442 if (context.getPackageManager().hasSystemFeature(
1443 PackageManager.FEATURE_WIFI_RTT)) {
1444 t.traceBegin("StartRttService");
Sravan Kumar Reddy Kallufba0b262020-01-21 22:31:00 +00001445 mSystemServiceManager.startService(
1446 "com.android.server.wifi.rtt.RttService");
Roshan Piusac76d482019-11-19 06:45:41 -08001447 t.traceEnd();
1448 }
1449
1450 if (context.getPackageManager().hasSystemFeature(
1451 PackageManager.FEATURE_WIFI_AWARE)) {
1452 t.traceBegin("StartWifiAware");
Sravan Kumar Reddy Kallufba0b262020-01-21 22:31:00 +00001453 mSystemServiceManager.startService(WIFI_AWARE_SERVICE_CLASS);
Roshan Piusac76d482019-11-19 06:45:41 -08001454 t.traceEnd();
1455 }
1456
1457 if (context.getPackageManager().hasSystemFeature(
1458 PackageManager.FEATURE_WIFI_DIRECT)) {
1459 t.traceBegin("StartWifiP2P");
Sravan Kumar Reddy Kallufba0b262020-01-21 22:31:00 +00001460 mSystemServiceManager.startService(WIFI_P2P_SERVICE_CLASS);
Roshan Piusac76d482019-11-19 06:45:41 -08001461 t.traceEnd();
1462 }
1463
1464 if (context.getPackageManager().hasSystemFeature(
Roshan Piusc0bd9452019-01-28 10:03:07 -08001465 PackageManager.FEATURE_LOWPAN)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001466 t.traceBegin("StartLowpan");
Roshan Piusc0bd9452019-01-28 10:03:07 -08001467 mSystemServiceManager.startService(LOWPAN_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001468 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001469 }
Lorenzo Colittif9ff2c92014-05-21 16:32:11 -07001470
Narayan Kamath1c888f62017-10-30 14:35:15 +00001471 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_ETHERNET) ||
Christine Franksea7d71b2018-07-03 14:46:07 -07001472 mPackageManager.hasSystemFeature(PackageManager.FEATURE_USB_HOST)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001473 t.traceBegin("StartEthernet");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001474 mSystemServiceManager.startService(ETHERNET_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001475 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001476 }
1477
Felipe Leme3aad1be2019-05-31 11:43:12 -07001478 t.traceBegin("StartConnectivityService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001479 try {
1480 connectivity = new ConnectivityService(
Christine Franksea7d71b2018-07-03 14:46:07 -07001481 context, networkManagement, networkStats, networkPolicy);
Narayan Kamath1c888f62017-10-30 14:35:15 +00001482 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity,
Christine Franksea7d71b2018-07-03 14:46:07 -07001483 /* allowIsolated= */ false,
1484 DUMP_FLAG_PRIORITY_HIGH | DUMP_FLAG_PRIORITY_NORMAL);
Narayan Kamath1c888f62017-10-30 14:35:15 +00001485 networkPolicy.bindConnectivityManager(connectivity);
1486 } catch (Throwable e) {
1487 reportWtf("starting Connectivity Service", e);
satok988323c2011-06-22 16:38:13 +09001488 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001489 t.traceEnd();
satok988323c2011-06-22 16:38:13 +09001490
Felipe Leme3aad1be2019-05-31 11:43:12 -07001491 t.traceBegin("StartNsdService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001492 try {
1493 serviceDiscovery = NsdService.create(context);
1494 ServiceManager.addService(
Christine Franksea7d71b2018-07-03 14:46:07 -07001495 Context.NSD_SERVICE, serviceDiscovery);
Narayan Kamath1c888f62017-10-30 14:35:15 +00001496 } catch (Throwable e) {
1497 reportWtf("starting Service Discovery Service", e);
Christopher Tate8662cab52012-02-23 14:59:36 -08001498 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001499 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001500
Felipe Leme3aad1be2019-05-31 11:43:12 -07001501 t.traceBegin("StartSystemUpdateManagerService");
Tao Bao07342dc2017-01-24 15:08:21 -08001502 try {
1503 ServiceManager.addService(Context.SYSTEM_UPDATE_SERVICE,
1504 new SystemUpdateManagerService(context));
1505 } catch (Throwable e) {
1506 reportWtf("starting SystemUpdateManagerService", e);
1507 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001508 t.traceEnd();
Tao Bao07342dc2017-01-24 15:08:21 -08001509
Felipe Leme3aad1be2019-05-31 11:43:12 -07001510 t.traceBegin("StartUpdateLockService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001511 try {
1512 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
Christine Franksea7d71b2018-07-03 14:46:07 -07001513 new UpdateLockService(context));
Narayan Kamath1c888f62017-10-30 14:35:15 +00001514 } catch (Throwable e) {
1515 reportWtf("starting UpdateLockService", e);
1516 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001517 t.traceEnd();
Christopher Tate8662cab52012-02-23 14:59:36 -08001518
Felipe Leme3aad1be2019-05-31 11:43:12 -07001519 t.traceBegin("StartNotificationManager");
Jeff Brown6f357d32014-01-15 20:40:55 -08001520 mSystemServiceManager.startService(NotificationManagerService.class);
Rubin Xu897750a2019-04-30 17:15:03 +01001521 SystemNotificationChannels.removeDeprecated(context);
Geoffrey Pitschaf759c52017-02-15 09:35:38 -05001522 SystemNotificationChannels.createAll(context);
Adam Lesinskief2ea1f2013-12-05 16:48:06 -08001523 notification = INotificationManager.Stub.asInterface(
1524 ServiceManager.getService(Context.NOTIFICATION_SERVICE));
Felipe Leme3aad1be2019-05-31 11:43:12 -07001525 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001526
Felipe Leme3aad1be2019-05-31 11:43:12 -07001527 t.traceBegin("StartDeviceMonitor");
Jeff Brown6f357d32014-01-15 20:40:55 -08001528 mSystemServiceManager.startService(DeviceStorageMonitorService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001529 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530
Felipe Leme3aad1be2019-05-31 11:43:12 -07001531 t.traceBegin("StartLocationManagerService");
Soonil Nagarkar141417a2019-10-28 11:12:48 -07001532 mSystemServiceManager.startService(LocationManagerService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001533 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534
Felipe Leme3aad1be2019-05-31 11:43:12 -07001535 t.traceBegin("StartCountryDetectorService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001536 try {
1537 countryDetector = new CountryDetectorService(context);
1538 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
1539 } catch (Throwable e) {
1540 reportWtf("starting Country Detector", e);
1541 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001542 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001543
Neil Fullerbef7e802019-06-27 15:01:01 +01001544 t.traceBegin("StartTimeDetectorService");
1545 try {
1546 mSystemServiceManager.startService(TIME_DETECTOR_SERVICE_CLASS);
1547 } catch (Throwable e) {
1548 reportWtf("starting StartTimeDetectorService service", e);
Neil Fuller7fb88c32018-06-19 12:53:47 +01001549 }
Neil Fullerbef7e802019-06-27 15:01:01 +01001550 t.traceEnd();
Neil Fuller7fb88c32018-06-19 12:53:47 +01001551
Neil Fuller3e3b5402019-11-07 15:35:05 +00001552 t.traceBegin("StartTimeZoneDetectorService");
1553 try {
1554 mSystemServiceManager.startService(TIME_ZONE_DETECTOR_SERVICE_CLASS);
1555 } catch (Throwable e) {
1556 reportWtf("starting StartTimeZoneDetectorService service", e);
1557 }
1558 t.traceEnd();
1559
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001560 if (!isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001561 t.traceBegin("StartSearchManagerService");
Dan Morrille4d9a012013-03-28 18:10:43 -07001562 try {
Jeff Sharkey4175be22016-01-09 14:57:45 -07001563 mSystemServiceManager.startService(SEARCH_MANAGER_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -07001564 } catch (Throwable e) {
1565 reportWtf("starting Search Service", e);
1566 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001567 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001568 }
1569
Narayan Kamath1c888f62017-10-30 14:35:15 +00001570 if (context.getResources().getBoolean(R.bool.config_enableWallpaperService)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001571 t.traceBegin("StartWallpaperManagerService");
Jeff Sharkey1cab76a2016-04-12 18:23:31 -06001572 mSystemServiceManager.startService(WALLPAPER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001573 t.traceEnd();
Felipe Leme34a861a2019-08-05 16:00:12 -07001574 } else {
1575 Slog.i(TAG, "Wallpaper service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 }
1577
Felipe Leme3aad1be2019-05-31 11:43:12 -07001578 t.traceBegin("StartAudioService");
paulhsia0a1b3222018-11-08 18:15:46 +08001579 if (!isArc) {
1580 mSystemServiceManager.startService(AudioService.Lifecycle.class);
1581 } else {
1582 String className = context.getResources()
1583 .getString(R.string.config_deviceSpecificAudioService);
1584 try {
1585 mSystemServiceManager.startService(className + "$Lifecycle");
1586 } catch (Throwable e) {
1587 reportWtf("starting " + className, e);
1588 }
1589 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001590 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591
Ytai Ben-Tsvi93c117c862019-11-25 12:43:28 -08001592 t.traceBegin("StartSoundTriggerMiddlewareService");
1593 mSystemServiceManager.startService(SoundTriggerMiddlewareService.Lifecycle.class);
1594 t.traceEnd();
1595
Tomasz Wasilczyk05392d62017-07-10 19:33:22 -07001596 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_BROADCAST_RADIO)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001597 t.traceBegin("StartBroadcastRadioService");
Tomasz Wasilczyk6b4b6462017-07-19 10:52:28 -07001598 mSystemServiceManager.startService(BroadcastRadioService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001599 t.traceEnd();
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -07001600 }
1601
Felipe Leme3aad1be2019-05-31 11:43:12 -07001602 t.traceBegin("StartDockObserver");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001603 mSystemServiceManager.startService(DockObserver.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001604 t.traceEnd();
Bryce Leebc58f592015-09-25 16:43:01 -07001605
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001606 if (isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001607 t.traceBegin("StartThermalObserver");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001608 mSystemServiceManager.startService(THERMAL_OBSERVER_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001609 t.traceEnd();
Dan Murphyc9f4eaf2009-08-12 15:15:43 -05001610 }
1611
Felipe Leme3aad1be2019-05-31 11:43:12 -07001612 t.traceBegin("StartWiredAccessoryManager");
John Spurlockb4f01b92015-03-24 12:40:15 -04001613 try {
John Spurlockb4f01b92015-03-24 12:40:15 -04001614 // Listen for wired headset changes
1615 inputManager.setWiredAccessoryCallbacks(
1616 new WiredAccessoryManager(context, inputManager));
1617 } catch (Throwable e) {
1618 reportWtf("starting WiredAccessoryManager", e);
Praveen Bharathi21e941b2010-10-06 15:23:14 -05001619 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001620 t.traceEnd();
Praveen Bharathi21e941b2010-10-06 15:23:14 -05001621
Narayan Kamath1c888f62017-10-30 14:35:15 +00001622 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_MIDI)) {
1623 // Start MIDI Manager service
Felipe Leme3aad1be2019-05-31 11:43:12 -07001624 t.traceBegin("StartMidiManager");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001625 mSystemServiceManager.startService(MIDI_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001626 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001627 }
Mike Lockwood5781cd52015-03-27 13:23:41 -07001628
Kenny Root4673a1d12018-12-05 12:20:02 +09001629 // Start ADB Debugging Service
Felipe Leme3aad1be2019-05-31 11:43:12 -07001630 t.traceBegin("StartAdbService");
Kenny Root4673a1d12018-12-05 12:20:02 +09001631 try {
1632 mSystemServiceManager.startService(ADB_SERVICE_CLASS);
1633 } catch (Throwable e) {
1634 Slog.e(TAG, "Failure starting AdbService");
1635 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001636 t.traceEnd();
Kenny Root4673a1d12018-12-05 12:20:02 +09001637
Narayan Kamath1c888f62017-10-30 14:35:15 +00001638 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_USB_HOST)
Christine Franksea7d71b2018-07-03 14:46:07 -07001639 || mPackageManager.hasSystemFeature(
1640 PackageManager.FEATURE_USB_ACCESSORY)
1641 || isEmulator) {
Narayan Kamath1c888f62017-10-30 14:35:15 +00001642 // Manage USB host and device support
Felipe Leme3aad1be2019-05-31 11:43:12 -07001643 t.traceBegin("StartUsbService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001644 mSystemServiceManager.startService(USB_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001645 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001646 }
Mike Lockwood57c798a2010-06-23 17:36:36 -04001647
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001648 if (!isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001649 t.traceBegin("StartSerialService");
Polina Bondarenkof8754ac2016-02-12 20:38:23 +01001650 try {
Narayan Kamath1c888f62017-10-30 14:35:15 +00001651 // Serial port support
1652 serial = new SerialService(context);
1653 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
Polina Bondarenkof8754ac2016-02-12 20:38:23 +01001654 } catch (Throwable e) {
Narayan Kamath1c888f62017-10-30 14:35:15 +00001655 Slog.e(TAG, "Failure starting SerialService", e);
Polina Bondarenkof8754ac2016-02-12 20:38:23 +01001656 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001657 t.traceEnd();
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04001658 }
1659
Felipe Leme3aad1be2019-05-31 11:43:12 -07001660 t.traceBegin("StartHardwarePropertiesManagerService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001661 try {
1662 hardwarePropertiesService = new HardwarePropertiesManagerService(context);
1663 ServiceManager.addService(Context.HARDWARE_PROPERTIES_SERVICE,
Christine Franksea7d71b2018-07-03 14:46:07 -07001664 hardwarePropertiesService);
Narayan Kamath1c888f62017-10-30 14:35:15 +00001665 } catch (Throwable e) {
1666 Slog.e(TAG, "Failure starting HardwarePropertiesManagerService", e);
1667 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001668 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001669
Felipe Leme3aad1be2019-05-31 11:43:12 -07001670 t.traceBegin("StartTwilightService");
Jeff Brown6f357d32014-01-15 20:40:55 -08001671 mSystemServiceManager.startService(TwilightService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001672 t.traceEnd();
Jeff Brown2416e092012-08-21 22:12:20 -07001673
Felipe Leme3aad1be2019-05-31 11:43:12 -07001674 t.traceBegin("StartColorDisplay");
Christine Franks17a9bc82018-12-10 10:19:02 -08001675 mSystemServiceManager.startService(ColorDisplayService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001676 t.traceEnd();
Justin Klaassen911e8892016-06-21 18:24:24 -07001677
Makoto Onuki792de8d2019-07-16 16:19:01 -07001678 // TODO(aml-jobscheduler): Think about how to do it properly.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001679 t.traceBegin("StartJobScheduler");
Makoto Onuki792de8d2019-07-16 16:19:01 -07001680 mSystemServiceManager.startService(JOB_SCHEDULER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001681 t.traceEnd();
Christopher Tatefa380e92014-05-19 13:46:29 -07001682
Felipe Leme3aad1be2019-05-31 11:43:12 -07001683 t.traceBegin("StartSoundTrigger");
Arunesh Mishraa772e5f2016-01-25 10:33:11 -08001684 mSystemServiceManager.startService(SoundTriggerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001685 t.traceEnd();
Arunesh Mishraa772e5f2016-01-25 10:33:11 -08001686
Felipe Leme3aad1be2019-05-31 11:43:12 -07001687 t.traceBegin("StartTrustManager");
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001688 mSystemServiceManager.startService(TrustManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001689 t.traceEnd();
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -07001690
Narayan Kamath1c888f62017-10-30 14:35:15 +00001691 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_BACKUP)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001692 t.traceBegin("StartBackupManager");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001693 mSystemServiceManager.startService(BACKUP_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001694 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001695 }
1696
1697 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_APP_WIDGETS)
Christine Franksea7d71b2018-07-03 14:46:07 -07001698 || context.getResources().getBoolean(R.bool.config_enableAppWidgetService)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001699 t.traceBegin("StartAppWidgetService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001700 mSystemServiceManager.startService(APPWIDGET_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001701 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001702 }
1703
Philip P. Moltmann5d894502019-01-17 10:31:00 -08001704 // Grants default permissions and defines roles
Felipe Leme3aad1be2019-05-31 11:43:12 -07001705 t.traceBegin("StartRoleManagerService");
Philip P. Moltmann5d894502019-01-17 10:31:00 -08001706 mSystemServiceManager.startService(new RoleManagerService(
1707 mSystemContext, new LegacyRoleResolutionPolicy(mSystemContext)));
Felipe Leme3aad1be2019-05-31 11:43:12 -07001708 t.traceEnd();
Philip P. Moltmann5d894502019-01-17 10:31:00 -08001709
Narayan Kamath1c888f62017-10-30 14:35:15 +00001710 // We need to always start this service, regardless of whether the
1711 // FEATURE_VOICE_RECOGNIZERS feature is set, because it needs to take care
1712 // of initializing various settings. It will internally modify its behavior
1713 // based on that feature.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001714 t.traceBegin("StartVoiceRecognitionManager");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001715 mSystemServiceManager.startService(VOICE_RECOGNITION_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001716 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001717
1718 if (GestureLauncherService.isGestureLauncherEnabled(context.getResources())) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001719 t.traceBegin("StartGestureLauncher");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001720 mSystemServiceManager.startService(GestureLauncherService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001721 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001722 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001723 t.traceBegin("StartSensorNotification");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001724 mSystemServiceManager.startService(SensorNotificationService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001725 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001726
Arthur Ishiguroc88b3ce2020-01-23 13:06:37 -08001727 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_CONTEXTHUB)) {
1728 t.traceBegin("StartContextHubSystemService");
1729 mSystemServiceManager.startService(ContextHubSystemService.class);
1730 t.traceEnd();
1731 }
Narayan Kamath1c888f62017-10-30 14:35:15 +00001732
Felipe Leme3aad1be2019-05-31 11:43:12 -07001733 t.traceBegin("StartDiskStatsService");
Nick Pelly038cabe2010-09-23 16:12:11 -07001734 try {
Dan Egnor621bc542010-03-25 16:20:14 -07001735 ServiceManager.addService("diskstats", new DiskStatsService(context));
1736 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001737 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -07001738 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001739 t.traceEnd();
Sen Hubde75702010-05-28 01:54:03 -07001740
Felipe Leme3aad1be2019-05-31 11:43:12 -07001741 t.traceBegin("RuntimeService");
Neil Fullerab0b81e2018-11-20 19:37:22 +00001742 try {
1743 ServiceManager.addService("runtime", new RuntimeService(context));
1744 } catch (Throwable e) {
1745 reportWtf("starting RuntimeService", e);
1746 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001747 t.traceEnd();
Neil Fullerab0b81e2018-11-20 19:37:22 +00001748
Neil Fullercd1a1092017-09-13 21:59:59 +01001749 // timezone.RulesManagerService will prevent a device starting up if the chain of trust
1750 // required for safe time zone updates might be broken. RuleManagerService cannot do
1751 // this check when mOnlyCore == true, so we don't enable the service in this case.
1752 // This service requires that JobSchedulerService is already started when it starts.
1753 final boolean startRulesManagerService =
1754 !mOnlyCore && context.getResources().getBoolean(
1755 R.bool.config_enableUpdateableTimeZoneRules);
1756 if (startRulesManagerService) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001757 t.traceBegin("StartTimeZoneRulesManagerService");
Neil Fullercd1a1092017-09-13 21:59:59 +01001758 mSystemServiceManager.startService(TIME_ZONE_RULES_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001759 t.traceEnd();
Neil Fullercd1a1092017-09-13 21:59:59 +01001760 }
1761
Steve Paik117fcb02018-09-13 09:43:54 -07001762 if (!isWatch && !disableNetworkTime) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001763 t.traceBegin("StartNetworkTimeUpdateService");
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001764 try {
Neil Fuller290e90f2020-01-14 15:42:16 +00001765 networkTimeUpdater = new NetworkTimeUpdateService(context);
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001766 ServiceManager.addService("network_time_update_service", networkTimeUpdater);
1767 } catch (Throwable e) {
1768 reportWtf("starting NetworkTimeUpdate service", e);
1769 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001770 t.traceEnd();
Amith Yamasani6734b9f2010-09-13 16:24:08 -07001771 }
John Grossmanc1576732012-02-01 15:23:33 -08001772
Felipe Leme3aad1be2019-05-31 11:43:12 -07001773 t.traceBegin("CertBlacklister");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001774 try {
1775 CertBlacklister blacklister = new CertBlacklister(context);
1776 } catch (Throwable e) {
1777 reportWtf("starting CertBlacklister", e);
Geremy Condra3d33c262012-05-06 18:32:19 -07001778 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001779 t.traceEnd();
Jim Miller5ecd8112013-01-09 18:50:26 -08001780
Narayan Kamath1c888f62017-10-30 14:35:15 +00001781 if (EmergencyAffordanceManager.ENABLED) {
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08001782 // EmergencyMode service
Felipe Leme3aad1be2019-05-31 11:43:12 -07001783 t.traceBegin("StartEmergencyAffordanceService");
Selim Cinek705442f2016-09-13 16:02:33 -07001784 mSystemServiceManager.startService(EmergencyAffordanceService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001785 t.traceEnd();
Selim Cinek705442f2016-09-13 16:02:33 -07001786 }
1787
Narayan Kamath1c888f62017-10-30 14:35:15 +00001788 // Dreams (interactive idle-time views, a/k/a screen savers, and doze mode)
Felipe Leme3aad1be2019-05-31 11:43:12 -07001789 t.traceBegin("StartDreamManager");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001790 mSystemServiceManager.startService(DreamManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001791 t.traceEnd();
Svetoslavb3038ec2013-02-13 14:39:30 -08001792
Felipe Leme3aad1be2019-05-31 11:43:12 -07001793 t.traceBegin("AddGraphicsStatsService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001794 ServiceManager.addService(GraphicsStatsService.GRAPHICS_STATS_SERVICE,
Christine Franksea7d71b2018-07-03 14:46:07 -07001795 new GraphicsStatsService(context));
Felipe Leme3aad1be2019-05-31 11:43:12 -07001796 t.traceEnd();
John Reckedc524c2015-03-18 15:24:33 -07001797
Narayan Kamath1c888f62017-10-30 14:35:15 +00001798 if (CoverageService.ENABLED) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001799 t.traceBegin("AddCoverageService");
Allen Hair1f556e32016-11-11 15:42:50 -08001800 ServiceManager.addService(CoverageService.COVERAGE_SERVICE, new CoverageService());
Felipe Leme3aad1be2019-05-31 11:43:12 -07001801 t.traceEnd();
Allen Hair1f556e32016-11-11 15:42:50 -08001802 }
1803
Jeff Brown2c43c332014-06-12 22:38:59 -07001804 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_PRINTING)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001805 t.traceBegin("StartPrintManager");
Jeff Brown2c43c332014-06-12 22:38:59 -07001806 mSystemServiceManager.startService(PRINT_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001807 t.traceEnd();
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07001808 }
Jeff Brown69b07162013-11-07 00:30:16 -08001809
Eugene Susla7c3eef22017-03-10 14:25:58 -08001810 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_COMPANION_DEVICE_SETUP)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001811 t.traceBegin("StartCompanionDeviceManager");
Eugene Susla7c3eef22017-03-10 14:25:58 -08001812 mSystemServiceManager.startService(COMPANION_DEVICE_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001813 t.traceEnd();
Eugene Susla7c3eef22017-03-10 14:25:58 -08001814 }
Eugene Susla6ed45d82017-01-22 13:52:51 -08001815
Felipe Leme3aad1be2019-05-31 11:43:12 -07001816 t.traceBegin("StartRestrictionManager");
Jeff Brown2c43c332014-06-12 22:38:59 -07001817 mSystemServiceManager.startService(RestrictionsManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001818 t.traceEnd();
Amith Yamasanif20d6402014-05-24 15:34:37 -07001819
Felipe Leme3aad1be2019-05-31 11:43:12 -07001820 t.traceBegin("StartMediaSessionService");
Jeff Brown2c43c332014-06-12 22:38:59 -07001821 mSystemServiceManager.startService(MediaSessionService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001822 t.traceEnd();
RoboErik01fe6612014-02-13 14:19:04 -08001823
Yuncheol Heoa0c4a062014-07-10 20:49:27 +09001824 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_HDMI_CEC)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001825 t.traceBegin("StartHdmiControlService");
Yuncheol Heoa0c4a062014-07-10 20:49:27 +09001826 mSystemServiceManager.startService(HdmiControlService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001827 t.traceEnd();
Yuncheol Heoa0c4a062014-07-10 20:49:27 +09001828 }
Jungshik Jang0792d372014-04-23 17:57:26 +09001829
Conrad Chen558acf92017-04-05 17:31:01 -07001830 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_LIVE_TV)
1831 || mPackageManager.hasSystemFeature(PackageManager.FEATURE_LEANBACK)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001832 t.traceBegin("StartTvInputManager");
Dongwon Kang0fdcb742014-07-24 16:28:35 +09001833 mSystemServiceManager.startService(TvInputManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001834 t.traceEnd();
Dongwon Kang0fdcb742014-07-24 16:28:35 +09001835 }
Jae Seo39570912014-02-20 18:23:25 -08001836
Dongwon Kangd8b81b32016-03-23 18:04:19 -07001837 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_PICTURE_IN_PICTURE)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001838 t.traceBegin("StartMediaResourceMonitor");
Dongwon Kangd8b81b32016-03-23 18:04:19 -07001839 mSystemServiceManager.startService(MediaResourceMonitorService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001840 t.traceEnd();
Dongwon Kangd8b81b32016-03-23 18:04:19 -07001841 }
Dongwon Kang2034a4c2015-12-14 21:57:34 +09001842
Sujith Ramakrishnanb5b86c12016-01-28 16:53:16 -08001843 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_LEANBACK)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001844 t.traceBegin("StartTvRemoteService");
Sujith Ramakrishnanb5b86c12016-01-28 16:53:16 -08001845 mSystemServiceManager.startService(TvRemoteService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001846 t.traceEnd();
Sujith Ramakrishnanb5b86c12016-01-28 16:53:16 -08001847 }
1848
Felipe Leme3aad1be2019-05-31 11:43:12 -07001849 t.traceBegin("StartMediaRouterService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001850 try {
1851 mediaRouter = new MediaRouterService(context);
1852 ServiceManager.addService(Context.MEDIA_ROUTER_SERVICE, mediaRouter);
1853 } catch (Throwable e) {
1854 reportWtf("starting MediaRouterService", e);
1855 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001856 t.traceEnd();
Adrian Roos82142c22014-03-27 14:56:59 +01001857
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001858 final boolean hasFeatureFace
1859 = mPackageManager.hasSystemFeature(PackageManager.FEATURE_FACE);
Kevin Chyn51676d22018-11-05 18:00:43 -08001860 final boolean hasFeatureIris
1861 = mPackageManager.hasSystemFeature(PackageManager.FEATURE_IRIS);
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001862 final boolean hasFeatureFingerprint
1863 = mPackageManager.hasSystemFeature(PackageManager.FEATURE_FINGERPRINT);
1864
1865 if (hasFeatureFace) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001866 t.traceBegin("StartFaceSensor");
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001867 mSystemServiceManager.startService(FaceService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001868 t.traceEnd();
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001869 }
1870
Kevin Chyn51676d22018-11-05 18:00:43 -08001871 if (hasFeatureIris) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001872 t.traceBegin("StartIrisSensor");
Kevin Chyn51676d22018-11-05 18:00:43 -08001873 mSystemServiceManager.startService(IrisService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001874 t.traceEnd();
Kevin Chyn51676d22018-11-05 18:00:43 -08001875 }
1876
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001877 if (hasFeatureFingerprint) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001878 t.traceBegin("StartFingerprintSensor");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001879 mSystemServiceManager.startService(FingerprintService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001880 t.traceEnd();
Jeff Brown69b07162013-11-07 00:30:16 -08001881 }
Narayan Kamath1c888f62017-10-30 14:35:15 +00001882
Kevin Chyn51676d22018-11-05 18:00:43 -08001883 if (hasFeatureFace || hasFeatureIris || hasFeatureFingerprint) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001884 // Start this service after all biometric services.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001885 t.traceBegin("StartBiometricService");
Kevin Chyn352adfe2018-09-20 22:28:50 -07001886 mSystemServiceManager.startService(BiometricService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001887 t.traceEnd();
Ilya Matyukhine4675b32019-11-07 16:07:19 -08001888
1889 t.traceBegin("StartAuthService");
1890 mSystemServiceManager.startService(AuthService.class);
1891 t.traceEnd();
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001892 }
1893
Ilya Matyukhine4675b32019-11-07 16:07:19 -08001894
Felipe Leme3aad1be2019-05-31 11:43:12 -07001895 t.traceBegin("StartBackgroundDexOptService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001896 try {
1897 BackgroundDexOptService.schedule(context);
1898 } catch (Throwable e) {
1899 reportWtf("starting StartBackgroundDexOptService", e);
1900 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001901 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001902
Michael Kwan7f70fc72018-07-20 16:12:19 -07001903 if (!isWatch) {
Alan Stokesbe9ec972018-12-10 14:07:47 +00001904 // We don't run this on watches as there are no plans to use the data logged
1905 // on watch devices.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001906 t.traceBegin("StartDynamicCodeLoggingService");
Alan Stokesbe9ec972018-12-10 14:07:47 +00001907 try {
1908 DynamicCodeLoggingService.schedule(context);
1909 } catch (Throwable e) {
1910 reportWtf("starting DynamicCodeLoggingService", e);
1911 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001912 t.traceEnd();
Alan Stokesbe9ec972018-12-10 14:07:47 +00001913 }
1914
1915 if (!isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001916 t.traceBegin("StartPruneInstantAppsJobService");
Michael Kwan7f70fc72018-07-20 16:12:19 -07001917 try {
1918 PruneInstantAppsJobService.schedule(context);
1919 } catch (Throwable e) {
1920 reportWtf("StartPruneInstantAppsJobService", e);
1921 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07001922 t.traceEnd();
Narayan Kamath1c888f62017-10-30 14:35:15 +00001923 }
Narayan Kamath1c888f62017-10-30 14:35:15 +00001924
Makoto Onuki55046222016-03-08 10:49:47 -08001925 // LauncherAppsService uses ShortcutService.
Felipe Leme3aad1be2019-05-31 11:43:12 -07001926 t.traceBegin("StartShortcutServiceLifecycle");
Makoto Onuki55046222016-03-08 10:49:47 -08001927 mSystemServiceManager.startService(ShortcutService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001928 t.traceEnd();
Amith Yamasani4f582632014-02-19 14:31:52 -08001929
Felipe Leme3aad1be2019-05-31 11:43:12 -07001930 t.traceBegin("StartLauncherAppsService");
Jeff Brown2c43c332014-06-12 22:38:59 -07001931 mSystemServiceManager.startService(LauncherAppsService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001932 t.traceEnd();
Tony Mak1b708e62017-10-12 10:59:11 +01001933
Felipe Leme3aad1be2019-05-31 11:43:12 -07001934 t.traceBegin("StartCrossProfileAppsService");
Tony Mak1b708e62017-10-12 10:59:11 +01001935 mSystemServiceManager.startService(CrossProfileAppsService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001936 t.traceEnd();
Danning Chen20b32ed2019-12-18 16:52:03 -08001937
1938 t.traceBegin("StartPeopleService");
1939 mSystemServiceManager.startService(PeopleService.class);
1940 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001941 }
1942
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001943 if (!isWatch) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001944 t.traceBegin("StartMediaProjectionManager");
Michael Wrightc39d47a2014-07-08 18:07:36 -07001945 mSystemServiceManager.startService(MediaProjectionManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001946 t.traceEnd();
Michael Wrightc39d47a2014-07-08 18:07:36 -07001947 }
1948
Erik Wolsheimer640734f2018-01-29 13:57:44 -08001949 if (isWatch) {
Damien Bargiacchiae4cb672018-05-30 13:28:15 -07001950 // Must be started before services that depend it, e.g. WearConnectivityService
Felipe Leme3aad1be2019-05-31 11:43:12 -07001951 t.traceBegin("StartWearPowerService");
Damien Bargiacchiae4cb672018-05-30 13:28:15 -07001952 mSystemServiceManager.startService(WEAR_POWER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001953 t.traceEnd();
Damien Bargiacchiae4cb672018-05-30 13:28:15 -07001954
Felipe Leme3aad1be2019-05-31 11:43:12 -07001955 t.traceBegin("StartWearConnectivityService");
Calvin On5555bcc2017-02-21 16:41:43 -08001956 mSystemServiceManager.startService(WEAR_CONNECTIVITY_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001957 t.traceEnd();
Zach Johnsonb82f3b02017-01-16 15:15:25 -08001958
Felipe Leme3aad1be2019-05-31 11:43:12 -07001959 t.traceBegin("StartWearDisplayService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001960 mSystemServiceManager.startService(WEAR_DISPLAY_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001961 t.traceEnd();
Damien Bargiacchiae4cb672018-05-30 13:28:15 -07001962
Felipe Leme3aad1be2019-05-31 11:43:12 -07001963 t.traceBegin("StartWearTimeService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001964 mSystemServiceManager.startService(WEAR_TIME_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001965 t.traceEnd();
Ivan Podogovf9973822017-05-11 15:51:34 +01001966
Narayan Kamath1c888f62017-10-30 14:35:15 +00001967 if (enableLeftyService) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001968 t.traceBegin("StartWearLeftyService");
Narayan Kamath1c888f62017-10-30 14:35:15 +00001969 mSystemServiceManager.startService(WEAR_LEFTY_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001970 t.traceEnd();
Vitalii Tomkiv4887e672016-07-21 15:58:24 -07001971 }
Michael Kwan01ad0aa2018-02-28 15:19:04 -08001972
Felipe Leme3aad1be2019-05-31 11:43:12 -07001973 t.traceBegin("StartWearGlobalActionsService");
Michael Kwan01ad0aa2018-02-28 15:19:04 -08001974 mSystemServiceManager.startService(WEAR_GLOBAL_ACTIONS_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001975 t.traceEnd();
Wei Liu48d3b632016-03-29 15:26:48 -07001976 }
1977
Abhijit Adsule95862c52019-10-11 18:24:41 -07001978 if (!mPackageManager.hasSystemFeature(PackageManager.FEATURE_SLICES_DISABLED)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001979 t.traceBegin("StartSliceManagerService");
Jason Monk8f5f7ff2017-10-17 14:12:42 -04001980 mSystemServiceManager.startService(SLICE_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001981 t.traceEnd();
Jason Monk8f5f7ff2017-10-17 14:12:42 -04001982 }
1983
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -07001984 if (!disableCameraService) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001985 t.traceBegin("StartCameraServiceProxy");
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -07001986 mSystemServiceManager.startService(CameraServiceProxy.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001987 t.traceEnd();
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -07001988 }
1989
Nick Felker1bfe59d2017-10-12 13:27:02 -07001990 if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_EMBEDDED)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07001991 t.traceBegin("StartIoTSystemService");
Nick Felker1bfe59d2017-10-12 13:27:02 -07001992 mSystemServiceManager.startService(IOT_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07001993 t.traceEnd();
Nick Felker1bfe59d2017-10-12 13:27:02 -07001994 }
1995
Max Biresffac7722017-10-23 22:59:10 +00001996 // Statsd helper
Jeffrey Huang8c1ae5a2019-12-12 10:56:24 -08001997 t.traceBegin("StartStatsCompanion");
Tej Singhb2d68842020-01-08 15:03:38 -08001998 mSystemServiceManager.startServiceFromJar(
1999 STATS_COMPANION_LIFECYCLE_CLASS, STATS_COMPANION_APEX_PATH);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002000 t.traceEnd();
Max Biresffac7722017-10-23 22:59:10 +00002001
Tej Singh953ad862020-01-03 12:47:07 -08002002 // Statsd pulled atoms
2003 t.traceBegin("StartStatsPullAtomService");
2004 mSystemServiceManager.startService(STATS_PULL_ATOM_SERVICE_CLASS);
2005 t.traceEnd();
2006
Joe Onoratoe21ab7e2018-12-18 15:00:25 -08002007 // Incidentd and dumpstated helper
Felipe Leme3aad1be2019-05-31 11:43:12 -07002008 t.traceBegin("StartIncidentCompanionService");
Joe Onoratoe21ab7e2018-12-18 15:00:25 -08002009 mSystemServiceManager.startService(IncidentCompanionService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002010 t.traceEnd();
Joe Onoratoe21ab7e2018-12-18 15:00:25 -08002011
Patrick Baumann876a7332019-06-28 10:28:22 -07002012 if (safeMode) {
2013 mActivityManagerService.enterSafeMode();
2014 }
2015
Ye Wend97e1fd2014-07-24 12:56:45 -07002016 // MMS service broker
Felipe Leme3aad1be2019-05-31 11:43:12 -07002017 t.traceBegin("StartMmsService");
Ye Wend97e1fd2014-07-24 12:56:45 -07002018 mmsService = mSystemServiceManager.startService(MmsServiceBroker.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002019 t.traceEnd();
Ye Wend97e1fd2014-07-24 12:56:45 -07002020
Svet Ganov43574b02017-04-12 09:25:20 -07002021 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_AUTOFILL)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07002022 t.traceBegin("StartAutoFillService");
Svet Ganov43574b02017-04-12 09:25:20 -07002023 mSystemServiceManager.startService(AUTO_FILL_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002024 t.traceEnd();
Svet Ganov43574b02017-04-12 09:25:20 -07002025 }
Felipe Leme5381aa42016-10-13 09:02:32 -07002026
Felipe Lemec7436342019-04-10 17:45:12 -07002027 // NOTE: ClipboardService depends on ContentCapture and Autofill
Felipe Leme3aad1be2019-05-31 11:43:12 -07002028 t.traceBegin("StartClipboardService");
Felipe Lemec7436342019-04-10 17:45:12 -07002029 mSystemServiceManager.startService(ClipboardService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002030 t.traceEnd();
Felipe Lemec7436342019-04-10 17:45:12 -07002031
Sudheer Shankaf5b36962019-10-04 16:16:13 -07002032 t.traceBegin("StartBlobStoreManagerService");
2033 mSystemServiceManager.startService(BLOB_STORE_MANAGER_SERVICE_CLASS);
2034 t.traceEnd();
2035
Felipe Leme3aad1be2019-05-31 11:43:12 -07002036 t.traceBegin("AppServiceManager");
Makoto Onukidf7e4812018-09-24 14:31:25 -07002037 mSystemServiceManager.startService(AppBindingService.Lifecycle.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002038 t.traceEnd();
Makoto Onukidf7e4812018-09-24 14:31:25 -07002039
Dianne Hackborn6af0d502009-09-28 13:25:46 -07002040 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -07002041
Felipe Leme3aad1be2019-05-31 11:43:12 -07002042 t.traceBegin("MakeVibratorServiceReady");
Jeff Brown7f6c2312012-04-13 20:38:38 -07002043 try {
2044 vibrator.systemReady();
2045 } catch (Throwable e) {
2046 reportWtf("making Vibrator Service ready", e);
2047 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002048 t.traceEnd();
Jeff Brown7f6c2312012-04-13 20:38:38 -07002049
Felipe Leme3aad1be2019-05-31 11:43:12 -07002050 t.traceBegin("MakeLockSettingsServiceReady");
Dan Morrille4d9a012013-03-28 18:10:43 -07002051 if (lockSettings != null) {
2052 try {
2053 lockSettings.systemReady();
2054 } catch (Throwable e) {
2055 reportWtf("making Lock Settings Service ready", e);
2056 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -03002057 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002058 t.traceEnd();
Felipe Ramosf35df5b2012-09-18 18:26:27 -03002059
Amith Yamasani817ec492013-12-20 13:27:30 -08002060 // Needed by DevicePolicyManager for initialization
Felipe Leme3aad1be2019-05-31 11:43:12 -07002061 t.traceBegin("StartBootPhaseLockSettingsReady");
Felipe Leme137e7812019-06-10 11:38:05 -07002062 mSystemServiceManager.startBootPhase(t, SystemService.PHASE_LOCK_SETTINGS_READY);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002063 t.traceEnd();
Dianne Hackbornd6847842010-01-12 18:14:19 -08002064
Felipe Leme3aad1be2019-05-31 11:43:12 -07002065 t.traceBegin("StartBootPhaseSystemServicesReady");
Felipe Leme137e7812019-06-10 11:38:05 -07002066 mSystemServiceManager.startBootPhase(t, SystemService.PHASE_SYSTEM_SERVICES_READY);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002067 t.traceEnd();
Joe Onorato30275482009-07-08 17:09:14 -07002068
Felipe Leme3aad1be2019-05-31 11:43:12 -07002069 t.traceBegin("MakeWindowManagerServiceReady");
Dianne Hackborn661cd522011-08-22 00:26:20 -07002070 try {
2071 wm.systemReady();
2072 } catch (Throwable e) {
2073 reportWtf("making Window Manager Service ready", e);
2074 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002075 t.traceEnd();
Joe Onoratodc565f42010-10-04 15:27:22 -04002076
Jeff Brownb09abc12011-01-13 21:08:27 -08002077 if (safeMode) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002078 mActivityManagerService.showSafeModeOverlay();
Jeff Brownb09abc12011-01-13 21:08:27 -08002079 }
2080
Joe Onoratodc565f42010-10-04 15:27:22 -04002081 // Update the configuration for this context by hand, because we're going
2082 // to start using it before the config change done in wm.systemReady() will
2083 // propagate to it.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002084 final Configuration config = wm.computeNewConfiguration(DEFAULT_DISPLAY);
Joe Onoratodc565f42010-10-04 15:27:22 -04002085 DisplayMetrics metrics = new DisplayMetrics();
Christine Franksea7d71b2018-07-03 14:46:07 -07002086 WindowManager w = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
Joe Onoratodc565f42010-10-04 15:27:22 -04002087 w.getDefaultDisplay().getMetrics(metrics);
2088 context.getResources().updateConfiguration(config, metrics);
2089
Alan Viverette395cd012015-08-11 17:27:04 -04002090 // The system context's theme may be configuration-dependent.
2091 final Theme systemTheme = context.getTheme();
2092 if (systemTheme.getChangingConfigurations() != 0) {
2093 systemTheme.rebase();
2094 }
2095
Felipe Leme3aad1be2019-05-31 11:43:12 -07002096 t.traceBegin("MakePowerManagerServiceReady");
Jeff Brownaa202a62012-08-21 22:14:26 -07002097 try {
Jeff Brown6f357d32014-01-15 20:40:55 -08002098 // TODO: use boot phase
Jeff Brown21392762014-06-13 19:00:36 -07002099 mPowerManagerService.systemReady(mActivityManagerService.getAppOpsService());
Jeff Brownaa202a62012-08-21 22:14:26 -07002100 } catch (Throwable e) {
2101 reportWtf("making Power Manager Service ready", e);
2102 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002103 t.traceEnd();
Jeff Brownaa202a62012-08-21 22:14:26 -07002104
Svet Ganov3c499ea2019-07-26 17:45:56 -07002105 // Permission policy service
2106 t.traceBegin("StartPermissionPolicyService");
2107 mSystemServiceManager.startService(PermissionPolicyService.class);
2108 t.traceEnd();
2109
Felipe Leme3aad1be2019-05-31 11:43:12 -07002110 t.traceBegin("MakePackageManagerServiceReady");
Fyodor Kupolovc56106a2017-10-06 17:02:21 -07002111 mPackageManagerService.systemReady();
Felipe Leme3aad1be2019-05-31 11:43:12 -07002112 t.traceEnd();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002113
Songchun Fan43f18ea2019-12-11 17:54:38 -08002114 if (mIncrementalManagerService != null) {
2115 t.traceBegin("MakeIncrementalManagerServiceReady");
2116 mIncrementalManagerService.systemReady();
2117 t.traceEnd();
2118 }
2119
Felipe Leme3aad1be2019-05-31 11:43:12 -07002120 t.traceBegin("MakeDisplayManagerServiceReady");
Jeff Brownbd6e1502012-08-28 03:27:37 -07002121 try {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002122 // TODO: use boot phase and communicate these flags some other way
Jeff Brown2c43c332014-06-12 22:38:59 -07002123 mDisplayManagerService.systemReady(safeMode, mOnlyCore);
Jeff Brownbd6e1502012-08-28 03:27:37 -07002124 } catch (Throwable e) {
2125 reportWtf("making Display Manager Service ready", e);
2126 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002127 t.traceEnd();
Jeff Brownbd6e1502012-08-28 03:27:37 -07002128
joonyoung.cho2f30cc12015-04-08 13:56:34 +09002129 mSystemServiceManager.setSafeMode(safeMode);
2130
Daichi Hironoedfcb002017-10-10 17:22:58 +09002131 // Start device specific services
Felipe Leme3aad1be2019-05-31 11:43:12 -07002132 t.traceBegin("StartDeviceSpecificServices");
Daichi Hironoedfcb002017-10-10 17:22:58 +09002133 final String[] classes = mSystemContext.getResources().getStringArray(
2134 R.array.config_deviceSpecificSystemServices);
2135 for (final String className : classes) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07002136 t.traceBegin("StartDeviceSpecificServices " + className);
Daichi Hironoedfcb002017-10-10 17:22:58 +09002137 try {
2138 mSystemServiceManager.startService(className);
2139 } catch (Throwable e) {
2140 reportWtf("starting " + className, e);
2141 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002142 t.traceEnd();
Daichi Hironoedfcb002017-10-10 17:22:58 +09002143 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002144 t.traceEnd();
Daichi Hironoedfcb002017-10-10 17:22:58 +09002145
Felipe Leme3aad1be2019-05-31 11:43:12 -07002146 t.traceBegin("StartBootPhaseDeviceSpecificServicesReady");
Felipe Leme137e7812019-06-10 11:38:05 -07002147 mSystemServiceManager.startBootPhase(t, SystemService.PHASE_DEVICE_SPECIFIC_SERVICES_READY);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002148 t.traceEnd();
Daichi Hironoedfcb002017-10-10 17:22:58 +09002149
Terry Wangecc0d1b2019-10-17 17:05:18 -07002150 t.traceBegin("AppSearchManagerService");
2151 mSystemServiceManager.startService(APP_SEARCH_MANAGER_SERVICE_CLASS);
2152 t.traceEnd();
2153
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07002154 // These are needed to propagate to the runnable below.
Jeff Sharkey350083e2011-06-29 10:45:16 -07002155 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -07002156 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -07002157 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07002158 final ConnectivityService connectivityF = connectivity;
Bai Taoa58a8752010-07-13 15:32:16 +08002159 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -07002160 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
Jeff Brown6ec6f792012-04-17 16:52:41 -07002161 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -07002162 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Jeff Brown69b07162013-11-07 00:30:16 -08002163 final MediaRouterService mediaRouterF = mediaRouter;
Ye Wend97e1fd2014-07-24 12:56:45 -07002164 final MmsServiceBroker mmsServiceF = mmsService;
Nathan Haroldb7282172017-09-11 19:50:19 -07002165 final IpSecService ipSecServiceF = ipSecService;
Keun-young Park4136d2d2017-05-08 14:51:59 -07002166 final WindowManagerService windowManagerF = wm;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002167
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07002168 // We now tell the activity manager it is okay to run third party
2169 // code. It will call back into us once it has gotten to the state
2170 // where third party code can really run (but before it has actually
2171 // started launching the initial applications), for us to complete our
2172 // initialization.
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002173 mActivityManagerService.systemReady(() -> {
2174 Slog.i(TAG, "Making services ready");
Felipe Leme3aad1be2019-05-31 11:43:12 -07002175 t.traceBegin("StartActivityManagerReadyPhase");
Felipe Leme137e7812019-06-10 11:38:05 -07002176 mSystemServiceManager.startBootPhase(t, SystemService.PHASE_ACTIVITY_MANAGER_READY);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002177 t.traceEnd();
2178 t.traceBegin("StartObservingNativeCrashes");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002179 try {
2180 mActivityManagerService.startObservingNativeCrashes();
2181 } catch (Throwable e) {
2182 reportWtf("observing native crashes", e);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07002183 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002184 t.traceEnd();
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002185
Keun-young Parkd80e8942017-01-27 11:30:19 -08002186 // No dependency on Webview preparation in system server. But this should
Torne (Richard Coles)ff937ac2017-10-02 17:09:32 -04002187 // be completed before allowing 3rd party
Keun-young Parkd80e8942017-01-27 11:30:19 -08002188 final String WEBVIEW_PREPARATION = "WebViewFactoryPreparation";
2189 Future<?> webviewPrep = null;
Torne (Richard Coles)ff937ac2017-10-02 17:09:32 -04002190 if (!mOnlyCore && mWebViewUpdateService != null) {
Felipe Lemeb68b7692019-10-09 10:43:03 -07002191 webviewPrep = SystemServerInitThreadPool.submit(() -> {
Keun-young Parkd80e8942017-01-27 11:30:19 -08002192 Slog.i(TAG, WEBVIEW_PREPARATION);
Felipe Leme137e7812019-06-10 11:38:05 -07002193 TimingsTraceAndSlog traceLog = TimingsTraceAndSlog.newAsyncLog();
Keun-young Parkd80e8942017-01-27 11:30:19 -08002194 traceLog.traceBegin(WEBVIEW_PREPARATION);
Narayan Kamath97780462017-02-06 20:24:08 +00002195 ConcurrentUtils.waitForFutureNoInterrupt(mZygotePreload, "Zygote preload");
2196 mZygotePreload = null;
Keun-young Parkd80e8942017-01-27 11:30:19 -08002197 mWebViewUpdateService.prepareWebViewInSystemServer();
2198 traceLog.traceEnd();
2199 }, WEBVIEW_PREPARATION);
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002200 }
2201
Keun-young Park067cf3e2017-06-05 12:20:41 -07002202 if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE)) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07002203 t.traceBegin("StartCarServiceHelperService");
Steve Paik94292a32018-01-26 17:16:53 -08002204 mSystemServiceManager.startService(CAR_SERVICE_HELPER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002205 t.traceEnd();
Keun-young Park067cf3e2017-06-05 12:20:41 -07002206 }
2207
Felipe Leme3aad1be2019-05-31 11:43:12 -07002208 t.traceBegin("StartSystemUI");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002209 try {
Keun-young Park4136d2d2017-05-08 14:51:59 -07002210 startSystemUi(context, windowManagerF);
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002211 } catch (Throwable e) {
2212 reportWtf("starting System UI", e);
2213 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002214 t.traceEnd();
Rene Mayrhofer7d6c8e52018-11-28 11:32:40 -08002215 // Enable airplane mode in safe mode. setAirplaneMode() cannot be called
2216 // earlier as it sends broadcasts to other services.
2217 // TODO: This may actually be too late if radio firmware already started leaking
2218 // RF before the respective services start. However, fixing this requires changes
2219 // to radio firmware and interfaces.
2220 if (safeMode) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07002221 t.traceBegin("EnableAirplaneModeInSafeMode");
Rene Mayrhofer7d6c8e52018-11-28 11:32:40 -08002222 try {
2223 connectivityF.setAirplaneMode(true);
2224 } catch (Throwable e) {
2225 reportWtf("enabling Airplane Mode during Safe Mode bootup", e);
2226 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002227 t.traceEnd();
Rene Mayrhofer7d6c8e52018-11-28 11:32:40 -08002228 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002229 t.traceBegin("MakeNetworkManagementServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002230 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002231 if (networkManagementF != null) {
2232 networkManagementF.systemReady();
2233 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002234 } catch (Throwable e) {
2235 reportWtf("making Network Managment Service ready", e);
2236 }
2237 CountDownLatch networkPolicyInitReadySignal = null;
2238 if (networkPolicyF != null) {
2239 networkPolicyInitReadySignal = networkPolicyF
2240 .networkScoreAndNetworkManagementServiceReady();
2241 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002242 t.traceEnd();
2243 t.traceBegin("MakeIpSecServiceReady");
Nathan Haroldb7282172017-09-11 19:50:19 -07002244 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002245 if (ipSecServiceF != null) {
2246 ipSecServiceF.systemReady();
2247 }
Nathan Haroldb7282172017-09-11 19:50:19 -07002248 } catch (Throwable e) {
2249 reportWtf("making IpSec Service ready", e);
2250 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002251 t.traceEnd();
2252 t.traceBegin("MakeNetworkStatsServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002253 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002254 if (networkStatsF != null) {
2255 networkStatsF.systemReady();
2256 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002257 } catch (Throwable e) {
2258 reportWtf("making Network Stats Service ready", e);
2259 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002260 t.traceEnd();
2261 t.traceBegin("MakeConnectivityServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002262 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002263 if (connectivityF != null) {
2264 connectivityF.systemReady();
2265 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002266 } catch (Throwable e) {
2267 reportWtf("making Connectivity Service ready", e);
2268 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002269 t.traceEnd();
2270 t.traceBegin("MakeNetworkPolicyServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002271 try {
2272 if (networkPolicyF != null) {
2273 networkPolicyF.systemReady(networkPolicyInitReadySignal);
2274 }
2275 } catch (Throwable e) {
2276 reportWtf("making Network Policy Service ready", e);
2277 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002278 t.traceEnd();
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002279
Fyodor Kupolovcd824ef2017-02-07 11:25:14 -08002280 // Wait for all packages to be prepared
2281 mPackageManagerService.waitForAppDataPrepared();
2282
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002283 // It is now okay to let the various system services start their
2284 // third party code...
Felipe Leme3aad1be2019-05-31 11:43:12 -07002285 t.traceBegin("PhaseThirdPartyAppsCanStart");
Keun-young Park9b73a542017-02-01 12:09:58 -08002286 // confirm webview completion before starting 3rd party
2287 if (webviewPrep != null) {
2288 ConcurrentUtils.waitForFutureNoInterrupt(webviewPrep, WEBVIEW_PREPARATION);
2289 }
Felipe Leme137e7812019-06-10 11:38:05 -07002290 mSystemServiceManager.startBootPhase(t, SystemService.PHASE_THIRD_PARTY_APPS_CAN_START);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002291 t.traceEnd();
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002292
Felipe Leme3aad1be2019-05-31 11:43:12 -07002293 t.traceBegin("StartNetworkStack");
Remi NGUYEN VANc7054c52019-03-12 11:50:22 +09002294 try {
Chalard Jeand74219b2019-04-01 13:04:07 +09002295 // Note : the network stack is creating on-demand objects that need to send
2296 // broadcasts, which means it currently depends on being started after
2297 // ActivityManagerService.mSystemReady and ActivityManagerService.mProcessesReady
2298 // are set to true. Be careful if moving this to a different place in the
2299 // startup sequence.
Roshan Pius7e6f5f52019-06-27 14:14:40 -07002300 NetworkStackClient.getInstance().start();
Remi NGUYEN VANc7054c52019-03-12 11:50:22 +09002301 } catch (Throwable e) {
2302 reportWtf("starting Network Stack", e);
2303 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002304 t.traceEnd();
Remi NGUYEN VANc7054c52019-03-12 11:50:22 +09002305
markchien0f63ca62019-09-30 14:40:57 +08002306 t.traceBegin("StartTethering");
2307 try {
markchienae8aa642019-12-16 20:15:20 +08002308 // TODO: hide implementation details, b/146312721.
2309 ConnectivityModuleConnector.getInstance().startModuleService(
2310 ITetheringConnector.class.getName(),
2311 PERMISSION_MAINLINE_NETWORK_STACK, service -> {
2312 ServiceManager.addService(Context.TETHERING_SERVICE, service,
2313 false /* allowIsolated */,
2314 DUMP_FLAG_PRIORITY_HIGH | DUMP_FLAG_PRIORITY_NORMAL);
2315 });
markchien0f63ca62019-09-30 14:40:57 +08002316 } catch (Throwable e) {
2317 reportWtf("starting Tethering", e);
2318 }
2319 t.traceEnd();
2320
Felipe Leme3aad1be2019-05-31 11:43:12 -07002321 t.traceBegin("MakeCountryDetectionServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002322 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002323 if (countryDetectorF != null) {
2324 countryDetectorF.systemRunning();
2325 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002326 } catch (Throwable e) {
2327 reportWtf("Notifying CountryDetectorService running", e);
2328 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002329 t.traceEnd();
2330 t.traceBegin("MakeNetworkTimeUpdateReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002331 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002332 if (networkTimeUpdaterF != null) {
2333 networkTimeUpdaterF.systemRunning();
2334 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002335 } catch (Throwable e) {
2336 reportWtf("Notifying NetworkTimeService running", e);
2337 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002338 t.traceEnd();
2339 t.traceBegin("MakeInputManagerServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002340 try {
2341 // TODO(BT) Pass parameter to input manager
Christine Franksea7d71b2018-07-03 14:46:07 -07002342 if (inputManagerF != null) {
2343 inputManagerF.systemRunning();
2344 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002345 } catch (Throwable e) {
2346 reportWtf("Notifying InputManagerService running", e);
2347 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002348 t.traceEnd();
2349 t.traceBegin("MakeTelephonyRegistryReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002350 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002351 if (telephonyRegistryF != null) {
2352 telephonyRegistryF.systemRunning();
2353 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002354 } catch (Throwable e) {
2355 reportWtf("Notifying TelephonyRegistry running", e);
2356 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002357 t.traceEnd();
2358 t.traceBegin("MakeMediaRouterServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002359 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002360 if (mediaRouterF != null) {
2361 mediaRouterF.systemRunning();
2362 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002363 } catch (Throwable e) {
2364 reportWtf("Notifying MediaRouterService running", e);
2365 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002366 t.traceEnd();
2367 t.traceBegin("MakeMmsServiceReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002368 try {
Christine Franksea7d71b2018-07-03 14:46:07 -07002369 if (mmsServiceF != null) {
2370 mmsServiceF.systemRunning();
2371 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002372 } catch (Throwable e) {
2373 reportWtf("Notifying MmsService running", e);
2374 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002375 t.traceEnd();
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002376
Felipe Leme3aad1be2019-05-31 11:43:12 -07002377 t.traceBegin("IncidentDaemonReady");
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002378 try {
2379 // TODO: Switch from checkService to getService once it's always
2380 // in the build and should reliably be there.
2381 final IIncidentManager incident = IIncidentManager.Stub.asInterface(
Yi Jinf32af482017-08-11 15:00:49 -07002382 ServiceManager.getService(Context.INCIDENT_SERVICE));
Christine Franksea7d71b2018-07-03 14:46:07 -07002383 if (incident != null) {
2384 incident.systemRunning();
2385 }
Fyodor Kupolov6dd2ba22016-12-07 13:03:17 -08002386 } catch (Throwable e) {
2387 reportWtf("Notifying incident daemon running", e);
2388 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07002389 t.traceEnd();
2390 }, t);
Felipe Leme137e7812019-06-10 11:38:05 -07002391
2392 t.traceEnd(); // startOtherServices
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002393 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04002394
Felipe Leme83e8f242019-08-14 16:57:56 +00002395 private boolean deviceHasConfigString(@NonNull Context context, @StringRes int resId) {
2396 String serviceName = context.getString(resId);
2397 return !TextUtils.isEmpty(serviceName);
2398 }
2399
Felipe Leme3aad1be2019-05-31 11:43:12 -07002400 private void startSystemCaptionsManagerService(@NonNull Context context,
2401 @NonNull TimingsTraceAndSlog t) {
Felipe Leme83e8f242019-08-14 16:57:56 +00002402 if (!deviceHasConfigString(context, R.string.config_defaultSystemCaptionsManagerService)) {
Robert Berry835123d2019-03-18 16:33:42 -04002403 Slog.d(TAG, "SystemCaptionsManagerService disabled because resource is not overlaid");
2404 return;
2405 }
2406
Felipe Leme3aad1be2019-05-31 11:43:12 -07002407 t.traceBegin("StartSystemCaptionsManagerService");
Robert Berry835123d2019-03-18 16:33:42 -04002408 mSystemServiceManager.startService(SYSTEM_CAPTIONS_MANAGER_SERVICE_CLASS);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002409 t.traceEnd();
Robert Berry835123d2019-03-18 16:33:42 -04002410 }
2411
Felipe Leme3aad1be2019-05-31 11:43:12 -07002412 private void startContentCaptureService(@NonNull Context context,
2413 @NonNull TimingsTraceAndSlog t) {
Felipe Leme14ef4612019-02-07 12:24:38 -08002414 // First check if it was explicitly enabled by DeviceConfig
Perumaal S70738732019-02-20 15:58:40 -08002415 boolean explicitlyEnabled = false;
Felipe Leme14ef4612019-02-07 12:24:38 -08002416 String settings = DeviceConfig.getProperty(DeviceConfig.NAMESPACE_CONTENT_CAPTURE,
2417 ContentCaptureManager.DEVICE_CONFIG_PROPERTY_SERVICE_EXPLICITLY_ENABLED);
2418 if (settings != null && !settings.equalsIgnoreCase("default")) {
Perumaal S70738732019-02-20 15:58:40 -08002419 explicitlyEnabled = Boolean.parseBoolean(settings);
2420 if (explicitlyEnabled) {
Felipe Leme70bcf382019-01-24 14:55:03 -08002421 Slog.d(TAG, "ContentCaptureService explicitly enabled by DeviceConfig");
Felipe Leme14ef4612019-02-07 12:24:38 -08002422 } else {
2423 Slog.d(TAG, "ContentCaptureService explicitly disabled by DeviceConfig");
Felipe Leme658c8e42018-11-30 12:49:45 -08002424 return;
Felipe Leme14ef4612019-02-07 12:24:38 -08002425 }
Felipe Leme658c8e42018-11-30 12:49:45 -08002426 }
Felipe Leme14ef4612019-02-07 12:24:38 -08002427
2428 // Then check if OEM overlaid the resource that defines the service.
Perumaal S70738732019-02-20 15:58:40 -08002429 if (!explicitlyEnabled) {
Felipe Leme83e8f242019-08-14 16:57:56 +00002430 if (!deviceHasConfigString(context, R.string.config_defaultContentCaptureService)) {
Felipe Leme14ef4612019-02-07 12:24:38 -08002431 Slog.d(TAG, "ContentCaptureService disabled because resource is not overlaid");
2432 return;
2433 }
2434 }
2435
Felipe Leme3aad1be2019-05-31 11:43:12 -07002436 t.traceBegin("StartContentCaptureService");
Felipe Leme749b8892018-12-03 16:30:30 -08002437 mSystemServiceManager.startService(CONTENT_CAPTURE_MANAGER_SERVICE_CLASS);
Felipe Leme141864d2019-02-27 17:01:51 -08002438
2439 ContentCaptureManagerInternal ccmi =
2440 LocalServices.getService(ContentCaptureManagerInternal.class);
2441 if (ccmi != null && mActivityManagerService != null) {
2442 mActivityManagerService.setContentCaptureManager(ccmi);
2443 }
2444
Felipe Leme3aad1be2019-05-31 11:43:12 -07002445 t.traceEnd();
Felipe Leme658c8e42018-11-30 12:49:45 -08002446 }
2447
Felipe Leme3aad1be2019-05-31 11:43:12 -07002448 private void startAttentionService(@NonNull Context context, @NonNull TimingsTraceAndSlog t) {
Alex Salo7a6e3a62019-02-27 15:08:15 -08002449 if (!AttentionManagerService.isServiceConfigured(context)) {
2450 Slog.d(TAG, "AttentionService is not configured on this device");
2451 return;
2452 }
2453
Felipe Leme3aad1be2019-05-31 11:43:12 -07002454 t.traceBegin("StartAttentionManagerService");
Alex Salo7a6e3a62019-02-27 15:08:15 -08002455 mSystemServiceManager.startService(AttentionManagerService.class);
Felipe Leme3aad1be2019-05-31 11:43:12 -07002456 t.traceEnd();
Alex Salo7a6e3a62019-02-27 15:08:15 -08002457 }
2458
Robert Berry835123d2019-03-18 16:33:42 -04002459 private static void startSystemUi(Context context, WindowManagerService windowManager) {
Winson Chungf2b41772019-11-06 15:00:48 -08002460 PackageManagerInternal pm = LocalServices.getService(PackageManagerInternal.class);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04002461 Intent intent = new Intent();
Winson Chungf2b41772019-11-06 15:00:48 -08002462 intent.setComponent(pm.getSystemUiServiceComponent());
Jeff Sharkey2f3e3532015-12-21 14:16:43 -07002463 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
Dianne Hackborn40e9f292012-11-27 19:12:23 -08002464 //Slog.d(TAG, "Starting service: " + intent);
Xiaohui Chen70f6c382015-04-28 14:21:43 -07002465 context.startServiceAsUser(intent, UserHandle.SYSTEM);
Keun-young Park4136d2d2017-05-08 14:51:59 -07002466 windowManager.onSystemUiStarted();
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04002467 }
Nicolas Geoffray27c07372015-11-05 16:54:09 +00002468}