SystemServer.java revision f547d679c058ed00de78a32146d04b75254df7ec
1/*
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
19import com.android.server.am.ActivityManagerService;
20import com.android.internal.app.ShutdownThread;
21import com.android.internal.os.BinderInternal;
22import com.android.internal.os.SamplingProfilerIntegration;
23import com.trustedlogic.trustednfc.android.server.NfcService;
24
25import dalvik.system.VMRuntime;
26import dalvik.system.Zygote;
27
28import android.app.ActivityManagerNative;
29import android.bluetooth.BluetoothAdapter;
30import android.content.ComponentName;
31import android.content.ContentResolver;
32import android.content.ContentService;
33import android.content.Context;
34import android.content.Intent;
35import android.content.pm.IPackageManager;
36import android.database.ContentObserver;
37import android.database.Cursor;
38import android.media.AudioService;
39import android.os.Looper;
40import android.os.RemoteException;
41import android.os.ServiceManager;
42import android.os.StrictMode;
43import android.os.SystemClock;
44import android.os.SystemProperties;
45import android.provider.Contacts.People;
46import android.provider.Settings;
47import android.server.BluetoothA2dpService;
48import android.server.BluetoothService;
49import android.server.search.SearchManagerService;
50import android.util.EventLog;
51import android.util.Log;
52import android.util.Slog;
53import android.accounts.AccountManagerService;
54
55import java.io.File;
56import java.util.Timer;
57import java.util.TimerTask;
58
59class ServerThread extends Thread {
60    private static final String TAG = "SystemServer";
61    private final static boolean INCLUDE_DEMO = false;
62
63    private static final int LOG_BOOT_PROGRESS_SYSTEM_RUN = 3010;
64
65    private ContentResolver mContentResolver;
66
67    private class AdbSettingsObserver extends ContentObserver {
68        public AdbSettingsObserver() {
69            super(null);
70        }
71        @Override
72        public void onChange(boolean selfChange) {
73            boolean enableAdb = (Settings.Secure.getInt(mContentResolver,
74                Settings.Secure.ADB_ENABLED, 0) > 0);
75            // setting this secure property will start or stop adbd
76           SystemProperties.set("persist.service.adb.enable", enableAdb ? "1" : "0");
77        }
78    }
79
80    @Override
81    public void run() {
82        EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
83            SystemClock.uptimeMillis());
84
85        Looper.prepare();
86
87        android.os.Process.setThreadPriority(
88                android.os.Process.THREAD_PRIORITY_FOREGROUND);
89
90        BinderInternal.disableBackgroundScheduling(true);
91        android.os.Process.setCanSelfBackground(false);
92
93        // Check whether we failed to shut down last time we tried.
94        {
95            final String shutdownAction = SystemProperties.get(
96                    ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
97            if (shutdownAction != null && shutdownAction.length() > 0) {
98                boolean reboot = (shutdownAction.charAt(0) == '1');
99
100                final String reason;
101                if (shutdownAction.length() > 1) {
102                    reason = shutdownAction.substring(1, shutdownAction.length());
103                } else {
104                    reason = null;
105                }
106
107                ShutdownThread.rebootOrShutdown(reboot, reason);
108            }
109        }
110
111        String factoryTestStr = SystemProperties.get("ro.factorytest");
112        int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
113                : Integer.parseInt(factoryTestStr);
114
115        LightsService lights = null;
116        PowerManagerService power = null;
117        BatteryService battery = null;
118        ConnectivityService connectivity = null;
119        IPackageManager pm = null;
120        Context context = null;
121        WindowManagerService wm = null;
122        BluetoothService bluetooth = null;
123        BluetoothA2dpService bluetoothA2dp = null;
124        HeadsetObserver headset = null;
125        DockObserver dock = null;
126        UsbObserver usb = null;
127        UiModeManagerService uiMode = null;
128        RecognitionManagerService recognition = null;
129        ThrottleService throttle = null;
130
131        // Critical services...
132        try {
133            Slog.i(TAG, "Entropy Service");
134            ServiceManager.addService("entropy", new EntropyService());
135
136            Slog.i(TAG, "Power Manager");
137            power = new PowerManagerService();
138            ServiceManager.addService(Context.POWER_SERVICE, power);
139
140            Slog.i(TAG, "Activity Manager");
141            context = ActivityManagerService.main(factoryTest);
142
143            Slog.i(TAG, "Telephony Registry");
144            ServiceManager.addService("telephony.registry", new TelephonyRegistry(context));
145
146            AttributeCache.init(context);
147
148            Slog.i(TAG, "Package Manager");
149            pm = PackageManagerService.main(context,
150                    factoryTest != SystemServer.FACTORY_TEST_OFF);
151
152            ActivityManagerService.setSystemProcess();
153
154            mContentResolver = context.getContentResolver();
155
156            // The AccountManager must come before the ContentService
157            try {
158                Slog.i(TAG, "Account Manager");
159                ServiceManager.addService(Context.ACCOUNT_SERVICE,
160                        new AccountManagerService(context));
161            } catch (Throwable e) {
162                Slog.e(TAG, "Failure starting Account Manager", e);
163            }
164
165            Slog.i(TAG, "Content Manager");
166            ContentService.main(context,
167                    factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
168
169            Slog.i(TAG, "System Content Providers");
170            ActivityManagerService.installSystemProviders();
171
172            Slog.i(TAG, "Battery Service");
173            battery = new BatteryService(context);
174            ServiceManager.addService("battery", battery);
175
176            Slog.i(TAG, "Lights Service");
177            lights = new LightsService(context);
178
179            Slog.i(TAG, "Vibrator Service");
180            ServiceManager.addService("vibrator", new VibratorService(context));
181
182            // only initialize the power service after we have started the
183            // lights service, content providers and the battery service.
184            power.init(context, lights, ActivityManagerService.getDefault(), battery);
185
186            Slog.i(TAG, "Alarm Manager");
187            AlarmManagerService alarm = new AlarmManagerService(context);
188            ServiceManager.addService(Context.ALARM_SERVICE, alarm);
189
190            Slog.i(TAG, "Init Watchdog");
191            Watchdog.getInstance().init(context, battery, power, alarm,
192                    ActivityManagerService.self());
193
194            Slog.i(TAG, "Window Manager");
195            wm = WindowManagerService.main(context, power,
196                    factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL);
197            ServiceManager.addService(Context.WINDOW_SERVICE, wm);
198
199            ((ActivityManagerService)ServiceManager.getService("activity"))
200                    .setWindowManager(wm);
201
202            // Skip Bluetooth if we have an emulator kernel
203            // TODO: Use a more reliable check to see if this product should
204            // support Bluetooth - see bug 988521
205            if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
206                Slog.i(TAG, "Registering null Bluetooth Service (emulator)");
207                ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
208            } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
209                Slog.i(TAG, "Registering null Bluetooth Service (factory test)");
210                ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
211            } else {
212                Slog.i(TAG, "Bluetooth Service");
213                bluetooth = new BluetoothService(context);
214                ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, bluetooth);
215                bluetooth.initAfterRegistration();
216                bluetoothA2dp = new BluetoothA2dpService(context, bluetooth);
217                ServiceManager.addService(BluetoothA2dpService.BLUETOOTH_A2DP_SERVICE,
218                                          bluetoothA2dp);
219
220                int bluetoothOn = Settings.Secure.getInt(mContentResolver,
221                    Settings.Secure.BLUETOOTH_ON, 0);
222                if (bluetoothOn > 0) {
223                    bluetooth.enable();
224                }
225            }
226
227        } catch (RuntimeException e) {
228            Slog.e("System", "Failure starting core service", e);
229        }
230
231        DevicePolicyManagerService devicePolicy = null;
232        StatusBarManagerService statusBar = null;
233        InputMethodManagerService imm = null;
234        AppWidgetService appWidget = null;
235        NotificationManagerService notification = null;
236        WallpaperManagerService wallpaper = null;
237        LocationManagerService location = null;
238
239        if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
240            try {
241                Slog.i(TAG, "Device Policy");
242                devicePolicy = new DevicePolicyManagerService(context);
243                ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
244            } catch (Throwable e) {
245                Slog.e(TAG, "Failure starting DevicePolicyService", e);
246            }
247
248            try {
249                Slog.i(TAG, "Status Bar");
250                statusBar = new StatusBarManagerService(context);
251                ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
252            } catch (Throwable e) {
253                Slog.e(TAG, "Failure starting StatusBarManagerService", e);
254            }
255
256            try {
257                Slog.i(TAG, "Clipboard Service");
258                ServiceManager.addService(Context.CLIPBOARD_SERVICE,
259                        new ClipboardService(context));
260            } catch (Throwable e) {
261                Slog.e(TAG, "Failure starting Clipboard Service", e);
262            }
263
264            try {
265                Slog.i(TAG, "Input Method Service");
266                imm = new InputMethodManagerService(context, statusBar);
267                ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
268            } catch (Throwable e) {
269                Slog.e(TAG, "Failure starting Input Manager Service", e);
270            }
271
272            try {
273                Slog.i(TAG, "NetStat Service");
274                ServiceManager.addService("netstat", new NetStatService(context));
275            } catch (Throwable e) {
276                Slog.e(TAG, "Failure starting NetStat Service", e);
277            }
278
279            try {
280                Slog.i(TAG, "NetworkManagement Service");
281                ServiceManager.addService(
282                        Context.NETWORKMANAGEMENT_SERVICE,
283                        NetworkManagementService.create(context));
284            } catch (Throwable e) {
285                Slog.e(TAG, "Failure starting NetworkManagement Service", e);
286            }
287
288            try {
289                Slog.i(TAG, "Connectivity Service");
290                connectivity = ConnectivityService.getInstance(context);
291                ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
292            } catch (Throwable e) {
293                Slog.e(TAG, "Failure starting Connectivity Service", e);
294            }
295
296            try {
297                Slog.i(TAG, "Throttle Service");
298                throttle = new ThrottleService(context);
299                ServiceManager.addService(
300                        Context.THROTTLE_SERVICE, throttle);
301            } catch (Throwable e) {
302                Slog.e(TAG, "Failure starting ThrottleService", e);
303            }
304
305            try {
306              Slog.i(TAG, "Accessibility Manager");
307              ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
308                      new AccessibilityManagerService(context));
309            } catch (Throwable e) {
310              Slog.e(TAG, "Failure starting Accessibility Manager", e);
311            }
312
313            try {
314                /*
315                 * NotificationManagerService is dependant on MountService,
316                 * (for media / usb notifications) so we must start MountService first.
317                 */
318                Slog.i(TAG, "Mount Service");
319                ServiceManager.addService("mount", new MountService(context));
320            } catch (Throwable e) {
321                Slog.e(TAG, "Failure starting Mount Service", e);
322            }
323
324            try {
325                Slog.i(TAG, "Notification Manager");
326                notification = new NotificationManagerService(context, statusBar, lights);
327                ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
328            } catch (Throwable e) {
329                Slog.e(TAG, "Failure starting Notification Manager", e);
330            }
331
332            try {
333                Slog.i(TAG, "Device Storage Monitor");
334                ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
335                        new DeviceStorageMonitorService(context));
336            } catch (Throwable e) {
337                Slog.e(TAG, "Failure starting DeviceStorageMonitor service", e);
338            }
339
340            try {
341                Slog.i(TAG, "Location Manager");
342                location = new LocationManagerService(context);
343                ServiceManager.addService(Context.LOCATION_SERVICE, location);
344            } catch (Throwable e) {
345                Slog.e(TAG, "Failure starting Location Manager", e);
346            }
347
348            try {
349                Slog.i(TAG, "Search Service");
350                ServiceManager.addService(Context.SEARCH_SERVICE,
351                        new SearchManagerService(context));
352            } catch (Throwable e) {
353                Slog.e(TAG, "Failure starting Search Service", e);
354            }
355
356            if (INCLUDE_DEMO) {
357                Slog.i(TAG, "Installing demo data...");
358                (new DemoThread(context)).start();
359            }
360
361            try {
362                Slog.i(TAG, "DropBox Service");
363                ServiceManager.addService(Context.DROPBOX_SERVICE,
364                        new DropBoxManagerService(context, new File("/data/system/dropbox")));
365            } catch (Throwable e) {
366                Slog.e(TAG, "Failure starting DropBoxManagerService", e);
367            }
368
369            try {
370                Slog.i(TAG, "Wallpaper Service");
371                wallpaper = new WallpaperManagerService(context);
372                ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
373            } catch (Throwable e) {
374                Slog.e(TAG, "Failure starting Wallpaper Service", e);
375            }
376
377            try {
378                Slog.i(TAG, "Audio Service");
379                ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
380            } catch (Throwable e) {
381                Slog.e(TAG, "Failure starting Audio Service", e);
382            }
383
384            try {
385                Slog.i(TAG, "Headset Observer");
386                // Listen for wired headset changes
387                headset = new HeadsetObserver(context);
388            } catch (Throwable e) {
389                Slog.e(TAG, "Failure starting HeadsetObserver", e);
390            }
391
392            try {
393                Slog.i(TAG, "Dock Observer");
394                // Listen for dock station changes
395                dock = new DockObserver(context, power);
396            } catch (Throwable e) {
397                Slog.e(TAG, "Failure starting DockObserver", e);
398            }
399
400            try {
401                Slog.i(TAG, "USB Observer");
402                // Listen for USB changes
403                usb = new UsbObserver(context);
404            } catch (Throwable e) {
405                Slog.e(TAG, "Failure starting UsbObserver", e);
406            }
407
408            try {
409                Slog.i(TAG, "UI Mode Manager Service");
410                // Listen for UI mode changes
411                uiMode = new UiModeManagerService(context);
412            } catch (Throwable e) {
413                Slog.e(TAG, "Failure starting UiModeManagerService", e);
414            }
415
416            try {
417                Slog.i(TAG, "Backup Service");
418                ServiceManager.addService(Context.BACKUP_SERVICE,
419                        new BackupManagerService(context));
420            } catch (Throwable e) {
421                Slog.e(TAG, "Failure starting Backup Service", e);
422            }
423
424            try {
425                Slog.i(TAG, "AppWidget Service");
426                appWidget = new AppWidgetService(context);
427                ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
428            } catch (Throwable e) {
429                Slog.e(TAG, "Failure starting AppWidget Service", e);
430            }
431
432            try {
433                Slog.i(TAG, "Recognition Service");
434                recognition = new RecognitionManagerService(context);
435            } catch (Throwable e) {
436                Slog.e(TAG, "Failure starting Recognition Service", e);
437            }
438
439            try {
440                Slog.i(TAG, "Nfc Service");
441                NfcService nfc;
442                try {
443                    nfc = new NfcService(context);
444                } catch (UnsatisfiedLinkError e) { // gross hack to detect NFC
445                    nfc = null;
446                    Slog.w(TAG, "No NFC support");
447                }
448                ServiceManager.addService(Context.NFC_SERVICE, nfc);
449            } catch (Throwable e) {
450                Slog.e(TAG, "Failure starting NFC Service", e);
451            }
452
453            try {
454                Slog.i(TAG, "DiskStats Service");
455                ServiceManager.addService("diskstats", new DiskStatsService(context));
456            } catch (Throwable e) {
457                Slog.e(TAG, "Failure starting DiskStats Service", e);
458            }
459        }
460
461        // make sure the ADB_ENABLED setting value matches the secure property value
462        Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED,
463                "1".equals(SystemProperties.get("persist.service.adb.enable")) ? 1 : 0);
464
465        // register observer to listen for settings changes
466        mContentResolver.registerContentObserver(Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED),
467                false, new AdbSettingsObserver());
468
469        // Before things start rolling, be sure we have decided whether
470        // we are in safe mode.
471        final boolean safeMode = wm.detectSafeMode();
472        if (safeMode) {
473            try {
474                ActivityManagerNative.getDefault().enterSafeMode();
475                // Post the safe mode state in the Zygote class
476                Zygote.systemInSafeMode = true;
477                // Disable the JIT for the system_server process
478                VMRuntime.getRuntime().disableJitCompilation();
479            } catch (RemoteException e) {
480            }
481        } else {
482            // Enable the JIT for the system_server process
483            VMRuntime.getRuntime().startJitCompilation();
484        }
485
486        // It is now time to start up the app processes...
487
488        if (devicePolicy != null) {
489            devicePolicy.systemReady();
490        }
491
492        if (notification != null) {
493            notification.systemReady();
494        }
495
496        if (statusBar != null) {
497            statusBar.systemReady();
498        }
499        wm.systemReady();
500        power.systemReady();
501        try {
502            pm.systemReady();
503        } catch (RemoteException e) {
504        }
505
506        // These are needed to propagate to the runnable below.
507        final StatusBarManagerService statusBarF = statusBar;
508        final BatteryService batteryF = battery;
509        final ConnectivityService connectivityF = connectivity;
510        final DockObserver dockF = dock;
511        final UsbObserver usbF = usb;
512        final ThrottleService throttleF = throttle;
513        final UiModeManagerService uiModeF = uiMode;
514        final AppWidgetService appWidgetF = appWidget;
515        final WallpaperManagerService wallpaperF = wallpaper;
516        final InputMethodManagerService immF = imm;
517        final RecognitionManagerService recognitionF = recognition;
518        final LocationManagerService locationF = location;
519
520        // We now tell the activity manager it is okay to run third party
521        // code.  It will call back into us once it has gotten to the state
522        // where third party code can really run (but before it has actually
523        // started launching the initial applications), for us to complete our
524        // initialization.
525        ((ActivityManagerService)ActivityManagerNative.getDefault())
526                .systemReady(new Runnable() {
527            public void run() {
528                Slog.i(TAG, "Making services ready");
529
530                if (statusBarF != null) statusBarF.systemReady2();
531                if (batteryF != null) batteryF.systemReady();
532                if (connectivityF != null) connectivityF.systemReady();
533                if (dockF != null) dockF.systemReady();
534                if (usbF != null) usbF.systemReady();
535                if (uiModeF != null) uiModeF.systemReady();
536                if (recognitionF != null) recognitionF.systemReady();
537                Watchdog.getInstance().start();
538
539                // It is now okay to let the various system services start their
540                // third party code...
541
542                if (appWidgetF != null) appWidgetF.systemReady(safeMode);
543                if (wallpaperF != null) wallpaperF.systemReady();
544                if (immF != null) immF.systemReady();
545                if (locationF != null) locationF.systemReady();
546                if (throttleF != null) throttleF.systemReady();
547            }
548        });
549
550        // For debug builds, log event loop stalls to dropbox for analysis.
551        if (StrictMode.conditionallyEnableDebugLogging()) {
552            Slog.i(TAG, "Enabled StrictMode for system server main thread.");
553        }
554
555        Looper.loop();
556        Slog.d(TAG, "System ServerThread is exiting!");
557    }
558}
559
560class DemoThread extends Thread
561{
562    DemoThread(Context context)
563    {
564        mContext = context;
565    }
566
567    @Override
568    public void run()
569    {
570        try {
571            Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, null, null, null, null);
572            boolean hasData = c != null && c.moveToFirst();
573            if (c != null) {
574                c.deactivate();
575            }
576            if (!hasData) {
577                DemoDataSet dataset = new DemoDataSet();
578                dataset.add(mContext);
579            }
580        } catch (Throwable e) {
581            Slog.e("SystemServer", "Failure installing demo data", e);
582        }
583
584    }
585
586    Context mContext;
587}
588
589public class SystemServer
590{
591    private static final String TAG = "SystemServer";
592
593    public static final int FACTORY_TEST_OFF = 0;
594    public static final int FACTORY_TEST_LOW_LEVEL = 1;
595    public static final int FACTORY_TEST_HIGH_LEVEL = 2;
596
597    static Timer timer;
598    static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
599
600    // The earliest supported time.  We pick one day into 1970, to
601    // give any timezone code room without going into negative time.
602    private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
603
604    /**
605     * This method is called from Zygote to initialize the system. This will cause the native
606     * services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back
607     * up into init2() to start the Android services.
608     */
609    native public static void init1(String[] args);
610
611    public static void main(String[] args) {
612        if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
613            // If a device's clock is before 1970 (before 0), a lot of
614            // APIs crash dealing with negative numbers, notably
615            // java.io.File#setLastModified, so instead we fake it and
616            // hope that time from cell towers or NTP fixes it
617            // shortly.
618            Slog.w(TAG, "System clock is before 1970; setting to 1970.");
619            SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
620        }
621
622        if (SamplingProfilerIntegration.isEnabled()) {
623            SamplingProfilerIntegration.start();
624            timer = new Timer();
625            timer.schedule(new TimerTask() {
626                @Override
627                public void run() {
628                    SamplingProfilerIntegration.writeSnapshot("system_server");
629                }
630            }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
631        }
632
633        // The system server has to run all of the time, so it needs to be
634        // as efficient as possible with its memory usage.
635        VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
636
637        System.loadLibrary("android_servers");
638        init1(args);
639    }
640
641    public static final void init2() {
642        Slog.i(TAG, "Entered the Android system server!");
643        Thread thr = new ServerThread();
644        thr.setName("android.server.ServerThread");
645        thr.start();
646    }
647}
648