blob: 15aad0e510dc1cb73b44953a4b989596abc9cc64 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
Dan Egnor3d40df32009-11-17 13:36:31 -08002 * Copyright (C) 2009 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 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016
17package com.android.server;
18
Dan Egnor3d40df32009-11-17 13:36:31 -080019import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.ContentResolver;
21import android.content.Context;
22import android.content.Intent;
Dan Egnor492c6ed2010-01-27 14:52:57 -080023import android.content.SharedPreferences;
Dan Egnor3d40df32009-11-17 13:36:31 -080024import android.os.Build;
25import android.os.DropBoxManager;
Dan Egnor492c6ed2010-01-27 14:52:57 -080026import android.os.FileObserver;
Dan Egnor3d40df32009-11-17 13:36:31 -080027import android.os.FileUtils;
Doug Zongker1af33d02010-01-05 11:28:55 -080028import android.os.RecoverySystem;
Dan Egnor3d40df32009-11-17 13:36:31 -080029import android.os.SystemProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.provider.Settings;
Joe Onorato8a9b2202010-02-26 18:56:32 -080031import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032
Dan Egnor3d40df32009-11-17 13:36:31 -080033import java.io.File;
34import java.io.IOException;
35
36/**
37 * Performs a number of miscellaneous, non-system-critical actions
38 * after the system has finished booting.
39 */
40public class BootReceiver extends BroadcastReceiver {
41 private static final String TAG = "BootReceiver";
42
Dan Egnor289e5802010-02-11 10:40:49 -080043 // Maximum size of a logged event (files get truncated if they're longer)
44 private static final int LOG_SIZE = 65536;
Dan Egnor42471dd2010-01-07 17:25:22 -080045
Dan Egnor492c6ed2010-01-27 14:52:57 -080046 private static final File TOMBSTONE_DIR = new File("/data/tombstones");
47
48 // Keep a reference to the observer so the finalizer doesn't disable it.
49 private static FileObserver sTombstoneObserver = null;
50
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 @Override
Dan Egnorc95142d2010-03-11 12:31:23 -080052 public void onReceive(final Context context, Intent intent) {
Dan Egnor3d40df32009-11-17 13:36:31 -080053 try {
54 // Start the load average overlay, if activated
55 ContentResolver res = context.getContentResolver();
56 if (Settings.System.getInt(res, Settings.System.SHOW_PROCESSES, 0) != 0) {
57 Intent loadavg = new Intent(context, com.android.server.LoadAverageService.class);
58 context.startService(loadavg);
59 }
60 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080061 Slog.e(TAG, "Can't start load average service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 }
Dan Egnorc95142d2010-03-11 12:31:23 -080063
64 // Log boot events in the background to avoid blocking the main thread with I/O
65 new Thread() {
66 @Override
67 public void run() {
68 try {
69 logBootEvents(context);
70 } catch (Exception e) {
71 Slog.e(TAG, "Can't log boot events", e);
72 }
73 }
74 }.start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076
Dan Egnor492c6ed2010-01-27 14:52:57 -080077 private void logBootEvents(Context ctx) throws IOException {
78 final DropBoxManager db = (DropBoxManager) ctx.getSystemService(Context.DROPBOX_SERVICE);
79 final SharedPreferences prefs = ctx.getSharedPreferences("log_files", Context.MODE_PRIVATE);
Dan Egnorc95142d2010-03-11 12:31:23 -080080 final String headers = new StringBuilder(512)
Dan Egnor492c6ed2010-01-27 14:52:57 -080081 .append("Build: ").append(Build.FINGERPRINT).append("\n")
82 .append("Hardware: ").append(Build.BOARD).append("\n")
83 .append("Bootloader: ").append(Build.BOOTLOADER).append("\n")
84 .append("Radio: ").append(Build.RADIO).append("\n")
85 .append("Kernel: ")
86 .append(FileUtils.readTextFile(new File("/proc/version"), 1024, "...\n"))
Dan Egnorc95142d2010-03-11 12:31:23 -080087 .append("\n").toString();
Dan Egnor3d40df32009-11-17 13:36:31 -080088
Dan Egnorc95142d2010-03-11 12:31:23 -080089 String recovery = RecoverySystem.handleAftermath();
90 if (recovery != null && db != null) {
91 db.addText("SYSTEM_RECOVERY_LOG", headers + recovery);
92 }
Dan Egnor3d40df32009-11-17 13:36:31 -080093
94 if (SystemProperties.getLong("ro.runtime.firstboot", 0) == 0) {
95 String now = Long.toString(System.currentTimeMillis());
96 SystemProperties.set("ro.runtime.firstboot", now);
Dan Egnorc95142d2010-03-11 12:31:23 -080097 if (db != null) db.addText("SYSTEM_BOOT", headers);
Dan Egnor289e5802010-02-11 10:40:49 -080098
99 // Negative sizes mean to take the *tail* of the file (see FileUtils.readTextFile())
Dan Egnorc95142d2010-03-11 12:31:23 -0800100 addFileToDropBox(db, prefs, headers, "/proc/last_kmsg",
Dan Egnor289e5802010-02-11 10:40:49 -0800101 -LOG_SIZE, "SYSTEM_LAST_KMSG");
Dan Egnorc95142d2010-03-11 12:31:23 -0800102 addFileToDropBox(db, prefs, headers, "/cache/recovery/log",
Dan Egnor289e5802010-02-11 10:40:49 -0800103 -LOG_SIZE, "SYSTEM_RECOVERY_LOG");
Dan Egnorc95142d2010-03-11 12:31:23 -0800104 addFileToDropBox(db, prefs, headers, "/data/dontpanic/apanic_console",
Dan Egnor289e5802010-02-11 10:40:49 -0800105 -LOG_SIZE, "APANIC_CONSOLE");
Dan Egnorc95142d2010-03-11 12:31:23 -0800106 addFileToDropBox(db, prefs, headers, "/data/dontpanic/apanic_threads",
Dan Egnor289e5802010-02-11 10:40:49 -0800107 -LOG_SIZE, "APANIC_THREADS");
Dan Egnor3d40df32009-11-17 13:36:31 -0800108 } else {
Dan Egnorc95142d2010-03-11 12:31:23 -0800109 if (db != null) db.addText("SYSTEM_RESTART", headers);
Dan Egnor3d40df32009-11-17 13:36:31 -0800110 }
111
Dan Egnor492c6ed2010-01-27 14:52:57 -0800112 // Scan existing tombstones (in case any new ones appeared)
113 File[] tombstoneFiles = TOMBSTONE_DIR.listFiles();
114 for (int i = 0; tombstoneFiles != null && i < tombstoneFiles.length; i++) {
Dan Egnorc95142d2010-03-11 12:31:23 -0800115 addFileToDropBox(db, prefs, headers, tombstoneFiles[i].getPath(),
Dan Egnor289e5802010-02-11 10:40:49 -0800116 LOG_SIZE, "SYSTEM_TOMBSTONE");
Dan Egnor492c6ed2010-01-27 14:52:57 -0800117 }
118
119 // Start watching for new tombstone files; will record them as they occur.
120 // This gets registered with the singleton file observer thread.
121 sTombstoneObserver = new FileObserver(TOMBSTONE_DIR.getPath(), FileObserver.CLOSE_WRITE) {
122 @Override
123 public void onEvent(int event, String path) {
124 try {
125 String filename = new File(TOMBSTONE_DIR, path).getPath();
Dan Egnorc95142d2010-03-11 12:31:23 -0800126 addFileToDropBox(db, prefs, headers, filename, LOG_SIZE, "SYSTEM_TOMBSTONE");
Dan Egnor492c6ed2010-01-27 14:52:57 -0800127 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800128 Slog.e(TAG, "Can't log tombstone", e);
Dan Egnor492c6ed2010-01-27 14:52:57 -0800129 }
130 }
131 };
132
133 sTombstoneObserver.startWatching();
Dan Egnor3d40df32009-11-17 13:36:31 -0800134 }
135
Dan Egnor492c6ed2010-01-27 14:52:57 -0800136 private static void addFileToDropBox(
137 DropBoxManager db, SharedPreferences prefs,
Dan Egnor289e5802010-02-11 10:40:49 -0800138 String headers, String filename, int maxSize, String tag) throws IOException {
Dan Egnorc95142d2010-03-11 12:31:23 -0800139 if (db == null || !db.isTagEnabled(tag)) return; // Logging disabled
Dan Egnor3d40df32009-11-17 13:36:31 -0800140
141 File file = new File(filename);
142 long fileTime = file.lastModified();
143 if (fileTime <= 0) return; // File does not exist
144
Dan Egnorc95142d2010-03-11 12:31:23 -0800145 if (prefs != null) {
146 long lastTime = prefs.getLong(filename, 0);
147 if (lastTime == fileTime) return; // Already logged this particular file
148 prefs.edit().putLong(filename, fileTime).commit();
149 }
Dan Egnor42471dd2010-01-07 17:25:22 -0800150
Dan Egnorc95142d2010-03-11 12:31:23 -0800151 Slog.i(TAG, "Copying " + filename + " to DropBox (" + tag + ")");
152 db.addText(tag, headers + FileUtils.readTextFile(file, maxSize, "[[TRUNCATED]]\n"));
Dan Egnor3d40df32009-11-17 13:36:31 -0800153 }
154}